Linux - как изменить информацию о разветвленных процессах в C - PullRequest
5 голосов
/ 04 мая 2011

Заголовок может звучать немного странно, с ps aux Я вижу это:

root     20953  0.0  0.0   9528  1280 ?        Ss   Apr28   0:07 sendmail: accepting connections

, где "принятие соединений" - это что-то вроде заголовка процесса sendmail.Это не аргумент, потому что cat /proc/20953/cmdline возвращает sendmail: accepting connections (пробел вместо 0x00):

# cat /proc/20953/cmdline |hexdump -C
00000000  73 65 6e 64 6d 61 69 6c  3a 20 61 63 63 65 70 74  |sendmail: accept|
00000010  69 6e 67 20 63 6f 6e 6e  65 63 74 69 6f 6e 73     |ing connections|
0000001f

Аргументы в / proc fs разделены нулевым байтом:

# cat /proc/26511/cmdline |hexdump -C
00000000  2f 62 69 6e 2f 62 61 73  68 00 2f 77 65 62 72 6f  |/bin/bash./webro|
00000010  6f 74 2f 70 72 6f 72 61  69 6c 2f 73 63 72 69 70  |ot/prorail/scrip|
00000020  74 73 2f 73 79 6e 63 6c  6f 6f 70 2e 73 68 00     |ts/syncloop.sh.|
0000002f

Итак,когда я делаю fork () в C, как я могу установить эту информацию о процессе, чтобы я мог узнать, какой процесс это?

Ответы [ 3 ]

4 голосов
/ 04 мая 2011

sendmail имеет несколько способов, которые он делает, в зависимости от системы. См. Setproctitle в sendmail / conf.c в источнике:

#define SPT_NONE        0       /* don't use it at all */
#define SPT_REUSEARGV   1       /* cover argv with title information */
#define SPT_BUILTIN     2       /* use libc builtin */
#define SPT_PSTAT       3       /* use pstat(PSTAT_SETCMD, ...) */
#define SPT_PSSTRINGS   4       /* use PS_STRINGS->... */
#define SPT_SYSMIPS     5       /* use sysmips() supported by NEWS-OS 6 */
#define SPT_SCO         6       /* write kernel u. area */
#define SPT_CHANGEARGV  7       /* write our own strings into argv[] */

Подробнее см. Процедуру setproctitle в conf.c.

0 голосов
/ 31 мая 2017

в этой статье: setproctitle () в Linux автор объясняет, как изменить название процесса.Я полагаю, setproctitle доступен в BSD , поэтому он попытался реализовать его для Linux.Ниже функция из библиотеки lxc

Я еще не тестировал ее.Я также не проверял, использует ли она другую функцию из библиотеки, поэтому код может быть неполным.Не стесняйтесь проверить это и оставить комментарий.

/*
 * Sets the process title to the specified title. Note that this may fail if
 * the kernel doesn't support PR_SET_MM_MAP (kernels <3.18).
 */
int setproctitle(char *title)
{
    static char *proctitle = NULL;
    char buf[2048], *tmp;
    FILE *f;
    int i, len, ret = 0;

    /* We don't really need to know all of this stuff, but unfortunately
     * PR_SET_MM_MAP requires us to set it all at once, so we have to
     * figure it out anyway.
     */
    unsigned long start_data, end_data, start_brk, start_code, end_code,
            start_stack, arg_start, arg_end, env_start, env_end,
            brk_val;
    struct prctl_mm_map prctl_map;

    f = fopen_cloexec("/proc/self/stat", "r");
    if (!f) {
        return -1;
    }

    tmp = fgets(buf, sizeof(buf), f);
    fclose(f);
    if (!tmp) {
        return -1;
    }

    /* Skip the first 25 fields, column 26-28 are start_code, end_code,
     * and start_stack */
    tmp = strchr(buf, ' ');
    for (i = 0; i < 24; i++) {
        if (!tmp)
            return -1;
        tmp = strchr(tmp+1, ' ');
    }
    if (!tmp)
        return -1;

    i = sscanf(tmp, "%lu %lu %lu", &start_code, &end_code, &start_stack);
    if (i != 3)
        return -1;

    /* Skip the next 19 fields, column 45-51 are start_data to arg_end */
    for (i = 0; i < 19; i++) {
        if (!tmp)
            return -1;
        tmp = strchr(tmp+1, ' ');
    }

    if (!tmp)
        return -1;

    i = sscanf(tmp, "%lu %lu %lu %*u %*u %lu %lu",
        &start_data,
        &end_data,
        &start_brk,
        &env_start,
        &env_end);
    if (i != 5)
        return -1;

    /* Include the null byte here, because in the calculations below we
     * want to have room for it. */
    len = strlen(title) + 1;

    proctitle = realloc(proctitle, len);
    if (!proctitle)
        return -1;

    arg_start = (unsigned long) proctitle;
    arg_end = arg_start + len;

    brk_val = syscall(__NR_brk, 0);

    prctl_map = (struct prctl_mm_map) {
        .start_code = start_code,
        .end_code = end_code,
        .start_stack = start_stack,
        .start_data = start_data,
        .end_data = end_data,
        .start_brk = start_brk,
        .brk = brk_val,
        .arg_start = arg_start,
        .arg_end = arg_end,
        .env_start = env_start,
        .env_end = env_end,
        .auxv = NULL,
        .auxv_size = 0,
        .exe_fd = -1,
    };

    ret = prctl(PR_SET_MM, PR_SET_MM_MAP, (long) &prctl_map, sizeof(prctl_map), 0);
    if (ret == 0)
        strcpy((char*)arg_start, title);
    else
        INFO("setting cmdline failed - %s", strerror(errno));

    return ret;
}
0 голосов
/ 04 мая 2011

Я нашел ответ здесь , хотя вопрос не тот же.Все кредиты должны быть отправлены на Крис Джестер-Янг

#include <string.h>
#include <unistd.h>

int main(int argc, char** argv)
{
    strcpy(argv[0], "Hello, world!");
    sleep(10);
    return 0;
}
...