9 Apr 1999 08:10
Isn't wait4 amenable to interception?
Dinesh K Subhraveti <dinesh <at> cs.columbia.edu>
1999-04-09 06:10:35 GMT
1999-04-09 06:10:35 GMT
Hello,
I am trying to intercept wait4 and having problems with it. Does wait4
differ from other system calls in any peculiar way? The new system call
routine just returns original sys_wait4. After inserting the module, system
works just fine. But rmmod causes a kernel oops with "Bad EIP" message and
shell gets killed. After kernel oops everything seems just fine too. I'd
greatly appreciate any insight on this. Am attaching the code below. Please
reply to dinesh <at> cs.columbia.edu.
Thanks in advance,
Dinesh
-----------------------------------------------
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/resource.h>
#include <sys/syscall.h>
extern void *sys_call_table[];
static int (*original_sys_wait4) (pid_t, int*, int, struct rusage*);
asmlinkage int my_wait4 (pid_t a, int *b, int c, struct rusage *d)
{
return original_sys_wait4 (a, b, c, d);
}
int init_module()
{
(Continue reading)
RSS Feed