1 /* group-list.c --Print a list of group IDs or names.
2 Copyright (C) 1989-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Arnold Robbins.
18 Major rewrite by David MacKenzie, djm@gnu.ai.mit.edu.
19 Extracted from id.c by James Youngman. */
23 #include <sys/types.h>
28 #include "mgetgroups.h"
30 #include "group-list.h"
33 /* Print all of the distinct groups the user is in. */
35 print_group_list (char const *username
,
36 uid_t ruid
, gid_t rgid
, gid_t egid
,
37 bool use_names
, char delim
)
40 struct passwd
*pwd
= nullptr;
44 pwd
= getpwuid (ruid
);
49 if (!print_group (rgid
, use_names
))
55 if (!print_group (egid
, use_names
))
62 int n_groups
= xgetgroups (username
, (pwd
? pwd
->pw_gid
: egid
), &groups
);
67 error (0, errno
, _("failed to get groups for user %s"),
72 error (0, errno
, _("failed to get groups for the current process"));
77 for (int i
= 0; i
< n_groups
; i
++)
78 if (groups
[i
] != rgid
&& groups
[i
] != egid
)
81 if (!print_group (groups
[i
], use_names
))
89 /* Print the name or value of group ID GID. */
91 print_group (gid_t gid
, bool use_name
)
93 struct group
*grp
= nullptr;
101 if (TYPE_SIGNED (gid_t
))
104 error (0, 0, _("cannot find name for group ID %jd"), g
);
109 error (0, 0, _("cannot find name for group ID %ju"), g
);
116 printf ("%s", grp
->gr_name
);
118 printf ("%ju", (uintmax_t) gid
);