This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug runtime/6646] SystemTap scripts fail with an Oops on x86


------- Additional Comments From ananth at in dot ibm dot com  2008-06-17 07:12 -------
The NULL pointer deref is coming from the modules_op->start() call in
runtime/transport/symbols.c:

   606  static int _stp_init_modules(void)
     ....
   611          const struct seq_operations *modules_op = (const struct seq_oper
ations *)_stp_kallsyms_lookup_name("modules_op");
   612
   ......
   617
   618          /* Use the seq_file interface to safely get a list of installed
modules */
   619          res = modules_op->start(NULL, &pos); <-- here!
   620          while (res) {

The reason is that _stp_kallsyms_lookup_name returns an incorrect address (it
returns c11a0e0c while the actual address is c05a0e0c):

[root@jataayu mod]# cat /proc/kallsyms |grep modules_op
c048eee9 t modules_open
c05a0e0c R modules_op
c05a40d8 r proc_modules_operations

I've verified that *(c11a0e0c) is NULL causing the BUG.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6646

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]