blob: cad55fb439e8c1e9a982b76cad5987d1629b4e12 [file] [log] [blame]
Victor Hsiehd35d31d2021-06-03 11:24:31 -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 <android-base/logging.h>
Inseob Kime12fccc2021-09-02 17:23:33 +090018#include <android-base/unique_fd.h>
Victor Hsiehd35d31d2021-06-03 11:24:31 -070019#include <android/binder_libbinder.h>
20#include <binder/RpcServer.h>
21#include <binder/RpcSession.h>
22
Steven Moreland2372f9d2021-08-05 15:42:01 -070023using android::OK;
Victor Hsiehd35d31d2021-06-03 11:24:31 -070024using android::RpcServer;
25using android::RpcSession;
Steven Moreland2372f9d2021-08-05 15:42:01 -070026using android::status_t;
27using android::statusToString;
Inseob Kime12fccc2021-09-02 17:23:33 +090028using android::base::unique_fd;
Victor Hsiehd35d31d2021-06-03 11:24:31 -070029
30extern "C" {
31
Inseob Kim172473f2021-09-07 21:01:33 +090032bool RunRpcServerCallback(AIBinder* service, unsigned int port, void (*readyCallback)(void* param),
33 void* param) {
Victor Hsiehd35d31d2021-06-03 11:24:31 -070034 auto server = RpcServer::make();
35 server->iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction();
Steven Moreland2372f9d2021-08-05 15:42:01 -070036 if (status_t status = server->setupVsockServer(port); status != OK) {
37 LOG(ERROR) << "Failed to set up vsock server with port " << port
38 << " error: " << statusToString(status).c_str();
Victor Hsiehd35d31d2021-06-03 11:24:31 -070039 return false;
40 }
41 server->setRootObject(AIBinder_toPlatformBinder(service));
Inseob Kim172473f2021-09-07 21:01:33 +090042
43 if (readyCallback) readyCallback(param);
Victor Hsiehd35d31d2021-06-03 11:24:31 -070044 server->join();
45
46 // Shutdown any open sessions since server failed.
47 (void)server->shutdown();
48 return true;
49}
50
Inseob Kim172473f2021-09-07 21:01:33 +090051bool RunRpcServer(AIBinder* service, unsigned int port) {
52 return RunRpcServerCallback(service, port, nullptr, nullptr);
53}
54
Victor Hsiehd35d31d2021-06-03 11:24:31 -070055AIBinder* RpcClient(unsigned int cid, unsigned int port) {
56 auto session = RpcSession::make();
Steven Moreland2372f9d2021-08-05 15:42:01 -070057 if (status_t status = session->setupVsockClient(cid, port); status != OK) {
58 LOG(ERROR) << "Failed to set up vsock client with CID " << cid << " and port " << port
59 << " error: " << statusToString(status).c_str();
Victor Hsiehd35d31d2021-06-03 11:24:31 -070060 return nullptr;
61 }
62 return AIBinder_fromPlatformBinder(session->getRootObject());
63}
Inseob Kime12fccc2021-09-02 17:23:33 +090064
65AIBinder* RpcPreconnectedClient(int (*requestFd)(void* param), void* param) {
66 auto session = RpcSession::make();
67 auto request = [=] { return unique_fd{requestFd(param)}; };
68 if (status_t status = session->setupPreconnectedClient(unique_fd{}, request); status != OK) {
69 LOG(ERROR) << "Failed to set up vsock client. error: " << statusToString(status).c_str();
70 return nullptr;
71 }
72 return AIBinder_fromPlatformBinder(session->getRootObject());
73}
Victor Hsiehd35d31d2021-06-03 11:24:31 -070074}