| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) 2012 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 Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG AUTH | 
| Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 19 | #include "adb.h" | 
| Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 20 | #include "adb_auth.h" | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 21 | #include "fdevent.h" | 
 | 22 | #include "sysdeps.h" | 
 | 23 | #include "transport.h" | 
| Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 24 |  | 
| Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 25 | #include <resolv.h> | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 26 | #include <stdio.h> | 
 | 27 | #include <string.h> | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 28 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 29 | #include <memory> | 
 | 30 |  | 
 | 31 | #include <android-base/file.h> | 
 | 32 | #include <android-base/strings.h> | 
 | 33 | #include <crypto_utils/android_pubkey.h> | 
| Mattias Nissler | 097b6bb | 2016-03-31 16:32:09 +0200 | [diff] [blame] | 34 | #include <openssl/obj_mac.h> | 
 | 35 | #include <openssl/rsa.h> | 
 | 36 | #include <openssl/sha.h> | 
 | 37 |  | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 38 | static fdevent listener_fde; | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 39 | static fdevent framework_fde; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 40 | static int framework_fd = -1; | 
 | 41 |  | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 42 | static void usb_disconnected(void* unused, atransport* t); | 
| Yabin Cui | b329824 | 2015-08-28 15:09:44 -0700 | [diff] [blame] | 43 | static struct adisconnect usb_disconnect = { usb_disconnected, nullptr}; | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 44 | static atransport* usb_transport; | 
 | 45 | static bool needs_retry = false; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 46 |  | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 47 | bool auth_required = true; | 
 | 48 |  | 
| Josh Gao | 06d61d4 | 2016-10-06 13:31:44 -0700 | [diff] [blame] | 49 | bool adbd_auth_verify(const char* token, size_t token_size, const char* sig, int sig_len) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 50 |     static constexpr const char* key_paths[] = { "/adb_keys", "/data/misc/adb/adb_keys", nullptr }; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 51 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 52 |     for (const auto& path : key_paths) { | 
 | 53 |         if (access(path, R_OK) == 0) { | 
 | 54 |             LOG(INFO) << "Loading keys from " << path; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 55 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 56 |             std::string content; | 
 | 57 |             if (!android::base::ReadFileToString(path, &content)) { | 
 | 58 |                 PLOG(ERROR) << "Couldn't read " << path; | 
 | 59 |                 continue; | 
 | 60 |             } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 61 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 62 |             for (const auto& line : android::base::Split(content, "\n")) { | 
 | 63 |                 // TODO: do we really have to support both ' ' and '\t'? | 
 | 64 |                 char* sep = strpbrk(const_cast<char*>(line.c_str()), " \t"); | 
 | 65 |                 if (sep) *sep = '\0'; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 66 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 67 |                 // b64_pton requires one additional byte in the target buffer for | 
 | 68 |                 // decoding to succeed. See http://b/28035006 for details. | 
 | 69 |                 uint8_t keybuf[ANDROID_PUBKEY_ENCODED_SIZE + 1]; | 
 | 70 |                 if (__b64_pton(line.c_str(), keybuf, sizeof(keybuf)) != ANDROID_PUBKEY_ENCODED_SIZE) { | 
 | 71 |                     LOG(ERROR) << "Invalid base64 key " << line.c_str() << " in " << path; | 
 | 72 |                     continue; | 
 | 73 |                 } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 74 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 75 |                 RSA* key = nullptr; | 
 | 76 |                 if (!android_pubkey_decode(keybuf, ANDROID_PUBKEY_ENCODED_SIZE, &key)) { | 
 | 77 |                     LOG(ERROR) << "Failed to parse key " << line.c_str() << " in " << path; | 
 | 78 |                     continue; | 
 | 79 |                 } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 80 |  | 
| Josh Gao | 06d61d4 | 2016-10-06 13:31:44 -0700 | [diff] [blame] | 81 |                 bool verified = | 
 | 82 |                     (RSA_verify(NID_sha1, reinterpret_cast<const uint8_t*>(token), token_size, | 
 | 83 |                                 reinterpret_cast<const uint8_t*>(sig), sig_len, key) == 1); | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 84 |                 RSA_free(key); | 
 | 85 |                 if (verified) return true; | 
 | 86 |             } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 87 |         } | 
 | 88 |     } | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 89 |     return false; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 90 | } | 
 | 91 |  | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 92 | static bool adbd_auth_generate_token(void* token, size_t token_size) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 93 |     FILE* fp = fopen("/dev/urandom", "re"); | 
 | 94 |     if (!fp) return false; | 
 | 95 |     bool okay = (fread(token, token_size, 1, fp) == 1); | 
 | 96 |     fclose(fp); | 
 | 97 |     return okay; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 98 | } | 
 | 99 |  | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 100 | static void usb_disconnected(void* unused, atransport* t) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 101 |     LOG(INFO) << "USB disconnect"; | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 102 |     usb_transport = NULL; | 
 | 103 |     needs_retry = false; | 
 | 104 | } | 
 | 105 |  | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 106 | static void framework_disconnected() { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 107 |     LOG(INFO) << "Framework disconnect"; | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 108 |     fdevent_remove(&framework_fde); | 
 | 109 |     framework_fd = -1; | 
 | 110 | } | 
 | 111 |  | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 112 | static void adbd_auth_event(int fd, unsigned events, void*) { | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 113 |     if (events & FDE_READ) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 114 |         char response[2]; | 
 | 115 |         int ret = unix_read(fd, response, sizeof(response)); | 
| Vince Harron | af436b1 | 2014-09-25 21:51:15 -0700 | [diff] [blame] | 116 |         if (ret <= 0) { | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 117 |             framework_disconnected(); | 
 | 118 |         } else if (ret == 2 && response[0] == 'O' && response[1] == 'K') { | 
 | 119 |             if (usb_transport) { | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 120 |                 adbd_auth_verified(usb_transport); | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 121 |             } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 122 |         } | 
 | 123 |     } | 
 | 124 | } | 
 | 125 |  | 
