blob: f49bdf7203da60524d3a107b3a501ffabcc851d4 [file] [log] [blame]
Elliott Hughes0c8bf572016-07-07 16:22:19 -07001/*
2 * Copyright (C) 2010 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 */
16
17#include <errno.h>
18#include <error.h>
19#include <paths.h>
20#include <pwd.h>
21#include <stdlib.h>
22#include <string.h>
23#include <sys/capability.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <unistd.h>
27
Yabin Cui97e3bb32018-11-02 15:22:13 -070028#include <string>
29
Jorge Lucangeli Obesa377ff02016-07-15 11:24:20 -040030#include <libminijail.h>
31#include <scoped_minijail.h>
32
Luis Hector Chavezef62f3f2018-06-27 10:40:10 -070033#include <android-base/properties.h>
Elliott Hughes0c8bf572016-07-07 16:22:19 -070034#include <packagelistparser/packagelistparser.h>
35#include <private/android_filesystem_config.h>
36#include <selinux/android.h>
37
38// The purpose of this program is to run a command as a specific
39// application user-id. Typical usage is:
40//
41// run-as <package-name> <command> <args>
42//
43// The 'run-as' binary is installed with CAP_SETUID and CAP_SETGID file
44// capabilities, but will check the following:
45//
Luis Hector Chavezef62f3f2018-06-27 10:40:10 -070046// - that the ro.boot.disable_runas property is not set
Elliott Hughes0c8bf572016-07-07 16:22:19 -070047// - that it is invoked from the 'shell' or 'root' user (abort otherwise)
48// - that '<package-name>' is the name of an installed and debuggable package
49// - that the package's data directory is well-formed
50//
51// If so, it will drop to the application's user id / group id, cd to the
52// package's data directory, then run the command there.
53//
54// This can be useful for a number of different things on production devices:
55//
56// - Allow application developers to look at their own application data
57// during development.
58//
59// - Run the 'gdbserver' binary executable to allow native debugging
60//
61
62static bool packagelist_parse_callback(pkg_info* this_package, void* userdata) {
63 pkg_info* p = reinterpret_cast<pkg_info*>(userdata);
64 if (strcmp(p->name, this_package->name) == 0) {
65 *p = *this_package;
66 return false; // Stop searching.
67 }
68 packagelist_free(this_package);
69 return true; // Keep searching.
70}
71
72static bool check_directory(const char* path, uid_t uid) {
73 struct stat st;
74 if (TEMP_FAILURE_RETRY(lstat(path, &st)) == -1) return false;
75
76 // /data/user/0 is a known safe symlink.
77 if (strcmp("/data/user/0", path) == 0) return true;
78
79 // Must be a real directory, not a symlink.
80 if (!S_ISDIR(st.st_mode)) return false;
81
82 // Must be owned by specific uid/gid.
83 if (st.st_uid != uid || st.st_gid != uid) return false;
84
85 // Must not be readable or writable by others.
86 if ((st.st_mode & (S_IROTH|S_IWOTH)) != 0) return false;
87
88 return true;
89}
90
91// This function is used to check the data directory path for safety.
92// We check that every sub-directory is owned by the 'system' user
93// and exists and is not a symlink. We also check that the full directory
94// path is properly owned by the user ID.
95static bool check_data_path(const char* data_path, uid_t uid) {
96 // The path should be absolute.
97 if (data_path[0] != '/') return false;
98
99 // Look for all sub-paths, we do that by finding
100 // directory separators in the input path and
101 // checking each sub-path independently.
102 for (int nn = 1; data_path[nn] != '\0'; nn++) {
103 char subpath[PATH_MAX];
104
105 /* skip non-separator characters */
106 if (data_path[nn] != '/') continue;
107
108 /* handle trailing separator case */
109 if (data_path[nn+1] == '\0') break;
110
111 /* found a separator, check that data_path is not too long. */
112 if (nn >= (int)(sizeof subpath)) return false;
113
114 /* reject any '..' subpath */
115 if (nn >= 3 &&
116 data_path[nn-3] == '/' &&
117 data_path[nn-2] == '.' &&
118 data_path[nn-1] == '.') {
119 return false;
120 }
121
122 /* copy to 'subpath', then check ownership */
123 memcpy(subpath, data_path, nn);
124 subpath[nn] = '\0';
125
126 if (!check_directory(subpath, AID_SYSTEM)) return false;
127 }
128
129 // All sub-paths were checked, now verify that the full data
130 // directory is owned by the application uid.
131 return check_directory(data_path, uid);
132}
133
134int main(int argc, char* argv[]) {
135 // Check arguments.
136 if (argc < 2) {
137 error(1, 0, "usage: run-as <package-name> [--user <uid>] <command> [<args>]\n");
138 }
139
140 // This program runs with CAP_SETUID and CAP_SETGID capabilities on Android
141 // production devices. Check user id of caller --- must be 'shell' or 'root'.
142 if (getuid() != AID_SHELL && getuid() != AID_ROOT) {
143 error(1, 0, "only 'shell' or 'root' users can run this program");
144 }
145
Luis Hector Chavezef62f3f2018-06-27 10:40:10 -0700146 // Some devices can disable running run-as, such as Chrome OS when running in
147 // non-developer mode.
148 if (android::base::GetBoolProperty("ro.boot.disable_runas", false)) {
Yabin Cuibcbffdd2018-11-06 11:18:44 -0800149 error(1, 0, "run-as is disabled from the kernel commandline");
Luis Hector Chavezef62f3f2018-06-27 10:40:10 -0700150 }
151
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700152 char* pkgname = argv[1];
153 int cmd_argv_offset = 2;
154
155 // Get user_id from command line if provided.
156 int userId = 0;
157 if ((argc >= 4) && !strcmp(argv[2], "--user")) {
158 userId = atoi(argv[3]);
159 if (userId < 0) error(1, 0, "negative user id: %d", userId);
160 cmd_argv_offset += 2;
161 }
162
163 // Retrieve package information from system, switching egid so we can read the file.
164 gid_t old_egid = getegid();
165 if (setegid(AID_PACKAGE_INFO) == -1) error(1, errno, "setegid(AID_PACKAGE_INFO) failed");
166 pkg_info info;
167 memset(&info, 0, sizeof(info));
168 info.name = pkgname;
169 if (!packagelist_parse(packagelist_parse_callback, &info)) {
170 error(1, errno, "packagelist_parse failed");
171 }
Nicholas Sauer0c5411c2018-11-02 17:04:52 -0700172
173 // Handle a multi-user data path
174 if (userId > 0) {
175 free(info.data_dir);
176 if (asprintf(&info.data_dir, "/data/user/%d/%s", userId, pkgname) == -1) {
177 error(1, errno, "asprintf failed");
178 }
179 }
180
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700181 if (info.uid == 0) {
182 error(1, 0, "unknown package: %s", pkgname);
183 }
184 if (setegid(old_egid) == -1) error(1, errno, "couldn't restore egid");
185
186 // Verify that user id is not too big.
Jeff Sharkeydff44702016-12-13 11:55:19 -0700187 if ((UID_MAX - info.uid) / AID_USER_OFFSET < (uid_t)userId) {
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700188 error(1, 0, "user id too big: %d", userId);
189 }
190
191 // Calculate user app ID.
Jeff Sharkeydff44702016-12-13 11:55:19 -0700192 uid_t userAppId = (AID_USER_OFFSET * userId) + info.uid;
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700193
194 // Reject system packages.
195 if (userAppId < AID_APP) {
196 error(1, 0, "package not an application: %s", pkgname);
197 }
198
199 // Reject any non-debuggable package.
200 if (!info.debuggable) {
201 error(1, 0, "package not debuggable: %s", pkgname);
202 }
203
204 // Check that the data directory path is valid.
205 if (!check_data_path(info.data_dir, userAppId)) {
206 error(1, 0, "package has corrupt installation: %s", pkgname);
207 }
208
209 // Ensure that we change all real/effective/saved IDs at the
210 // same time to avoid nasty surprises.
211 uid_t uid = userAppId;
212 uid_t gid = userAppId;
Jorge Lucangeli Obesa377ff02016-07-15 11:24:20 -0400213 ScopedMinijail j(minijail_new());
214 minijail_change_uid(j.get(), uid);
215 minijail_change_gid(j.get(), gid);
Jorge Lucangeli Obes8c27e192017-09-29 14:56:07 -0400216 minijail_keep_supplementary_gids(j.get());
Jorge Lucangeli Obesa377ff02016-07-15 11:24:20 -0400217 minijail_enter(j.get());
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700218
Yabin Cui97e3bb32018-11-02 15:22:13 -0700219 std::string seinfo = std::string(info.seinfo) + ":fromRunAs";
220 if (selinux_android_setcontext(uid, 0, seinfo.c_str(), pkgname) < 0) {
Elliott Hughes0c8bf572016-07-07 16:22:19 -0700221 error(1, errno, "couldn't set SELinux security context");
222 }
223
224 // cd into the data directory, and set $HOME correspondingly.
225 if (TEMP_FAILURE_RETRY(chdir(info.data_dir)) == -1) {
226 error(1, errno, "couldn't chdir to package's data directory");
227 }
228 setenv("HOME", info.data_dir, 1);
229
230 // Reset parts of the environment, like su would.
231 setenv("PATH", _PATH_DEFPATH, 1);
232 unsetenv("IFS");
233
234 // Set the user-specific parts for this user.
235 passwd* pw = getpwuid(uid);
236 setenv("LOGNAME", pw->pw_name, 1);
237 setenv("SHELL", pw->pw_shell, 1);
238 setenv("USER", pw->pw_name, 1);
239
240 // User specified command for exec.
241 if ((argc >= cmd_argv_offset + 1) &&
242 (execvp(argv[cmd_argv_offset], argv+cmd_argv_offset) == -1)) {
243 error(1, errno, "exec failed for %s", argv[cmd_argv_offset]);
244 }
245
246 // Default exec shell.
247 execlp(_PATH_BSHELL, "sh", NULL);
248 error(1, errno, "exec failed");
249}