Converted option parsing to getopt() and made some minor formatting changes.
[oweals/busybox.git] / coreutils / id.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini id implementation for busybox
4  *
5  *
6  * Copyright (C) 2000 by Randolph Chung <tausq@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "internal.h"
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <pwd.h>
28 #include <grp.h>
29 #include <sys/types.h>
30
31 extern int id_main(int argc, char **argv)
32 {
33         int no_user = 0, no_group = 0, print_real = 0;
34         char *cp, *user, *group;
35         unsigned long gid;
36         int opt;
37         
38         cp = user = group = NULL;
39
40         while ((opt = getopt(argc, argv, "ugr")) > 0) {
41                 switch (opt) {
42                         case 'u':
43                                 no_group++;
44                                 break;
45                         case 'g':
46                                 no_user++;
47                                 break;
48                         case 'r':
49                                 print_real++;
50                                 break;
51                         default:
52                                 usage(id_usage);
53                 }
54         }
55
56         if (no_user && no_group) usage(id_usage);
57
58         user = argv[optind];
59
60         if (user == NULL) {
61                 user = xmalloc(9);
62                 group = xmalloc(9);
63                 if (print_real) {
64                         my_getpwuid(user, getuid());
65                         my_getgrgid(group, getgid());
66                 } else {
67                         my_getpwuid(user, geteuid());
68                         my_getgrgid(group, getegid());
69                 }
70         } else {
71                 group = xmalloc(9);
72             gid = my_getpwnamegid(user);
73                 my_getgrgid(group, gid);
74         }
75
76         if (no_group)
77                 printf("%lu\n", my_getpwnam(user));
78         else if (no_user)
79                 printf("%lu\n", my_getgrnam(group));
80         else
81                 printf("uid=%lu(%s) gid=%lu(%s)\n",
82                                 my_getpwnam(user), user, my_getgrnam(group), group);
83
84         return(0);
85 }
86
87
88 /* END CODE */