Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 262871
b: refs/heads/master
c: c149a66
h: refs/heads/master
i:
  262869: 88e2c8f
  262867: 8964f06
  262863: 2ed9f51
v: v3
  • Loading branch information
Andy Lutomirski authored and H. Peter Anvin committed Aug 4, 2011
1 parent 68c801f commit c5b271c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 318f5a2a672152328c9fb4dead504b89ec738a43
refs/heads/master: c149a665ac488e0dac22a42287f45ad1bda06ff1
6 changes: 6 additions & 0 deletions trunk/arch/x86/kernel/vsyscall_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
#include <asm/vgtod.h>
#include <asm/traps.h>

#define CREATE_TRACE_POINTS
#include "vsyscall_trace.h"

DEFINE_VVAR(int, vgetcpu_mode);
DEFINE_VVAR(struct vsyscall_gtod_data, vsyscall_gtod_data) =
{
Expand Down Expand Up @@ -146,6 +149,9 @@ void dotraplinkage do_emulate_vsyscall(struct pt_regs *regs, long error_code)
* and int 0xcc is two bytes long.
*/
vsyscall_nr = addr_to_vsyscall_nr(regs->ip - 2);

trace_emulate_vsyscall(vsyscall_nr);

if (vsyscall_nr < 0) {
warn_bad_vsyscall(KERN_WARNING, regs,
"illegal int 0xcc (exploit attempt?)");
Expand Down
29 changes: 29 additions & 0 deletions trunk/arch/x86/kernel/vsyscall_trace.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#undef TRACE_SYSTEM
#define TRACE_SYSTEM vsyscall

#if !defined(__VSYSCALL_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
#define __VSYSCALL_TRACE_H

#include <linux/tracepoint.h>

TRACE_EVENT(emulate_vsyscall,

TP_PROTO(int nr),

TP_ARGS(nr),

TP_STRUCT__entry(__field(int, nr)),

TP_fast_assign(
__entry->nr = nr;
),

TP_printk("nr = %d", __entry->nr)
);

#endif

#undef TRACE_INCLUDE_PATH
#define TRACE_INCLUDE_PATH ../../arch/x86/kernel
#define TRACE_INCLUDE_FILE vsyscall_trace
#include <trace/define_trace.h>

0 comments on commit c5b271c

Please sign in to comment.