blob: a63d67e76637f69bd11d354647452c54bb1643e8 [file] [log] [blame]
Dan Albertc89e0cc2015-05-08 16:13:53 -07001/*
2 * Copyright (C) 2015 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#define TRACE_TAG TRACE_ADB
18
19#include "sysdeps.h"
20
21#include <errno.h>
22#include <signal.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <getopt.h>
26#include <sys/prctl.h>
27
28#include "base/logging.h"
29#include "base/stringprintf.h"
30#include "cutils/properties.h"
31#include "private/android_filesystem_config.h"
32#include "selinux/selinux.h"
33
34#include "adb.h"
35#include "adb_auth.h"
36#include "adb_listeners.h"
37#include "transport.h"
38#include "qemu_tracing.h"
39
40static const char* root_seclabel = nullptr;
41
42static void drop_capabilities_bounding_set_if_needed() {
43#ifdef ALLOW_ADBD_ROOT
44 char value[PROPERTY_VALUE_MAX];
45 property_get("ro.debuggable", value, "");
46 if (strcmp(value, "1") == 0) {
47 return;
48 }
49#endif
50 for (int i = 0; prctl(PR_CAPBSET_READ, i, 0, 0, 0) >= 0; i++) {
51 if (i == CAP_SETUID || i == CAP_SETGID) {
52 // CAP_SETUID CAP_SETGID needed by /system/bin/run-as
53 continue;
54 }
55
56 int err = prctl(PR_CAPBSET_DROP, i, 0, 0, 0);
57
58 // Some kernels don't have file capabilities compiled in, and
59 // prctl(PR_CAPBSET_DROP) returns EINVAL. Don't automatically
60 // die when we see such misconfigured kernels.
61 if ((err < 0) && (errno != EINVAL)) {
62 PLOG(FATAL) << "Could not drop capabilities";
63 }
64 }
65}
66
67static bool should_drop_privileges() {
68#if defined(ALLOW_ADBD_ROOT)
69 char value[PROPERTY_VALUE_MAX];
70
71 // The emulator is never secure, so don't drop privileges there.
72 // TODO: this seems like a bug --- shouldn't the emulator behave like a device?
73 property_get("ro.kernel.qemu", value, "");
74 if (strcmp(value, "1") == 0) {
75 return false;
76 }
77
78 // The properties that affect `adb root` and `adb unroot` are ro.secure and
79 // ro.debuggable. In this context the names don't make the expected behavior
80 // particularly obvious.
81 //
82 // ro.debuggable:
83 // Allowed to become root, but not necessarily the default. Set to 1 on
84 // eng and userdebug builds.
85 //
86 // ro.secure:
87 // Drop privileges by default. Set to 1 on userdebug and user builds.
88 property_get("ro.secure", value, "1");
89 bool ro_secure = (strcmp(value, "1") == 0);
90
91 property_get("ro.debuggable", value, "");
92 bool ro_debuggable = (strcmp(value, "1") == 0);
93
94 // Drop privileges if ro.secure is set...
95 bool drop = ro_secure;
96
97 property_get("service.adb.root", value, "");
98 bool adb_root = (strcmp(value, "1") == 0);
99 bool adb_unroot = (strcmp(value, "0") == 0);
100
101 // ...except "adb root" lets you keep privileges in a debuggable build.
102 if (ro_debuggable && adb_root) {
103 drop = false;
104 }
105
106 // ...and "adb unroot" lets you explicitly drop privileges.
107 if (adb_unroot) {
108 drop = true;
109 }
110
111 return drop;
112#else
113 return true; // "adb root" not allowed, always drop privileges.
114#endif // ALLOW_ADBD_ROOT
115}
116
117int adbd_main(int server_port) {
118 umask(0);
119
120 signal(SIGPIPE, SIG_IGN);
121
122 init_transport_registration();
123
124 // We need to call this even if auth isn't enabled because the file
125 // descriptor will always be open.
126 adbd_cloexec_auth_socket();
127
Elliott Hughes5cba5042015-06-17 15:23:42 -0700128 if (ALLOW_ADBD_NO_AUTH && property_get_bool("ro.adb.secure", 0) == 0) {
129 auth_required = false;
Dan Albertc89e0cc2015-05-08 16:13:53 -0700130 }
131
Elliott Hughes5cba5042015-06-17 15:23:42 -0700132 adbd_auth_init();
133
Dan Albertc89e0cc2015-05-08 16:13:53 -0700134 // Our external storage path may be different than apps, since
135 // we aren't able to bind mount after dropping root.
136 const char* adb_external_storage = getenv("ADB_EXTERNAL_STORAGE");
137 if (adb_external_storage != nullptr) {
138 setenv("EXTERNAL_STORAGE", adb_external_storage, 1);
139 } else {
140 D("Warning: ADB_EXTERNAL_STORAGE is not set. Leaving EXTERNAL_STORAGE"
141 " unchanged.\n");
142 }
143
144 // Add extra groups:
145 // AID_ADB to access the USB driver
146 // AID_LOG to read system logs (adb logcat)
147 // AID_INPUT to diagnose input issues (getevent)
148 // AID_INET to diagnose network issues (ping)
149 // AID_NET_BT and AID_NET_BT_ADMIN to diagnose bluetooth (hcidump)
150 // AID_SDCARD_R to allow reading from the SD card
151 // AID_SDCARD_RW to allow writing to the SD card
152 // AID_NET_BW_STATS to read out qtaguid statistics
153 gid_t groups[] = {AID_ADB, AID_LOG, AID_INPUT,
154 AID_INET, AID_NET_BT, AID_NET_BT_ADMIN,
155 AID_SDCARD_R, AID_SDCARD_RW, AID_NET_BW_STATS};
156 if (setgroups(sizeof(groups) / sizeof(groups[0]), groups) != 0) {
157 PLOG(FATAL) << "Could not set supplental groups";
158 }
159
160 /* don't listen on a port (default 5037) if running in secure mode */
161 /* don't run as root if we are running in secure mode */
162 if (should_drop_privileges()) {
163 drop_capabilities_bounding_set_if_needed();
164
165 /* then switch user and group to "shell" */
166 if (setgid(AID_SHELL) != 0) {
167 PLOG(FATAL) << "Could not setgid";
168 }
169 if (setuid(AID_SHELL) != 0) {
170 PLOG(FATAL) << "Could not setuid";
171 }
172
173 D("Local port disabled\n");
174 } else {
Nick Kralevich4d870952015-06-12 22:03:50 -0700175 if (root_seclabel != nullptr) {
Dan Albertc89e0cc2015-05-08 16:13:53 -0700176 if (setcon(root_seclabel) < 0) {
177 LOG(FATAL) << "Could not set selinux context";
178 }
179 }
Spencer Low5200c662015-07-30 23:07:55 -0700180 std::string error;
Dan Albertc89e0cc2015-05-08 16:13:53 -0700181 std::string local_name =
182 android::base::StringPrintf("tcp:%d", server_port);
Spencer Low5200c662015-07-30 23:07:55 -0700183 if (install_listener(local_name, "*smartsocket*", nullptr, 0,
184 &error)) {
185 LOG(FATAL) << "Could not install *smartsocket* listener: "
186 << error;
Dan Albertc89e0cc2015-05-08 16:13:53 -0700187 }
188 }
189
190 bool is_usb = false;
191 if (access(USB_ADB_PATH, F_OK) == 0 || access(USB_FFS_ADB_EP0, F_OK) == 0) {
192 // Listen on USB.
193 usb_init();
194 is_usb = true;
195 }
196
197 // If one of these properties is set, also listen on that port.
198 // If one of the properties isn't set and we couldn't listen on usb, listen
199 // on the default port.
200 char prop_port[PROPERTY_VALUE_MAX];
201 property_get("service.adb.tcp.port", prop_port, "");
202 if (prop_port[0] == '\0') {
203 property_get("persist.adb.tcp.port", prop_port, "");
204 }
205
206 int port;
207 if (sscanf(prop_port, "%d", &port) == 1 && port > 0) {
208 printf("using port=%d\n", port);
209 // Listen on TCP port specified by service.adb.tcp.port property.
210 local_init(port);
211 } else if (!is_usb) {
212 // Listen on default port.
213 local_init(DEFAULT_ADB_LOCAL_TRANSPORT_PORT);
214 }
215
216 D("adbd_main(): pre init_jdwp()\n");
217 init_jdwp();
218 D("adbd_main(): post init_jdwp()\n");
219
220 D("Event loop starting\n");
221 fdevent_loop();
222
223 return 0;
224}
225
226static void close_stdin() {
227 int fd = unix_open("/dev/null", O_RDONLY);
228 if (fd == -1) {
229 perror("failed to open /dev/null, stdin will remain open");
230 return;
231 }
232 dup2(fd, STDIN_FILENO);
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700233 unix_close(fd);
Dan Albertc89e0cc2015-05-08 16:13:53 -0700234}
235
236int main(int argc, char** argv) {
Dan Albertc89e0cc2015-05-08 16:13:53 -0700237 while (true) {
238 static struct option opts[] = {
239 {"root_seclabel", required_argument, nullptr, 's'},
240 {"device_banner", required_argument, nullptr, 'b'},
241 {"version", no_argument, nullptr, 'v'},
242 };
243
244 int option_index = 0;
245 int c = getopt_long(argc, argv, "", opts, &option_index);
246 if (c == -1) {
247 break;
248 }
249
250 switch (c) {
251 case 's':
252 root_seclabel = optarg;
253 break;
254 case 'b':
255 adb_device_banner = optarg;
256 break;
257 case 'v':
258 printf("Android Debug Bridge Daemon version %d.%d.%d %s\n",
259 ADB_VERSION_MAJOR, ADB_VERSION_MINOR, ADB_SERVER_VERSION,
260 ADB_REVISION);
261 return 0;
262 default:
263 // getopt already prints "adbd: invalid option -- %c" for us.
264 return 1;
265 }
266 }
267
268 close_stdin();
269
Dan Albert9313c0d2015-05-21 13:58:50 -0700270 adb_trace_init(argv);
Dan Albertc89e0cc2015-05-08 16:13:53 -0700271
272 /* If adbd runs inside the emulator this will enable adb tracing via
273 * adb-debug qemud service in the emulator. */
274 adb_qemu_trace_init();
275
276 D("Handling main()\n");
277 return adbd_main(DEFAULT_ADB_PORT);
278}