]>
Commit | Line | Data |
---|---|---|
2302c1ca MAL |
1 | /* |
2 | * QEMU Block driver for NBD | |
3 | * | |
b626b51a | 4 | * Copyright (C) 2016 Red Hat, Inc. |
2302c1ca MAL |
5 | * Copyright (C) 2008 Bull S.A.S. |
6 | * Author: Laurent Vivier <[email protected]> | |
7 | * | |
8 | * Some parts: | |
9 | * Copyright (C) 2007 Anthony Liguori <[email protected]> | |
10 | * | |
11 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
12 | * of this software and associated documentation files (the "Software"), to deal | |
13 | * in the Software without restriction, including without limitation the rights | |
14 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
15 | * copies of the Software, and to permit persons to whom the Software is | |
16 | * furnished to do so, subject to the following conditions: | |
17 | * | |
18 | * The above copyright notice and this permission notice shall be included in | |
19 | * all copies or substantial portions of the Software. | |
20 | * | |
21 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
22 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
23 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
24 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
25 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
26 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
27 | * THE SOFTWARE. | |
28 | */ | |
29 | ||
80c71a24 | 30 | #include "qemu/osdep.h" |
be41c100 | 31 | #include "qapi/error.h" |
2302c1ca | 32 | #include "nbd-client.h" |
2302c1ca | 33 | |
cfa3ad63 EB |
34 | #define HANDLE_TO_INDEX(bs, handle) ((handle) ^ (uint64_t)(intptr_t)(bs)) |
35 | #define INDEX_TO_HANDLE(bs, index) ((index) ^ (uint64_t)(intptr_t)(bs)) | |
2302c1ca | 36 | |
07b1b99c | 37 | static void nbd_recv_coroutines_wake_all(NBDClientSession *s) |
69152c09 MAL |
38 | { |
39 | int i; | |
40 | ||
41 | for (i = 0; i < MAX_NBD_REQUESTS; i++) { | |
40f4a218 SH |
42 | NBDClientRequest *req = &s->requests[i]; |
43 | ||
44 | if (req->coroutine && req->receiving) { | |
45 | aio_co_wake(req->coroutine); | |
69152c09 MAL |
46 | } |
47 | } | |
48 | } | |
49 | ||
f53a829b | 50 | static void nbd_teardown_connection(BlockDriverState *bs) |
4a41a2d6 | 51 | { |
10676b81 | 52 | NBDClientSession *client = nbd_get_client_session(bs); |
f53a829b | 53 | |
064097d9 DB |
54 | if (!client->ioc) { /* Already closed */ |
55 | return; | |
56 | } | |
57 | ||
4a41a2d6 | 58 | /* finish any pending coroutines */ |
064097d9 DB |
59 | qio_channel_shutdown(client->ioc, |
60 | QIO_CHANNEL_SHUTDOWN_BOTH, | |
61 | NULL); | |
a12a712a | 62 | BDRV_POLL_WHILE(bs, client->read_reply_co); |
4a41a2d6 | 63 | |
f53a829b | 64 | nbd_client_detach_aio_context(bs); |
064097d9 DB |
65 | object_unref(OBJECT(client->sioc)); |
66 | client->sioc = NULL; | |
67 | object_unref(OBJECT(client->ioc)); | |
68 | client->ioc = NULL; | |
4a41a2d6 SH |
69 | } |
70 | ||
ff82911c | 71 | static coroutine_fn void nbd_read_reply_entry(void *opaque) |
2302c1ca | 72 | { |
ff82911c | 73 | NBDClientSession *s = opaque; |
2302c1ca | 74 | uint64_t i; |
d0a18013 | 75 | int ret = 0; |
be41c100 | 76 | Error *local_err = NULL; |
2302c1ca | 77 | |
72b6ffc7 | 78 | while (!s->quit) { |
ff82911c | 79 | assert(s->reply.handle == 0); |
be41c100 VSO |
80 | ret = nbd_receive_reply(s->ioc, &s->reply, &local_err); |
81 | if (ret < 0) { | |
82 | error_report_err(local_err); | |
83 | } | |
a12a712a | 84 | if (ret <= 0) { |
ff82911c | 85 | break; |
2302c1ca | 86 | } |
2302c1ca | 87 | |
ff82911c PB |
88 | /* There's no need for a mutex on the receive side, because the |
89 | * handler acts as a synchronization point and ensures that only | |
90 | * one coroutine is called until the reply finishes. | |
91 | */ | |
92 | i = HANDLE_TO_INDEX(s, s->reply.handle); | |
40f4a218 SH |
93 | if (i >= MAX_NBD_REQUESTS || |
94 | !s->requests[i].coroutine || | |
d2febedb VSO |
95 | !s->requests[i].receiving || |
96 | nbd_reply_is_structured(&s->reply)) | |
97 | { | |
ff82911c PB |
98 | break; |
99 | } | |
2302c1ca | 100 | |
40f4a218 | 101 | /* We're woken up again by the request itself. Note that there |
ff82911c PB |
102 | * is no race between yielding and reentering read_reply_co. This |
103 | * is because: | |
104 | * | |
40f4a218 | 105 | * - if the request runs on the same AioContext, it is only |
ff82911c PB |
106 | * entered after we yield |
107 | * | |
40f4a218 | 108 | * - if the request runs on a different AioContext, reentering |
ff82911c PB |
109 | * read_reply_co happens through a bottom half, which can only |
110 | * run after we yield. | |
111 | */ | |
40f4a218 | 112 | aio_co_wake(s->requests[i].coroutine); |
ff82911c | 113 | qemu_coroutine_yield(); |
2302c1ca | 114 | } |
a12a712a | 115 | |
40f4a218 | 116 | s->quit = true; |
07b1b99c | 117 | nbd_recv_coroutines_wake_all(s); |
ff82911c | 118 | s->read_reply_co = NULL; |
2302c1ca MAL |
119 | } |
120 | ||
f53a829b | 121 | static int nbd_co_send_request(BlockDriverState *bs, |
ed2dd912 | 122 | NBDRequest *request, |
1e2a77a8 | 123 | QEMUIOVector *qiov) |
2302c1ca | 124 | { |
10676b81 | 125 | NBDClientSession *s = nbd_get_client_session(bs); |
030fa7f6 | 126 | int rc, i; |
2302c1ca MAL |
127 | |
128 | qemu_co_mutex_lock(&s->send_mutex); | |
6bdcc018 PB |
129 | while (s->in_flight == MAX_NBD_REQUESTS) { |
130 | qemu_co_queue_wait(&s->free_sema, &s->send_mutex); | |
131 | } | |
132 | s->in_flight++; | |
141cabe6 BW |
133 | |
134 | for (i = 0; i < MAX_NBD_REQUESTS; i++) { | |
40f4a218 | 135 | if (s->requests[i].coroutine == NULL) { |
141cabe6 BW |
136 | break; |
137 | } | |
138 | } | |
139 | ||
1c778ef7 | 140 | g_assert(qemu_in_coroutine()); |
141cabe6 | 141 | assert(i < MAX_NBD_REQUESTS); |
40f4a218 SH |
142 | |
143 | s->requests[i].coroutine = qemu_coroutine_self(); | |
144 | s->requests[i].receiving = false; | |
145 | ||
141cabe6 | 146 | request->handle = INDEX_TO_HANDLE(s, i); |
064097d9 | 147 | |
72b6ffc7 | 148 | if (s->quit) { |
3c2d5183 SH |
149 | rc = -EIO; |
150 | goto err; | |
72b6ffc7 | 151 | } |
064097d9 | 152 | if (!s->ioc) { |
3c2d5183 SH |
153 | rc = -EPIPE; |
154 | goto err; | |
064097d9 DB |
155 | } |
156 | ||
2302c1ca | 157 | if (qiov) { |
064097d9 | 158 | qio_channel_set_cork(s->ioc, true); |
1c778ef7 | 159 | rc = nbd_send_request(s->ioc, request); |
72b6ffc7 | 160 | if (rc >= 0 && !s->quit) { |
030fa7f6 EB |
161 | if (qio_channel_writev_all(s->ioc, qiov->iov, qiov->niov, |
162 | NULL) < 0) { | |
2302c1ca MAL |
163 | rc = -EIO; |
164 | } | |
a6934370 VSO |
165 | } else if (rc >= 0) { |
166 | rc = -EIO; | |
2302c1ca | 167 | } |
064097d9 | 168 | qio_channel_set_cork(s->ioc, false); |
2302c1ca | 169 | } else { |
1c778ef7 | 170 | rc = nbd_send_request(s->ioc, request); |
2302c1ca | 171 | } |
3c2d5183 SH |
172 | |
173 | err: | |
72b6ffc7 EB |
174 | if (rc < 0) { |
175 | s->quit = true; | |
3c2d5183 SH |
176 | s->requests[i].coroutine = NULL; |
177 | s->in_flight--; | |
178 | qemu_co_queue_next(&s->free_sema); | |
72b6ffc7 | 179 | } |
2302c1ca MAL |
180 | qemu_co_mutex_unlock(&s->send_mutex); |
181 | return rc; | |
182 | } | |
183 | ||
319a56cd | 184 | static int nbd_co_receive_reply(NBDClientSession *s, |
ed397b2f | 185 | uint64_t handle, |
319a56cd | 186 | QEMUIOVector *qiov) |
2302c1ca | 187 | { |
319a56cd | 188 | int ret; |
ed397b2f | 189 | int i = HANDLE_TO_INDEX(s, handle); |
2302c1ca | 190 | |
ff82911c | 191 | /* Wait until we're woken up by nbd_read_reply_entry. */ |
40f4a218 | 192 | s->requests[i].receiving = true; |
2302c1ca | 193 | qemu_coroutine_yield(); |
40f4a218 | 194 | s->requests[i].receiving = false; |
93970672 | 195 | if (!s->ioc || s->quit) { |
319a56cd | 196 | ret = -EIO; |
2302c1ca | 197 | } else { |
ed397b2f | 198 | assert(s->reply.handle == handle); |
d2febedb VSO |
199 | ret = -nbd_errno_to_system_errno(s->reply.simple.error); |
200 | if (qiov && ret == 0) { | |
030fa7f6 EB |
201 | if (qio_channel_readv_all(s->ioc, qiov->iov, qiov->niov, |
202 | NULL) < 0) { | |
319a56cd | 203 | ret = -EIO; |
40f4a218 | 204 | s->quit = true; |
2302c1ca MAL |
205 | } |
206 | } | |
207 | ||
208 | /* Tell the read handler to read another header. */ | |
209 | s->reply.handle = 0; | |
210 | } | |
ff82911c | 211 | |
40f4a218 | 212 | s->requests[i].coroutine = NULL; |
ff82911c PB |
213 | |
214 | /* Kick the read_reply_co to get the next reply. */ | |
215 | if (s->read_reply_co) { | |
216 | aio_co_wake(s->read_reply_co); | |
2302c1ca | 217 | } |
6bdcc018 PB |
218 | |
219 | qemu_co_mutex_lock(&s->send_mutex); | |
220 | s->in_flight--; | |
221 | qemu_co_queue_next(&s->free_sema); | |
222 | qemu_co_mutex_unlock(&s->send_mutex); | |
319a56cd VSO |
223 | |
224 | return ret; | |
2302c1ca MAL |
225 | } |
226 | ||
f35dff7e VSO |
227 | static int nbd_co_request(BlockDriverState *bs, |
228 | NBDRequest *request, | |
229 | QEMUIOVector *qiov) | |
230 | { | |
231 | NBDClientSession *client = nbd_get_client_session(bs); | |
f35dff7e VSO |
232 | int ret; |
233 | ||
4bfe4478 VSO |
234 | if (qiov) { |
235 | assert(request->type == NBD_CMD_WRITE || request->type == NBD_CMD_READ); | |
236 | assert(request->len == iov_size(qiov->iov, qiov->niov)); | |
237 | } else { | |
238 | assert(request->type != NBD_CMD_WRITE && request->type != NBD_CMD_READ); | |
239 | } | |
f35dff7e VSO |
240 | ret = nbd_co_send_request(bs, request, |
241 | request->type == NBD_CMD_WRITE ? qiov : NULL); | |
242 | if (ret < 0) { | |
319a56cd | 243 | return ret; |
f35dff7e | 244 | } |
319a56cd | 245 | |
ed397b2f | 246 | return nbd_co_receive_reply(client, request->handle, |
319a56cd | 247 | request->type == NBD_CMD_READ ? qiov : NULL); |
f35dff7e VSO |
248 | } |
249 | ||
70c4fb26 EB |
250 | int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset, |
251 | uint64_t bytes, QEMUIOVector *qiov, int flags) | |
2302c1ca | 252 | { |
ed2dd912 | 253 | NBDRequest request = { |
70c4fb26 EB |
254 | .type = NBD_CMD_READ, |
255 | .from = offset, | |
256 | .len = bytes, | |
257 | }; | |
2302c1ca | 258 | |
70c4fb26 EB |
259 | assert(bytes <= NBD_MAX_BUFFER_SIZE); |
260 | assert(!flags); | |
2302c1ca | 261 | |
f35dff7e | 262 | return nbd_co_request(bs, &request, qiov); |
2302c1ca MAL |
263 | } |
264 | ||
70c4fb26 EB |
265 | int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset, |
266 | uint64_t bytes, QEMUIOVector *qiov, int flags) | |
2302c1ca | 267 | { |
10676b81 | 268 | NBDClientSession *client = nbd_get_client_session(bs); |
ed2dd912 | 269 | NBDRequest request = { |
70c4fb26 EB |
270 | .type = NBD_CMD_WRITE, |
271 | .from = offset, | |
272 | .len = bytes, | |
273 | }; | |
2302c1ca | 274 | |
52a46505 | 275 | if (flags & BDRV_REQ_FUA) { |
004a89fc | 276 | assert(client->info.flags & NBD_FLAG_SEND_FUA); |
b626b51a | 277 | request.flags |= NBD_CMD_FLAG_FUA; |
2302c1ca MAL |
278 | } |
279 | ||
70c4fb26 | 280 | assert(bytes <= NBD_MAX_BUFFER_SIZE); |
2302c1ca | 281 | |
f35dff7e | 282 | return nbd_co_request(bs, &request, qiov); |
2302c1ca MAL |
283 | } |
284 | ||
fa778fff | 285 | int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, |
f5a5ca79 | 286 | int bytes, BdrvRequestFlags flags) |
fa778fff | 287 | { |
fa778fff EB |
288 | NBDClientSession *client = nbd_get_client_session(bs); |
289 | NBDRequest request = { | |
290 | .type = NBD_CMD_WRITE_ZEROES, | |
291 | .from = offset, | |
f5a5ca79 | 292 | .len = bytes, |
fa778fff | 293 | }; |
fa778fff | 294 | |
004a89fc | 295 | if (!(client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES)) { |
fa778fff EB |
296 | return -ENOTSUP; |
297 | } | |
298 | ||
299 | if (flags & BDRV_REQ_FUA) { | |
004a89fc | 300 | assert(client->info.flags & NBD_FLAG_SEND_FUA); |
fa778fff EB |
301 | request.flags |= NBD_CMD_FLAG_FUA; |
302 | } | |
303 | if (!(flags & BDRV_REQ_MAY_UNMAP)) { | |
304 | request.flags |= NBD_CMD_FLAG_NO_HOLE; | |
305 | } | |
306 | ||
f35dff7e | 307 | return nbd_co_request(bs, &request, NULL); |
fa778fff EB |
308 | } |
309 | ||
f53a829b | 310 | int nbd_client_co_flush(BlockDriverState *bs) |
2302c1ca | 311 | { |
10676b81 | 312 | NBDClientSession *client = nbd_get_client_session(bs); |
ed2dd912 | 313 | NBDRequest request = { .type = NBD_CMD_FLUSH }; |
2302c1ca | 314 | |
004a89fc | 315 | if (!(client->info.flags & NBD_FLAG_SEND_FLUSH)) { |
2302c1ca MAL |
316 | return 0; |
317 | } | |
318 | ||
2302c1ca MAL |
319 | request.from = 0; |
320 | request.len = 0; | |
321 | ||
f35dff7e | 322 | return nbd_co_request(bs, &request, NULL); |
2302c1ca MAL |
323 | } |
324 | ||
f5a5ca79 | 325 | int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes) |
2302c1ca | 326 | { |
10676b81 | 327 | NBDClientSession *client = nbd_get_client_session(bs); |
ed2dd912 | 328 | NBDRequest request = { |
447e57c3 EB |
329 | .type = NBD_CMD_TRIM, |
330 | .from = offset, | |
f5a5ca79 | 331 | .len = bytes, |
447e57c3 | 332 | }; |
2302c1ca | 333 | |
004a89fc | 334 | if (!(client->info.flags & NBD_FLAG_SEND_TRIM)) { |
2302c1ca MAL |
335 | return 0; |
336 | } | |
2302c1ca | 337 | |
f35dff7e | 338 | return nbd_co_request(bs, &request, NULL); |
2302c1ca MAL |
339 | } |
340 | ||
f53a829b | 341 | void nbd_client_detach_aio_context(BlockDriverState *bs) |
69447cd8 | 342 | { |
ff82911c | 343 | NBDClientSession *client = nbd_get_client_session(bs); |
96d06835 | 344 | qio_channel_detach_aio_context(QIO_CHANNEL(client->ioc)); |
69447cd8 SH |
345 | } |
346 | ||
f53a829b HR |
347 | void nbd_client_attach_aio_context(BlockDriverState *bs, |
348 | AioContext *new_context) | |
69447cd8 | 349 | { |
ff82911c | 350 | NBDClientSession *client = nbd_get_client_session(bs); |
96d06835 | 351 | qio_channel_attach_aio_context(QIO_CHANNEL(client->ioc), new_context); |
ff82911c | 352 | aio_co_schedule(new_context, client->read_reply_co); |
69447cd8 SH |
353 | } |
354 | ||
f53a829b | 355 | void nbd_client_close(BlockDriverState *bs) |
2302c1ca | 356 | { |
10676b81 | 357 | NBDClientSession *client = nbd_get_client_session(bs); |
ed2dd912 | 358 | NBDRequest request = { .type = NBD_CMD_DISC }; |
2302c1ca | 359 | |
064097d9 | 360 | if (client->ioc == NULL) { |
4a41a2d6 SH |
361 | return; |
362 | } | |
363 | ||
1c778ef7 | 364 | nbd_send_request(client->ioc, &request); |
5ad283eb | 365 | |
f53a829b | 366 | nbd_teardown_connection(bs); |
2302c1ca MAL |
367 | } |
368 | ||
75822a12 DB |
369 | int nbd_client_init(BlockDriverState *bs, |
370 | QIOChannelSocket *sioc, | |
371 | const char *export, | |
372 | QCryptoTLSCreds *tlscreds, | |
373 | const char *hostname, | |
374 | Error **errp) | |
2302c1ca | 375 | { |
10676b81 | 376 | NBDClientSession *client = nbd_get_client_session(bs); |
2302c1ca MAL |
377 | int ret; |
378 | ||
379 | /* NBD handshake */ | |
e2bc625f | 380 | logout("session init %s\n", export); |
064097d9 DB |
381 | qio_channel_set_blocking(QIO_CHANNEL(sioc), true, NULL); |
382 | ||
081dd1fe | 383 | client->info.request_sizes = true; |
1c778ef7 | 384 | ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), export, |
75822a12 | 385 | tlscreds, hostname, |
004a89fc | 386 | &client->ioc, &client->info, errp); |
2302c1ca MAL |
387 | if (ret < 0) { |
388 | logout("Failed to negotiate with the NBD server\n"); | |
2302c1ca MAL |
389 | return ret; |
390 | } | |
004a89fc | 391 | if (client->info.flags & NBD_FLAG_SEND_FUA) { |
4df863f3 | 392 | bs->supported_write_flags = BDRV_REQ_FUA; |
169407e1 EB |
393 | bs->supported_zero_flags |= BDRV_REQ_FUA; |
394 | } | |
004a89fc | 395 | if (client->info.flags & NBD_FLAG_SEND_WRITE_ZEROES) { |
169407e1 | 396 | bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP; |
4df863f3 | 397 | } |
081dd1fe EB |
398 | if (client->info.min_block > bs->bl.request_alignment) { |
399 | bs->bl.request_alignment = client->info.min_block; | |
400 | } | |
2302c1ca MAL |
401 | |
402 | qemu_co_mutex_init(&client->send_mutex); | |
9bc9732f | 403 | qemu_co_queue_init(&client->free_sema); |
064097d9 DB |
404 | client->sioc = sioc; |
405 | object_ref(OBJECT(client->sioc)); | |
f95910fe DB |
406 | |
407 | if (!client->ioc) { | |
408 | client->ioc = QIO_CHANNEL(sioc); | |
409 | object_ref(OBJECT(client->ioc)); | |
410 | } | |
2302c1ca MAL |
411 | |
412 | /* Now that we're connected, set the socket to be non-blocking and | |
413 | * kick the reply mechanism. */ | |
064097d9 | 414 | qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL); |
ff82911c | 415 | client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client); |
f53a829b | 416 | nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs)); |
2302c1ca MAL |
417 | |
418 | logout("Established connection with NBD server\n"); | |
419 | return 0; | |
420 | } |