blob: deb0a5deb56aa5a06a6a7ab4362ed8df7867d726 [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
Dan Albertb302d122015-02-24 15:51:19 -080017#include <resolv.h>
Benoit Goby2cc19e42012-04-12 12:23:49 -070018#include <stdio.h>
19#include <string.h>
Benoit Goby2cc19e42012-04-12 12:23:49 -070020
21#include "sysdeps.h"
Dan Albertb302d122015-02-24 15:51:19 -080022
Benoit Goby2cc19e42012-04-12 12:23:49 -070023#include "adb.h"
24#include "adb_auth.h"
Dan Albertb302d122015-02-24 15:51:19 -080025#include "cutils/list.h"
26#include "cutils/sockets.h"
Benoit Goby2cc19e42012-04-12 12:23:49 -070027#include "fdevent.h"
28#include "mincrypt/rsa.h"
Doug Zongker25129a52013-04-10 09:22:02 -070029#include "mincrypt/sha.h"
Dan Albertb302d122015-02-24 15:51:19 -080030#include "transport.h"
Benoit Goby2cc19e42012-04-12 12:23:49 -070031
32#define TRACE_TAG TRACE_AUTH
33
34
35struct adb_public_key {
36 struct listnode node;
37 RSAPublicKey key;
38};
39
Dan Albertf30d73c2015-02-25 17:51:28 -080040static const char *key_paths[] = {
Benoit Goby2cc19e42012-04-12 12:23:49 -070041 "/adb_keys",
42 "/data/misc/adb/adb_keys",
43 NULL
44};
45
46static fdevent listener_fde;
47static int framework_fd = -1;
48
Benoit Gobyd592d6c2013-01-15 19:59:14 -080049static void usb_disconnected(void* unused, atransport* t);
50static struct adisconnect usb_disconnect = { usb_disconnected, 0, 0, 0 };
51static atransport* usb_transport;
52static bool needs_retry = false;
Benoit Goby2cc19e42012-04-12 12:23:49 -070053
54static void read_keys(const char *file, struct listnode *list)
55{
Benoit Goby2cc19e42012-04-12 12:23:49 -070056 FILE *f;
57 char buf[MAX_PAYLOAD];
58 char *sep;
59 int ret;
60
Nick Kralevich777523e2014-07-18 20:57:35 -070061 f = fopen(file, "re");
Benoit Goby2cc19e42012-04-12 12:23:49 -070062 if (!f) {
63 D("Can't open '%s'\n", file);
64 return;
65 }
66
67 while (fgets(buf, sizeof(buf), f)) {
68 /* Allocate 4 extra bytes to decode the base64 data in-place */
Dan Albertf30d73c2015-02-25 17:51:28 -080069 auto key = reinterpret_cast<adb_public_key*>(
70 calloc(1, sizeof(adb_public_key) + 4));
71 if (key == nullptr) {
Benoit Goby2cc19e42012-04-12 12:23:49 -070072 D("Can't malloc key\n");
73 break;
74 }
75
76 sep = strpbrk(buf, " \t");
77 if (sep)
78 *sep = '\0';
79
80 ret = __b64_pton(buf, (u_char *)&key->key, sizeof(key->key) + 4);
81 if (ret != sizeof(key->key)) {
82 D("%s: Invalid base64 data ret=%d\n", file, ret);
83 free(key);
84 continue;
85 }
86
87 if (key->key.len != RSANUMWORDS) {
88 D("%s: Invalid key len %d\n", file, key->key.len);
89 free(key);
90 continue;
91 }
92
93 list_add_tail(list, &key->node);
94 }
95
96 fclose(f);
97}
98
99static void free_keys(struct listnode *list)
100{
101 struct listnode *item;
102
103 while (!list_empty(list)) {
104 item = list_head(list);
105 list_remove(item);
106 free(node_to_item(item, struct adb_public_key, node));
107 }
108}
109
Benoit Gobyd84bc662013-01-14 21:26:30 -0800110static void load_keys(struct listnode *list)
Benoit Goby2cc19e42012-04-12 12:23:49 -0700111{
Dan Albertf30d73c2015-02-25 17:51:28 -0800112 const char* path;
113 const char** paths = key_paths;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700114 struct stat buf;
115
Benoit Gobyd84bc662013-01-14 21:26:30 -0800116 list_init(list);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700117
118 while ((path = *paths++)) {
119 if (!stat(path, &buf)) {
120 D("Loading keys from '%s'\n", path);
Benoit Gobyd84bc662013-01-14 21:26:30 -0800121 read_keys(path, list);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700122 }
123 }
124}
125
126int adb_auth_generate_token(void *token, size_t token_size)
127{
128 FILE *f;
129 int ret;
130
Nick Kralevich777523e2014-07-18 20:57:35 -0700131 f = fopen("/dev/urandom", "re");
Benoit Goby2cc19e42012-04-12 12:23:49 -0700132 if (!f)
133 return 0;
134
135 ret = fread(token, token_size, 1, f);
136
137 fclose(f);
138 return ret * token_size;
139}
140
Dan Albertf30d73c2015-02-25 17:51:28 -0800141int adb_auth_verify(uint8_t* token, uint8_t* sig, int siglen)
Benoit Goby2cc19e42012-04-12 12:23:49 -0700142{
143 struct listnode *item;
Benoit Gobyd84bc662013-01-14 21:26:30 -0800144 struct listnode key_list;
145 int ret = 0;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700146
147 if (siglen != RSANUMBYTES)
148 return 0;
149
Benoit Gobyd84bc662013-01-14 21:26:30 -0800150 load_keys(&key_list);
151
Benoit Goby2cc19e42012-04-12 12:23:49 -0700152 list_for_each(item, &key_list) {
Dan Albertf30d73c2015-02-25 17:51:28 -0800153 adb_public_key* key = node_to_item(item, struct adb_public_key, node);
Doug Zongker25129a52013-04-10 09:22:02 -0700154 ret = RSA_verify(&key->key, sig, siglen, token, SHA_DIGEST_SIZE);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700155 if (ret)
Benoit Gobyd84bc662013-01-14 21:26:30 -0800156 break;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700157 }
158
Benoit Gobyd84bc662013-01-14 21:26:30 -0800159 free_keys(&key_list);
160
161 return ret;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700162}
163
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800164static void usb_disconnected(void* unused, atransport* t)
165{
Benoit Gobyc0028882013-04-01 17:39:06 -0700166 D("USB disconnect\n");
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800167 remove_transport_disconnect(usb_transport, &usb_disconnect);
168 usb_transport = NULL;
169 needs_retry = false;
170}
171
Benoit Goby2cc19e42012-04-12 12:23:49 -0700172static void adb_auth_event(int fd, unsigned events, void *data)
173{
Benoit Goby2cc19e42012-04-12 12:23:49 -0700174 char response[2];
175 int ret;
176
177 if (events & FDE_READ) {
178 ret = unix_read(fd, response, sizeof(response));
Vince Harron82125422014-09-25 21:51:15 -0700179 if (ret <= 0) {
Benoit Gobyc0028882013-04-01 17:39:06 -0700180 D("Framework disconnect\n");
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800181 if (usb_transport)
182 fdevent_remove(&usb_transport->auth_fde);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700183 framework_fd = -1;
184 }
185 else if (ret == 2 && response[0] == 'O' && response[1] == 'K') {
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800186 if (usb_transport)
187 adb_auth_verified(usb_transport);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700188 }
189 }
190}
191
192void adb_auth_confirm_key(unsigned char *key, size_t len, atransport *t)
193{
194 char msg[MAX_PAYLOAD];
195 int ret;
196
Benoit Gobyc0028882013-04-01 17:39:06 -0700197 if (!usb_transport) {
198 usb_transport = t;
199 add_transport_disconnect(t, &usb_disconnect);
200 }
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800201
Benoit Goby2cc19e42012-04-12 12:23:49 -0700202 if (framework_fd < 0) {
203 D("Client not connected\n");
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800204 needs_retry = true;
Benoit Goby2cc19e42012-04-12 12:23:49 -0700205 return;
206 }
207
208 if (key[len - 1] != '\0') {
209 D("Key must be a null-terminated string\n");
210 return;
211 }
212
213 ret = snprintf(msg, sizeof(msg), "PK%s", key);
214 if (ret >= (signed)sizeof(msg)) {
215 D("Key too long. ret=%d", ret);
216 return;
217 }
218 D("Sending '%s'\n", msg);
219
220 ret = unix_write(framework_fd, msg, ret);
221 if (ret < 0) {
222 D("Failed to write PK, errno=%d\n", errno);
223 return;
224 }
225
226 fdevent_install(&t->auth_fde, framework_fd, adb_auth_event, t);
227 fdevent_add(&t->auth_fde, FDE_READ);
228}
229
230static void adb_auth_listener(int fd, unsigned events, void *data)
231{
232 struct sockaddr addr;
233 socklen_t alen;
234 int s;
235
236 alen = sizeof(addr);
237
238 s = adb_socket_accept(fd, &addr, &alen);
239 if (s < 0) {
240 D("Failed to accept: errno=%d\n", errno);
241 return;
242 }
243
244 framework_fd = s;
Benoit Gobyd592d6c2013-01-15 19:59:14 -0800245
246 if (needs_retry) {
247 needs_retry = false;
248 send_auth_request(usb_transport);
249 }
Benoit Goby2cc19e42012-04-12 12:23:49 -0700250}
251
252void adb_auth_init(void)
253{
254 int fd, ret;
255
Benoit Goby2cc19e42012-04-12 12:23:49 -0700256 fd = android_get_control_socket("adbd");
257 if (fd < 0) {
258 D("Failed to get adbd socket\n");
259 return;
260 }
Nick Kralevich777523e2014-07-18 20:57:35 -0700261 fcntl(fd, F_SETFD, FD_CLOEXEC);
Benoit Goby2cc19e42012-04-12 12:23:49 -0700262
263 ret = listen(fd, 4);
264 if (ret < 0) {
265 D("Failed to listen on '%d'\n", fd);
266 return;
267 }
268
269 fdevent_install(&listener_fde, fd, adb_auth_listener, NULL);
270 fdevent_add(&listener_fde, FDE_READ);
271}