blob: c3f1fe07d3f3ef011553117dbba55b012b032e6f [file] [log] [blame]
Benoit Goby2cc19e42012-04-12 12:23:49 -07001/*
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 Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG AUTH
Dan Albertdb6fe642015-03-19 15:21:08 -070018
Josh Gao22cb70b2016-08-18 22:00:12 -070019#include <dirent.h>
Benoit Goby2cc19e42012-04-12 12:23:49 -070020#include <stdio.h>
Christopher Ferris054d1702014-11-06 14:34:24 -080021#include <stdlib.h>
Dan Albertdb6fe642015-03-19 15:21:08 -070022#include <string.h>
Josh Gao22cb70b2016-08-18 22:00:12 -070023#if defined(__linux__)
24#include <sys/inotify.h>
25#endif
Benoit Goby2cc19e42012-04-12 12:23:49 -070026
Josh Gao22cb70b2016-08-18 22:00:12 -070027#include <map>
Elliott Hughes801066a2016-06-29 17:42:01 -070028#include <mutex>
Josh Gao22cb70b2016-08-18 22:00:12 -070029#include <set>
30#include <string>
Benoit Goby2cc19e42012-04-12 12:23:49 -070031
David Pursellc573d522016-01-27 08:52:53 -080032#include <android-base/errors.h>
Elliott Hughese0a6e2a2016-05-26 22:43:19 -070033#include <android-base/file.h>
Yurii Zubrytskyi09ecaa52016-05-26 09:46:10 -070034#include <android-base/stringprintf.h>
Elliott Hughesf55ead92015-12-04 22:00:26 -080035#include <android-base/strings.h>
Mattias Nisslera947b492016-03-31 16:32:09 +020036#include <crypto_utils/android_pubkey.h>
Elliott Hughesab942fd2016-06-21 16:50:48 -070037#include <openssl/base64.h>
Benoit Goby2cc19e42012-04-12 12:23:49 -070038#include <openssl/evp.h>
39#include <openssl/objects.h>
40#include <openssl/pem.h>
41#include <openssl/rsa.h>
42#include <openssl/sha.h>
43
Josh Gao22cb70b2016-08-18 22:00:12 -070044#include "adb.h"
45#include "adb_auth.h"
46#include "adb_utils.h"
47#include "sysdeps.h"
Josh Gaoeac20582016-10-05 19:02:29 -070048#include "transport.h"
Benoit Goby2cc19e42012-04-12 12:23:49 -070049
Josh Gao22cb70b2016-08-18 22:00:12 -070050static std::mutex& g_keys_mutex = *new std::mutex;
51static std::map<std::string, std::shared_ptr<RSA>>& g_keys =
52 *new std::map<std::string, std::shared_ptr<RSA>>;
53static std::map<int, std::string>& g_monitored_paths = *new std::map<int, std::string>;
Benoit Goby2cc19e42012-04-12 12:23:49 -070054
Elliott Hughesab942fd2016-06-21 16:50:48 -070055static std::string get_user_info() {
Elliott Hughes801066a2016-06-29 17:42:01 -070056 LOG(INFO) << "get_user_info...";
57
Elliott Hughesab942fd2016-06-21 16:50:48 -070058 std::string hostname;
59 if (getenv("HOSTNAME")) hostname = getenv("HOSTNAME");
60#if !defined(_WIN32)
61 char buf[64];
62 if (hostname.empty() && gethostname(buf, sizeof(buf)) != -1) hostname = buf;
Benoit Goby2cc19e42012-04-12 12:23:49 -070063#endif
Elliott Hughesab942fd2016-06-21 16:50:48 -070064 if (hostname.empty()) hostname = "unknown";
Benoit Goby2cc19e42012-04-12 12:23:49 -070065
Elliott Hughesab942fd2016-06-21 16:50:48 -070066 std::string username;
67 if (getenv("LOGNAME")) username = getenv("LOGNAME");
Benoit Goby2cc19e42012-04-12 12:23:49 -070068#if !defined _WIN32 && !defined ADB_HOST_ON_TARGET
Elliott Hughesab942fd2016-06-21 16:50:48 -070069 if (username.empty() && getlogin()) username = getlogin();
Benoit Goby2cc19e42012-04-12 12:23:49 -070070#endif
Elliott Hughesab942fd2016-06-21 16:50:48 -070071 if (username.empty()) hostname = "unknown";
Benoit Goby2cc19e42012-04-12 12:23:49 -070072
Elliott Hughesab942fd2016-06-21 16:50:48 -070073 return " " + username + "@" + hostname;
Benoit Goby2cc19e42012-04-12 12:23:49 -070074}
75
Elliott Hughesab942fd2016-06-21 16:50:48 -070076static bool write_public_keyfile(RSA* private_key, const std::string& private_key_path) {
Elliott Hughes801066a2016-06-29 17:42:01 -070077 LOG(INFO) << "write_public_keyfile...";
78
Mattias Nisslera947b492016-03-31 16:32:09 +020079 uint8_t binary_key_data[ANDROID_PUBKEY_ENCODED_SIZE];
Elliott Hughesab942fd2016-06-21 16:50:48 -070080 if (!android_pubkey_encode(private_key, binary_key_data, sizeof(binary_key_data))) {
81 LOG(ERROR) << "Failed to convert to public key";
82 return false;
Benoit Goby2cc19e42012-04-12 12:23:49 -070083 }
84
Elliott Hughesab942fd2016-06-21 16:50:48 -070085 size_t base64_key_length;
Mattias Nisslera947b492016-03-31 16:32:09 +020086 if (!EVP_EncodedLength(&base64_key_length, sizeof(binary_key_data))) {
Elliott Hughesab942fd2016-06-21 16:50:48 -070087 LOG(ERROR) << "Public key too large to base64 encode";
88 return false;
Adam Langley29f6cdb2014-09-03 14:34:47 -070089 }
Benoit Goby2cc19e42012-04-12 12:23:49 -070090
Elliott Hughesab942fd2016-06-21 16:50:48 -070091 std::string content;
92 content.resize(base64_key_length);
93 base64_key_length = EVP_EncodeBlock(reinterpret_cast<uint8_t*>(&content[0]), binary_key_data,
Mattias Nisslera947b492016-03-31 16:32:09 +020094 sizeof(binary_key_data));
Benoit Goby2cc19e42012-04-12 12:23:49 -070095
Elliott Hughesab942fd2016-06-21 16:50:48 -070096 content += get_user_info();
97
98 std::string path(private_key_path + ".pub");
99 if (!android::base::WriteStringToFile(content, path)) {
100 PLOG(ERROR) << "Failed to write public key to '" << path << "'";
101 return false;
Mattias Nisslera947b492016-03-31 16:32:09 +0200102 }
103
Elliott Hughesab942fd2016-06-21 16:50:48 -0700104 return true;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700105}
106
Elliott Hughes801066a2016-06-29 17:42:01 -0700107static int generate_key(const std::string& file) {
108 LOG(INFO) << "generate_key(" << file << ")...";
109
Benoit Gobycb37c502012-08-31 12:14:21 -0700110 mode_t old_mask;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700111 FILE *f = NULL;
112 int ret = 0;
113
Elliott Hughes801066a2016-06-29 17:42:01 -0700114 EVP_PKEY* pkey = EVP_PKEY_new();
115 BIGNUM* exponent = BN_new();
116 RSA* rsa = RSA_new();
Benoit Goby2cc19e42012-04-12 12:23:49 -0700117 if (!pkey || !exponent || !rsa) {
Elliott Hughes801066a2016-06-29 17:42:01 -0700118 LOG(ERROR) << "Failed to allocate key";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700119 goto out;
120 }
121
122 BN_set_word(exponent, RSA_F4);
123 RSA_generate_key_ex(rsa, 2048, exponent, NULL);
124 EVP_PKEY_set1_RSA(pkey, rsa);
125
Benoit Gobycb37c502012-08-31 12:14:21 -0700126 old_mask = umask(077);
127
Elliott Hughes801066a2016-06-29 17:42:01 -0700128 f = fopen(file.c_str(), "w");
Benoit Goby2cc19e42012-04-12 12:23:49 -0700129 if (!f) {
Elliott Hughes801066a2016-06-29 17:42:01 -0700130 PLOG(ERROR) << "Failed to open " << file;
Benoit Gobycb37c502012-08-31 12:14:21 -0700131 umask(old_mask);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700132 goto out;
133 }
134
Benoit Gobycb37c502012-08-31 12:14:21 -0700135 umask(old_mask);
136
Benoit Goby2cc19e42012-04-12 12:23:49 -0700137 if (!PEM_write_PrivateKey(f, pkey, NULL, NULL, 0, NULL, NULL)) {
Yabin Cui815ad882015-09-02 17:44:28 -0700138 D("Failed to write key");
Benoit Goby2cc19e42012-04-12 12:23:49 -0700139 goto out;
140 }
141
142 if (!write_public_keyfile(rsa, file)) {
Yabin Cui815ad882015-09-02 17:44:28 -0700143 D("Failed to write public key");
Benoit Goby2cc19e42012-04-12 12:23:49 -0700144 goto out;
145 }
146
147 ret = 1;
148
149out:
Elliott Hughes801066a2016-06-29 17:42:01 -0700150 if (f) fclose(f);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700151 EVP_PKEY_free(pkey);
152 RSA_free(rsa);
153 BN_free(exponent);
154 return ret;
155}
156
Josh Gao22cb70b2016-08-18 22:00:12 -0700157static std::string hash_key(RSA* key) {
158 unsigned char* pubkey = nullptr;
159 int len = i2d_RSA_PUBKEY(key, &pubkey);
160 if (len < 0) {
161 LOG(ERROR) << "failed to encode RSA public key";
162 return std::string();
163 }
164
165 std::string result;
166 result.resize(SHA256_DIGEST_LENGTH);
167 SHA256(pubkey, len, reinterpret_cast<unsigned char*>(&result[0]));
168 OPENSSL_free(pubkey);
169 return result;
170}
171
172static bool read_key_file(const std::string& file) {
173 LOG(INFO) << "read_key_file '" << file << "'...";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700174
Elliott Hughes801066a2016-06-29 17:42:01 -0700175 std::unique_ptr<FILE, decltype(&fclose)> fp(fopen(file.c_str(), "r"), fclose);
Elliott Hughesfb2ba512015-04-24 23:02:00 -0700176 if (!fp) {
Elliott Hughes801066a2016-06-29 17:42:01 -0700177 PLOG(ERROR) << "Failed to open '" << file << "'";
178 return false;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700179 }
180
Elliott Hughes801066a2016-06-29 17:42:01 -0700181 RSA* key = RSA_new();
182 if (!PEM_read_RSAPrivateKey(fp.get(), &key, nullptr, nullptr)) {
183 LOG(ERROR) << "Failed to read key";
184 RSA_free(key);
185 return false;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700186 }
187
Josh Gao22cb70b2016-08-18 22:00:12 -0700188 std::lock_guard<std::mutex> lock(g_keys_mutex);
189 std::string fingerprint = hash_key(key);
190 if (g_keys.find(fingerprint) != g_keys.end()) {
191 LOG(INFO) << "ignoring already-loaded key: " << file;
192 RSA_free(key);
193 } else {
194 g_keys[fingerprint] = std::shared_ptr<RSA>(key, RSA_free);
195 }
196
Elliott Hughes801066a2016-06-29 17:42:01 -0700197 return true;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700198}
199
Josh Gao22cb70b2016-08-18 22:00:12 -0700200static bool read_keys(const std::string& path, bool allow_dir = true) {
201 LOG(INFO) << "read_keys '" << path << "'...";
202
203 struct stat st;
204 if (stat(path.c_str(), &st) != 0) {
205 PLOG(ERROR) << "failed to stat '" << path << "'";
206 return false;
207 }
208
209 if (S_ISREG(st.st_mode)) {
Josh Gao22cb70b2016-08-18 22:00:12 -0700210 return read_key_file(path);
211 } else if (S_ISDIR(st.st_mode)) {
212 if (!allow_dir) {
213 // inotify isn't recursive. It would break expectations to load keys in nested
214 // directories but not monitor them for new keys.
215 LOG(WARNING) << "refusing to recurse into directory '" << path << "'";
216 return false;
217 }
218
219 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(path.c_str()), closedir);
220 if (!dir) {
221 PLOG(ERROR) << "failed to open directory '" << path << "'";
222 return false;
223 }
224
225 bool result = false;
226 while (struct dirent* dent = readdir(dir.get())) {
227 std::string name = dent->d_name;
228
229 // We can't use dent->d_type here because it's not available on Windows.
230 if (name == "." || name == "..") {
231 continue;
232 }
233
Josh Gaoe9e7bac2016-12-14 16:59:29 -0800234 if (!android::base::EndsWith(name, ".adb_key")) {
235 LOG(INFO) << "skipping non-adb_key '" << path << "/" << name << "'";
236 continue;
237 }
238
239 result |= read_key_file((path + OS_PATH_SEPARATOR + name));
Josh Gao22cb70b2016-08-18 22:00:12 -0700240 }
241 return result;
242 }
243
244 LOG(ERROR) << "unexpected type for '" << path << "': 0x" << std::hex << st.st_mode;
245 return false;
246}
247
Elliott Hughes801066a2016-06-29 17:42:01 -0700248static std::string get_user_key_path() {
Josh Gao62ff9d42016-08-30 15:23:35 -0700249 return adb_get_android_dir_path() + OS_PATH_SEPARATOR + "adbkey";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700250}
251
Elliott Hughes801066a2016-06-29 17:42:01 -0700252static bool get_user_key() {
253 std::string path = get_user_key_path();
254 if (path.empty()) {
255 PLOG(ERROR) << "Error getting user key filename";
256 return false;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700257 }
258
Elliott Hughes801066a2016-06-29 17:42:01 -0700259 struct stat buf;
260 if (stat(path.c_str(), &buf) == -1) {
261 LOG(INFO) << "User key '" << path << "' does not exist...";
Dan Albert3d978e62015-07-09 20:35:09 +0000262 if (!generate_key(path)) {
Elliott Hughes801066a2016-06-29 17:42:01 -0700263 LOG(ERROR) << "Failed to generate new key";
264 return false;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700265 }
266 }
267
Josh Gao22cb70b2016-08-18 22:00:12 -0700268 return read_key_file(path);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700269}
270
Josh Gao22cb70b2016-08-18 22:00:12 -0700271static std::set<std::string> get_vendor_keys() {
Elliott Hughesfb2ba512015-04-24 23:02:00 -0700272 const char* adb_keys_path = getenv("ADB_VENDOR_KEYS");
273 if (adb_keys_path == nullptr) {
Josh Gao22cb70b2016-08-18 22:00:12 -0700274 return std::set<std::string>();
Elliott Hughesfb2ba512015-04-24 23:02:00 -0700275 }
Benoit Goby2cc19e42012-04-12 12:23:49 -0700276
Josh Gao22cb70b2016-08-18 22:00:12 -0700277 std::set<std::string> result;
Elliott Hughes85952832015-10-07 15:59:35 -0700278 for (const auto& path : android::base::Split(adb_keys_path, ENV_PATH_SEPARATOR_STR)) {
Josh Gao22cb70b2016-08-18 22:00:12 -0700279 result.emplace(path);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700280 }
Josh Gao22cb70b2016-08-18 22:00:12 -0700281 return result;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700282}
283
Josh Gao22cb70b2016-08-18 22:00:12 -0700284std::deque<std::shared_ptr<RSA>> adb_auth_get_private_keys() {
285 std::deque<std::shared_ptr<RSA>> result;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700286
Josh Gao22cb70b2016-08-18 22:00:12 -0700287 // Copy all the currently known keys.
288 std::lock_guard<std::mutex> lock(g_keys_mutex);
289 for (const auto& it : g_keys) {
290 result.push_back(it.second);
Elliott Hughes801066a2016-06-29 17:42:01 -0700291 }
292
293 // Add a sentinel to the list. Our caller uses this to mean "out of private keys,
294 // but try using the public key" (the empty deque could otherwise mean this _or_
295 // that this function hasn't been called yet to request the keys).
296 result.push_back(nullptr);
297
298 return result;
299}
300
Josh Gao67ac3792016-10-06 13:31:44 -0700301static int adb_auth_sign(RSA* key, const char* token, size_t token_size, char* sig) {
Sami Tolvanenb92a35c2015-01-27 16:48:35 +0000302 if (token_size != TOKEN_SIZE) {
Yabin Cui815ad882015-09-02 17:44:28 -0700303 D("Unexpected token size %zd", token_size);
Sami Tolvanenb92a35c2015-01-27 16:48:35 +0000304 return 0;
305 }
306
Elliott Hughes801066a2016-06-29 17:42:01 -0700307 unsigned int len;
Josh Gao67ac3792016-10-06 13:31:44 -0700308 if (!RSA_sign(NID_sha1, reinterpret_cast<const uint8_t*>(token), token_size,
309 reinterpret_cast<uint8_t*>(sig), &len, key)) {
Benoit Goby2cc19e42012-04-12 12:23:49 -0700310 return 0;
311 }
312
Yabin Cui815ad882015-09-02 17:44:28 -0700313 D("adb_auth_sign len=%d", len);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700314 return (int)len;
315}
316
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700317std::string adb_auth_get_userkey() {
Elliott Hughes801066a2016-06-29 17:42:01 -0700318 std::string path = get_user_key_path();
319 if (path.empty()) {
320 PLOG(ERROR) << "Error getting user key filename";
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700321 return "";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700322 }
Elliott Hughes801066a2016-06-29 17:42:01 -0700323 path += ".pub";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700324
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700325 std::string content;
326 if (!android::base::ReadFileToString(path, &content)) {
Elliott Hughes801066a2016-06-29 17:42:01 -0700327 PLOG(ERROR) << "Can't load '" << path << "'";
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700328 return "";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700329 }
Elliott Hughese0a6e2a2016-05-26 22:43:19 -0700330 return content;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700331}
332
Nick Kralevich6183c962014-11-13 15:17:29 -0800333int adb_auth_keygen(const char* filename) {
Nick Kralevich6183c962014-11-13 15:17:29 -0800334 return (generate_key(filename) == 0);
335}
336
Josh Gao22cb70b2016-08-18 22:00:12 -0700337#if defined(__linux__)
338static void adb_auth_inotify_update(int fd, unsigned fd_event, void*) {
339 LOG(INFO) << "adb_auth_inotify_update called";
340 if (!(fd_event & FDE_READ)) {
341 return;
342 }
343
344 char buf[sizeof(struct inotify_event) + NAME_MAX + 1];
345 while (true) {
346 ssize_t rc = TEMP_FAILURE_RETRY(unix_read(fd, buf, sizeof(buf)));
347 if (rc == -1) {
348 if (errno == EAGAIN) {
349 LOG(INFO) << "done reading inotify fd";
350 break;
351 }
352 PLOG(FATAL) << "read of inotify event failed";
353 }
354
355 // The read potentially returned multiple events.
356 char* start = buf;
357 char* end = buf + rc;
358
359 while (start < end) {
360 inotify_event* event = reinterpret_cast<inotify_event*>(start);
361 auto root_it = g_monitored_paths.find(event->wd);
362 if (root_it == g_monitored_paths.end()) {
363 LOG(FATAL) << "observed inotify event for unmonitored path, wd = " << event->wd;
364 }
365
366 std::string path = root_it->second;
367 if (event->len > 0) {
368 path += '/';
369 path += event->name;
370 }
371
372 if (event->mask & (IN_CREATE | IN_MOVED_TO)) {
373 if (event->mask & IN_ISDIR) {
374 LOG(INFO) << "ignoring new directory at '" << path << "'";
375 } else {
376 LOG(INFO) << "observed new file at '" << path << "'";
377 read_keys(path, false);
378 }
379 } else {
380 LOG(WARNING) << "unmonitored event for " << path << ": 0x" << std::hex
381 << event->mask;
382 }
383
384 start += sizeof(struct inotify_event) + event->len;
385 }
386 }
387}
388
389static void adb_auth_inotify_init(const std::set<std::string>& paths) {
390 LOG(INFO) << "adb_auth_inotify_init...";
Josh Gao6946f112017-01-18 18:14:17 -0800391
Josh Gao22cb70b2016-08-18 22:00:12 -0700392 int infd = inotify_init1(IN_CLOEXEC | IN_NONBLOCK);
Josh Gao6946f112017-01-18 18:14:17 -0800393 if (infd < 0) {
394 PLOG(ERROR) << "failed to create inotify fd";
395 return;
396 }
397
Josh Gao22cb70b2016-08-18 22:00:12 -0700398 for (const std::string& path : paths) {
399 int wd = inotify_add_watch(infd, path.c_str(), IN_CREATE | IN_MOVED_TO);
400 if (wd < 0) {
401 PLOG(ERROR) << "failed to inotify_add_watch on path '" << path;
402 continue;
403 }
404
405 g_monitored_paths[wd] = path;
406 LOG(INFO) << "watch descriptor " << wd << " registered for " << path;
407 }
408
409 fdevent* event = fdevent_create(infd, adb_auth_inotify_update, nullptr);
410 fdevent_add(event, FDE_READ);
411}
412#endif
413
Elliott Hughes801066a2016-06-29 17:42:01 -0700414void adb_auth_init() {
415 LOG(INFO) << "adb_auth_init...";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700416
Elliott Hughes801066a2016-06-29 17:42:01 -0700417 if (!get_user_key()) {
418 LOG(ERROR) << "Failed to get user key";
Benoit Goby2cc19e42012-04-12 12:23:49 -0700419 return;
420 }
421
Josh Gao22cb70b2016-08-18 22:00:12 -0700422 const auto& key_paths = get_vendor_keys();
423
424#if defined(__linux__)
425 adb_auth_inotify_init(key_paths);
426#endif
427
428 for (const std::string& path : key_paths) {
429 read_keys(path.c_str());
430 }
Benoit Goby2cc19e42012-04-12 12:23:49 -0700431}
Josh Gaoeac20582016-10-05 19:02:29 -0700432
433static void send_auth_publickey(atransport* t) {
434 LOG(INFO) << "Calling send_auth_publickey";
435
436 std::string key = adb_auth_get_userkey();
437 if (key.empty()) {
438 D("Failed to get user public key");
439 return;
440 }
441
442 if (key.size() >= MAX_PAYLOAD_V1) {
443 D("User public key too large (%zu B)", key.size());
444 return;
445 }
446
447 apacket* p = get_apacket();
448 memcpy(p->data, key.c_str(), key.size() + 1);
449
450 p->msg.command = A_AUTH;
451 p->msg.arg0 = ADB_AUTH_RSAPUBLICKEY;
452
453 // adbd expects a null-terminated string.
454 p->msg.data_length = key.size() + 1;
455 send_packet(p, t);
456}
457
Josh Gao67ac3792016-10-06 13:31:44 -0700458void send_auth_response(const char* token, size_t token_size, atransport* t) {
Josh Gaoeac20582016-10-05 19:02:29 -0700459 std::shared_ptr<RSA> key = t->NextKey();
460 if (key == nullptr) {
461 // No more private keys to try, send the public key.
462 send_auth_publickey(t);
463 return;
464 }
465
466 LOG(INFO) << "Calling send_auth_response";
467 apacket* p = get_apacket();
468
469 int ret = adb_auth_sign(key.get(), token, token_size, p->data);
470 if (!ret) {
471 D("Error signing the token");
472 put_apacket(p);
473 return;
474 }
475
476 p->msg.command = A_AUTH;
477 p->msg.arg0 = ADB_AUTH_SIGNATURE;
478 p->msg.data_length = ret;
479 send_packet(p, t);
480}