blob: 07f5778deba60a3bf164660d4e787d9d64fbc92f [file] [log] [blame]
Yifan Hongf7760012021-06-04 16:04:42 -07001/*
2 * Copyright (C) 2021 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 "ServiceManagerHost.h"
18
19#include <android-base/parseint.h>
20#include <android-base/strings.h>
21#include <binder/IServiceManager.h>
22#include <binder/RpcSession.h>
23
24#include "UtilsHost.h"
25
26namespace android {
27
28namespace {
29
30const void* kDeviceServiceExtraId = "DeviceServiceExtra";
31
32// Parse stdout of program execution to string. If any error, return 0.
33unsigned int parsePortNumber(const std::string& out, const std::string& what) {
34 auto trimmed = android::base::Trim(out);
35 unsigned int port = 0;
36 if (!android::base::ParseUint(trimmed, &port)) {
37 int savedErrno = errno;
38 ALOGE("%s is not a valid %s: %s", trimmed.c_str(), what.c_str(), strerror(savedErrno));
39 return 0;
40 }
41 if (port == 0) {
42 ALOGE("0 is not a valid %s", what.c_str());
43 return 0; // explicitly
44 }
45 return port;
46}
47
48// RAII object for adb forwarding
49class AdbForwarder {
50public:
51 AdbForwarder() = default;
52 static std::optional<AdbForwarder> forward(unsigned int devicePort);
53 AdbForwarder(AdbForwarder&& other) noexcept { (*this) = std::move(other); }
54 AdbForwarder& operator=(AdbForwarder&&) noexcept;
55 ~AdbForwarder();
56 [[nodiscard]] const std::optional<unsigned int>& hostPort() const { return mPort; }
57
58private:
59 DISALLOW_COPY_AND_ASSIGN(AdbForwarder);
60 explicit AdbForwarder(unsigned int port) : mPort(port) {}
61 std::optional<unsigned int> mPort;
62};
63std::optional<AdbForwarder> AdbForwarder::forward(unsigned int devicePort) {
64 auto result =
65 execute({"adb", "forward", "tcp:0", "tcp:" + std::to_string(devicePort)}, nullptr);
66 if (!result.ok()) {
67 ALOGE("Unable to run `adb forward tcp:0 tcp:%d`: %s", devicePort,
68 result.error().message().c_str());
69 return std::nullopt;
70 }
71 // Must end with exit code 0 (`has_value() && value() == 0`)
72 if (result->exitCode.value_or(1) != 0) {
73 ALOGE("Unable to run `adb forward tcp:0 tcp:%d`, command exits with %s", devicePort,
74 result->toString().c_str());
75 return std::nullopt;
76 }
77 if (!result->stderr.empty()) {
78 LOG_HOST("`adb forward tcp:0 tcp:%d` writes to stderr: %s", devicePort,
79 result->stderr.c_str());
80 }
81
82 unsigned int hostPort = parsePortNumber(result->stdout, "host port");
83 if (hostPort == 0) return std::nullopt;
84
85 return AdbForwarder(hostPort);
86}
87
88AdbForwarder& AdbForwarder::operator=(AdbForwarder&& other) noexcept {
89 std::swap(mPort, other.mPort);
90 return *this;
91}
92
93AdbForwarder::~AdbForwarder() {
94 if (!mPort.has_value()) return;
95
96 auto result = execute({"adb", "forward", "--remove", "tcp:" + std::to_string(*mPort)}, nullptr);
97 if (!result.ok()) {
98 ALOGE("Unable to run `adb forward --remove tcp:%d`: %s", *mPort,
99 result.error().message().c_str());
100 return;
101 }
102 // Must end with exit code 0 (`has_value() && value() == 0`)
103 if (result->exitCode.value_or(1) != 0) {
104 ALOGE("Unable to run `adb forward --remove tcp:%d`, command exits with %s", *mPort,
105 result->toString().c_str());
106 return;
107 }
108 if (!result->stderr.empty()) {
109 LOG_HOST("`adb forward --remove tcp:%d` writes to stderr: %s", *mPort,
110 result->stderr.c_str());
111 }
112
113 LOG_HOST("Successfully run `adb forward --remove tcp:%d`", *mPort);
114}
115
116void cleanupCommandResult(const void* id, void* obj, void* /* cookie */) {
117 LOG_ALWAYS_FATAL_IF(id != kDeviceServiceExtraId,
118 "cleanupCommandResult invoked with mismatched ID %p, "
119 "expected %p",
120 id, kDeviceServiceExtraId);
121 auto ptr = static_cast<CommandResult*>(obj);
122 delete ptr;
123}
124
125} // namespace
126
127sp<IBinder> getDeviceService(std::vector<std::string>&& serviceDispatcherArgs) {
128 std::vector<std::string> prefix{"adb", "shell", "servicedispatcher"};
129 serviceDispatcherArgs.insert(serviceDispatcherArgs.begin(), prefix.begin(), prefix.end());
130
131 auto result = execute(std::move(serviceDispatcherArgs), &CommandResult::stdoutEndsWithNewLine);
132 if (!result.ok()) {
133 ALOGE("%s", result.error().message().c_str());
134 return nullptr;
135 }
136
137 // `servicedispatcher` process must be alive to keep the port open.
138 if (result->exitCode.has_value()) {
139 ALOGE("Command exits with: %s", result->toString().c_str());
140 return nullptr;
141 }
142 if (!result->stderr.empty()) {
143 LOG_HOST("servicedispatcher writes to stderr: %s", result->stderr.c_str());
144 }
145
146 if (!result->stdoutEndsWithNewLine()) {
147 ALOGE("Unexpected command result: %s", result->toString().c_str());
148 return nullptr;
149 }
150
151 unsigned int devicePort = parsePortNumber(result->stdout, "device port");
152 if (devicePort == 0) return nullptr;
153
154 auto forwardResult = AdbForwarder::forward(devicePort);
155 if (!forwardResult.has_value()) {
156 return nullptr;
157 }
158 LOG_ALWAYS_FATAL_IF(!forwardResult->hostPort().has_value());
159
160 auto rpcSession = RpcSession::make();
161 if (!rpcSession->setupInetClient("127.0.0.1", *forwardResult->hostPort())) {
162 ALOGE("Unable to set up inet client on host port %u", *forwardResult->hostPort());
163 return nullptr;
164 }
165 auto binder = rpcSession->getRootObject();
166 if (binder == nullptr) {
167 ALOGE("RpcSession::getRootObject returns nullptr");
168 return nullptr;
169 }
170 binder->attachObject(kDeviceServiceExtraId,
171 static_cast<void*>(new CommandResult(std::move(*result))), nullptr,
172 &cleanupCommandResult);
173 return binder;
174}
175
176} // namespace android