~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/kernel/kprobes-ftrace.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/powerpc/kernel/kprobes-ftrace.c (Version linux-6.11-rc3) and /arch/i386/kernel/kprobes-ftrace.c (Version linux-5.6.19)


  1 // SPDX-License-Identifier: GPL-2.0-or-later        1 
  2 /*                                                
  3  * Dynamic Ftrace based Kprobes Optimization      
  4  *                                                
  5  * Copyright (C) Hitachi Ltd., 2012               
  6  * Copyright 2016 Naveen N. Rao <naveen.n.rao@    
  7  *                IBM Corporation                 
  8  */                                               
  9 #include <linux/kprobes.h>                        
 10 #include <linux/ptrace.h>                         
 11 #include <linux/hardirq.h>                        
 12 #include <linux/preempt.h>                        
 13 #include <linux/ftrace.h>                         
 14                                                   
 15 /* Ftrace callback handler for kprobes */         
 16 void kprobe_ftrace_handler(unsigned long nip,     
 17                            struct ftrace_ops *    
 18 {                                                 
 19         struct kprobe *p;                         
 20         struct kprobe_ctlblk *kcb;                
 21         struct pt_regs *regs;                     
 22         int bit;                                  
 23                                                   
 24         if (unlikely(kprobe_ftrace_disabled))     
 25                 return;                           
 26                                                   
 27         bit = ftrace_test_recursion_trylock(ni    
 28         if (bit < 0)                              
 29                 return;                           
 30                                                   
 31         regs = ftrace_get_regs(fregs);            
 32         p = get_kprobe((kprobe_opcode_t *)nip)    
 33         if (unlikely(!p) || kprobe_disabled(p)    
 34                 goto out;                         
 35                                                   
 36         kcb = get_kprobe_ctlblk();                
 37         if (kprobe_running()) {                   
 38                 kprobes_inc_nmissed_count(p);     
 39         } else {                                  
 40                 /*                                
 41                  * On powerpc, NIP is *before*    
 42                  * pre handler                    
 43                  */                               
 44                 regs_add_return_ip(regs, -MCOU    
 45                                                   
 46                 __this_cpu_write(current_kprob    
 47                 kcb->kprobe_status = KPROBE_HI    
 48                 if (!p->pre_handler || !p->pre    
 49                         /*                        
 50                          * Emulate singlestep     
 51                          * as if there is a no    
 52                          */                       
 53                         regs_add_return_ip(reg    
 54                         if (unlikely(p->post_h    
 55                                 kcb->kprobe_st    
 56                                 p->post_handle    
 57                         }                         
 58                 }                                 
 59                 /*                                
 60                  * If pre_handler returns !0,     
 61                  * skip emulating post_handler    
 62                  */                               
 63                 __this_cpu_write(current_kprob    
 64         }                                         
 65 out:                                              
 66         ftrace_test_recursion_unlock(bit);        
 67 }                                                 
 68 NOKPROBE_SYMBOL(kprobe_ftrace_handler);           
 69                                                   
 70 int arch_prepare_kprobe_ftrace(struct kprobe *    
 71 {                                                 
 72         p->ainsn.insn = NULL;                     
 73         p->ainsn.boostable = -1;                  
 74         return 0;                                 
 75 }                                                 
 76                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php