Is it possible to programatically change an executable name (ucmd) of a unix process as reported by ps?

unix/POSIX way would be nice but Linux specific solution would suffice.

I want to change what is reported here

> ps -o ucmd    
CMD
zsh
ps

not this, this I know ;)

> ps -o command
COMMAND
zsh
ps -o command

thanks

P.S. Not trying to create a rootkit, its just that net-snmp looks at this name when checking processes and my program has a different name when called from init and directly from /etc/init.d (etc/rcX.d/SNNname instead of just name).

link|improve this question
Sorry for my ignorance, but isn't that just the filename of the executable? – cularis Jul 27 '11 at 9:02
Here is a piece of code that does this trick: lxr.evanmiller.org/http/source/os/unix/ngx_setproctitle.c – Blagovest Buyukliev Jul 27 '11 at 9:09
feedback

1 Answer

up vote 4 down vote accepted

You can do this with the PR_SET_NAME function of prctl():

prctl(PR_SET_NAME, (unsigned long)"xyzzy", 0, 0, 0);

However, /etc/rcX.d/SNNname should be a (symlink to a) script that starts your process, not a link to the process executable itself. This would also solve the problem.

link|improve this answer
thanks, there is even a perl module that does exactly what I want search.cpan.org/~tlbdk/Sys-Prctl-1.01/lib/Sys/Prctl.pm – Aleksandar Ivanisevic Aug 8 '11 at 10:22
and yes I'm aware that I should actually create a wrapper script, but am trying to keep things simple since my process is already a script itself – Aleksandar Ivanisevic Aug 8 '11 at 10:25
feedback

Your Answer

 
or
required, but never shown

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