blob: d932c1babd8a7dc63a8c58e7fbf0728f38d6c6bb [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>
Elliott Hughes48049dd2015-03-17 21:19:25 -070022#include <stdbool.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080026#include <unistd.h>
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080027
The Android Open Source Project26aaac42009-03-18 17:39:49 -070028#include <private/android_filesystem_config.h>
29
Elliott Hughes68cf3032015-03-14 10:15:06 -070030void pwtoid(const char* tok, uid_t* uid, gid_t* gid) {
31 struct passwd* pw = getpwnam(tok);
JP Abgralld198c422013-01-10 17:04:42 -080032 if (pw) {
33 if (uid) *uid = pw->pw_uid;
34 if (gid) *gid = pw->pw_gid;
35 } else {
Elliott Hughes68cf3032015-03-14 10:15:06 -070036 char* end;
37 errno = 0;
38 uid_t tmpid = strtoul(tok, &end, 10);
39 if (errno != 0 || end == tok) error(1, errno, "invalid uid/gid '%s'", tok);
JP Abgralld198c422013-01-10 17:04:42 -080040 if (uid) *uid = tmpid;
41 if (gid) *gid = tmpid;
42 }
43}
44
Elliott Hughes68cf3032015-03-14 10:15:06 -070045void extract_uidgids(const char* uidgids, uid_t* uid, gid_t* gid, gid_t* gids, int* gids_count) {
JP Abgralld198c422013-01-10 17:04:42 -080046 char *clobberablegids;
47 char *nexttok;
48 char *tok;
49 int gids_found;
50
51 if (!uidgids || !*uidgids) {
52 *gid = *uid = 0;
53 *gids_count = 0;
54 return;
55 }
Elliott Hughes68cf3032015-03-14 10:15:06 -070056
JP Abgralld198c422013-01-10 17:04:42 -080057 clobberablegids = strdup(uidgids);
58 strcpy(clobberablegids, uidgids);
59 nexttok = clobberablegids;
60 tok = strsep(&nexttok, ",");
61 pwtoid(tok, uid, gid);
62 tok = strsep(&nexttok, ",");
63 if (!tok) {
64 /* gid is already set above */
65 *gids_count = 0;
66 free(clobberablegids);
67 return;
68 }
69 pwtoid(tok, NULL, gid);
70 gids_found = 0;
71 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) {
72 pwtoid(tok, NULL, gids);
73 gids_found++;
74 gids++;
75 }
76 if (nexttok && gids_found == *gids_count) {
77 fprintf(stderr, "too many group ids\n");
78 }
79 *gids_count = gids_found;
80 free(clobberablegids);
81}
82
Elliott Hughes68cf3032015-03-14 10:15:06 -070083int main(int argc, char** argv) {
84 uid_t current_uid = getuid();
85 if (current_uid != AID_ROOT && current_uid != AID_SHELL) error(1, 0, "not allowed");
The Android Open Source Projecte16cb842009-03-03 19:32:58 -080086
Elliott Hughes48049dd2015-03-17 21:19:25 -070087 // Handle -h and --help.
Elliott Hughes499ba7d2015-03-26 17:09:41 -070088 ++argv;
89 if (*argv && (strcmp(*argv, "--help") == 0 || strcmp(*argv, "-h") == 0)) {
90 fprintf(stderr,
91 "usage: su [UID[,GID[,GID2]...]] [COMMAND [ARG...]]\n"
92 "\n"
93 "Switch to WHO (default 'root') and run the given command (default sh).\n"
94 "\n"
95 "where WHO is a comma-separated list of user, group,\n"
96 "and supplementary groups in that order.\n"
97 "\n");
98 return 0;
Elliott Hughes48049dd2015-03-17 21:19:25 -070099 }
Elliott Hughes48049dd2015-03-17 21:19:25 -0700100
Elliott Hughes68cf3032015-03-14 10:15:06 -0700101 // The default user is root.
102 uid_t uid = 0;
103 gid_t gid = 0;
Nick Kralevich17928c82012-04-02 13:29:35 -0700104
Elliott Hughes68cf3032015-03-14 10:15:06 -0700105 // If there are any arguments, the first argument is the uid/gid/supplementary groups.
Elliott Hughes48049dd2015-03-17 21:19:25 -0700106 if (*argv) {
Elliott Hughes68cf3032015-03-14 10:15:06 -0700107 gid_t gids[10];
JP Abgralld198c422013-01-10 17:04:42 -0800108 int gids_count = sizeof(gids)/sizeof(gids[0]);
Elliott Hughes48049dd2015-03-17 21:19:25 -0700109 extract_uidgids(*argv, &uid, &gid, gids, &gids_count);
Elliott Hughes68cf3032015-03-14 10:15:06 -0700110 if (gids_count) {
111 if (setgroups(gids_count, gids)) {
112 error(1, errno, "setgroups failed");
JP Abgralld198c422013-01-10 17:04:42 -0800113 }
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800114 }
Elliott Hughes68cf3032015-03-14 10:15:06 -0700115 ++argv;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800116 }
117
Elliott Hughes68cf3032015-03-14 10:15:06 -0700118 if (setgid(gid)) error(1, errno, "setgid failed");
119 if (setuid(uid)) error(1, errno, "setuid failed");
120
Elliott Hughes48049dd2015-03-17 21:19:25 -0700121 // Reset parts of the environment.
122 setenv("PATH", _PATH_DEFPATH, 1);
123 unsetenv("IFS");
124 struct passwd* pw = getpwuid(uid);
125 setenv("LOGNAME", pw->pw_name, 1);
126 setenv("USER", pw->pw_name, 1);
Elliott Hughes68cf3032015-03-14 10:15:06 -0700127
128 // Set up the arguments for exec.
Elliott Hughes436af252015-03-17 12:35:45 -0700129 char* exec_args[argc + 1]; // Having too much space is fine.
Elliott Hughes436af252015-03-17 12:35:45 -0700130 size_t i = 0;
131 for (; *argv != NULL; ++i) {
132 exec_args[i] = *argv++;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800133 }
Elliott Hughes68cf3032015-03-14 10:15:06 -0700134 // Default to the standard shell.
Elliott Hughes436af252015-03-17 12:35:45 -0700135 if (i == 0) exec_args[i++] = "/system/bin/sh";
136 exec_args[i] = NULL;
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800137
Elliott Hughes68cf3032015-03-14 10:15:06 -0700138 execvp(exec_args[0], exec_args);
139 error(1, errno, "failed to exec %s", exec_args[0]);
The Android Open Source Projecte16cb842009-03-03 19:32:58 -0800140}