]>
Commit | Line | Data |
---|---|---|
75818250 TS |
1 | /* |
2 | * QEMU Block driver for NBD | |
3 | * | |
4 | * Copyright (C) 2008 Bull S.A.S. | |
bd5921b4 | 5 | * Author: Laurent Vivier <[email protected]> |
75818250 TS |
6 | * |
7 | * Some parts: | |
8 | * Copyright (C) 2007 Anthony Liguori <[email protected]> | |
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 | ||
2302c1ca | 29 | #include "block/nbd-client.h" |
1de7afc9 | 30 | #include "qemu/uri.h" |
737e150e | 31 | #include "block/block_int.h" |
1de7afc9 PB |
32 | #include "qemu/module.h" |
33 | #include "qemu/sockets.h" | |
2019d68b | 34 | #include "qapi/qmp/qdict.h" |
f53a1feb KW |
35 | #include "qapi/qmp/qjson.h" |
36 | #include "qapi/qmp/qint.h" | |
2019d68b | 37 | #include "qapi/qmp/qstring.h" |
75818250 TS |
38 | |
39 | #include <sys/types.h> | |
40 | #include <unistd.h> | |
75818250 | 41 | |
1d45f8b5 LV |
42 | #define EN_OPTSTR ":exportname=" |
43 | ||
75818250 | 44 | typedef struct BDRVNBDState { |
2302c1ca | 45 | NbdClientSession client; |
75818250 TS |
46 | } BDRVNBDState; |
47 | ||
f53a1feb | 48 | static int nbd_parse_uri(const char *filename, QDict *options) |
1d7d2a9d PB |
49 | { |
50 | URI *uri; | |
51 | const char *p; | |
52 | QueryParams *qp = NULL; | |
53 | int ret = 0; | |
f53a1feb | 54 | bool is_unix; |
1d7d2a9d PB |
55 | |
56 | uri = uri_parse(filename); | |
57 | if (!uri) { | |
58 | return -EINVAL; | |
59 | } | |
60 | ||
61 | /* transport */ | |
62 | if (!strcmp(uri->scheme, "nbd")) { | |
f53a1feb | 63 | is_unix = false; |
1d7d2a9d | 64 | } else if (!strcmp(uri->scheme, "nbd+tcp")) { |
f53a1feb | 65 | is_unix = false; |
1d7d2a9d | 66 | } else if (!strcmp(uri->scheme, "nbd+unix")) { |
f53a1feb | 67 | is_unix = true; |
1d7d2a9d PB |
68 | } else { |
69 | ret = -EINVAL; | |
70 | goto out; | |
71 | } | |
72 | ||
73 | p = uri->path ? uri->path : "/"; | |
74 | p += strspn(p, "/"); | |
75 | if (p[0]) { | |
f53a1feb | 76 | qdict_put(options, "export", qstring_from_str(p)); |
1d7d2a9d PB |
77 | } |
78 | ||
79 | qp = query_params_parse(uri->query); | |
f53a1feb | 80 | if (qp->n > 1 || (is_unix && !qp->n) || (!is_unix && qp->n)) { |
1d7d2a9d PB |
81 | ret = -EINVAL; |
82 | goto out; | |
83 | } | |
84 | ||
f53a1feb | 85 | if (is_unix) { |
1d7d2a9d PB |
86 | /* nbd+unix:///export?socket=path */ |
87 | if (uri->server || uri->port || strcmp(qp->p[0].name, "socket")) { | |
88 | ret = -EINVAL; | |
89 | goto out; | |
90 | } | |
f53a1feb | 91 | qdict_put(options, "path", qstring_from_str(qp->p[0].value)); |
1d7d2a9d | 92 | } else { |
23307908 | 93 | QString *host; |
bebbf7fa | 94 | /* nbd[+tcp]://host[:port]/export */ |
1d7d2a9d PB |
95 | if (!uri->server) { |
96 | ret = -EINVAL; | |
97 | goto out; | |
98 | } | |
f17c90be | 99 | |
23307908 JT |
100 | /* strip braces from literal IPv6 address */ |
101 | if (uri->server[0] == '[') { | |
102 | host = qstring_from_substr(uri->server, 1, | |
103 | strlen(uri->server) - 2); | |
104 | } else { | |
105 | host = qstring_from_str(uri->server); | |
106 | } | |
107 | ||
108 | qdict_put(options, "host", host); | |
bebbf7fa KW |
109 | if (uri->port) { |
110 | char* port_str = g_strdup_printf("%d", uri->port); | |
111 | qdict_put(options, "port", qstring_from_str(port_str)); | |
112 | g_free(port_str); | |
113 | } | |
1d7d2a9d PB |
114 | } |
115 | ||
116 | out: | |
117 | if (qp) { | |
118 | query_params_free(qp); | |
119 | } | |
120 | uri_free(uri); | |
121 | return ret; | |
122 | } | |
123 | ||
6963a30d KW |
124 | static void nbd_parse_filename(const char *filename, QDict *options, |
125 | Error **errp) | |
75818250 | 126 | { |
1d45f8b5 | 127 | char *file; |
33897dc7 NT |
128 | char *export_name; |
129 | const char *host_spec; | |
75818250 | 130 | const char *unixpath; |
75818250 | 131 | |
681e7ad0 KW |
132 | if (qdict_haskey(options, "host") |
133 | || qdict_haskey(options, "port") | |
134 | || qdict_haskey(options, "path")) | |
135 | { | |
136 | error_setg(errp, "host/port/path and a file name may not be specified " | |
137 | "at the same time"); | |
138 | return; | |
139 | } | |
140 | ||
1d7d2a9d | 141 | if (strstr(filename, "://")) { |
6963a30d KW |
142 | int ret = nbd_parse_uri(filename, options); |
143 | if (ret < 0) { | |
144 | error_setg(errp, "No valid URL specified"); | |
145 | } | |
146 | return; | |
1d7d2a9d PB |
147 | } |
148 | ||
7267c094 | 149 | file = g_strdup(filename); |
1d45f8b5 | 150 | |
33897dc7 NT |
151 | export_name = strstr(file, EN_OPTSTR); |
152 | if (export_name) { | |
153 | if (export_name[strlen(EN_OPTSTR)] == 0) { | |
1d45f8b5 LV |
154 | goto out; |
155 | } | |
33897dc7 NT |
156 | export_name[0] = 0; /* truncate 'file' */ |
157 | export_name += strlen(EN_OPTSTR); | |
f53a1feb KW |
158 | |
159 | qdict_put(options, "export", qstring_from_str(export_name)); | |
1d45f8b5 LV |
160 | } |
161 | ||
33897dc7 NT |
162 | /* extract the host_spec - fail if it's not nbd:... */ |
163 | if (!strstart(file, "nbd:", &host_spec)) { | |
6963a30d | 164 | error_setg(errp, "File name string for NBD must start with 'nbd:'"); |
1d45f8b5 LV |
165 | goto out; |
166 | } | |
75818250 | 167 | |
f53a1feb | 168 | if (!*host_spec) { |
f53a1feb KW |
169 | goto out; |
170 | } | |
171 | ||
33897dc7 NT |
172 | /* are we a UNIX or TCP socket? */ |
173 | if (strstart(host_spec, "unix:", &unixpath)) { | |
f53a1feb | 174 | qdict_put(options, "path", qstring_from_str(unixpath)); |
75818250 | 175 | } else { |
f53a1feb KW |
176 | InetSocketAddress *addr = NULL; |
177 | ||
6963a30d | 178 | addr = inet_parse(host_spec, errp); |
92de9012 | 179 | if (!addr) { |
f17c90be KW |
180 | goto out; |
181 | } | |
75818250 | 182 | |
f53a1feb KW |
183 | qdict_put(options, "host", qstring_from_str(addr->host)); |
184 | qdict_put(options, "port", qstring_from_str(addr->port)); | |
185 | qapi_free_InetSocketAddress(addr); | |
186 | } | |
75818250 | 187 | |
33897dc7 | 188 | out: |
7267c094 | 189 | g_free(file); |
f53a1feb KW |
190 | } |
191 | ||
7a5ed437 DB |
192 | static SocketAddress *nbd_config(BDRVNBDState *s, QDict *options, char **export, |
193 | Error **errp) | |
f53a1feb | 194 | { |
7a5ed437 | 195 | SocketAddress *saddr; |
f53a1feb | 196 | |
a69d9af4 PB |
197 | if (qdict_haskey(options, "path") == qdict_haskey(options, "host")) { |
198 | if (qdict_haskey(options, "path")) { | |
77e8b9ca | 199 | error_setg(errp, "path and host may not be used at the same time."); |
a69d9af4 | 200 | } else { |
77e8b9ca | 201 | error_setg(errp, "one of path and host must be specified."); |
681e7ad0 | 202 | } |
7a5ed437 | 203 | return NULL; |
33897dc7 | 204 | } |
f53a1feb | 205 | |
7a5ed437 | 206 | saddr = g_new0(SocketAddress, 1); |
f53a1feb | 207 | |
7a5ed437 | 208 | if (qdict_haskey(options, "path")) { |
6a8f9661 EB |
209 | saddr->type = SOCKET_ADDRESS_KIND_UNIX; |
210 | saddr->u.q_unix = g_new0(UnixSocketAddress, 1); | |
211 | saddr->u.q_unix->path = g_strdup(qdict_get_str(options, "path")); | |
7a5ed437 DB |
212 | qdict_del(options, "path"); |
213 | } else { | |
6a8f9661 EB |
214 | saddr->type = SOCKET_ADDRESS_KIND_INET; |
215 | saddr->u.inet = g_new0(InetSocketAddress, 1); | |
216 | saddr->u.inet->host = g_strdup(qdict_get_str(options, "host")); | |
7a5ed437 | 217 | if (!qdict_get_try_str(options, "port")) { |
6a8f9661 | 218 | saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT); |
7a5ed437 | 219 | } else { |
6a8f9661 | 220 | saddr->u.inet->port = g_strdup(qdict_get_str(options, "port")); |
7a5ed437 DB |
221 | } |
222 | qdict_del(options, "host"); | |
223 | qdict_del(options, "port"); | |
f53a1feb KW |
224 | } |
225 | ||
6a8f9661 | 226 | s->client.is_unix = saddr->type == SOCKET_ADDRESS_KIND_UNIX; |
bebbf7fa | 227 | |
e2bc625f MAL |
228 | *export = g_strdup(qdict_get_try_str(options, "export")); |
229 | if (*export) { | |
f53a1feb KW |
230 | qdict_del(options, "export"); |
231 | } | |
7a5ed437 DB |
232 | |
233 | return saddr; | |
33897dc7 | 234 | } |
1d45f8b5 | 235 | |
f53a829b HR |
236 | NbdClientSession *nbd_get_client_session(BlockDriverState *bs) |
237 | { | |
238 | BDRVNBDState *s = bs->opaque; | |
239 | return &s->client; | |
240 | } | |
241 | ||
7a5ed437 DB |
242 | static int nbd_establish_connection(BlockDriverState *bs, |
243 | SocketAddress *saddr, | |
244 | Error **errp) | |
33897dc7 NT |
245 | { |
246 | BDRVNBDState *s = bs->opaque; | |
247 | int sock; | |
75818250 | 248 | |
7a5ed437 | 249 | sock = socket_connect(saddr, errp, NULL, NULL); |
75818250 | 250 | |
fc19f8a0 | 251 | if (sock < 0) { |
33897dc7 | 252 | logout("Failed to establish connection to NBD server\n"); |
2b1f13b9 | 253 | return -EIO; |
1d45f8b5 | 254 | } |
75818250 | 255 | |
7a5ed437 DB |
256 | if (!s->client.is_unix) { |
257 | socket_set_nodelay(sock); | |
258 | } | |
259 | ||
2302c1ca | 260 | return sock; |
33897dc7 NT |
261 | } |
262 | ||
015a1036 HR |
263 | static int nbd_open(BlockDriverState *bs, QDict *options, int flags, |
264 | Error **errp) | |
33897dc7 NT |
265 | { |
266 | BDRVNBDState *s = bs->opaque; | |
e2bc625f | 267 | char *export = NULL; |
2302c1ca | 268 | int result, sock; |
7a5ed437 | 269 | SocketAddress *saddr; |
ae255e52 | 270 | |
33897dc7 | 271 | /* Pop the config into our state object. Exit if invalid. */ |
7a5ed437 DB |
272 | saddr = nbd_config(s, options, &export, errp); |
273 | if (!saddr) { | |
77e8b9ca | 274 | return -EINVAL; |
33897dc7 NT |
275 | } |
276 | ||
277 | /* establish TCP connection, return error if it fails | |
278 | * TODO: Configurable retry-until-timeout behaviour. | |
279 | */ | |
7a5ed437 DB |
280 | sock = nbd_establish_connection(bs, saddr, errp); |
281 | qapi_free_SocketAddress(saddr); | |
2302c1ca | 282 | if (sock < 0) { |
9d0b65e6 | 283 | g_free(export); |
2302c1ca | 284 | return sock; |
2c7989a9 PB |
285 | } |
286 | ||
2302c1ca | 287 | /* NBD handshake */ |
f53a829b | 288 | result = nbd_client_init(bs, sock, export, errp); |
e2bc625f MAL |
289 | g_free(export); |
290 | return result; | |
e183ef75 PB |
291 | } |
292 | ||
d9b09f13 PB |
293 | static int nbd_co_readv(BlockDriverState *bs, int64_t sector_num, |
294 | int nb_sectors, QEMUIOVector *qiov) | |
295 | { | |
f53a829b | 296 | return nbd_client_co_readv(bs, sector_num, nb_sectors, qiov); |
d9b09f13 PB |
297 | } |
298 | ||
299 | static int nbd_co_writev(BlockDriverState *bs, int64_t sector_num, | |
300 | int nb_sectors, QEMUIOVector *qiov) | |
301 | { | |
f53a829b | 302 | return nbd_client_co_writev(bs, sector_num, nb_sectors, qiov); |
d9b09f13 PB |
303 | } |
304 | ||
1486d04a PB |
305 | static int nbd_co_flush(BlockDriverState *bs) |
306 | { | |
f53a829b | 307 | return nbd_client_co_flush(bs); |
1486d04a PB |
308 | } |
309 | ||
fa21e6fa DL |
310 | static void nbd_refresh_limits(BlockDriverState *bs, Error **errp) |
311 | { | |
312 | bs->bl.max_discard = UINT32_MAX >> BDRV_SECTOR_BITS; | |
313 | bs->bl.max_transfer_length = UINT32_MAX >> BDRV_SECTOR_BITS; | |
314 | } | |
315 | ||
7a706633 PB |
316 | static int nbd_co_discard(BlockDriverState *bs, int64_t sector_num, |
317 | int nb_sectors) | |
318 | { | |
f53a829b | 319 | return nbd_client_co_discard(bs, sector_num, nb_sectors); |
7a706633 PB |
320 | } |
321 | ||
75818250 TS |
322 | static void nbd_close(BlockDriverState *bs) |
323 | { | |
f53a829b | 324 | nbd_client_close(bs); |
75818250 TS |
325 | } |
326 | ||
327 | static int64_t nbd_getlength(BlockDriverState *bs) | |
328 | { | |
329 | BDRVNBDState *s = bs->opaque; | |
330 | ||
2302c1ca | 331 | return s->client.size; |
75818250 TS |
332 | } |
333 | ||
69447cd8 SH |
334 | static void nbd_detach_aio_context(BlockDriverState *bs) |
335 | { | |
f53a829b | 336 | nbd_client_detach_aio_context(bs); |
69447cd8 SH |
337 | } |
338 | ||
339 | static void nbd_attach_aio_context(BlockDriverState *bs, | |
340 | AioContext *new_context) | |
341 | { | |
f53a829b | 342 | nbd_client_attach_aio_context(bs, new_context); |
69447cd8 SH |
343 | } |
344 | ||
4cdd01d3 | 345 | static void nbd_refresh_filename(BlockDriverState *bs, QDict *options) |
2019d68b | 346 | { |
2019d68b | 347 | QDict *opts = qdict_new(); |
4cdd01d3 KW |
348 | const char *path = qdict_get_try_str(options, "path"); |
349 | const char *host = qdict_get_try_str(options, "host"); | |
350 | const char *port = qdict_get_try_str(options, "port"); | |
351 | const char *export = qdict_get_try_str(options, "export"); | |
2019d68b HR |
352 | |
353 | qdict_put_obj(opts, "driver", QOBJECT(qstring_from_str("nbd"))); | |
354 | ||
ec0de768 | 355 | if (path && export) { |
2019d68b | 356 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
ec0de768 HR |
357 | "nbd+unix:///%s?socket=%s", export, path); |
358 | } else if (path && !export) { | |
2019d68b | 359 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
ec0de768 HR |
360 | "nbd+unix://?socket=%s", path); |
361 | } else if (!path && export && port) { | |
362 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), | |
363 | "nbd://%s:%s/%s", host, port, export); | |
364 | } else if (!path && export && !port) { | |
365 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), | |
366 | "nbd://%s/%s", host, export); | |
367 | } else if (!path && !export && port) { | |
368 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), | |
369 | "nbd://%s:%s", host, port); | |
370 | } else if (!path && !export && !port) { | |
2019d68b | 371 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
ec0de768 HR |
372 | "nbd://%s", host); |
373 | } | |
374 | ||
375 | if (path) { | |
376 | qdict_put_obj(opts, "path", QOBJECT(qstring_from_str(path))); | |
377 | } else if (port) { | |
2019d68b HR |
378 | qdict_put_obj(opts, "host", QOBJECT(qstring_from_str(host))); |
379 | qdict_put_obj(opts, "port", QOBJECT(qstring_from_str(port))); | |
ec0de768 HR |
380 | } else { |
381 | qdict_put_obj(opts, "host", QOBJECT(qstring_from_str(host))); | |
382 | } | |
383 | if (export) { | |
384 | qdict_put_obj(opts, "export", QOBJECT(qstring_from_str(export))); | |
2019d68b HR |
385 | } |
386 | ||
387 | bs->full_open_options = opts; | |
388 | } | |
389 | ||
5efa9d5a | 390 | static BlockDriver bdrv_nbd = { |
69447cd8 SH |
391 | .format_name = "nbd", |
392 | .protocol_name = "nbd", | |
393 | .instance_size = sizeof(BDRVNBDState), | |
394 | .bdrv_parse_filename = nbd_parse_filename, | |
395 | .bdrv_file_open = nbd_open, | |
396 | .bdrv_co_readv = nbd_co_readv, | |
397 | .bdrv_co_writev = nbd_co_writev, | |
398 | .bdrv_close = nbd_close, | |
399 | .bdrv_co_flush_to_os = nbd_co_flush, | |
400 | .bdrv_co_discard = nbd_co_discard, | |
fa21e6fa | 401 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 SH |
402 | .bdrv_getlength = nbd_getlength, |
403 | .bdrv_detach_aio_context = nbd_detach_aio_context, | |
404 | .bdrv_attach_aio_context = nbd_attach_aio_context, | |
2019d68b | 405 | .bdrv_refresh_filename = nbd_refresh_filename, |
1d7d2a9d PB |
406 | }; |
407 | ||
408 | static BlockDriver bdrv_nbd_tcp = { | |
69447cd8 SH |
409 | .format_name = "nbd", |
410 | .protocol_name = "nbd+tcp", | |
411 | .instance_size = sizeof(BDRVNBDState), | |
412 | .bdrv_parse_filename = nbd_parse_filename, | |
413 | .bdrv_file_open = nbd_open, | |
414 | .bdrv_co_readv = nbd_co_readv, | |
415 | .bdrv_co_writev = nbd_co_writev, | |
416 | .bdrv_close = nbd_close, | |
417 | .bdrv_co_flush_to_os = nbd_co_flush, | |
418 | .bdrv_co_discard = nbd_co_discard, | |
fa21e6fa | 419 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 SH |
420 | .bdrv_getlength = nbd_getlength, |
421 | .bdrv_detach_aio_context = nbd_detach_aio_context, | |
422 | .bdrv_attach_aio_context = nbd_attach_aio_context, | |
2019d68b | 423 | .bdrv_refresh_filename = nbd_refresh_filename, |
1d7d2a9d PB |
424 | }; |
425 | ||
426 | static BlockDriver bdrv_nbd_unix = { | |
69447cd8 SH |
427 | .format_name = "nbd", |
428 | .protocol_name = "nbd+unix", | |
429 | .instance_size = sizeof(BDRVNBDState), | |
430 | .bdrv_parse_filename = nbd_parse_filename, | |
431 | .bdrv_file_open = nbd_open, | |
432 | .bdrv_co_readv = nbd_co_readv, | |
433 | .bdrv_co_writev = nbd_co_writev, | |
434 | .bdrv_close = nbd_close, | |
435 | .bdrv_co_flush_to_os = nbd_co_flush, | |
436 | .bdrv_co_discard = nbd_co_discard, | |
fa21e6fa | 437 | .bdrv_refresh_limits = nbd_refresh_limits, |
69447cd8 SH |
438 | .bdrv_getlength = nbd_getlength, |
439 | .bdrv_detach_aio_context = nbd_detach_aio_context, | |
440 | .bdrv_attach_aio_context = nbd_attach_aio_context, | |
2019d68b | 441 | .bdrv_refresh_filename = nbd_refresh_filename, |
75818250 | 442 | }; |
5efa9d5a AL |
443 | |
444 | static void bdrv_nbd_init(void) | |
445 | { | |
446 | bdrv_register(&bdrv_nbd); | |
1d7d2a9d PB |
447 | bdrv_register(&bdrv_nbd_tcp); |
448 | bdrv_register(&bdrv_nbd_unix); | |
5efa9d5a AL |
449 | } |
450 | ||
451 | block_init(bdrv_nbd_init); |