2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static const char copyright
[] =
36 "@(#) Copyright (c) 1991, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
42 static char sccsid
[] = "@(#)id.c 8.2 (Berkeley) 2/16/94";
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD: src/usr.bin/id/id.c,v 1.33 2006/12/29 12:28:34 stefanf Exp $");
48 #include <sys/param.h>
51 #endif /* !__APPLE__ */
54 #include <bsm/audit.h>
66 void id_print(struct passwd
*, int, int, int);
67 void pline(struct passwd
*);
68 void pretty(struct passwd
*);
70 void group(struct passwd
*, int);
73 struct passwd
*who(char *);
75 int isgroups
, iswhoami
;
79 int32_t getgrouplist_2(const char *, gid_t
, gid_t
**);
83 main(int argc
, char *argv
[])
87 int Gflag
, Mflag
, Pflag
, ch
, gflag
, id
, nflag
, pflag
, rflag
, uflag
;
91 Gflag
= Mflag
= Pflag
= gflag
= nflag
= pflag
= rflag
= uflag
= 0;
94 myname
= strrchr(argv
[0], '/');
95 myname
= (myname
!= NULL
) ? myname
+ 1 : argv
[0];
96 if (strcmp(myname
, "groups") == 0) {
100 else if (strcmp(myname
, "whoami") == 0) {
105 while ((ch
= getopt(argc
, argv
,
106 (isgroups
|| iswhoami
) ? "" : "APGMagnpru")) != -1)
146 if (iswhoami
&& argc
> 0)
149 switch(Aflag
+ Gflag
+ Mflag
+ Pflag
+ gflag
+ pflag
+ uflag
) {
153 if (!nflag
&& !rflag
)
160 pw
= *argv
? who(*argv
) : NULL
;
162 if (Mflag
&& pw
!= NULL
)
173 id
= pw
? pw
->pw_gid
: rflag
? getgid() : getegid();
174 if (nflag
&& (gr
= getgrgid(id
)))
175 (void)printf("%s\n", gr
->gr_name
);
177 (void)printf("%u\n", id
);
182 id
= pw
? pw
->pw_uid
: rflag
? getuid() : geteuid();
183 if (nflag
&& (pw
= getpwuid(id
)))
184 (void)printf("%s\n", pw
->pw_name
);
186 (void)printf("%u\n", id
);
211 id_print(pw
, 1, 0, 0);
216 id_print(pw
, 0, 1, 1);
222 pretty(struct passwd
*pw
)
229 (void)printf("uid\t%s\n", pw
->pw_name
);
230 (void)printf("groups\t");
233 if ((login
= getlogin()) == NULL
)
236 pw
= getpwuid(rid
= getuid());
237 if (pw
== NULL
|| strcmp(login
, pw
->pw_name
))
238 (void)printf("login\t%s\n", login
);
240 (void)printf("uid\t%s\n", pw
->pw_name
);
242 (void)printf("uid\t%u\n", rid
);
244 if ((eid
= geteuid()) != rid
) {
245 if ((pw
= getpwuid(eid
)))
246 (void)printf("euid\t%s\n", pw
->pw_name
);
248 (void)printf("euid\t%u\n", eid
);
250 if ((rid
= getgid()) != (eid
= getegid())) {
251 if ((gr
= getgrgid(rid
)))
252 (void)printf("rgid\t%s\n", gr
->gr_name
);
254 (void)printf("rgid\t%u\n", rid
);
256 (void)printf("groups\t");
262 id_print(struct passwd
*pw
, int use_ggl
, int p_euid
, int p_egid
)
265 gid_t gid
, egid
, lastgid
;
269 gid_t
*groups
= NULL
;
271 gid_t groups
[NGROUPS
+ 1];
277 pw
= getpwuid(getuid());
292 if (use_ggl
&& pw
!= NULL
) {
295 ngroups
= getgrouplist_2(pw
->pw_name
, gid
, &groups
);
297 ngroups
= NGROUPS
+ 1;
298 getgrouplist(pw
->pw_name
, gid
, groups
, &ngroups
);
303 groups
= malloc((NGROUPS
+ 1) * sizeof(gid_t
));
305 ngroups
= getgroups(NGROUPS
+ 1, groups
);
310 warn("failed to retrieve group list");
314 printf("uid=%u(%s)", uid
, pw
->pw_name
);
316 printf("uid=%u", getuid());
317 printf(" gid=%u", gid
);
318 if ((gr
= getgrgid(gid
)))
319 (void)printf("(%s)", gr
->gr_name
);
320 if (p_euid
&& (euid
= geteuid()) != uid
) {
321 (void)printf(" euid=%u", euid
);
322 if ((pw
= getpwuid(euid
)))
323 (void)printf("(%s)", pw
->pw_name
);
325 if (p_egid
&& (egid
= getegid()) != gid
) {
326 (void)printf(" egid=%u", egid
);
327 if ((gr
= getgrgid(egid
)))
328 (void)printf("(%s)", gr
->gr_name
);
331 for (lastgid
= -1, cnt
= 0; cnt
< ngroups
; ++cnt
) {
332 if (lastgid
== (gid
= groups
[cnt
]))
336 if ((gr
= getgrgid(gid
)))
337 printf("(%s)", gr
->gr_name
);
350 auditinfo_addr_t auditinfo
;
352 if (getaudit_addr(&auditinfo
, sizeof(auditinfo
)) < 0)
354 printf("auid=%d\n", auditinfo
.ai_auid
);
355 printf("mask.success=0x%08x\n", auditinfo
.ai_mask
.am_success
);
356 printf("mask.failure=0x%08x\n", auditinfo
.ai_mask
.am_failure
);
357 printf("termid.port=0x%08x\n", auditinfo
.ai_termid
.at_port
);
358 printf("asid=%d\n", auditinfo
.ai_asid
);
363 group(struct passwd
*pw
, int nflag
)
366 int cnt
, id
, lastid
, ngroups
;
370 gid_t groups
[NGROUPS
+ 1];
376 pw
= getpwuid(getuid());
383 ngroups
= getgrouplist_2(pw
->pw_name
, pw
->pw_gid
, &groups
);
385 ngroups
= NGROUPS
+ 1;
386 (void) getgrouplist(pw
->pw_name
, pw
->pw_gid
, groups
, &ngroups
);
390 groups
= malloc(NGROUPS
+ 1);
392 groups
[0] = getgid();
393 ngroups
= getgroups(NGROUPS
, groups
+ 1) + 1;
395 fmt
= nflag
? "%s" : "%u";
396 for (lastid
= -1, cnt
= 0; cnt
< ngroups
; ++cnt
) {
397 if (lastid
== (id
= groups
[cnt
]))
400 if ((gr
= getgrgid(id
)))
401 (void)printf(fmt
, gr
->gr_name
);
403 (void)printf(*fmt
== ' ' ? " %u" : "%u",
407 (void)printf(fmt
, id
);
422 errx(1, "-M unsupported");
423 #else /* !__APPLE__ */
428 error
= mac_prepare_process_label(&label
);
430 errx(1, "mac_prepare_type: %s", strerror(errno
));
432 error
= mac_get_proc(label
);
434 errx(1, "mac_get_proc: %s", strerror(errno
));
436 error
= mac_to_text(label
, &string
);
438 errx(1, "mac_to_text: %s", strerror(errno
));
440 (void)printf("%s\n", string
);
443 #endif /* __APPLE__ */
454 * Translate user argument into a pw pointer. First, try to
455 * get it as specified. If that fails, try it as a number.
457 if ((pw
= getpwnam(u
)))
459 id
= strtol(u
, &ep
, 10);
460 if (*u
&& !*ep
&& (pw
= getpwuid(id
)))
462 errx(1, "%s: no such user", u
);
467 pline(struct passwd
*pw
)
471 if ((pw
= getpwuid(getuid())) == NULL
)
475 (void)printf("%s:%s:%d:%d:%s:%ld:%ld:%s:%s:%s\n", pw
->pw_name
,
476 pw
->pw_passwd
, pw
->pw_uid
, pw
->pw_gid
, pw
->pw_class
,
477 (long)pw
->pw_change
, (long)pw
->pw_expire
, pw
->pw_gecos
,
478 pw
->pw_dir
, pw
->pw_shell
);
487 (void)fprintf(stderr
, "usage: groups [user]\n");
489 (void)fprintf(stderr
, "usage: whoami\n");
491 (void)fprintf(stderr
, "%s\n%s%s\n%s\n%s\n%s\n%s\n%s\n",
498 " id -G [-n] [user]",
501 " id -g [-nr] [user]",
503 " id -u [-nr] [user]");