Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way in C/C++ to find the location (full path) of the current executed program (the problem with argv[0] is that it does not give the full path)?

share|improve this question
8  
which operating system? – anon Jun 1 '09 at 7:38
1  
Good answer here also: stackoverflow.com/questions/1023306/… – ergosys Sep 10 '11 at 19:32
This question ("How can I find the location of my program in SETTING X?") could really use a tag; it's hard to search for using keywords! – SamB Feb 12 '12 at 22:32

10 Answers

up vote 87 down vote accepted

To summarize:

  • On Unixes with /proc really straight and realiable way is to:

    • readlink("/proc/self/exe", buf, bufsize) (Linux)

    • readlink("/proc/curproc/file", buf, bufsize) (FreeBSD)

    • readlink("/proc/self/path/a.out", buf, bufsize) (Solaris)

  • On Unixes without /proc (i.e. if above fails):

    • If argv[0] starts with "/" (absolute path) this is the path.

    • Otherwise if argv[0] contains "/" (relative path) append it to cwd (assuming it hasn't been changed yet).

    • Otherwise search directories in $PATH for executable argv[0].

    Afterwards it may be reasonable to check whether the executable isn't actually a symlink. If it is resolve it relative to the symlink directory.

    This step is not necessary in /proc method (at least for Linux). There the proc symlink points directly to executable.

    Note that it is up to the calling process to set argv[0] correctly. It is right most of the times however there are occasions when the calling process cannot be trusted (ex. setuid executable).

  • On Windows: use GetModuleFileName(NULL, buf, bufsize)

share|improve this answer
+1 nice sharp answer – anon Jun 1 '09 at 10:06
12  
Anything that depends on argv[0] being the program name is not reliable. It will work most of the time, but not every time. This problem is hard on unixes without /proc – dmckee Jun 1 '09 at 14:37
6  
Not all unixes with proc have /proc/self/exe. The layout of /proc is entirely OS-specific and they all do it a bit differently. For example, FreeBSD provides /proc/curproc/file which works the same as Linux's /proc/self/exe. But others may not do this at all. – MarkR Oct 27 '10 at 8:19
2  
Note that if someone needs to conceal their tracks, then execl("/home/hacker/.hidden/malicious", "/bin/ls", "-s", (char *)0); leaves argv[0] with an absolute pathname that has nothing whatsoever to do with the name of the file executed. The other information is useful, though; thanks. – Jonathan Leffler May 24 '11 at 13:55
@Jonathan Leffler Of course it is up to the spawning process to set argv[0] correctly and called program can be easily be fulled. Your example however is odd. What's the point of misleading malicious program? The better example would be the setuid executable. In that kind of code argv[0] cannot be trusted. – lispmachine May 24 '11 at 18:26
show 8 more comments

If under any POSIX system, then you could check a simlink located under /proc/PID/exe. Few examples:

# file /proc/*/exe
/proc/1001/exe: symbolic link to /usr/bin/distccd
/proc/1023/exe: symbolic link to /usr/sbin/sendmail.sendmail
/proc/1043/exe: symbolic link to /usr/sbin/crond
share|improve this answer
8  
/proc is not POSIX, and it's not very standardized. Many modern Unices have it, some don't. – Dietrich Epp Jun 1 '09 at 7:50
Always good to learn new things. Thanks. Is there more "programmatic" way to do this? – eran Jun 1 '09 at 7:53
@Dietrich: you're right, it's not posix. According to Wikipedia unix-like systems having it are: Linux, AIX, BSD, Solaris, QNX. It however it's not stated whether all those systems have /proc/*/cmd simlink. – anon Jun 1 '09 at 8:00
Solaris does have /proc, but doesn't have /proc/*/cmd. – sth Jun 1 '09 at 8:04
@unknown(google): check out man 2:3 readlink or here: linux.die.net/man/3/readlink – anon Jun 1 '09 at 8:04
show 1 more comment

Use GetModuleFileName() function if you are using Windows.

share|improve this answer
Thanks, but I'm using linux and unix. – eran Jun 1 '09 at 7:48
readlink("/proc/self/exe", buffer, buffer_size);
share|improve this answer

I don't think there is a portable way to do this.

Does argv[0] have the full path if you invoke the program with a full static path? If so, you could force the user to execute the binary as such, like sshd does.

share|improve this answer

Please note that the following comments are unix-only.

The pedantic answer to this question is that there is no general way to answer this question correctly in all cases. As you've discovered, argv[0] can be set to anything at all by the parent process, and so need have no relation whatsoever to the actual name of the program or its location in the file system.

However, the following heuristic often works:

  1. If argv[0] is an absolute path, assume this is the full path to the executable.
  2. If argv[0] is a relative path, ie, it contains a /, determine the current working directory with getcwd() and then append argv[0] to it.
  3. If argv[0] is a plain word, search $PATH looking for argv[0], and append argv[0] to whatever directory you find it in.

Note that all of these can be circumvented by the process which invoked the program in question. Finally, you can use linux-specific techniques, such as mentioned by emg-2. There are probably equivalent techniques on other operating systems.

Even supposing that the steps above give you a valid path name, you still might not have the path name you actually want (since I suspect that what you actually want to do is find a configuration file somewhere). The presence of hard links means that you can have the following situation:

-- assume /app/bin/foo is the actual program
$ mkdir /some/where/else
$ ln /app/bin/foo /some/where/else/foo     # create a hard link to foo
$ /some/where/else/foo

Now, the approach above (including, I suspect, /proc/$pid/exe) will give /some/where/else/foo as the real path to the program. And, in fact, it is a real path to the program, just not the one you wanted. Note that this problem doesn't occur with symbolic links which are much more common in practice than hard links.

In spite of the fact that this approach is in principle unreliable, it works well enough in practice for most purposes.

share|improve this answer

Remember that in unix systems the binary may have been removed since it was started. It's perfectly legal and safe on unix. Last I checked Windows will not allow you to remove a running binary.

/proc/self/exe will still be readable, but it will not be a working symlink really. It will be... odd.

share|improve this answer

Not an answer actually, but just a note to keep in mind.

As we could see, the problem of finding the location of running executable is quite tricky and platform-specific in Linux and Unix. One should think twice before doing that.

If you need your executable location for discovering some configuration or resource files, maybe you should follow the Unix way of placing files in the system: put configs to /etc or /usr/local/etc or in current user home directory, and /usr/share is a good place to put your resource files.

share|improve this answer

I would

1) Use the basename() function: http://linux.die.net/man/3/basename
2) chdir() to that directory
3) Use getpwd() to get the current directory

That way you'll get the directory in a neat, full form, instead of ./ or ../bin/.

Maybe you'll want to save and restore the current directory, if that is important for your program.

share|improve this answer

For Linux you can find the /proc/self/exe way of doing things bundled up in a nice library called binreloc, you can find the library at:

share|improve this answer
+1 for the BinReloc library. – Danilo Piazzalunga Feb 20 '10 at 12:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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