blob: 69dfe2658c855a5ef7c0be767ca5c3d64b6b90bd [file] [log] [blame]
Erik Andersen94f5e0b2000-05-01 19:10:52 +00001/* 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
31static const char id_usage[] =
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000032 "id [OPTIONS]... [USERNAME]\n"
33#ifndef BB_FEATURE_TRIVIAL_HELP
34 "\nPrint information for USERNAME or the current user\n\n"
Erik Andersen73c8c9c2000-05-13 05:36:13 +000035 "Options:\n"
Erik Andersen94f5e0b2000-05-01 19:10:52 +000036 "\t-g\tprints only the group ID\n"
37 "\t-u\tprints only the user ID\n"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000038 "\t-r\tprints the real user ID instead of the effective ID (with -ug)\n\n"
39#endif
40 ;
Erik Andersen94f5e0b2000-05-01 19:10:52 +000041
42extern int id_main(int argc, char **argv)
43{
44 int no_user = 0, no_group = 0, print_real = 0;
45 char *cp, *user, *group;
Erik Andersen5b46d792000-05-17 05:24:24 +000046 unsigned long gid;
Erik Andersen94f5e0b2000-05-01 19:10:52 +000047
48 cp = user = group = NULL;
49
50 argc--; argv++;
51
52 while (argc > 0) {
53 cp = *argv;
54 if (*cp == '-') {
55 switch (*++cp) {
56 case 'u': no_group = 1; break;
57 case 'g': no_user = 1; break;
58 case 'r': print_real = 1; break;
59 default: usage(id_usage);
60 }
61 } else {
62 user = cp;
63 }
64 argc--; argv++;
65 }
66
67 if (no_user && no_group) usage(id_usage);
68
69 if (user == NULL) {
70 user = xmalloc(9);
71 group = xmalloc(9);
72 if (print_real) {
73 my_getpwuid(user, getuid());
74 my_getgrgid(group, getgid());
75 } else {
76 my_getpwuid(user, geteuid());
77 my_getgrgid(group, getegid());
78 }
79 } else {
80 group = xmalloc(9);
81 gid = my_getpwnamegid(user);
82 my_getgrgid(group, gid);
83 }
84
Erik Andersen5b46d792000-05-17 05:24:24 +000085 if (no_group) printf("%lu\n", my_getpwnam(user));
86 else if (no_user) printf("%lu\n", my_getgrnam(group));
Erik Andersen94f5e0b2000-05-01 19:10:52 +000087 else
Erik Andersen5b46d792000-05-17 05:24:24 +000088 printf("uid=%lu(%s) gid=%lu(%s)\n",
Erik Andersen94f5e0b2000-05-01 19:10:52 +000089 my_getpwnam(user), user, my_getgrnam(group), group);
90
91
Eric Andersenb6106152000-06-19 17:25:40 +000092 return(0);
Erik Andersen94f5e0b2000-05-01 19:10:52 +000093}
94
95
96/* END CODE */