vote up 4 vote down star

In the C / Unix environment I work in, I see some developers using __progname instead of argv[0] for usage() messages. Is there some advantage to this? What's the difference between __progname and argv[0]. Is it portable?

flag

79% accept rate

5 Answers

vote up 10 vote down check

__progname isn't standard and therefore not portable, prefer argv[0]. I suppose __progname could lookup a string resource to get the name which isn't dependent on the filename you ran it as. But argv[0] will give you the name they actually ran it as which I would find more useful.

link|flag
Consider: execl("/bin/sh", "hot potatoes", "-c", "echo $0 - Hi", (char *)0); Works fine; argv[0] is "hot potatoes"; echoes "hot potatoes - Hi". That's nothing to do with the name of the executable that was run. – Jonathan Leffler Nov 8 '08 at 8:41
Despite the previous comment - I agree that argv[0] is more portable. And only a few programs mess with argv[0] like that - but any attacker can do so. Be cautious about basing critical decisions on argv[0]. – Jonathan Leffler Nov 8 '08 at 8:42
vote up 4 vote down

Using __progname allows you to alter the contents of the argv[] array while still maintaining the program name. Some of the common tools such as getopt() modify argv[] as they process the arguments.

For portability, you can strcopy argv[0] into your own progname buffer when your program starts.

link|flag
GNU getopt() messes with argv; non-GNU versions do not generally do so. – Jonathan Leffler Nov 8 '08 at 8:43
@Jonathan: Yes, thanks for the clarification. I GNU I'd been sticking with one platform for too long. (Sorry.) – Adam Liss Dec 22 '08 at 12:36
vote up 2 vote down

It's a BSDism, and definitely not portable.

link|flag
vote up 2 vote down

I see at least two potential problems with argv[0].

First, argv[0] or argv itself may be NULL if execve() caller was evil or careless enough. Calling execve("foobar", NULL, NULL) is usually an easy and fun way to prove an over confident programmer his code is not sig11-proof.

It must also be noted that argv will not be defined outside of main() while __progname is usually defined as a global variable you can use from within your usage() function or even before main() is called (like non standard GCC constructors).

link|flag
But "a Strictly Conforming POSIX Application to pass at least one argument to the exec function, thus guaranteeing that argc be one or greater when invoked by such an application." Surely no one would knowingly violate POSIX! (opengroup.org/onlinepubs/000095399/…) – Matthew Flaschen Dec 22 '08 at 8:47
vote up 1 vote down

If your program was run using, for instance, a symbolic link, argv[0] will contain the name of that link.

I'm guessing that __progname will contain the name of the actual program file.

In any case, argv[0] is defined by the C standard. __progname is not.

link|flag

Your Answer

Get an OpenID
or

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