web-dev-qa-db-ja.com

Unix / Linuxでプロセスのパスを取得する方法

Windows環境では、プロセスを実行しているパスを取得するAPIがあります。 Unix/Linuxに似たようなものはありますか?

または、これらの環境でそれを行う他の方法はありますか?

121
lsalamon

Linuxでは、シンボリックリンク/proc/<pid>/exeには実行可能ファイルのパスがあります。コマンドを使用してreadlink -f /proc/<pid>/exe値を取得します。

AIXでは、このファイルは存在しません。 cksum <actual path to binary>cksum /proc/<pid>/object/a.outを比較できます。

162
jpalecek

これらの方法でexeを簡単に見つけることができます。自分で試してみてください。

  • ll /proc/<PID>/exe
  • pwdx <PID>
  • lsof -p <PID> | grep cwd
52
hahakubile

少し遅れましたが、答えはすべてLinux固有のものでした。

UNIXも必要な場合は、これが必要です。

char * getExecPath (char * path,size_t dest_len, char * argv0)
{
    char * baseName = NULL;
    char * systemPath = NULL;
    char * candidateDir = NULL;

    /* the easiest case: we are in linux */
    size_t buff_len;
    if (buff_len = readlink ("/proc/self/exe", path, dest_len - 1) != -1)
    {
        path [buff_len] = '\0';
        dirname (path);
        strcat  (path, "/");
        return path;
    }

    /* Ups... not in linux, no  guarantee */

    /* check if we have something like execve("foobar", NULL, NULL) */
    if (argv0 == NULL)
    {
        /* we surrender and give current path instead */
        if (getcwd (path, dest_len) == NULL) return NULL;
        strcat  (path, "/");
        return path;
    }


    /* argv[0] */
    /* if dest_len < PATH_MAX may cause buffer overflow */
    if ((realpath (argv0, path)) && (!access (path, F_OK)))
    {
        dirname (path);
        strcat  (path, "/");
        return path;
    }

    /* Current path */
    baseName = basename (argv0);
    if (getcwd (path, dest_len - strlen (baseName) - 1) == NULL)
        return NULL;

    strcat (path, "/");
    strcat (path, baseName);
    if (access (path, F_OK) == 0)
    {
        dirname (path);
        strcat  (path, "/");
        return path;
    }

    /* Try the PATH. */
    systemPath = getenv ("PATH");
    if (systemPath != NULL)
    {
        dest_len--;
        systemPath = strdup (systemPath);
        for (candidateDir = strtok (systemPath, ":"); candidateDir != NULL; candidateDir = strtok (NULL, ":"))
        {
            strncpy (path, candidateDir, dest_len);
            strncat (path, "/", dest_len);
            strncat (path, baseName, dest_len);

            if (access(path, F_OK) == 0)
            {
                free (systemPath);
                dirname (path);
                strcat  (path, "/");
                return path;
            }
        }
        free(systemPath);
        dest_len++;
    }

    /* again someone has use execve: we dont knowe the executable name; we surrender and give instead current path */
    if (getcwd (path, dest_len - 1) == NULL) return NULL;
    strcat  (path, "/");
    return path;
}

編集済み: Mark lakataによって報告されたバグを修正しました。

27
Hiperion

私が使う:

ps -ef | grep 786

786をPIDまたはプロセス名に置き換えます。

11
User

pwdx <process id>

このコマンドは、実行中のプロセスパスを取得します。

8
gobi

Linuxでは、すべてのプロセスの/procに独自のフォルダーがあります。したがって、getpid()を使用して、実行中のプロセスのpidを取得し、それをパス/procに結合して、必要なフォルダーを取得できます。

Pythonの簡単な例を次に示します。

import os
print os.path.join('/proc', str(os.getpid()))

ANSI Cの例もここにあります。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>


int
main(int argc, char **argv)
{
    pid_t pid = getpid();

    fprintf(stdout, "Path to current process: '/proc/%d/'\n", (int)pid);

    return EXIT_SUCCESS;
}

以下でコンパイルします:

gcc -Wall -Werror -g -ansi -pedantic process_path.c -oprocess_path 
4
hyperboreean

おかげで: Kiwy
AIXの場合:

getPathByPid()
{
    if [[ -e /proc/$1/object/a.out ]]; then
        inode=`ls -i /proc/$1/object/a.out 2>/dev/null | awk '{print $1}'`
        if [[ $? -eq 0 ]]; then
            strnode=${inode}"$"
            strNum=`ls -li /proc/$1/object/ 2>/dev/null | grep $strnode | awk '{print $NF}' | grep "[0-9]\{1,\}\.[0-9]\{1,\}\."`
            if [[ $? -eq 0 ]]; then
                # jfs2.10.6.5869
                n1=`echo $strNum|awk -F"." '{print $2}'`
                n2=`echo $strNum|awk -F"." '{print $3}'`
                # brw-rw----    1 root     system       10,  6 Aug 23 2013  hd9var
                strexp="^b.*"$n1,"[[:space:]]\{1,\}"$n2"[[:space:]]\{1,\}.*$"   # "^b.*10, \{1,\}5 \{1,\}.*$"
                strdf=`ls -l /dev/ | grep $strexp | awk '{print $NF}'`
                if [[ $? -eq 0 ]]; then
                    strMpath=`df | grep $strdf | awk '{print $NF}'`
                    if [[ $? -eq 0 ]]; then
                        find $strMpath -inum $inode 2>/dev/null
                        if [[ $? -eq 0 ]]; then
                            return 0
                        fi
                    fi
                fi
            fi
        fi
    fi
    return 1
}
2
zirong

「どこでも動作することを保証する」方法はありません。

ステップ1は、argv [0]をチェックすることです。プログラムがそのフルパスで起動された場合、これは(通常)フルパスになります。相対パスで起動された場合も同じです(ただし、getcwd()を使用して現在の作業ディレクトリを取得する必要があります)。

上記のいずれにも当てはまらない場合、ステップ2は、プログラムの名前を取得し、argv [0]からプログラムの名前を取得し、環境からユーザーのPATHを取得し、適切なものがあるかどうかを確認することです。同じ名前の実行可能バイナリ。

Argv [0]はプログラムを実行するプロセスによって設定されるため、100%の信頼性がないことに注意してください。

2
Vatine

以下のコマンドは、実行中のプロセスリストでプロセスの名前を検索し、pidをpwdxコマンドにリダイレクトして、プロセスの場所を見つけます。

ps -ef | grep "abc" |grep -v grep| awk '{print $2}' | xargs pwdx

「abc」を特定のパターンに置き換えます。

あるいは、.bashrcで関数として構成できる場合、これを頻繁に使用する必要がある場合に使用すると便利です。

ps1() { ps -ef | grep "$1" |grep -v grep| awk '{print $2}' | xargs pwdx; }

例えば:

[admin@myserver:/home2/Avro/AvroGen]$ ps1 nifi

18404: /home2/Avro/NIFI

これがいつか誰かを助けることを願っています.....

1
Arun

GNU/Linuxでパスを取得することもできます(完全にはテストされていません):

char file[32];
char buf[64];
pid_t pid = getpid();
sprintf(file, "/proc/%i/cmdline", pid);
FILE *f = fopen(file, "r");
fgets(buf, 64, f);
fclose(f);

おそらく作業ディレクトリをプロセスのディレクトリ(media/data/etcの場合)に変更するために実行可能ファイルのディレクトリが必要な場合は、最後の/の後にすべてをドロップする必要があります。

*strrchr(buf, '/') = '\0';
/*chdir(buf);*/
1
Jimmio92