2 * QEMU Block driver for NBD
4 * Copyright (C) 2008 Bull S.A.S.
5 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
8 * Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 #include "qemu/osdep.h"
30 #include "nbd-client.h"
31 #include "block/qdict.h"
32 #include "qapi/error.h"
34 #include "block/block_int.h"
35 #include "qemu/module.h"
36 #include "qemu/option.h"
37 #include "qapi/qapi-visit-sockets.h"
38 #include "qapi/qobject-input-visitor.h"
39 #include "qapi/qobject-output-visitor.h"
40 #include "qapi/qmp/qdict.h"
41 #include "qapi/qmp/qstring.h"
42 #include "qemu/cutils.h"
44 #define EN_OPTSTR ":exportname="
46 typedef struct BDRVNBDState
{
47 NBDClientSession client
;
49 /* For nbd_refresh_filename() */
51 char *export
, *tlscredsid
;
54 static int nbd_parse_uri(const char *filename
, QDict
*options
)
58 QueryParams
*qp
= NULL
;
62 uri
= uri_parse(filename
);
68 if (!g_strcmp0(uri
->scheme
, "nbd")) {
70 } else if (!g_strcmp0(uri
->scheme
, "nbd+tcp")) {
72 } else if (!g_strcmp0(uri
->scheme
, "nbd+unix")) {
79 p
= uri
->path
? uri
->path
: "/";
82 qdict_put_str(options
, "export", p
);
85 qp
= query_params_parse(uri
->query
);
86 if (qp
->n
> 1 || (is_unix
&& !qp
->n
) || (!is_unix
&& qp
->n
)) {
92 /* nbd+unix:///export?socket=path */
93 if (uri
->server
|| uri
->port
|| strcmp(qp
->p
[0].name
, "socket")) {
97 qdict_put_str(options
, "server.type", "unix");
98 qdict_put_str(options
, "server.path", qp
->p
[0].value
);
103 /* nbd[+tcp]://host[:port]/export */
109 /* strip braces from literal IPv6 address */
110 if (uri
->server
[0] == '[') {
111 host
= qstring_from_substr(uri
->server
, 1,
112 strlen(uri
->server
) - 1);
114 host
= qstring_from_str(uri
->server
);
117 qdict_put_str(options
, "server.type", "inet");
118 qdict_put(options
, "server.host", host
);
120 port_str
= g_strdup_printf("%d", uri
->port
?: NBD_DEFAULT_PORT
);
121 qdict_put_str(options
, "server.port", port_str
);
127 query_params_free(qp
);
133 static bool nbd_has_filename_options_conflict(QDict
*options
, Error
**errp
)
137 for (e
= qdict_first(options
); e
; e
= qdict_next(options
, e
)) {
138 if (!strcmp(e
->key
, "host") ||
139 !strcmp(e
->key
, "port") ||
140 !strcmp(e
->key
, "path") ||
141 !strcmp(e
->key
, "export") ||
142 strstart(e
->key
, "server.", NULL
))
144 error_setg(errp
, "Option '%s' cannot be used with a file name",
153 static void nbd_parse_filename(const char *filename
, QDict
*options
,
158 const char *host_spec
;
159 const char *unixpath
;
161 if (nbd_has_filename_options_conflict(options
, errp
)) {
165 if (strstr(filename
, "://")) {
166 int ret
= nbd_parse_uri(filename
, options
);
168 error_setg(errp
, "No valid URL specified");
173 file
= g_strdup(filename
);
175 export_name
= strstr(file
, EN_OPTSTR
);
177 if (export_name
[strlen(EN_OPTSTR
)] == 0) {
180 export_name
[0] = 0; /* truncate 'file' */
181 export_name
+= strlen(EN_OPTSTR
);
183 qdict_put_str(options
, "export", export_name
);
186 /* extract the host_spec - fail if it's not nbd:... */
187 if (!strstart(file
, "nbd:", &host_spec
)) {
188 error_setg(errp
, "File name string for NBD must start with 'nbd:'");
196 /* are we a UNIX or TCP socket? */
197 if (strstart(host_spec
, "unix:", &unixpath
)) {
198 qdict_put_str(options
, "server.type", "unix");
199 qdict_put_str(options
, "server.path", unixpath
);
201 InetSocketAddress
*addr
= g_new(InetSocketAddress
, 1);
203 if (inet_parse(addr
, host_spec
, errp
)) {
207 qdict_put_str(options
, "server.type", "inet");
208 qdict_put_str(options
, "server.host", addr
->host
);
209 qdict_put_str(options
, "server.port", addr
->port
);
211 qapi_free_InetSocketAddress(addr
);
218 static bool nbd_process_legacy_socket_options(QDict
*output_options
,
219 QemuOpts
*legacy_opts
,
222 const char *path
= qemu_opt_get(legacy_opts
, "path");
223 const char *host
= qemu_opt_get(legacy_opts
, "host");
224 const char *port
= qemu_opt_get(legacy_opts
, "port");
227 if (!path
&& !host
&& !port
) {
231 for (e
= qdict_first(output_options
); e
; e
= qdict_next(output_options
, e
))
233 if (strstart(e
->key
, "server.", NULL
)) {
234 error_setg(errp
, "Cannot use 'server' and path/host/port at the "
241 error_setg(errp
, "path and host may not be used at the same time");
245 error_setg(errp
, "port may not be used without host");
249 qdict_put_str(output_options
, "server.type", "unix");
250 qdict_put_str(output_options
, "server.path", path
);
252 qdict_put_str(output_options
, "server.type", "inet");
253 qdict_put_str(output_options
, "server.host", host
);
254 qdict_put_str(output_options
, "server.port",
255 port
?: stringify(NBD_DEFAULT_PORT
));
261 static SocketAddress
*nbd_config(BDRVNBDState
*s
, QDict
*options
,
264 SocketAddress
*saddr
= NULL
;
267 Error
*local_err
= NULL
;
269 qdict_extract_subqdict(options
, &addr
, "server.");
270 if (!qdict_size(addr
)) {
271 error_setg(errp
, "NBD server address missing");
275 iv
= qobject_input_visitor_new_flat_confused(addr
, errp
);
280 visit_type_SocketAddress(iv
, NULL
, &saddr
, &local_err
);
282 error_propagate(errp
, local_err
);
292 NBDClientSession
*nbd_get_client_session(BlockDriverState
*bs
)
294 BDRVNBDState
*s
= bs
->opaque
;
298 static QIOChannelSocket
*nbd_establish_connection(SocketAddress
*saddr
,
301 QIOChannelSocket
*sioc
;
302 Error
*local_err
= NULL
;
304 sioc
= qio_channel_socket_new();
305 qio_channel_set_name(QIO_CHANNEL(sioc
), "nbd-client");
307 qio_channel_socket_connect_sync(sioc
,
311 object_unref(OBJECT(sioc
));
312 error_propagate(errp
, local_err
);
316 qio_channel_set_delay(QIO_CHANNEL(sioc
), false);
322 static QCryptoTLSCreds
*nbd_get_tls_creds(const char *id
, Error
**errp
)
325 QCryptoTLSCreds
*creds
;
327 obj
= object_resolve_path_component(
328 object_get_objects_root(), id
);
330 error_setg(errp
, "No TLS credentials with id '%s'",
334 creds
= (QCryptoTLSCreds
*)
335 object_dynamic_cast(obj
, TYPE_QCRYPTO_TLS_CREDS
);
337 error_setg(errp
, "Object with id '%s' is not TLS credentials",
342 if (creds
->endpoint
!= QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
) {
344 "Expecting TLS credentials with a client endpoint");
352 static QemuOptsList nbd_runtime_opts
= {
354 .head
= QTAILQ_HEAD_INITIALIZER(nbd_runtime_opts
.head
),
358 .type
= QEMU_OPT_STRING
,
359 .help
= "TCP host to connect to",
363 .type
= QEMU_OPT_STRING
,
364 .help
= "TCP port to connect to",
368 .type
= QEMU_OPT_STRING
,
369 .help
= "Unix socket path to connect to",
373 .type
= QEMU_OPT_STRING
,
374 .help
= "Name of the NBD export to open",
378 .type
= QEMU_OPT_STRING
,
379 .help
= "ID of the TLS credentials to use",
382 .name
= "x-dirty-bitmap",
383 .type
= QEMU_OPT_STRING
,
384 .help
= "experimental: expose named dirty bitmap in place of "
387 { /* end of list */ }
391 static int nbd_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
394 BDRVNBDState
*s
= bs
->opaque
;
395 QemuOpts
*opts
= NULL
;
396 Error
*local_err
= NULL
;
397 QIOChannelSocket
*sioc
= NULL
;
398 QCryptoTLSCreds
*tlscreds
= NULL
;
399 const char *hostname
= NULL
;
402 opts
= qemu_opts_create(&nbd_runtime_opts
, NULL
, 0, &error_abort
);
403 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
405 error_propagate(errp
, local_err
);
409 /* Translate @host, @port, and @path to a SocketAddress */
410 if (!nbd_process_legacy_socket_options(options
, opts
, errp
)) {
414 /* Pop the config into our state object. Exit if invalid. */
415 s
->saddr
= nbd_config(s
, options
, errp
);
420 s
->export
= g_strdup(qemu_opt_get(opts
, "export"));
422 s
->tlscredsid
= g_strdup(qemu_opt_get(opts
, "tls-creds"));
424 tlscreds
= nbd_get_tls_creds(s
->tlscredsid
, errp
);
429 /* TODO SOCKET_ADDRESS_KIND_FD where fd has AF_INET or AF_INET6 */
430 if (s
->saddr
->type
!= SOCKET_ADDRESS_TYPE_INET
) {
431 error_setg(errp
, "TLS only supported over IP sockets");
434 hostname
= s
->saddr
->u
.inet
.host
;
437 /* establish TCP connection, return error if it fails
438 * TODO: Configurable retry-until-timeout behaviour.
440 sioc
= nbd_establish_connection(s
->saddr
, errp
);
447 ret
= nbd_client_init(bs
, sioc
, s
->export
, tlscreds
, hostname
,
448 qemu_opt_get(opts
, "x-dirty-bitmap"), errp
);
451 object_unref(OBJECT(sioc
));
454 object_unref(OBJECT(tlscreds
));
457 qapi_free_SocketAddress(s
->saddr
);
459 g_free(s
->tlscredsid
);
465 static int nbd_co_flush(BlockDriverState
*bs
)
467 return nbd_client_co_flush(bs
);
470 static void nbd_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
472 NBDClientSession
*s
= nbd_get_client_session(bs
);
473 uint32_t min
= s
->info
.min_block
;
474 uint32_t max
= MIN_NON_ZERO(NBD_MAX_BUFFER_SIZE
, s
->info
.max_block
);
476 bs
->bl
.request_alignment
= min
? min
: BDRV_SECTOR_SIZE
;
477 bs
->bl
.max_pdiscard
= max
;
478 bs
->bl
.max_pwrite_zeroes
= max
;
479 bs
->bl
.max_transfer
= max
;
481 if (s
->info
.opt_block
&&
482 s
->info
.opt_block
> bs
->bl
.opt_transfer
) {
483 bs
->bl
.opt_transfer
= s
->info
.opt_block
;
487 static void nbd_close(BlockDriverState
*bs
)
489 BDRVNBDState
*s
= bs
->opaque
;
491 nbd_client_close(bs
);
493 qapi_free_SocketAddress(s
->saddr
);
495 g_free(s
->tlscredsid
);
498 static int64_t nbd_getlength(BlockDriverState
*bs
)
500 BDRVNBDState
*s
= bs
->opaque
;
502 return s
->client
.info
.size
;
505 static void nbd_detach_aio_context(BlockDriverState
*bs
)
507 nbd_client_detach_aio_context(bs
);
510 static void nbd_attach_aio_context(BlockDriverState
*bs
,
511 AioContext
*new_context
)
513 nbd_client_attach_aio_context(bs
, new_context
);
516 static void nbd_refresh_filename(BlockDriverState
*bs
, QDict
*options
)
518 BDRVNBDState
*s
= bs
->opaque
;
519 QDict
*opts
= qdict_new();
520 QObject
*saddr_qdict
;
522 const char *host
= NULL
, *port
= NULL
, *path
= NULL
;
524 if (s
->saddr
->type
== SOCKET_ADDRESS_TYPE_INET
) {
525 const InetSocketAddress
*inet
= &s
->saddr
->u
.inet
;
526 if (!inet
->has_ipv4
&& !inet
->has_ipv6
&& !inet
->has_to
) {
530 } else if (s
->saddr
->type
== SOCKET_ADDRESS_TYPE_UNIX
) {
531 path
= s
->saddr
->u
.q_unix
.path
;
532 } /* else can't represent as pseudo-filename */
534 qdict_put_str(opts
, "driver", "nbd");
536 if (path
&& s
->export
) {
537 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
538 "nbd+unix:///%s?socket=%s", s
->export
, path
);
539 } else if (path
&& !s
->export
) {
540 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
541 "nbd+unix://?socket=%s", path
);
542 } else if (host
&& s
->export
) {
543 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
544 "nbd://%s:%s/%s", host
, port
, s
->export
);
545 } else if (host
&& !s
->export
) {
546 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
547 "nbd://%s:%s", host
, port
);
550 ov
= qobject_output_visitor_new(&saddr_qdict
);
551 visit_type_SocketAddress(ov
, NULL
, &s
->saddr
, &error_abort
);
552 visit_complete(ov
, &saddr_qdict
);
554 qdict_put_obj(opts
, "server", saddr_qdict
);
557 qdict_put_str(opts
, "export", s
->export
);
560 qdict_put_str(opts
, "tls-creds", s
->tlscredsid
);
564 bs
->full_open_options
= opts
;
567 static BlockDriver bdrv_nbd
= {
568 .format_name
= "nbd",
569 .protocol_name
= "nbd",
570 .instance_size
= sizeof(BDRVNBDState
),
571 .bdrv_parse_filename
= nbd_parse_filename
,
572 .bdrv_file_open
= nbd_open
,
573 .bdrv_co_preadv
= nbd_client_co_preadv
,
574 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
575 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
576 .bdrv_close
= nbd_close
,
577 .bdrv_co_flush_to_os
= nbd_co_flush
,
578 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
579 .bdrv_refresh_limits
= nbd_refresh_limits
,
580 .bdrv_getlength
= nbd_getlength
,
581 .bdrv_detach_aio_context
= nbd_detach_aio_context
,
582 .bdrv_attach_aio_context
= nbd_attach_aio_context
,
583 .bdrv_refresh_filename
= nbd_refresh_filename
,
584 .bdrv_co_block_status
= nbd_client_co_block_status
,
587 static BlockDriver bdrv_nbd_tcp
= {
588 .format_name
= "nbd",
589 .protocol_name
= "nbd+tcp",
590 .instance_size
= sizeof(BDRVNBDState
),
591 .bdrv_parse_filename
= nbd_parse_filename
,
592 .bdrv_file_open
= nbd_open
,
593 .bdrv_co_preadv
= nbd_client_co_preadv
,
594 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
595 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
596 .bdrv_close
= nbd_close
,
597 .bdrv_co_flush_to_os
= nbd_co_flush
,
598 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
599 .bdrv_refresh_limits
= nbd_refresh_limits
,
600 .bdrv_getlength
= nbd_getlength
,
601 .bdrv_detach_aio_context
= nbd_detach_aio_context
,
602 .bdrv_attach_aio_context
= nbd_attach_aio_context
,
603 .bdrv_refresh_filename
= nbd_refresh_filename
,
604 .bdrv_co_block_status
= nbd_client_co_block_status
,
607 static BlockDriver bdrv_nbd_unix
= {
608 .format_name
= "nbd",
609 .protocol_name
= "nbd+unix",
610 .instance_size
= sizeof(BDRVNBDState
),
611 .bdrv_parse_filename
= nbd_parse_filename
,
612 .bdrv_file_open
= nbd_open
,
613 .bdrv_co_preadv
= nbd_client_co_preadv
,
614 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
615 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
616 .bdrv_close
= nbd_close
,
617 .bdrv_co_flush_to_os
= nbd_co_flush
,
618 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
619 .bdrv_refresh_limits
= nbd_refresh_limits
,
620 .bdrv_getlength
= nbd_getlength
,
621 .bdrv_detach_aio_context
= nbd_detach_aio_context
,
622 .bdrv_attach_aio_context
= nbd_attach_aio_context
,
623 .bdrv_refresh_filename
= nbd_refresh_filename
,
624 .bdrv_co_block_status
= nbd_client_co_block_status
,
627 static void bdrv_nbd_init(void)
629 bdrv_register(&bdrv_nbd
);
630 bdrv_register(&bdrv_nbd_tcp
);
631 bdrv_register(&bdrv_nbd_unix
);
634 block_init(bdrv_nbd_init
);