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