blob: d3986fde7eb3984e88bfb86336da4e895c618b92 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*!
* \file rpc_pipe_impl.cc
* \brief Pipe-based RPC channel.
*/
// Linux only for now, as linux is the most common usecase.
#if defined(__linux__) || defined(__ANDROID__)
#include <errno.h>
#include <signal.h>
#include <sys/types.h>
#include <tvm/ffi/function.h>
#include <tvm/ffi/reflection/registry.h>
#include <unistd.h>
#include <cstdlib>
#include <memory>
#include "../../support/pipe.h"
#include "rpc_endpoint.h"
#include "rpc_local_session.h"
namespace tvm {
namespace runtime {
class PipeChannel final : public RPCChannel {
public:
explicit PipeChannel(int readfd, int writefd, pid_t child_pid)
: readfd_(readfd), writefd_(writefd), child_pid_(child_pid) {}
~PipeChannel() { Close(); }
size_t Send(const void* data, size_t size) final {
ssize_t n = write(writefd_, data, size);
if (n == -1) {
TVM_FFI_THROW(InternalError) << "Pipe write error";
}
return static_cast<size_t>(n);
}
size_t Recv(void* data, size_t size) final {
ssize_t n = read(readfd_, data, size);
if (n == -1) {
TVM_FFI_THROW(InternalError) << "Pipe read error";
}
return static_cast<size_t>(n);
}
void Close() {
close(readfd_);
close(writefd_);
kill(child_pid_, SIGKILL);
}
private:
int readfd_;
int writefd_;
pid_t child_pid_;
};
ffi::Module CreatePipeClient(std::vector<std::string> cmd) {
int parent2child[2];
int child2parent[2];
TVM_FFI_ICHECK_EQ(pipe(parent2child), 0);
TVM_FFI_ICHECK_EQ(pipe(child2parent), 0);
int parent_read = child2parent[0];
int parent_write = parent2child[1];
int child_read = parent2child[0];
int child_write = child2parent[1];
pid_t pid = fork();
if (pid == 0) {
// child process
close(parent_read);
close(parent_write);
std::string sread_pipe = std::to_string(child_read);
std::string swrite_pipe = std::to_string(child_write);
std::vector<char*> argv;
for (auto& str : cmd) {
argv.push_back(str.data());
}
argv.push_back(sread_pipe.data());
argv.push_back(swrite_pipe.data());
argv.push_back(nullptr);
execvp(argv[0], &argv[0]);
}
// parent process
close(child_read);
close(child_write);
auto endpt = RPCEndpoint::Create(std::make_unique<PipeChannel>(parent_read, parent_write, pid),
"pipe", "pipe");
endpt->InitRemoteSession(ffi::PackedArgs(nullptr, 0));
return CreateRPCSessionModule(CreateClientSession(endpt));
}
TVM_FFI_STATIC_INIT_BLOCK() {
namespace refl = tvm::ffi::reflection;
refl::GlobalDef().def_packed("rpc.CreatePipeClient", [](ffi::PackedArgs args, ffi::Any* rv) {
std::vector<std::string> cmd;
for (int i = 0; i < args.size(); ++i) {
cmd.push_back(args[i].cast<std::string>());
}
*rv = CreatePipeClient(cmd);
});
}
} // namespace runtime
} // namespace tvm
#endif