-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathtest_server.cpp
More file actions
296 lines (245 loc) · 7.22 KB
/
Copy pathtest_server.cpp
File metadata and controls
296 lines (245 loc) · 7.22 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#include "test_server.h"
#include <cloud/storage/core/libs/common/error.h>
#include <cloud/storage/core/libs/grpc/init.h>
#include <cloud/blockstore/public/api/grpc/service.grpc.pb.h>
#include <contrib/libs/grpc/include/grpcpp/completion_queue.h>
#include <contrib/libs/grpc/include/grpcpp/impl/codegen/status.h>
#include <contrib/libs/grpc/include/grpcpp/security/server_credentials.h>
#include <contrib/libs/grpc/include/grpcpp/server.h>
#include <contrib/libs/grpc/include/grpcpp/server_builder.h>
#include <util/generic/yexception.h>
#include <util/stream/file.h>
#include <util/string/printf.h>
#include <util/system/mutex.h>
#include <util/thread/factory.h>
#include <chrono>
namespace NCloud::NBlockStore::NDiscovery {
namespace {
////////////////////////////////////////////////////////////////////////////////
TString ReadFile(const TString& name)
{
return TFileInput(name).ReadAll();
}
////////////////////////////////////////////////////////////////////////////////
struct TRequestContext
{
NProto::TPingRequest Request;
NProto::TPingResponse Response;
grpc::ServerContext ServerContext;
grpc::ServerAsyncResponseWriter<NProto::TPingResponse> Writer;
bool Done = false;
TRequestContext(
NProto::TBlockStoreService::AsyncService& service,
grpc::ServerCompletionQueue& cq)
: Writer(&ServerContext)
{
service.RequestPing(
&ServerContext,
&Request,
&Writer,
&cq,
&cq,
this
);
}
};
} // namespace
////////////////////////////////////////////////////////////////////////////////
struct TFakeBlockStoreServer::TImpl
{
TGrpcInitializer GrpcInitializer;
ui16 Port;
ui16 SecurePort;
TString RootCertsFile;
TString KeyFile;
TString CertFile;
NProto::TBlockStoreService::AsyncService Service;
std::unique_ptr<grpc::ServerCompletionQueue> CQ;
std::unique_ptr<grpc::Server> Server;
THolder<IThreadFactory::IThread> Thread;
// response
TMutex Lock;
TString ErrorMessage;
ui32 LastByteCount = 0;
bool DropPingRequests = false;
TVector<std::unique_ptr<TRequestContext>> DroppedRequests;
TAtomic ShouldStop = 0;
TImpl(
ui16 port,
ui16 securePort,
const TString& rootCertsFile,
const TString& keyFile,
const TString& certFile)
: Port(port)
, SecurePort(securePort)
, RootCertsFile(rootCertsFile)
, KeyFile(keyFile)
, CertFile(certFile)
{
}
~TImpl()
{
with_lock (Lock) {
DropPingRequests = false;
DroppedRequests.clear();
}
if (Server) {
// Need to stop the loop explicitly to avoid possible data race
// with grpc server shutdown.
// See https://github.com/ydb-platform/nbs/issues/2809
AtomicSet(ShouldStop, 1);
if (Thread) {
Thread->Join();
}
Server->Shutdown();
CQ->Shutdown();
// Need to drain completion queue, otherwise it fails on assert when destroying:
// https://github.com/ydb-platform/nbs/blob/fbf6b9fa568b7b3861fbccffcf3177ee445f498a/contrib/libs/grpc/src/core/lib/surface/completion_queue.cc#L258
DrainCompletionQueue();
}
}
void Wait()
{
Thread->Join();
}
void PreStart()
{
grpc::ServerBuilder sb;
sb.AddListeningPort(
Sprintf("0.0.0.0:%u", Port),
grpc::InsecureServerCredentials()
);
if (SecurePort) {
grpc::SslServerCredentialsOptions options(
GRPC_SSL_REQUEST_CLIENT_CERTIFICATE_AND_VERIFY);
options.pem_root_certs = ReadFile(RootCertsFile);
options.pem_key_cert_pairs.push_back({
ReadFile(KeyFile),
ReadFile(CertFile)
});
sb.AddListeningPort(
Sprintf("0.0.0.0:%u", SecurePort),
grpc::SslServerCredentials(options)
);
}
sb.RegisterService(&Service);
CQ = sb.AddCompletionQueue();
Server = sb.BuildAndStart();
Y_ENSURE(Server, "failed to start server");
}
void Loop()
{
new TRequestContext(Service, *CQ);
void* tag;
bool ok;
while (!AtomicGet(ShouldStop)) {
const auto deadline =
std::chrono::system_clock::now() +
std::chrono::milliseconds(100);
auto status = CQ->AsyncNext(&tag, &ok, deadline);
if (status != grpc::CompletionQueue::GOT_EVENT) {
continue;
}
auto* requestContext = static_cast<TRequestContext*>(tag);
if (requestContext->Done || !ok) {
delete requestContext;
} else {
new TRequestContext(Service, *CQ);
with_lock (Lock) {
if (DropPingRequests) {
DroppedRequests.emplace_back(requestContext);
} else {
FinishRequest(requestContext);
}
}
}
}
}
void DrainCompletionQueue()
{
void* tag;
bool ok;
while (CQ->Next(&tag, &ok)) {
auto* requestContext = static_cast<TRequestContext*>(tag);
if (requestContext->Done || !ok) {
delete requestContext;
} else {
FinishRequest(requestContext);
}
}
}
void FinishRequest(TRequestContext* requestContext)
{
requestContext->Done = true;
auto& r = requestContext->Response;
r.SetLastByteCount(LastByteCount);
if (ErrorMessage) {
r.MutableError()->SetCode(E_FAIL);
r.MutableError()->SetMessage(ErrorMessage);
}
requestContext->Writer.Finish(
r,
grpc::Status::OK,
requestContext
);
}
void ForkStart()
{
PreStart();
Thread = SystemThreadFactory()->Run([=, this] () {
Loop();
});
}
void Start()
{
PreStart();
Loop();
}
};
TFakeBlockStoreServer::TFakeBlockStoreServer(
ui16 port,
ui16 securePort,
const TString& rootCertsFile,
const TString& keyFile,
const TString& certFile)
: Impl(new TImpl(port, securePort, rootCertsFile, keyFile, certFile))
{
}
TFakeBlockStoreServer::~TFakeBlockStoreServer()
{
}
void TFakeBlockStoreServer::ForkStart()
{
Impl->ForkStart();
}
void TFakeBlockStoreServer::Start()
{
Impl->Start();
}
ui16 TFakeBlockStoreServer::Port() const
{
return Impl->Port;
}
ui16 TFakeBlockStoreServer::SecurePort() const
{
return Impl->SecurePort;
}
void TFakeBlockStoreServer::SetLastByteCount(ui64 count)
{
with_lock (Impl->Lock) {
Impl->LastByteCount = count;
}
}
void TFakeBlockStoreServer::SetErrorMessage(TString error)
{
with_lock (Impl->Lock) {
Impl->ErrorMessage = std::move(error);
}
}
void TFakeBlockStoreServer::SetDropPingRequests(bool drop)
{
with_lock (Impl->Lock) {
Impl->DropPingRequests = drop;
}
}
} // namespace NCloud::NBlockStore::NDiscovery