blob: 051ee2f78a87b195eadc2b1748899cf43a88aa25 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-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 Cuiaed3c612015-09-22 15:52:57 -070017#define TRACE_TAG TRANSPORT
Dan Albert76649012015-02-24 15:51:19 -080018
Dan Albert33134262015-03-19 15:21:08 -070019#include "sysdeps.h"
Josh Gao31b5be62018-03-07 16:51:08 -080020
Dan Albert76649012015-02-24 15:51:19 -080021#include "transport.h"
22
Dan Albert055f1aa2015-02-20 17:24:58 -080023#include <ctype.h>
Dan Albert76649012015-02-24 15:51:19 -080024#include <errno.h>
Josh Gaob122b172017-08-16 16:57:01 -070025#include <inttypes.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <stdio.h>
27#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028#include <string.h>
Dan Albert76649012015-02-24 15:51:19 -080029#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030
Spencer Low363af562015-11-07 18:51:54 -080031#include <algorithm>
Josh Gao0bbf69c2018-02-16 13:24:58 -080032#include <deque>
Dan Albertc7915a32015-05-18 16:46:31 -070033#include <list>
Pirama Arumuga Nainar29e3dd82018-08-08 10:33:24 -070034#include <memory>
Josh Gao0cd3ae12016-09-21 12:37:10 -070035#include <mutex>
Josh Gao8a40c8a2018-08-10 14:28:24 -070036#include <set>
Josh Gaoe1dacfc2017-04-12 17:00:49 -070037#include <thread>
Dan Albertc7915a32015-05-18 16:46:31 -070038
Elliott Hughes4f713192015-12-04 22:00:26 -080039#include <android-base/logging.h>
David Pursell3f902aa2016-03-01 08:58:26 -080040#include <android-base/parsenetaddress.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080041#include <android-base/stringprintf.h>
42#include <android-base/strings.h>
Josh Gaob122b172017-08-16 16:57:01 -070043#include <android-base/thread_annotations.h>
Elliott Hughese67f1f82015-04-30 17:32:03 -070044
Josh Gao27768452018-01-02 12:01:43 -080045#include <diagnose_usb.h>
46
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047#include "adb.h"
Elliott Hughes0aeb5052016-06-29 17:42:01 -070048#include "adb_auth.h"
Josh Gaob800d882018-01-28 20:32:46 -080049#include "adb_io.h"
Josh Gaocfe72e22016-11-29 09:40:29 -080050#include "adb_trace.h"
Elliott Hughese67f1f82015-04-30 17:32:03 -070051#include "adb_utils.h"
Yabin Cuib5e11412017-03-10 16:01:01 -080052#include "fdevent.h"
Josh Gaoe445a6d2018-07-31 14:12:59 -070053#include "sysdeps/chrono.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080054
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -070055static void remove_transport(atransport* transport);
56static void transport_unref(atransport* transport);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057
Josh Gaob122b172017-08-16 16:57:01 -070058// TODO: unordered_map<TransportId, atransport*>
Josh Gaob7b1edf2015-11-11 17:56:12 -080059static auto& transport_list = *new std::list<atransport*>();
60static auto& pending_list = *new std::list<atransport*>();
Benoit Goby1c45ee92013-03-29 18:22:36 -070061
Josh Gao1db71af2017-08-17 13:50:51 -070062static auto& transport_lock = *new std::recursive_mutex();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063
Todd Kennedy51c05ec2015-11-10 00:03:25 +000064const char* const kFeatureShell2 = "shell_v2";
65const char* const kFeatureCmd = "cmd";
Josh Gao5a1e3fd2016-12-05 17:11:34 -080066const char* const kFeatureStat2 = "stat_v2";
Josh Gao5d1756c2017-02-22 17:07:01 -080067const char* const kFeatureLibusb = "libusb";
Dan Albert5176df82017-05-23 14:30:00 -070068const char* const kFeaturePushSync = "push_sync";
Todd Kennedy51c05ec2015-11-10 00:03:25 +000069
Luis Hector Chavez56fe7532018-04-17 14:25:04 -070070namespace {
71
72// A class that helps the Clang Thread Safety Analysis deal with
73// std::unique_lock. Given that std::unique_lock is movable, and the analysis
74// can not currently perform alias analysis, it is not annotated. In order to
75// assert that the mutex is held, a ScopedAssumeLocked can be created just after
76// the std::unique_lock.
77class SCOPED_CAPABILITY ScopedAssumeLocked {
78 public:
79 ScopedAssumeLocked(std::mutex& mutex) ACQUIRE(mutex) {}
80 ~ScopedAssumeLocked() RELEASE() {}
81};
82
Josh Gaodef91c02018-07-31 18:28:32 -070083#if ADB_HOST
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -070084// Tracks and handles atransport*s that are attempting reconnection.
85class ReconnectHandler {
86 public:
87 ReconnectHandler() = default;
88 ~ReconnectHandler() = default;
89
90 // Starts the ReconnectHandler thread.
91 void Start();
92
93 // Requests the ReconnectHandler thread to stop.
94 void Stop();
95
96 // Adds the atransport* to the queue of reconnect attempts.
97 void TrackTransport(atransport* transport);
98
Josh Gao902dace2018-08-10 14:44:54 -070099 // Wake up the ReconnectHandler thread to have it check for kicked transports.
100 void CheckForKicked();
101
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700102 private:
103 // The main thread loop.
104 void Run();
105
106 // Tracks a reconnection attempt.
107 struct ReconnectAttempt {
108 atransport* transport;
Josh Gao95af6412018-07-30 18:51:55 -0700109 std::chrono::steady_clock::time_point reconnect_time;
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700110 size_t attempts_left;
Josh Gaoe445a6d2018-07-31 14:12:59 -0700111
112 bool operator<(const ReconnectAttempt& rhs) const {
Josh Gao8a40c8a2018-08-10 14:28:24 -0700113 if (reconnect_time == rhs.reconnect_time) {
114 return reinterpret_cast<uintptr_t>(transport) <
115 reinterpret_cast<uintptr_t>(rhs.transport);
116 }
117 return reconnect_time < rhs.reconnect_time;
Josh Gaoe445a6d2018-07-31 14:12:59 -0700118 }
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700119 };
120
121 // Only retry for up to one minute.
Josh Gaoe445a6d2018-07-31 14:12:59 -0700122 static constexpr const std::chrono::seconds kDefaultTimeout = 10s;
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700123 static constexpr const size_t kMaxAttempts = 6;
124
125 // Protects all members.
126 std::mutex reconnect_mutex_;
127 bool running_ GUARDED_BY(reconnect_mutex_) = true;
128 std::thread handler_thread_;
129 std::condition_variable reconnect_cv_;
Josh Gao8a40c8a2018-08-10 14:28:24 -0700130 std::set<ReconnectAttempt> reconnect_queue_ GUARDED_BY(reconnect_mutex_);
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700131
132 DISALLOW_COPY_AND_ASSIGN(ReconnectHandler);
133};
134
135void ReconnectHandler::Start() {
136 check_main_thread();
137 handler_thread_ = std::thread(&ReconnectHandler::Run, this);
138}
139
140void ReconnectHandler::Stop() {
141 check_main_thread();
142 {
143 std::lock_guard<std::mutex> lock(reconnect_mutex_);
144 running_ = false;
145 }
146 reconnect_cv_.notify_one();
147 handler_thread_.join();
148
149 // Drain the queue to free all resources.
150 std::lock_guard<std::mutex> lock(reconnect_mutex_);
151 while (!reconnect_queue_.empty()) {
Josh Gao8a40c8a2018-08-10 14:28:24 -0700152 ReconnectAttempt attempt = *reconnect_queue_.begin();
153 reconnect_queue_.erase(reconnect_queue_.begin());
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700154 remove_transport(attempt.transport);
155 }
156}
157
158void ReconnectHandler::TrackTransport(atransport* transport) {
159 check_main_thread();
160 {
161 std::lock_guard<std::mutex> lock(reconnect_mutex_);
162 if (!running_) return;
Josh Gaoe445a6d2018-07-31 14:12:59 -0700163 // Arbitrary sleep to give adbd time to get ready, if we disconnected because it exited.
164 auto reconnect_time = std::chrono::steady_clock::now() + 250ms;
165 reconnect_queue_.emplace(
166 ReconnectAttempt{transport, reconnect_time, ReconnectHandler::kMaxAttempts});
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700167 }
168 reconnect_cv_.notify_one();
169}
170
Josh Gao902dace2018-08-10 14:44:54 -0700171void ReconnectHandler::CheckForKicked() {
172 reconnect_cv_.notify_one();
173}
174
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700175void ReconnectHandler::Run() {
176 while (true) {
177 ReconnectAttempt attempt;
178 {
179 std::unique_lock<std::mutex> lock(reconnect_mutex_);
180 ScopedAssumeLocked assume_lock(reconnect_mutex_);
181
Josh Gao95af6412018-07-30 18:51:55 -0700182 if (!reconnect_queue_.empty()) {
183 // FIXME: libstdc++ (used on Windows) implements condition_variable with
184 // system_clock as its clock, so we're probably hosed if the clock changes,
185 // even if we use steady_clock throughout. This problem goes away once we
186 // switch to libc++.
Josh Gao8a40c8a2018-08-10 14:28:24 -0700187 reconnect_cv_.wait_until(lock, reconnect_queue_.begin()->reconnect_time);
Josh Gao95af6412018-07-30 18:51:55 -0700188 } else {
189 reconnect_cv_.wait(lock);
190 }
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700191
192 if (!running_) return;
Josh Gao902dace2018-08-10 14:44:54 -0700193
194 // Scan the whole list for kicked transports, so that we immediately handle an explicit
195 // disconnect request.
196 bool kicked = false;
197 for (auto it = reconnect_queue_.begin(); it != reconnect_queue_.end();) {
198 if (it->transport->kicked()) {
199 D("transport %s was kicked. giving up on it.", it->transport->serial.c_str());
200 remove_transport(it->transport);
201 it = reconnect_queue_.erase(it);
202 } else {
203 ++it;
204 }
205 kicked = true;
206 }
207
Josh Gao95af6412018-07-30 18:51:55 -0700208 if (reconnect_queue_.empty()) continue;
209
Josh Gao902dace2018-08-10 14:44:54 -0700210 // Go back to sleep if we either woke up spuriously, or we were woken up to remove
211 // a kicked transport, and the first transport isn't ready for reconnection yet.
Josh Gao95af6412018-07-30 18:51:55 -0700212 auto now = std::chrono::steady_clock::now();
Josh Gao8a40c8a2018-08-10 14:28:24 -0700213 if (reconnect_queue_.begin()->reconnect_time > now) {
Josh Gao95af6412018-07-30 18:51:55 -0700214 continue;
215 }
216
Josh Gao8a40c8a2018-08-10 14:28:24 -0700217 attempt = *reconnect_queue_.begin();
218 reconnect_queue_.erase(reconnect_queue_.begin());
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700219 }
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700220 D("attempting to reconnect %s", attempt.transport->serial.c_str());
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700221
Josh Gaofc2e56f2018-08-30 11:37:00 -0700222 switch (attempt.transport->Reconnect()) {
223 case ReconnectResult::Retry: {
224 D("attempting to reconnect %s failed.", attempt.transport->serial.c_str());
225 if (attempt.attempts_left == 0) {
226 D("transport %s exceeded the number of retry attempts. giving up on it.",
227 attempt.transport->serial.c_str());
228 remove_transport(attempt.transport);
229 continue;
230 }
231
232 std::lock_guard<std::mutex> lock(reconnect_mutex_);
233 reconnect_queue_.emplace(ReconnectAttempt{
234 attempt.transport,
235 std::chrono::steady_clock::now() + ReconnectHandler::kDefaultTimeout,
236 attempt.attempts_left - 1});
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700237 continue;
238 }
239
Josh Gaofc2e56f2018-08-30 11:37:00 -0700240 case ReconnectResult::Success:
241 D("reconnection to %s succeeded.", attempt.transport->serial.c_str());
242 register_transport(attempt.transport);
243 continue;
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700244
Josh Gaofc2e56f2018-08-30 11:37:00 -0700245 case ReconnectResult::Abort:
246 D("cancelling reconnection attempt to %s.", attempt.transport->serial.c_str());
247 remove_transport(attempt.transport);
248 continue;
249 }
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700250 }
251}
252
253static auto& reconnect_handler = *new ReconnectHandler();
254
Josh Gaodef91c02018-07-31 18:28:32 -0700255#endif
256
Luis Hector Chavez56fe7532018-04-17 14:25:04 -0700257} // namespace
258
Josh Gaob122b172017-08-16 16:57:01 -0700259TransportId NextTransportId() {
260 static std::atomic<TransportId> next(1);
261 return next++;
262}
263
Josh Gao0bbf69c2018-02-16 13:24:58 -0800264BlockingConnectionAdapter::BlockingConnectionAdapter(std::unique_ptr<BlockingConnection> connection)
265 : underlying_(std::move(connection)) {}
266
267BlockingConnectionAdapter::~BlockingConnectionAdapter() {
268 LOG(INFO) << "BlockingConnectionAdapter(" << this->transport_name_ << "): destructing";
269 Stop();
270}
271
272void BlockingConnectionAdapter::Start() {
Josh Gaoc251ec52018-04-03 12:55:18 -0700273 std::lock_guard<std::mutex> lock(mutex_);
274 if (started_) {
275 LOG(FATAL) << "BlockingConnectionAdapter(" << this->transport_name_
276 << "): started multiple times";
277 }
278
Josh Gao0bbf69c2018-02-16 13:24:58 -0800279 read_thread_ = std::thread([this]() {
280 LOG(INFO) << this->transport_name_ << ": read thread spawning";
281 while (true) {
Josh Gao31b5be62018-03-07 16:51:08 -0800282 auto packet = std::make_unique<apacket>();
Josh Gao0bbf69c2018-02-16 13:24:58 -0800283 if (!underlying_->Read(packet.get())) {
284 PLOG(INFO) << this->transport_name_ << ": read failed";
285 break;
286 }
287 read_callback_(this, std::move(packet));
288 }
289 std::call_once(this->error_flag_, [this]() { this->error_callback_(this, "read failed"); });
290 });
291
292 write_thread_ = std::thread([this]() {
293 LOG(INFO) << this->transport_name_ << ": write thread spawning";
294 while (true) {
295 std::unique_lock<std::mutex> lock(mutex_);
Luis Hector Chavez56fe7532018-04-17 14:25:04 -0700296 ScopedAssumeLocked assume_locked(mutex_);
Josh Gaoc251ec52018-04-03 12:55:18 -0700297 cv_.wait(lock, [this]() REQUIRES(mutex_) {
298 return this->stopped_ || !this->write_queue_.empty();
299 });
300
Josh Gao0bbf69c2018-02-16 13:24:58 -0800301 if (this->stopped_) {
302 return;
303 }
304
305 std::unique_ptr<apacket> packet = std::move(this->write_queue_.front());
306 this->write_queue_.pop_front();
307 lock.unlock();
308
309 if (!this->underlying_->Write(packet.get())) {
310 break;
311 }
312 }
313 std::call_once(this->error_flag_, [this]() { this->error_callback_(this, "write failed"); });
314 });
Josh Gaoc251ec52018-04-03 12:55:18 -0700315
316 started_ = true;
Josh Gao0bbf69c2018-02-16 13:24:58 -0800317}
318
319void BlockingConnectionAdapter::Stop() {
Josh Gaoc251ec52018-04-03 12:55:18 -0700320 {
321 std::lock_guard<std::mutex> lock(mutex_);
322 if (!started_) {
323 LOG(INFO) << "BlockingConnectionAdapter(" << this->transport_name_ << "): not started";
324 return;
325 }
Josh Gao0bbf69c2018-02-16 13:24:58 -0800326
Josh Gaoc251ec52018-04-03 12:55:18 -0700327 if (stopped_) {
328 LOG(INFO) << "BlockingConnectionAdapter(" << this->transport_name_
329 << "): already stopped";
330 return;
331 }
332
333 stopped_ = true;
334 }
Josh Gao0bbf69c2018-02-16 13:24:58 -0800335
336 LOG(INFO) << "BlockingConnectionAdapter(" << this->transport_name_ << "): stopping";
337
338 this->underlying_->Close();
Josh Gao0bbf69c2018-02-16 13:24:58 -0800339 this->cv_.notify_one();
Josh Gaoc251ec52018-04-03 12:55:18 -0700340
341 // Move the threads out into locals with the lock taken, and then unlock to let them exit.
342 std::thread read_thread;
343 std::thread write_thread;
344
345 {
346 std::lock_guard<std::mutex> lock(mutex_);
347 read_thread = std::move(read_thread_);
348 write_thread = std::move(write_thread_);
349 }
350
351 read_thread.join();
352 write_thread.join();
Josh Gao0bbf69c2018-02-16 13:24:58 -0800353
354 LOG(INFO) << "BlockingConnectionAdapter(" << this->transport_name_ << "): stopped";
355 std::call_once(this->error_flag_, [this]() { this->error_callback_(this, "requested stop"); });
356}
357
358bool BlockingConnectionAdapter::Write(std::unique_ptr<apacket> packet) {
359 {
Josh Gaoc251ec52018-04-03 12:55:18 -0700360 std::lock_guard<std::mutex> lock(this->mutex_);
Josh Gao0bbf69c2018-02-16 13:24:58 -0800361 write_queue_.emplace_back(std::move(packet));
362 }
363
364 cv_.notify_one();
365 return true;
366}
367
Josh Gaob800d882018-01-28 20:32:46 -0800368bool FdConnection::Read(apacket* packet) {
369 if (!ReadFdExactly(fd_.get(), &packet->msg, sizeof(amessage))) {
370 D("remote local: read terminated (message)");
371 return false;
372 }
373
Josh Gaof571fcb2018-02-05 18:49:10 -0800374 if (packet->msg.data_length > MAX_PAYLOAD) {
Josh Gao5caaebd2018-02-02 14:38:04 -0800375 D("remote local: read overflow (data length = %" PRIu32 ")", packet->msg.data_length);
376 return false;
377 }
378
Josh Gaof571fcb2018-02-05 18:49:10 -0800379 packet->payload.resize(packet->msg.data_length);
380
381 if (!ReadFdExactly(fd_.get(), &packet->payload[0], packet->payload.size())) {
Josh Gaob800d882018-01-28 20:32:46 -0800382 D("remote local: terminated (data)");
383 return false;
384 }
385
386 return true;
387}
388
389bool FdConnection::Write(apacket* packet) {
Josh Gaof571fcb2018-02-05 18:49:10 -0800390 if (!WriteFdExactly(fd_.get(), &packet->msg, sizeof(packet->msg))) {
Josh Gaob800d882018-01-28 20:32:46 -0800391 D("remote local: write terminated");
392 return false;
393 }
394
Josh Gaof571fcb2018-02-05 18:49:10 -0800395 if (packet->msg.data_length) {
396 if (!WriteFdExactly(fd_.get(), &packet->payload[0], packet->msg.data_length)) {
397 D("remote local: write terminated");
398 return false;
399 }
400 }
401
Josh Gaob800d882018-01-28 20:32:46 -0800402 return true;
403}
404
405void FdConnection::Close() {
406 adb_shutdown(fd_.get());
407 fd_.reset();
408}
409
Josh Gao06d61d42016-10-06 13:31:44 -0700410void send_packet(apacket* p, atransport* t) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800411 p->msg.magic = p->msg.command ^ 0xffffffff;
Tim Murrayde471942017-12-07 11:40:00 -0800412 // compute a checksum for connection/auth packets for compatibility reasons
413 if (t->get_protocol_version() >= A_VERSION_SKIP_CHECKSUM) {
414 p->msg.data_check = 0;
415 } else {
416 p->msg.data_check = calculate_apacket_checksum(p);
417 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800418
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700419 VLOG(TRANSPORT) << dump_packet(t->serial.c_str(), "to remote", p);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800420
Yi Kongaed415c2018-07-13 18:15:16 -0700421 if (t == nullptr) {
Josh Gao06d61d42016-10-06 13:31:44 -0700422 fatal("Transport is null");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800423 }
424
Josh Gao0bbf69c2018-02-16 13:24:58 -0800425 if (t->Write(p) != 0) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700426 D("%s: failed to enqueue packet, closing transport", t->serial.c_str());
Josh Gao0bbf69c2018-02-16 13:24:58 -0800427 t->Kick();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 }
429}
430
Yabin Cuif4b99282015-08-27 12:03:11 -0700431void kick_transport(atransport* t) {
Josh Gao1db71af2017-08-17 13:50:51 -0700432 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Yabin Cui1f4ec192016-04-05 13:50:44 -0700433 // As kick_transport() can be called from threads without guarantee that t is valid,
434 // check if the transport is in transport_list first.
Josh Gaob122b172017-08-16 16:57:01 -0700435 //
436 // TODO(jmgao): WTF? Is this actually true?
Yabin Cui1f4ec192016-04-05 13:50:44 -0700437 if (std::find(transport_list.begin(), transport_list.end(), t) != transport_list.end()) {
Yabin Cui7f274902016-04-18 11:22:34 -0700438 t->Kick();
Yabin Cui1f4ec192016-04-05 13:50:44 -0700439 }
Josh Gao902dace2018-08-10 14:44:54 -0700440
441#if ADB_HOST
442 reconnect_handler.CheckForKicked();
443#endif
Yabin Cuif4b99282015-08-27 12:03:11 -0700444}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445
446static int transport_registration_send = -1;
447static int transport_registration_recv = -1;
Josh Gao71f775a2018-05-14 11:14:33 -0700448static fdevent* transport_registration_fde;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800449
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800450#if ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800451
452/* this adds support required by the 'track-devices' service.
453 * this is used to send the content of "list_transport" to any
454 * number of client connections that want it through a single
455 * live TCP connection
456 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800457struct device_tracker {
Josh Gao1290fbf2016-11-22 14:32:34 -0800458 asocket socket;
Josh Gaoe0361d12018-02-12 17:24:00 -0800459 bool update_needed = false;
460 bool long_output = false;
461 device_tracker* next = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462};
463
464/* linked list of all device trackers */
Josh Gao1290fbf2016-11-22 14:32:34 -0800465static device_tracker* device_tracker_list;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800466
Josh Gao1290fbf2016-11-22 14:32:34 -0800467static void device_tracker_remove(device_tracker* tracker) {
468 device_tracker** pnode = &device_tracker_list;
469 device_tracker* node = *pnode;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800470
Josh Gao1db71af2017-08-17 13:50:51 -0700471 std::lock_guard<std::recursive_mutex> lock(transport_lock);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800472 while (node) {
473 if (node == tracker) {
474 *pnode = node->next;
475 break;
476 }
477 pnode = &node->next;
Josh Gao1290fbf2016-11-22 14:32:34 -0800478 node = *pnode;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800479 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800480}
481
Josh Gao1290fbf2016-11-22 14:32:34 -0800482static void device_tracker_close(asocket* socket) {
483 device_tracker* tracker = (device_tracker*)socket;
484 asocket* peer = socket->peer;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800485
Josh Gao1290fbf2016-11-22 14:32:34 -0800486 D("device tracker %p removed", tracker);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800487 if (peer) {
Yi Kongaed415c2018-07-13 18:15:16 -0700488 peer->peer = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800489 peer->close(peer);
490 }
491 device_tracker_remove(tracker);
Josh Gaoe0361d12018-02-12 17:24:00 -0800492 delete tracker;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800493}
494
Josh Gao1ce99572018-03-07 16:52:28 -0800495static int device_tracker_enqueue(asocket* socket, apacket::payload_type) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800496 /* you can't read from a device tracker, close immediately */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800497 device_tracker_close(socket);
498 return -1;
499}
500
Elliott Hughese67f1f82015-04-30 17:32:03 -0700501static int device_tracker_send(device_tracker* tracker, const std::string& string) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700502 asocket* peer = tracker->socket.peer;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800503
Josh Gao1ce99572018-03-07 16:52:28 -0800504 apacket::payload_type data;
Josh Gao27cb7dc2018-02-01 13:17:50 -0800505 data.resize(4 + string.size());
506 char buf[5];
507 snprintf(buf, sizeof(buf), "%04x", static_cast<int>(string.size()));
508 memcpy(&data[0], buf, 4);
509 memcpy(&data[4], string.data(), string.size());
510 return peer->enqueue(peer, std::move(data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800511}
512
Elliott Hughese67f1f82015-04-30 17:32:03 -0700513static void device_tracker_ready(asocket* socket) {
514 device_tracker* tracker = reinterpret_cast<device_tracker*>(socket);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800515
Elliott Hughese67f1f82015-04-30 17:32:03 -0700516 // We want to send the device list when the tracker connects
517 // for the first time, even if no update occurred.
Josh Gaob0c18022017-08-14 18:57:54 -0700518 if (tracker->update_needed) {
519 tracker->update_needed = false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800520
Josh Gaob0c18022017-08-14 18:57:54 -0700521 std::string transports = list_transports(tracker->long_output);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700522 device_tracker_send(tracker, transports);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800523 }
524}
525
Josh Gaob0c18022017-08-14 18:57:54 -0700526asocket* create_device_tracker(bool long_output) {
Josh Gaoe0361d12018-02-12 17:24:00 -0800527 device_tracker* tracker = new device_tracker();
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700528 if (tracker == nullptr) fatal("cannot allocate device tracker");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800529
Josh Gao1290fbf2016-11-22 14:32:34 -0800530 D("device tracker %p created", tracker);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800531
532 tracker->socket.enqueue = device_tracker_enqueue;
Josh Gao1290fbf2016-11-22 14:32:34 -0800533 tracker->socket.ready = device_tracker_ready;
534 tracker->socket.close = device_tracker_close;
Josh Gaob0c18022017-08-14 18:57:54 -0700535 tracker->update_needed = true;
536 tracker->long_output = long_output;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800537
Josh Gao1290fbf2016-11-22 14:32:34 -0800538 tracker->next = device_tracker_list;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800539 device_tracker_list = tracker;
540
541 return &tracker->socket;
542}
543
Josh Gaofd713e52017-05-03 22:37:10 -0700544// Check if all of the USB transports are connected.
545bool iterate_transports(std::function<bool(const atransport*)> fn) {
Josh Gao1db71af2017-08-17 13:50:51 -0700546 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gaofd713e52017-05-03 22:37:10 -0700547 for (const auto& t : transport_list) {
548 if (!fn(t)) {
549 return false;
550 }
551 }
552 for (const auto& t : pending_list) {
553 if (!fn(t)) {
554 return false;
555 }
556 }
557 return true;
558}
559
Elliott Hughese67f1f82015-04-30 17:32:03 -0700560// Call this function each time the transport list has changed.
561void update_transports() {
Josh Gaofd713e52017-05-03 22:37:10 -0700562 update_transport_status();
563
564 // Notify `adb track-devices` clients.
Elliott Hughese67f1f82015-04-30 17:32:03 -0700565 std::string transports = list_transports(false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800566
Elliott Hughese67f1f82015-04-30 17:32:03 -0700567 device_tracker* tracker = device_tracker_list;
568 while (tracker != nullptr) {
569 device_tracker* next = tracker->next;
570 // This may destroy the tracker if the connection is closed.
571 device_tracker_send(tracker, transports);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800572 tracker = next;
573 }
574}
Elliott Hughese67f1f82015-04-30 17:32:03 -0700575
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800576#else
Elliott Hughese67f1f82015-04-30 17:32:03 -0700577
578void update_transports() {
579 // Nothing to do on the device side.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800580}
Elliott Hughese67f1f82015-04-30 17:32:03 -0700581
Josh Gao1290fbf2016-11-22 14:32:34 -0800582#endif // ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800583
Josh Gao1290fbf2016-11-22 14:32:34 -0800584struct tmsg {
585 atransport* transport;
586 int action;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800587};
588
Josh Gao1290fbf2016-11-22 14:32:34 -0800589static int transport_read_action(int fd, struct tmsg* m) {
590 char* p = (char*)m;
591 int len = sizeof(*m);
592 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800593
Josh Gao1290fbf2016-11-22 14:32:34 -0800594 while (len > 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800595 r = adb_read(fd, p, len);
Josh Gao1290fbf2016-11-22 14:32:34 -0800596 if (r > 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800597 len -= r;
Josh Gao1290fbf2016-11-22 14:32:34 -0800598 p += r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800599 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700600 D("transport_read_action: on fd %d: %s", fd, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800601 return -1;
602 }
603 }
604 return 0;
605}
606
Josh Gao1290fbf2016-11-22 14:32:34 -0800607static int transport_write_action(int fd, struct tmsg* m) {
608 char* p = (char*)m;
609 int len = sizeof(*m);
610 int r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800611
Josh Gao1290fbf2016-11-22 14:32:34 -0800612 while (len > 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800613 r = adb_write(fd, p, len);
Josh Gao1290fbf2016-11-22 14:32:34 -0800614 if (r > 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800615 len -= r;
Josh Gao1290fbf2016-11-22 14:32:34 -0800616 p += r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800617 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700618 D("transport_write_action: on fd %d: %s", fd, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800619 return -1;
620 }
621 }
622 return 0;
623}
624
Josh Gao0bbf69c2018-02-16 13:24:58 -0800625static void transport_registration_func(int _fd, unsigned ev, void*) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800626 tmsg m;
Josh Gao1290fbf2016-11-22 14:32:34 -0800627 atransport* t;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800628
Josh Gao1290fbf2016-11-22 14:32:34 -0800629 if (!(ev & FDE_READ)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800630 return;
631 }
632
Josh Gao1290fbf2016-11-22 14:32:34 -0800633 if (transport_read_action(_fd, &m)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800634 fatal_errno("cannot read transport registration socket");
635 }
636
637 t = m.transport;
638
Dan Albert1792c232015-05-18 13:06:53 -0700639 if (m.action == 0) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700640 D("transport: %s deleting", t->serial.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800641
Josh Gao0cd3ae12016-09-21 12:37:10 -0700642 {
Josh Gao1db71af2017-08-17 13:50:51 -0700643 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gao0cd3ae12016-09-21 12:37:10 -0700644 transport_list.remove(t);
645 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800646
Dan Albertc7915a32015-05-18 16:46:31 -0700647 delete t;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800648
649 update_transports();
650 return;
651 }
652
Mike Lockwood0927bf92009-08-08 12:37:44 -0400653 /* don't create transport threads for inaccessible devices */
Yabin Cuib5e11412017-03-10 16:01:01 -0800654 if (t->GetConnectionState() != kCsNoPerm) {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700655 // The connection gets a reference to the atransport. It will release it
656 // upon a read/write error.
657 t->ref_count++;
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700658 t->connection()->SetTransportName(t->serial_name());
659 t->connection()->SetReadCallback([t](Connection*, std::unique_ptr<apacket> p) {
Josh Gao0bbf69c2018-02-16 13:24:58 -0800660 if (!check_header(p.get(), t)) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700661 D("%s: remote read: bad header", t->serial.c_str());
Josh Gao0bbf69c2018-02-16 13:24:58 -0800662 return false;
663 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800664
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700665 VLOG(TRANSPORT) << dump_packet(t->serial.c_str(), "from remote", p.get());
Josh Gao0bbf69c2018-02-16 13:24:58 -0800666 apacket* packet = p.release();
Mike Lockwood0927bf92009-08-08 12:37:44 -0400667
Josh Gao0bbf69c2018-02-16 13:24:58 -0800668 // TODO: Does this need to run on the main thread?
669 fdevent_run_on_main_thread([packet, t]() { handle_packet(packet, t); });
670 return true;
671 });
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700672 t->connection()->SetErrorCallback([t](Connection*, const std::string& error) {
Josh Gaoc51726c2018-10-11 16:33:05 -0700673 LOG(INFO) << t->serial_name() << ": connection terminated: " << error;
Josh Gao0bbf69c2018-02-16 13:24:58 -0800674 fdevent_run_on_main_thread([t]() {
675 handle_offline(t);
676 transport_unref(t);
677 });
678 });
Mike Lockwood0927bf92009-08-08 12:37:44 -0400679
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700680 t->connection()->Start();
Josh Gao0bbf69c2018-02-16 13:24:58 -0800681#if ADB_HOST
682 send_connect(t);
683#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800684 }
685
Josh Gao0cd3ae12016-09-21 12:37:10 -0700686 {
Josh Gao1db71af2017-08-17 13:50:51 -0700687 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700688 auto it = std::find(pending_list.begin(), pending_list.end(), t);
689 if (it != pending_list.end()) {
690 pending_list.remove(t);
691 transport_list.push_front(t);
692 }
Josh Gao0cd3ae12016-09-21 12:37:10 -0700693 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800694
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800695 update_transports();
696}
697
Josh Gaodef91c02018-07-31 18:28:32 -0700698#if ADB_HOST
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700699void init_reconnect_handler(void) {
700 reconnect_handler.Start();
701}
Josh Gaodef91c02018-07-31 18:28:32 -0700702#endif
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700703
Josh Gao1290fbf2016-11-22 14:32:34 -0800704void init_transport_registration(void) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800705 int s[2];
706
Josh Gao1290fbf2016-11-22 14:32:34 -0800707 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800708 fatal_errno("cannot open transport registration socketpair");
709 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700710 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800711
712 transport_registration_send = s[0];
713 transport_registration_recv = s[1];
714
Josh Gao71f775a2018-05-14 11:14:33 -0700715 transport_registration_fde =
Yi Kongaed415c2018-07-13 18:15:16 -0700716 fdevent_create(transport_registration_recv, transport_registration_func, nullptr);
Josh Gao71f775a2018-05-14 11:14:33 -0700717 fdevent_set(transport_registration_fde, FDE_READ);
Josh Gao01b7bc42017-05-09 13:43:35 -0700718}
719
720void kick_all_transports() {
Josh Gaodef91c02018-07-31 18:28:32 -0700721#if ADB_HOST
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700722 reconnect_handler.Stop();
Josh Gaodef91c02018-07-31 18:28:32 -0700723#endif
Josh Gao01b7bc42017-05-09 13:43:35 -0700724 // To avoid only writing part of a packet to a transport after exit, kick all transports.
Josh Gao1db71af2017-08-17 13:50:51 -0700725 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gao01b7bc42017-05-09 13:43:35 -0700726 for (auto t : transport_list) {
727 t->Kick();
728 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800729}
730
731/* the fdevent select pump is single threaded */
Josh Gaoc51726c2018-10-11 16:33:05 -0700732void register_transport(atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800733 tmsg m;
734 m.transport = transport;
735 m.action = 1;
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700736 D("transport: %s registered", transport->serial.c_str());
Josh Gao1290fbf2016-11-22 14:32:34 -0800737 if (transport_write_action(transport_registration_send, &m)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800738 fatal_errno("cannot write transport registration socket\n");
739 }
740}
741
Josh Gao1290fbf2016-11-22 14:32:34 -0800742static void remove_transport(atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800743 tmsg m;
744 m.transport = transport;
745 m.action = 0;
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700746 D("transport: %s removed", transport->serial.c_str());
Josh Gao1290fbf2016-11-22 14:32:34 -0800747 if (transport_write_action(transport_registration_send, &m)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800748 fatal_errno("cannot write transport registration socket\n");
749 }
750}
751
Yabin Cuif4b99282015-08-27 12:03:11 -0700752static void transport_unref(atransport* t) {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700753 check_main_thread();
Yabin Cuif4b99282015-08-27 12:03:11 -0700754 CHECK(t != nullptr);
Josh Gao0cd3ae12016-09-21 12:37:10 -0700755
Josh Gaoe48ecce2017-09-13 13:40:57 -0700756 std::lock_guard<std::recursive_mutex> lock(transport_lock);
757 CHECK_GT(t->ref_count, 0u);
758 t->ref_count--;
759 if (t->ref_count == 0) {
Josh Gaoc51726c2018-10-11 16:33:05 -0700760 LOG(INFO) << "destroying transport " << t->serial_name();
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700761 t->connection()->Stop();
Josh Gaodef91c02018-07-31 18:28:32 -0700762#if ADB_HOST
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700763 if (t->IsTcpDevice() && !t->kicked()) {
Josh Gaodef91c02018-07-31 18:28:32 -0700764 D("transport: %s unref (attempting reconnection)", t->serial.c_str());
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700765 reconnect_handler.TrackTransport(t);
766 } else {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700767 D("transport: %s unref (kicking and closing)", t->serial.c_str());
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700768 remove_transport(t);
769 }
Josh Gaodef91c02018-07-31 18:28:32 -0700770#else
771 D("transport: %s unref (kicking and closing)", t->serial.c_str());
772 remove_transport(t);
773#endif
774
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100775 } else {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700776 D("transport: %s unref (count=%zu)", t->serial.c_str(), t->ref_count);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400777 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800778}
779
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700780static int qual_match(const std::string& to_test, const char* prefix, const std::string& qual,
Josh Gao1290fbf2016-11-22 14:32:34 -0800781 bool sanitize_qual) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700782 if (to_test.empty()) /* Return true if both the qual and to_test are empty strings. */
783 return qual.empty();
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700784
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700785 if (qual.empty()) return 0;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700786
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700787 const char* ptr = to_test.c_str();
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700788 if (prefix) {
789 while (*prefix) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700790 if (*prefix++ != *ptr++) return 0;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700791 }
792 }
793
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700794 for (char ch : qual) {
Josh Gao1290fbf2016-11-22 14:32:34 -0800795 if (sanitize_qual && !isalnum(ch)) ch = '_';
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700796 if (ch != *ptr++) return 0;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700797 }
798
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700799 /* Everything matched so far. Return true if *ptr is a NUL. */
800 return !*ptr;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700801}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800802
Josh Gaob122b172017-08-16 16:57:01 -0700803atransport* acquire_one_transport(TransportType type, const char* serial, TransportId transport_id,
804 bool* is_ambiguous, std::string* error_out,
805 bool accept_any_state) {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700806 atransport* result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800807
Josh Gaob122b172017-08-16 16:57:01 -0700808 if (transport_id != 0) {
809 *error_out =
810 android::base::StringPrintf("no device with transport id '%" PRIu64 "'", transport_id);
811 } else if (serial) {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700812 *error_out = android::base::StringPrintf("device '%s' not found", serial);
813 } else if (type == kTransportLocal) {
814 *error_out = "no emulators found";
815 } else if (type == kTransportAny) {
816 *error_out = "no devices/emulators found";
817 } else {
818 *error_out = "no devices found";
819 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800820
Josh Gao1db71af2017-08-17 13:50:51 -0700821 std::unique_lock<std::recursive_mutex> lock(transport_lock);
Elliott Hughes8d28e192015-10-07 14:55:10 -0700822 for (const auto& t : transport_list) {
Yabin Cuib5e11412017-03-10 16:01:01 -0800823 if (t->GetConnectionState() == kCsNoPerm) {
David Purselld2acbd12015-12-02 15:14:31 -0800824 *error_out = UsbNoPermissionsLongHelpText();
Mike Lockwood37d31112009-08-08 13:53:16 -0400825 continue;
826 }
Mike Lockwood0927bf92009-08-08 12:37:44 -0400827
Josh Gaob122b172017-08-16 16:57:01 -0700828 if (transport_id) {
829 if (t->id == transport_id) {
830 result = t;
831 break;
832 }
833 } else if (serial) {
David Pursell3f902aa2016-03-01 08:58:26 -0800834 if (t->MatchesTarget(serial)) {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700835 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700836 *error_out = "more than one device";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700837 if (is_ambiguous) *is_ambiguous = true;
838 result = nullptr;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700839 break;
840 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800841 result = t;
Scott Andersone109d262012-04-20 11:21:14 -0700842 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800843 } else {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700844 if (type == kTransportUsb && t->type == kTransportUsb) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800845 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700846 *error_out = "more than one device";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700847 if (is_ambiguous) *is_ambiguous = true;
848 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800849 break;
850 }
851 result = t;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700852 } else if (type == kTransportLocal && t->type == kTransportLocal) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800853 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700854 *error_out = "more than one emulator";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700855 if (is_ambiguous) *is_ambiguous = true;
856 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800857 break;
858 }
859 result = t;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700860 } else if (type == kTransportAny) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800861 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700862 *error_out = "more than one device/emulator";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700863 if (is_ambiguous) *is_ambiguous = true;
864 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800865 break;
866 }
867 result = t;
868 }
869 }
870 }
Josh Gao0cd3ae12016-09-21 12:37:10 -0700871 lock.unlock();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800872
Josh Gao704494b2018-05-04 16:04:49 -0700873 if (result && !accept_any_state) {
874 // The caller requires an active transport.
875 // Make sure that we're actually connected.
876 ConnectionState state = result->GetConnectionState();
877 switch (state) {
878 case kCsConnecting:
879 *error_out = "device still connecting";
880 result = nullptr;
881 break;
Benoit Goby77e8e582013-01-15 12:36:47 -0800882
Josh Gao704494b2018-05-04 16:04:49 -0700883 case kCsAuthorizing:
884 *error_out = "device still authorizing";
885 result = nullptr;
886 break;
887
888 case kCsUnauthorized: {
889 *error_out = "device unauthorized.\n";
890 char* ADB_VENDOR_KEYS = getenv("ADB_VENDOR_KEYS");
891 *error_out += "This adb server's $ADB_VENDOR_KEYS is ";
892 *error_out += ADB_VENDOR_KEYS ? ADB_VENDOR_KEYS : "not set";
893 *error_out += "\n";
894 *error_out += "Try 'adb kill-server' if that seems wrong.\n";
895 *error_out += "Otherwise check for a confirmation dialog on your device.";
896 result = nullptr;
897 break;
898 }
899
900 case kCsOffline:
901 *error_out = "device offline";
902 result = nullptr;
903 break;
904
905 default:
906 break;
907 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800908 }
909
910 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700911 *error_out = "success";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800912 }
913
914 return result;
915}
916
Luis Hector Chavez56fe7532018-04-17 14:25:04 -0700917bool ConnectionWaitable::WaitForConnection(std::chrono::milliseconds timeout) {
918 std::unique_lock<std::mutex> lock(mutex_);
919 ScopedAssumeLocked assume_locked(mutex_);
920 return cv_.wait_for(lock, timeout, [&]() REQUIRES(mutex_) {
921 return connection_established_ready_;
922 }) && connection_established_;
923}
924
925void ConnectionWaitable::SetConnectionEstablished(bool success) {
926 {
927 std::lock_guard<std::mutex> lock(mutex_);
928 if (connection_established_ready_) return;
929 connection_established_ready_ = true;
930 connection_established_ = success;
931 D("connection established with %d", success);
932 }
933 cv_.notify_one();
934}
935
936atransport::~atransport() {
937 // If the connection callback had not been run before, run it now.
938 SetConnectionEstablished(false);
939}
940
Yabin Cuib5e11412017-03-10 16:01:01 -0800941int atransport::Write(apacket* p) {
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700942 return this->connection()->Write(std::unique_ptr<apacket>(p)) ? 0 : -1;
Yabin Cuib5e11412017-03-10 16:01:01 -0800943}
944
Yabin Cui7f274902016-04-18 11:22:34 -0700945void atransport::Kick() {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -0700946 if (!kicked_.exchange(true)) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -0700947 D("kicking transport %p %s", this, this->serial.c_str());
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700948 this->connection()->Stop();
Yabin Cui7f274902016-04-18 11:22:34 -0700949 }
950}
951
Yabin Cuib5e11412017-03-10 16:01:01 -0800952ConnectionState atransport::GetConnectionState() const {
953 return connection_state_;
954}
955
956void atransport::SetConnectionState(ConnectionState state) {
957 check_main_thread();
958 connection_state_ = state;
959}
960
Luis Hector Chavez9a388d52018-04-25 08:56:41 -0700961void atransport::SetConnection(std::unique_ptr<Connection> connection) {
962 std::lock_guard<std::mutex> lock(mutex_);
963 connection_ = std::shared_ptr<Connection>(std::move(connection));
964}
965
Josh Gaoffbd3362018-02-28 14:44:23 -0800966std::string atransport::connection_state_name() const {
Yabin Cuib5e11412017-03-10 16:01:01 -0800967 ConnectionState state = GetConnectionState();
968 switch (state) {
Josh Gao1290fbf2016-11-22 14:32:34 -0800969 case kCsOffline:
970 return "offline";
971 case kCsBootloader:
972 return "bootloader";
973 case kCsDevice:
974 return "device";
975 case kCsHost:
976 return "host";
977 case kCsRecovery:
978 return "recovery";
979 case kCsNoPerm:
980 return UsbNoPermissionsShortHelpText();
981 case kCsSideload:
982 return "sideload";
983 case kCsUnauthorized:
984 return "unauthorized";
Josh Gao704494b2018-05-04 16:04:49 -0700985 case kCsAuthorizing:
986 return "authorizing";
987 case kCsConnecting:
988 return "connecting";
Josh Gao1290fbf2016-11-22 14:32:34 -0800989 default:
990 return "unknown";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800991 }
992}
993
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100994void atransport::update_version(int version, size_t payload) {
995 protocol_version = std::min(version, A_VERSION);
996 max_payload = std::min(payload, MAX_PAYLOAD);
997}
998
999int atransport::get_protocol_version() const {
1000 return protocol_version;
1001}
1002
1003size_t atransport::get_max_payload() const {
1004 return max_payload;
1005}
1006
Dan Albert1792c232015-05-18 13:06:53 -07001007const FeatureSet& supported_features() {
David Pursell4e2fd362015-09-22 10:43:08 -07001008 // Local static allocation to avoid global non-POD variables.
1009 static const FeatureSet* features = new FeatureSet{
Josh Gao1290fbf2016-11-22 14:32:34 -08001010 kFeatureShell2, kFeatureCmd, kFeatureStat2,
David Pursellbbe3d212015-09-25 08:37:13 -07001011 // Increment ADB_SERVER_VERSION whenever the feature list changes to
1012 // make sure that the adb client and server features stay in sync
1013 // (http://b/24370690).
David Pursell4e2fd362015-09-22 10:43:08 -07001014 };
1015
1016 return *features;
1017}
1018
1019std::string FeatureSetToString(const FeatureSet& features) {
Elliott Hughes86ab9ff2018-09-05 12:13:11 -07001020 return android::base::Join(features, ',');
David Pursell4e2fd362015-09-22 10:43:08 -07001021}
1022
1023FeatureSet StringToFeatureSet(const std::string& features_string) {
David Purselld2b588e2015-09-25 13:04:21 -07001024 if (features_string.empty()) {
1025 return FeatureSet();
1026 }
1027
Elliott Hughes86ab9ff2018-09-05 12:13:11 -07001028 auto names = android::base::Split(features_string, ",");
David Pursell4e2fd362015-09-22 10:43:08 -07001029 return FeatureSet(names.begin(), names.end());
Dan Albert1792c232015-05-18 13:06:53 -07001030}
1031
David Pursell70ef7b42015-09-30 13:35:42 -07001032bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature) {
Josh Gao1290fbf2016-11-22 14:32:34 -08001033 return feature_set.count(feature) > 0 && supported_features().count(feature) > 0;
David Pursell70ef7b42015-09-30 13:35:42 -07001034}
1035
Dan Albert1792c232015-05-18 13:06:53 -07001036bool atransport::has_feature(const std::string& feature) const {
1037 return features_.count(feature) > 0;
1038}
1039
David Pursell4e2fd362015-09-22 10:43:08 -07001040void atransport::SetFeatures(const std::string& features_string) {
1041 features_ = StringToFeatureSet(features_string);
Dan Albert1792c232015-05-18 13:06:53 -07001042}
1043
Yabin Cuib3298242015-08-28 15:09:44 -07001044void atransport::AddDisconnect(adisconnect* disconnect) {
1045 disconnects_.push_back(disconnect);
1046}
1047
1048void atransport::RemoveDisconnect(adisconnect* disconnect) {
1049 disconnects_.remove(disconnect);
1050}
1051
1052void atransport::RunDisconnects() {
Elliott Hughes65fe2512015-10-07 15:59:35 -07001053 for (const auto& disconnect : disconnects_) {
Yabin Cuib3298242015-08-28 15:09:44 -07001054 disconnect->func(disconnect->opaque, this);
1055 }
1056 disconnects_.clear();
1057}
1058
David Pursell3f902aa2016-03-01 08:58:26 -08001059bool atransport::MatchesTarget(const std::string& target) const {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001060 if (!serial.empty()) {
David Pursell3f902aa2016-03-01 08:58:26 -08001061 if (target == serial) {
1062 return true;
1063 } else if (type == kTransportLocal) {
1064 // Local transports can match [tcp:|udp:]<hostname>[:port].
1065 const char* local_target_ptr = target.c_str();
1066
1067 // For fastboot compatibility, ignore protocol prefixes.
1068 if (android::base::StartsWith(target, "tcp:") ||
Josh Gao1290fbf2016-11-22 14:32:34 -08001069 android::base::StartsWith(target, "udp:")) {
David Pursell3f902aa2016-03-01 08:58:26 -08001070 local_target_ptr += 4;
1071 }
1072
1073 // Parse our |serial| and the given |target| to check if the hostnames and ports match.
1074 std::string serial_host, error;
1075 int serial_port = -1;
Josh Gao1290fbf2016-11-22 14:32:34 -08001076 if (android::base::ParseNetAddress(serial, &serial_host, &serial_port, nullptr, &error)) {
David Pursell3f902aa2016-03-01 08:58:26 -08001077 // |target| may omit the port to default to ours.
1078 std::string target_host;
1079 int target_port = serial_port;
1080 if (android::base::ParseNetAddress(local_target_ptr, &target_host, &target_port,
1081 nullptr, &error) &&
Josh Gao1290fbf2016-11-22 14:32:34 -08001082 serial_host == target_host && serial_port == target_port) {
David Pursell3f902aa2016-03-01 08:58:26 -08001083 return true;
1084 }
1085 }
1086 }
1087 }
1088
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001089 return (target == devpath) || qual_match(target, "product:", product, false) ||
1090 qual_match(target, "model:", model, true) ||
1091 qual_match(target, "device:", device, false);
David Pursell3f902aa2016-03-01 08:58:26 -08001092}
1093
Luis Hector Chavez56fe7532018-04-17 14:25:04 -07001094void atransport::SetConnectionEstablished(bool success) {
1095 connection_waitable_->SetConnectionEstablished(success);
1096}
1097
Josh Gaofc2e56f2018-08-30 11:37:00 -07001098ReconnectResult atransport::Reconnect() {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -07001099 return reconnect_(this);
1100}
1101
Elliott Hughese67f1f82015-04-30 17:32:03 -07001102#if ADB_HOST
1103
Josh Gaob122b172017-08-16 16:57:01 -07001104// We use newline as our delimiter, make sure to never output it.
1105static std::string sanitize(std::string str, bool alphanumeric) {
1106 auto pred = alphanumeric ? [](const char c) { return !isalnum(c); }
1107 : [](const char c) { return c == '\n'; };
1108 std::replace_if(str.begin(), str.end(), pred, '_');
1109 return str;
1110}
1111
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001112static void append_transport_info(std::string* result, const char* key, const std::string& value,
Josh Gaob122b172017-08-16 16:57:01 -07001113 bool alphanumeric) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001114 if (value.empty()) {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001115 return;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001116 }
1117
Elliott Hughese67f1f82015-04-30 17:32:03 -07001118 *result += ' ';
1119 *result += key;
Josh Gaob122b172017-08-16 16:57:01 -07001120 *result += sanitize(value, alphanumeric);
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001121}
1122
Josh Gao1290fbf2016-11-22 14:32:34 -08001123static void append_transport(const atransport* t, std::string* result, bool long_listing) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001124 std::string serial = t->serial;
1125 if (serial.empty()) {
Dan Albertd99d9022015-05-06 16:48:52 -07001126 serial = "(no serial number)";
Elliott Hughese67f1f82015-04-30 17:32:03 -07001127 }
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001128
1129 if (!long_listing) {
Elliott Hughese67f1f82015-04-30 17:32:03 -07001130 *result += serial;
1131 *result += '\t';
1132 *result += t->connection_state_name();
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001133 } else {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001134 android::base::StringAppendF(result, "%-22s %s", serial.c_str(),
1135 t->connection_state_name().c_str());
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001136
Elliott Hughese67f1f82015-04-30 17:32:03 -07001137 append_transport_info(result, "", t->devpath, false);
1138 append_transport_info(result, "product:", t->product, false);
1139 append_transport_info(result, "model:", t->model, true);
1140 append_transport_info(result, "device:", t->device, false);
Josh Gaob122b172017-08-16 16:57:01 -07001141
1142 // Put id at the end, so that anyone parsing the output here can always find it by scanning
1143 // backwards from newlines, even with hypothetical devices named 'transport_id:1'.
1144 *result += " transport_id:";
1145 *result += std::to_string(t->id);
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001146 }
Elliott Hughese67f1f82015-04-30 17:32:03 -07001147 *result += '\n';
Scott Anderson2ca3e6b2012-05-30 18:11:27 -07001148}
1149
Elliott Hughese67f1f82015-04-30 17:32:03 -07001150std::string list_transports(bool long_listing) {
Josh Gao1db71af2017-08-17 13:50:51 -07001151 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Artem Iglikov04398a92017-12-17 10:56:07 +00001152
1153 auto sorted_transport_list = transport_list;
1154 sorted_transport_list.sort([](atransport*& x, atransport*& y) {
1155 if (x->type != y->type) {
1156 return x->type < y->type;
1157 }
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001158 return x->serial < y->serial;
Artem Iglikov04398a92017-12-17 10:56:07 +00001159 });
1160
1161 std::string result;
1162 for (const auto& t : sorted_transport_list) {
Elliott Hughese67f1f82015-04-30 17:32:03 -07001163 append_transport(t, &result, long_listing);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001164 }
Elliott Hughese67f1f82015-04-30 17:32:03 -07001165 return result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001166}
1167
Josh Gao22d2b3e2016-10-27 14:01:08 -07001168void close_usb_devices(std::function<bool(const atransport*)> predicate) {
Josh Gao1db71af2017-08-17 13:50:51 -07001169 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gao22d2b3e2016-10-27 14:01:08 -07001170 for (auto& t : transport_list) {
1171 if (predicate(t)) {
1172 t->Kick();
1173 }
1174 }
1175}
1176
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001177/* hack for osx */
Dan Albertc7915a32015-05-18 16:46:31 -07001178void close_usb_devices() {
Josh Gao22d2b3e2016-10-27 14:01:08 -07001179 close_usb_devices([](const atransport*) { return true; });
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001180}
Josh Gao1290fbf2016-11-22 14:32:34 -08001181#endif // ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001182
Josh Gao362e6962018-08-08 16:20:14 -07001183bool register_socket_transport(unique_fd s, std::string serial, int port, int local,
1184 atransport::ReconnectCallback reconnect, int* error) {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -07001185 atransport* t = new atransport(std::move(reconnect), kCsOffline);
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +01001186
Josh Gao3b4de3c2018-08-02 13:58:24 -07001187 D("transport: %s init'ing for socket %d, on port %d", serial.c_str(), s.get(), port);
Josh Gao56300c92018-07-25 17:21:49 -07001188 if (init_socket_transport(t, std::move(s), port, local) < 0) {
Dan Albertc7915a32015-05-18 16:46:31 -07001189 delete t;
Josh Gao362e6962018-08-08 16:20:14 -07001190 if (error) *error = errno;
1191 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001192 }
Benoit Goby1c45ee92013-03-29 18:22:36 -07001193
Josh Gao1db71af2017-08-17 13:50:51 -07001194 std::unique_lock<std::recursive_mutex> lock(transport_lock);
Elliott Hughes65fe2512015-10-07 15:59:35 -07001195 for (const auto& transport : pending_list) {
Josh Gao3b4de3c2018-08-02 13:58:24 -07001196 if (serial == transport->serial) {
Yabin Cuib74c6492016-04-29 16:53:52 -07001197 VLOG(TRANSPORT) << "socket transport " << transport->serial
Josh Gao1290fbf2016-11-22 14:32:34 -08001198 << " is already in pending_list and fails to register";
Dan Albertc7915a32015-05-18 16:46:31 -07001199 delete t;
Josh Gao362e6962018-08-08 16:20:14 -07001200 if (error) *error = EALREADY;
1201 return false;
Benoit Goby1c45ee92013-03-29 18:22:36 -07001202 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001203 }
Benoit Goby1c45ee92013-03-29 18:22:36 -07001204
Elliott Hughes65fe2512015-10-07 15:59:35 -07001205 for (const auto& transport : transport_list) {
Josh Gao3b4de3c2018-08-02 13:58:24 -07001206 if (serial == transport->serial) {
Yabin Cuib74c6492016-04-29 16:53:52 -07001207 VLOG(TRANSPORT) << "socket transport " << transport->serial
Josh Gao1290fbf2016-11-22 14:32:34 -08001208 << " is already in transport_list and fails to register";
Dan Albertc7915a32015-05-18 16:46:31 -07001209 delete t;
Josh Gao362e6962018-08-08 16:20:14 -07001210 if (error) *error = EALREADY;
1211 return false;
Benoit Goby1c45ee92013-03-29 18:22:36 -07001212 }
1213 }
1214
Josh Gao3b4de3c2018-08-02 13:58:24 -07001215 t->serial = std::move(serial);
Dan Albertc7915a32015-05-18 16:46:31 -07001216 pending_list.push_front(t);
Josh Gao0cd3ae12016-09-21 12:37:10 -07001217
1218 lock.unlock();
Benoit Goby1c45ee92013-03-29 18:22:36 -07001219
Luis Hector Chavez56fe7532018-04-17 14:25:04 -07001220 auto waitable = t->connection_waitable();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001221 register_transport(t);
Luis Hector Chavez56fe7532018-04-17 14:25:04 -07001222
Luis Hector Chavezc587f022018-05-01 17:12:16 -07001223 if (local == 1) {
1224 // Do not wait for emulator transports.
Josh Gao362e6962018-08-08 16:20:14 -07001225 return true;
Luis Hector Chavezc587f022018-05-01 17:12:16 -07001226 }
1227
Josh Gao362e6962018-08-08 16:20:14 -07001228 if (!waitable->WaitForConnection(std::chrono::seconds(10))) {
1229 if (error) *error = ETIMEDOUT;
1230 return false;
1231 }
1232
1233 if (t->GetConnectionState() == kCsUnauthorized) {
1234 if (error) *error = EPERM;
1235 return false;
1236 }
1237
1238 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001239}
1240
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001241#if ADB_HOST
Josh Gao1290fbf2016-11-22 14:32:34 -08001242atransport* find_transport(const char* serial) {
Dan Albertc7915a32015-05-18 16:46:31 -07001243 atransport* result = nullptr;
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001244
Josh Gao1db71af2017-08-17 13:50:51 -07001245 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Yabin Cuif4b99282015-08-27 12:03:11 -07001246 for (auto& t : transport_list) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001247 if (strcmp(serial, t->serial.c_str()) == 0) {
Dan Albertc7915a32015-05-18 16:46:31 -07001248 result = t;
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001249 break;
1250 }
Dan Albertc7915a32015-05-18 16:46:31 -07001251 }
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001252
Dan Albertc7915a32015-05-18 16:46:31 -07001253 return result;
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001254}
1255
Yabin Cuif4b99282015-08-27 12:03:11 -07001256void kick_all_tcp_devices() {
Josh Gao1db71af2017-08-17 13:50:51 -07001257 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Yabin Cuif4b99282015-08-27 12:03:11 -07001258 for (auto& t : transport_list) {
Yabin Cuib74c6492016-04-29 16:53:52 -07001259 if (t->IsTcpDevice()) {
Yabin Cuid6ab3c22015-08-31 11:50:24 -07001260 // Kicking breaks the read_transport thread of this transport out of any read, then
1261 // the read_transport thread will notify the main thread to make this transport
1262 // offline. Then the main thread will notify the write_transport thread to exit.
Yabin Cuif4b99282015-08-27 12:03:11 -07001263 // Finally, this transport will be closed and freed in the main thread.
Yabin Cui7f274902016-04-18 11:22:34 -07001264 t->Kick();
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001265 }
Dan Albertc7915a32015-05-18 16:46:31 -07001266 }
Josh Gao902dace2018-08-10 14:44:54 -07001267#if ADB_HOST
1268 reconnect_handler.CheckForKicked();
1269#endif
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -04001270}
1271
Mike Lockwood8cf0d592009-10-11 23:04:18 -04001272#endif
1273
Josh Gao1290fbf2016-11-22 14:32:34 -08001274void register_usb_transport(usb_handle* usb, const char* serial, const char* devpath,
1275 unsigned writeable) {
Luis Hector Chavez454bc7c2018-04-20 10:31:29 -07001276 atransport* t = new atransport(writeable ? kCsOffline : kCsNoPerm);
Dan Albertc7915a32015-05-18 16:46:31 -07001277
Josh Gao1290fbf2016-11-22 14:32:34 -08001278 D("transport: %p init'ing for usb_handle %p (sn='%s')", t, usb, serial ? serial : "");
Yabin Cuib5e11412017-03-10 16:01:01 -08001279 init_usb_transport(t, usb);
Josh Gao1290fbf2016-11-22 14:32:34 -08001280 if (serial) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001281 t->serial = serial;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001282 }
Dan Albertc7915a32015-05-18 16:46:31 -07001283
1284 if (devpath) {
Luis Hector Chavez6150a372018-07-18 21:18:27 -07001285 t->devpath = devpath;
Scott Andersone109d262012-04-20 11:21:14 -07001286 }
Benoit Goby1c45ee92013-03-29 18:22:36 -07001287
Josh Gao0cd3ae12016-09-21 12:37:10 -07001288 {
Josh Gao1db71af2017-08-17 13:50:51 -07001289 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gao0cd3ae12016-09-21 12:37:10 -07001290 pending_list.push_front(t);
1291 }
Benoit Goby1c45ee92013-03-29 18:22:36 -07001292
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001293 register_transport(t);
1294}
1295
Josh Gaoc51726c2018-10-11 16:33:05 -07001296#if ADB_HOST
Dan Albertdcd78a12015-05-18 16:43:57 -07001297// This should only be used for transports with connection_state == kCsNoPerm.
Josh Gao1290fbf2016-11-22 14:32:34 -08001298void unregister_usb_transport(usb_handle* usb) {
Josh Gao1db71af2017-08-17 13:50:51 -07001299 std::lock_guard<std::recursive_mutex> lock(transport_lock);
Josh Gaob800d882018-01-28 20:32:46 -08001300 transport_list.remove_if([usb](atransport* t) {
Luis Hector Chavez9a388d52018-04-25 08:56:41 -07001301 auto connection = t->connection();
1302 if (auto usb_connection = dynamic_cast<UsbConnection*>(connection.get())) {
1303 return usb_connection->handle_ == usb && t->GetConnectionState() == kCsNoPerm;
Josh Gaob800d882018-01-28 20:32:46 -08001304 }
1305 return false;
1306 });
Mike Lockwood0927bf92009-08-08 12:37:44 -04001307}
Josh Gaoc51726c2018-10-11 16:33:05 -07001308#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001309
Josh Gao36dadca2017-05-16 15:02:45 -07001310bool check_header(apacket* p, atransport* t) {
Josh Gao1290fbf2016-11-22 14:32:34 -08001311 if (p->msg.magic != (p->msg.command ^ 0xffffffff)) {
Yabin Cuib5e11412017-03-10 16:01:01 -08001312 VLOG(RWX) << "check_header(): invalid magic command = " << std::hex << p->msg.command
1313 << ", magic = " << p->msg.magic;
Josh Gao36dadca2017-05-16 15:02:45 -07001314 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001315 }
1316
Josh Gao1290fbf2016-11-22 14:32:34 -08001317 if (p->msg.data_length > t->get_max_payload()) {
1318 VLOG(RWX) << "check_header(): " << p->msg.data_length
1319 << " atransport::max_payload = " << t->get_max_payload();
Josh Gao36dadca2017-05-16 15:02:45 -07001320 return false;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001321 }
1322
Josh Gao36dadca2017-05-16 15:02:45 -07001323 return true;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001324}
1325
Josh Gao3bd28792016-10-05 19:02:29 -07001326#if ADB_HOST
Josh Gao2e671202016-08-18 22:00:12 -07001327std::shared_ptr<RSA> atransport::NextKey() {
Elliott Hughes0aeb5052016-06-29 17:42:01 -07001328 if (keys_.empty()) keys_ = adb_auth_get_private_keys();
1329
Josh Gao2e671202016-08-18 22:00:12 -07001330 std::shared_ptr<RSA> result = keys_[0];
Elliott Hughes0aeb5052016-06-29 17:42:01 -07001331 keys_.pop_front();
1332 return result;
1333}
Josh Gao3bd28792016-10-05 19:02:29 -07001334#endif