C - 属于该组的用户 - Linux

时间:2015-03-09 19:35:19

标签: c linux administration ansi-c

我尝试解决显示属于指定为参数(optarg)的组的所有用户。

我写了第一个案例,它显示了所有用户,并在其下面显示了他们的组,现在我想要创建包含组名称的参数optarg的案例。

我不能使用gr_mem,因为我不是根。

struct passwd *p;
gid_t *groups = NULL;
int ng = 0;
struct group *gr;


int i, opt;

while((opt = getopt (argc, argv, "a")) != -1){
    switch(opt){
        case 'a':
            setpwent();
                while ((p=getpwent()) != NULL){
                    printf("%s\n", p->pw_name);

                    if(getgrouplist(p->pw_name, p->pw_gid, groups, &ng) < 0){
                        groups = (gid_t*) malloc(ng * sizeof (gid_t));
                        getgrouplist(p->pw_name, p->pw_gid, groups, &ng);
                    }

                    for(i = 0; i<ng; i++){              
                        gr = getgrgid(groups[i]);
                        printf("%s\n", gr->gr_name);
                    }   
                }   
            endpwent();
        return 0;
    }
}

setpwent();
while ((p=getpwent()) != NULL)
    printf("%s\n", p->pw_name);
endpwent();

1 个答案:

答案 0 :(得分:0)

  

我不能使用gr_mem,因为我不是根。

您无需成为root用户即可使用gr_mem的字段struct group