Extract usage information into a separate file.
[oweals/busybox.git] / 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         
37         cp = user = group = NULL;
38
39         argc--; argv++;
40
41         while (argc > 0) {
42                 cp = *argv;
43                 if (*cp == '-') {
44                         switch (*++cp) {
45                         case 'u': no_group = 1; break;
46                         case 'g': no_user = 1; break;
47                         case 'r': print_real = 1; break;
48                         default: usage(id_usage);
49                         }
50                 } else {
51                         user = cp;                      
52                 }
53                 argc--; argv++;
54         }
55
56         if (no_user && no_group) usage(id_usage);
57
58         if (user == NULL) {
59                 user = xmalloc(9);
60                 group = xmalloc(9);
61                 if (print_real) {
62                         my_getpwuid(user, getuid());
63                         my_getgrgid(group, getgid());
64                 } else {
65                         my_getpwuid(user, geteuid());
66                         my_getgrgid(group, getegid());
67                 }
68         } else {
69                 group = xmalloc(9);
70             gid = my_getpwnamegid(user);
71                 my_getgrgid(group, gid);
72         }
73
74         if (no_group) printf("%lu\n", my_getpwnam(user));
75         else if (no_user) printf("%lu\n", my_getgrnam(group));
76         else
77                 printf("uid=%lu(%s) gid=%lu(%s)\n",
78                            my_getpwnam(user), user, my_getgrnam(group), group);
79         
80
81         return(0);
82 }
83
84
85 /* END CODE */