Kernel 2.6.24.6
I’m writing a syscall interposer. I’d like to interpose mmap, but need to copy and paste the code up to the actualy system call, methinks. I can’t find that code to paste? Where is this thing?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Because the kernel can’t actually provide functions in your program, the calls into the application VDSO are enclosed in the libc implementation you’re using. Most likly, you’re using GNU libc, for which you can find the sources here.