Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1 | /* |
| 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 Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 17 | #include <errno.h> |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 18 | #include <inttypes.h> |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <unistd.h> |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 23 | |
| 24 | #include "sysdeps.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 25 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 26 | #include "adb.h" |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 27 | #include "fdevent.h" |
| 28 | #include "fuse_adb_provider.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 29 | |
| 30 | typedef struct stinfo stinfo; |
| 31 | |
| 32 | struct stinfo { |
| 33 | void (*func)(int fd, void *cookie); |
| 34 | int fd; |
| 35 | void *cookie; |
| 36 | }; |
| 37 | |
Josh Gao | cc07b35 | 2016-02-12 15:00:52 -0800 | [diff] [blame] | 38 | void service_bootstrap_func(void* x) { |
Elliott Hughes | 20531ef | 2015-04-10 13:59:19 -0700 | [diff] [blame] | 39 | stinfo* sti = reinterpret_cast<stinfo*>(x); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 40 | sti->func(sti->fd, sti->cookie); |
| 41 | free(sti); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 42 | } |
| 43 | |
Elliott Hughes | ba45ddf | 2015-04-27 18:39:27 -0700 | [diff] [blame] | 44 | static void sideload_host_service(int sfd, void* data) { |
Yabin Cui | c8a3c80 | 2015-09-29 18:05:30 -0700 | [diff] [blame] | 45 | char* args = reinterpret_cast<char*>(data); |
Elliott Hughes | ba45ddf | 2015-04-27 18:39:27 -0700 | [diff] [blame] | 46 | int file_size; |
| 47 | int block_size; |
| 48 | if (sscanf(args, "%d:%d", &file_size, &block_size) != 2) { |
| 49 | printf("bad sideload-host arguments: %s\n", args); |
| 50 | exit(1); |
| 51 | } |
Yabin Cui | c8a3c80 | 2015-09-29 18:05:30 -0700 | [diff] [blame] | 52 | free(args); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 53 | |
Elliott Hughes | ba45ddf | 2015-04-27 18:39:27 -0700 | [diff] [blame] | 54 | printf("sideload-host file size %d block size %d\n", file_size, block_size); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 55 | |
Doug Zongker | 18a78e0 | 2014-07-10 07:31:46 -0700 | [diff] [blame] | 56 | int result = run_adb_fuse(sfd, file_size, block_size); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 57 | |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 58 | printf("sideload_host finished\n"); |
| 59 | sleep(1); |
| 60 | exit(result == 0 ? 0 : 1); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 61 | } |
| 62 | |
Elliott Hughes | 921431f | 2015-05-05 14:37:53 -0700 | [diff] [blame] | 63 | static int create_service_thread(void (*func)(int, void *), void *cookie) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 64 | int s[2]; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 65 | if(adb_socketpair(s)) { |
| 66 | printf("cannot create service socket pair\n"); |
| 67 | return -1; |
| 68 | } |
| 69 | |
Elliott Hughes | 20531ef | 2015-04-10 13:59:19 -0700 | [diff] [blame] | 70 | stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo))); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 71 | if(sti == 0) fatal("cannot allocate stinfo"); |
| 72 | sti->func = func; |
| 73 | sti->cookie = cookie; |
| 74 | sti->fd = s[1]; |
| 75 | |
Elliott Hughes | 921431f | 2015-05-05 14:37:53 -0700 | [diff] [blame] | 76 | if (!adb_thread_create(service_bootstrap_func, sti)) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 77 | free(sti); |
| 78 | adb_close(s[0]); |
| 79 | adb_close(s[1]); |
| 80 | printf("cannot create service thread\n"); |
| 81 | return -1; |
| 82 | } |
| 83 | |
Yabin Cui | 7c913e5 | 2015-09-23 16:03:11 -0700 | [diff] [blame] | 84 | VLOG(SERVICES) << "service thread started, " << s[0] << ":" << s[1]; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 85 | return s[0]; |
| 86 | } |
| 87 | |
David Pursell | c3d4d53 | 2015-08-25 12:50:47 -0700 | [diff] [blame] | 88 | int service_to_fd(const char* name, const atransport* transport) { |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 89 | int ret = -1; |
| 90 | |
| 91 | if (!strncmp(name, "sideload:", 9)) { |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 92 | // this exit status causes recovery to print a special error |
| 93 | // message saying to use a newer adb (that supports |
| 94 | // sideload-host). |
| 95 | exit(3); |
| 96 | } else if (!strncmp(name, "sideload-host:", 14)) { |
Yabin Cui | c8a3c80 | 2015-09-29 18:05:30 -0700 | [diff] [blame] | 97 | char* arg = strdup(name + 14); |
| 98 | ret = create_service_thread(sideload_host_service, arg); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 99 | } |
| 100 | if (ret >= 0) { |
| 101 | close_on_exec(ret); |
| 102 | } |
| 103 | return ret; |
| 104 | } |