blob: d9845b608260e5311393362352a1ef5f2b17b40b [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 Cuib3298242015-08-28 15:09:44 -070022#include <list>
Elliott Hughes7be29c82015-04-16 22:54:44 -070023#include <string>
Dan Albert1792c232015-05-18 13:06:53 -070024#include <unordered_set>
Dan Albert76649012015-02-24 15:51:19 -080025
Elliott Hughes7be29c82015-04-16 22:54:44 -070026#include "adb.h"
Dan Albert630b9af2014-11-24 23:34:35 -080027
Dan Albert1792c232015-05-18 13:06:53 -070028typedef std::unordered_set<std::string> FeatureSet;
29
30const FeatureSet& supported_features();
31
David Pursell4e2fd362015-09-22 10:43:08 -070032// Encodes and decodes FeatureSet objects into human-readable strings.
33std::string FeatureSetToString(const FeatureSet& features);
34FeatureSet StringToFeatureSet(const std::string& features_string);
35
David Pursell70ef7b42015-09-30 13:35:42 -070036// Returns true if both local features and |feature_set| support |feature|.
37bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature);
38
David Pursell4e2fd362015-09-22 10:43:08 -070039// Do not use any of [:;=,] in feature strings, they have special meaning
40// in the connection banner.
Todd Kennedy6fa848a2015-11-03 16:53:08 -080041extern const char* const kFeatureShell2;
42// The 'cmd' command is available
43extern const char* const kFeatureCmd;
David Pursell0955c662015-08-31 10:42:13 -070044
Dan Albert1792c232015-05-18 13:06:53 -070045class atransport {
46public:
47 // TODO(danalbert): We expose waaaaaaay too much stuff because this was
48 // historically just a struct, but making the whole thing a more idiomatic
49 // class in one go is a very large change. Given how bad our testing is,
50 // it's better to do this piece by piece.
51
52 atransport() {
53 auth_fde = {};
54 transport_fde = {};
55 protocol_version = A_VERSION;
56 max_payload = MAX_PAYLOAD;
57 }
58
59 virtual ~atransport() {}
60
61 int (*read_from_remote)(apacket* p, atransport* t) = nullptr;
62 int (*write_to_remote)(apacket* p, atransport* t) = nullptr;
63 void (*close)(atransport* t) = nullptr;
64 void (*kick)(atransport* t) = nullptr;
65
66 int fd = -1;
67 int transport_socket = -1;
68 fdevent transport_fde;
Yabin Cuif4b99282015-08-27 12:03:11 -070069 size_t ref_count = 0;
Dan Albert1792c232015-05-18 13:06:53 -070070 uint32_t sync_token = 0;
71 ConnectionState connection_state = kCsOffline;
72 bool online = false;
73 TransportType type = kTransportAny;
74
75 // USB handle or socket fd as needed.
76 usb_handle* usb = nullptr;
77 int sfd = -1;
78
79 // Used to identify transports for clients.
80 char* serial = nullptr;
81 char* product = nullptr;
82 char* model = nullptr;
83 char* device = nullptr;
84 char* devpath = nullptr;
85 int adb_port = -1; // Use for emulators (local transport)
86 bool kicked = false;
87
Dan Albert1792c232015-05-18 13:06:53 -070088 void* key = nullptr;
89 unsigned char token[TOKEN_SIZE] = {};
90 fdevent auth_fde;
91 size_t failed_auth_attempts = 0;
92
93 const char* connection_state_name() const;
94
95 void update_version(int version, size_t payload);
96 int get_protocol_version() const;
97 size_t get_max_payload() const;
98
David Pursell4e2fd362015-09-22 10:43:08 -070099 const FeatureSet& features() const {
Dan Albert1792c232015-05-18 13:06:53 -0700100 return features_;
101 }
102
103 bool has_feature(const std::string& feature) const;
David Pursell4e2fd362015-09-22 10:43:08 -0700104
105 // Loads the transport's feature set from the given string.
106 void SetFeatures(const std::string& features_string);
Dan Albert1792c232015-05-18 13:06:53 -0700107
Yabin Cuib3298242015-08-28 15:09:44 -0700108 void AddDisconnect(adisconnect* disconnect);
109 void RemoveDisconnect(adisconnect* disconnect);
110 void RunDisconnects();
111
Dan Albert1792c232015-05-18 13:06:53 -0700112private:
113 // A set of features transmitted in the banner with the initial connection.
114 // This is stored in the banner as 'features=feature0,feature1,etc'.
115 FeatureSet features_;
116 int protocol_version;
117 size_t max_payload;
118
Yabin Cuib3298242015-08-28 15:09:44 -0700119 // A list of adisconnect callbacks called when the transport is kicked.
120 std::list<adisconnect*> disconnects_;
121
Dan Albert1792c232015-05-18 13:06:53 -0700122 DISALLOW_COPY_AND_ASSIGN(atransport);
123};
124
Dan Albert76649012015-02-24 15:51:19 -0800125/*
126 * Obtain a transport from the available transports.
Elliott Hughes8d28e192015-10-07 14:55:10 -0700127 * If serial is non-null then only the device with that serial will be chosen.
128 * If multiple devices/emulators would match, *is_ambiguous (if non-null)
129 * is set to true and nullptr returned.
130 * If no suitable transport is found, error is set and nullptr returned.
Dan Albert76649012015-02-24 15:51:19 -0800131 */
Elliott Hughes8d28e192015-10-07 14:55:10 -0700132atransport* acquire_one_transport(TransportType type, const char* serial,
133 bool* is_ambiguous, std::string* error_out);
Dan Albert76649012015-02-24 15:51:19 -0800134void kick_transport(atransport* t);
Dan Albert76649012015-02-24 15:51:19 -0800135void update_transports(void);
136
Dan Albert76649012015-02-24 15:51:19 -0800137void init_transport_registration(void);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700138std::string list_transports(bool long_listing);
Dan Albert76649012015-02-24 15:51:19 -0800139atransport* find_transport(const char* serial);
Yabin Cuif4b99282015-08-27 12:03:11 -0700140void kick_all_tcp_devices();
Dan Albert76649012015-02-24 15:51:19 -0800141
142void register_usb_transport(usb_handle* h, const char* serial,
143 const char* devpath, unsigned writeable);
144
145/* cause new transports to be init'd and added to the list */
146int register_socket_transport(int s, const char* serial, int port, int local);
147
Dan Albertdcd78a12015-05-18 16:43:57 -0700148// This should only be used for transports with connection_state == kCsNoPerm.
Dan Albert76649012015-02-24 15:51:19 -0800149void unregister_usb_transport(usb_handle* usb);
150
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100151int check_header(apacket* p, atransport* t);
Dan Albert76649012015-02-24 15:51:19 -0800152int check_data(apacket* p);
153
154/* for MacOS X cleanup */
155void close_usb_devices();
156
157void send_packet(apacket* p, atransport* t);
158
159asocket* create_device_tracker(void);
160
JP Abgrall408fa572011-03-16 15:57:42 -0700161#endif /* __TRANSPORT_H */