blob: 6fe5c79bc278cefdf2f6a1a344b5b612c4899293 [file] [log] [blame]
Doug Zongker9270a202012-01-09 15:16:13 -08001/*
2 * Copyright (C) 2007 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
Doug Zongker9270a202012-01-09 15:16:13 -080017#include <errno.h>
Dan Albert8f6eb5c2015-02-24 22:07:18 -080018#include <inttypes.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <unistd.h>
Doug Zongker9270a202012-01-09 15:16:13 -080023
Josh Gao038c4a12018-07-27 11:18:30 -070024#include <functional>
xunchang5e6832a2019-03-15 16:04:32 -070025#include <memory>
Tianjie Xu6af51a02017-04-19 14:00:52 -070026#include <string>
Tao Bao5de19e22019-01-02 09:35:59 -080027#include <string_view>
Josh Gao2aa0d3a2017-04-13 12:45:55 -070028#include <thread>
29
Doug Zongker9270a202012-01-09 15:16:13 -080030#include "adb.h"
Josh Gao038c4a12018-07-27 11:18:30 -070031#include "adb_unique_fd.h"
Dan Albert8f6eb5c2015-02-24 22:07:18 -080032#include "fdevent.h"
33#include "fuse_adb_provider.h"
xunchang5e6832a2019-03-15 16:04:32 -070034#include "fuse_sideload.h"
Josh Gao038c4a12018-07-27 11:18:30 -070035#include "services.h"
Elliott Hughes24eb8a02016-06-15 15:12:17 -070036#include "sysdeps.h"
Doug Zongker9270a202012-01-09 15:16:13 -080037
Josh Gao038c4a12018-07-27 11:18:30 -070038static void sideload_host_service(unique_fd sfd, const std::string& args) {
katao77d61732018-09-20 20:34:05 +080039 int64_t file_size;
40 int block_size;
41 if ((sscanf(args.c_str(), "%" SCNd64 ":%d", &file_size, &block_size) != 2) || file_size <= 0 ||
42 block_size <= 0) {
43 printf("bad sideload-host arguments: %s\n", args.c_str());
44 exit(1);
45 }
Doug Zongker9270a202012-01-09 15:16:13 -080046
katao77d61732018-09-20 20:34:05 +080047 printf("sideload-host file size %" PRId64 " block size %d\n", file_size, block_size);
Doug Zongker9270a202012-01-09 15:16:13 -080048
xunchang5e6832a2019-03-15 16:04:32 -070049 auto adb_data_reader =
50 std::make_unique<FuseAdbDataProvider>(std::move(sfd), file_size, block_size);
51 int result = run_fuse_sideload(std::move(adb_data_reader));
Doug Zongker9270a202012-01-09 15:16:13 -080052
katao77d61732018-09-20 20:34:05 +080053 printf("sideload_host finished\n");
54 exit(result == 0 ? 0 : 1);
Doug Zongker9270a202012-01-09 15:16:13 -080055}
56
Tao Bao5de19e22019-01-02 09:35:59 -080057unique_fd daemon_service_to_fd(std::string_view name, atransport* /* transport */) {
58 if (name.starts_with("sideload:")) {
59 // This exit status causes recovery to print a special error message saying to use a newer adb
60 // (that supports sideload-host).
Tao Bao99f0d9e2016-10-13 12:46:38 -070061 exit(3);
Tao Bao5de19e22019-01-02 09:35:59 -080062 } else if (name.starts_with("sideload-host:")) {
63 std::string arg(name.substr(strlen("sideload-host:")));
Josh Gao038c4a12018-07-27 11:18:30 -070064 return create_service_thread("sideload-host",
65 std::bind(sideload_host_service, std::placeholders::_1, arg));
Tao Bao99f0d9e2016-10-13 12:46:38 -070066 }
Josh Gao038c4a12018-07-27 11:18:30 -070067 return unique_fd{};
Doug Zongker9270a202012-01-09 15:16:13 -080068}