55 lines
1023 B
C
55 lines
1023 B
C
/* SPDX-License-Identifier: BSD-3-Clause */
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "atoi/getnum.h"
|
|
#include "prototypes.h"
|
|
#include "shadowlog.h"
|
|
#include "stdlib.h"
|
|
#include "string/strcmp/streq.h"
|
|
#include "subid.h"
|
|
|
|
|
|
static const char Prog[] = "get_subid_owners";
|
|
|
|
|
|
static void usage(void)
|
|
{
|
|
fprintf(stderr, "Usage: [-g] %s subuid\n", Prog);
|
|
fprintf(stderr, " list uids who own the given subuid\n");
|
|
fprintf(stderr, " pass -g to query a subgid\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int i, n;
|
|
uid_t u;
|
|
uid_t *uids;
|
|
|
|
log_set_progname(Prog);
|
|
log_set_logfd(stderr);
|
|
if (argc < 2) {
|
|
usage();
|
|
}
|
|
if (argc == 3 && streq(argv[1], "-g")) {
|
|
get_uid(argv[2], &u);
|
|
n = subid_get_gid_owners(u, &uids);
|
|
} else if (argc == 2 && streq(argv[1], "-h")) {
|
|
usage();
|
|
} else {
|
|
get_gid(argv[1], &u);
|
|
n = subid_get_uid_owners(u, &uids);
|
|
}
|
|
if (n < 0) {
|
|
fprintf(stderr, "No owners found\n");
|
|
exit(1);
|
|
}
|
|
for (i = 0; i < n; i++) {
|
|
printf("%d\n", uids[i]);
|
|
}
|
|
free(uids);
|
|
return 0;
|
|
}
|