显示按其状态过滤的进程的系统调用

我正在进行一个系统调用,它循环处理每个具有特定状态的进程(作为参数传递给系统调用)并显示其名称,PID,UID和子进程的名称。 这是我到目前为止:

asmlinkage int sys_procinfo(int state){
    struct task_struct *task;
    struct task_struct *child_ptr;
    struct list_head *list;


    for_each_process(task) {
        if(task->state == state){
            /* print info about the parent */
            printk(KERN_INFO "nombre:%s[pid:%d]estado:%ld[uid:%d]n", task->comm, task->pid, task->state, task->uid);


            list_for_each(list, &task->children) {
                child_ptr = list_entry(list, struct task_struct, sibling);
                /* child_ptr now points to one of current's children */
                printk(KERN_INFO "Hijo %sn", child_ptr->comm);
            }
        }
    }
    return 0;
}

这将打印所有系统的进程及其子进程,完全忽略条件if(task-> state == state),这对我来说很奇怪。 我只需要打印处于'状态'状态的进程的信息(例如TASK_RUNNING = 0,EXIT_ZOMBIE = 32,TASK_WAKING = 256,TASK_INTERRUPTIBLE = 1等)。

哦,我也希望系统调用返回它的系统调用号码,但我为两个系统定义了它:32位和64位,它们在syscall_32.tbl和syscall_64.tbl表中的编号是不同的,所以我认为我不能硬编码系统调用号码。 有没有我可以用来返回该值的宏?

谢谢。 PS:我正在研究kubuntu 16.04LTS,并且使用Linux Kernel Archives中的内核“linux-3.16.43.tar.xz”


我认为问题在于“任务”未初始化,但这有点奇怪,因为它应该指向for_each_process()宏中的每个进程。 我所做的是首先指向init(或systemd)进程,然后遍历每个进程及其子进程。 这是内核中的sys.c文件,它打印出沿着它们的PID和UID以及它们的子项名称的状态'state'(如果它是有效状态)中运行的每个进程的名称。 它可以像syscall一样调用(SYS_procinfo_64,state);

asmlinkage int sys_procinfo(int state) {
    struct task_struct *tarea;
    struct task_struct *hijo;
    struct list_head *lista_procesos;

    if(state != 0 && state != 1 && state != 2 && state != 4 && state != 8 && state != 16 && state != 32
        && state != 64 && state != 128 && state != 256 && state != 512 && state != 1024 && state != 2048
        && state != 4096){
        /* Si el estado ingresado no es valido, retornar -1 */
        return -1;
    }
    /* tarea apunta hacia init para recorrer los procesos */
    for (tarea = current; tarea != &init_task; tarea = tarea->parent)
        ;
    /* recorrer todos los procesos con el puntero tarea */
    for_each_process(tarea) {
        /* mostrar informacion de procesos en el estado 'state' */
        if(tarea->state == state || task->exit_state == state) {
            /* informacion del padre */
            printk(KERN_INFO "Proceso %s     pid: %d    uid: %un", tarea->comm, tarea->pid, current_uid().val);
            /* informacion de los hijos */
            list_for_each(lista_procesos, &tarea->children) {
                hijo = list_entry(lista_procesos, struct task_struct, sibling);
                printk(KERN_INFO "Hijo %sn", hijo->comm);
            }
        }
    }
    return state;
}
链接地址: http://www.djcxy.com/p/90887.html

上一篇: System call that shows processes filtered by their status

下一篇: Linux glibc system call wrappers location