target/s390x: Fix typo
[qemu/ar7.git] / block / nbd-client.c
blob0dc12c2d671898c7a6fdc50ad55a1f1dd07658dd
1 /*
2 * QEMU Block driver for NBD
4 * Copyright (C) 2016 Red Hat, Inc.
5 * Copyright (C) 2008 Bull S.A.S.
6 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
8 * Some parts:
9 * Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
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:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
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.
30 #include "qemu/osdep.h"
31 #include "nbd-client.h"
33 #define HANDLE_TO_INDEX(bs, handle) ((handle) ^ ((uint64_t)(intptr_t)bs))
34 #define INDEX_TO_HANDLE(bs, index) ((index) ^ ((uint64_t)(intptr_t)bs))
36 static void nbd_recv_coroutines_enter_all(BlockDriverState *bs)
38 NBDClientSession *s = nbd_get_client_session(bs);
39 int i;
41 for (i = 0; i < MAX_NBD_REQUESTS; i++) {
42 if (s->recv_coroutine[i]) {
43 qemu_coroutine_enter(s->recv_coroutine[i]);
46 BDRV_POLL_WHILE(bs, s->read_reply_co);
49 static void nbd_teardown_connection(BlockDriverState *bs)
51 NBDClientSession *client = nbd_get_client_session(bs);
53 if (!client->ioc) { /* Already closed */
54 return;
57 /* finish any pending coroutines */
58 qio_channel_shutdown(client->ioc,
59 QIO_CHANNEL_SHUTDOWN_BOTH,
60 NULL);
61 nbd_recv_coroutines_enter_all(bs);
63 nbd_client_detach_aio_context(bs);
64 object_unref(OBJECT(client->sioc));
65 client->sioc = NULL;
66 object_unref(OBJECT(client->ioc));
67 client->ioc = NULL;
70 static coroutine_fn void nbd_read_reply_entry(void *opaque)
72 NBDClientSession *s = opaque;
73 uint64_t i;
74 int ret;
76 for (;;) {
77 assert(s->reply.handle == 0);
78 ret = nbd_receive_reply(s->ioc, &s->reply);
79 if (ret < 0) {
80 break;
83 /* There's no need for a mutex on the receive side, because the
84 * handler acts as a synchronization point and ensures that only
85 * one coroutine is called until the reply finishes.
87 i = HANDLE_TO_INDEX(s, s->reply.handle);
88 if (i >= MAX_NBD_REQUESTS || !s->recv_coroutine[i]) {
89 break;
92 /* We're woken up by the recv_coroutine itself. Note that there
93 * is no race between yielding and reentering read_reply_co. This
94 * is because:
96 * - if recv_coroutine[i] runs on the same AioContext, it is only
97 * entered after we yield
99 * - if recv_coroutine[i] runs on a different AioContext, reentering
100 * read_reply_co happens through a bottom half, which can only
101 * run after we yield.
103 aio_co_wake(s->recv_coroutine[i]);
104 qemu_coroutine_yield();
106 s->read_reply_co = NULL;
109 static int nbd_co_send_request(BlockDriverState *bs,
110 NBDRequest *request,
111 QEMUIOVector *qiov)
113 NBDClientSession *s = nbd_get_client_session(bs);
114 int rc, ret, i;
116 qemu_co_mutex_lock(&s->send_mutex);
118 for (i = 0; i < MAX_NBD_REQUESTS; i++) {
119 if (s->recv_coroutine[i] == NULL) {
120 s->recv_coroutine[i] = qemu_coroutine_self();
121 break;
125 g_assert(qemu_in_coroutine());
126 assert(i < MAX_NBD_REQUESTS);
127 request->handle = INDEX_TO_HANDLE(s, i);
129 if (!s->ioc) {
130 qemu_co_mutex_unlock(&s->send_mutex);
131 return -EPIPE;
134 if (qiov) {
135 qio_channel_set_cork(s->ioc, true);
136 rc = nbd_send_request(s->ioc, request);
137 if (rc >= 0) {
138 ret = nbd_wr_syncv(s->ioc, qiov->iov, qiov->niov, request->len,
139 false);
140 if (ret != request->len) {
141 rc = -EIO;
144 qio_channel_set_cork(s->ioc, false);
145 } else {
146 rc = nbd_send_request(s->ioc, request);
148 qemu_co_mutex_unlock(&s->send_mutex);
149 return rc;
152 static void nbd_co_receive_reply(NBDClientSession *s,
153 NBDRequest *request,
154 NBDReply *reply,
155 QEMUIOVector *qiov)
157 int ret;
159 /* Wait until we're woken up by nbd_read_reply_entry. */
160 qemu_coroutine_yield();
161 *reply = s->reply;
162 if (reply->handle != request->handle ||
163 !s->ioc) {
164 reply->error = EIO;
165 } else {
166 if (qiov && reply->error == 0) {
167 ret = nbd_wr_syncv(s->ioc, qiov->iov, qiov->niov, request->len,
168 true);
169 if (ret != request->len) {
170 reply->error = EIO;
174 /* Tell the read handler to read another header. */
175 s->reply.handle = 0;
179 static void nbd_coroutine_start(NBDClientSession *s,
180 NBDRequest *request)
182 /* Poor man semaphore. The free_sema is locked when no other request
183 * can be accepted, and unlocked after receiving one reply. */
184 if (s->in_flight == MAX_NBD_REQUESTS) {
185 qemu_co_queue_wait(&s->free_sema, NULL);
186 assert(s->in_flight < MAX_NBD_REQUESTS);
188 s->in_flight++;
190 /* s->recv_coroutine[i] is set as soon as we get the send_lock. */
193 static void nbd_coroutine_end(BlockDriverState *bs,
194 NBDRequest *request)
196 NBDClientSession *s = nbd_get_client_session(bs);
197 int i = HANDLE_TO_INDEX(s, request->handle);
199 s->recv_coroutine[i] = NULL;
200 s->in_flight--;
201 qemu_co_queue_next(&s->free_sema);
203 /* Kick the read_reply_co to get the next reply. */
204 if (s->read_reply_co) {
205 aio_co_wake(s->read_reply_co);
209 int nbd_client_co_preadv(BlockDriverState *bs, uint64_t offset,
210 uint64_t bytes, QEMUIOVector *qiov, int flags)
212 NBDClientSession *client = nbd_get_client_session(bs);
213 NBDRequest request = {
214 .type = NBD_CMD_READ,
215 .from = offset,
216 .len = bytes,
218 NBDReply reply;
219 ssize_t ret;
221 assert(bytes <= NBD_MAX_BUFFER_SIZE);
222 assert(!flags);
224 nbd_coroutine_start(client, &request);
225 ret = nbd_co_send_request(bs, &request, NULL);
226 if (ret < 0) {
227 reply.error = -ret;
228 } else {
229 nbd_co_receive_reply(client, &request, &reply, qiov);
231 nbd_coroutine_end(bs, &request);
232 return -reply.error;
235 int nbd_client_co_pwritev(BlockDriverState *bs, uint64_t offset,
236 uint64_t bytes, QEMUIOVector *qiov, int flags)
238 NBDClientSession *client = nbd_get_client_session(bs);
239 NBDRequest request = {
240 .type = NBD_CMD_WRITE,
241 .from = offset,
242 .len = bytes,
244 NBDReply reply;
245 ssize_t ret;
247 if (flags & BDRV_REQ_FUA) {
248 assert(client->nbdflags & NBD_FLAG_SEND_FUA);
249 request.flags |= NBD_CMD_FLAG_FUA;
252 assert(bytes <= NBD_MAX_BUFFER_SIZE);
254 nbd_coroutine_start(client, &request);
255 ret = nbd_co_send_request(bs, &request, qiov);
256 if (ret < 0) {
257 reply.error = -ret;
258 } else {
259 nbd_co_receive_reply(client, &request, &reply, NULL);
261 nbd_coroutine_end(bs, &request);
262 return -reply.error;
265 int nbd_client_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset,
266 int count, BdrvRequestFlags flags)
268 ssize_t ret;
269 NBDClientSession *client = nbd_get_client_session(bs);
270 NBDRequest request = {
271 .type = NBD_CMD_WRITE_ZEROES,
272 .from = offset,
273 .len = count,
275 NBDReply reply;
277 if (!(client->nbdflags & NBD_FLAG_SEND_WRITE_ZEROES)) {
278 return -ENOTSUP;
281 if (flags & BDRV_REQ_FUA) {
282 assert(client->nbdflags & NBD_FLAG_SEND_FUA);
283 request.flags |= NBD_CMD_FLAG_FUA;
285 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
286 request.flags |= NBD_CMD_FLAG_NO_HOLE;
289 nbd_coroutine_start(client, &request);
290 ret = nbd_co_send_request(bs, &request, NULL);
291 if (ret < 0) {
292 reply.error = -ret;
293 } else {
294 nbd_co_receive_reply(client, &request, &reply, NULL);
296 nbd_coroutine_end(bs, &request);
297 return -reply.error;
300 int nbd_client_co_flush(BlockDriverState *bs)
302 NBDClientSession *client = nbd_get_client_session(bs);
303 NBDRequest request = { .type = NBD_CMD_FLUSH };
304 NBDReply reply;
305 ssize_t ret;
307 if (!(client->nbdflags & NBD_FLAG_SEND_FLUSH)) {
308 return 0;
311 request.from = 0;
312 request.len = 0;
314 nbd_coroutine_start(client, &request);
315 ret = nbd_co_send_request(bs, &request, NULL);
316 if (ret < 0) {
317 reply.error = -ret;
318 } else {
319 nbd_co_receive_reply(client, &request, &reply, NULL);
321 nbd_coroutine_end(bs, &request);
322 return -reply.error;
325 int nbd_client_co_pdiscard(BlockDriverState *bs, int64_t offset, int count)
327 NBDClientSession *client = nbd_get_client_session(bs);
328 NBDRequest request = {
329 .type = NBD_CMD_TRIM,
330 .from = offset,
331 .len = count,
333 NBDReply reply;
334 ssize_t ret;
336 if (!(client->nbdflags & NBD_FLAG_SEND_TRIM)) {
337 return 0;
340 nbd_coroutine_start(client, &request);
341 ret = nbd_co_send_request(bs, &request, NULL);
342 if (ret < 0) {
343 reply.error = -ret;
344 } else {
345 nbd_co_receive_reply(client, &request, &reply, NULL);
347 nbd_coroutine_end(bs, &request);
348 return -reply.error;
352 void nbd_client_detach_aio_context(BlockDriverState *bs)
354 NBDClientSession *client = nbd_get_client_session(bs);
355 qio_channel_detach_aio_context(QIO_CHANNEL(client->sioc));
358 void nbd_client_attach_aio_context(BlockDriverState *bs,
359 AioContext *new_context)
361 NBDClientSession *client = nbd_get_client_session(bs);
362 qio_channel_attach_aio_context(QIO_CHANNEL(client->sioc), new_context);
363 aio_co_schedule(new_context, client->read_reply_co);
366 void nbd_client_close(BlockDriverState *bs)
368 NBDClientSession *client = nbd_get_client_session(bs);
369 NBDRequest request = { .type = NBD_CMD_DISC };
371 if (client->ioc == NULL) {
372 return;
375 nbd_send_request(client->ioc, &request);
377 nbd_teardown_connection(bs);
380 int nbd_client_init(BlockDriverState *bs,
381 QIOChannelSocket *sioc,
382 const char *export,
383 QCryptoTLSCreds *tlscreds,
384 const char *hostname,
385 Error **errp)
387 NBDClientSession *client = nbd_get_client_session(bs);
388 int ret;
390 /* NBD handshake */
391 logout("session init %s\n", export);
392 qio_channel_set_blocking(QIO_CHANNEL(sioc), true, NULL);
394 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), export,
395 &client->nbdflags,
396 tlscreds, hostname,
397 &client->ioc,
398 &client->size, errp);
399 if (ret < 0) {
400 logout("Failed to negotiate with the NBD server\n");
401 return ret;
403 if (client->nbdflags & NBD_FLAG_SEND_FUA) {
404 bs->supported_write_flags = BDRV_REQ_FUA;
405 bs->supported_zero_flags |= BDRV_REQ_FUA;
407 if (client->nbdflags & NBD_FLAG_SEND_WRITE_ZEROES) {
408 bs->supported_zero_flags |= BDRV_REQ_MAY_UNMAP;
411 qemu_co_mutex_init(&client->send_mutex);
412 qemu_co_queue_init(&client->free_sema);
413 client->sioc = sioc;
414 object_ref(OBJECT(client->sioc));
416 if (!client->ioc) {
417 client->ioc = QIO_CHANNEL(sioc);
418 object_ref(OBJECT(client->ioc));
421 /* Now that we're connected, set the socket to be non-blocking and
422 * kick the reply mechanism. */
423 qio_channel_set_blocking(QIO_CHANNEL(sioc), false, NULL);
424 client->read_reply_co = qemu_coroutine_create(nbd_read_reply_entry, client);
425 nbd_client_attach_aio_context(bs, bdrv_get_aio_context(bs));
427 logout("Established connection with NBD server\n");
428 return 0;