blob: 07cbe96f3c175e4ec38a75b910cbccf30148975a [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
Tao Bao91a7aa42017-05-01 15:57:38 -070044#include "fuse_sideload.h"
45
Doug Zongker075ad802014-06-26 15:35:51 -070046#include <errno.h>
47#include <fcntl.h>
bigbiffd58ba182020-03-23 10:02:29 -040048#include <limits.h> // PATH_MAX
49#include <linux/fuse.h>
Tao Bao91a7aa42017-05-01 15:57:38 -070050#include <stdint.h>
Doug Zongker075ad802014-06-26 15:35:51 -070051#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>
Doug Zongker075ad802014-06-26 15:35:51 -070054#include <sys/mount.h>
Tao Bao91a7aa42017-05-01 15:57:38 -070055#include <sys/param.h> // MIN
Doug Zongker075ad802014-06-26 15:35:51 -070056#include <sys/stat.h>
Doug Zongker075ad802014-06-26 15:35:51 -070057#include <sys/uio.h>
58#include <unistd.h>
59
Tao Bao91a7aa42017-05-01 15:57:38 -070060#include <array>
Tao Baoed138192017-05-01 22:30:39 -070061#include <string>
Tao Bao91a7aa42017-05-01 15:57:38 -070062#include <vector>
Doug Zongker075ad802014-06-26 15:35:51 -070063
bigbiffd58ba182020-03-23 10:02:29 -040064#include <android-base/stringprintf.h>
65#include <android-base/unique_fd.h>
66#include <openssl/sha.h>
Doug Zongker075ad802014-06-26 15:35:51 -070067
Tao Bao91a7aa42017-05-01 15:57:38 -070068static constexpr uint64_t PACKAGE_FILE_ID = FUSE_ROOT_ID + 1;
69static constexpr uint64_t EXIT_FLAG_ID = FUSE_ROOT_ID + 2;
Doug Zongker075ad802014-06-26 15:35:51 -070070
Tao Bao91a7aa42017-05-01 15:57:38 -070071static constexpr int NO_STATUS = 1;
72static constexpr int NO_STATUS_EXIT = 2;
Doug Zongker075ad802014-06-26 15:35:51 -070073
Tao Bao91a7aa42017-05-01 15:57:38 -070074using SHA256Digest = std::array<uint8_t, SHA256_DIGEST_LENGTH>;
Doug Zongker075ad802014-06-26 15:35:51 -070075
76struct fuse_data {
bigbiffd58ba182020-03-23 10:02:29 -040077 android::base::unique_fd ffd; // file descriptor for the fuse socket
Doug Zongker18a78e02014-07-10 07:31:46 -070078
xunchang5e6832a2019-03-15 16:04:32 -070079 FuseDataProvider* provider; // Provider of the source data.
Doug Zongker075ad802014-06-26 15:35:51 -070080
Tao Bao91a7aa42017-05-01 15:57:38 -070081 uint64_t file_size; // bytes
Doug Zongker075ad802014-06-26 15:35:51 -070082
Tao Bao91a7aa42017-05-01 15:57:38 -070083 uint32_t block_size; // block size that the adb host is using to send the file to us
84 uint32_t file_blocks; // file size in block_size blocks
Doug Zongker075ad802014-06-26 15:35:51 -070085
Tao Bao91a7aa42017-05-01 15:57:38 -070086 uid_t uid;
87 gid_t gid;
Doug Zongker075ad802014-06-26 15:35:51 -070088
Tao Bao91a7aa42017-05-01 15:57:38 -070089 uint32_t curr_block; // cache the block most recently read from the host
90 uint8_t* block_data;
Doug Zongker075ad802014-06-26 15:35:51 -070091
Tao Bao91a7aa42017-05-01 15:57:38 -070092 uint8_t* extra_block; // another block of storage for reads that span two blocks
Doug Zongker075ad802014-06-26 15:35:51 -070093
bigbiffd58ba182020-03-23 10:02:29 -040094 std::vector<SHA256Digest>
95 hashes; // SHA-256 hash of each block (all zeros if block hasn't been read yet)
Doug Zongker075ad802014-06-26 15:35:51 -070096};
97
Tao Bao91a7aa42017-05-01 15:57:38 -070098static void fuse_reply(const fuse_data* fd, uint64_t unique, const void* data, size_t len) {
99 fuse_out_header hdr;
100 hdr.len = len + sizeof(hdr);
101 hdr.error = 0;
102 hdr.unique = unique;
Doug Zongker075ad802014-06-26 15:35:51 -0700103
Tao Bao91a7aa42017-05-01 15:57:38 -0700104 struct iovec vec[2];
105 vec[0].iov_base = &hdr;
106 vec[0].iov_len = sizeof(hdr);
107 vec[1].iov_base = const_cast<void*>(data);
108 vec[1].iov_len = len;
Doug Zongker075ad802014-06-26 15:35:51 -0700109
Tao Bao91a7aa42017-05-01 15:57:38 -0700110 int res = writev(fd->ffd, vec, 2);
111 if (res == -1) {
112 printf("*** REPLY FAILED *** %s\n", strerror(errno));
113 }
Doug Zongker075ad802014-06-26 15:35:51 -0700114}
115
Tao Bao91a7aa42017-05-01 15:57:38 -0700116static int handle_init(void* data, fuse_data* fd, const fuse_in_header* hdr) {
117 const fuse_init_in* req = static_cast<const fuse_init_in*>(data);
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700118
Tao Bao91a7aa42017-05-01 15:57:38 -0700119 // Kernel 2.6.16 is the first stable kernel with struct fuse_init_out defined (fuse version 7.6).
120 // The structure is the same from 7.6 through 7.22. Beginning with 7.23, the structure increased
121 // in size and added new parameters.
122 if (req->major != FUSE_KERNEL_VERSION || req->minor < 6) {
123 printf("Fuse kernel version mismatch: Kernel version %d.%d, Expected at least %d.6", req->major,
124 req->minor, FUSE_KERNEL_VERSION);
125 return -1;
126 }
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700127
Tao Bao91a7aa42017-05-01 15:57:38 -0700128 fuse_init_out out;
129 out.minor = MIN(req->minor, FUSE_KERNEL_MINOR_VERSION);
130 size_t fuse_struct_size = sizeof(out);
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700131#if defined(FUSE_COMPAT_22_INIT_OUT_SIZE)
Tao Bao91a7aa42017-05-01 15:57:38 -0700132 /* FUSE_KERNEL_VERSION >= 23. */
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700133
Tao Bao91a7aa42017-05-01 15:57:38 -0700134 // If the kernel only works on minor revs older than or equal to 22, then use the older structure
135 // size since this code only uses the 7.22 version of the structure.
136 if (req->minor <= 22) {
137 fuse_struct_size = FUSE_COMPAT_22_INIT_OUT_SIZE;
138 }
Christopher Ferris1d30c2f2014-09-16 14:53:39 -0700139#endif
Doug Zongker075ad802014-06-26 15:35:51 -0700140
Tao Bao91a7aa42017-05-01 15:57:38 -0700141 out.major = FUSE_KERNEL_VERSION;
142 out.max_readahead = req->max_readahead;
143 out.flags = 0;
144 out.max_background = 32;
145 out.congestion_threshold = 32;
146 out.max_write = 4096;
147 fuse_reply(fd, hdr->unique, &out, fuse_struct_size);
Doug Zongker075ad802014-06-26 15:35:51 -0700148
Tao Bao91a7aa42017-05-01 15:57:38 -0700149 return NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700150}
151
Tao Bao91a7aa42017-05-01 15:57:38 -0700152static void fill_attr(fuse_attr* attr, const fuse_data* fd, uint64_t nodeid, uint64_t size,
153 uint32_t mode) {
bigbiffd58ba182020-03-23 10:02:29 -0400154 *attr = {};
Tao Bao91a7aa42017-05-01 15:57:38 -0700155 attr->nlink = 1;
156 attr->uid = fd->uid;
157 attr->gid = fd->gid;
158 attr->blksize = 4096;
Doug Zongker075ad802014-06-26 15:35:51 -0700159
Tao Bao91a7aa42017-05-01 15:57:38 -0700160 attr->ino = nodeid;
161 attr->size = size;
162 attr->blocks = (size == 0) ? 0 : (((size - 1) / attr->blksize) + 1);
163 attr->mode = mode;
Doug Zongker075ad802014-06-26 15:35:51 -0700164}
165
Tao Bao91a7aa42017-05-01 15:57:38 -0700166static int handle_getattr(void* /* data */, const fuse_data* fd, const fuse_in_header* hdr) {
bigbiffd58ba182020-03-23 10:02:29 -0400167 fuse_attr_out out = {};
Tao Bao91a7aa42017-05-01 15:57:38 -0700168 out.attr_valid = 10;
Doug Zongker075ad802014-06-26 15:35:51 -0700169
Tao Bao91a7aa42017-05-01 15:57:38 -0700170 if (hdr->nodeid == FUSE_ROOT_ID) {
171 fill_attr(&(out.attr), fd, hdr->nodeid, 4096, S_IFDIR | 0555);
172 } else if (hdr->nodeid == PACKAGE_FILE_ID) {
173 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
174 } else if (hdr->nodeid == EXIT_FLAG_ID) {
175 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
176 } else {
177 return -ENOENT;
178 }
Doug Zongker075ad802014-06-26 15:35:51 -0700179
Tao Bao91a7aa42017-05-01 15:57:38 -0700180 fuse_reply(fd, hdr->unique, &out, sizeof(out));
181 return (hdr->nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700182}
183
Tao Bao91a7aa42017-05-01 15:57:38 -0700184static int handle_lookup(void* data, const fuse_data* fd, const fuse_in_header* hdr) {
185 if (data == nullptr) return -ENOENT;
Doug Zongker075ad802014-06-26 15:35:51 -0700186
bigbiffd58ba182020-03-23 10:02:29 -0400187 fuse_entry_out out = {};
Tao Bao91a7aa42017-05-01 15:57:38 -0700188 out.entry_valid = 10;
189 out.attr_valid = 10;
Doug Zongker075ad802014-06-26 15:35:51 -0700190
Tao Bao91a7aa42017-05-01 15:57:38 -0700191 std::string filename(static_cast<const char*>(data));
192 if (filename == FUSE_SIDELOAD_HOST_FILENAME) {
193 out.nodeid = PACKAGE_FILE_ID;
194 out.generation = PACKAGE_FILE_ID;
195 fill_attr(&(out.attr), fd, PACKAGE_FILE_ID, fd->file_size, S_IFREG | 0444);
196 } else if (filename == FUSE_SIDELOAD_HOST_EXIT_FLAG) {
197 out.nodeid = EXIT_FLAG_ID;
198 out.generation = EXIT_FLAG_ID;
199 fill_attr(&(out.attr), fd, EXIT_FLAG_ID, 0, S_IFREG | 0);
200 } else {
201 return -ENOENT;
202 }
203
204 fuse_reply(fd, hdr->unique, &out, sizeof(out));
205 return (out.nodeid == EXIT_FLAG_ID) ? NO_STATUS_EXIT : NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700206}
207
Tao Bao91a7aa42017-05-01 15:57:38 -0700208static int handle_open(void* /* data */, const fuse_data* fd, const fuse_in_header* hdr) {
209 if (hdr->nodeid == EXIT_FLAG_ID) return -EPERM;
210 if (hdr->nodeid != PACKAGE_FILE_ID) return -ENOENT;
Doug Zongker075ad802014-06-26 15:35:51 -0700211
bigbiffd58ba182020-03-23 10:02:29 -0400212 fuse_open_out out = {};
Tao Bao91a7aa42017-05-01 15:57:38 -0700213 out.fh = 10; // an arbitrary number; we always use the same handle
214 fuse_reply(fd, hdr->unique, &out, sizeof(out));
215 return NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700216}
217
Tao Bao91a7aa42017-05-01 15:57:38 -0700218static int handle_flush(void* /* data */, fuse_data* /* fd */, const fuse_in_header* /* hdr */) {
219 return 0;
Doug Zongker075ad802014-06-26 15:35:51 -0700220}
221
Tao Bao91a7aa42017-05-01 15:57:38 -0700222static int handle_release(void* /* data */, fuse_data* /* fd */, const fuse_in_header* /* hdr */) {
223 return 0;
Doug Zongker075ad802014-06-26 15:35:51 -0700224}
225
226// Fetch a block from the host into fd->curr_block and fd->block_data.
227// Returns 0 on successful fetch, negative otherwise.
luoqiangwei1cd1f4ca2021-09-16 18:25:23 +0800228static int fetch_block(fuse_data* fd, uint64_t block) {
Tao Bao91a7aa42017-05-01 15:57:38 -0700229 if (block == fd->curr_block) {
Doug Zongker075ad802014-06-26 15:35:51 -0700230 return 0;
Tao Bao91a7aa42017-05-01 15:57:38 -0700231 }
232
233 if (block >= fd->file_blocks) {
234 memset(fd->block_data, 0, fd->block_size);
235 fd->curr_block = block;
236 return 0;
237 }
238
xunchang5e6832a2019-03-15 16:04:32 -0700239 uint32_t fetch_size = fd->block_size;
Tao Bao91a7aa42017-05-01 15:57:38 -0700240 if (block * fd->block_size + fetch_size > fd->file_size) {
241 // If we're reading the last (partial) block of the file, expect a shorter response from the
242 // host, and pad the rest of the block with zeroes.
243 fetch_size = fd->file_size - (block * fd->block_size);
244 memset(fd->block_data + fetch_size, 0, fd->block_size - fetch_size);
245 }
246
xunchang5e6832a2019-03-15 16:04:32 -0700247 if (!fd->provider->ReadBlockAlignedData(fd->block_data, fetch_size, block)) {
xunchangea2912f2019-03-17 16:45:12 -0700248 return -EIO;
249 }
Tao Bao91a7aa42017-05-01 15:57:38 -0700250
251 fd->curr_block = block;
252
253 // Verify the hash of the block we just got from the host.
254 //
255 // - If the hash of the just-received data matches the stored hash for the block, accept it.
256 // - If the stored hash is all zeroes, store the new hash and accept the block (this is the first
257 // time we've read this block).
258 // - Otherwise, return -EINVAL for the read.
259
bigbiffd58ba182020-03-23 10:02:29 -0400260 SHA256Digest hash;
261 SHA256(fd->block_data, fd->block_size, hash.data());
262
263 const SHA256Digest& blockhash = fd->hashes[block];
264 if (hash == blockhash) {
Tao Bao91a7aa42017-05-01 15:57:38 -0700265 return 0;
266 }
267
bigbiffd58ba182020-03-23 10:02:29 -0400268 for (uint8_t i : blockhash) {
269 if (i != 0) {
Tao Bao91a7aa42017-05-01 15:57:38 -0700270 fd->curr_block = -1;
271 return -EIO;
272 }
273 }
274
bigbiffd58ba182020-03-23 10:02:29 -0400275 fd->hashes[block] = hash;
Tao Bao91a7aa42017-05-01 15:57:38 -0700276 return 0;
Doug Zongker075ad802014-06-26 15:35:51 -0700277}
278
Tao Bao91a7aa42017-05-01 15:57:38 -0700279static int handle_read(void* data, fuse_data* fd, const fuse_in_header* hdr) {
280 if (hdr->nodeid != PACKAGE_FILE_ID) return -ENOENT;
Doug Zongker075ad802014-06-26 15:35:51 -0700281
Tao Bao91a7aa42017-05-01 15:57:38 -0700282 const fuse_read_in* req = static_cast<const fuse_read_in*>(data);
283 uint64_t offset = req->offset;
284 uint32_t size = req->size;
Doug Zongker075ad802014-06-26 15:35:51 -0700285
Tao Bao91a7aa42017-05-01 15:57:38 -0700286 // The docs on the fuse kernel interface are vague about what to do when a read request extends
287 // past the end of the file. We can return a short read -- the return structure does include a
288 // length field -- but in testing that caused the program using the file to segfault. (I
289 // speculate that this is due to the reading program accessing it via mmap; maybe mmap dislikes
290 // when you return something short of a whole page?) To fix this we zero-pad reads that extend
291 // past the end of the file so we're always returning exactly as many bytes as were requested.
292 // (Users of the mapped file have to know its real length anyway.)
Doug Zongker075ad802014-06-26 15:35:51 -0700293
Tao Bao91a7aa42017-05-01 15:57:38 -0700294 fuse_out_header outhdr;
295 outhdr.len = sizeof(outhdr) + size;
296 outhdr.error = 0;
297 outhdr.unique = hdr->unique;
Doug Zongker075ad802014-06-26 15:35:51 -0700298
Tao Bao91a7aa42017-05-01 15:57:38 -0700299 struct iovec vec[3];
300 vec[0].iov_base = &outhdr;
301 vec[0].iov_len = sizeof(outhdr);
Doug Zongker075ad802014-06-26 15:35:51 -0700302
Tao Bao91a7aa42017-05-01 15:57:38 -0700303 uint32_t block = offset / fd->block_size;
304 int result = fetch_block(fd, block);
305 if (result != 0) return result;
306
307 // Two cases:
308 //
309 // - the read request is entirely within this block. In this case we can reply immediately.
310 //
311 // - the read request goes over into the next block. Note that since we mount the filesystem
312 // with max_read=block_size, a read can never span more than two blocks. In this case we copy
313 // the block to extra_block and issue a fetch for the following block.
314
315 uint32_t block_offset = offset - (block * fd->block_size);
316
317 int vec_used;
318 if (size + block_offset <= fd->block_size) {
319 // First case: the read fits entirely in the first block.
320
321 vec[1].iov_base = fd->block_data + block_offset;
322 vec[1].iov_len = size;
323 vec_used = 2;
324 } else {
325 // Second case: the read spills over into the next block.
326
327 memcpy(fd->extra_block, fd->block_data + block_offset, fd->block_size - block_offset);
328 vec[1].iov_base = fd->extra_block;
329 vec[1].iov_len = fd->block_size - block_offset;
330
331 result = fetch_block(fd, block + 1);
Doug Zongker075ad802014-06-26 15:35:51 -0700332 if (result != 0) return result;
Tao Bao91a7aa42017-05-01 15:57:38 -0700333 vec[2].iov_base = fd->block_data;
334 vec[2].iov_len = size - vec[1].iov_len;
335 vec_used = 3;
336 }
Doug Zongker075ad802014-06-26 15:35:51 -0700337
Tao Bao91a7aa42017-05-01 15:57:38 -0700338 if (writev(fd->ffd, vec, vec_used) == -1) {
339 printf("*** READ REPLY FAILED: %s ***\n", strerror(errno));
340 }
341 return NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700342}
343
xunchang5e6832a2019-03-15 16:04:32 -0700344int run_fuse_sideload(std::unique_ptr<FuseDataProvider>&& provider, const char* mount_point) {
Tao Baoed138192017-05-01 22:30:39 -0700345 // If something's already mounted on our mountpoint, try to remove it. (Mostly in case of a
346 // previous abnormal exit.)
Tao Bao91a7aa42017-05-01 15:57:38 -0700347 umount2(mount_point, MNT_FORCE);
Doug Zongker075ad802014-06-26 15:35:51 -0700348
xunchang5e6832a2019-03-15 16:04:32 -0700349 uint64_t file_size = provider->file_size();
350 uint32_t block_size = provider->fuse_block_size();
351
Tao Baoed138192017-05-01 22:30:39 -0700352 // fs/fuse/inode.c in kernel code uses the greater of 4096 and the passed-in max_read.
353 if (block_size < 4096) {
354 fprintf(stderr, "block size (%u) is too small\n", block_size);
355 return -1;
356 }
357 if (block_size > (1 << 22)) { // 4 MiB
358 fprintf(stderr, "block size (%u) is too large\n", block_size);
359 return -1;
360 }
Doug Zongker075ad802014-06-26 15:35:51 -0700361
Tao Bao91a7aa42017-05-01 15:57:38 -0700362 fuse_data fd = {};
xunchang5e6832a2019-03-15 16:04:32 -0700363 fd.provider = provider.get();
Tao Baoed138192017-05-01 22:30:39 -0700364 fd.file_size = file_size;
365 fd.block_size = block_size;
366 fd.file_blocks = (file_size == 0) ? 0 : (((file_size - 1) / block_size) + 1);
Doug Zongker075ad802014-06-26 15:35:51 -0700367
Tao Baoed138192017-05-01 22:30:39 -0700368 int result;
369 if (fd.file_blocks > (1 << 18)) {
370 fprintf(stderr, "file has too many blocks (%u)\n", fd.file_blocks);
371 result = -1;
372 goto done;
373 }
Doug Zongker075ad802014-06-26 15:35:51 -0700374
bigbiffd58ba182020-03-23 10:02:29 -0400375 // All hashes will be zero-initialized.
376 fd.hashes.resize(fd.file_blocks);
Tao Baoed138192017-05-01 22:30:39 -0700377 fd.uid = getuid();
378 fd.gid = getgid();
Doug Zongker075ad802014-06-26 15:35:51 -0700379
Tao Baoed138192017-05-01 22:30:39 -0700380 fd.curr_block = -1;
Tao Bao91a7aa42017-05-01 15:57:38 -0700381 fd.block_data = static_cast<uint8_t*>(malloc(block_size));
382 if (fd.block_data == nullptr) {
Tao Baoed138192017-05-01 22:30:39 -0700383 fprintf(stderr, "failed to allocate %d bites for block_data\n", block_size);
384 result = -1;
385 goto done;
386 }
Tao Bao91a7aa42017-05-01 15:57:38 -0700387 fd.extra_block = static_cast<uint8_t*>(malloc(block_size));
388 if (fd.extra_block == nullptr) {
Tao Baoed138192017-05-01 22:30:39 -0700389 fprintf(stderr, "failed to allocate %d bites for extra_block\n", block_size);
390 result = -1;
391 goto done;
392 }
Doug Zongker075ad802014-06-26 15:35:51 -0700393
Tao Bao91a7aa42017-05-01 15:57:38 -0700394 fd.ffd.reset(open("/dev/fuse", O_RDWR));
Bernie Innocenti8bd6f452019-03-28 15:48:08 +0900395 if (fd.ffd == -1) {
Tao Baoed138192017-05-01 22:30:39 -0700396 perror("open /dev/fuse");
397 result = -1;
398 goto done;
399 }
Doug Zongker075ad802014-06-26 15:35:51 -0700400
Tao Baoed138192017-05-01 22:30:39 -0700401 {
bigbiffd58ba182020-03-23 10:02:29 -0400402 std::string opts = android::base::StringPrintf(
403 "fd=%d,user_id=%d,group_id=%d,max_read=%u,allow_other,rootmode=040000", fd.ffd.get(),
404 fd.uid, fd.gid, block_size);
Doug Zongker075ad802014-06-26 15:35:51 -0700405
bigbiffd58ba182020-03-23 10:02:29 -0400406 result = mount("/dev/fuse", mount_point, "fuse", MS_NOSUID | MS_NODEV | MS_RDONLY | MS_NOEXEC,
407 opts.c_str());
408 if (result == -1) {
Tao Baoed138192017-05-01 22:30:39 -0700409 perror("mount");
410 goto done;
Doug Zongker075ad802014-06-26 15:35:51 -0700411 }
Tao Baoed138192017-05-01 22:30:39 -0700412 }
Doug Zongker075ad802014-06-26 15:35:51 -0700413
Tao Bao91a7aa42017-05-01 15:57:38 -0700414 uint8_t request_buffer[sizeof(fuse_in_header) + PATH_MAX * 8];
Tao Baoed138192017-05-01 22:30:39 -0700415 for (;;) {
416 ssize_t len = TEMP_FAILURE_RETRY(read(fd.ffd, request_buffer, sizeof(request_buffer)));
417 if (len == -1) {
418 perror("read request");
419 if (errno == ENODEV) {
420 result = -1;
421 break;
422 }
423 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700424 }
425
Tao Bao91a7aa42017-05-01 15:57:38 -0700426 if (static_cast<size_t>(len) < sizeof(fuse_in_header)) {
Tao Baoed138192017-05-01 22:30:39 -0700427 fprintf(stderr, "request too short: len=%zd\n", len);
428 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700429 }
430
Tao Bao91a7aa42017-05-01 15:57:38 -0700431 fuse_in_header* hdr = reinterpret_cast<fuse_in_header*>(request_buffer);
432 void* data = request_buffer + sizeof(fuse_in_header);
Doug Zongker075ad802014-06-26 15:35:51 -0700433
Tao Baoed138192017-05-01 22:30:39 -0700434 result = -ENOSYS;
435
436 switch (hdr->opcode) {
437 case FUSE_INIT:
438 result = handle_init(data, &fd, hdr);
439 break;
440
441 case FUSE_LOOKUP:
442 result = handle_lookup(data, &fd, hdr);
443 break;
444
445 case FUSE_GETATTR:
446 result = handle_getattr(data, &fd, hdr);
447 break;
448
449 case FUSE_OPEN:
450 result = handle_open(data, &fd, hdr);
451 break;
452
453 case FUSE_READ:
454 result = handle_read(data, &fd, hdr);
455 break;
456
457 case FUSE_FLUSH:
458 result = handle_flush(data, &fd, hdr);
459 break;
460
461 case FUSE_RELEASE:
462 result = handle_release(data, &fd, hdr);
463 break;
464
465 default:
466 fprintf(stderr, "unknown fuse request opcode %d\n", hdr->opcode);
467 break;
468 }
469
470 if (result == NO_STATUS_EXIT) {
471 result = 0;
472 break;
473 }
474
475 if (result != NO_STATUS) {
Tao Bao91a7aa42017-05-01 15:57:38 -0700476 fuse_out_header outhdr;
Tao Baoed138192017-05-01 22:30:39 -0700477 outhdr.len = sizeof(outhdr);
478 outhdr.error = result;
479 outhdr.unique = hdr->unique;
480 TEMP_FAILURE_RETRY(write(fd.ffd, &outhdr, sizeof(outhdr)));
481 }
482 }
483
484done:
xunchang5e6832a2019-03-15 16:04:32 -0700485 provider->Close();
Tao Baoed138192017-05-01 22:30:39 -0700486
Tao Bao91a7aa42017-05-01 15:57:38 -0700487 if (umount2(mount_point, MNT_DETACH) == -1) {
488 fprintf(stderr, "fuse_sideload umount failed: %s\n", strerror(errno));
Tao Baoed138192017-05-01 22:30:39 -0700489 }
490
Tao Baoed138192017-05-01 22:30:39 -0700491 free(fd.block_data);
492 free(fd.extra_block);
493
494 return result;
Doug Zongker075ad802014-06-26 15:35:51 -0700495}