2018-11-07 03:38:51 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <alloca.h>
|
2018-10-22 15:06:22 +03:00
|
|
|
|
2018-11-09 12:18:04 +03:00
|
|
|
int main(int argc, char** argv)
|
2018-10-22 15:06:22 +03:00
|
|
|
{
|
2018-11-09 12:18:04 +03:00
|
|
|
(void) argc;
|
|
|
|
(void) argv;
|
2018-10-22 15:06:22 +03:00
|
|
|
uid_t uid = getuid();
|
|
|
|
gid_t gid = getgid();
|
2018-10-31 21:49:22 +03:00
|
|
|
|
|
|
|
struct passwd* pw = getpwuid(uid);
|
2018-11-07 00:27:51 +03:00
|
|
|
struct group* gr = getgrgid(gid);
|
2018-10-31 21:49:22 +03:00
|
|
|
|
2018-11-07 03:38:51 +03:00
|
|
|
printf("uid=%u(%s), gid=%u(%s)", uid, pw ? pw->pw_name : "n/a", gid, gr ? gr->gr_name : "n/a", getpid());
|
|
|
|
|
|
|
|
int extra_gid_count = getgroups(0, nullptr);
|
|
|
|
if (extra_gid_count) {
|
|
|
|
auto* extra_gids = (gid_t*)alloca(extra_gid_count * sizeof(gid_t));
|
|
|
|
int rc = getgroups(extra_gid_count, extra_gids);
|
|
|
|
if (rc < 0) {
|
|
|
|
perror("\ngetgroups");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
printf(",");
|
|
|
|
for (int g = 0; g < extra_gid_count; ++g) {
|
|
|
|
auto* gr = getgrgid(extra_gids[g]);
|
|
|
|
if (gr)
|
|
|
|
printf("%u(%s)", extra_gids[g], gr->gr_name);
|
|
|
|
else
|
|
|
|
printf("%u", extra_gids[g]);
|
|
|
|
if (g != extra_gid_count - 1)
|
|
|
|
printf(",");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\n");
|
2018-10-22 15:06:22 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|