xref: /qemu/block/nbd.c (revision ac06724a)
1 /*
2  * QEMU Block driver for  NBD
3  *
4  * Copyright (C) 2008 Bull S.A.S.
5  *     Author: Laurent Vivier <Laurent.Vivier@bull.net>
6  *
7  * Some parts:
8  *    Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
9  *
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:
16  *
17  * The above copyright notice and this permission notice shall be included in
18  * all copies or substantial portions of the Software.
19  *
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
26  * THE SOFTWARE.
27  */
28 
29 #include "qemu/osdep.h"
30 #include "block/nbd-client.h"
31 #include "qapi/error.h"
32 #include "qemu/uri.h"
33 #include "block/block_int.h"
34 #include "qemu/module.h"
35 #include "qapi-visit.h"
36 #include "qapi/qobject-input-visitor.h"
37 #include "qapi/qobject-output-visitor.h"
38 #include "qapi/qmp/qdict.h"
39 #include "qapi/qmp/qjson.h"
40 #include "qapi/qmp/qint.h"
41 #include "qapi/qmp/qstring.h"
42 #include "qemu/cutils.h"
43 
44 #define EN_OPTSTR ":exportname="
45 
46 typedef struct BDRVNBDState {
47     NBDClientSession client;
48 
49     /* For nbd_refresh_filename() */
50     SocketAddress *saddr;
51     char *export, *tlscredsid;
52 } BDRVNBDState;
53 
54 static int nbd_parse_uri(const char *filename, QDict *options)
55 {
56     URI *uri;
57     const char *p;
58     QueryParams *qp = NULL;
59     int ret = 0;
60     bool is_unix;
61 
62     uri = uri_parse(filename);
63     if (!uri) {
64         return -EINVAL;
65     }
66 
67     /* transport */
68     if (!strcmp(uri->scheme, "nbd")) {
69         is_unix = false;
70     } else if (!strcmp(uri->scheme, "nbd+tcp")) {
71         is_unix = false;
72     } else if (!strcmp(uri->scheme, "nbd+unix")) {
73         is_unix = true;
74     } else {
75         ret = -EINVAL;
76         goto out;
77     }
78 
79     p = uri->path ? uri->path : "/";
80     p += strspn(p, "/");
81     if (p[0]) {
82         qdict_put_str(options, "export", p);
83     }
84 
85     qp = query_params_parse(uri->query);
86     if (qp->n > 1 || (is_unix && !qp->n) || (!is_unix && qp->n)) {
87         ret = -EINVAL;
88         goto out;
89     }
90 
91     if (is_unix) {
92         /* nbd+unix:///export?socket=path */
93         if (uri->server || uri->port || strcmp(qp->p[0].name, "socket")) {
94             ret = -EINVAL;
95             goto out;
96         }
97         qdict_put_str(options, "server.type", "unix");
98         qdict_put_str(options, "server.path", qp->p[0].value);
99     } else {
100         QString *host;
101         char *port_str;
102 
103         /* nbd[+tcp]://host[:port]/export */
104         if (!uri->server) {
105             ret = -EINVAL;
106             goto out;
107         }
108 
109         /* strip braces from literal IPv6 address */
110         if (uri->server[0] == '[') {
111             host = qstring_from_substr(uri->server, 1,
112                                        strlen(uri->server) - 2);
113         } else {
114             host = qstring_from_str(uri->server);
115         }
116 
117         qdict_put_str(options, "server.type", "inet");
118         qdict_put(options, "server.host", host);
119 
120         port_str = g_strdup_printf("%d", uri->port ?: NBD_DEFAULT_PORT);
121         qdict_put_str(options, "server.port", port_str);
122         g_free(port_str);
123     }
124 
125 out:
126     if (qp) {
127         query_params_free(qp);
128     }
129     uri_free(uri);
130     return ret;
131 }
132 
133 static bool nbd_has_filename_options_conflict(QDict *options, Error **errp)
134 {
135     const QDictEntry *e;
136 
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))
143         {
144             error_setg(errp, "Option '%s' cannot be used with a file name",
145                        e->key);
146             return true;
147         }
148     }
149 
150     return false;
151 }
152 
153 static void nbd_parse_filename(const char *filename, QDict *options,
154                                Error **errp)
155 {
156     char *file;
157     char *export_name;
158     const char *host_spec;
159     const char *unixpath;
160 
161     if (nbd_has_filename_options_conflict(options, errp)) {
162         return;
163     }
164 
165     if (strstr(filename, "://")) {
166         int ret = nbd_parse_uri(filename, options);
167         if (ret < 0) {
168             error_setg(errp, "No valid URL specified");
169         }
170         return;
171     }
172 
173     file = g_strdup(filename);
174 
175     export_name = strstr(file, EN_OPTSTR);
176     if (export_name) {
177         if (export_name[strlen(EN_OPTSTR)] == 0) {
178             goto out;
179         }
180         export_name[0] = 0; /* truncate 'file' */
181         export_name += strlen(EN_OPTSTR);
182 
183         qdict_put_str(options, "export", export_name);
184     }
185 
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:'");
189         goto out;
190     }
191 
192     if (!*host_spec) {
193         goto out;
194     }
195 
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);
200     } else {
201         InetSocketAddress *addr = g_new(InetSocketAddress, 1);
202 
203         if (inet_parse(addr, host_spec, errp)) {
204             goto out_inet;
205         }
206 
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);
210     out_inet:
211         qapi_free_InetSocketAddress(addr);
212     }
213 
214 out:
215     g_free(file);
216 }
217 
218 static bool nbd_process_legacy_socket_options(QDict *output_options,
219                                               QemuOpts *legacy_opts,
220                                               Error **errp)
221 {
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");
225     const QDictEntry *e;
226 
227     if (!path && !host && !port) {
228         return true;
229     }
230 
231     for (e = qdict_first(output_options); e; e = qdict_next(output_options, e))
232     {
233         if (strstart(e->key, "server.", NULL)) {
234             error_setg(errp, "Cannot use 'server' and path/host/port at the "
235                        "same time");
236             return false;
237         }
238     }
239 
240     if (path && host) {
241         error_setg(errp, "path and host may not be used at the same time");
242         return false;
243     } else if (path) {
244         if (port) {
245             error_setg(errp, "port may not be used without host");
246             return false;
247         }
248 
249         qdict_put_str(output_options, "server.type", "unix");
250         qdict_put_str(output_options, "server.path", path);
251     } else if (host) {
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));
256     }
257 
258     return true;
259 }
260 
261 static SocketAddress *nbd_config(BDRVNBDState *s, QDict *options,
262                                  Error **errp)
263 {
264     SocketAddress *saddr = NULL;
265     QDict *addr = NULL;
266     QObject *crumpled_addr = NULL;
267     Visitor *iv = NULL;
268     Error *local_err = NULL;
269 
270     qdict_extract_subqdict(options, &addr, "server.");
271     if (!qdict_size(addr)) {
272         error_setg(errp, "NBD server address missing");
273         goto done;
274     }
275 
276     crumpled_addr = qdict_crumple(addr, errp);
277     if (!crumpled_addr) {
278         goto done;
279     }
280 
281     /*
282      * FIXME .numeric, .to, .ipv4 or .ipv6 don't work with -drive
283      * server.type=inet.  .to doesn't matter, it's ignored anyway.
284      * That's because when @options come from -blockdev or
285      * blockdev_add, members are typed according to the QAPI schema,
286      * but when they come from -drive, they're all QString.  The
287      * visitor expects the former.
288      */
289     iv = qobject_input_visitor_new(crumpled_addr);
290     visit_type_SocketAddress(iv, NULL, &saddr, &local_err);
291     if (local_err) {
292         error_propagate(errp, local_err);
293         goto done;
294     }
295 
296 done:
297     QDECREF(addr);
298     qobject_decref(crumpled_addr);
299     visit_free(iv);
300     return saddr;
301 }
302 
303 NBDClientSession *nbd_get_client_session(BlockDriverState *bs)
304 {
305     BDRVNBDState *s = bs->opaque;
306     return &s->client;
307 }
308 
309 static QIOChannelSocket *nbd_establish_connection(SocketAddress *saddr,
310                                                   Error **errp)
311 {
312     QIOChannelSocket *sioc;
313     Error *local_err = NULL;
314 
315     sioc = qio_channel_socket_new();
316     qio_channel_set_name(QIO_CHANNEL(sioc), "nbd-client");
317 
318     qio_channel_socket_connect_sync(sioc,
319                                     saddr,
320                                     &local_err);
321     if (local_err) {
322         object_unref(OBJECT(sioc));
323         error_propagate(errp, local_err);
324         return NULL;
325     }
326 
327     qio_channel_set_delay(QIO_CHANNEL(sioc), false);
328 
329     return sioc;
330 }
331 
332 
333 static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp)
334 {
335     Object *obj;
336     QCryptoTLSCreds *creds;
337 
338     obj = object_resolve_path_component(
339         object_get_objects_root(), id);
340     if (!obj) {
341         error_setg(errp, "No TLS credentials with id '%s'",
342                    id);
343         return NULL;
344     }
345     creds = (QCryptoTLSCreds *)
346         object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
347     if (!creds) {
348         error_setg(errp, "Object with id '%s' is not TLS credentials",
349                    id);
350         return NULL;
351     }
352 
353     if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) {
354         error_setg(errp,
355                    "Expecting TLS credentials with a client endpoint");
356         return NULL;
357     }
358     object_ref(obj);
359     return creds;
360 }
361 
362 
363 static QemuOptsList nbd_runtime_opts = {
364     .name = "nbd",
365     .head = QTAILQ_HEAD_INITIALIZER(nbd_runtime_opts.head),
366     .desc = {
367         {
368             .name = "host",
369             .type = QEMU_OPT_STRING,
370             .help = "TCP host to connect to",
371         },
372         {
373             .name = "port",
374             .type = QEMU_OPT_STRING,
375             .help = "TCP port to connect to",
376         },
377         {
378             .name = "path",
379             .type = QEMU_OPT_STRING,
380             .help = "Unix socket path to connect to",
381         },
382         {
383             .name = "export",
384             .type = QEMU_OPT_STRING,
385             .help = "Name of the NBD export to open",
386         },
387         {
388             .name = "tls-creds",
389             .type = QEMU_OPT_STRING,
390             .help = "ID of the TLS credentials to use",
391         },
392     },
393 };
394 
395 static int nbd_open(BlockDriverState *bs, QDict *options, int flags,
396                     Error **errp)
397 {
398     BDRVNBDState *s = bs->opaque;
399     QemuOpts *opts = NULL;
400     Error *local_err = NULL;
401     QIOChannelSocket *sioc = NULL;
402     QCryptoTLSCreds *tlscreds = NULL;
403     const char *hostname = NULL;
404     int ret = -EINVAL;
405 
406     opts = qemu_opts_create(&nbd_runtime_opts, NULL, 0, &error_abort);
407     qemu_opts_absorb_qdict(opts, options, &local_err);
408     if (local_err) {
409         error_propagate(errp, local_err);
410         goto error;
411     }
412 
413     /* Translate @host, @port, and @path to a SocketAddress */
414     if (!nbd_process_legacy_socket_options(options, opts, errp)) {
415         goto error;
416     }
417 
418     /* Pop the config into our state object. Exit if invalid. */
419     s->saddr = nbd_config(s, options, errp);
420     if (!s->saddr) {
421         goto error;
422     }
423 
424     s->export = g_strdup(qemu_opt_get(opts, "export"));
425 
426     s->tlscredsid = g_strdup(qemu_opt_get(opts, "tls-creds"));
427     if (s->tlscredsid) {
428         tlscreds = nbd_get_tls_creds(s->tlscredsid, errp);
429         if (!tlscreds) {
430             goto error;
431         }
432 
433         /* TODO SOCKET_ADDRESS_KIND_FD where fd has AF_INET or AF_INET6 */
434         if (s->saddr->type != SOCKET_ADDRESS_TYPE_INET) {
435             error_setg(errp, "TLS only supported over IP sockets");
436             goto error;
437         }
438         hostname = s->saddr->u.inet.host;
439     }
440 
441     /* establish TCP connection, return error if it fails
442      * TODO: Configurable retry-until-timeout behaviour.
443      */
444     sioc = nbd_establish_connection(s->saddr, errp);
445     if (!sioc) {
446         ret = -ECONNREFUSED;
447         goto error;
448     }
449 
450     /* NBD handshake */
451     ret = nbd_client_init(bs, sioc, s->export,
452                           tlscreds, hostname, errp);
453  error:
454     if (sioc) {
455         object_unref(OBJECT(sioc));
456     }
457     if (tlscreds) {
458         object_unref(OBJECT(tlscreds));
459     }
460     if (ret < 0) {
461         qapi_free_SocketAddress(s->saddr);
462         g_free(s->export);
463         g_free(s->tlscredsid);
464     }
465     qemu_opts_del(opts);
466     return ret;
467 }
468 
469 static int nbd_co_flush(BlockDriverState *bs)
470 {
471     return nbd_client_co_flush(bs);
472 }
473 
474 static void nbd_refresh_limits(BlockDriverState *bs, Error **errp)
475 {
476     bs->bl.max_pdiscard = NBD_MAX_BUFFER_SIZE;
477     bs->bl.max_pwrite_zeroes = NBD_MAX_BUFFER_SIZE;
478     bs->bl.max_transfer = NBD_MAX_BUFFER_SIZE;
479 }
480 
481 static void nbd_close(BlockDriverState *bs)
482 {
483     BDRVNBDState *s = bs->opaque;
484 
485     nbd_client_close(bs);
486 
487     qapi_free_SocketAddress(s->saddr);
488     g_free(s->export);
489     g_free(s->tlscredsid);
490 }
491 
492 static int64_t nbd_getlength(BlockDriverState *bs)
493 {
494     BDRVNBDState *s = bs->opaque;
495 
496     return s->client.size;
497 }
498 
499 static void nbd_detach_aio_context(BlockDriverState *bs)
500 {
501     nbd_client_detach_aio_context(bs);
502 }
503 
504 static void nbd_attach_aio_context(BlockDriverState *bs,
505                                    AioContext *new_context)
506 {
507     nbd_client_attach_aio_context(bs, new_context);
508 }
509 
510 static void nbd_refresh_filename(BlockDriverState *bs, QDict *options)
511 {
512     BDRVNBDState *s = bs->opaque;
513     QDict *opts = qdict_new();
514     QObject *saddr_qdict;
515     Visitor *ov;
516     const char *host = NULL, *port = NULL, *path = NULL;
517 
518     if (s->saddr->type == SOCKET_ADDRESS_TYPE_INET) {
519         const InetSocketAddress *inet = &s->saddr->u.inet;
520         if (!inet->has_ipv4 && !inet->has_ipv6 && !inet->has_to) {
521             host = inet->host;
522             port = inet->port;
523         }
524     } else if (s->saddr->type == SOCKET_ADDRESS_TYPE_UNIX) {
525         path = s->saddr->u.q_unix.path;
526     } /* else can't represent as pseudo-filename */
527 
528     qdict_put_str(opts, "driver", "nbd");
529 
530     if (path && s->export) {
531         snprintf(bs->exact_filename, sizeof(bs->exact_filename),
532                  "nbd+unix:///%s?socket=%s", s->export, path);
533     } else if (path && !s->export) {
534         snprintf(bs->exact_filename, sizeof(bs->exact_filename),
535                  "nbd+unix://?socket=%s", path);
536     } else if (host && s->export) {
537         snprintf(bs->exact_filename, sizeof(bs->exact_filename),
538                  "nbd://%s:%s/%s", host, port, s->export);
539     } else if (host && !s->export) {
540         snprintf(bs->exact_filename, sizeof(bs->exact_filename),
541                  "nbd://%s:%s", host, port);
542     }
543 
544     ov = qobject_output_visitor_new(&saddr_qdict);
545     visit_type_SocketAddress(ov, NULL, &s->saddr, &error_abort);
546     visit_complete(ov, &saddr_qdict);
547     visit_free(ov);
548     qdict_put_obj(opts, "server", saddr_qdict);
549 
550     if (s->export) {
551         qdict_put_str(opts, "export", s->export);
552     }
553     if (s->tlscredsid) {
554         qdict_put_str(opts, "tls-creds", s->tlscredsid);
555     }
556 
557     qdict_flatten(opts);
558     bs->full_open_options = opts;
559 }
560 
561 static BlockDriver bdrv_nbd = {
562     .format_name                = "nbd",
563     .protocol_name              = "nbd",
564     .instance_size              = sizeof(BDRVNBDState),
565     .bdrv_parse_filename        = nbd_parse_filename,
566     .bdrv_file_open             = nbd_open,
567     .bdrv_co_preadv             = nbd_client_co_preadv,
568     .bdrv_co_pwritev            = nbd_client_co_pwritev,
569     .bdrv_co_pwrite_zeroes      = nbd_client_co_pwrite_zeroes,
570     .bdrv_close                 = nbd_close,
571     .bdrv_co_flush_to_os        = nbd_co_flush,
572     .bdrv_co_pdiscard           = nbd_client_co_pdiscard,
573     .bdrv_refresh_limits        = nbd_refresh_limits,
574     .bdrv_getlength             = nbd_getlength,
575     .bdrv_detach_aio_context    = nbd_detach_aio_context,
576     .bdrv_attach_aio_context    = nbd_attach_aio_context,
577     .bdrv_refresh_filename      = nbd_refresh_filename,
578 };
579 
580 static BlockDriver bdrv_nbd_tcp = {
581     .format_name                = "nbd",
582     .protocol_name              = "nbd+tcp",
583     .instance_size              = sizeof(BDRVNBDState),
584     .bdrv_parse_filename        = nbd_parse_filename,
585     .bdrv_file_open             = nbd_open,
586     .bdrv_co_preadv             = nbd_client_co_preadv,
587     .bdrv_co_pwritev            = nbd_client_co_pwritev,
588     .bdrv_co_pwrite_zeroes      = nbd_client_co_pwrite_zeroes,
589     .bdrv_close                 = nbd_close,
590     .bdrv_co_flush_to_os        = nbd_co_flush,
591     .bdrv_co_pdiscard           = nbd_client_co_pdiscard,
592     .bdrv_refresh_limits        = nbd_refresh_limits,
593     .bdrv_getlength             = nbd_getlength,
594     .bdrv_detach_aio_context    = nbd_detach_aio_context,
595     .bdrv_attach_aio_context    = nbd_attach_aio_context,
596     .bdrv_refresh_filename      = nbd_refresh_filename,
597 };
598 
599 static BlockDriver bdrv_nbd_unix = {
600     .format_name                = "nbd",
601     .protocol_name              = "nbd+unix",
602     .instance_size              = sizeof(BDRVNBDState),
603     .bdrv_parse_filename        = nbd_parse_filename,
604     .bdrv_file_open             = nbd_open,
605     .bdrv_co_preadv             = nbd_client_co_preadv,
606     .bdrv_co_pwritev            = nbd_client_co_pwritev,
607     .bdrv_co_pwrite_zeroes      = nbd_client_co_pwrite_zeroes,
608     .bdrv_close                 = nbd_close,
609     .bdrv_co_flush_to_os        = nbd_co_flush,
610     .bdrv_co_pdiscard           = nbd_client_co_pdiscard,
611     .bdrv_refresh_limits        = nbd_refresh_limits,
612     .bdrv_getlength             = nbd_getlength,
613     .bdrv_detach_aio_context    = nbd_detach_aio_context,
614     .bdrv_attach_aio_context    = nbd_attach_aio_context,
615     .bdrv_refresh_filename      = nbd_refresh_filename,
616 };
617 
618 static void bdrv_nbd_init(void)
619 {
620     bdrv_register(&bdrv_nbd);
621     bdrv_register(&bdrv_nbd_tcp);
622     bdrv_register(&bdrv_nbd_unix);
623 }
624 
625 block_init(bdrv_nbd_init);
626