blob: 1a1ab6bf40477ba8cf9dffa6cbb86111e73b7943 [file] [log] [blame]
The Android Open Source Projecte16cb842009-03-03 19:32:58 -08001/*
Elliott Hughes68cf3032015-03-14 10:15:06 -07002 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080016
Elliott Hughes68cf3032015-03-14 10:15:06 -070017#include <errno.h>
18#include <error.h>
Elliott Hughes48049dd2015-03-17 21:19:25 -070019#include <getopt.h>
20#include <paths.h>
Elliott Hughes68cf3032015-03-14 10:15:06 -070021#include <pwd.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080025#include <unistd.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080026
The Android Open Source Project26aaac42009-03-18 17:39:49 -070027#include <private/android_filesystem_config.h>
28
Elliott Hughes68cf3032015-03-14 10:15:06 -070029void pwtoid(const char* tok, uid_t* uid, gid_t* gid) {
30 struct passwd* pw = getpwnam(tok);
JP Abgralld198c422013-01-10 17:04:42 -080031 if (pw) {
32 if (uid) *uid = pw->pw_uid;
33 if (gid) *gid = pw->pw_gid;
34 } else {
Elliott Hughes68cf3032015-03-14 10:15:06 -070035 char* end;
36 errno = 0;
37 uid_t tmpid = strtoul(tok, &end, 10);
38 if (errno != 0 || end == tok) error(1, errno, "invalid uid/gid '%s'", tok);
JP Abgralld198c422013-01-10 17:04:42 -080039 if (uid) *uid = tmpid;
40 if (gid) *gid = tmpid;
41 }
42}
43
Elliott Hughes68cf3032015-03-14 10:15:06 -070044void extract_uidgids(const char* uidgids, uid_t* uid, gid_t* gid, gid_t* gids, int* gids_count) {
JP Abgralld198c422013-01-10 17:04:42 -080045 char *clobberablegids;
46 char *nexttok;
47 char *tok;
48 int gids_found;
49
50 if (!uidgids || !*uidgids) {
51 *gid = *uid = 0;
52 *gids_count = 0;
53 return;
54 }
Elliott Hughes68cf3032015-03-14 10:15:06 -070055
JP Abgralld198c422013-01-10 17:04:42 -080056 clobberablegids = strdup(uidgids);
57 strcpy(clobberablegids, uidgids);
58 nexttok = clobberablegids;
59 tok = strsep(&nexttok, ",");
60 pwtoid(tok, uid, gid);
61 tok = strsep(&nexttok, ",");
62 if (!tok) {
63 /* gid is already set above */
64 *gids_count = 0;
65 free(clobberablegids);
66 return;
67 }
68 pwtoid(tok, NULL, gid);
69 gids_found = 0;
70 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
71 pwtoid(tok, NULL, gids);
72 gids_found++;
73 gids++;
74 }
75 if (nexttok && gids_found == *gids_count) {
76 fprintf(stderr, "too many group ids\n");
77 }
78 *gids_count = gids_found;
79 free(clobberablegids);
80}
81
Elliott Hughes68cf3032015-03-14 10:15:06 -070082int main(int argc, char** argv) {
83 uid_t current_uid = getuid();
84 if (current_uid != AID_ROOT && current_uid != AID_SHELL) error(1, 0, "not allowed");
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080085
Elliott Hughes48049dd2015-03-17 21:19:25 -070086 // Handle -h and --help.
Elliott Hughes499ba7d2015-03-26 17:09:41 -070087 ++argv;
88 if (*argv && (strcmp(*argv, "--help") == 0 || strcmp(*argv, "-h") == 0)) {
89 fprintf(stderr,
Elliott Hughescf83f012019-02-20 22:38:23 -080090 "usage: su [WHO [COMMAND...]]\n"
Elliott Hughes499ba7d2015-03-26 17:09:41 -070091 "\n"
Elliott Hughescf83f012019-02-20 22:38:23 -080092 "Switch to WHO (default 'root') and run the given COMMAND (default sh).\n"
Elliott Hughes499ba7d2015-03-26 17:09:41 -070093 "\n"
Elliott Hughescf83f012019-02-20 22:38:23 -080094 "WHO is a comma-separated list of user, group, and supplementary groups\n"
95 "in that order.\n"
Elliott Hughes499ba7d2015-03-26 17:09:41 -070096 "\n");
97 return 0;
Elliott Hughes48049dd2015-03-17 21:19:25 -070098 }
Elliott Hughes48049dd2015-03-17 21:19:25 -070099
Elliott Hughes68cf3032015-03-14 10:15:06 -0700100 // The default user is root.
101 uid_t uid = 0;
102 gid_t gid = 0;
Nick Kralevich17928c82012-04-02 13:29:35 -0700103
Elliott Hughes68cf3032015-03-14 10:15:06 -0700104 // If there are any arguments, the first argument is the uid/gid/supplementary groups.
Elliott Hughes48049dd2015-03-17 21:19:25 -0700105 if (*argv) {
Elliott Hughes68cf3032015-03-14 10:15:06 -0700106 gid_t gids[10];
JP Abgralld198c422013-01-10 17:04:42 -0800107 int gids_count = sizeof(gids)/sizeof(gids[0]);
Elliott Hughes48049dd2015-03-17 21:19:25 -0700108 extract_uidgids(*argv, &uid, &gid, gids, &gids_count);
Elliott Hughes68cf3032015-03-14 10:15:06 -0700109 if (gids_count) {
110 if (setgroups(gids_count, gids)) {
111 error(1, errno, "setgroups failed");
JP Abgralld198c422013-01-10 17:04:42 -0800112 }
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800113 }
Elliott Hughes68cf3032015-03-14 10:15:06 -0700114 ++argv;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800115 }
116
Elliott Hughes68cf3032015-03-14 10:15:06 -0700117 if (setgid(gid)) error(1, errno, "setgid failed");
118 if (setuid(uid)) error(1, errno, "setuid failed");
119
Elliott Hughes48049dd2015-03-17 21:19:25 -0700120 // Reset parts of the environment.
121 setenv("PATH", _PATH_DEFPATH, 1);
122 unsetenv("IFS");
123 struct passwd* pw = getpwuid(uid);
Mark Salyzyn75dbde92016-03-08 13:36:00 -0800124 if (pw) {
125 setenv("LOGNAME", pw->pw_name, 1);
126 setenv("USER", pw->pw_name, 1);
127 } else {
128 unsetenv("LOGNAME");
129 unsetenv("USER");
130 }
Elliott Hughes68cf3032015-03-14 10:15:06 -0700131
132 // Set up the arguments for exec.
Elliott Hughes436af252015-03-17 12:35:45 -0700133 char* exec_args[argc + 1]; // Having too much space is fine.
Elliott Hughes436af252015-03-17 12:35:45 -0700134 size_t i = 0;
135 for (; *argv != NULL; ++i) {
136 exec_args[i] = *argv++;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800137 }
Elliott Hughes68cf3032015-03-14 10:15:06 -0700138 // Default to the standard shell.
Elliott Hughesdee97052016-10-07 15:19:02 -0700139 if (i == 0) exec_args[i++] = const_cast<char*>("/system/bin/sh");
Elliott Hughes436af252015-03-17 12:35:45 -0700140 exec_args[i] = NULL;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800141
Elliott Hughes68cf3032015-03-14 10:15:06 -0700142 execvp(exec_args[0], exec_args);
143 error(1, errno, "failed to exec %s", exec_args[0]);
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800144}