Is there any way to add a system call dynamic, such as through a module? I have found places where I can override an existing system call with a module by just changing the sys_call_table[] array to get my overridden function instead of the native when my module is installed, but can you do this with a new system call and a module?

link|improve this question

25% accept rate
I always thought that adding system calls was a nono, but that's just hearsay. – jdizzle Mar 7 '10 at 3:12
1  
Yes, adding system calls is sort of useless for a rootkit :) – Nikolai N Fetissov Mar 7 '10 at 4:57
Adding a syscall is definitely not supported. It's likely you want a new solution to your problem. Why do you feel you need a new syscall anyway? – stsquad Mar 7 '10 at 23:42
feedback

1 Answer

No, sys_call_table is of fixed size:

const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { ... 

The best you can do, as you probably already discovered, is to intercept existing system calls.

link|improve this answer
1  
Thanks. Yes, I've decided to intercept. – Zach Mar 7 '10 at 4:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.