blob: e129355ba94c93be0663e582e8a7f777e92f327a [file] [log] [blame]
JP Abgrall408fa572011-03-16 15:57:42 -07001/*
2 * Copyright (C) 2011 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#ifndef __TRANSPORT_H
18#define __TRANSPORT_H
19
Dan Alberte9fca142015-02-18 18:03:26 -080020#include <sys/types.h>
21
Yabin Cuib5e11412017-03-10 16:01:01 -080022#include <atomic>
Elliott Hughes0aeb5052016-06-29 17:42:01 -070023#include <deque>
Josh Gao22d2b3e2016-10-27 14:01:08 -070024#include <functional>
Yabin Cuib3298242015-08-28 15:09:44 -070025#include <list>
Josh Gao2e671202016-08-18 22:00:12 -070026#include <memory>
Yabin Cuib5e11412017-03-10 16:01:01 -080027#include <mutex>
Elliott Hughes7be29c82015-04-16 22:54:44 -070028#include <string>
Dan Albert1792c232015-05-18 13:06:53 -070029#include <unordered_set>
Dan Albert76649012015-02-24 15:51:19 -080030
Elliott Hughes7be29c82015-04-16 22:54:44 -070031#include "adb.h"
Dan Albert630b9af2014-11-24 23:34:35 -080032
Elliott Hughes0aeb5052016-06-29 17:42:01 -070033#include <openssl/rsa.h>
34
Dan Albert1792c232015-05-18 13:06:53 -070035typedef std::unordered_set<std::string> FeatureSet;
36
37const FeatureSet& supported_features();
38
David Pursell4e2fd362015-09-22 10:43:08 -070039// Encodes and decodes FeatureSet objects into human-readable strings.
40std::string FeatureSetToString(const FeatureSet& features);
41FeatureSet StringToFeatureSet(const std::string& features_string);
42
David Pursell70ef7b42015-09-30 13:35:42 -070043// Returns true if both local features and |feature_set| support |feature|.
44bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature);
45
David Pursell4e2fd362015-09-22 10:43:08 -070046// Do not use any of [:;=,] in feature strings, they have special meaning
47// in the connection banner.
Todd Kennedy6fa848a2015-11-03 16:53:08 -080048extern const char* const kFeatureShell2;
49// The 'cmd' command is available
50extern const char* const kFeatureCmd;
Josh Gao5a1e3fd2016-12-05 17:11:34 -080051extern const char* const kFeatureStat2;
Josh Gao5d1756c2017-02-22 17:07:01 -080052// The server is running with libusb enabled.
53extern const char* const kFeatureLibusb;
David Pursell0955c662015-08-31 10:42:13 -070054
Dan Albert1792c232015-05-18 13:06:53 -070055class atransport {
56public:
57 // TODO(danalbert): We expose waaaaaaay too much stuff because this was
58 // historically just a struct, but making the whole thing a more idiomatic
59 // class in one go is a very large change. Given how bad our testing is,
60 // it's better to do this piece by piece.
61
Yabin Cuib5e11412017-03-10 16:01:01 -080062 atransport(ConnectionState state = kCsOffline) : connection_state_(state) {
Dan Albert1792c232015-05-18 13:06:53 -070063 transport_fde = {};
64 protocol_version = A_VERSION;
65 max_payload = MAX_PAYLOAD;
66 }
Dan Albert1792c232015-05-18 13:06:53 -070067 virtual ~atransport() {}
68
69 int (*read_from_remote)(apacket* p, atransport* t) = nullptr;
Dan Albert1792c232015-05-18 13:06:53 -070070 void (*close)(atransport* t) = nullptr;
Yabin Cuib5e11412017-03-10 16:01:01 -080071
72 void SetWriteFunction(int (*write_func)(apacket*, atransport*)) { write_func_ = write_func; }
Yabin Cui7f274902016-04-18 11:22:34 -070073 void SetKickFunction(void (*kick_func)(atransport*)) {
74 kick_func_ = kick_func;
75 }
76 bool IsKicked() {
77 return kicked_;
78 }
Yabin Cuib5e11412017-03-10 16:01:01 -080079 int Write(apacket* p);
Yabin Cui7f274902016-04-18 11:22:34 -070080 void Kick();
Dan Albert1792c232015-05-18 13:06:53 -070081
Yabin Cuib5e11412017-03-10 16:01:01 -080082 // ConnectionState can be read by all threads, but can only be written in the main thread.
83 ConnectionState GetConnectionState() const;
84 void SetConnectionState(ConnectionState state);
85
Dan Albert1792c232015-05-18 13:06:53 -070086 int fd = -1;
87 int transport_socket = -1;
88 fdevent transport_fde;
Yabin Cuif4b99282015-08-27 12:03:11 -070089 size_t ref_count = 0;
Dan Albert1792c232015-05-18 13:06:53 -070090 uint32_t sync_token = 0;
Dan Albert1792c232015-05-18 13:06:53 -070091 bool online = false;
92 TransportType type = kTransportAny;
93
94 // USB handle or socket fd as needed.
95 usb_handle* usb = nullptr;
96 int sfd = -1;
97
98 // Used to identify transports for clients.
99 char* serial = nullptr;
100 char* product = nullptr;
101 char* model = nullptr;
102 char* device = nullptr;
103 char* devpath = nullptr;
Yabin Cuib74c6492016-04-29 16:53:52 -0700104 void SetLocalPortForEmulator(int port) {
105 CHECK_EQ(local_port_for_emulator_, -1);
106 local_port_for_emulator_ = port;
107 }
108
109 bool GetLocalPortForEmulator(int* port) const {
110 if (type == kTransportLocal && local_port_for_emulator_ != -1) {
111 *port = local_port_for_emulator_;
112 return true;
113 }
114 return false;
115 }
116
117 bool IsTcpDevice() const {
118 return type == kTransportLocal && local_port_for_emulator_ == -1;
119 }
Dan Albert1792c232015-05-18 13:06:53 -0700120
Josh Gao3bd28792016-10-05 19:02:29 -0700121#if ADB_HOST
Josh Gao2e671202016-08-18 22:00:12 -0700122 std::shared_ptr<RSA> NextKey();
Yabin Cuib5e11412017-03-10 16:01:01 -0800123 bool SetSendConnectOnError();
Josh Gao3bd28792016-10-05 19:02:29 -0700124#endif
Elliott Hughes0aeb5052016-06-29 17:42:01 -0700125
Josh Gao06d61d42016-10-06 13:31:44 -0700126 char token[TOKEN_SIZE] = {};
Dan Albert1792c232015-05-18 13:06:53 -0700127 size_t failed_auth_attempts = 0;
128
Yabin Cuib5e11412017-03-10 16:01:01 -0800129 const std::string serial_name() const { return serial ? serial : "<unknown>"; }
David Purselld2acbd12015-12-02 15:14:31 -0800130 const std::string connection_state_name() const;
Dan Albert1792c232015-05-18 13:06:53 -0700131
132 void update_version(int version, size_t payload);
133 int get_protocol_version() const;
134 size_t get_max_payload() const;
135
David Pursell4e2fd362015-09-22 10:43:08 -0700136 const FeatureSet& features() const {
Dan Albert1792c232015-05-18 13:06:53 -0700137 return features_;
138 }
139
140 bool has_feature(const std::string& feature) const;
David Pursell4e2fd362015-09-22 10:43:08 -0700141
142 // Loads the transport's feature set from the given string.
143 void SetFeatures(const std::string& features_string);
Dan Albert1792c232015-05-18 13:06:53 -0700144
Yabin Cuib3298242015-08-28 15:09:44 -0700145 void AddDisconnect(adisconnect* disconnect);
146 void RemoveDisconnect(adisconnect* disconnect);
147 void RunDisconnects();
148
David Pursell3f902aa2016-03-01 08:58:26 -0800149 // Returns true if |target| matches this transport. A matching |target| can be any of:
150 // * <serial>
151 // * <devpath>
152 // * product:<product>
153 // * model:<model>
154 // * device:<device>
155 //
156 // If this is a local transport, serial will also match [tcp:|udp:]<hostname>[:port] targets.
157 // For example, serial "100.100.100.100:5555" would match any of:
158 // * 100.100.100.100
159 // * tcp:100.100.100.100
160 // * udp:100.100.100.100:5555
161 // This is to make it easier to use the same network target for both fastboot and adb.
162 bool MatchesTarget(const std::string& target) const;
163
Dan Albert1792c232015-05-18 13:06:53 -0700164private:
Yabin Cuib74c6492016-04-29 16:53:52 -0700165 int local_port_for_emulator_ = -1;
Yabin Cui7f274902016-04-18 11:22:34 -0700166 bool kicked_ = false;
167 void (*kick_func_)(atransport*) = nullptr;
Yabin Cuib5e11412017-03-10 16:01:01 -0800168 int (*write_func_)(apacket*, atransport*) = nullptr;
Yabin Cui7f274902016-04-18 11:22:34 -0700169
Dan Albert1792c232015-05-18 13:06:53 -0700170 // A set of features transmitted in the banner with the initial connection.
171 // This is stored in the banner as 'features=feature0,feature1,etc'.
172 FeatureSet features_;
173 int protocol_version;
174 size_t max_payload;
175
Yabin Cuib3298242015-08-28 15:09:44 -0700176 // A list of adisconnect callbacks called when the transport is kicked.
177 std::list<adisconnect*> disconnects_;
178
Yabin Cuib5e11412017-03-10 16:01:01 -0800179 std::atomic<ConnectionState> connection_state_;
Josh Gao3bd28792016-10-05 19:02:29 -0700180#if ADB_HOST
Josh Gao2e671202016-08-18 22:00:12 -0700181 std::deque<std::shared_ptr<RSA>> keys_;
Yabin Cuib5e11412017-03-10 16:01:01 -0800182 std::mutex write_msg_lock_;
183 bool has_send_connect_on_error_ = false;
Josh Gao3bd28792016-10-05 19:02:29 -0700184#endif
Elliott Hughes0aeb5052016-06-29 17:42:01 -0700185
Dan Albert1792c232015-05-18 13:06:53 -0700186 DISALLOW_COPY_AND_ASSIGN(atransport);
187};
188
Dan Albert76649012015-02-24 15:51:19 -0800189/*
190 * Obtain a transport from the available transports.
Elliott Hughes8d28e192015-10-07 14:55:10 -0700191 * If serial is non-null then only the device with that serial will be chosen.
192 * If multiple devices/emulators would match, *is_ambiguous (if non-null)
193 * is set to true and nullptr returned.
194 * If no suitable transport is found, error is set and nullptr returned.
Dan Albert76649012015-02-24 15:51:19 -0800195 */
Yabin Cuib5e11412017-03-10 16:01:01 -0800196atransport* acquire_one_transport(TransportType type, const char* serial, bool* is_ambiguous,
197 std::string* error_out, bool accept_any_state = false);
Dan Albert76649012015-02-24 15:51:19 -0800198void kick_transport(atransport* t);
Dan Albert76649012015-02-24 15:51:19 -0800199void update_transports(void);
200
Josh Gaofd713e52017-05-03 22:37:10 -0700201// Iterates across all of the current and pending transports.
202// Stops iteration and returns false if fn returns false, otherwise returns true.
203bool iterate_transports(std::function<bool(const atransport*)> fn);
204
Dan Albert76649012015-02-24 15:51:19 -0800205void init_transport_registration(void);
Casey Dahlin13a269e2016-06-23 14:19:37 -0700206void init_mdns_transport_discovery(void);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700207std::string list_transports(bool long_listing);
Dan Albert76649012015-02-24 15:51:19 -0800208atransport* find_transport(const char* serial);
Yabin Cuif4b99282015-08-27 12:03:11 -0700209void kick_all_tcp_devices();
Dan Albert76649012015-02-24 15:51:19 -0800210
211void register_usb_transport(usb_handle* h, const char* serial,
212 const char* devpath, unsigned writeable);
213
Casey Dahlin13a269e2016-06-23 14:19:37 -0700214/* Connect to a network address and register it as a device */
215void connect_device(const std::string& address, std::string* response);
216
Dan Albert76649012015-02-24 15:51:19 -0800217/* cause new transports to be init'd and added to the list */
218int register_socket_transport(int s, const char* serial, int port, int local);
219
Dan Albertdcd78a12015-05-18 16:43:57 -0700220// This should only be used for transports with connection_state == kCsNoPerm.
Dan Albert76649012015-02-24 15:51:19 -0800221void unregister_usb_transport(usb_handle* usb);
222
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100223int check_header(apacket* p, atransport* t);
Dan Albert76649012015-02-24 15:51:19 -0800224int check_data(apacket* p);
225
Dan Albert76649012015-02-24 15:51:19 -0800226void close_usb_devices();
Josh Gao22d2b3e2016-10-27 14:01:08 -0700227void close_usb_devices(std::function<bool(const atransport*)> predicate);
Dan Albert76649012015-02-24 15:51:19 -0800228
229void send_packet(apacket* p, atransport* t);
230
231asocket* create_device_tracker(void);
232
JP Abgrall408fa572011-03-16 15:57:42 -0700233#endif /* __TRANSPORT_H */