Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 1 | /* |
| 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 | #ifndef __FUSE_SIDELOAD_H |
| 18 | #define __FUSE_SIDELOAD_H |
| 19 | |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 20 | #ifdef USE_FUSE_SIDELOAD22 |
| 21 | #include "fuse_sideload22.h" |
| 22 | #else |
| 23 | |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 24 | #include <functional> |
| 25 | |
| 26 | // Define the filenames created by the sideload FUSE filesystem. |
| 27 | static constexpr const char* FUSE_SIDELOAD_HOST_MOUNTPOINT = "/sideload"; |
| 28 | static constexpr const char* FUSE_SIDELOAD_HOST_FILENAME = "package.zip"; |
| 29 | static constexpr const char* FUSE_SIDELOAD_HOST_PATHNAME = "/sideload/package.zip"; |
| 30 | static constexpr const char* FUSE_SIDELOAD_HOST_EXIT_FLAG = "exit"; |
| 31 | static constexpr const char* FUSE_SIDELOAD_HOST_EXIT_PATHNAME = "/sideload/exit"; |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 32 | |
| 33 | struct provider_vtab { |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 34 | // read a block |
| 35 | std::function<int(uint32_t block, uint8_t* buffer, uint32_t fetch_size)> read_block; |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 36 | |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 37 | // close down |
| 38 | std::function<void(void)> close; |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
Tao Bao | 91a7aa4 | 2017-05-01 15:57:38 -0700 | [diff] [blame] | 41 | int run_fuse_sideload(const provider_vtab& vtab, uint64_t file_size, uint32_t block_size, |
| 42 | const char* mount_point = FUSE_SIDELOAD_HOST_MOUNTPOINT); |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 43 | |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 44 | #ifdef __cplusplus |
| 45 | extern "C" { |
| 46 | #endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 47 | int run_old_fuse_sideload(const struct provider_vtab& vtab, void* cookie, |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 48 | uint64_t file_size, uint32_t block_size); |
| 49 | #ifdef __cplusplus |
| 50 | } |
| 51 | #endif |
| 52 | |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 53 | #endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 54 | |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 55 | #endif |