Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | #include <errno.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 18 | #include <fcntl.h> |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 19 | #include <signal.h> |
| 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 22 | #include <strings.h> |
| 23 | |
| 24 | #include <android-base/logging.h> |
| 25 | #include <android-base/parseint.h> |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 26 | |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 27 | #include "adb.h" |
Elliott Hughes | 9813f5b | 2015-06-23 11:12:58 -0700 | [diff] [blame] | 28 | #include "adb_auth.h" |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 29 | #include "transport.h" |
| 30 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 31 | #include "minadbd_services.h" |
| 32 | #include "minadbd_types.h" |
Dan Albert | f3a5726 | 2015-02-19 13:21:14 -0800 | [diff] [blame] | 33 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 34 | int main(int argc, char** argv) { |
| 35 | android::base::InitLogging(argv, &android::base::StderrLogger); |
| 36 | // TODO(xunchang) implement a command parser |
| 37 | if (argc != 3 || strcmp("--socket_fd", argv[1]) != 0) { |
| 38 | LOG(ERROR) << "minadbd has invalid arguments, argc: " << argc; |
| 39 | exit(kMinadbdArgumentsParsingError); |
| 40 | } |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 41 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 42 | int socket_fd; |
| 43 | if (!android::base::ParseInt(argv[2], &socket_fd)) { |
| 44 | LOG(ERROR) << "Failed to parse int in " << argv[2]; |
| 45 | exit(kMinadbdArgumentsParsingError); |
| 46 | } |
| 47 | if (fcntl(socket_fd, F_GETFD, 0) == -1) { |
| 48 | PLOG(ERROR) << "Failed to get minadbd socket"; |
| 49 | exit(kMinadbdSocketIOError); |
| 50 | } |
| 51 | SetMinadbdSocketFd(socket_fd); |
Elliott Hughes | 9813f5b | 2015-06-23 11:12:58 -0700 | [diff] [blame] | 52 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 53 | adb_device_banner = "sideload"; |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 54 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 55 | signal(SIGPIPE, SIG_IGN); |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 56 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame^] | 57 | // We can't require authentication for sideloading. http://b/22025550. |
| 58 | auth_required = false; |
| 59 | |
| 60 | init_transport_registration(); |
| 61 | usb_init(); |
| 62 | |
| 63 | VLOG(ADB) << "Event loop starting"; |
| 64 | fdevent_loop(); |
| 65 | |
| 66 | return 0; |
Dan Albert | 9a894b7 | 2015-02-18 18:36:08 -0800 | [diff] [blame] | 67 | } |