vote up 0 vote down star
1

There are Mac GUI applications which provide a front-end to more geeky commandline tools (often included as a part of the application package). I would like to look at what is happening under the hood of such GUIs.

How to "attach" to an application, monitor it for calls to command line utilities and log a filename and command line parameters of these calls?

A solution can also be an application that logs execution of all applications on Mac OS X (filtering out the most common system calls).

Example GUI frontend: http://xact.sourceforge.net/ (since it is open source one can just debug it, but xACT is just an example. let's pretend we have just a ready-made *.app to monitor).

Update: dtrace can monitor exec calls and print name of the command called. that's a half of the solution, the other half is getting its command line arguments. that's unsolved yet (until someone confirms they have got dtrace to do this).

flag

2 Answers

vote up 3 vote down

You could use dtrace to monitor the exec*() system calls and display the arguments when they're invoked. dtrace is documented here: http://wikis.sun.com/display/DTrace/Documentation

link|flag
see a comment in the my answer below. could you give an example dtrace script? – CaptSolo Jan 20 at 2:01
That sounds too much like "pls to give me teh codez", but I'll tell you this - dtrace can print the arguments to any syscall. The parameters to the executable run in exec*() are available in the arguments. – Graham Lee Jan 20 at 8:33
Cool, thanks. I don't think it is wrong to ask someone "show me the code" as often example code is the best explanation and of most value to others who look for answers to this question. (Well, unless someone is paid to write the code and then asks others to do it instead. Not in this case.) – CaptSolo Jan 21 at 14:19
vote up 0 vote down

Graham: dtrace would be perfect here. could you (or anyone else here) show a dtrace script that would print the commandline of the process?

This oneliner prints names of processes being executed:

dtrace -qn 'syscall::exec*:return { printf("%Y %s\n",walltimestamp,curpsinfo->pr_psargs); }'

But how to get / print their command line arguments?

link|flag
dtrace can print out the arguments to a syscall. The arguments to exec*() are the argv[] of the program to be run. – Graham Lee Jan 20 at 23:26
1  
this doesn't work. seems like there is a bug in dtrace on Mac OS X in that it does not expose command line parameters. a script meant to do this also only shows just the name of the program (w/o params): brendangregg.com/DTrace/execsnoop.d – CaptSolo Jan 21 at 14:32
here's a reference re dtrace not exposing the whole commandline: "curpsinfo->ps_args doesn’t contain the entire command-line of the process; it only contains the first word" benjamin.smedbergs.us/blog/2008-11-20/282 – CaptSolo Jan 21 at 23:30

Your Answer

Get an OpenID
or

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