| Josh Gao | 06d61d4 | 2016-10-06 13:31:44 -0700 | [diff] [blame] | 126 | void adbd_auth_confirm_key(const char* key, size_t len, atransport* t) { | 
| Benoit Goby | b66356c | 2013-04-01 17:39:06 -0700 | [diff] [blame] | 127 |     if (!usb_transport) { | 
 | 128 |         usb_transport = t; | 
| Yabin Cui | b329824 | 2015-08-28 15:09:44 -0700 | [diff] [blame] | 129 |         t->AddDisconnect(&usb_disconnect); | 
| Benoit Goby | b66356c | 2013-04-01 17:39:06 -0700 | [diff] [blame] | 130 |     } | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 131 |  | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 132 |     if (framework_fd < 0) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 133 |         LOG(ERROR) << "Client not connected"; | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 134 |         needs_retry = true; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 135 |         return; | 
 | 136 |     } | 
 | 137 |  | 
 | 138 |     if (key[len - 1] != '\0') { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 139 |         LOG(ERROR) << "Key must be a null-terminated string"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 140 |         return; | 
 | 141 |     } | 
 | 142 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 143 |     char msg[MAX_PAYLOAD_V1]; | 
 | 144 |     int msg_len = snprintf(msg, sizeof(msg), "PK%s", key); | 
 | 145 |     if (msg_len >= static_cast<int>(sizeof(msg))) { | 
 | 146 |         LOG(ERROR) << "Key too long (" << msg_len << ")"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 147 |         return; | 
 | 148 |     } | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 149 |     LOG(DEBUG) << "Sending '" << msg << "'"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 150 |  | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 151 |     if (unix_write(framework_fd, msg, msg_len) == -1) { | 
 | 152 |         PLOG(ERROR) << "Failed to write PK"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 153 |         return; | 
 | 154 |     } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 155 | } | 
 | 156 |  | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 157 | static void adbd_auth_listener(int fd, unsigned events, void* data) { | 
| Josh Gao | 78e1eb1 | 2016-08-23 15:41:56 -0700 | [diff] [blame] | 158 |     int s = adb_socket_accept(fd, nullptr, nullptr); | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 159 |     if (s < 0) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 160 |         PLOG(ERROR) << "Failed to accept"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 161 |         return; | 
 | 162 |     } | 
 | 163 |  | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 164 |     if (framework_fd >= 0) { | 
| Josh Gao | 443a52c | 2016-02-25 14:11:32 -0800 | [diff] [blame] | 165 |         LOG(WARNING) << "adb received framework auth socket connection again"; | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 166 |         framework_disconnected(); | 
 | 167 |     } | 
 | 168 |  | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 169 |     framework_fd = s; | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 170 |     fdevent_install(&framework_fde, framework_fd, adbd_auth_event, nullptr); | 
