blob: 1ea1eb8d851f83954fd6e2081bd3d2135a62c504 [file] [log] [blame]
Doug Zongker18a78e02014-07-10 07:31:46 -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#ifndef __FUSE_SIDELOAD_H
18#define __FUSE_SIDELOAD_H
19
Ethan Yonker58f21322018-08-24 11:17:36 -050020#ifdef USE_FUSE_SIDELOAD22
21#include "fuse_sideload22.h"
22#else
23
Tao Bao91a7aa42017-05-01 15:57:38 -070024#include <functional>
25
26// Define the filenames created by the sideload FUSE filesystem.
27static constexpr const char* FUSE_SIDELOAD_HOST_MOUNTPOINT = "/sideload";
28static constexpr const char* FUSE_SIDELOAD_HOST_FILENAME = "package.zip";
29static constexpr const char* FUSE_SIDELOAD_HOST_PATHNAME = "/sideload/package.zip";
30static constexpr const char* FUSE_SIDELOAD_HOST_EXIT_FLAG = "exit";
31static constexpr const char* FUSE_SIDELOAD_HOST_EXIT_PATHNAME = "/sideload/exit";
Doug Zongker18a78e02014-07-10 07:31:46 -070032
33struct provider_vtab {
Tao Bao91a7aa42017-05-01 15:57:38 -070034 // read a block
35 std::function<int(uint32_t block, uint8_t* buffer, uint32_t fetch_size)> read_block;
Doug Zongker18a78e02014-07-10 07:31:46 -070036
Tao Bao91a7aa42017-05-01 15:57:38 -070037 // close down
38 std::function<void(void)> close;
Doug Zongker18a78e02014-07-10 07:31:46 -070039};
40
Tao Bao91a7aa42017-05-01 15:57:38 -070041int 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 Zongker18a78e02014-07-10 07:31:46 -070043
Ethan Yonkerf1179622016-08-25 15:32:21 -050044#ifdef __cplusplus
45extern "C" {
46#endif
Ethan Yonker58f21322018-08-24 11:17:36 -050047int run_old_fuse_sideload(const struct provider_vtab& vtab, void* cookie,
Ethan Yonkerf1179622016-08-25 15:32:21 -050048 uint64_t file_size, uint32_t block_size);
49#ifdef __cplusplus
50}
51#endif
52
Doug Zongker18a78e02014-07-10 07:31:46 -070053#endif
Ethan Yonker58f21322018-08-24 11:17:36 -050054
Doug Zongker18a78e02014-07-10 07:31:46 -070055#endif