Apply a patch from Brent Priddy <brent.priddy@adtran.com> to add
'id -n' support. -Erik
This commit is contained in:
@ -532,6 +532,7 @@ const char id_usage[] =
|
|||||||
"Options:\n"
|
"Options:\n"
|
||||||
"\t-g\tprints only the group ID\n"
|
"\t-g\tprints only the group ID\n"
|
||||||
"\t-u\tprints only the user ID\n"
|
"\t-u\tprints only the user ID\n"
|
||||||
|
"\t-n\tprint a name instead of a number (with for -ug)\n"
|
||||||
"\t-r\tprints the real user ID instead of the effective ID (with -ug)"
|
"\t-r\tprints the real user ID instead of the effective ID (with -ug)"
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
extern int id_main(int argc, char **argv)
|
extern int id_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int no_user = 0, no_group = 0, print_real = 0;
|
int no_user = 0, no_group = 0, print_real = 0;
|
||||||
|
int name_not_number = 0;
|
||||||
char user[9], group[9];
|
char user[9], group[9];
|
||||||
long gid;
|
long gid;
|
||||||
long pwnam, grnam;
|
long pwnam, grnam;
|
||||||
@ -38,7 +39,7 @@ extern int id_main(int argc, char **argv)
|
|||||||
|
|
||||||
gid = 0;
|
gid = 0;
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "ugr")) > 0) {
|
while ((opt = getopt(argc, argv, "ugrn")) > 0) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'u':
|
case 'u':
|
||||||
no_group++;
|
no_group++;
|
||||||
@ -49,6 +50,9 @@ extern int id_main(int argc, char **argv)
|
|||||||
case 'r':
|
case 'r':
|
||||||
print_real++;
|
print_real++;
|
||||||
break;
|
break;
|
||||||
|
case 'n':
|
||||||
|
name_not_number++;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
usage(id_usage);
|
usage(id_usage);
|
||||||
}
|
}
|
||||||
@ -76,12 +80,20 @@ extern int id_main(int argc, char **argv)
|
|||||||
if (gid == -1 || pwnam==-1 || grnam==-1) {
|
if (gid == -1 || pwnam==-1 || grnam==-1) {
|
||||||
error_msg_and_die("%s: No such user\n", user);
|
error_msg_and_die("%s: No such user\n", user);
|
||||||
}
|
}
|
||||||
if (no_group)
|
|
||||||
printf("%ld\n", pwnam);
|
if (no_group) {
|
||||||
else if (no_user)
|
if(name_not_number && user)
|
||||||
printf("%ld\n", grnam);
|
printf("%s\n",user);
|
||||||
else
|
else
|
||||||
|
printf("%ld\n", pwnam);
|
||||||
|
} else if (no_user) {
|
||||||
|
if(name_not_number && group)
|
||||||
|
printf("%s\n", group);
|
||||||
|
else
|
||||||
|
printf("%ld\n", grnam);
|
||||||
|
} else {
|
||||||
printf("uid=%ld(%s) gid=%ld(%s)\n", pwnam, user, grnam, group);
|
printf("uid=%ld(%s) gid=%ld(%s)\n", pwnam, user, grnam, group);
|
||||||
|
}
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -871,6 +871,7 @@ Options:
|
|||||||
|
|
||||||
-g prints only the group ID
|
-g prints only the group ID
|
||||||
-u prints only the user ID
|
-u prints only the user ID
|
||||||
|
-n print a name instead of a number (with for -ug)
|
||||||
-r prints the real user ID instead of the effective ID (with -ug)
|
-r prints the real user ID instead of the effective ID (with -ug)
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
@ -2321,4 +2322,4 @@ Enrique Zanardi <ezanardi@ull.es>
|
|||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
# $Id: busybox.pod,v 1.87 2001/01/24 19:15:07 andersen Exp $
|
# $Id: busybox.pod,v 1.88 2001/01/25 05:12:02 andersen Exp $
|
||||||
|
@ -1474,6 +1474,7 @@
|
|||||||
<screen>
|
<screen>
|
||||||
-g Print only the group ID
|
-g Print only the group ID
|
||||||
-u Print only the user ID
|
-u Print only the user ID
|
||||||
|
-n print a name instead of a number (with for -ug)
|
||||||
-r Print the real user ID instead of the effective ID (with -ug)
|
-r Print the real user ID instead of the effective ID (with -ug)
|
||||||
</screen>
|
</screen>
|
||||||
</para>
|
</para>
|
||||||
|
22
id.c
22
id.c
@ -31,6 +31,7 @@
|
|||||||
extern int id_main(int argc, char **argv)
|
extern int id_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int no_user = 0, no_group = 0, print_real = 0;
|
int no_user = 0, no_group = 0, print_real = 0;
|
||||||
|
int name_not_number = 0;
|
||||||
char user[9], group[9];
|
char user[9], group[9];
|
||||||
long gid;
|
long gid;
|
||||||
long pwnam, grnam;
|
long pwnam, grnam;
|
||||||
@ -38,7 +39,7 @@ extern int id_main(int argc, char **argv)
|
|||||||
|
|
||||||
gid = 0;
|
gid = 0;
|
||||||
|
|
||||||
while ((opt = getopt(argc, argv, "ugr")) > 0) {
|
while ((opt = getopt(argc, argv, "ugrn")) > 0) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'u':
|
case 'u':
|
||||||
no_group++;
|
no_group++;
|
||||||
@ -49,6 +50,9 @@ extern int id_main(int argc, char **argv)
|
|||||||
case 'r':
|
case 'r':
|
||||||
print_real++;
|
print_real++;
|
||||||
break;
|
break;
|
||||||
|
case 'n':
|
||||||
|
name_not_number++;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
usage(id_usage);
|
usage(id_usage);
|
||||||
}
|
}
|
||||||
@ -76,12 +80,20 @@ extern int id_main(int argc, char **argv)
|
|||||||
if (gid == -1 || pwnam==-1 || grnam==-1) {
|
if (gid == -1 || pwnam==-1 || grnam==-1) {
|
||||||
error_msg_and_die("%s: No such user\n", user);
|
error_msg_and_die("%s: No such user\n", user);
|
||||||
}
|
}
|
||||||
if (no_group)
|
|
||||||
printf("%ld\n", pwnam);
|
if (no_group) {
|
||||||
else if (no_user)
|
if(name_not_number && user)
|
||||||
printf("%ld\n", grnam);
|
printf("%s\n",user);
|
||||||
else
|
else
|
||||||
|
printf("%ld\n", pwnam);
|
||||||
|
} else if (no_user) {
|
||||||
|
if(name_not_number && group)
|
||||||
|
printf("%s\n", group);
|
||||||
|
else
|
||||||
|
printf("%ld\n", grnam);
|
||||||
|
} else {
|
||||||
printf("uid=%ld(%s) gid=%ld(%s)\n", pwnam, user, grnam, group);
|
printf("uid=%ld(%s) gid=%ld(%s)\n", pwnam, user, grnam, group);
|
||||||
|
}
|
||||||
return(0);
|
return(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1
usage.c
1
usage.c
@ -532,6 +532,7 @@ const char id_usage[] =
|
|||||||
"Options:\n"
|
"Options:\n"
|
||||||
"\t-g\tprints only the group ID\n"
|
"\t-g\tprints only the group ID\n"
|
||||||
"\t-u\tprints only the user ID\n"
|
"\t-u\tprints only the user ID\n"
|
||||||
|
"\t-n\tprint a name instead of a number (with for -ug)\n"
|
||||||
"\t-r\tprints the real user ID instead of the effective ID (with -ug)"
|
"\t-r\tprints the real user ID instead of the effective ID (with -ug)"
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
Reference in New Issue
Block a user