从/ proc / <pid> / status </pid>获取pid和其他进程信息

时间:2014-01-13 11:18:31

标签: c linux

我需要从/proc/PID/status

获取一些信息(pid只是一个例子,我知道通过许多其他方式更容易获得它)

我试过这样做:

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <fcntl.h>
#include <sys/procfs.h>
#include <sys/signal.h>
#include <sys/syscall.h>
#include <sys/param.h>

int main(){
        char buf[BUFSIZ], buffer[10];
        char pathbase[20], pathdir[20];
        FILE *fp;
        prstatus_t status;

        printf("Process ID: %d\n", getpid());
        printf("Parent process ID: %d\n", getppid());
        printf("Group ID: %d\n", getpgrp());
        printf("Session ID: %d\n", getsid(0));

        strcpy(pathbase,"/proc/");
        sprintf(buffer, "%d", getpid());
        strcat(pathbase, buffer);

        strcpy(pathdir, pathbase);
        strcat(pathdir,"/status");

        if((fp = fopen(pathdir, "r")) == NULL) perror("fopen");
        fread(&status, sizeof(prstatus_t), 1, fp);

        printf("Proces id: %d\n", status.pr_pid);
        printf("Proces ppid: %d\n", (int)status.pr_ppid);
        fclose(fp);
}

它显然是错误的,因为我得到的结果是:

Process ID: 5474
Parent process ID: 3781
Group ID: 5474
Session ID: 3781
Proces id: 1735289198
Proces ppid: 1733560873

1 个答案:

答案 0 :(得分:1)

事情是/proc/[pid]/status是一个文本文件。所以你的fread正在将文本复制到结构status中 - 所以一切都会像乱码一样。

您可以逐行阅读状态文件,也可以使用/proc/[pid]/stat文件,该文件在一行中包含相同的信息(status供人类消费,stat用于节目消耗)。要获取进程ID(或任何其他信息),您只需要对该单行进行标记。