blob: 1c7e98f0159364982dd4eeeb5e9a1ff391b32b79 [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>
Tao Bao91a7aa42017-05-01 15:57:38 -070048#include <limits.h> // PATH_MAX
Doug Zongker075ad802014-06-26 15:35:51 -070049#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>
Tao Baoed138192017-05-01 22:30:39 -070063
64#include <android-base/stringprintf.h>
Tao Bao91a7aa42017-05-01 15:57:38 -070065#include <android-base/unique_fd.h>
Mattias Nissler452df6d2016-04-04 16:17:01 +020066#include <openssl/sha.h>
67
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 {
Tao Bao91a7aa42017-05-01 15:57:38 -070077 android::base::unique_fd ffd; // file descriptor for the fuse socket
Doug Zongker18a78e02014-07-10 07:31:46 -070078
Tao Bao91a7aa42017-05-01 15:57:38 -070079 provider_vtab vtab;
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
Tao Bao91a7aa42017-05-01 15:57:38 -070094 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) {
154 *attr = {};
155 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) {
167 fuse_attr_out out = {};
168 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
Tao Bao91a7aa42017-05-01 15:57:38 -0700187 fuse_entry_out out = {};
188 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
Tao Bao91a7aa42017-05-01 15:57:38 -0700212 fuse_open_out out = {};
213 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.
Tao Bao91a7aa42017-05-01 15:57:38 -0700228static int fetch_block(fuse_data* fd, uint32_t block) {
229 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
239 size_t fetch_size = fd->block_size;
240 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
247 int result = fd->vtab.read_block(block, fd->block_data, fetch_size);
248 if (result < 0) return result;
249
250 fd->curr_block = block;
251
252 // Verify the hash of the block we just got from the host.
253 //
254 // - If the hash of the just-received data matches the stored hash for the block, accept it.
255 // - If the stored hash is all zeroes, store the new hash and accept the block (this is the first
256 // time we've read this block).
257 // - Otherwise, return -EINVAL for the read.
258
259 SHA256Digest hash;
260 SHA256(fd->block_data, fd->block_size, hash.data());
261
262 const SHA256Digest& blockhash = fd->hashes[block];
263 if (hash == blockhash) {
264 return 0;
265 }
266
267 for (uint8_t i : blockhash) {
268 if (i != 0) {
269 fd->curr_block = -1;
270 return -EIO;
271 }
272 }
273
274 fd->hashes[block] = hash;
275 return 0;
Doug Zongker075ad802014-06-26 15:35:51 -0700276}
277
Tao Bao91a7aa42017-05-01 15:57:38 -0700278static int handle_read(void* data, fuse_data* fd, const fuse_in_header* hdr) {
279 if (hdr->nodeid != PACKAGE_FILE_ID) return -ENOENT;
Doug Zongker075ad802014-06-26 15:35:51 -0700280
Tao Bao91a7aa42017-05-01 15:57:38 -0700281 const fuse_read_in* req = static_cast<const fuse_read_in*>(data);
282 uint64_t offset = req->offset;
283 uint32_t size = req->size;
Doug Zongker075ad802014-06-26 15:35:51 -0700284
Tao Bao91a7aa42017-05-01 15:57:38 -0700285 // The docs on the fuse kernel interface are vague about what to do when a read request extends
286 // past the end of the file. We can return a short read -- the return structure does include a
287 // length field -- but in testing that caused the program using the file to segfault. (I
288 // speculate that this is due to the reading program accessing it via mmap; maybe mmap dislikes
289 // when you return something short of a whole page?) To fix this we zero-pad reads that extend
290 // past the end of the file so we're always returning exactly as many bytes as were requested.
291 // (Users of the mapped file have to know its real length anyway.)
Doug Zongker075ad802014-06-26 15:35:51 -0700292
Tao Bao91a7aa42017-05-01 15:57:38 -0700293 fuse_out_header outhdr;
294 outhdr.len = sizeof(outhdr) + size;
295 outhdr.error = 0;
296 outhdr.unique = hdr->unique;
Doug Zongker075ad802014-06-26 15:35:51 -0700297
Tao Bao91a7aa42017-05-01 15:57:38 -0700298 struct iovec vec[3];
299 vec[0].iov_base = &outhdr;
300 vec[0].iov_len = sizeof(outhdr);
Doug Zongker075ad802014-06-26 15:35:51 -0700301
Tao Bao91a7aa42017-05-01 15:57:38 -0700302 uint32_t block = offset / fd->block_size;
303 int result = fetch_block(fd, block);
304 if (result != 0) return result;
305
306 // Two cases:
307 //
308 // - the read request is entirely within this block. In this case we can reply immediately.
309 //
310 // - the read request goes over into the next block. Note that since we mount the filesystem
311 // with max_read=block_size, a read can never span more than two blocks. In this case we copy
312 // the block to extra_block and issue a fetch for the following block.
313
314 uint32_t block_offset = offset - (block * fd->block_size);
315
316 int vec_used;
317 if (size + block_offset <= fd->block_size) {
318 // First case: the read fits entirely in the first block.
319
320 vec[1].iov_base = fd->block_data + block_offset;
321 vec[1].iov_len = size;
322 vec_used = 2;
323 } else {
324 // Second case: the read spills over into the next block.
325
326 memcpy(fd->extra_block, fd->block_data + block_offset, fd->block_size - block_offset);
327 vec[1].iov_base = fd->extra_block;
328 vec[1].iov_len = fd->block_size - block_offset;
329
330 result = fetch_block(fd, block + 1);
Doug Zongker075ad802014-06-26 15:35:51 -0700331 if (result != 0) return result;
Tao Bao91a7aa42017-05-01 15:57:38 -0700332 vec[2].iov_base = fd->block_data;
333 vec[2].iov_len = size - vec[1].iov_len;
334 vec_used = 3;
335 }
Doug Zongker075ad802014-06-26 15:35:51 -0700336
Tao Bao91a7aa42017-05-01 15:57:38 -0700337 if (writev(fd->ffd, vec, vec_used) == -1) {
338 printf("*** READ REPLY FAILED: %s ***\n", strerror(errno));
339 }
340 return NO_STATUS;
Doug Zongker075ad802014-06-26 15:35:51 -0700341}
342
Tao Bao91a7aa42017-05-01 15:57:38 -0700343int run_fuse_sideload(const provider_vtab& vtab, uint64_t file_size, uint32_t block_size,
344 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
Tao Baoed138192017-05-01 22:30:39 -0700349 // fs/fuse/inode.c in kernel code uses the greater of 4096 and the passed-in max_read.
350 if (block_size < 4096) {
351 fprintf(stderr, "block size (%u) is too small\n", block_size);
352 return -1;
353 }
354 if (block_size > (1 << 22)) { // 4 MiB
355 fprintf(stderr, "block size (%u) is too large\n", block_size);
356 return -1;
357 }
Doug Zongker075ad802014-06-26 15:35:51 -0700358
Tao Bao91a7aa42017-05-01 15:57:38 -0700359 fuse_data fd = {};
Tao Baoed138192017-05-01 22:30:39 -0700360 fd.vtab = vtab;
Tao Baoed138192017-05-01 22:30:39 -0700361 fd.file_size = file_size;
362 fd.block_size = block_size;
363 fd.file_blocks = (file_size == 0) ? 0 : (((file_size - 1) / block_size) + 1);
Doug Zongker075ad802014-06-26 15:35:51 -0700364
Tao Baoed138192017-05-01 22:30:39 -0700365 int result;
366 if (fd.file_blocks > (1 << 18)) {
367 fprintf(stderr, "file has too many blocks (%u)\n", fd.file_blocks);
368 result = -1;
369 goto done;
370 }
Doug Zongker075ad802014-06-26 15:35:51 -0700371
Tao Bao91a7aa42017-05-01 15:57:38 -0700372 // All hashes will be zero-initialized.
373 fd.hashes.resize(fd.file_blocks);
Tao Baoed138192017-05-01 22:30:39 -0700374 fd.uid = getuid();
375 fd.gid = getgid();
Doug Zongker075ad802014-06-26 15:35:51 -0700376
Tao Baoed138192017-05-01 22:30:39 -0700377 fd.curr_block = -1;
Tao Bao91a7aa42017-05-01 15:57:38 -0700378 fd.block_data = static_cast<uint8_t*>(malloc(block_size));
379 if (fd.block_data == nullptr) {
Tao Baoed138192017-05-01 22:30:39 -0700380 fprintf(stderr, "failed to allocate %d bites for block_data\n", block_size);
381 result = -1;
382 goto done;
383 }
Tao Bao91a7aa42017-05-01 15:57:38 -0700384 fd.extra_block = static_cast<uint8_t*>(malloc(block_size));
385 if (fd.extra_block == nullptr) {
Tao Baoed138192017-05-01 22:30:39 -0700386 fprintf(stderr, "failed to allocate %d bites for extra_block\n", block_size);
387 result = -1;
388 goto done;
389 }
Doug Zongker075ad802014-06-26 15:35:51 -0700390
Tao Bao91a7aa42017-05-01 15:57:38 -0700391 fd.ffd.reset(open("/dev/fuse", O_RDWR));
392 if (!fd.ffd) {
Tao Baoed138192017-05-01 22:30:39 -0700393 perror("open /dev/fuse");
394 result = -1;
395 goto done;
396 }
Doug Zongker075ad802014-06-26 15:35:51 -0700397
Tao Baoed138192017-05-01 22:30:39 -0700398 {
399 std::string opts = android::base::StringPrintf(
Tao Bao91a7aa42017-05-01 15:57:38 -0700400 "fd=%d,user_id=%d,group_id=%d,max_read=%u,allow_other,rootmode=040000", fd.ffd.get(),
401 fd.uid, fd.gid, block_size);
Doug Zongker075ad802014-06-26 15:35:51 -0700402
Tao Bao91a7aa42017-05-01 15:57:38 -0700403 result = mount("/dev/fuse", mount_point, "fuse", MS_NOSUID | MS_NODEV | MS_RDONLY | MS_NOEXEC,
404 opts.c_str());
405 if (result == -1) {
Tao Baoed138192017-05-01 22:30:39 -0700406 perror("mount");
407 goto done;
Doug Zongker075ad802014-06-26 15:35:51 -0700408 }
Tao Baoed138192017-05-01 22:30:39 -0700409 }
Doug Zongker075ad802014-06-26 15:35:51 -0700410
Tao Bao91a7aa42017-05-01 15:57:38 -0700411 uint8_t request_buffer[sizeof(fuse_in_header) + PATH_MAX * 8];
Tao Baoed138192017-05-01 22:30:39 -0700412 for (;;) {
413 ssize_t len = TEMP_FAILURE_RETRY(read(fd.ffd, request_buffer, sizeof(request_buffer)));
414 if (len == -1) {
415 perror("read request");
416 if (errno == ENODEV) {
417 result = -1;
418 break;
419 }
420 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700421 }
422
Tao Bao91a7aa42017-05-01 15:57:38 -0700423 if (static_cast<size_t>(len) < sizeof(fuse_in_header)) {
Tao Baoed138192017-05-01 22:30:39 -0700424 fprintf(stderr, "request too short: len=%zd\n", len);
425 continue;
Doug Zongker075ad802014-06-26 15:35:51 -0700426 }
427
Tao Bao91a7aa42017-05-01 15:57:38 -0700428 fuse_in_header* hdr = reinterpret_cast<fuse_in_header*>(request_buffer);
429 void* data = request_buffer + sizeof(fuse_in_header);
Doug Zongker075ad802014-06-26 15:35:51 -0700430
Tao Baoed138192017-05-01 22:30:39 -0700431 result = -ENOSYS;
432
433 switch (hdr->opcode) {
434 case FUSE_INIT:
435 result = handle_init(data, &fd, hdr);
436 break;
437
438 case FUSE_LOOKUP:
439 result = handle_lookup(data, &fd, hdr);
440 break;
441
442 case FUSE_GETATTR:
443 result = handle_getattr(data, &fd, hdr);
444 break;
445
446 case FUSE_OPEN:
447 result = handle_open(data, &fd, hdr);
448 break;
449
450 case FUSE_READ:
451 result = handle_read(data, &fd, hdr);
452 break;
453
454 case FUSE_FLUSH:
455 result = handle_flush(data, &fd, hdr);
456 break;
457
458 case FUSE_RELEASE:
459 result = handle_release(data, &fd, hdr);
460 break;
461
462 default:
463 fprintf(stderr, "unknown fuse request opcode %d\n", hdr->opcode);
464 break;
465 }
466
467 if (result == NO_STATUS_EXIT) {
468 result = 0;
469 break;
470 }
471
472 if (result != NO_STATUS) {
Tao Bao91a7aa42017-05-01 15:57:38 -0700473 fuse_out_header outhdr;
Tao Baoed138192017-05-01 22:30:39 -0700474 outhdr.len = sizeof(outhdr);
475 outhdr.error = result;
476 outhdr.unique = hdr->unique;
477 TEMP_FAILURE_RETRY(write(fd.ffd, &outhdr, sizeof(outhdr)));
478 }
479 }
480
481done:
Tao Bao91a7aa42017-05-01 15:57:38 -0700482 fd.vtab.close();
Tao Baoed138192017-05-01 22:30:39 -0700483
Tao Bao91a7aa42017-05-01 15:57:38 -0700484 if (umount2(mount_point, MNT_DETACH) == -1) {
485 fprintf(stderr, "fuse_sideload umount failed: %s\n", strerror(errno));
Tao Baoed138192017-05-01 22:30:39 -0700486 }
487
Tao Baoed138192017-05-01 22:30:39 -0700488 free(fd.block_data);
489 free(fd.extra_block);
490
491 return result;
Doug Zongker075ad802014-06-26 15:35:51 -0700492}