| Josh Gao | 9f48611 | 2016-02-23 18:05:57 -0800 | [diff] [blame] | 171 |     fdevent_add(&framework_fde, FDE_READ); | 
| Benoit Goby | 045a4a9 | 2013-01-15 19:59:14 -0800 | [diff] [blame] | 172 |  | 
 | 173 |     if (needs_retry) { | 
 | 174 |         needs_retry = false; | 
 | 175 |         send_auth_request(usb_transport); | 
 | 176 |     } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 177 | } | 
 | 178 |  | 
| Pavel Labath | 64d9adc | 2015-03-17 11:03:36 -0700 | [diff] [blame] | 179 | void adbd_cloexec_auth_socket() { | 
 | 180 |     int fd = android_get_control_socket("adbd"); | 
 | 181 |     if (fd == -1) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 182 |         PLOG(ERROR) << "Failed to get adbd socket"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 183 |         return; | 
 | 184 |     } | 
| Nick Kralevich | fe8d7f4 | 2014-07-18 20:57:35 -0700 | [diff] [blame] | 185 |     fcntl(fd, F_SETFD, FD_CLOEXEC); | 
| Pavel Labath | 64d9adc | 2015-03-17 11:03:36 -0700 | [diff] [blame] | 186 | } | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 187 |  | 
| Pavel Labath | 64d9adc | 2015-03-17 11:03:36 -0700 | [diff] [blame] | 188 | void adbd_auth_init(void) { | 
 | 189 |     int fd = android_get_control_socket("adbd"); | 
 | 190 |     if (fd == -1) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 191 |         PLOG(ERROR) << "Failed to get adbd socket"; | 
| Pavel Labath | 64d9adc | 2015-03-17 11:03:36 -0700 | [diff] [blame] | 192 |         return; | 
 | 193 |     } | 
 | 194 |  | 
 | 195 |     if (listen(fd, 4) == -1) { | 
| Elliott Hughes | 0aeb505 | 2016-06-29 17:42:01 -0700 | [diff] [blame] | 196 |         PLOG(ERROR) << "Failed to listen on '" << fd << "'"; | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 197 |         return; | 
 | 198 |     } | 
 | 199 |  | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 200 |     fdevent_install(&listener_fde, fd, adbd_auth_listener, NULL); | 
| Benoit Goby | d5fcafa | 2012-04-12 12:23:49 -0700 | [diff] [blame] | 201 |     fdevent_add(&listener_fde, FDE_READ); | 
 | 202 | } | 
| Josh Gao | 3bd2879 | 2016-10-05 19:02:29 -0700 | [diff] [blame] | 203 |  | 
 | 204 | void send_auth_request(atransport* t) { | 
 | 205 |     LOG(INFO) << "Calling send_auth_request..."; | 
 | 206 |  | 
 | 207 |     if (!adbd_auth_generate_token(t->token, sizeof(t->token))) { | 
 | 208 |         PLOG(ERROR) << "Error generating token"; | 
 | 209 |         return; | 
 | 210 |     } | 
 | 211 |  | 
 | 212 |     apacket* p = get_apacket(); | 
 | 213 |     memcpy(p->data, t->token, sizeof(t->token)); | 
 | 214 |     p->msg.command = A_AUTH; | 
 | 215 |     p->msg.arg0 = ADB_AUTH_TOKEN; | 
 | 216 |     p->msg.data_length = sizeof(t->token); | 
 | 217 |     send_packet(p, t); | 
 | 218 | } | 
 | 219 |  | 
 | 220 | void adbd_auth_verified(atransport *t) | 
 | 221 | { | 
 | 222 |     handle_online(t); | 
 | 223 |     send_connect(t); | 
 | 224 | } |