According to the Linux man page for mprotect the function has 3 Arguments:

int mprotect(const void *addr, size_t len, int prot);

but while running ltrace on a program that I'm analyzing I see that mprotect is called like this:

mprotect(0x8049000, 4096, 3, 1, 0xb7e057ac)      = 0

what are the 4th and 5th argument for??

Edit: Using ltrace version 0.5. and kernel 2.6.24-24-generic

thanks

link|improve this question

How about the fifth one? – Jefromi Oct 27 '09 at 19:40
sorry, while scanning the arguments I missed the 4th one ;) – woolagaroo Oct 27 '09 at 19:44
Which version of strace. Which version of the linux kernel? – Puppe Oct 27 '09 at 19:51
Sorry, see now that you said ltrace. – Puppe Oct 27 '09 at 19:55
1  
ltrace is just getting these items off of the call stack. the real question is why are they getting pushed on there in the first place. – Joe Oct 27 '09 at 21:03
show 2 more comments
feedback

1 Answer

up vote 5 down vote accepted

Five is the number of arguments that ltrace will print if it can not find the description of the function in the config file. (/etc/ltrace.conf by default, I think).

On my system I can see the same behaviour, and the mprotect is not found there, only the SYS_mprotect.

If you want to have a second look of the ltrace source, the place of interest is the output.c, the conditional after "func = name2func(function_name);" - which prints 5 args in case the meta-info for the function name is not found (and in which case the linear lookup within the name2func returns NULL).

So, the manual is correct, it's ltrace which is "wrong" (quoted "wrong" because technically the code works as it should, though probably the defs in the config should be fixed)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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