]>
Commit | Line | Data |
---|---|---|
769ce76d AG |
1 | /* |
2 | * QEMU Block driver for CURL images | |
3 | * | |
4 | * Copyright (c) 2009 Alexander Graf <[email protected]> | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
452fcdbc | 24 | |
80c71a24 | 25 | #include "qemu/osdep.h" |
da34e65c | 26 | #include "qapi/error.h" |
796a060b | 27 | #include "qemu/error-report.h" |
0b8fa32f | 28 | #include "qemu/module.h" |
922a01a0 | 29 | #include "qemu/option.h" |
737e150e | 30 | #include "block/block_int.h" |
452fcdbc | 31 | #include "qapi/qmp/qdict.h" |
d49b6836 | 32 | #include "qapi/qmp/qstring.h" |
1bff9606 | 33 | #include "crypto/secret.h" |
769ce76d | 34 | #include <curl/curl.h> |
f348b6d1 | 35 | #include "qemu/cutils.h" |
ed2a66de | 36 | #include "trace.h" |
769ce76d | 37 | |
769ce76d AG |
38 | // #define DEBUG_VERBOSE |
39 | ||
031fd1be PM |
40 | #if LIBCURL_VERSION_NUM >= 0x071000 |
41 | /* The multi interface timer callback was introduced in 7.16.0 */ | |
42 | #define NEED_CURL_TIMER_CALLBACK | |
9aedd5a5 MB |
43 | #define HAVE_SOCKET_ACTION |
44 | #endif | |
45 | ||
46 | #ifndef HAVE_SOCKET_ACTION | |
47 | /* If curl_multi_socket_action isn't available, define it statically here in | |
48 | * terms of curl_multi_socket. Note that ev_bitmask will be ignored, which is | |
49 | * less efficient but still safe. */ | |
50 | static CURLMcode __curl_multi_socket_action(CURLM *multi_handle, | |
51 | curl_socket_t sockfd, | |
52 | int ev_bitmask, | |
53 | int *running_handles) | |
54 | { | |
55 | return curl_multi_socket(multi_handle, sockfd, running_handles); | |
56 | } | |
57 | #define curl_multi_socket_action __curl_multi_socket_action | |
031fd1be PM |
58 | #endif |
59 | ||
fb6d1bbd | 60 | #define PROTOCOLS (CURLPROTO_HTTP | CURLPROTO_HTTPS | \ |
23dce387 | 61 | CURLPROTO_FTP | CURLPROTO_FTPS) |
fb6d1bbd | 62 | |
769ce76d AG |
63 | #define CURL_NUM_STATES 8 |
64 | #define CURL_NUM_ACB 8 | |
f76faeda | 65 | #define CURL_TIMEOUT_MAX 10000 |
769ce76d | 66 | |
e3542c67 MB |
67 | #define CURL_BLOCK_OPT_URL "url" |
68 | #define CURL_BLOCK_OPT_READAHEAD "readahead" | |
97a3ea57 | 69 | #define CURL_BLOCK_OPT_SSLVERIFY "sslverify" |
212aefaa | 70 | #define CURL_BLOCK_OPT_TIMEOUT "timeout" |
a94f83d9 | 71 | #define CURL_BLOCK_OPT_COOKIE "cookie" |
327c8ebd | 72 | #define CURL_BLOCK_OPT_COOKIE_SECRET "cookie-secret" |
1bff9606 DB |
73 | #define CURL_BLOCK_OPT_USERNAME "username" |
74 | #define CURL_BLOCK_OPT_PASSWORD_SECRET "password-secret" | |
75 | #define CURL_BLOCK_OPT_PROXY_USERNAME "proxy-username" | |
76 | #define CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET "proxy-password-secret" | |
e3542c67 | 77 | |
712b64e8 HR |
78 | #define CURL_BLOCK_OPT_READAHEAD_DEFAULT (256 * 1024) |
79 | #define CURL_BLOCK_OPT_SSLVERIFY_DEFAULT true | |
80 | #define CURL_BLOCK_OPT_TIMEOUT_DEFAULT 5 | |
81 | ||
769ce76d | 82 | struct BDRVCURLState; |
04878616 | 83 | struct CURLState; |
769ce76d | 84 | |
2d25964d JC |
85 | static bool libcurl_initialized; |
86 | ||
769ce76d | 87 | typedef struct CURLAIOCB { |
28256d82 | 88 | Coroutine *co; |
769ce76d | 89 | QEMUIOVector *qiov; |
363c3c85 | 90 | |
2125e5ea PB |
91 | uint64_t offset; |
92 | uint64_t bytes; | |
28256d82 | 93 | int ret; |
363c3c85 | 94 | |
769ce76d AG |
95 | size_t start; |
96 | size_t end; | |
97 | } CURLAIOCB; | |
98 | ||
ff5ca166 HR |
99 | typedef struct CURLSocket { |
100 | int fd; | |
04878616 | 101 | struct CURLState *state; |
ff5ca166 HR |
102 | QLIST_ENTRY(CURLSocket) next; |
103 | } CURLSocket; | |
104 | ||
769ce76d AG |
105 | typedef struct CURLState |
106 | { | |
107 | struct BDRVCURLState *s; | |
108 | CURLAIOCB *acb[CURL_NUM_ACB]; | |
109 | CURL *curl; | |
ff5ca166 | 110 | QLIST_HEAD(, CURLSocket) sockets; |
769ce76d | 111 | char *orig_buf; |
2125e5ea | 112 | uint64_t buf_start; |
769ce76d AG |
113 | size_t buf_off; |
114 | size_t buf_len; | |
115 | char range[128]; | |
116 | char errmsg[CURL_ERROR_SIZE]; | |
117 | char in_use; | |
118 | } CURLState; | |
119 | ||
120 | typedef struct BDRVCURLState { | |
121 | CURLM *multi; | |
031fd1be | 122 | QEMUTimer timer; |
2125e5ea | 123 | uint64_t len; |
769ce76d AG |
124 | CURLState states[CURL_NUM_STATES]; |
125 | char *url; | |
c76f4952 | 126 | size_t readahead_size; |
97a3ea57 | 127 | bool sslverify; |
f76faeda | 128 | uint64_t timeout; |
a94f83d9 | 129 | char *cookie; |
3494d650 | 130 | bool accept_range; |
63f0f45f | 131 | AioContext *aio_context; |
ba3186c4 | 132 | QemuMutex mutex; |
709f2132 | 133 | CoQueue free_state_waitq; |
1bff9606 DB |
134 | char *username; |
135 | char *password; | |
136 | char *proxyusername; | |
137 | char *proxypassword; | |
769ce76d AG |
138 | } BDRVCURLState; |
139 | ||
140 | static void curl_clean_state(CURLState *s); | |
141 | static void curl_multi_do(void *arg); | |
142 | ||
031fd1be | 143 | #ifdef NEED_CURL_TIMER_CALLBACK |
34db05e7 | 144 | /* Called from curl_multi_do_locked, with s->mutex held. */ |
031fd1be PM |
145 | static int curl_timer_cb(CURLM *multi, long timeout_ms, void *opaque) |
146 | { | |
147 | BDRVCURLState *s = opaque; | |
148 | ||
ed2a66de | 149 | trace_curl_timer_cb(timeout_ms); |
031fd1be PM |
150 | if (timeout_ms == -1) { |
151 | timer_del(&s->timer); | |
152 | } else { | |
153 | int64_t timeout_ns = (int64_t)timeout_ms * 1000 * 1000; | |
154 | timer_mod(&s->timer, | |
155 | qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + timeout_ns); | |
156 | } | |
157 | return 0; | |
158 | } | |
159 | #endif | |
160 | ||
34db05e7 | 161 | /* Called from curl_multi_do_locked, with s->mutex held. */ |
769ce76d | 162 | static int curl_sock_cb(CURL *curl, curl_socket_t fd, int action, |
63f0f45f | 163 | void *userp, void *sp) |
769ce76d | 164 | { |
63f0f45f | 165 | BDRVCURLState *s; |
838ef602 | 166 | CURLState *state = NULL; |
ff5ca166 HR |
167 | CURLSocket *socket; |
168 | ||
838ef602 | 169 | curl_easy_getinfo(curl, CURLINFO_PRIVATE, (char **)&state); |
63f0f45f | 170 | s = state->s; |
838ef602 | 171 | |
ff5ca166 HR |
172 | QLIST_FOREACH(socket, &state->sockets, next) { |
173 | if (socket->fd == fd) { | |
ff5ca166 HR |
174 | break; |
175 | } | |
176 | } | |
177 | if (!socket) { | |
178 | socket = g_new0(CURLSocket, 1); | |
179 | socket->fd = fd; | |
04878616 | 180 | socket->state = state; |
ff5ca166 HR |
181 | QLIST_INSERT_HEAD(&state->sockets, socket, next); |
182 | } | |
ff5ca166 | 183 | |
ed2a66de | 184 | trace_curl_sock_cb(action, (int)fd); |
769ce76d AG |
185 | switch (action) { |
186 | case CURL_POLL_IN: | |
dca21ef2 | 187 | aio_set_fd_handler(s->aio_context, fd, false, |
9dbad87d | 188 | curl_multi_do, NULL, NULL, socket); |
769ce76d AG |
189 | break; |
190 | case CURL_POLL_OUT: | |
dca21ef2 | 191 | aio_set_fd_handler(s->aio_context, fd, false, |
9dbad87d | 192 | NULL, curl_multi_do, NULL, socket); |
769ce76d AG |
193 | break; |
194 | case CURL_POLL_INOUT: | |
dca21ef2 | 195 | aio_set_fd_handler(s->aio_context, fd, false, |
9dbad87d | 196 | curl_multi_do, curl_multi_do, NULL, socket); |
769ce76d AG |
197 | break; |
198 | case CURL_POLL_REMOVE: | |
dca21ef2 | 199 | aio_set_fd_handler(s->aio_context, fd, false, |
f6a51c84 | 200 | NULL, NULL, NULL, NULL); |
769ce76d AG |
201 | break; |
202 | } | |
203 | ||
007f339b HR |
204 | if (action == CURL_POLL_REMOVE) { |
205 | QLIST_REMOVE(socket, next); | |
206 | g_free(socket); | |
207 | } | |
208 | ||
769ce76d AG |
209 | return 0; |
210 | } | |
211 | ||
34db05e7 | 212 | /* Called from curl_multi_do_locked, with s->mutex held. */ |
3494d650 | 213 | static size_t curl_header_cb(void *ptr, size_t size, size_t nmemb, void *opaque) |
769ce76d | 214 | { |
3494d650 | 215 | BDRVCURLState *s = opaque; |
769ce76d | 216 | size_t realsize = size * nmemb; |
3494d650 | 217 | const char *accept_line = "Accept-Ranges: bytes"; |
769ce76d | 218 | |
3494d650 FZ |
219 | if (realsize >= strlen(accept_line) |
220 | && strncmp((char *)ptr, accept_line, strlen(accept_line)) == 0) { | |
221 | s->accept_range = true; | |
0bfcd599 | 222 | } |
769ce76d AG |
223 | |
224 | return realsize; | |
225 | } | |
226 | ||
34db05e7 | 227 | /* Called from curl_multi_do_locked, with s->mutex held. */ |
769ce76d AG |
228 | static size_t curl_read_cb(void *ptr, size_t size, size_t nmemb, void *opaque) |
229 | { | |
230 | CURLState *s = ((CURLState*)opaque); | |
231 | size_t realsize = size * nmemb; | |
769ce76d | 232 | |
ed2a66de | 233 | trace_curl_read_cb(realsize); |
769ce76d | 234 | |
4e767657 HR |
235 | if (!s || !s->orig_buf) { |
236 | goto read_end; | |
237 | } | |
769ce76d | 238 | |
6d4b9e55 FZ |
239 | if (s->buf_off >= s->buf_len) { |
240 | /* buffer full, read nothing */ | |
4e767657 | 241 | goto read_end; |
6d4b9e55 FZ |
242 | } |
243 | realsize = MIN(realsize, s->buf_len - s->buf_off); | |
769ce76d AG |
244 | memcpy(s->orig_buf + s->buf_off, ptr, realsize); |
245 | s->buf_off += realsize; | |
246 | ||
4e767657 HR |
247 | read_end: |
248 | /* curl will error out if we do not return this value */ | |
249 | return size * nmemb; | |
769ce76d AG |
250 | } |
251 | ||
456af346 | 252 | /* Called with s->mutex held. */ |
28256d82 PB |
253 | static bool curl_find_buf(BDRVCURLState *s, uint64_t start, uint64_t len, |
254 | CURLAIOCB *acb) | |
769ce76d AG |
255 | { |
256 | int i; | |
2125e5ea PB |
257 | uint64_t end = start + len; |
258 | uint64_t clamped_end = MIN(end, s->len); | |
259 | uint64_t clamped_len = clamped_end - start; | |
769ce76d AG |
260 | |
261 | for (i=0; i<CURL_NUM_STATES; i++) { | |
262 | CURLState *state = &s->states[i]; | |
2125e5ea PB |
263 | uint64_t buf_end = (state->buf_start + state->buf_off); |
264 | uint64_t buf_fend = (state->buf_start + state->buf_len); | |
769ce76d AG |
265 | |
266 | if (!state->orig_buf) | |
267 | continue; | |
268 | if (!state->buf_off) | |
269 | continue; | |
270 | ||
271 | // Does the existing buffer cover our section? | |
272 | if ((start >= state->buf_start) && | |
273 | (start <= buf_end) && | |
4e504535 HR |
274 | (clamped_end >= state->buf_start) && |
275 | (clamped_end <= buf_end)) | |
769ce76d AG |
276 | { |
277 | char *buf = state->orig_buf + (start - state->buf_start); | |
278 | ||
4e504535 HR |
279 | qemu_iovec_from_buf(acb->qiov, 0, buf, clamped_len); |
280 | if (clamped_len < len) { | |
281 | qemu_iovec_memset(acb->qiov, clamped_len, 0, len - clamped_len); | |
282 | } | |
28256d82 PB |
283 | acb->ret = 0; |
284 | return true; | |
769ce76d AG |
285 | } |
286 | ||
287 | // Wait for unfinished chunks | |
b7079df4 MB |
288 | if (state->in_use && |
289 | (start >= state->buf_start) && | |
769ce76d | 290 | (start <= buf_fend) && |
4e504535 HR |
291 | (clamped_end >= state->buf_start) && |
292 | (clamped_end <= buf_fend)) | |
769ce76d AG |
293 | { |
294 | int j; | |
295 | ||
296 | acb->start = start - state->buf_start; | |
4e504535 | 297 | acb->end = acb->start + clamped_len; |
769ce76d AG |
298 | |
299 | for (j=0; j<CURL_NUM_ACB; j++) { | |
300 | if (!state->acb[j]) { | |
301 | state->acb[j] = acb; | |
28256d82 | 302 | return true; |
769ce76d AG |
303 | } |
304 | } | |
305 | } | |
306 | } | |
307 | ||
28256d82 | 308 | return false; |
769ce76d AG |
309 | } |
310 | ||
ba3186c4 | 311 | /* Called with s->mutex held. */ |
838ef602 | 312 | static void curl_multi_check_completion(BDRVCURLState *s) |
769ce76d | 313 | { |
769ce76d AG |
314 | int msgs_in_queue; |
315 | ||
769ce76d AG |
316 | /* Try to find done transfers, so we can free the easy |
317 | * handle again. */ | |
1f2cead3 | 318 | for (;;) { |
769ce76d AG |
319 | CURLMsg *msg; |
320 | msg = curl_multi_info_read(s->multi, &msgs_in_queue); | |
321 | ||
1f2cead3 | 322 | /* Quit when there are no more completions */ |
769ce76d AG |
323 | if (!msg) |
324 | break; | |
769ce76d | 325 | |
1f2cead3 | 326 | if (msg->msg == CURLMSG_DONE) { |
bfb23b48 | 327 | int i; |
1f2cead3 | 328 | CURLState *state = NULL; |
bfb23b48 HR |
329 | bool error = msg->data.result != CURLE_OK; |
330 | ||
1f2cead3 MB |
331 | curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, |
332 | (char **)&state); | |
333 | ||
bfb23b48 | 334 | if (error) { |
796a060b RJ |
335 | static int errcount = 100; |
336 | ||
337 | /* Don't lose the original error message from curl, since | |
338 | * it contains extra data. | |
339 | */ | |
340 | if (errcount > 0) { | |
341 | error_report("curl: %s", state->errmsg); | |
342 | if (--errcount == 0) { | |
343 | error_report("curl: further errors suppressed"); | |
344 | } | |
345 | } | |
bfb23b48 | 346 | } |
796a060b | 347 | |
bfb23b48 HR |
348 | for (i = 0; i < CURL_NUM_ACB; i++) { |
349 | CURLAIOCB *acb = state->acb[i]; | |
1f2cead3 | 350 | |
bfb23b48 HR |
351 | if (acb == NULL) { |
352 | continue; | |
353 | } | |
354 | ||
355 | if (!error) { | |
356 | /* Assert that we have read all data */ | |
357 | assert(state->buf_off >= acb->end); | |
358 | ||
359 | qemu_iovec_from_buf(acb->qiov, 0, | |
360 | state->orig_buf + acb->start, | |
361 | acb->end - acb->start); | |
f785a5ae | 362 | |
bfb23b48 HR |
363 | if (acb->end - acb->start < acb->bytes) { |
364 | size_t offset = acb->end - acb->start; | |
365 | qemu_iovec_memset(acb->qiov, offset, 0, | |
366 | acb->bytes - offset); | |
367 | } | |
1f2cead3 | 368 | } |
bfb23b48 HR |
369 | |
370 | acb->ret = error ? -EIO : 0; | |
371 | state->acb[i] = NULL; | |
372 | qemu_mutex_unlock(&s->mutex); | |
373 | aio_co_wake(acb->co); | |
374 | qemu_mutex_lock(&s->mutex); | |
769ce76d | 375 | } |
1f2cead3 MB |
376 | |
377 | curl_clean_state(state); | |
378 | break; | |
769ce76d | 379 | } |
1f2cead3 | 380 | } |
769ce76d AG |
381 | } |
382 | ||
ba3186c4 | 383 | /* Called with s->mutex held. */ |
9abaf9fc | 384 | static void curl_multi_do_locked(CURLSocket *socket) |
031fd1be | 385 | { |
9abaf9fc | 386 | BDRVCURLState *s = socket->state->s; |
031fd1be PM |
387 | int running; |
388 | int r; | |
389 | ||
9abaf9fc | 390 | if (!s->multi) { |
031fd1be PM |
391 | return; |
392 | } | |
393 | ||
9abaf9fc HR |
394 | do { |
395 | r = curl_multi_socket_action(s->multi, socket->fd, 0, &running); | |
396 | } while (r == CURLM_CALL_MULTI_PERFORM); | |
838ef602 MB |
397 | } |
398 | ||
9d456654 PB |
399 | static void curl_multi_do(void *arg) |
400 | { | |
9dbad87d HR |
401 | CURLSocket *socket = arg; |
402 | BDRVCURLState *s = socket->state->s; | |
9d456654 | 403 | |
9dbad87d HR |
404 | qemu_mutex_lock(&s->mutex); |
405 | curl_multi_do_locked(socket); | |
406 | curl_multi_check_completion(s); | |
407 | qemu_mutex_unlock(&s->mutex); | |
031fd1be PM |
408 | } |
409 | ||
410 | static void curl_multi_timeout_do(void *arg) | |
411 | { | |
412 | #ifdef NEED_CURL_TIMER_CALLBACK | |
413 | BDRVCURLState *s = (BDRVCURLState *)arg; | |
414 | int running; | |
415 | ||
416 | if (!s->multi) { | |
417 | return; | |
418 | } | |
419 | ||
ba3186c4 | 420 | qemu_mutex_lock(&s->mutex); |
031fd1be PM |
421 | curl_multi_socket_action(s->multi, CURL_SOCKET_TIMEOUT, 0, &running); |
422 | ||
838ef602 | 423 | curl_multi_check_completion(s); |
ba3186c4 | 424 | qemu_mutex_unlock(&s->mutex); |
031fd1be PM |
425 | #else |
426 | abort(); | |
427 | #endif | |
428 | } | |
429 | ||
456af346 | 430 | /* Called with s->mutex held. */ |
3ce6a729 | 431 | static CURLState *curl_find_state(BDRVCURLState *s) |
769ce76d AG |
432 | { |
433 | CURLState *state = NULL; | |
3ce6a729 | 434 | int i; |
769ce76d | 435 | |
3ce6a729 PB |
436 | for (i = 0; i < CURL_NUM_STATES; i++) { |
437 | if (!s->states[i].in_use) { | |
769ce76d AG |
438 | state = &s->states[i]; |
439 | state->in_use = 1; | |
440 | break; | |
441 | } | |
3ce6a729 PB |
442 | } |
443 | return state; | |
444 | } | |
769ce76d | 445 | |
3ce6a729 PB |
446 | static int curl_init_state(BDRVCURLState *s, CURLState *state) |
447 | { | |
9e550b32 MB |
448 | if (!state->curl) { |
449 | state->curl = curl_easy_init(); | |
450 | if (!state->curl) { | |
3ce6a729 | 451 | return -EIO; |
9e550b32 MB |
452 | } |
453 | curl_easy_setopt(state->curl, CURLOPT_URL, s->url); | |
97a3ea57 MB |
454 | curl_easy_setopt(state->curl, CURLOPT_SSL_VERIFYPEER, |
455 | (long) s->sslverify); | |
637fa44a RJ |
456 | curl_easy_setopt(state->curl, CURLOPT_SSL_VERIFYHOST, |
457 | s->sslverify ? 2L : 0L); | |
a94f83d9 RJ |
458 | if (s->cookie) { |
459 | curl_easy_setopt(state->curl, CURLOPT_COOKIE, s->cookie); | |
460 | } | |
f76faeda | 461 | curl_easy_setopt(state->curl, CURLOPT_TIMEOUT, (long)s->timeout); |
9e550b32 MB |
462 | curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, |
463 | (void *)curl_read_cb); | |
464 | curl_easy_setopt(state->curl, CURLOPT_WRITEDATA, (void *)state); | |
465 | curl_easy_setopt(state->curl, CURLOPT_PRIVATE, (void *)state); | |
466 | curl_easy_setopt(state->curl, CURLOPT_AUTOREFERER, 1); | |
467 | curl_easy_setopt(state->curl, CURLOPT_FOLLOWLOCATION, 1); | |
468 | curl_easy_setopt(state->curl, CURLOPT_NOSIGNAL, 1); | |
469 | curl_easy_setopt(state->curl, CURLOPT_ERRORBUFFER, state->errmsg); | |
470 | curl_easy_setopt(state->curl, CURLOPT_FAILONERROR, 1); | |
471 | ||
1bff9606 DB |
472 | if (s->username) { |
473 | curl_easy_setopt(state->curl, CURLOPT_USERNAME, s->username); | |
474 | } | |
475 | if (s->password) { | |
476 | curl_easy_setopt(state->curl, CURLOPT_PASSWORD, s->password); | |
477 | } | |
478 | if (s->proxyusername) { | |
479 | curl_easy_setopt(state->curl, | |
480 | CURLOPT_PROXYUSERNAME, s->proxyusername); | |
481 | } | |
482 | if (s->proxypassword) { | |
483 | curl_easy_setopt(state->curl, | |
484 | CURLOPT_PROXYPASSWORD, s->proxypassword); | |
485 | } | |
486 | ||
9e550b32 MB |
487 | /* Restrict supported protocols to avoid security issues in the more |
488 | * obscure protocols. For example, do not allow POP3/SMTP/IMAP see | |
489 | * CVE-2013-0249. | |
490 | * | |
491 | * Restricting protocols is only supported from 7.19.4 upwards. | |
492 | */ | |
8a8f5840 | 493 | #if LIBCURL_VERSION_NUM >= 0x071304 |
9e550b32 MB |
494 | curl_easy_setopt(state->curl, CURLOPT_PROTOCOLS, PROTOCOLS); |
495 | curl_easy_setopt(state->curl, CURLOPT_REDIR_PROTOCOLS, PROTOCOLS); | |
8a8f5840 | 496 | #endif |
fb6d1bbd | 497 | |
769ce76d | 498 | #ifdef DEBUG_VERBOSE |
9e550b32 | 499 | curl_easy_setopt(state->curl, CURLOPT_VERBOSE, 1); |
769ce76d | 500 | #endif |
9e550b32 | 501 | } |
769ce76d | 502 | |
ff5ca166 | 503 | QLIST_INIT(&state->sockets); |
769ce76d AG |
504 | state->s = s; |
505 | ||
3ce6a729 | 506 | return 0; |
769ce76d AG |
507 | } |
508 | ||
456af346 | 509 | /* Called with s->mutex held. */ |
769ce76d AG |
510 | static void curl_clean_state(CURLState *s) |
511 | { | |
675a7756 PB |
512 | int j; |
513 | for (j = 0; j < CURL_NUM_ACB; j++) { | |
514 | assert(!s->acb[j]); | |
515 | } | |
516 | ||
769ce76d AG |
517 | if (s->s->multi) |
518 | curl_multi_remove_handle(s->s->multi, s->curl); | |
ff5ca166 HR |
519 | |
520 | while (!QLIST_EMPTY(&s->sockets)) { | |
521 | CURLSocket *socket = QLIST_FIRST(&s->sockets); | |
522 | ||
523 | QLIST_REMOVE(socket, next); | |
524 | g_free(socket); | |
525 | } | |
526 | ||
769ce76d | 527 | s->in_use = 0; |
2bb5c936 | 528 | |
709f2132 | 529 | qemu_co_enter_next(&s->s->free_state_waitq, &s->s->mutex); |
769ce76d AG |
530 | } |
531 | ||
8e6d58cd KW |
532 | static void curl_parse_filename(const char *filename, QDict *options, |
533 | Error **errp) | |
769ce76d | 534 | { |
46f5ac20 | 535 | qdict_put_str(options, CURL_BLOCK_OPT_URL, filename); |
8e6d58cd KW |
536 | } |
537 | ||
63f0f45f SH |
538 | static void curl_detach_aio_context(BlockDriverState *bs) |
539 | { | |
540 | BDRVCURLState *s = bs->opaque; | |
541 | int i; | |
542 | ||
456af346 | 543 | qemu_mutex_lock(&s->mutex); |
63f0f45f SH |
544 | for (i = 0; i < CURL_NUM_STATES; i++) { |
545 | if (s->states[i].in_use) { | |
546 | curl_clean_state(&s->states[i]); | |
547 | } | |
548 | if (s->states[i].curl) { | |
549 | curl_easy_cleanup(s->states[i].curl); | |
550 | s->states[i].curl = NULL; | |
551 | } | |
f7047c2d MA |
552 | g_free(s->states[i].orig_buf); |
553 | s->states[i].orig_buf = NULL; | |
63f0f45f SH |
554 | } |
555 | if (s->multi) { | |
556 | curl_multi_cleanup(s->multi); | |
557 | s->multi = NULL; | |
558 | } | |
456af346 | 559 | qemu_mutex_unlock(&s->mutex); |
63f0f45f SH |
560 | |
561 | timer_del(&s->timer); | |
562 | } | |
563 | ||
564 | static void curl_attach_aio_context(BlockDriverState *bs, | |
565 | AioContext *new_context) | |
566 | { | |
567 | BDRVCURLState *s = bs->opaque; | |
568 | ||
569 | aio_timer_init(new_context, &s->timer, | |
570 | QEMU_CLOCK_REALTIME, SCALE_NS, | |
571 | curl_multi_timeout_do, s); | |
572 | ||
573 | assert(!s->multi); | |
574 | s->multi = curl_multi_init(); | |
575 | s->aio_context = new_context; | |
576 | curl_multi_setopt(s->multi, CURLMOPT_SOCKETFUNCTION, curl_sock_cb); | |
577 | #ifdef NEED_CURL_TIMER_CALLBACK | |
578 | curl_multi_setopt(s->multi, CURLMOPT_TIMERDATA, s); | |
579 | curl_multi_setopt(s->multi, CURLMOPT_TIMERFUNCTION, curl_timer_cb); | |
580 | #endif | |
581 | } | |
582 | ||
8e6d58cd KW |
583 | static QemuOptsList runtime_opts = { |
584 | .name = "curl", | |
585 | .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head), | |
586 | .desc = { | |
587 | { | |
e3542c67 | 588 | .name = CURL_BLOCK_OPT_URL, |
8e6d58cd KW |
589 | .type = QEMU_OPT_STRING, |
590 | .help = "URL to open", | |
591 | }, | |
592 | { | |
e3542c67 | 593 | .name = CURL_BLOCK_OPT_READAHEAD, |
8e6d58cd KW |
594 | .type = QEMU_OPT_SIZE, |
595 | .help = "Readahead size", | |
596 | }, | |
97a3ea57 MB |
597 | { |
598 | .name = CURL_BLOCK_OPT_SSLVERIFY, | |
599 | .type = QEMU_OPT_BOOL, | |
600 | .help = "Verify SSL certificate" | |
601 | }, | |
212aefaa DHB |
602 | { |
603 | .name = CURL_BLOCK_OPT_TIMEOUT, | |
604 | .type = QEMU_OPT_NUMBER, | |
605 | .help = "Curl timeout" | |
606 | }, | |
a94f83d9 RJ |
607 | { |
608 | .name = CURL_BLOCK_OPT_COOKIE, | |
609 | .type = QEMU_OPT_STRING, | |
610 | .help = "Pass the cookie or list of cookies with each request" | |
611 | }, | |
327c8ebd PK |
612 | { |
613 | .name = CURL_BLOCK_OPT_COOKIE_SECRET, | |
614 | .type = QEMU_OPT_STRING, | |
615 | .help = "ID of secret used as cookie passed with each request" | |
616 | }, | |
1bff9606 DB |
617 | { |
618 | .name = CURL_BLOCK_OPT_USERNAME, | |
619 | .type = QEMU_OPT_STRING, | |
620 | .help = "Username for HTTP auth" | |
621 | }, | |
622 | { | |
623 | .name = CURL_BLOCK_OPT_PASSWORD_SECRET, | |
624 | .type = QEMU_OPT_STRING, | |
625 | .help = "ID of secret used as password for HTTP auth", | |
626 | }, | |
627 | { | |
628 | .name = CURL_BLOCK_OPT_PROXY_USERNAME, | |
629 | .type = QEMU_OPT_STRING, | |
630 | .help = "Username for HTTP proxy auth" | |
631 | }, | |
632 | { | |
633 | .name = CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET, | |
634 | .type = QEMU_OPT_STRING, | |
635 | .help = "ID of secret used as password for HTTP proxy auth", | |
636 | }, | |
8e6d58cd KW |
637 | { /* end of list */ } |
638 | }, | |
639 | }; | |
640 | ||
1bff9606 | 641 | |
015a1036 HR |
642 | static int curl_open(BlockDriverState *bs, QDict *options, int flags, |
643 | Error **errp) | |
8e6d58cd KW |
644 | { |
645 | BDRVCURLState *s = bs->opaque; | |
646 | CURLState *state = NULL; | |
647 | QemuOpts *opts; | |
648 | Error *local_err = NULL; | |
649 | const char *file; | |
a94f83d9 | 650 | const char *cookie; |
327c8ebd | 651 | const char *cookie_secret; |
8e6d58cd | 652 | double d; |
1bff9606 | 653 | const char *secretid; |
34634ca2 | 654 | const char *protocol_delimiter; |
2d25964d | 655 | int ret; |
8e6d58cd | 656 | |
6ceef36a KW |
657 | ret = bdrv_apply_auto_read_only(bs, "curl driver does not support writes", |
658 | errp); | |
659 | if (ret < 0) { | |
660 | return ret; | |
a7cea2ba RJ |
661 | } |
662 | ||
2d25964d JC |
663 | if (!libcurl_initialized) { |
664 | ret = curl_global_init(CURL_GLOBAL_ALL); | |
665 | if (ret) { | |
666 | error_setg(errp, "libcurl initialization failed with %d", ret); | |
667 | return -EIO; | |
668 | } | |
669 | libcurl_initialized = true; | |
670 | } | |
671 | ||
456af346 | 672 | qemu_mutex_init(&s->mutex); |
87ea75d5 | 673 | opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort); |
8e6d58cd | 674 | qemu_opts_absorb_qdict(opts, options, &local_err); |
84d18f06 | 675 | if (local_err) { |
2a94fee3 | 676 | error_propagate(errp, local_err); |
8e6d58cd KW |
677 | goto out_noclean; |
678 | } | |
679 | ||
e3542c67 | 680 | s->readahead_size = qemu_opt_get_size(opts, CURL_BLOCK_OPT_READAHEAD, |
712b64e8 | 681 | CURL_BLOCK_OPT_READAHEAD_DEFAULT); |
c76f4952 | 682 | if ((s->readahead_size & 0x1ff) != 0) { |
2a94fee3 PB |
683 | error_setg(errp, "HTTP_READAHEAD_SIZE %zd is not a multiple of 512", |
684 | s->readahead_size); | |
c76f4952 N |
685 | goto out_noclean; |
686 | } | |
687 | ||
212aefaa | 688 | s->timeout = qemu_opt_get_number(opts, CURL_BLOCK_OPT_TIMEOUT, |
712b64e8 | 689 | CURL_BLOCK_OPT_TIMEOUT_DEFAULT); |
f76faeda RJ |
690 | if (s->timeout > CURL_TIMEOUT_MAX) { |
691 | error_setg(errp, "timeout parameter is too large or negative"); | |
692 | goto out_noclean; | |
693 | } | |
212aefaa | 694 | |
712b64e8 HR |
695 | s->sslverify = qemu_opt_get_bool(opts, CURL_BLOCK_OPT_SSLVERIFY, |
696 | CURL_BLOCK_OPT_SSLVERIFY_DEFAULT); | |
97a3ea57 | 697 | |
a94f83d9 | 698 | cookie = qemu_opt_get(opts, CURL_BLOCK_OPT_COOKIE); |
327c8ebd PK |
699 | cookie_secret = qemu_opt_get(opts, CURL_BLOCK_OPT_COOKIE_SECRET); |
700 | ||
701 | if (cookie && cookie_secret) { | |
702 | error_setg(errp, | |
703 | "curl driver cannot handle both cookie and cookie secret"); | |
704 | goto out_noclean; | |
705 | } | |
706 | ||
707 | if (cookie_secret) { | |
708 | s->cookie = qcrypto_secret_lookup_as_utf8(cookie_secret, errp); | |
709 | if (!s->cookie) { | |
710 | goto out_noclean; | |
711 | } | |
712 | } else { | |
713 | s->cookie = g_strdup(cookie); | |
714 | } | |
a94f83d9 | 715 | |
e3542c67 | 716 | file = qemu_opt_get(opts, CURL_BLOCK_OPT_URL); |
8e6d58cd | 717 | if (file == NULL) { |
2a94fee3 | 718 | error_setg(errp, "curl block driver requires an 'url' option"); |
8e6d58cd KW |
719 | goto out_noclean; |
720 | } | |
721 | ||
34634ca2 HR |
722 | if (!strstart(file, bs->drv->protocol_name, &protocol_delimiter) || |
723 | !strstart(protocol_delimiter, "://", NULL)) | |
724 | { | |
725 | error_setg(errp, "%s curl driver cannot handle the URL '%s' (does not " | |
726 | "start with '%s://')", bs->drv->protocol_name, file, | |
727 | bs->drv->protocol_name); | |
728 | goto out_noclean; | |
729 | } | |
730 | ||
1bff9606 DB |
731 | s->username = g_strdup(qemu_opt_get(opts, CURL_BLOCK_OPT_USERNAME)); |
732 | secretid = qemu_opt_get(opts, CURL_BLOCK_OPT_PASSWORD_SECRET); | |
733 | ||
734 | if (secretid) { | |
735 | s->password = qcrypto_secret_lookup_as_utf8(secretid, errp); | |
736 | if (!s->password) { | |
737 | goto out_noclean; | |
738 | } | |
739 | } | |
740 | ||
741 | s->proxyusername = g_strdup( | |
742 | qemu_opt_get(opts, CURL_BLOCK_OPT_PROXY_USERNAME)); | |
743 | secretid = qemu_opt_get(opts, CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET); | |
744 | if (secretid) { | |
745 | s->proxypassword = qcrypto_secret_lookup_as_utf8(secretid, errp); | |
746 | if (!s->proxypassword) { | |
747 | goto out_noclean; | |
748 | } | |
749 | } | |
750 | ||
ed2a66de | 751 | trace_curl_open(file); |
709f2132 | 752 | qemu_co_queue_init(&s->free_state_waitq); |
63f0f45f | 753 | s->aio_context = bdrv_get_aio_context(bs); |
8e6d58cd | 754 | s->url = g_strdup(file); |
456af346 | 755 | qemu_mutex_lock(&s->mutex); |
3ce6a729 | 756 | state = curl_find_state(s); |
456af346 | 757 | qemu_mutex_unlock(&s->mutex); |
3ce6a729 | 758 | if (!state) { |
769ce76d | 759 | goto out_noclean; |
3ce6a729 | 760 | } |
769ce76d AG |
761 | |
762 | // Get file size | |
763 | ||
3ce6a729 PB |
764 | if (curl_init_state(s, state) < 0) { |
765 | goto out; | |
766 | } | |
767 | ||
3494d650 | 768 | s->accept_range = false; |
769ce76d | 769 | curl_easy_setopt(state->curl, CURLOPT_NOBODY, 1); |
3494d650 FZ |
770 | curl_easy_setopt(state->curl, CURLOPT_HEADERFUNCTION, |
771 | curl_header_cb); | |
772 | curl_easy_setopt(state->curl, CURLOPT_HEADERDATA, s); | |
769ce76d AG |
773 | if (curl_easy_perform(state->curl)) |
774 | goto out; | |
a41c4578 | 775 | if (curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d)) { |
769ce76d | 776 | goto out; |
a41c4578 TG |
777 | } |
778 | /* Prior CURL 7.19.4 return value of 0 could mean that the file size is not | |
779 | * know or the size is zero. From 7.19.4 CURL returns -1 if size is not | |
50d6a8a3 | 780 | * known and zero if it is really zero-length file. */ |
a41c4578 TG |
781 | #if LIBCURL_VERSION_NUM >= 0x071304 |
782 | if (d < 0) { | |
783 | pstrcpy(state->errmsg, CURL_ERROR_SIZE, | |
784 | "Server didn't report file size."); | |
785 | goto out; | |
786 | } | |
787 | #else | |
788 | if (d <= 0) { | |
789 | pstrcpy(state->errmsg, CURL_ERROR_SIZE, | |
790 | "Unknown file size or zero-length file."); | |
791 | goto out; | |
792 | } | |
793 | #endif | |
794 | ||
2125e5ea | 795 | s->len = d; |
a41c4578 | 796 | |
3494d650 FZ |
797 | if ((!strncasecmp(s->url, "http://", strlen("http://")) |
798 | || !strncasecmp(s->url, "https://", strlen("https://"))) | |
799 | && !s->accept_range) { | |
800 | pstrcpy(state->errmsg, CURL_ERROR_SIZE, | |
801 | "Server does not support 'range' (byte ranges)."); | |
802 | goto out; | |
803 | } | |
ed2a66de | 804 | trace_curl_open_size(s->len); |
769ce76d | 805 | |
456af346 | 806 | qemu_mutex_lock(&s->mutex); |
769ce76d | 807 | curl_clean_state(state); |
456af346 | 808 | qemu_mutex_unlock(&s->mutex); |
769ce76d AG |
809 | curl_easy_cleanup(state->curl); |
810 | state->curl = NULL; | |
811 | ||
63f0f45f | 812 | curl_attach_aio_context(bs, bdrv_get_aio_context(bs)); |
769ce76d | 813 | |
8e6d58cd | 814 | qemu_opts_del(opts); |
769ce76d AG |
815 | return 0; |
816 | ||
817 | out: | |
acd7fdc6 | 818 | error_setg(errp, "CURL: Error opening file: %s", state->errmsg); |
769ce76d AG |
819 | curl_easy_cleanup(state->curl); |
820 | state->curl = NULL; | |
821 | out_noclean: | |
456af346 | 822 | qemu_mutex_destroy(&s->mutex); |
a94f83d9 | 823 | g_free(s->cookie); |
8e6d58cd | 824 | g_free(s->url); |
996922de JC |
825 | g_free(s->username); |
826 | g_free(s->proxyusername); | |
827 | g_free(s->proxypassword); | |
8e6d58cd | 828 | qemu_opts_del(opts); |
769ce76d AG |
829 | return -EINVAL; |
830 | } | |
831 | ||
28256d82 | 832 | static void curl_setup_preadv(BlockDriverState *bs, CURLAIOCB *acb) |
769ce76d | 833 | { |
769ce76d | 834 | CURLState *state; |
b69cdef8 | 835 | int running; |
769ce76d | 836 | |
1919631e | 837 | BDRVCURLState *s = bs->opaque; |
769ce76d | 838 | |
2125e5ea PB |
839 | uint64_t start = acb->offset; |
840 | uint64_t end; | |
769ce76d | 841 | |
ba3186c4 | 842 | qemu_mutex_lock(&s->mutex); |
1919631e | 843 | |
769ce76d AG |
844 | // In case we have the requested data already (e.g. read-ahead), |
845 | // we can just call the callback and be done. | |
28256d82 PB |
846 | if (curl_find_buf(s, start, acb->bytes, acb)) { |
847 | goto out; | |
769ce76d AG |
848 | } |
849 | ||
850 | // No cache found, so let's start a new request | |
3ce6a729 PB |
851 | for (;;) { |
852 | state = curl_find_state(s); | |
853 | if (state) { | |
854 | break; | |
855 | } | |
709f2132 | 856 | qemu_co_queue_wait(&s->free_state_waitq, &s->mutex); |
3ce6a729 PB |
857 | } |
858 | ||
859 | if (curl_init_state(s, state) < 0) { | |
860 | curl_clean_state(state); | |
28256d82 | 861 | acb->ret = -EIO; |
1919631e | 862 | goto out; |
363c3c85 | 863 | } |
769ce76d AG |
864 | |
865 | acb->start = 0; | |
2125e5ea | 866 | acb->end = MIN(acb->bytes, s->len - start); |
769ce76d AG |
867 | |
868 | state->buf_off = 0; | |
f7047c2d | 869 | g_free(state->orig_buf); |
769ce76d | 870 | state->buf_start = start; |
4e504535 HR |
871 | state->buf_len = MIN(acb->end + s->readahead_size, s->len - start); |
872 | end = start + state->buf_len - 1; | |
8dc7a772 KW |
873 | state->orig_buf = g_try_malloc(state->buf_len); |
874 | if (state->buf_len && state->orig_buf == NULL) { | |
875 | curl_clean_state(state); | |
28256d82 | 876 | acb->ret = -ENOMEM; |
1919631e | 877 | goto out; |
8dc7a772 | 878 | } |
769ce76d AG |
879 | state->acb[0] = acb; |
880 | ||
2125e5ea | 881 | snprintf(state->range, 127, "%" PRIu64 "-%" PRIu64, start, end); |
ed2a66de | 882 | trace_curl_setup_preadv(acb->bytes, start, state->range); |
769ce76d AG |
883 | curl_easy_setopt(state->curl, CURLOPT_RANGE, state->range); |
884 | ||
c34dc07f HR |
885 | if (curl_multi_add_handle(s->multi, state->curl) != CURLM_OK) { |
886 | state->acb[0] = NULL; | |
887 | acb->ret = -EIO; | |
888 | ||
889 | curl_clean_state(state); | |
890 | goto out; | |
891 | } | |
769ce76d | 892 | |
b69cdef8 MB |
893 | /* Tell curl it needs to kick things off */ |
894 | curl_multi_socket_action(s->multi, CURL_SOCKET_TIMEOUT, 0, &running); | |
1919631e PB |
895 | |
896 | out: | |
ba3186c4 | 897 | qemu_mutex_unlock(&s->mutex); |
363c3c85 NT |
898 | } |
899 | ||
28256d82 PB |
900 | static int coroutine_fn curl_co_preadv(BlockDriverState *bs, |
901 | uint64_t offset, uint64_t bytes, QEMUIOVector *qiov, int flags) | |
363c3c85 | 902 | { |
28256d82 PB |
903 | CURLAIOCB acb = { |
904 | .co = qemu_coroutine_self(), | |
905 | .ret = -EINPROGRESS, | |
906 | .qiov = qiov, | |
907 | .offset = offset, | |
908 | .bytes = bytes | |
909 | }; | |
910 | ||
911 | curl_setup_preadv(bs, &acb); | |
912 | while (acb.ret == -EINPROGRESS) { | |
913 | qemu_coroutine_yield(); | |
914 | } | |
915 | return acb.ret; | |
769ce76d AG |
916 | } |
917 | ||
769ce76d AG |
918 | static void curl_close(BlockDriverState *bs) |
919 | { | |
920 | BDRVCURLState *s = bs->opaque; | |
769ce76d | 921 | |
ed2a66de | 922 | trace_curl_close(); |
63f0f45f | 923 | curl_detach_aio_context(bs); |
ba3186c4 | 924 | qemu_mutex_destroy(&s->mutex); |
031fd1be | 925 | |
a94f83d9 | 926 | g_free(s->cookie); |
45724d6d | 927 | g_free(s->url); |
996922de JC |
928 | g_free(s->username); |
929 | g_free(s->proxyusername); | |
930 | g_free(s->proxypassword); | |
769ce76d AG |
931 | } |
932 | ||
933 | static int64_t curl_getlength(BlockDriverState *bs) | |
934 | { | |
935 | BDRVCURLState *s = bs->opaque; | |
936 | return s->len; | |
937 | } | |
938 | ||
937c007b HR |
939 | static void curl_refresh_filename(BlockDriverState *bs) |
940 | { | |
941 | BDRVCURLState *s = bs->opaque; | |
942 | ||
943 | /* "readahead" and "timeout" do not change the guest-visible data, | |
944 | * so ignore them */ | |
945 | if (s->sslverify != CURL_BLOCK_OPT_SSLVERIFY_DEFAULT || | |
946 | s->cookie || s->username || s->password || s->proxyusername || | |
947 | s->proxypassword) | |
948 | { | |
949 | return; | |
950 | } | |
951 | ||
952 | pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), s->url); | |
953 | } | |
954 | ||
955 | ||
2654267c HR |
956 | static const char *const curl_strong_runtime_opts[] = { |
957 | CURL_BLOCK_OPT_URL, | |
958 | CURL_BLOCK_OPT_SSLVERIFY, | |
959 | CURL_BLOCK_OPT_COOKIE, | |
960 | CURL_BLOCK_OPT_COOKIE_SECRET, | |
961 | CURL_BLOCK_OPT_USERNAME, | |
962 | CURL_BLOCK_OPT_PASSWORD_SECRET, | |
963 | CURL_BLOCK_OPT_PROXY_USERNAME, | |
964 | CURL_BLOCK_OPT_PROXY_PASSWORD_SECRET, | |
965 | ||
966 | NULL | |
967 | }; | |
968 | ||
769ce76d | 969 | static BlockDriver bdrv_http = { |
63f0f45f SH |
970 | .format_name = "http", |
971 | .protocol_name = "http", | |
972 | ||
973 | .instance_size = sizeof(BDRVCURLState), | |
974 | .bdrv_parse_filename = curl_parse_filename, | |
975 | .bdrv_file_open = curl_open, | |
976 | .bdrv_close = curl_close, | |
977 | .bdrv_getlength = curl_getlength, | |
769ce76d | 978 | |
28256d82 | 979 | .bdrv_co_preadv = curl_co_preadv, |
769ce76d | 980 | |
63f0f45f SH |
981 | .bdrv_detach_aio_context = curl_detach_aio_context, |
982 | .bdrv_attach_aio_context = curl_attach_aio_context, | |
2654267c | 983 | |
937c007b | 984 | .bdrv_refresh_filename = curl_refresh_filename, |
2654267c | 985 | .strong_runtime_opts = curl_strong_runtime_opts, |
769ce76d AG |
986 | }; |
987 | ||
988 | static BlockDriver bdrv_https = { | |
63f0f45f SH |
989 | .format_name = "https", |
990 | .protocol_name = "https", | |
769ce76d | 991 | |
63f0f45f SH |
992 | .instance_size = sizeof(BDRVCURLState), |
993 | .bdrv_parse_filename = curl_parse_filename, | |
994 | .bdrv_file_open = curl_open, | |
995 | .bdrv_close = curl_close, | |
996 | .bdrv_getlength = curl_getlength, | |
769ce76d | 997 | |
28256d82 | 998 | .bdrv_co_preadv = curl_co_preadv, |
63f0f45f SH |
999 | |
1000 | .bdrv_detach_aio_context = curl_detach_aio_context, | |
1001 | .bdrv_attach_aio_context = curl_attach_aio_context, | |
2654267c | 1002 | |
937c007b | 1003 | .bdrv_refresh_filename = curl_refresh_filename, |
2654267c | 1004 | .strong_runtime_opts = curl_strong_runtime_opts, |
769ce76d AG |
1005 | }; |
1006 | ||
1007 | static BlockDriver bdrv_ftp = { | |
63f0f45f SH |
1008 | .format_name = "ftp", |
1009 | .protocol_name = "ftp", | |
1010 | ||
1011 | .instance_size = sizeof(BDRVCURLState), | |
1012 | .bdrv_parse_filename = curl_parse_filename, | |
1013 | .bdrv_file_open = curl_open, | |
1014 | .bdrv_close = curl_close, | |
1015 | .bdrv_getlength = curl_getlength, | |
769ce76d | 1016 | |
28256d82 | 1017 | .bdrv_co_preadv = curl_co_preadv, |
769ce76d | 1018 | |
63f0f45f SH |
1019 | .bdrv_detach_aio_context = curl_detach_aio_context, |
1020 | .bdrv_attach_aio_context = curl_attach_aio_context, | |
2654267c | 1021 | |
937c007b | 1022 | .bdrv_refresh_filename = curl_refresh_filename, |
2654267c | 1023 | .strong_runtime_opts = curl_strong_runtime_opts, |
769ce76d AG |
1024 | }; |
1025 | ||
1026 | static BlockDriver bdrv_ftps = { | |
63f0f45f SH |
1027 | .format_name = "ftps", |
1028 | .protocol_name = "ftps", | |
769ce76d | 1029 | |
63f0f45f SH |
1030 | .instance_size = sizeof(BDRVCURLState), |
1031 | .bdrv_parse_filename = curl_parse_filename, | |
1032 | .bdrv_file_open = curl_open, | |
1033 | .bdrv_close = curl_close, | |
1034 | .bdrv_getlength = curl_getlength, | |
769ce76d | 1035 | |
28256d82 | 1036 | .bdrv_co_preadv = curl_co_preadv, |
63f0f45f SH |
1037 | |
1038 | .bdrv_detach_aio_context = curl_detach_aio_context, | |
1039 | .bdrv_attach_aio_context = curl_attach_aio_context, | |
2654267c | 1040 | |
937c007b | 1041 | .bdrv_refresh_filename = curl_refresh_filename, |
2654267c | 1042 | .strong_runtime_opts = curl_strong_runtime_opts, |
769ce76d AG |
1043 | }; |
1044 | ||
769ce76d AG |
1045 | static void curl_block_init(void) |
1046 | { | |
1047 | bdrv_register(&bdrv_http); | |
1048 | bdrv_register(&bdrv_https); | |
1049 | bdrv_register(&bdrv_ftp); | |
1050 | bdrv_register(&bdrv_ftps); | |
769ce76d AG |
1051 | } |
1052 | ||
1053 | block_init(curl_block_init); |