blob: 219374fdbf879d5093e0ed1f2a2b1ca4675be524 [file] [log] [blame]
Doug Zongker075ad802014-06-26 15:35:51 -07001/*
2 * Copyright (C) 2014 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// This module creates a special filesystem containing two files.
18//
19// "/sideload/package.zip" appears to be a normal file, but reading
20// from it causes data to be fetched from the adb host. We can use
21// this to sideload packages over an adb connection without having to
22// store the entire package in RAM on the device.
23//
24// Because we may not trust the adb host, this filesystem maintains
25// the following invariant: each read of a given position returns the
26// same data as the first read at that position. That is, once a
27// section of the file is read, future reads of that section return
28// the same data. (Otherwise, a malicious adb host process could
29// return one set of bits when the package is read for signature
30// verification, and then different bits for when the package is
31// accessed by the installer.) If the adb host returns something
32// different than it did on the first read, the reader of the file
33// will see their read fail with EINVAL.
34//
35// The other file, "/sideload/exit", is used to control the subprocess
36// that creates this filesystem. Calling stat() on the exit file
37// causes the filesystem to be unmounted and the adb process on the
38// device shut down.
39//
40// Note that only the minimal set of file operations needed for these
41// two files is implemented. In particular, you can't opendir() or
42// readdir() on the "/sideload" directory; ls on it won't work.
43
44#include <ctype.h>
45#include <dirent.h>
46#include <errno.h>
47#include <fcntl.h>
48#include <limits.h>
49#include <linux/fuse.h>
50#include <pthread.h>
51#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>
54#include <sys/inotify.h>
55#include <sys/mount.h>
Christopher Ferris1d30c2f2014-09-16 14:53:39 -070056#include <sys/param.h>
Doug Zongker075ad802014-06-26 15:35:51 -070057#include <sys/resource.h>
58#include <sys/stat.h>
59#include <sys/statfs.h>
60#include <sys/time.h>
61#include <sys/uio.h>
62#include <unistd.h>
63
Tao Baoed138192017-05-01 22:30:39 -070064#include <string>
65
66#include <android-base/stringprintf.h>
Mattias Nissler452df6d2016-04-04 16:17:01 +020067#include <openssl/sha.h>
68
Doug Zongker18a78e02014-07-10 07:31:46 -070069#include "fuse_sideload.h"
Doug Zongker075ad802014-06-26 15:35:51 -070070
71#define PACKAGE_FILE_ID (FUSE_ROOT_ID+1)
72#define EXIT_FLAG_ID (FUSE_ROOT_ID+2)
73
74#define NO_STATUS 1
75#define NO_STATUS_EXIT 2
76
77struct fuse_data {
78 int ffd; // file descriptor for the fuse socket
Doug Zongker18a78e02014-07-10 07:31:46 -070079
80 struct provider_vtab* vtab;
81 void* cookie;
Doug Zongker075ad802014-06-26 15:35:51 -070082
83 uint64_t file_size; // bytes
84
85 uint32_t block_size; // block size that the adb host is using to send the file to us
86 uint32_t file_blocks; // file size in block_size blocks
87
88 uid_t uid;
89 gid_t gid;
90
91 uint32_t curr_block; // cache the block most recently read from the host
92 uint8_t* block_data;
93
94 uint8_t* extra_block; // another block of storage for reads that
95 // span two blocks
96
97 uint8_t* hashes; // SHA-256 hash of each block (all zeros
98 // if block hasn't been read yet)
99};
100
101static void fuse_reply(struct fuse_data* fd, __u64 unique, const void *data, size_t len)
102{
103 struct fuse_out_header hdr;
104 struct iovec vec[2];
105 int res;
106
107 hdr.len = len + sizeof(hdr);
108 hdr.error = 0;
109 hdr.unique = unique;
110
111 vec[0].iov_base = &hdr;
112 vec[0].iov_len = sizeof(hdr);
Elliott Hughes1fdd4522015-03-23 13:33:57 -0700113 vec[1].iov_base = /* const_cast */(void*)(data);
Doug Zongker075ad802014-06-26 15:35:51 -0700114 vec[1].iov_len = len;
115
116 res = writev(fd->ffd, vec, 2);
117 if (res < 0) {
Elliott Hughes1fdd4522015-03-23 13:33:57 -0700118 printf("*** REPLY FAILED *** %s\n", strerror(errno));
Doug Zongker075ad802014-06-26 15:35:51 -0700119 }
120}
121
122static int handle_init(void* data, struct fuse_data* fd, const struct fuse_in_header* hdr) {
Tao Bao0d4e0022015-07-19 08:40:37 -0700123 const struct fuse_init_in* req = reinterpret_cast<const struct fuse_init_in*>(data);
Doug Zongker075ad802014-06-26 15:35:51 -0700124 struct fuse_init_out out;
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700125 size_t fuse_struct_size;
126
127
128 /* Kernel 2.6.16 is the first stable kernel with struct fuse_init_out
129 * defined (fuse version 7.6). The structure is the same from 7.6 through
130 * 7.22. Beginning with 7.23, the structure increased in size and added
131 * new parameters.
132 */
133 if (req->major != FUSE_KERNEL_VERSION || req->minor < 6) {
134 printf("Fuse kernel version mismatch: Kernel version %d.%d, Expected at least %d.6",
135 req->major, req->minor, FUSE_KERNEL_VERSION);
136 return -1;
137 }
138
139 out.minor = MIN(req->minor, FUSE_KERNEL_MINOR_VERSION);
140 fuse_struct_size = sizeof(out);
141#if defined(FUSE_COMPAT_22_INIT_OUT_SIZE)
142 /* FUSE_KERNEL_VERSION >= 23. */
143
144 /* If the kernel only works on minor revs older than or equal to 22,
145 * then use the older structure size since this code only uses the 7.22
146 * version of the structure. */
147 if (req->minor <= 22) {
148 fuse_struct_size = FUSE_COMPAT_22_INIT_OUT_SIZE;
149 }
150#endif
Doug Zongker075ad802014-06-26 15:35:51 -0700151
152 out.major = FUSE_KERNEL_VERSION;
Doug Zongker075ad802014-06-26 15:35:51 -0700153 out.max_readahead = req->max_readahead;
154 out.flags = 0;
155 out.max_background = 32;
156 out.congestion_threshold = 32;
157 out.max_write = 4096;
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700158 fuse_reply(fd, hdr->unique, &out, fuse_struct_size);
Doug Zongker075ad802014-06-26 15:35:51 -0700159
160 return NO_STATUS;
161}
162
163static void fill_attr(struct fuse_attr* attr, struct fuse_data* fd,
164 uint64_t nodeid, uint64_t size, uint32_t mode) {
165 memset(attr, 0, sizeof(*attr));
166 attr->nlink = 1;
167 attr->uid = fd->uid;
168 attr->gid = fd->gid;
169 attr->blksize = 4096;
170
171 attr->ino = nodeid;
172 attr->size = size;
173 attr->blocks = (size == 0) ? 0 : (((size-1) / attr->blksize) + 1);
174 attr->mode = mode;
175}
176
Tao Bao0d4e0022015-07-19 08:40:37 -0700177static int handle_getattr(void* /* data */, struct fuse_data* fd, const struct fuse_in_header* hdr) {
Doug Zongker075ad802014-06-26 15:35:51 -0700178 struct fuse_attr_out out;
179 memset(&out, 0, sizeof(out));
180 out.attr_valid = 10;
181
182 if (hdr->nodeid == FUSE_ROOT_ID) {
183 fill_attr(&(out.attr), fd, hdr->nodeid, 4096, S_IFDIR | 0555);
184 } else if (hdr->nodeid == PACKAGE_FILE_ID) {
185 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
186 } else if (hdr->nodeid == EXIT_FLAG_ID) {
187 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
188 } else {
189 return -ENOENT;
190 }
191
192 fuse_reply(fd, hdr->unique, &out, sizeof(out));
193 return (hdr->nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS;
194}
195
196static int handle_lookup(void* data, struct fuse_data* fd,
197 const struct fuse_in_header* hdr) {
198 struct fuse_entry_out out;
199 memset(&out, 0, sizeof(out));
200 out.entry_valid = 10;
201 out.attr_valid = 10;
202
Tao Bao0d4e0022015-07-19 08:40:37 -0700203 if (strncmp(FUSE_SIDELOAD_HOST_FILENAME, reinterpret_cast<const char*>(data),
Doug Zongker18a78e02014-07-10 07:31:46 -0700204 sizeof(FUSE_SIDELOAD_HOST_FILENAME)) == 0) {
Doug Zongker075ad802014-06-26 15:35:51 -0700205 out.nodeid = PACKAGE_FILE_ID;
206 out.generation = PACKAGE_FILE_ID;
207 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
Tao Bao0d4e0022015-07-19 08:40:37 -0700208 } else if (strncmp(FUSE_SIDELOAD_HOST_EXIT_FLAG, reinterpret_cast<const char*>(data),
Doug Zongker18a78e02014-07-10 07:31:46 -0700209 sizeof(FUSE_SIDELOAD_HOST_EXIT_FLAG)) == 0) {
Doug Zongker075ad802014-06-26 15:35:51 -0700210 out.nodeid = EXIT_FLAG_ID;
211 out.generation = EXIT_FLAG_ID;
212 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
213 } else {
214 return -ENOENT;
215 }
216
217 fuse_reply(fd, hdr->unique, &out, sizeof(out));
218 return (out.nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS;
219}
220
Tao Bao0d4e0022015-07-19 08:40:37 -0700221static int handle_open(void* /* data */, struct fuse_data* fd, const struct fuse_in_header* hdr) {
Doug Zongker075ad802014-06-26 15:35:51 -0700222 if (hdr->nodeid == EXIT_FLAG_ID) return -EPERM;
223 if (hdr->nodeid != PACKAGE_FILE_ID) return -ENOENT;
224
225 struct fuse_open_out out;
226 memset(&out, 0, sizeof(out));
227 out.fh = 10; // an arbitrary number; we always use the same handle
228 fuse_reply(fd, hdr->unique, &out, sizeof(out));
229 return NO_STATUS;
230}
231
Tao Bao20126e12017-04-26 12:30:46 -0700232static int handle_flush(void* /* data */, struct fuse_data* /* fd */,
233 const struct fuse_in_header* /* hdr */) {
Doug Zongker075ad802014-06-26 15:35:51 -0700234 return 0;
235}
236
Tao Bao20126e12017-04-26 12:30:46 -0700237static int handle_release(void* /* data */, struct fuse_data* /* fd */,
238 const struct fuse_in_header* /* hdr */) {
Doug Zongker075ad802014-06-26 15:35:51 -0700239 return 0;
240}
241
242// Fetch a block from the host into fd->curr_block and fd->block_data.
243// Returns 0 on successful fetch, negative otherwise.
244static int fetch_block(struct fuse_data* fd, uint32_t block) {
245 if (block == fd->curr_block) {
246 return 0;
247 }
248
249 if (block >= fd->file_blocks) {
250 memset(fd->block_data, 0, fd->block_size);
251 fd->curr_block = block;
252 return 0;
253 }
254
255 size_t fetch_size = fd->block_size;
256 if (block * fd->block_size + fetch_size > fd->file_size) {
257 // If we're reading the last (partial) block of the file,
258 // expect a shorter response from the host, and pad the rest
259 // of the block with zeroes.
260 fetch_size = fd->file_size - (block * fd->block_size);
261 memset(fd->block_data + fetch_size, 0, fd->block_size - fetch_size);
262 }
263
Doug Zongker18a78e02014-07-10 07:31:46 -0700264 int result = fd->vtab->read_block(fd->cookie, block, fd->block_data, fetch_size);
265 if (result < 0) return result;
Doug Zongker075ad802014-06-26 15:35:51 -0700266
267 fd->curr_block = block;
268
269 // Verify the hash of the block we just got from the host.
270 //
271 // - If the hash of the just-received data matches the stored hash
272 // for the block, accept it.
273 // - If the stored hash is all zeroes, store the new hash and
274 // accept the block (this is the first time we've read this
275 // block).
276 // - Otherwise, return -EINVAL for the read.
277
Mattias Nissler452df6d2016-04-04 16:17:01 +0200278 uint8_t hash[SHA256_DIGEST_LENGTH];
279 SHA256(fd->block_data, fd->block_size, hash);
280 uint8_t* blockhash = fd->hashes + block * SHA256_DIGEST_LENGTH;
281 if (memcmp(hash, blockhash, SHA256_DIGEST_LENGTH) == 0) {
Doug Zongker075ad802014-06-26 15:35:51 -0700282 return 0;
283 }
284
285 int i;
Mattias Nissler452df6d2016-04-04 16:17:01 +0200286 for (i = 0; i < SHA256_DIGEST_LENGTH; ++i) {
Doug Zongker075ad802014-06-26 15:35:51 -0700287 if (blockhash[i] != 0) {
288 fd->curr_block = -1;
289 return -EIO;
290 }
291 }
292
Mattias Nissler452df6d2016-04-04 16:17:01 +0200293 memcpy(blockhash, hash, SHA256_DIGEST_LENGTH);
Doug Zongker075ad802014-06-26 15:35:51 -0700294 return 0;
295}
296
297static int handle_read(void* data, struct fuse_data* fd, const struct fuse_in_header* hdr) {
Tao Bao0d4e0022015-07-19 08:40:37 -0700298 const struct fuse_read_in* req = reinterpret_cast<const struct fuse_read_in*>(data);
Doug Zongker075ad802014-06-26 15:35:51 -0700299 struct fuse_out_header outhdr;
300 struct iovec vec[3];
301 int vec_used;
302 int result;
303
304 if (hdr->nodeid != PACKAGE_FILE_ID) return -ENOENT;
305
306 uint64_t offset = req->offset;
307 uint32_t size = req->size;
308
309 // The docs on the fuse kernel interface are vague about what to
310 // do when a read request extends past the end of the file. We
311 // can return a short read -- the return structure does include a
312 // length field -- but in testing that caused the program using
313 // the file to segfault. (I speculate that this is due to the
314 // reading program accessing it via mmap; maybe mmap dislikes when
315 // you return something short of a whole page?) To fix this we
316 // zero-pad reads that extend past the end of the file so we're
317 // always returning exactly as many bytes as were requested.
318 // (Users of the mapped file have to know its real length anyway.)
319
320 outhdr.len = sizeof(outhdr) + size;
321 outhdr.error = 0;
322 outhdr.unique = hdr->unique;
323 vec[0].iov_base = &outhdr;
324 vec[0].iov_len = sizeof(outhdr);
325
326 uint32_t block = offset / fd->block_size;
327 result = fetch_block(fd, block);
328 if (result != 0) return result;
329
330 // Two cases:
331 //
332 // - the read request is entirely within this block. In this
333 // case we can reply immediately.
334 //
335 // - the read request goes over into the next block. Note that
336 // since we mount the filesystem with max_read=block_size, a
337 // read can never span more than two blocks. In this case we
338 // copy the block to extra_block and issue a fetch for the
339 // following block.
340
341 uint32_t block_offset = offset - (block * fd->block_size);
342
343 if (size + block_offset <= fd->block_size) {
344 // First case: the read fits entirely in the first block.
345
346 vec[1].iov_base = fd->block_data + block_offset;
347 vec[1].iov_len = size;
348 vec_used = 2;
349 } else {
350 // Second case: the read spills over into the next block.
351
352 memcpy(fd->extra_block, fd->block_data + block_offset,
353 fd->block_size - block_offset);
354 vec[1].iov_base = fd->extra_block;
355 vec[1].iov_len = fd->block_size - block_offset;
356
357 result = fetch_block(fd, block+1);
358 if (result != 0) return result;
359 vec[2].iov_base = fd->block_data;
360 vec[2].iov_len = size - vec[1].iov_len;
361 vec_used = 3;
362 }
363
364 if (writev(fd->ffd, vec, vec_used) < 0) {
365 printf("*** READ REPLY FAILED: %s ***\n", strerror(errno));
366 }
367 return NO_STATUS;
368}
369
Tao Baoed138192017-05-01 22:30:39 -0700370int run_fuse_sideload(struct provider_vtab* vtab, void* cookie, uint64_t file_size,
371 uint32_t block_size) {
372 // If something's already mounted on our mountpoint, try to remove it. (Mostly in case of a
373 // previous abnormal exit.)
374 umount2(FUSE_SIDELOAD_HOST_MOUNTPOINT, MNT_FORCE);
Doug Zongker075ad802014-06-26 15:35:51 -0700375
Tao Baoed138192017-05-01 22:30:39 -0700376 // fs/fuse/inode.c in kernel code uses the greater of 4096 and the passed-in max_read.
377 if (block_size < 4096) {
378 fprintf(stderr, "block size (%u) is too small\n", block_size);
379 return -1;
380 }
381 if (block_size > (1 << 22)) { // 4 MiB
382 fprintf(stderr, "block size (%u) is too large\n", block_size);
383 return -1;
384 }
Doug Zongker075ad802014-06-26 15:35:51 -0700385
Tao Baoed138192017-05-01 22:30:39 -0700386 struct fuse_data fd = {};
387 fd.vtab = vtab;
388 fd.cookie = cookie;
389 fd.file_size = file_size;
390 fd.block_size = block_size;
391 fd.file_blocks = (file_size == 0) ? 0 : (((file_size - 1) / block_size) + 1);
Doug Zongker075ad802014-06-26 15:35:51 -0700392
Tao Baoed138192017-05-01 22:30:39 -0700393 int result;
394 if (fd.file_blocks > (1 << 18)) {
395 fprintf(stderr, "file has too many blocks (%u)\n", fd.file_blocks);
396 result = -1;
397 goto done;
398 }
Doug Zongker075ad802014-06-26 15:35:51 -0700399
Tao Baoed138192017-05-01 22:30:39 -0700400 fd.hashes = (uint8_t*)calloc(fd.file_blocks, SHA256_DIGEST_LENGTH);
401 if (fd.hashes == NULL) {
402 fprintf(stderr, "failed to allocate %d bites for hashes\n",
403 fd.file_blocks * SHA256_DIGEST_LENGTH);
404 result = -1;
405 goto done;
406 }
Doug Zongker075ad802014-06-26 15:35:51 -0700407
Tao Baoed138192017-05-01 22:30:39 -0700408 fd.uid = getuid();
409 fd.gid = getgid();
Doug Zongker075ad802014-06-26 15:35:51 -0700410
Tao Baoed138192017-05-01 22:30:39 -0700411 fd.curr_block = -1;
412 fd.block_data = (uint8_t*)malloc(block_size);
413 if (fd.block_data == NULL) {
414 fprintf(stderr, "failed to allocate %d bites for block_data\n", block_size);
415 result = -1;
416 goto done;
417 }
418 fd.extra_block = (uint8_t*)malloc(block_size);
419 if (fd.extra_block == NULL) {
420 fprintf(stderr, "failed to allocate %d bites for extra_block\n", block_size);
421 result = -1;
422 goto done;
423 }
Doug Zongker075ad802014-06-26 15:35:51 -0700424
Tao Baoed138192017-05-01 22:30:39 -0700425 fd.ffd = open("/dev/fuse", O_RDWR);
426 if (fd.ffd < 0) {
427 perror("open /dev/fuse");
428 result = -1;
429 goto done;
430 }
Doug Zongker075ad802014-06-26 15:35:51 -0700431
Tao Baoed138192017-05-01 22:30:39 -0700432 {
433 std::string opts = android::base::StringPrintf(
434 "fd=%d,user_id=%d,group_id=%d,max_read=%u,allow_other,rootmode=040000", fd.ffd, fd.uid,
435 fd.gid, block_size);
Doug Zongker075ad802014-06-26 15:35:51 -0700436
Tao Baoed138192017-05-01 22:30:39 -0700437 result = mount("/dev/fuse", FUSE_SIDELOAD_HOST_MOUNTPOINT, "fuse",
438 MS_NOSUID | MS_NODEV | MS_RDONLY | MS_NOEXEC, opts.c_str());
Doug Zongker075ad802014-06-26 15:35:51 -0700439 if (result < 0) {
Tao Baoed138192017-05-01 22:30:39 -0700440 perror("mount");
441 goto done;
Doug Zongker075ad802014-06-26 15:35:51 -0700442 }
Tao Baoed138192017-05-01 22:30:39 -0700443 }
Doug Zongker075ad802014-06-26 15:35:51 -0700444
Tao Baoed138192017-05-01 22:30:39 -0700445 uint8_t request_buffer[sizeof(struct fuse_in_header) + PATH_MAX * 8];
446 for (;;) {
447 ssize_t len = TEMP_FAILURE_RETRY(read(fd.ffd, request_buffer, sizeof(request_buffer)));
448 if (len == -1) {
449 perror("read request");
450 if (errno == ENODEV) {
451 result = -1;
452 break;
453 }
454 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700455 }
456
Tao Baoed138192017-05-01 22:30:39 -0700457 if (static_cast<size_t>(len) < sizeof(struct fuse_in_header)) {
458 fprintf(stderr, "request too short: len=%zd\n", len);
459 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700460 }
461
Tao Baoed138192017-05-01 22:30:39 -0700462 struct fuse_in_header* hdr = reinterpret_cast<struct fuse_in_header*>(request_buffer);
463 void* data = request_buffer + sizeof(struct fuse_in_header);
Doug Zongker075ad802014-06-26 15:35:51 -0700464
Tao Baoed138192017-05-01 22:30:39 -0700465 result = -ENOSYS;
466
467 switch (hdr->opcode) {
468 case FUSE_INIT:
469 result = handle_init(data, &fd, hdr);
470 break;
471
472 case FUSE_LOOKUP:
473 result = handle_lookup(data, &fd, hdr);
474 break;
475
476 case FUSE_GETATTR:
477 result = handle_getattr(data, &fd, hdr);
478 break;
479
480 case FUSE_OPEN:
481 result = handle_open(data, &fd, hdr);
482 break;
483
484 case FUSE_READ:
485 result = handle_read(data, &fd, hdr);
486 break;
487
488 case FUSE_FLUSH:
489 result = handle_flush(data, &fd, hdr);
490 break;
491
492 case FUSE_RELEASE:
493 result = handle_release(data, &fd, hdr);
494 break;
495
496 default:
497 fprintf(stderr, "unknown fuse request opcode %d\n", hdr->opcode);
498 break;
499 }
500
501 if (result == NO_STATUS_EXIT) {
502 result = 0;
503 break;
504 }
505
506 if (result != NO_STATUS) {
507 struct fuse_out_header outhdr;
508 outhdr.len = sizeof(outhdr);
509 outhdr.error = result;
510 outhdr.unique = hdr->unique;
511 TEMP_FAILURE_RETRY(write(fd.ffd, &outhdr, sizeof(outhdr)));
512 }
513 }
514
515done:
516 fd.vtab->close(fd.cookie);
517
518 result = umount2(FUSE_SIDELOAD_HOST_MOUNTPOINT, MNT_DETACH);
519 if (result < 0) {
520 printf("fuse_sideload umount failed: %s\n", strerror(errno));
521 }
522
523 if (fd.ffd) close(fd.ffd);
524 free(fd.hashes);
525 free(fd.block_data);
526 free(fd.extra_block);
527
528 return result;
Doug Zongker075ad802014-06-26 15:35:51 -0700529}