blob: ab1939e9238d9dec8b13c52d2db6dbcc8534c4a6 [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>
Tianjie Xu6af51a02017-04-19 14:00:52 -070025#include <string>
Josh Gao2aa0d3a2017-04-13 12:45:55 -070026#include <thread>
27
Doug Zongker9270a202012-01-09 15:16:13 -080028#include "adb.h"
Josh Gao038c4a12018-07-27 11:18:30 -070029#include "adb_unique_fd.h"
Dan Albert8f6eb5c2015-02-24 22:07:18 -080030#include "fdevent.h"
31#include "fuse_adb_provider.h"
Josh Gao038c4a12018-07-27 11:18:30 -070032#include "services.h"
Elliott Hughes24eb8a02016-06-15 15:12:17 -070033#include "sysdeps.h"
Doug Zongker9270a202012-01-09 15:16:13 -080034
Josh Gao038c4a12018-07-27 11:18:30 -070035static void sideload_host_service(unique_fd sfd, const std::string& args) {
Elliott Hughesba45ddf2015-04-27 18:39:27 -070036 int file_size;
37 int block_size;
Tianjie Xu6af51a02017-04-19 14:00:52 -070038 if (sscanf(args.c_str(), "%d:%d", &file_size, &block_size) != 2) {
39 printf("bad sideload-host arguments: %s\n", args.c_str());
Elliott Hughesba45ddf2015-04-27 18:39:27 -070040 exit(1);
41 }
Doug Zongker9270a202012-01-09 15:16:13 -080042
Elliott Hughesba45ddf2015-04-27 18:39:27 -070043 printf("sideload-host file size %d block size %d\n", file_size, block_size);
Doug Zongker9270a202012-01-09 15:16:13 -080044
Doug Zongker18a78e02014-07-10 07:31:46 -070045 int result = run_adb_fuse(sfd, file_size, block_size);
Doug Zongker9270a202012-01-09 15:16:13 -080046
Doug Zongker075ad802014-06-26 15:35:51 -070047 printf("sideload_host finished\n");
Doug Zongker075ad802014-06-26 15:35:51 -070048 exit(result == 0 ? 0 : 1);
Doug Zongker9270a202012-01-09 15:16:13 -080049}
50
Josh Gao038c4a12018-07-27 11:18:30 -070051unique_fd daemon_service_to_fd(const char* name, atransport* /* transport */) {
Tao Bao99f0d9e2016-10-13 12:46:38 -070052 if (!strncmp(name, "sideload:", 9)) {
53 // this exit status causes recovery to print a special error
54 // message saying to use a newer adb (that supports
55 // sideload-host).
56 exit(3);
57 } else if (!strncmp(name, "sideload-host:", 14)) {
58 std::string arg(name + 14);
Josh Gao038c4a12018-07-27 11:18:30 -070059 return create_service_thread("sideload-host",
60 std::bind(sideload_host_service, std::placeholders::_1, arg));
Tao Bao99f0d9e2016-10-13 12:46:38 -070061 }
Josh Gao038c4a12018-07-27 11:18:30 -070062 return unique_fd{};
Doug Zongker9270a202012-01-09 15:16:13 -080063}