search for: kprobe_opcode_t

Displaying 14 results from an estimated 14 matches for "kprobe_opcode_t".

2007 Apr 18
1
[PATCH 2/12] ldt-accessors
...robes.c =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/kprobes.c 2005-08-08 13:50:12.000000000 -0700 +++ linux-2.6.13/arch/i386/kernel/kprobes.c 2005-08-08 14:16:47.000000000 -0700 @@ -156,17 +156,15 @@ struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; /* We're in an interrupt, but this is clear and BUG()-safe. */ preempt_disable(); /* Check if the application is using LDT entry for its code segment and * calculate the address by reading the base address from the LDT entry. */ - if ((regs->x...
2007 Apr 18
1
[PATCH 2/12] ldt-accessors
...robes.c =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/kprobes.c 2005-08-08 13:50:12.000000000 -0700 +++ linux-2.6.13/arch/i386/kernel/kprobes.c 2005-08-08 14:16:47.000000000 -0700 @@ -156,17 +156,15 @@ struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; /* We're in an interrupt, but this is clear and BUG()-safe. */ preempt_disable(); /* Check if the application is using LDT entry for its code segment and * calculate the address by reading the base address from the LDT entry. */ - if ((regs->x...
2007 Apr 18
1
[PATCH 7/14] i386 / Add some descriptor convenience functions
...kprobes.c =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/kprobes.c 2005-08-09 19:43:47.000000000 -0700 +++ linux-2.6.13/arch/i386/kernel/kprobes.c 2005-08-09 19:54:16.000000000 -0700 @@ -156,7 +156,6 @@ struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; /* We're in an interrupt, but this is clear and BUG()-safe. */ preempt_disable(); @@ -164,9 +163,10 @@ * calculate the address by reading the base address from the LDT entry. */ if (segment_from_ldt(regs->xcs) && (current->mm)) { -...
2007 Apr 18
1
[PATCH 7/14] i386 / Add some descriptor convenience functions
...kprobes.c =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/kprobes.c 2005-08-09 19:43:47.000000000 -0700 +++ linux-2.6.13/arch/i386/kernel/kprobes.c 2005-08-09 19:54:16.000000000 -0700 @@ -156,7 +156,6 @@ struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; /* We're in an interrupt, but this is clear and BUG()-safe. */ preempt_disable(); @@ -164,9 +163,10 @@ * calculate the address by reading the base address from the LDT entry. */ if (segment_from_ldt(regs->xcs) && (current->mm)) { -...
2007 Apr 18
2
[PATCH 19/21] i386 Kprobes semaphore fix
...============== --- linux-2.6.14-zach-work.orig/arch/i386/kernel/kprobes.c 2005-11-04 19:25:27.000000000 -0800 +++ linux-2.6.14-zach-work/arch/i386/kernel/kprobes.c 2005-11-04 19:26:37.000000000 -0800 @@ -156,23 +156,25 @@ static int __kprobes kprobe_handler(stru struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; + unsigned long limit; - /* We're in an interrupt, but this is clear and BUG()-safe. */ - preempt_disable(); - /* Check if the application is using LDT entry for its code segment and - * calculate the address by reading the base address from the LDT entry....
2007 Apr 18
2
[PATCH 19/21] i386 Kprobes semaphore fix
...============== --- linux-2.6.14-zach-work.orig/arch/i386/kernel/kprobes.c 2005-11-04 19:25:27.000000000 -0800 +++ linux-2.6.14-zach-work/arch/i386/kernel/kprobes.c 2005-11-04 19:26:37.000000000 -0800 @@ -156,23 +156,25 @@ static int __kprobes kprobe_handler(stru struct kprobe *p; int ret = 0; kprobe_opcode_t *addr = NULL; - unsigned long *lp; + unsigned long limit; - /* We're in an interrupt, but this is clear and BUG()-safe. */ - preempt_disable(); - /* Check if the application is using LDT entry for its code segment and - * calculate the address by reading the base address from the LDT entry....
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've tried to implement new NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined, it is easy to maintain. This series
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've tried to implement new NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined, it is easy to maintain. This series
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi, Here is the version 3 of NOKPORBE_SYMBOL series. Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've introduced NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi, Here is the version 3 of NOKPORBE_SYMBOL series. Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've introduced NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined
2007 Apr 18
1
[PATCH 6/14] i386 / Add some segment convenience functions
...(current->mm)) { - lp = (unsigned long *) ((unsigned long)((regs->xcs >> 3) * 8) + if (segment_from_ldt(regs->xcs) && (current->mm)) { + lp = (unsigned long *) ((unsigned long)(segment_index(regs->xcs) * 8) + (char *) current->mm->context.ldt); addr = (kprobe_opcode_t *) (get_desc_base(lp) + regs->eip - sizeof(kprobe_opcode_t)); Index: linux-2.6.13/arch/i386/kernel/entry.S =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/entry.S 2005-08-09 19:36:36.000000000 -0700 +++ linux-2.6.13/arch/i386/kern...
2007 Apr 18
1
[PATCH 6/14] i386 / Add some segment convenience functions
...(current->mm)) { - lp = (unsigned long *) ((unsigned long)((regs->xcs >> 3) * 8) + if (segment_from_ldt(regs->xcs) && (current->mm)) { + lp = (unsigned long *) ((unsigned long)(segment_index(regs->xcs) * 8) + (char *) current->mm->context.ldt); addr = (kprobe_opcode_t *) (get_desc_base(lp) + regs->eip - sizeof(kprobe_opcode_t)); Index: linux-2.6.13/arch/i386/kernel/entry.S =================================================================== --- linux-2.6.13.orig/arch/i386/kernel/entry.S 2005-08-09 19:36:36.000000000 -0700 +++ linux-2.6.13/arch/i386/kern...
2007 Apr 18
2
[PATCH 3/6] i386 virtualization - Make ldt a desc struct
...gt;xcs) && (current->mm)) { > struct desc_struct *desc; > - desc = (struct desc_struct *) ((char *) current->mm->context.ldt + > - (segment_index(regs->xcs) * 8)); > + desc = &current->mm->context.ldt[segment_index(regs->xcs)]; > addr = (kprobe_opcode_t *) (get_desc_base(desc) + regs->eip - > sizeof(kprobe_opcode_t)); > } else { >
2007 Apr 18
2
[PATCH 3/6] i386 virtualization - Make ldt a desc struct
...gt;xcs) && (current->mm)) { > struct desc_struct *desc; > - desc = (struct desc_struct *) ((char *) current->mm->context.ldt + > - (segment_index(regs->xcs) * 8)); > + desc = &current->mm->context.ldt[segment_index(regs->xcs)]; > addr = (kprobe_opcode_t *) (get_desc_base(desc) + regs->eip - > sizeof(kprobe_opcode_t)); > } else { >