2000-05-02 00:40:52 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini id implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Randolph Chung <tausq@debian.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 _NOT_ compliant -- option -G is not currently supported. */
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
2000-05-02 00:40:52 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2000-07-20 05:33:38 +05:30
|
|
|
#include <getopt.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <string.h>
|
2000-05-02 00:40:52 +05:30
|
|
|
#include <sys/types.h>
|
2003-07-03 15:37:04 +05:30
|
|
|
#ifdef CONFIG_SELINUX
|
|
|
|
#include <proc_secure.h>
|
|
|
|
#include <flask_util.h>
|
|
|
|
#endif
|
2000-05-02 00:40:52 +05:30
|
|
|
|
2003-07-03 15:37:04 +05:30
|
|
|
#define JUST_USER 1
|
|
|
|
#define JUST_GROUP 2
|
2003-03-19 14:43:01 +05:30
|
|
|
#define PRINT_REAL 4
|
|
|
|
#define NAME_NOT_NUMBER 8
|
|
|
|
|
2000-05-02 00:40:52 +05:30
|
|
|
extern int id_main(int argc, char **argv)
|
|
|
|
{
|
2000-12-13 07:22:39 +05:30
|
|
|
char user[9], group[9];
|
2000-07-28 21:52:51 +05:30
|
|
|
long pwnam, grnam;
|
2003-03-19 14:43:01 +05:30
|
|
|
int uid, gid;
|
|
|
|
int flags;
|
2003-07-03 15:37:04 +05:30
|
|
|
#ifdef CONFIG_SELINUX
|
|
|
|
int is_flask_enabled_flag = is_flask_enabled();
|
|
|
|
#endif
|
2000-05-02 00:40:52 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
flags = bb_getopt_ulflags(argc, argv, "ugrn");
|
2000-05-02 00:40:52 +05:30
|
|
|
|
2003-07-03 15:37:04 +05:30
|
|
|
if (((flags & (JUST_USER | JUST_GROUP)) == (JUST_USER | JUST_GROUP))
|
2003-03-19 14:43:01 +05:30
|
|
|
|| (argc > optind + 1)
|
|
|
|
) {
|
|
|
|
bb_show_usage();
|
2000-05-02 00:40:52 +05:30
|
|
|
}
|
|
|
|
|
2000-12-13 07:22:39 +05:30
|
|
|
if (argv[optind] == NULL) {
|
2003-03-19 14:43:01 +05:30
|
|
|
if (flags & PRINT_REAL) {
|
|
|
|
uid = getuid();
|
|
|
|
gid = getgid();
|
2000-05-02 00:40:52 +05:30
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
uid = geteuid();
|
|
|
|
gid = getegid();
|
2000-05-02 00:40:52 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
my_getpwuid(user, uid);
|
2000-05-02 00:40:52 +05:30
|
|
|
} else {
|
2002-10-01 02:09:56 +05:30
|
|
|
safe_strncpy(user, argv[optind], sizeof(user));
|
2000-05-02 00:40:52 +05:30
|
|
|
gid = my_getpwnamegid(user);
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
my_getgrgid(group, gid);
|
2000-05-02 00:40:52 +05:30
|
|
|
|
2000-07-28 21:52:51 +05:30
|
|
|
pwnam=my_getpwnam(user);
|
|
|
|
grnam=my_getgrnam(group);
|
2001-01-25 10:42:02 +05:30
|
|
|
|
2003-07-03 15:37:04 +05:30
|
|
|
if (flags & (JUST_GROUP | JUST_USER)) {
|
2003-03-19 14:43:01 +05:30
|
|
|
char *s = group;
|
2003-07-03 15:37:04 +05:30
|
|
|
if (flags & JUST_USER) {
|
2003-03-19 14:43:01 +05:30
|
|
|
s = user;
|
|
|
|
grnam = pwnam;
|
|
|
|
}
|
|
|
|
if (flags & NAME_NOT_NUMBER) {
|
|
|
|
puts(s);
|
|
|
|
} else {
|
2001-01-25 10:42:02 +05:30
|
|
|
printf("%ld\n", grnam);
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
2001-01-25 10:42:02 +05:30
|
|
|
} else {
|
2003-07-03 15:37:04 +05:30
|
|
|
#ifdef CONFIG_SELINUX
|
|
|
|
printf("uid=%ld(%s) gid=%ld(%s)", pwnam, user, grnam, group);
|
|
|
|
if(is_flask_enabled_flag)
|
|
|
|
{
|
|
|
|
security_id_t mysid = getsecsid();
|
|
|
|
char context[80];
|
|
|
|
int len = sizeof(context);
|
|
|
|
context[0] = '\0';
|
|
|
|
if(security_sid_to_context(mysid, context, &len))
|
|
|
|
strcpy(context, "unknown");
|
|
|
|
printf(" context=%s\n", context);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf("\n");
|
|
|
|
#else
|
2000-07-28 21:52:51 +05:30
|
|
|
printf("uid=%ld(%s) gid=%ld(%s)\n", pwnam, user, grnam, group);
|
2003-07-03 15:37:04 +05:30
|
|
|
#endif
|
|
|
|
|
2001-01-25 10:42:02 +05:30
|
|
|
}
|
2000-05-02 00:40:52 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_fflush_stdout_and_exit(0);
|
|
|
|
}
|