본문 바로가기

IT Tech/Linux

[C언어] 리눅스 프로세스 이름으로 프로세스 아이디(PID) 구하기

반응형



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <stdio.h>
#include <dirent.h>
#include <string.h>
 
static int which_number (char *s)
{
    int len, i;
 
    len = strlen (s);
 
    for (i = 0; i < len; i++)
        if ((s[i] < '0' || s[i] > '9'))
            return -1;
 
    return atoi (s);
}
 
int get_pid_from_proc_by_name (char *str)
{
    DIR *dp;
    struct dirent *dir;
    char buf[100], line[1024], tag[100], name[100];
    int pid;
    FILE *fp;
 
    dp = opendir ("/proc");
    if (!dp)
        return -1;
 
    while ((dir = readdir (dp)))
    {   
        pid = which_number (dir->d_name);
 
        if (pid == -1)
            continue;
 
        /* Open /proc/pid/status file. */
        snprintf (buf, 100, "/proc/%d/status", pid);
        fp = fopen (buf, "r");
        if (fp == NULL)
            continue;
 
        /* Get first line with name. */
        fgets (line, 1024, fp);
 
        /* Close stream. */
        fclose (fp);
 
        sscanf (line, "%s %s", tag, name);
        if (!strcmp (name, str))
        {   
            closedir(dp);
            return pid;
        }   
    }   
 
    closedir(dp);
    return -1;
}








반응형