blob: 4b033bd20b0b1cf507da1d37f753752225c02d59 [file] [log] [blame]
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 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
Yabin Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG SERVICES
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080021#include <errno.h>
Dan Albertb302d122015-02-24 15:51:19 -080022#include <stddef.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
Josh Gao0f3312a2017-04-12 17:00:49 -070027#include <thread>
Elliott Hughesf55ead92015-12-04 22:00:26 -080028#include <android-base/stringprintf.h>
29#include <android-base/strings.h>
Elliott Hughes43df1092015-07-23 17:12:58 -070030#include <cutils/sockets.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070031
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080032#include "adb.h"
Dan Albert66a91b02015-02-24 21:26:58 -080033#include "adb_io.h"
Josh Gao4c28dde2018-07-25 16:51:59 -070034#include "adb_unique_fd.h"
Elliott Hughes09ccf1f2015-07-18 12:21:30 -070035#include "adb_utils.h"
David Pursell22fc5e92015-09-30 13:35:42 -070036#include "services.h"
Josh Gao4a5a95d2016-08-24 18:38:44 -070037#include "socket_spec.h"
Josh Gaoc1fab362016-02-19 10:42:40 -080038#include "sysdeps.h"
Dan Albertb302d122015-02-24 15:51:19 -080039#include "transport.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080040
Luis Hector Chavezce7a2842018-07-18 19:40:12 -070041namespace {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080042
Josh Gao4c28dde2018-07-25 16:51:59 -070043void service_bootstrap_func(std::string service_name, std::function<void(unique_fd)> func,
44 unique_fd fd) {
Luis Hector Chavezce7a2842018-07-18 19:40:12 -070045 adb_thread_setname(android::base::StringPrintf("%s svc %d", service_name.c_str(), fd.get()));
46 func(std::move(fd));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080047}
48
Josh Gao5607e922018-07-25 18:15:52 -070049} // namespace
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080050
Josh Gao4c28dde2018-07-25 16:51:59 -070051unique_fd create_service_thread(const char* service_name, std::function<void(unique_fd)> func) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080052 int s[2];
Dan Albertf30d73c2015-02-25 17:51:28 -080053 if (adb_socketpair(s)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080054 printf("cannot create service socket pair\n");
Josh Gao4c28dde2018-07-25 16:51:59 -070055 return unique_fd();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080056 }
Yabin Cui815ad882015-09-02 17:44:28 -070057 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080058
Jerry Zhangf0e239c2017-02-10 17:45:27 -080059#if !ADB_HOST
Luis Hector Chavezce7a2842018-07-18 19:40:12 -070060 if (strcmp(service_name, "sync") == 0) {
Jerry Zhangf0e239c2017-02-10 17:45:27 -080061 // Set file sync service socket to maximum size
62 int max_buf = LINUX_MAX_SOCKET_SIZE;
63 adb_setsockopt(s[0], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
64 adb_setsockopt(s[1], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
65 }
66#endif // !ADB_HOST
67
Josh Gao4c28dde2018-07-25 16:51:59 -070068 std::thread(service_bootstrap_func, service_name, func, unique_fd(s[1])).detach();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080069
Yabin Cui815ad882015-09-02 17:44:28 -070070 D("service thread started, %d:%d",s[0], s[1]);
Josh Gao4c28dde2018-07-25 16:51:59 -070071 return unique_fd(s[0]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080072}
73
Josh Gaoebc1c312018-04-13 12:17:03 -070074int service_to_fd(const char* name, atransport* transport) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080075 int ret = -1;
76
Josh Gao4a5a95d2016-08-24 18:38:44 -070077 if (is_socket_spec(name)) {
78 std::string error;
79 ret = socket_spec_connect(name, &error);
80 if (ret < 0) {
81 LOG(ERROR) << "failed to connect to socket '" << name << "': " << error;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080082 }
Josh Gao5607e922018-07-25 18:15:52 -070083 } else {
Benoit Goby12dc3692013-02-20 15:04:53 -080084#if !ADB_HOST
Josh Gao5607e922018-07-25 18:15:52 -070085 ret = daemon_service_to_fd(name, transport).release();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080086#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080087 }
Josh Gao5607e922018-07-25 18:15:52 -070088
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080089 if (ret >= 0) {
90 close_on_exec(ret);
91 }
92 return ret;
93}
94
95#if ADB_HOST
96struct state_info {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -070097 TransportType transport_type;
Leo Sartre6cd9bc32015-11-27 18:56:48 +010098 std::string serial;
Josh Gaob39e4152017-08-16 16:57:01 -070099 TransportId transport_id;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700100 ConnectionState state;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800101};
102
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100103static void wait_for_state(int fd, void* data) {
104 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800105
Yabin Cui815ad882015-09-02 17:44:28 -0700106 D("wait_for_state %d", sinfo->state);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800107
Elliott Hughes67943d12015-10-07 14:55:10 -0700108 while (true) {
109 bool is_ambiguous = false;
110 std::string error = "unknown error";
Yi Kong86e67182018-07-13 18:15:16 -0700111 const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : nullptr;
Josh Gaob39e4152017-08-16 16:57:01 -0700112 atransport* t = acquire_one_transport(sinfo->transport_type, serial, sinfo->transport_id,
113 &is_ambiguous, &error);
Yabin Cui3cf1b362017-03-10 16:01:01 -0800114 if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->GetConnectionState())) {
Elliott Hughes67943d12015-10-07 14:55:10 -0700115 SendOkay(fd);
116 break;
117 } else if (!is_ambiguous) {
Josh Gaoc1fab362016-02-19 10:42:40 -0800118 adb_pollfd pfd = {.fd = fd, .events = POLLIN };
119 int rc = adb_poll(&pfd, 1, 1000);
120 if (rc < 0) {
121 SendFail(fd, error);
122 break;
123 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
124 // The other end of the socket is closed, probably because the other side was
125 // terminated, bail out.
126 break;
127 }
128
Elliott Hughes67943d12015-10-07 14:55:10 -0700129 // Try again...
130 } else {
131 SendFail(fd, error);
132 break;
133 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800134 }
135
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800136 adb_close(fd);
Yabin Cui815ad882015-09-02 17:44:28 -0700137 D("wait_for_state is done");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800138}
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700139
Elliott Hughes88b4c852015-04-30 17:32:03 -0700140void connect_emulator(const std::string& port_spec, std::string* response) {
141 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
142 if (pieces.size() != 2) {
143 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
144 port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700145 return;
146 }
147
Yi Kong86e67182018-07-13 18:15:16 -0700148 int console_port = strtol(pieces[0].c_str(), nullptr, 0);
149 int adb_port = strtol(pieces[1].c_str(), nullptr, 0);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700150 if (console_port <= 0 || adb_port <= 0) {
151 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700152 return;
153 }
154
Elliott Hughes88b4c852015-04-30 17:32:03 -0700155 // Check if the emulator is already known.
156 // Note: There's a small but harmless race condition here: An emulator not
157 // present just yet could be registered by another invocation right
158 // after doing this check here. However, local_connect protects
159 // against double-registration too. From here, a better error message
160 // can be produced. In the case of the race condition, the very specific
161 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700162 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700163 if (known_emulator != nullptr) {
164 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700165 return;
166 }
167
Elliott Hughes88b4c852015-04-30 17:32:03 -0700168 // Preconditions met, try to connect to the emulator.
Elliott Hughes43df1092015-07-23 17:12:58 -0700169 std::string error;
170 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700171 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
172 console_port, adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700173 } else {
Elliott Hughes43df1092015-07-23 17:12:58 -0700174 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
175 console_port, adb_port, error.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700176 }
177}
178
Josh Gao4c28dde2018-07-25 16:51:59 -0700179static void connect_service(unique_fd fd, std::string host) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700180 std::string response;
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700181 if (!strncmp(host.c_str(), "emu:", 4)) {
182 connect_emulator(host.c_str() + 4, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700183 } else {
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700184 connect_device(host.c_str(), &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700185 }
186
187 // Send response for emulator and device
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700188 SendProtocolString(fd.get(), response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700189}
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800190#endif
191
192#if ADB_HOST
Josh Gaob39e4152017-08-16 16:57:01 -0700193asocket* host_service_to_socket(const char* name, const char* serial, TransportId transport_id) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800194 if (!strcmp(name,"track-devices")) {
Josh Gao32124632017-08-14 18:57:54 -0700195 return create_device_tracker(false);
196 } else if (!strcmp(name, "track-devices-l")) {
197 return create_device_tracker(true);
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100198 } else if (android::base::StartsWith(name, "wait-for-")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800199 name += strlen("wait-for-");
200
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700201 std::unique_ptr<state_info> sinfo = std::make_unique<state_info>();
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100202 if (sinfo == nullptr) {
203 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
204 return nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800205 }
206
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100207 if (serial) sinfo->serial = serial;
Josh Gaob39e4152017-08-16 16:57:01 -0700208 sinfo->transport_id = transport_id;
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100209
210 if (android::base::StartsWith(name, "local")) {
211 name += strlen("local");
212 sinfo->transport_type = kTransportLocal;
213 } else if (android::base::StartsWith(name, "usb")) {
214 name += strlen("usb");
215 sinfo->transport_type = kTransportUsb;
216 } else if (android::base::StartsWith(name, "any")) {
217 name += strlen("any");
218 sinfo->transport_type = kTransportAny;
219 } else {
220 return nullptr;
221 }
222
223 if (!strcmp(name, "-device")) {
224 sinfo->state = kCsDevice;
225 } else if (!strcmp(name, "-recovery")) {
226 sinfo->state = kCsRecovery;
227 } else if (!strcmp(name, "-sideload")) {
228 sinfo->state = kCsSideload;
229 } else if (!strcmp(name, "-bootloader")) {
230 sinfo->state = kCsBootloader;
Josh Gao071328d2016-04-13 12:18:58 -0700231 } else if (!strcmp(name, "-any")) {
232 sinfo->state = kCsAny;
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100233 } else {
234 return nullptr;
235 }
236
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700237 int fd = create_service_thread(
238 "wait", std::bind(wait_for_state, std::placeholders::_1, sinfo.get()))
239 .release();
Ting-Yuan Huangaa923c12017-08-15 15:07:21 -0700240 if (fd != -1) {
241 sinfo.release();
242 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800243 return create_local_socket(fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700244 } else if (!strncmp(name, "connect:", 8)) {
Luis Hector Chavezce7a2842018-07-18 19:40:12 -0700245 std::string host(name + strlen("connect:"));
246 int fd = create_service_thread("connect",
247 std::bind(connect_service, std::placeholders::_1, host))
248 .release();
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700249 return create_local_socket(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800250 }
Yi Kong86e67182018-07-13 18:15:16 -0700251 return nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800252}
253#endif /* ADB_HOST */