forked from ydb-platform/nbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvhost.cpp
366 lines (303 loc) · 8.73 KB
/
vhost.cpp
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include "vhost.h"
#include <cloud/storage/core/libs/diagnostics/logging.h>
#include <cloud/contrib/vhost/include/vhost/blockdev.h>
#include <cloud/contrib/vhost/include/vhost/server.h>
#include <util/generic/singleton.h>
#include <util/system/mutex.h>
namespace NCloud::NBlockStore::NVhost {
using namespace NThreading;
namespace {
////////////////////////////////////////////////////////////////////////////////
TLog VhostLog;
ELogPriority GetLogPriority(LogLevel level)
{
switch (level) {
case LOG_ERROR: return TLOG_ERR;
case LOG_WARNING: return TLOG_WARNING;
case LOG_INFO: return TLOG_INFO;
case LOG_DEBUG: return TLOG_DEBUG;
}
}
void vhd_log(LogLevel level, const char* format, ...)
{
va_list params;
va_start(params, format);
ELogPriority priority = GetLogPriority(level);
if (priority <= VhostLog.FiltrationLevel()) {
Printf(VhostLog << priority << ": ", format, params);
}
va_end(params);
}
////////////////////////////////////////////////////////////////////////////////
class TVhostRequestImpl final
: public TVhostRequest
{
private:
vhd_io* VhdIo;
public:
TVhostRequestImpl(
vhd_io* vhdIo,
EBlockStoreRequest type,
ui64 from,
ui64 length,
TSgList sgList,
void* cookie)
: VhdIo(vhdIo)
{
Type = type;
From = from;
Length = length;
SgList.SetSgList(std::move(sgList));
Cookie = cookie;
}
void Complete(EResult result) override
{
SgList.Close();
vhd_complete_bio(VhdIo, GetVhostResult(result));
}
private:
vhd_bdev_io_result GetVhostResult(EResult result)
{
switch (result) {
case SUCCESS:
return VHD_BDEV_SUCCESS;
case IOERR:
return VHD_BDEV_IOERR;
case CANCELLED:
return VHD_BDEV_CANCELED;
}
Y_ABORT("Unexpected vhost result");
}
};
////////////////////////////////////////////////////////////////////////////////
class TUnregisterCompletion
{
private:
TPromise<NProto::TError> Result;
public:
TUnregisterCompletion(TPromise<NProto::TError> result)
: Result(std::move(result))
{}
static void Callback(void* ctx)
{
std::unique_ptr<TUnregisterCompletion> completion(
reinterpret_cast<TUnregisterCompletion*>(ctx));
completion->OnCompletion();
}
private:
void OnCompletion()
{
Result.SetValue(NProto::TError());
}
};
////////////////////////////////////////////////////////////////////////////////
class TVhostDevice final
: public IVhostDevice
{
private:
vhd_request_queue* const VhdQueue;
const TString SocketPath;
const TString DeviceName;
void* const Cookie;
vhd_bdev_info VhdBdevInfo;
vhd_vdev* VhdVdev = nullptr;
TMutex Lock;
public:
TVhostDevice(
vhd_request_queue* vhdQueue,
TString socketPath,
TString deviceName,
ui32 blockSize,
ui64 blocksCount,
ui32 queuesCount,
void* cookie,
const TVhostCallbacks& callbacks)
: VhdQueue(vhdQueue)
, SocketPath(std::move(socketPath))
, DeviceName(std::move(deviceName))
, Cookie(cookie)
{
Zero(VhdBdevInfo);
VhdBdevInfo.serial = DeviceName.c_str();
VhdBdevInfo.socket_path = SocketPath.c_str();
VhdBdevInfo.block_size = blockSize;
VhdBdevInfo.total_blocks = blocksCount;
VhdBdevInfo.num_queues = queuesCount;
VhdBdevInfo.map_cb = callbacks.MapMemory;
VhdBdevInfo.unmap_cb = callbacks.UnmapMemory;
}
~TVhostDevice()
{
Stop();
}
bool Start() override
{
vhd_request_queue* queues[1] = { VhdQueue };
VhdVdev = vhd_register_blockdev(
&VhdBdevInfo,
queues, 1,
Cookie);
return VhdVdev != nullptr;
}
TFuture<NProto::TError> Stop() override
{
if (!VhdVdev) {
return MakeFuture(MakeError(S_ALREADY));
}
auto result = NewPromise<NProto::TError>();
auto& Log = VhostLog;
STORAGE_INFO("vhd_unregister_blockdev starting: " << SocketPath);
result.GetFuture().Apply([socketPath = SocketPath] (const auto& future) {
auto& Log = VhostLog;
STORAGE_INFO("vhd_unregister_blockdev completed: " << socketPath);
return future;
});
auto completion = std::make_unique<TUnregisterCompletion>(result);
with_lock (Lock) {
vhd_unregister_blockdev(
VhdVdev,
TUnregisterCompletion::Callback,
completion.release());
VhdVdev = nullptr;
}
return result.GetFuture();
}
void Update(ui64 blocksCount) override
{
with_lock (Lock) {
if (!VhdVdev) {
return;
}
vhd_blockdev_set_total_blocks(VhdVdev, blocksCount);
}
}
};
////////////////////////////////////////////////////////////////////////////////
class TVhostQueue final
: public IVhostQueue
{
private:
TLog Log;
vhd_request_queue* VhdRequestQueue;
public:
TVhostQueue()
: Log(VhostLog)
{
VhdRequestQueue = vhd_create_request_queue();
}
~TVhostQueue()
{
vhd_release_request_queue(VhdRequestQueue);
}
int Run() override
{
return vhd_run_queue(VhdRequestQueue);
}
void Stop() override
{
vhd_stop_queue(VhdRequestQueue);
}
IVhostDevicePtr CreateDevice(
TString socketPath,
TString deviceName,
ui32 blockSize,
ui64 blocksCount,
ui32 queuesCount,
void* cookie,
const TVhostCallbacks& callbacks) override
{
return std::make_shared<TVhostDevice>(
VhdRequestQueue,
std::move(socketPath),
std::move(deviceName),
blockSize,
blocksCount,
queuesCount,
cookie,
callbacks);
}
TVhostRequestPtr DequeueRequest() override
{
vhd_request vhdRequest;
while (vhd_dequeue_request(VhdRequestQueue, &vhdRequest)) {
auto vhostRequest = CreateVhostRequest(vhdRequest);
if (!vhostRequest) {
vhd_complete_bio(vhdRequest.io, VHD_BDEV_IOERR);
continue;
}
return vhostRequest;
}
return nullptr;
}
private:
TVhostRequestPtr CreateVhostRequest(const vhd_request& vhdRequest)
{
void* cookie = vhd_vdev_get_priv(vhdRequest.vdev);
auto* vhdBdevIo = vhd_get_bdev_io(vhdRequest.io);
EBlockStoreRequest type;
switch (vhdBdevIo->type)
{
case VHD_BDEV_READ:
type = EBlockStoreRequest::ReadBlocks;
break;
case VHD_BDEV_WRITE:
type = EBlockStoreRequest::WriteBlocks;
break;
default:
STORAGE_ERROR("Unexpected vhost request type: " <<
static_cast<int>(vhdBdevIo->type));
return nullptr;
}
return std::make_shared<TVhostRequestImpl>(
vhdRequest.io,
type,
vhdBdevIo->first_sector * VHD_SECTOR_SIZE,
vhdBdevIo->total_sectors * VHD_SECTOR_SIZE,
ConvertVhdSgList(vhdBdevIo->sglist),
cookie);
}
static TSgList ConvertVhdSgList(const vhd_sglist& vhdSglist)
{
TSgList sgList;
sgList.reserve(vhdSglist.nbuffers);
for (ui32 i = 0; i < vhdSglist.nbuffers; ++i) {
const auto& buffer = vhdSglist.buffers[i];
sgList.emplace_back((char*)buffer.base, buffer.len);
}
return sgList;
}
};
////////////////////////////////////////////////////////////////////////////////
class TVhostQueueFactory final
: public IVhostQueueFactory
{
public:
TVhostQueueFactory()
{
int res = vhd_start_vhost_server(vhd_log);
Y_ABORT_UNLESS(res == 0, "Error starting vhost server");
}
~TVhostQueueFactory()
{
vhd_stop_vhost_server();
}
IVhostQueuePtr CreateQueue() override
{
return std::make_shared<TVhostQueue>();
}
};
} // namespace
////////////////////////////////////////////////////////////////////////////////
void InitVhostLog(ILoggingServicePtr logging)
{
VhostLog = logging->CreateLog("BLOCKSTORE_VHOST");
}
IVhostQueueFactoryPtr CreateVhostQueueFactory()
{
struct TInitializer
{
IVhostQueueFactoryPtr Factory = std::make_shared<TVhostQueueFactory>();
};
return Singleton<TInitializer>()->Factory;
}
} // namespace NCloud::NBlockStore::NVhost