]>
Commit | Line | Data |
---|---|---|
798bfe00 | 1 | /* |
216ee365 | 2 | * Copyright (C) 2016-2018 Red Hat, Inc. |
798bfe00 FZ |
3 | * Copyright (C) 2005 Anthony Liguori <[email protected]> |
4 | * | |
5 | * Network Block Device Client Side | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or modify | |
8 | * it under the terms of the GNU General Public License as published by | |
9 | * the Free Software Foundation; under version 2 of the License. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
d38ea87a | 20 | #include "qemu/osdep.h" |
da34e65c | 21 | #include "qapi/error.h" |
9588463e | 22 | #include "trace.h" |
798bfe00 FZ |
23 | #include "nbd-internal.h" |
24 | ||
798bfe00 FZ |
25 | /* Definitions for opaque data types */ |
26 | ||
27 | static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports); | |
28 | ||
29 | /* That's all folks */ | |
30 | ||
31 | /* Basic flow for negotiation | |
32 | ||
33 | Server Client | |
34 | Negotiate | |
35 | ||
36 | or | |
37 | ||
38 | Server Client | |
39 | Negotiate #1 | |
40 | Option | |
41 | Negotiate #2 | |
42 | ||
43 | ---- | |
44 | ||
45 | followed by | |
46 | ||
47 | Server Client | |
48 | Request | |
49 | Response | |
50 | Request | |
51 | Response | |
52 | ... | |
53 | ... | |
54 | Request (type == 2) | |
55 | ||
56 | */ | |
57 | ||
c8a3a1b6 EB |
58 | /* Send an option request. |
59 | * | |
60 | * The request is for option @opt, with @data containing @len bytes of | |
61 | * additional payload for the request (@len may be -1 to treat @data as | |
62 | * a C string; and @data may be NULL if @len is 0). | |
63 | * Return 0 if successful, -1 with errp set if it is impossible to | |
64 | * continue. */ | |
65 | static int nbd_send_option_request(QIOChannel *ioc, uint32_t opt, | |
66 | uint32_t len, const char *data, | |
67 | Error **errp) | |
68 | { | |
420a4e95 | 69 | NBDOption req; |
c8a3a1b6 EB |
70 | QEMU_BUILD_BUG_ON(sizeof(req) != 16); |
71 | ||
72 | if (len == -1) { | |
73 | req.length = len = strlen(data); | |
74 | } | |
3736cc5b | 75 | trace_nbd_send_option_request(opt, nbd_opt_lookup(opt), len); |
c8a3a1b6 EB |
76 | |
77 | stq_be_p(&req.magic, NBD_OPTS_MAGIC); | |
78 | stl_be_p(&req.option, opt); | |
79 | stl_be_p(&req.length, len); | |
80 | ||
d1fdf257 | 81 | if (nbd_write(ioc, &req, sizeof(req), errp) < 0) { |
cb6b1a3f | 82 | error_prepend(errp, "Failed to send option request header: "); |
c8a3a1b6 EB |
83 | return -1; |
84 | } | |
85 | ||
d1fdf257 | 86 | if (len && nbd_write(ioc, (char *) data, len, errp) < 0) { |
cb6b1a3f | 87 | error_prepend(errp, "Failed to send option request data: "); |
c8a3a1b6 EB |
88 | return -1; |
89 | } | |
90 | ||
91 | return 0; | |
92 | } | |
93 | ||
2cdbf413 EB |
94 | /* Send NBD_OPT_ABORT as a courtesy to let the server know that we are |
95 | * not going to attempt further negotiation. */ | |
96 | static void nbd_send_opt_abort(QIOChannel *ioc) | |
97 | { | |
98 | /* Technically, a compliant server is supposed to reply to us; but | |
99 | * older servers disconnected instead. At any rate, we're allowed | |
100 | * to disconnect without waiting for the server reply, so we don't | |
101 | * even care if the request makes it to the server, let alone | |
102 | * waiting around for whether the server replies. */ | |
103 | nbd_send_option_request(ioc, NBD_OPT_ABORT, 0, NULL, NULL); | |
104 | } | |
105 | ||
106 | ||
c8a3a1b6 EB |
107 | /* Receive the header of an option reply, which should match the given |
108 | * opt. Read through the length field, but NOT the length bytes of | |
109 | * payload. Return 0 if successful, -1 with errp set if it is | |
110 | * impossible to continue. */ | |
111 | static int nbd_receive_option_reply(QIOChannel *ioc, uint32_t opt, | |
420a4e95 | 112 | NBDOptionReply *reply, Error **errp) |
c8a3a1b6 EB |
113 | { |
114 | QEMU_BUILD_BUG_ON(sizeof(*reply) != 20); | |
d1fdf257 | 115 | if (nbd_read(ioc, reply, sizeof(*reply), errp) < 0) { |
cb6b1a3f | 116 | error_prepend(errp, "failed to read option reply: "); |
2cdbf413 | 117 | nbd_send_opt_abort(ioc); |
c8a3a1b6 EB |
118 | return -1; |
119 | } | |
80c7c2b0 PM |
120 | reply->magic = be64_to_cpu(reply->magic); |
121 | reply->option = be32_to_cpu(reply->option); | |
122 | reply->type = be32_to_cpu(reply->type); | |
123 | reply->length = be32_to_cpu(reply->length); | |
c8a3a1b6 | 124 | |
3736cc5b EB |
125 | trace_nbd_receive_option_reply(reply->option, nbd_opt_lookup(reply->option), |
126 | reply->type, nbd_rep_lookup(reply->type), | |
127 | reply->length); | |
9344e5f5 | 128 | |
c8a3a1b6 EB |
129 | if (reply->magic != NBD_REP_MAGIC) { |
130 | error_setg(errp, "Unexpected option reply magic"); | |
2cdbf413 | 131 | nbd_send_opt_abort(ioc); |
c8a3a1b6 EB |
132 | return -1; |
133 | } | |
134 | if (reply->option != opt) { | |
135 | error_setg(errp, "Unexpected option type %x expected %x", | |
136 | reply->option, opt); | |
2cdbf413 | 137 | nbd_send_opt_abort(ioc); |
c8a3a1b6 EB |
138 | return -1; |
139 | } | |
140 | return 0; | |
141 | } | |
142 | ||
143 | /* If reply represents success, return 1 without further action. | |
144 | * If reply represents an error, consume the optional payload of | |
145 | * the packet on ioc. Then return 0 for unsupported (so the client | |
146 | * can fall back to other approaches), or -1 with errp set for other | |
147 | * errors. | |
6ff58164 | 148 | */ |
420a4e95 | 149 | static int nbd_handle_reply_err(QIOChannel *ioc, NBDOptionReply *reply, |
6ff58164 | 150 | Error **errp) |
9344e5f5 | 151 | { |
6ff58164 AB |
152 | char *msg = NULL; |
153 | int result = -1; | |
154 | ||
c8a3a1b6 | 155 | if (!(reply->type & (1 << 31))) { |
6ff58164 AB |
156 | return 1; |
157 | } | |
158 | ||
c8a3a1b6 EB |
159 | if (reply->length) { |
160 | if (reply->length > NBD_MAX_BUFFER_SIZE) { | |
28fb494f | 161 | error_setg(errp, "server error %" PRIu32 |
3736cc5b EB |
162 | " (%s) message is too long", |
163 | reply->type, nbd_rep_lookup(reply->type)); | |
6ff58164 AB |
164 | goto cleanup; |
165 | } | |
c8a3a1b6 | 166 | msg = g_malloc(reply->length + 1); |
d1fdf257 | 167 | if (nbd_read(ioc, msg, reply->length, errp) < 0) { |
28fb494f | 168 | error_prepend(errp, "failed to read option error %" PRIu32 |
cb6b1a3f | 169 | " (%s) message: ", |
3736cc5b | 170 | reply->type, nbd_rep_lookup(reply->type)); |
6ff58164 AB |
171 | goto cleanup; |
172 | } | |
c8a3a1b6 | 173 | msg[reply->length] = '\0'; |
bee21ef0 EB |
174 | trace_nbd_server_error_msg(reply->type, |
175 | nbd_reply_type_lookup(reply->type), msg); | |
9344e5f5 DB |
176 | } |
177 | ||
c8a3a1b6 | 178 | switch (reply->type) { |
9344e5f5 | 179 | case NBD_REP_ERR_UNSUP: |
3736cc5b | 180 | trace_nbd_reply_err_unsup(reply->option, nbd_opt_lookup(reply->option)); |
6ff58164 AB |
181 | result = 0; |
182 | goto cleanup; | |
9344e5f5 | 183 | |
f95910fe | 184 | case NBD_REP_ERR_POLICY: |
28fb494f | 185 | error_setg(errp, "Denied by server for option %" PRIu32 " (%s)", |
3736cc5b | 186 | reply->option, nbd_opt_lookup(reply->option)); |
f95910fe DB |
187 | break; |
188 | ||
9344e5f5 | 189 | case NBD_REP_ERR_INVALID: |
28fb494f | 190 | error_setg(errp, "Invalid parameters for option %" PRIu32 " (%s)", |
3736cc5b | 191 | reply->option, nbd_opt_lookup(reply->option)); |
9344e5f5 DB |
192 | break; |
193 | ||
b6f5d3b5 | 194 | case NBD_REP_ERR_PLATFORM: |
28fb494f | 195 | error_setg(errp, "Server lacks support for option %" PRIu32 " (%s)", |
3736cc5b | 196 | reply->option, nbd_opt_lookup(reply->option)); |
b6f5d3b5 EB |
197 | break; |
198 | ||
f95910fe | 199 | case NBD_REP_ERR_TLS_REQD: |
28fb494f | 200 | error_setg(errp, "TLS negotiation required before option %" PRIu32 |
3736cc5b EB |
201 | " (%s)", reply->option, nbd_opt_lookup(reply->option)); |
202 | break; | |
203 | ||
204 | case NBD_REP_ERR_UNKNOWN: | |
9a76bd78 | 205 | error_setg(errp, "Requested export not available"); |
f95910fe DB |
206 | break; |
207 | ||
b6f5d3b5 | 208 | case NBD_REP_ERR_SHUTDOWN: |
28fb494f | 209 | error_setg(errp, "Server shutting down before option %" PRIu32 " (%s)", |
3736cc5b EB |
210 | reply->option, nbd_opt_lookup(reply->option)); |
211 | break; | |
212 | ||
213 | case NBD_REP_ERR_BLOCK_SIZE_REQD: | |
28fb494f | 214 | error_setg(errp, "Server requires INFO_BLOCK_SIZE for option %" PRIu32 |
3736cc5b | 215 | " (%s)", reply->option, nbd_opt_lookup(reply->option)); |
b6f5d3b5 EB |
216 | break; |
217 | ||
9344e5f5 | 218 | default: |
28fb494f | 219 | error_setg(errp, "Unknown error code when asking for option %" PRIu32 |
3736cc5b | 220 | " (%s)", reply->option, nbd_opt_lookup(reply->option)); |
9344e5f5 DB |
221 | break; |
222 | } | |
223 | ||
6ff58164 | 224 | if (msg) { |
9a76bd78 | 225 | error_append_hint(errp, "server reported: %s\n", msg); |
6ff58164 AB |
226 | } |
227 | ||
228 | cleanup: | |
229 | g_free(msg); | |
2cdbf413 EB |
230 | if (result < 0) { |
231 | nbd_send_opt_abort(ioc); | |
232 | } | |
6ff58164 | 233 | return result; |
9344e5f5 DB |
234 | } |
235 | ||
75368aab EB |
236 | /* Process another portion of the NBD_OPT_LIST reply. Set *@match if |
237 | * the current reply matches @want or if the server does not support | |
238 | * NBD_OPT_LIST, otherwise leave @match alone. Return 0 if iteration | |
239 | * is complete, positive if more replies are expected, or negative | |
240 | * with @errp set if an unrecoverable error occurred. */ | |
241 | static int nbd_receive_list(QIOChannel *ioc, const char *want, bool *match, | |
242 | Error **errp) | |
9344e5f5 | 243 | { |
420a4e95 | 244 | NBDOptionReply reply; |
9344e5f5 DB |
245 | uint32_t len; |
246 | uint32_t namelen; | |
75368aab | 247 | char name[NBD_MAX_NAME_SIZE + 1]; |
6ff58164 | 248 | int error; |
9344e5f5 | 249 | |
c8a3a1b6 | 250 | if (nbd_receive_option_reply(ioc, NBD_OPT_LIST, &reply, errp) < 0) { |
9344e5f5 DB |
251 | return -1; |
252 | } | |
c8a3a1b6 | 253 | error = nbd_handle_reply_err(ioc, &reply, errp); |
6ff58164 | 254 | if (error <= 0) { |
75368aab EB |
255 | /* The server did not support NBD_OPT_LIST, so set *match on |
256 | * the assumption that any name will be accepted. */ | |
257 | *match = true; | |
6ff58164 | 258 | return error; |
9344e5f5 | 259 | } |
c8a3a1b6 | 260 | len = reply.length; |
9344e5f5 | 261 | |
c8a3a1b6 | 262 | if (reply.type == NBD_REP_ACK) { |
9344e5f5 DB |
263 | if (len != 0) { |
264 | error_setg(errp, "length too long for option end"); | |
2cdbf413 | 265 | nbd_send_opt_abort(ioc); |
9344e5f5 DB |
266 | return -1; |
267 | } | |
75368aab EB |
268 | return 0; |
269 | } else if (reply.type != NBD_REP_SERVER) { | |
270 | error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x", | |
271 | reply.type, NBD_REP_SERVER); | |
272 | nbd_send_opt_abort(ioc); | |
273 | return -1; | |
274 | } | |
9344e5f5 | 275 | |
75368aab EB |
276 | if (len < sizeof(namelen) || len > NBD_MAX_BUFFER_SIZE) { |
277 | error_setg(errp, "incorrect option length %" PRIu32, len); | |
278 | nbd_send_opt_abort(ioc); | |
279 | return -1; | |
280 | } | |
d1fdf257 | 281 | if (nbd_read(ioc, &namelen, sizeof(namelen), errp) < 0) { |
cb6b1a3f | 282 | error_prepend(errp, "failed to read option name length: "); |
75368aab EB |
283 | nbd_send_opt_abort(ioc); |
284 | return -1; | |
285 | } | |
286 | namelen = be32_to_cpu(namelen); | |
287 | len -= sizeof(namelen); | |
288 | if (len < namelen) { | |
289 | error_setg(errp, "incorrect option name length"); | |
290 | nbd_send_opt_abort(ioc); | |
291 | return -1; | |
292 | } | |
293 | if (namelen != strlen(want)) { | |
d1fdf257 | 294 | if (nbd_drop(ioc, len, errp) < 0) { |
cb6b1a3f EB |
295 | error_prepend(errp, |
296 | "failed to skip export name with wrong length: "); | |
7d3123e1 EB |
297 | nbd_send_opt_abort(ioc); |
298 | return -1; | |
200650d4 | 299 | } |
75368aab EB |
300 | return 1; |
301 | } | |
302 | ||
303 | assert(namelen < sizeof(name)); | |
d1fdf257 | 304 | if (nbd_read(ioc, name, namelen, errp) < 0) { |
cb6b1a3f | 305 | error_prepend(errp, "failed to read export name: "); |
75368aab EB |
306 | nbd_send_opt_abort(ioc); |
307 | return -1; | |
308 | } | |
309 | name[namelen] = '\0'; | |
310 | len -= namelen; | |
d1fdf257 | 311 | if (nbd_drop(ioc, len, errp) < 0) { |
cb6b1a3f | 312 | error_prepend(errp, "failed to read export description: "); |
2cdbf413 | 313 | nbd_send_opt_abort(ioc); |
9344e5f5 DB |
314 | return -1; |
315 | } | |
75368aab EB |
316 | if (!strcmp(name, want)) { |
317 | *match = true; | |
318 | } | |
9344e5f5 DB |
319 | return 1; |
320 | } | |
321 | ||
322 | ||
8ecaeae8 EB |
323 | /* Returns -1 if NBD_OPT_GO proves the export @wantname cannot be |
324 | * used, 0 if NBD_OPT_GO is unsupported (fall back to NBD_OPT_LIST and | |
325 | * NBD_OPT_EXPORT_NAME in that case), and > 0 if the export is good to | |
326 | * go (with @info populated). */ | |
327 | static int nbd_opt_go(QIOChannel *ioc, const char *wantname, | |
328 | NBDExportInfo *info, Error **errp) | |
329 | { | |
420a4e95 | 330 | NBDOptionReply reply; |
8ecaeae8 EB |
331 | uint32_t len = strlen(wantname); |
332 | uint16_t type; | |
333 | int error; | |
334 | char *buf; | |
335 | ||
336 | /* The protocol requires that the server send NBD_INFO_EXPORT with | |
337 | * a non-zero flags (at least NBD_FLAG_HAS_FLAGS must be set); so | |
338 | * flags still 0 is a witness of a broken server. */ | |
339 | info->flags = 0; | |
340 | ||
341 | trace_nbd_opt_go_start(wantname); | |
081dd1fe | 342 | buf = g_malloc(4 + len + 2 + 2 * info->request_sizes + 1); |
8ecaeae8 EB |
343 | stl_be_p(buf, len); |
344 | memcpy(buf + 4, wantname, len); | |
081dd1fe EB |
345 | /* At most one request, everything else up to server */ |
346 | stw_be_p(buf + 4 + len, info->request_sizes); | |
347 | if (info->request_sizes) { | |
348 | stw_be_p(buf + 4 + len + 2, NBD_INFO_BLOCK_SIZE); | |
349 | } | |
158b9aa5 PMD |
350 | error = nbd_send_option_request(ioc, NBD_OPT_GO, |
351 | 4 + len + 2 + 2 * info->request_sizes, | |
352 | buf, errp); | |
353 | g_free(buf); | |
354 | if (error < 0) { | |
8ecaeae8 EB |
355 | return -1; |
356 | } | |
357 | ||
358 | while (1) { | |
359 | if (nbd_receive_option_reply(ioc, NBD_OPT_GO, &reply, errp) < 0) { | |
360 | return -1; | |
361 | } | |
362 | error = nbd_handle_reply_err(ioc, &reply, errp); | |
363 | if (error <= 0) { | |
364 | return error; | |
365 | } | |
366 | len = reply.length; | |
367 | ||
368 | if (reply.type == NBD_REP_ACK) { | |
369 | /* Server is done sending info and moved into transmission | |
370 | phase, but make sure it sent flags */ | |
371 | if (len) { | |
372 | error_setg(errp, "server sent invalid NBD_REP_ACK"); | |
8ecaeae8 EB |
373 | return -1; |
374 | } | |
375 | if (!info->flags) { | |
376 | error_setg(errp, "broken server omitted NBD_INFO_EXPORT"); | |
8ecaeae8 EB |
377 | return -1; |
378 | } | |
379 | trace_nbd_opt_go_success(); | |
380 | return 1; | |
381 | } | |
382 | if (reply.type != NBD_REP_INFO) { | |
28fb494f VSO |
383 | error_setg(errp, "unexpected reply type %" PRIu32 |
384 | " (%s), expected %u", | |
081dd1fe | 385 | reply.type, nbd_rep_lookup(reply.type), NBD_REP_INFO); |
8ecaeae8 EB |
386 | nbd_send_opt_abort(ioc); |
387 | return -1; | |
388 | } | |
389 | if (len < sizeof(type)) { | |
390 | error_setg(errp, "NBD_REP_INFO length %" PRIu32 " is too short", | |
391 | len); | |
392 | nbd_send_opt_abort(ioc); | |
393 | return -1; | |
394 | } | |
395 | if (nbd_read(ioc, &type, sizeof(type), errp) < 0) { | |
cb6b1a3f | 396 | error_prepend(errp, "failed to read info type: "); |
8ecaeae8 EB |
397 | nbd_send_opt_abort(ioc); |
398 | return -1; | |
399 | } | |
400 | len -= sizeof(type); | |
80c7c2b0 | 401 | type = be16_to_cpu(type); |
8ecaeae8 EB |
402 | switch (type) { |
403 | case NBD_INFO_EXPORT: | |
404 | if (len != sizeof(info->size) + sizeof(info->flags)) { | |
405 | error_setg(errp, "remaining export info len %" PRIu32 | |
406 | " is unexpected size", len); | |
407 | nbd_send_opt_abort(ioc); | |
408 | return -1; | |
409 | } | |
410 | if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) { | |
cb6b1a3f | 411 | error_prepend(errp, "failed to read info size: "); |
8ecaeae8 EB |
412 | nbd_send_opt_abort(ioc); |
413 | return -1; | |
414 | } | |
80c7c2b0 | 415 | info->size = be64_to_cpu(info->size); |
8ecaeae8 | 416 | if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) { |
cb6b1a3f | 417 | error_prepend(errp, "failed to read info flags: "); |
8ecaeae8 EB |
418 | nbd_send_opt_abort(ioc); |
419 | return -1; | |
420 | } | |
80c7c2b0 | 421 | info->flags = be16_to_cpu(info->flags); |
8ecaeae8 EB |
422 | trace_nbd_receive_negotiate_size_flags(info->size, info->flags); |
423 | break; | |
424 | ||
081dd1fe EB |
425 | case NBD_INFO_BLOCK_SIZE: |
426 | if (len != sizeof(info->min_block) * 3) { | |
427 | error_setg(errp, "remaining export info len %" PRIu32 | |
428 | " is unexpected size", len); | |
429 | nbd_send_opt_abort(ioc); | |
430 | return -1; | |
431 | } | |
432 | if (nbd_read(ioc, &info->min_block, sizeof(info->min_block), | |
433 | errp) < 0) { | |
cb6b1a3f | 434 | error_prepend(errp, "failed to read info minimum block size: "); |
081dd1fe EB |
435 | nbd_send_opt_abort(ioc); |
436 | return -1; | |
437 | } | |
80c7c2b0 | 438 | info->min_block = be32_to_cpu(info->min_block); |
081dd1fe | 439 | if (!is_power_of_2(info->min_block)) { |
e475d108 EB |
440 | error_setg(errp, "server minimum block size %" PRIu32 |
441 | " is not a power of two", info->min_block); | |
081dd1fe EB |
442 | nbd_send_opt_abort(ioc); |
443 | return -1; | |
444 | } | |
445 | if (nbd_read(ioc, &info->opt_block, sizeof(info->opt_block), | |
446 | errp) < 0) { | |
cb6b1a3f EB |
447 | error_prepend(errp, |
448 | "failed to read info preferred block size: "); | |
081dd1fe EB |
449 | nbd_send_opt_abort(ioc); |
450 | return -1; | |
451 | } | |
80c7c2b0 | 452 | info->opt_block = be32_to_cpu(info->opt_block); |
081dd1fe EB |
453 | if (!is_power_of_2(info->opt_block) || |
454 | info->opt_block < info->min_block) { | |
e475d108 EB |
455 | error_setg(errp, "server preferred block size %" PRIu32 |
456 | " is not valid", info->opt_block); | |
081dd1fe EB |
457 | nbd_send_opt_abort(ioc); |
458 | return -1; | |
459 | } | |
460 | if (nbd_read(ioc, &info->max_block, sizeof(info->max_block), | |
461 | errp) < 0) { | |
cb6b1a3f | 462 | error_prepend(errp, "failed to read info maximum block size: "); |
081dd1fe EB |
463 | nbd_send_opt_abort(ioc); |
464 | return -1; | |
465 | } | |
80c7c2b0 | 466 | info->max_block = be32_to_cpu(info->max_block); |
e475d108 EB |
467 | if (info->max_block < info->min_block) { |
468 | error_setg(errp, "server maximum block size %" PRIu32 | |
469 | " is not valid", info->max_block); | |
470 | nbd_send_opt_abort(ioc); | |
471 | return -1; | |
472 | } | |
081dd1fe EB |
473 | trace_nbd_opt_go_info_block_size(info->min_block, info->opt_block, |
474 | info->max_block); | |
475 | break; | |
476 | ||
8ecaeae8 EB |
477 | default: |
478 | trace_nbd_opt_go_info_unknown(type, nbd_info_lookup(type)); | |
479 | if (nbd_drop(ioc, len, errp) < 0) { | |
cb6b1a3f | 480 | error_prepend(errp, "Failed to read info payload: "); |
8ecaeae8 EB |
481 | nbd_send_opt_abort(ioc); |
482 | return -1; | |
483 | } | |
484 | break; | |
485 | } | |
486 | } | |
487 | } | |
488 | ||
75368aab | 489 | /* Return -1 on failure, 0 if wantname is an available export. */ |
9344e5f5 DB |
490 | static int nbd_receive_query_exports(QIOChannel *ioc, |
491 | const char *wantname, | |
492 | Error **errp) | |
493 | { | |
9344e5f5 DB |
494 | bool foundExport = false; |
495 | ||
9588463e | 496 | trace_nbd_receive_query_exports_start(wantname); |
c8a3a1b6 | 497 | if (nbd_send_option_request(ioc, NBD_OPT_LIST, 0, NULL, errp) < 0) { |
9344e5f5 DB |
498 | return -1; |
499 | } | |
500 | ||
9344e5f5 | 501 | while (1) { |
75368aab | 502 | int ret = nbd_receive_list(ioc, wantname, &foundExport, errp); |
9344e5f5 DB |
503 | |
504 | if (ret < 0) { | |
75368aab | 505 | /* Server gave unexpected reply */ |
9344e5f5 | 506 | return -1; |
75368aab EB |
507 | } else if (ret == 0) { |
508 | /* Done iterating. */ | |
509 | if (!foundExport) { | |
510 | error_setg(errp, "No export with name '%s' available", | |
511 | wantname); | |
512 | nbd_send_opt_abort(ioc); | |
513 | return -1; | |
514 | } | |
9588463e | 515 | trace_nbd_receive_query_exports_success(wantname); |
75368aab | 516 | return 0; |
9344e5f5 | 517 | } |
9344e5f5 | 518 | } |
9344e5f5 DB |
519 | } |
520 | ||
d795299b VSO |
521 | /* nbd_request_simple_option: Send an option request, and parse the reply |
522 | * return 1 for successful negotiation, | |
523 | * 0 if operation is unsupported, | |
524 | * -1 with errp set for any other error | |
525 | */ | |
526 | static int nbd_request_simple_option(QIOChannel *ioc, int opt, Error **errp) | |
f95910fe | 527 | { |
420a4e95 | 528 | NBDOptionReply reply; |
d795299b | 529 | int error; |
f95910fe | 530 | |
d795299b VSO |
531 | if (nbd_send_option_request(ioc, opt, 0, NULL, errp) < 0) { |
532 | return -1; | |
f95910fe DB |
533 | } |
534 | ||
d795299b VSO |
535 | if (nbd_receive_option_reply(ioc, opt, &reply, errp) < 0) { |
536 | return -1; | |
537 | } | |
538 | error = nbd_handle_reply_err(ioc, &reply, errp); | |
539 | if (error <= 0) { | |
540 | return error; | |
f95910fe | 541 | } |
c8a3a1b6 EB |
542 | |
543 | if (reply.type != NBD_REP_ACK) { | |
d795299b | 544 | error_setg(errp, "Server answered option %d (%s) with unexpected " |
28fb494f | 545 | "reply %" PRIu32 " (%s)", opt, nbd_opt_lookup(opt), |
d795299b | 546 | reply.type, nbd_rep_lookup(reply.type)); |
2cdbf413 | 547 | nbd_send_opt_abort(ioc); |
d795299b | 548 | return -1; |
f95910fe DB |
549 | } |
550 | ||
c8a3a1b6 | 551 | if (reply.length != 0) { |
d795299b VSO |
552 | error_setg(errp, "Option %d ('%s') response length is %" PRIu32 |
553 | " (it should be zero)", opt, nbd_opt_lookup(opt), | |
c8a3a1b6 | 554 | reply.length); |
2cdbf413 | 555 | nbd_send_opt_abort(ioc); |
d795299b VSO |
556 | return -1; |
557 | } | |
558 | ||
559 | return 1; | |
560 | } | |
561 | ||
562 | static QIOChannel *nbd_receive_starttls(QIOChannel *ioc, | |
563 | QCryptoTLSCreds *tlscreds, | |
564 | const char *hostname, Error **errp) | |
565 | { | |
566 | int ret; | |
567 | QIOChannelTLS *tioc; | |
568 | struct NBDTLSHandshakeData data = { 0 }; | |
569 | ||
570 | ret = nbd_request_simple_option(ioc, NBD_OPT_STARTTLS, errp); | |
571 | if (ret <= 0) { | |
572 | if (ret == 0) { | |
573 | error_setg(errp, "Server don't support STARTTLS option"); | |
574 | nbd_send_opt_abort(ioc); | |
575 | } | |
f95910fe DB |
576 | return NULL; |
577 | } | |
578 | ||
9588463e | 579 | trace_nbd_receive_starttls_new_client(); |
f95910fe DB |
580 | tioc = qio_channel_tls_new_client(ioc, tlscreds, hostname, errp); |
581 | if (!tioc) { | |
582 | return NULL; | |
583 | } | |
0d73f725 | 584 | qio_channel_set_name(QIO_CHANNEL(tioc), "nbd-client-tls"); |
f95910fe | 585 | data.loop = g_main_loop_new(g_main_context_default(), FALSE); |
9588463e | 586 | trace_nbd_receive_starttls_tls_handshake(); |
f95910fe DB |
587 | qio_channel_tls_handshake(tioc, |
588 | nbd_tls_handshake, | |
589 | &data, | |
1939ccda | 590 | NULL, |
f95910fe DB |
591 | NULL); |
592 | ||
593 | if (!data.complete) { | |
594 | g_main_loop_run(data.loop); | |
595 | } | |
596 | g_main_loop_unref(data.loop); | |
597 | if (data.error) { | |
598 | error_propagate(errp, data.error); | |
599 | object_unref(OBJECT(tioc)); | |
600 | return NULL; | |
601 | } | |
602 | ||
603 | return QIO_CHANNEL(tioc); | |
604 | } | |
605 | ||
78a33ab5 VSO |
606 | /* nbd_negotiate_simple_meta_context: |
607 | * Set one meta context. Simple means that reply must contain zero (not | |
608 | * negotiated) or one (negotiated) contexts. More contexts would be considered | |
609 | * as a protocol error. It's also implied that meta-data query equals queried | |
260e34db EB |
610 | * context name, so, if server replies with something different than @context, |
611 | * it is considered an error too. | |
78a33ab5 VSO |
612 | * return 1 for successful negotiation, context_id is set |
613 | * 0 if operation is unsupported, | |
614 | * -1 with errp set for any other error | |
615 | */ | |
616 | static int nbd_negotiate_simple_meta_context(QIOChannel *ioc, | |
617 | const char *export, | |
618 | const char *context, | |
619 | uint32_t *context_id, | |
620 | Error **errp) | |
621 | { | |
622 | int ret; | |
623 | NBDOptionReply reply; | |
89aa0d87 VSO |
624 | uint32_t received_id = 0; |
625 | bool received = false; | |
78a33ab5 VSO |
626 | uint32_t export_len = strlen(export); |
627 | uint32_t context_len = strlen(context); | |
628 | uint32_t data_len = sizeof(export_len) + export_len + | |
629 | sizeof(uint32_t) + /* number of queries */ | |
630 | sizeof(context_len) + context_len; | |
631 | char *data = g_malloc(data_len); | |
632 | char *p = data; | |
633 | ||
2b53af25 | 634 | trace_nbd_opt_meta_request(context, export); |
78a33ab5 VSO |
635 | stl_be_p(p, export_len); |
636 | memcpy(p += sizeof(export_len), export, export_len); | |
637 | stl_be_p(p += export_len, 1); | |
638 | stl_be_p(p += sizeof(uint32_t), context_len); | |
639 | memcpy(p += sizeof(context_len), context, context_len); | |
640 | ||
641 | ret = nbd_send_option_request(ioc, NBD_OPT_SET_META_CONTEXT, data_len, data, | |
642 | errp); | |
643 | g_free(data); | |
644 | if (ret < 0) { | |
645 | return ret; | |
646 | } | |
647 | ||
648 | if (nbd_receive_option_reply(ioc, NBD_OPT_SET_META_CONTEXT, &reply, | |
649 | errp) < 0) | |
650 | { | |
651 | return -1; | |
652 | } | |
653 | ||
654 | ret = nbd_handle_reply_err(ioc, &reply, errp); | |
655 | if (ret <= 0) { | |
656 | return ret; | |
657 | } | |
658 | ||
659 | if (reply.type == NBD_REP_META_CONTEXT) { | |
660 | char *name; | |
260e34db EB |
661 | |
662 | if (reply.length != sizeof(received_id) + context_len) { | |
663 | error_setg(errp, "Failed to negotiate meta context '%s', server " | |
664 | "answered with unexpected length %" PRIu32, context, | |
665 | reply.length); | |
666 | nbd_send_opt_abort(ioc); | |
667 | return -1; | |
668 | } | |
78a33ab5 VSO |
669 | |
670 | if (nbd_read(ioc, &received_id, sizeof(received_id), errp) < 0) { | |
671 | return -1; | |
672 | } | |
80c7c2b0 | 673 | received_id = be32_to_cpu(received_id); |
78a33ab5 | 674 | |
260e34db EB |
675 | reply.length -= sizeof(received_id); |
676 | name = g_malloc(reply.length + 1); | |
677 | if (nbd_read(ioc, name, reply.length, errp) < 0) { | |
78a33ab5 VSO |
678 | g_free(name); |
679 | return -1; | |
680 | } | |
260e34db | 681 | name[reply.length] = '\0'; |
78a33ab5 VSO |
682 | if (strcmp(context, name)) { |
683 | error_setg(errp, "Failed to negotiate meta context '%s', server " | |
684 | "answered with different context '%s'", context, | |
685 | name); | |
686 | g_free(name); | |
260e34db | 687 | nbd_send_opt_abort(ioc); |
78a33ab5 VSO |
688 | return -1; |
689 | } | |
690 | g_free(name); | |
691 | ||
2b53af25 | 692 | trace_nbd_opt_meta_reply(context, received_id); |
78a33ab5 VSO |
693 | received = true; |
694 | ||
695 | /* receive NBD_REP_ACK */ | |
696 | if (nbd_receive_option_reply(ioc, NBD_OPT_SET_META_CONTEXT, &reply, | |
697 | errp) < 0) | |
698 | { | |
699 | return -1; | |
700 | } | |
701 | ||
702 | ret = nbd_handle_reply_err(ioc, &reply, errp); | |
703 | if (ret <= 0) { | |
704 | return ret; | |
705 | } | |
706 | } | |
707 | ||
708 | if (reply.type != NBD_REP_ACK) { | |
709 | error_setg(errp, "Unexpected reply type %" PRIx32 " expected %x", | |
710 | reply.type, NBD_REP_ACK); | |
260e34db EB |
711 | nbd_send_opt_abort(ioc); |
712 | return -1; | |
713 | } | |
714 | if (reply.length) { | |
715 | error_setg(errp, "Unexpected length to ACK response"); | |
716 | nbd_send_opt_abort(ioc); | |
78a33ab5 VSO |
717 | return -1; |
718 | } | |
719 | ||
720 | if (received) { | |
721 | *context_id = received_id; | |
722 | return 1; | |
723 | } | |
724 | ||
725 | return 0; | |
726 | } | |
f95910fe | 727 | |
004a89fc | 728 | int nbd_receive_negotiate(QIOChannel *ioc, const char *name, |
f95910fe | 729 | QCryptoTLSCreds *tlscreds, const char *hostname, |
004a89fc EB |
730 | QIOChannel **outioc, NBDExportInfo *info, |
731 | Error **errp) | |
798bfe00 FZ |
732 | { |
733 | char buf[256]; | |
004a89fc | 734 | uint64_t magic; |
798bfe00 | 735 | int rc; |
c203c59a | 736 | bool zeroes = true; |
f140e300 | 737 | bool structured_reply = info->structured_reply; |
78a33ab5 | 738 | bool base_allocation = info->base_allocation; |
798bfe00 | 739 | |
9588463e | 740 | trace_nbd_receive_negotiate(tlscreds, hostname ? hostname : "<null>"); |
798bfe00 | 741 | |
f140e300 | 742 | info->structured_reply = false; |
78a33ab5 | 743 | info->base_allocation = false; |
798bfe00 FZ |
744 | rc = -EINVAL; |
745 | ||
f95910fe DB |
746 | if (outioc) { |
747 | *outioc = NULL; | |
748 | } | |
749 | if (tlscreds && !outioc) { | |
750 | error_setg(errp, "Output I/O channel required for TLS"); | |
751 | goto fail; | |
752 | } | |
753 | ||
d1fdf257 | 754 | if (nbd_read(ioc, buf, 8, errp) < 0) { |
cb6b1a3f | 755 | error_prepend(errp, "Failed to read data: "); |
798bfe00 FZ |
756 | goto fail; |
757 | } | |
758 | ||
759 | buf[8] = '\0'; | |
760 | if (strlen(buf) == 0) { | |
761 | error_setg(errp, "Server connection closed unexpectedly"); | |
762 | goto fail; | |
763 | } | |
764 | ||
458d7a69 | 765 | magic = ldq_be_p(buf); |
9588463e | 766 | trace_nbd_receive_negotiate_magic(magic); |
798bfe00 FZ |
767 | |
768 | if (memcmp(buf, "NBDMAGIC", 8) != 0) { | |
769 | error_setg(errp, "Invalid magic received"); | |
770 | goto fail; | |
771 | } | |
772 | ||
d1fdf257 | 773 | if (nbd_read(ioc, &magic, sizeof(magic), errp) < 0) { |
cb6b1a3f | 774 | error_prepend(errp, "Failed to read magic: "); |
798bfe00 FZ |
775 | goto fail; |
776 | } | |
777 | magic = be64_to_cpu(magic); | |
9588463e | 778 | trace_nbd_receive_negotiate_magic(magic); |
798bfe00 | 779 | |
f72d705f | 780 | if (magic == NBD_OPTS_MAGIC) { |
e2a9d9a3 | 781 | uint32_t clientflags = 0; |
e2a9d9a3 | 782 | uint16_t globalflags; |
9344e5f5 | 783 | bool fixedNewStyle = false; |
798bfe00 | 784 | |
d1fdf257 | 785 | if (nbd_read(ioc, &globalflags, sizeof(globalflags), errp) < 0) { |
cb6b1a3f | 786 | error_prepend(errp, "Failed to read server flags: "); |
798bfe00 FZ |
787 | goto fail; |
788 | } | |
9344e5f5 | 789 | globalflags = be16_to_cpu(globalflags); |
9588463e | 790 | trace_nbd_receive_negotiate_server_flags(globalflags); |
e2a9d9a3 | 791 | if (globalflags & NBD_FLAG_FIXED_NEWSTYLE) { |
9344e5f5 | 792 | fixedNewStyle = true; |
e2a9d9a3 DB |
793 | clientflags |= NBD_FLAG_C_FIXED_NEWSTYLE; |
794 | } | |
c203c59a EB |
795 | if (globalflags & NBD_FLAG_NO_ZEROES) { |
796 | zeroes = false; | |
c203c59a EB |
797 | clientflags |= NBD_FLAG_C_NO_ZEROES; |
798 | } | |
e2a9d9a3 | 799 | /* client requested flags */ |
9344e5f5 | 800 | clientflags = cpu_to_be32(clientflags); |
d1fdf257 | 801 | if (nbd_write(ioc, &clientflags, sizeof(clientflags), errp) < 0) { |
cb6b1a3f | 802 | error_prepend(errp, "Failed to send clientflags field: "); |
798bfe00 FZ |
803 | goto fail; |
804 | } | |
f95910fe DB |
805 | if (tlscreds) { |
806 | if (fixedNewStyle) { | |
807 | *outioc = nbd_receive_starttls(ioc, tlscreds, hostname, errp); | |
808 | if (!*outioc) { | |
809 | goto fail; | |
810 | } | |
811 | ioc = *outioc; | |
812 | } else { | |
813 | error_setg(errp, "Server does not support STARTTLS"); | |
814 | goto fail; | |
815 | } | |
816 | } | |
f72d705f | 817 | if (!name) { |
9588463e | 818 | trace_nbd_receive_negotiate_default_name(); |
69b49502 | 819 | name = ""; |
f72d705f | 820 | } |
9344e5f5 | 821 | if (fixedNewStyle) { |
8ecaeae8 EB |
822 | int result; |
823 | ||
f140e300 VSO |
824 | if (structured_reply) { |
825 | result = nbd_request_simple_option(ioc, | |
826 | NBD_OPT_STRUCTURED_REPLY, | |
827 | errp); | |
828 | if (result < 0) { | |
829 | goto fail; | |
830 | } | |
831 | info->structured_reply = result == 1; | |
832 | } | |
833 | ||
78a33ab5 VSO |
834 | if (info->structured_reply && base_allocation) { |
835 | result = nbd_negotiate_simple_meta_context( | |
216ee365 | 836 | ioc, name, info->x_dirty_bitmap ?: "base:allocation", |
78a33ab5 VSO |
837 | &info->meta_base_allocation_id, errp); |
838 | if (result < 0) { | |
839 | goto fail; | |
840 | } | |
841 | info->base_allocation = result == 1; | |
842 | } | |
843 | ||
8ecaeae8 EB |
844 | /* Try NBD_OPT_GO first - if it works, we are done (it |
845 | * also gives us a good message if the server requires | |
846 | * TLS). If it is not available, fall back to | |
847 | * NBD_OPT_LIST for nicer error messages about a missing | |
848 | * export, then use NBD_OPT_EXPORT_NAME. */ | |
849 | result = nbd_opt_go(ioc, name, info, errp); | |
850 | if (result < 0) { | |
851 | goto fail; | |
852 | } | |
853 | if (result > 0) { | |
854 | return 0; | |
855 | } | |
9344e5f5 DB |
856 | /* Check our desired export is present in the |
857 | * server export list. Since NBD_OPT_EXPORT_NAME | |
858 | * cannot return an error message, running this | |
8ecaeae8 EB |
859 | * query gives us better error reporting if the |
860 | * export name is not available. | |
9344e5f5 DB |
861 | */ |
862 | if (nbd_receive_query_exports(ioc, name, errp) < 0) { | |
863 | goto fail; | |
864 | } | |
865 | } | |
c8a3a1b6 EB |
866 | /* write the export name request */ |
867 | if (nbd_send_option_request(ioc, NBD_OPT_EXPORT_NAME, -1, name, | |
868 | errp) < 0) { | |
798bfe00 FZ |
869 | goto fail; |
870 | } | |
f72d705f | 871 | |
c8a3a1b6 | 872 | /* Read the response */ |
004a89fc | 873 | if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) { |
cb6b1a3f | 874 | error_prepend(errp, "Failed to read export length: "); |
798bfe00 FZ |
875 | goto fail; |
876 | } | |
80c7c2b0 | 877 | info->size = be64_to_cpu(info->size); |
798bfe00 | 878 | |
004a89fc | 879 | if (nbd_read(ioc, &info->flags, sizeof(info->flags), errp) < 0) { |
cb6b1a3f | 880 | error_prepend(errp, "Failed to read export flags: "); |
f72d705f DB |
881 | goto fail; |
882 | } | |
80c7c2b0 | 883 | info->flags = be16_to_cpu(info->flags); |
f72d705f | 884 | } else if (magic == NBD_CLIENT_MAGIC) { |
7423f417 EB |
885 | uint32_t oldflags; |
886 | ||
f72d705f DB |
887 | if (name) { |
888 | error_setg(errp, "Server does not support export names"); | |
889 | goto fail; | |
890 | } | |
f95910fe DB |
891 | if (tlscreds) { |
892 | error_setg(errp, "Server does not support STARTTLS"); | |
893 | goto fail; | |
894 | } | |
f72d705f | 895 | |
004a89fc | 896 | if (nbd_read(ioc, &info->size, sizeof(info->size), errp) < 0) { |
cb6b1a3f | 897 | error_prepend(errp, "Failed to read export length: "); |
f72d705f DB |
898 | goto fail; |
899 | } | |
80c7c2b0 | 900 | info->size = be64_to_cpu(info->size); |
798bfe00 | 901 | |
d1fdf257 | 902 | if (nbd_read(ioc, &oldflags, sizeof(oldflags), errp) < 0) { |
cb6b1a3f | 903 | error_prepend(errp, "Failed to read export flags: "); |
798bfe00 FZ |
904 | goto fail; |
905 | } | |
80c7c2b0 | 906 | oldflags = be32_to_cpu(oldflags); |
7423f417 EB |
907 | if (oldflags & ~0xffff) { |
908 | error_setg(errp, "Unexpected export flags %0x" PRIx32, oldflags); | |
909 | goto fail; | |
910 | } | |
004a89fc | 911 | info->flags = oldflags; |
798bfe00 | 912 | } else { |
f72d705f DB |
913 | error_setg(errp, "Bad magic received"); |
914 | goto fail; | |
798bfe00 | 915 | } |
f72d705f | 916 | |
004a89fc | 917 | trace_nbd_receive_negotiate_size_flags(info->size, info->flags); |
d1fdf257 | 918 | if (zeroes && nbd_drop(ioc, 124, errp) < 0) { |
cb6b1a3f | 919 | error_prepend(errp, "Failed to read reserved block: "); |
798bfe00 FZ |
920 | goto fail; |
921 | } | |
922 | rc = 0; | |
923 | ||
924 | fail: | |
925 | return rc; | |
926 | } | |
927 | ||
928 | #ifdef __linux__ | |
004a89fc | 929 | int nbd_init(int fd, QIOChannelSocket *sioc, NBDExportInfo *info, |
be41c100 | 930 | Error **errp) |
798bfe00 | 931 | { |
081dd1fe EB |
932 | unsigned long sector_size = MAX(BDRV_SECTOR_SIZE, info->min_block); |
933 | unsigned long sectors = info->size / sector_size; | |
934 | ||
935 | /* FIXME: Once the kernel module is patched to honor block sizes, | |
936 | * and to advertise that fact to user space, we should update the | |
937 | * hand-off to the kernel to use any block sizes we learned. */ | |
938 | assert(!info->request_sizes); | |
939 | if (info->size / sector_size != sectors) { | |
004a89fc EB |
940 | error_setg(errp, "Export size %" PRIu64 " too large for 32-bit kernel", |
941 | info->size); | |
f57e2416 EB |
942 | return -E2BIG; |
943 | } | |
944 | ||
9588463e | 945 | trace_nbd_init_set_socket(); |
798bfe00 | 946 | |
f57e2416 | 947 | if (ioctl(fd, NBD_SET_SOCK, (unsigned long) sioc->fd) < 0) { |
798bfe00 | 948 | int serrno = errno; |
be41c100 | 949 | error_setg(errp, "Failed to set NBD socket"); |
798bfe00 FZ |
950 | return -serrno; |
951 | } | |
952 | ||
081dd1fe | 953 | trace_nbd_init_set_block_size(sector_size); |
798bfe00 | 954 | |
081dd1fe | 955 | if (ioctl(fd, NBD_SET_BLKSIZE, sector_size) < 0) { |
798bfe00 | 956 | int serrno = errno; |
be41c100 | 957 | error_setg(errp, "Failed setting NBD block size"); |
798bfe00 FZ |
958 | return -serrno; |
959 | } | |
960 | ||
9588463e | 961 | trace_nbd_init_set_size(sectors); |
081dd1fe EB |
962 | if (info->size % sector_size) { |
963 | trace_nbd_init_trailing_bytes(info->size % sector_size); | |
f57e2416 | 964 | } |
798bfe00 | 965 | |
f57e2416 | 966 | if (ioctl(fd, NBD_SET_SIZE_BLOCKS, sectors) < 0) { |
798bfe00 | 967 | int serrno = errno; |
be41c100 | 968 | error_setg(errp, "Failed setting size (in blocks)"); |
798bfe00 FZ |
969 | return -serrno; |
970 | } | |
971 | ||
004a89fc | 972 | if (ioctl(fd, NBD_SET_FLAGS, (unsigned long) info->flags) < 0) { |
798bfe00 | 973 | if (errno == ENOTTY) { |
004a89fc | 974 | int read_only = (info->flags & NBD_FLAG_READ_ONLY) != 0; |
9588463e | 975 | trace_nbd_init_set_readonly(); |
798bfe00 FZ |
976 | |
977 | if (ioctl(fd, BLKROSET, (unsigned long) &read_only) < 0) { | |
978 | int serrno = errno; | |
be41c100 | 979 | error_setg(errp, "Failed setting read-only attribute"); |
798bfe00 FZ |
980 | return -serrno; |
981 | } | |
982 | } else { | |
983 | int serrno = errno; | |
be41c100 | 984 | error_setg(errp, "Failed setting flags"); |
798bfe00 FZ |
985 | return -serrno; |
986 | } | |
987 | } | |
988 | ||
9588463e | 989 | trace_nbd_init_finish(); |
798bfe00 FZ |
990 | |
991 | return 0; | |
992 | } | |
993 | ||
994 | int nbd_client(int fd) | |
995 | { | |
996 | int ret; | |
997 | int serrno; | |
998 | ||
9588463e | 999 | trace_nbd_client_loop(); |
798bfe00 FZ |
1000 | |
1001 | ret = ioctl(fd, NBD_DO_IT); | |
1002 | if (ret < 0 && errno == EPIPE) { | |
1003 | /* NBD_DO_IT normally returns EPIPE when someone has disconnected | |
1004 | * the socket via NBD_DISCONNECT. We do not want to return 1 in | |
1005 | * that case. | |
1006 | */ | |
1007 | ret = 0; | |
1008 | } | |
1009 | serrno = errno; | |
1010 | ||
9588463e | 1011 | trace_nbd_client_loop_ret(ret, strerror(serrno)); |
798bfe00 | 1012 | |
9588463e | 1013 | trace_nbd_client_clear_queue(); |
798bfe00 FZ |
1014 | ioctl(fd, NBD_CLEAR_QUE); |
1015 | ||
9588463e | 1016 | trace_nbd_client_clear_socket(); |
798bfe00 FZ |
1017 | ioctl(fd, NBD_CLEAR_SOCK); |
1018 | ||
1019 | errno = serrno; | |
1020 | return ret; | |
1021 | } | |
98494e3b EB |
1022 | |
1023 | int nbd_disconnect(int fd) | |
1024 | { | |
1025 | ioctl(fd, NBD_CLEAR_QUE); | |
1026 | ioctl(fd, NBD_DISCONNECT); | |
1027 | ioctl(fd, NBD_CLEAR_SOCK); | |
1028 | return 0; | |
1029 | } | |
1030 | ||
798bfe00 | 1031 | #else |
004a89fc | 1032 | int nbd_init(int fd, QIOChannelSocket *ioc, NBDExportInfo *info, |
be41c100 | 1033 | Error **errp) |
798bfe00 | 1034 | { |
be41c100 | 1035 | error_setg(errp, "nbd_init is only supported on Linux"); |
798bfe00 FZ |
1036 | return -ENOTSUP; |
1037 | } | |
1038 | ||
1039 | int nbd_client(int fd) | |
1040 | { | |
1041 | return -ENOTSUP; | |
1042 | } | |
98494e3b EB |
1043 | int nbd_disconnect(int fd) |
1044 | { | |
1045 | return -ENOTSUP; | |
1046 | } | |
798bfe00 FZ |
1047 | #endif |
1048 | ||
490dc5ed | 1049 | int nbd_send_request(QIOChannel *ioc, NBDRequest *request) |
798bfe00 FZ |
1050 | { |
1051 | uint8_t buf[NBD_REQUEST_SIZE]; | |
798bfe00 | 1052 | |
9588463e | 1053 | trace_nbd_send_request(request->from, request->len, request->handle, |
48000eb3 EB |
1054 | request->flags, request->type, |
1055 | nbd_cmd_lookup(request->type)); | |
7548fe31 | 1056 | |
f6be6720 | 1057 | stl_be_p(buf, NBD_REQUEST_MAGIC); |
b626b51a EB |
1058 | stw_be_p(buf + 4, request->flags); |
1059 | stw_be_p(buf + 6, request->type); | |
f6be6720 PM |
1060 | stq_be_p(buf + 8, request->handle); |
1061 | stq_be_p(buf + 16, request->from); | |
1062 | stl_be_p(buf + 24, request->len); | |
798bfe00 | 1063 | |
d1fdf257 | 1064 | return nbd_write(ioc, buf, sizeof(buf), NULL); |
798bfe00 FZ |
1065 | } |
1066 | ||
d2febedb VSO |
1067 | /* nbd_receive_simple_reply |
1068 | * Read simple reply except magic field (which should be already read). | |
1069 | * Payload is not read (payload is possible for CMD_READ, but here we even | |
1070 | * don't know whether it take place or not). | |
1071 | */ | |
1072 | static int nbd_receive_simple_reply(QIOChannel *ioc, NBDSimpleReply *reply, | |
1073 | Error **errp) | |
1074 | { | |
1075 | int ret; | |
1076 | ||
1077 | assert(reply->magic == NBD_SIMPLE_REPLY_MAGIC); | |
1078 | ||
1079 | ret = nbd_read(ioc, (uint8_t *)reply + sizeof(reply->magic), | |
1080 | sizeof(*reply) - sizeof(reply->magic), errp); | |
1081 | if (ret < 0) { | |
1082 | return ret; | |
1083 | } | |
1084 | ||
80c7c2b0 PM |
1085 | reply->error = be32_to_cpu(reply->error); |
1086 | reply->handle = be64_to_cpu(reply->handle); | |
d2febedb VSO |
1087 | |
1088 | return 0; | |
1089 | } | |
1090 | ||
1091 | /* nbd_receive_structured_reply_chunk | |
1092 | * Read structured reply chunk except magic field (which should be already | |
1093 | * read). | |
1094 | * Payload is not read. | |
1095 | */ | |
1096 | static int nbd_receive_structured_reply_chunk(QIOChannel *ioc, | |
1097 | NBDStructuredReplyChunk *chunk, | |
1098 | Error **errp) | |
1099 | { | |
1100 | int ret; | |
1101 | ||
1102 | assert(chunk->magic == NBD_STRUCTURED_REPLY_MAGIC); | |
1103 | ||
1104 | ret = nbd_read(ioc, (uint8_t *)chunk + sizeof(chunk->magic), | |
1105 | sizeof(*chunk) - sizeof(chunk->magic), errp); | |
1106 | if (ret < 0) { | |
1107 | return ret; | |
1108 | } | |
1109 | ||
80c7c2b0 PM |
1110 | chunk->flags = be16_to_cpu(chunk->flags); |
1111 | chunk->type = be16_to_cpu(chunk->type); | |
1112 | chunk->handle = be64_to_cpu(chunk->handle); | |
1113 | chunk->length = be32_to_cpu(chunk->length); | |
d2febedb VSO |
1114 | |
1115 | return 0; | |
1116 | } | |
1117 | ||
ba845644 VSO |
1118 | /* nbd_receive_reply |
1119 | * Returns 1 on success | |
1120 | * 0 on eof, when no data was read (errp is not set) | |
1121 | * negative errno on failure (errp is set) | |
1122 | */ | |
1123 | int nbd_receive_reply(QIOChannel *ioc, NBDReply *reply, Error **errp) | |
798bfe00 | 1124 | { |
ba845644 | 1125 | int ret; |
079d3266 | 1126 | const char *type; |
798bfe00 | 1127 | |
d2febedb | 1128 | ret = nbd_read_eof(ioc, &reply->magic, sizeof(reply->magic), errp); |
ff82911c | 1129 | if (ret <= 0) { |
798bfe00 FZ |
1130 | return ret; |
1131 | } | |
1132 | ||
80c7c2b0 | 1133 | reply->magic = be32_to_cpu(reply->magic); |
798bfe00 | 1134 | |
d2febedb VSO |
1135 | switch (reply->magic) { |
1136 | case NBD_SIMPLE_REPLY_MAGIC: | |
1137 | ret = nbd_receive_simple_reply(ioc, &reply->simple, errp); | |
1138 | if (ret < 0) { | |
1139 | break; | |
1140 | } | |
d2febedb VSO |
1141 | trace_nbd_receive_simple_reply(reply->simple.error, |
1142 | nbd_err_lookup(reply->simple.error), | |
1143 | reply->handle); | |
d2febedb VSO |
1144 | break; |
1145 | case NBD_STRUCTURED_REPLY_MAGIC: | |
1146 | ret = nbd_receive_structured_reply_chunk(ioc, &reply->structured, errp); | |
1147 | if (ret < 0) { | |
1148 | break; | |
1149 | } | |
079d3266 | 1150 | type = nbd_reply_type_lookup(reply->structured.type); |
d2febedb | 1151 | trace_nbd_receive_structured_reply_chunk(reply->structured.flags, |
079d3266 | 1152 | reply->structured.type, type, |
d2febedb VSO |
1153 | reply->structured.handle, |
1154 | reply->structured.length); | |
1155 | break; | |
1156 | default: | |
1157 | error_setg(errp, "invalid magic (got 0x%" PRIx32 ")", reply->magic); | |
b6f5d3b5 EB |
1158 | return -EINVAL; |
1159 | } | |
d2febedb VSO |
1160 | if (ret < 0) { |
1161 | return ret; | |
798bfe00 | 1162 | } |
ba845644 VSO |
1163 | |
1164 | return 1; | |
798bfe00 FZ |
1165 | } |
1166 |