1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
// Copyright 2023 Huawei Cloud Computing Technology Co., Ltd.
//
// Licensed 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.
#include "src/buildtool/execution_api/execution_service/server_implementation.hpp"
#include <iostream>
#include <memory>
#ifdef __unix__
#include <sys/types.h>
#else
#error "Non-unix is not supported yet"
#endif
#include "fmt/core.h"
#include "grpcpp/grpcpp.h"
#include "nlohmann/json.hpp"
#include "src/buildtool/common/remote/port.hpp"
#include "src/buildtool/compatibility/compatibility.hpp"
#include "src/buildtool/execution_api/execution_service/ac_server.hpp"
#include "src/buildtool/execution_api/execution_service/bytestream_server.hpp"
#include "src/buildtool/execution_api/execution_service/capabilities_server.hpp"
#include "src/buildtool/execution_api/execution_service/cas_server.hpp"
#include "src/buildtool/execution_api/execution_service/execution_server.hpp"
#include "src/buildtool/execution_api/execution_service/operations_server.hpp"
#include "src/buildtool/logging/log_level.hpp"
#include "src/buildtool/logging/logger.hpp"
namespace {
template <typename T>
auto TryWrite(std::string const& file, T const& content) noexcept -> bool {
std::ofstream of{file};
if (!of.good()) {
Logger::Log(LogLevel::Error,
"Could not open {}. Make sure to have write permissions",
file);
return false;
}
of << content;
return true;
}
} // namespace
auto ServerImpl::Create(std::optional<std::string> interface,
std::optional<int> port,
std::optional<std::string> info_file,
std::optional<std::string> pid_file) noexcept
-> std::optional<ServerImpl> {
ServerImpl server;
if (interface) {
server.interface_ = std::move(*interface);
}
if (port) {
auto parsed_port = ParsePort(*port);
if (parsed_port) {
server.port_ = static_cast<int>(*parsed_port);
}
else {
Logger::Log(LogLevel::Error, "Invalid port '{}'", *port);
return std::nullopt;
}
}
if (info_file) {
server.info_file_ = std::move(*info_file);
}
if (pid_file) {
server.pid_file_ = std::move(*pid_file);
}
return std::move(server);
}
auto ServerImpl::Run(gsl::not_null<LocalContext const*> const& local_context,
gsl::not_null<RemoteContext const*> const& remote_context,
ApiBundle const& apis,
std::optional<std::uint8_t> op_exponent) -> bool {
ExecutionServiceImpl es{local_context, &*apis.local, op_exponent};
ActionCacheServiceImpl ac{local_context};
CASServiceImpl cas{local_context};
BytestreamServiceImpl b{local_context};
CapabilitiesServiceImpl cap{};
OperarationsServiceImpl op{&es.GetOpCache()};
grpc::ServerBuilder builder;
builder.RegisterService(&es)
.RegisterService(&ac)
.RegisterService(&cas)
.RegisterService(&b)
.RegisterService(&cap)
.RegisterService(&op);
// check authentication credentials; currently only TLS/SSL is supported
std::shared_ptr<grpc::ServerCredentials> creds;
if (const auto* tls_auth =
std::get_if<Auth::TLS>(&remote_context->auth->method);
tls_auth != nullptr) {
auto tls_opts = grpc::SslServerCredentialsOptions{};
tls_opts.pem_root_certs = tls_auth->ca_cert;
grpc::SslServerCredentialsOptions::PemKeyCertPair keycert = {
tls_auth->server_key, tls_auth->server_cert};
tls_opts.pem_key_cert_pairs.emplace_back(keycert);
creds = grpc::SslServerCredentials(tls_opts);
}
else {
creds = grpc::InsecureServerCredentials();
}
builder.AddListeningPort(
fmt::format("{}:{}", interface_, port_), creds, &port_);
auto server = builder.BuildAndStart();
if (!server) {
Logger::Log(LogLevel::Error, "Could not start execution service");
return false;
}
auto pid = getpid();
nlohmann::json const& info = {
{"interface", interface_}, {"port", port_}, {"pid", pid}};
if (!pid_file_.empty()) {
if (!TryWrite(pid_file_, pid)) {
server->Shutdown();
return false;
}
}
auto const& info_str = nlohmann::to_string(info);
Logger::Log(LogLevel::Info,
fmt::format("{}execution service started: {}",
Compatibility::IsCompatible() ? "compatible " : "",
info_str));
if (!info_file_.empty()) {
if (!TryWrite(info_file_, info_str)) {
server->Shutdown();
return false;
}
}
server->Wait();
return true;
}
|