]>
Commit | Line | Data |
---|---|---|
c589b249 RS |
1 | /* |
2 | * QEMU Block driver for iSCSI images | |
3 | * | |
4 | * Copyright (c) 2010-2011 Ronnie Sahlberg <[email protected]> | |
ec209aca | 5 | * Copyright (c) 2012-2014 Peter Lieven <[email protected]> |
c589b249 RS |
6 | * |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
25 | ||
26 | #include "config-host.h" | |
27 | ||
28 | #include <poll.h> | |
efc6de0d | 29 | #include <math.h> |
f4dfa67f | 30 | #include <arpa/inet.h> |
c589b249 | 31 | #include "qemu-common.h" |
1de7afc9 PB |
32 | #include "qemu/config-file.h" |
33 | #include "qemu/error-report.h" | |
b03c3805 PL |
34 | #include "qemu/bitops.h" |
35 | #include "qemu/bitmap.h" | |
737e150e | 36 | #include "block/block_int.h" |
c589b249 | 37 | #include "trace.h" |
0d09e41a | 38 | #include "block/scsi.h" |
0a53f010 | 39 | #include "qemu/iov.h" |
5accc840 PB |
40 | #include "sysemu/sysemu.h" |
41 | #include "qmp-commands.h" | |
c589b249 RS |
42 | |
43 | #include <iscsi/iscsi.h> | |
44 | #include <iscsi/scsi-lowlevel.h> | |
45 | ||
98392453 RS |
46 | #ifdef __linux__ |
47 | #include <scsi/sg.h> | |
0d09e41a | 48 | #include <block/scsi.h> |
98392453 | 49 | #endif |
c589b249 RS |
50 | |
51 | typedef struct IscsiLun { | |
52 | struct iscsi_context *iscsi; | |
80cf6257 | 53 | AioContext *aio_context; |
c589b249 | 54 | int lun; |
dbfff6d7 | 55 | enum scsi_inquiry_peripheral_device_type type; |
c589b249 | 56 | int block_size; |
c7b4a952 | 57 | uint64_t num_blocks; |
c9b9f682 | 58 | int events; |
5b5d34ec | 59 | QEMUTimer *nop_timer; |
f18a7cbb PL |
60 | uint8_t lbpme; |
61 | uint8_t lbprz; | |
fa6252b0 | 62 | uint8_t has_write_same; |
f18a7cbb PL |
63 | struct scsi_inquiry_logical_block_provisioning lbp; |
64 | struct scsi_inquiry_block_limits bl; | |
d4cd9615 | 65 | unsigned char *zeroblock; |
b03c3805 PL |
66 | unsigned long *allocationmap; |
67 | int cluster_sectors; | |
9281fe9e | 68 | bool use_16_for_rw; |
c589b249 RS |
69 | } IscsiLun; |
70 | ||
54a5c1d5 PL |
71 | typedef struct IscsiTask { |
72 | int status; | |
73 | int complete; | |
74 | int retries; | |
75 | int do_retry; | |
76 | struct scsi_task *task; | |
77 | Coroutine *co; | |
8b9dfe90 | 78 | QEMUBH *bh; |
80cf6257 | 79 | IscsiLun *iscsilun; |
efc6de0d | 80 | QEMUTimer retry_timer; |
54a5c1d5 PL |
81 | } IscsiTask; |
82 | ||
c589b249 RS |
83 | typedef struct IscsiAIOCB { |
84 | BlockDriverAIOCB common; | |
85 | QEMUIOVector *qiov; | |
86 | QEMUBH *bh; | |
87 | IscsiLun *iscsilun; | |
88 | struct scsi_task *task; | |
89 | uint8_t *buf; | |
90 | int status; | |
91 | int canceled; | |
1dde716e PL |
92 | int64_t sector_num; |
93 | int nb_sectors; | |
98392453 RS |
94 | #ifdef __linux__ |
95 | sg_io_hdr_t *ioh; | |
96 | #endif | |
c589b249 RS |
97 | } IscsiAIOCB; |
98 | ||
5b5d34ec PL |
99 | #define NOP_INTERVAL 5000 |
100 | #define MAX_NOP_FAILURES 3 | |
efc6de0d PL |
101 | #define ISCSI_CMD_RETRIES ARRAY_SIZE(iscsi_retry_times) |
102 | static const unsigned iscsi_retry_times[] = {8, 32, 128, 512, 2048}; | |
5b5d34ec | 103 | |
5d831be2 | 104 | /* this threshold is a trade-off knob to choose between |
5917af81 PL |
105 | * the potential additional overhead of an extra GET_LBA_STATUS request |
106 | * vs. unnecessarily reading a lot of zero sectors over the wire. | |
107 | * If a read request is greater or equal than ISCSI_CHECKALLOC_THRES | |
108 | * sectors we check the allocation status of the area covered by the | |
109 | * request first if the allocationmap indicates that the area might be | |
110 | * unallocated. */ | |
111 | #define ISCSI_CHECKALLOC_THRES 64 | |
5b5d34ec | 112 | |
27cbd828 | 113 | static void |
cfb3f506 | 114 | iscsi_bh_cb(void *p) |
27cbd828 PB |
115 | { |
116 | IscsiAIOCB *acb = p; | |
117 | ||
118 | qemu_bh_delete(acb->bh); | |
119 | ||
4790b03d PB |
120 | g_free(acb->buf); |
121 | acb->buf = NULL; | |
122 | ||
27cbd828 PB |
123 | if (acb->canceled == 0) { |
124 | acb->common.cb(acb->common.opaque, acb->status); | |
125 | } | |
126 | ||
1bd075f2 PB |
127 | if (acb->task != NULL) { |
128 | scsi_free_scsi_task(acb->task); | |
129 | acb->task = NULL; | |
130 | } | |
131 | ||
27cbd828 PB |
132 | qemu_aio_release(acb); |
133 | } | |
134 | ||
cfb3f506 PB |
135 | static void |
136 | iscsi_schedule_bh(IscsiAIOCB *acb) | |
27cbd828 | 137 | { |
1bd075f2 PB |
138 | if (acb->bh) { |
139 | return; | |
140 | } | |
80cf6257 | 141 | acb->bh = aio_bh_new(acb->iscsilun->aio_context, iscsi_bh_cb, acb); |
27cbd828 | 142 | qemu_bh_schedule(acb->bh); |
27cbd828 PB |
143 | } |
144 | ||
8b9dfe90 PL |
145 | static void iscsi_co_generic_bh_cb(void *opaque) |
146 | { | |
147 | struct IscsiTask *iTask = opaque; | |
fcd470d8 | 148 | iTask->complete = 1; |
8b9dfe90 PL |
149 | qemu_bh_delete(iTask->bh); |
150 | qemu_coroutine_enter(iTask->co, NULL); | |
151 | } | |
152 | ||
efc6de0d PL |
153 | static void iscsi_retry_timer_expired(void *opaque) |
154 | { | |
155 | struct IscsiTask *iTask = opaque; | |
fcd470d8 | 156 | iTask->complete = 1; |
efc6de0d PL |
157 | if (iTask->co) { |
158 | qemu_coroutine_enter(iTask->co, NULL); | |
159 | } | |
160 | } | |
161 | ||
162 | static inline unsigned exp_random(double mean) | |
163 | { | |
164 | return -mean * log((double)rand() / RAND_MAX); | |
165 | } | |
166 | ||
54a5c1d5 PL |
167 | static void |
168 | iscsi_co_generic_cb(struct iscsi_context *iscsi, int status, | |
169 | void *command_data, void *opaque) | |
170 | { | |
171 | struct IscsiTask *iTask = opaque; | |
172 | struct scsi_task *task = command_data; | |
173 | ||
54a5c1d5 PL |
174 | iTask->status = status; |
175 | iTask->do_retry = 0; | |
176 | iTask->task = task; | |
177 | ||
54a5c1d5 | 178 | if (status != SCSI_STATUS_GOOD) { |
efc6de0d PL |
179 | if (iTask->retries++ < ISCSI_CMD_RETRIES) { |
180 | if (status == SCSI_STATUS_CHECK_CONDITION | |
181 | && task->sense.key == SCSI_SENSE_UNIT_ATTENTION) { | |
182 | error_report("iSCSI CheckCondition: %s", | |
183 | iscsi_get_error(iscsi)); | |
184 | iTask->do_retry = 1; | |
185 | goto out; | |
186 | } | |
187 | if (status == SCSI_STATUS_BUSY) { | |
188 | unsigned retry_time = | |
189 | exp_random(iscsi_retry_times[iTask->retries - 1]); | |
190 | error_report("iSCSI Busy (retry #%u in %u ms): %s", | |
191 | iTask->retries, retry_time, | |
192 | iscsi_get_error(iscsi)); | |
193 | aio_timer_init(iTask->iscsilun->aio_context, | |
194 | &iTask->retry_timer, QEMU_CLOCK_REALTIME, | |
195 | SCALE_MS, iscsi_retry_timer_expired, iTask); | |
196 | timer_mod(&iTask->retry_timer, | |
197 | qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + retry_time); | |
198 | iTask->do_retry = 1; | |
199 | return; | |
200 | } | |
201 | } | |
837c3901 | 202 | error_report("iSCSI Failure: %s", iscsi_get_error(iscsi)); |
54a5c1d5 PL |
203 | } |
204 | ||
205 | out: | |
206 | if (iTask->co) { | |
80cf6257 SH |
207 | iTask->bh = aio_bh_new(iTask->iscsilun->aio_context, |
208 | iscsi_co_generic_bh_cb, iTask); | |
8b9dfe90 | 209 | qemu_bh_schedule(iTask->bh); |
fcd470d8 PL |
210 | } else { |
211 | iTask->complete = 1; | |
54a5c1d5 PL |
212 | } |
213 | } | |
214 | ||
215 | static void iscsi_co_init_iscsitask(IscsiLun *iscsilun, struct IscsiTask *iTask) | |
216 | { | |
217 | *iTask = (struct IscsiTask) { | |
efc6de0d | 218 | .co = qemu_coroutine_self(), |
efc6de0d | 219 | .iscsilun = iscsilun, |
54a5c1d5 PL |
220 | }; |
221 | } | |
27cbd828 | 222 | |
c589b249 RS |
223 | static void |
224 | iscsi_abort_task_cb(struct iscsi_context *iscsi, int status, void *command_data, | |
225 | void *private_data) | |
226 | { | |
1bd075f2 PB |
227 | IscsiAIOCB *acb = private_data; |
228 | ||
229 | acb->status = -ECANCELED; | |
230 | iscsi_schedule_bh(acb); | |
c589b249 RS |
231 | } |
232 | ||
233 | static void | |
234 | iscsi_aio_cancel(BlockDriverAIOCB *blockacb) | |
235 | { | |
236 | IscsiAIOCB *acb = (IscsiAIOCB *)blockacb; | |
237 | IscsiLun *iscsilun = acb->iscsilun; | |
238 | ||
1bd075f2 PB |
239 | if (acb->status != -EINPROGRESS) { |
240 | return; | |
241 | } | |
242 | ||
b2090919 | 243 | acb->canceled = 1; |
c589b249 | 244 | |
b2090919 | 245 | /* send a task mgmt call to the target to cancel the task on the target */ |
64e69e80 | 246 | iscsi_task_mgmt_abort_task_async(iscsilun->iscsi, acb->task, |
1bd075f2 | 247 | iscsi_abort_task_cb, acb); |
b2090919 | 248 | |
1bd075f2 | 249 | while (acb->status == -EINPROGRESS) { |
80cf6257 | 250 | aio_poll(iscsilun->aio_context, true); |
1bd075f2 | 251 | } |
c589b249 RS |
252 | } |
253 | ||
d7331bed | 254 | static const AIOCBInfo iscsi_aiocb_info = { |
c589b249 RS |
255 | .aiocb_size = sizeof(IscsiAIOCB), |
256 | .cancel = iscsi_aio_cancel, | |
257 | }; | |
258 | ||
259 | ||
260 | static void iscsi_process_read(void *arg); | |
261 | static void iscsi_process_write(void *arg); | |
262 | ||
c589b249 RS |
263 | static void |
264 | iscsi_set_events(IscsiLun *iscsilun) | |
265 | { | |
266 | struct iscsi_context *iscsi = iscsilun->iscsi; | |
c9b9f682 RS |
267 | int ev; |
268 | ||
269 | /* We always register a read handler. */ | |
270 | ev = POLLIN; | |
271 | ev |= iscsi_which_events(iscsi); | |
272 | if (ev != iscsilun->events) { | |
80cf6257 SH |
273 | aio_set_fd_handler(iscsilun->aio_context, |
274 | iscsi_get_fd(iscsi), | |
275 | iscsi_process_read, | |
276 | (ev & POLLOUT) ? iscsi_process_write : NULL, | |
277 | iscsilun); | |
c9b9f682 RS |
278 | |
279 | } | |
280 | ||
c9b9f682 | 281 | iscsilun->events = ev; |
c589b249 RS |
282 | } |
283 | ||
284 | static void | |
285 | iscsi_process_read(void *arg) | |
286 | { | |
287 | IscsiLun *iscsilun = arg; | |
288 | struct iscsi_context *iscsi = iscsilun->iscsi; | |
289 | ||
290 | iscsi_service(iscsi, POLLIN); | |
291 | iscsi_set_events(iscsilun); | |
292 | } | |
293 | ||
294 | static void | |
295 | iscsi_process_write(void *arg) | |
296 | { | |
297 | IscsiLun *iscsilun = arg; | |
298 | struct iscsi_context *iscsi = iscsilun->iscsi; | |
299 | ||
300 | iscsi_service(iscsi, POLLOUT); | |
301 | iscsi_set_events(iscsilun); | |
302 | } | |
303 | ||
0777b5dd PL |
304 | static int64_t sector_lun2qemu(int64_t sector, IscsiLun *iscsilun) |
305 | { | |
306 | return sector * iscsilun->block_size / BDRV_SECTOR_SIZE; | |
307 | } | |
308 | ||
c589b249 RS |
309 | static int64_t sector_qemu2lun(int64_t sector, IscsiLun *iscsilun) |
310 | { | |
311 | return sector * BDRV_SECTOR_SIZE / iscsilun->block_size; | |
312 | } | |
313 | ||
91bea4e2 PL |
314 | static bool is_request_lun_aligned(int64_t sector_num, int nb_sectors, |
315 | IscsiLun *iscsilun) | |
316 | { | |
317 | if ((sector_num * BDRV_SECTOR_SIZE) % iscsilun->block_size || | |
318 | (nb_sectors * BDRV_SECTOR_SIZE) % iscsilun->block_size) { | |
f5075224 RJ |
319 | error_report("iSCSI misaligned request: " |
320 | "iscsilun->block_size %u, sector_num %" PRIi64 | |
321 | ", nb_sectors %d", | |
91bea4e2 PL |
322 | iscsilun->block_size, sector_num, nb_sectors); |
323 | return 0; | |
324 | } | |
325 | return 1; | |
326 | } | |
327 | ||
b03c3805 PL |
328 | static void iscsi_allocationmap_set(IscsiLun *iscsilun, int64_t sector_num, |
329 | int nb_sectors) | |
330 | { | |
331 | if (iscsilun->allocationmap == NULL) { | |
332 | return; | |
333 | } | |
334 | bitmap_set(iscsilun->allocationmap, | |
335 | sector_num / iscsilun->cluster_sectors, | |
336 | DIV_ROUND_UP(nb_sectors, iscsilun->cluster_sectors)); | |
337 | } | |
338 | ||
339 | static void iscsi_allocationmap_clear(IscsiLun *iscsilun, int64_t sector_num, | |
340 | int nb_sectors) | |
341 | { | |
342 | int64_t cluster_num, nb_clusters; | |
343 | if (iscsilun->allocationmap == NULL) { | |
344 | return; | |
345 | } | |
346 | cluster_num = DIV_ROUND_UP(sector_num, iscsilun->cluster_sectors); | |
347 | nb_clusters = (sector_num + nb_sectors) / iscsilun->cluster_sectors | |
348 | - cluster_num; | |
349 | if (nb_clusters > 0) { | |
350 | bitmap_clear(iscsilun->allocationmap, cluster_num, nb_clusters); | |
351 | } | |
352 | } | |
353 | ||
063c3378 PL |
354 | static int coroutine_fn iscsi_co_writev(BlockDriverState *bs, |
355 | int64_t sector_num, int nb_sectors, | |
356 | QEMUIOVector *iov) | |
c589b249 | 357 | { |
063c3378 PL |
358 | IscsiLun *iscsilun = bs->opaque; |
359 | struct IscsiTask iTask; | |
f4dfa67f | 360 | uint64_t lba; |
063c3378 | 361 | uint32_t num_sectors; |
c589b249 | 362 | |
063c3378 PL |
363 | if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) { |
364 | return -EINVAL; | |
365 | } | |
7371d56f | 366 | |
063c3378 PL |
367 | lba = sector_qemu2lun(sector_num, iscsilun); |
368 | num_sectors = sector_qemu2lun(nb_sectors, iscsilun); | |
063c3378 PL |
369 | iscsi_co_init_iscsitask(iscsilun, &iTask); |
370 | retry: | |
9281fe9e PL |
371 | if (iscsilun->use_16_for_rw) { |
372 | iTask.task = iscsi_write16_task(iscsilun->iscsi, iscsilun->lun, lba, | |
8c215a9f | 373 | NULL, num_sectors * iscsilun->block_size, |
9281fe9e PL |
374 | iscsilun->block_size, 0, 0, 0, 0, 0, |
375 | iscsi_co_generic_cb, &iTask); | |
376 | } else { | |
377 | iTask.task = iscsi_write10_task(iscsilun->iscsi, iscsilun->lun, lba, | |
8c215a9f | 378 | NULL, num_sectors * iscsilun->block_size, |
9281fe9e PL |
379 | iscsilun->block_size, 0, 0, 0, 0, 0, |
380 | iscsi_co_generic_cb, &iTask); | |
381 | } | |
063c3378 | 382 | if (iTask.task == NULL) { |
92397116 | 383 | return -ENOMEM; |
f4dfa67f | 384 | } |
063c3378 PL |
385 | scsi_task_set_iov_out(iTask.task, (struct scsi_iovec *) iov->iov, |
386 | iov->niov); | |
063c3378 PL |
387 | while (!iTask.complete) { |
388 | iscsi_set_events(iscsilun); | |
389 | qemu_coroutine_yield(); | |
c589b249 RS |
390 | } |
391 | ||
063c3378 PL |
392 | if (iTask.task != NULL) { |
393 | scsi_free_scsi_task(iTask.task); | |
394 | iTask.task = NULL; | |
91bea4e2 PL |
395 | } |
396 | ||
063c3378 | 397 | if (iTask.do_retry) { |
837c3901 | 398 | iTask.complete = 0; |
063c3378 | 399 | goto retry; |
1dde716e PL |
400 | } |
401 | ||
063c3378 PL |
402 | if (iTask.status != SCSI_STATUS_GOOD) { |
403 | return -EIO; | |
c589b249 RS |
404 | } |
405 | ||
b03c3805 PL |
406 | iscsi_allocationmap_set(iscsilun, sector_num, nb_sectors); |
407 | ||
063c3378 | 408 | return 0; |
c589b249 RS |
409 | } |
410 | ||
b03c3805 PL |
411 | |
412 | static bool iscsi_allocationmap_is_allocated(IscsiLun *iscsilun, | |
413 | int64_t sector_num, int nb_sectors) | |
414 | { | |
415 | unsigned long size; | |
416 | if (iscsilun->allocationmap == NULL) { | |
417 | return true; | |
418 | } | |
419 | size = DIV_ROUND_UP(sector_num + nb_sectors, iscsilun->cluster_sectors); | |
420 | return !(find_next_bit(iscsilun->allocationmap, size, | |
421 | sector_num / iscsilun->cluster_sectors) == size); | |
422 | } | |
423 | ||
b03c3805 PL |
424 | static int64_t coroutine_fn iscsi_co_get_block_status(BlockDriverState *bs, |
425 | int64_t sector_num, | |
426 | int nb_sectors, int *pnum) | |
427 | { | |
428 | IscsiLun *iscsilun = bs->opaque; | |
429 | struct scsi_get_lba_status *lbas = NULL; | |
430 | struct scsi_lba_status_descriptor *lbasd = NULL; | |
431 | struct IscsiTask iTask; | |
432 | int64_t ret; | |
433 | ||
434 | iscsi_co_init_iscsitask(iscsilun, &iTask); | |
435 | ||
436 | if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) { | |
437 | ret = -EINVAL; | |
438 | goto out; | |
439 | } | |
440 | ||
441 | /* default to all sectors allocated */ | |
442 | ret = BDRV_BLOCK_DATA; | |
443 | ret |= (sector_num << BDRV_SECTOR_BITS) | BDRV_BLOCK_OFFSET_VALID; | |
444 | *pnum = nb_sectors; | |
445 | ||
446 | /* LUN does not support logical block provisioning */ | |
447 | if (iscsilun->lbpme == 0) { | |
448 | goto out; | |
449 | } | |
450 | ||
451 | retry: | |
452 | if (iscsi_get_lba_status_task(iscsilun->iscsi, iscsilun->lun, | |
453 | sector_qemu2lun(sector_num, iscsilun), | |
454 | 8 + 16, iscsi_co_generic_cb, | |
455 | &iTask) == NULL) { | |
456 | ret = -ENOMEM; | |
457 | goto out; | |
458 | } | |
459 | ||
460 | while (!iTask.complete) { | |
461 | iscsi_set_events(iscsilun); | |
462 | qemu_coroutine_yield(); | |
463 | } | |
464 | ||
465 | if (iTask.do_retry) { | |
466 | if (iTask.task != NULL) { | |
467 | scsi_free_scsi_task(iTask.task); | |
468 | iTask.task = NULL; | |
469 | } | |
470 | iTask.complete = 0; | |
471 | goto retry; | |
472 | } | |
473 | ||
474 | if (iTask.status != SCSI_STATUS_GOOD) { | |
475 | /* in case the get_lba_status_callout fails (i.e. | |
476 | * because the device is busy or the cmd is not | |
477 | * supported) we pretend all blocks are allocated | |
478 | * for backwards compatibility */ | |
479 | goto out; | |
480 | } | |
481 | ||
482 | lbas = scsi_datain_unmarshall(iTask.task); | |
483 | if (lbas == NULL) { | |
484 | ret = -EIO; | |
485 | goto out; | |
486 | } | |
487 | ||
488 | lbasd = &lbas->descriptors[0]; | |
489 | ||
490 | if (sector_qemu2lun(sector_num, iscsilun) != lbasd->lba) { | |
491 | ret = -EIO; | |
492 | goto out; | |
493 | } | |
494 | ||
495 | *pnum = sector_lun2qemu(lbasd->num_blocks, iscsilun); | |
496 | ||
497 | if (lbasd->provisioning == SCSI_PROVISIONING_TYPE_DEALLOCATED || | |
498 | lbasd->provisioning == SCSI_PROVISIONING_TYPE_ANCHORED) { | |
499 | ret &= ~BDRV_BLOCK_DATA; | |
500 | if (iscsilun->lbprz) { | |
501 | ret |= BDRV_BLOCK_ZERO; | |
502 | } | |
503 | } | |
504 | ||
505 | if (ret & BDRV_BLOCK_ZERO) { | |
506 | iscsi_allocationmap_clear(iscsilun, sector_num, *pnum); | |
507 | } else { | |
508 | iscsi_allocationmap_set(iscsilun, sector_num, *pnum); | |
509 | } | |
510 | ||
511 | if (*pnum > nb_sectors) { | |
512 | *pnum = nb_sectors; | |
513 | } | |
514 | out: | |
515 | if (iTask.task != NULL) { | |
516 | scsi_free_scsi_task(iTask.task); | |
517 | } | |
518 | return ret; | |
519 | } | |
520 | ||
063c3378 PL |
521 | static int coroutine_fn iscsi_co_readv(BlockDriverState *bs, |
522 | int64_t sector_num, int nb_sectors, | |
523 | QEMUIOVector *iov) | |
c589b249 | 524 | { |
063c3378 PL |
525 | IscsiLun *iscsilun = bs->opaque; |
526 | struct IscsiTask iTask; | |
1dde716e PL |
527 | uint64_t lba; |
528 | uint32_t num_sectors; | |
c589b249 | 529 | |
063c3378 PL |
530 | if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) { |
531 | return -EINVAL; | |
f4dfa67f | 532 | } |
f4dfa67f | 533 | |
5917af81 | 534 | if (iscsilun->lbprz && nb_sectors >= ISCSI_CHECKALLOC_THRES && |
b03c3805 PL |
535 | !iscsi_allocationmap_is_allocated(iscsilun, sector_num, nb_sectors)) { |
536 | int64_t ret; | |
537 | int pnum; | |
538 | ret = iscsi_co_get_block_status(bs, sector_num, INT_MAX, &pnum); | |
539 | if (ret < 0) { | |
540 | return ret; | |
541 | } | |
542 | if (ret & BDRV_BLOCK_ZERO && pnum >= nb_sectors) { | |
543 | qemu_iovec_memset(iov, 0, 0x00, iov->size); | |
544 | return 0; | |
545 | } | |
546 | } | |
b03c3805 | 547 | |
063c3378 PL |
548 | lba = sector_qemu2lun(sector_num, iscsilun); |
549 | num_sectors = sector_qemu2lun(nb_sectors, iscsilun); | |
f4dfa67f | 550 | |
063c3378 PL |
551 | iscsi_co_init_iscsitask(iscsilun, &iTask); |
552 | retry: | |
9281fe9e | 553 | if (iscsilun->use_16_for_rw) { |
063c3378 PL |
554 | iTask.task = iscsi_read16_task(iscsilun->iscsi, iscsilun->lun, lba, |
555 | num_sectors * iscsilun->block_size, | |
556 | iscsilun->block_size, 0, 0, 0, 0, 0, | |
557 | iscsi_co_generic_cb, &iTask); | |
9281fe9e | 558 | } else { |
063c3378 PL |
559 | iTask.task = iscsi_read10_task(iscsilun->iscsi, iscsilun->lun, lba, |
560 | num_sectors * iscsilun->block_size, | |
219c2521 | 561 | iscsilun->block_size, |
219c2521 | 562 | 0, 0, 0, 0, 0, |
063c3378 | 563 | iscsi_co_generic_cb, &iTask); |
f4dfa67f | 564 | } |
063c3378 | 565 | if (iTask.task == NULL) { |
92397116 | 566 | return -ENOMEM; |
c589b249 | 567 | } |
063c3378 | 568 | scsi_task_set_iov_in(iTask.task, (struct scsi_iovec *) iov->iov, iov->niov); |
91bea4e2 | 569 | |
063c3378 PL |
570 | while (!iTask.complete) { |
571 | iscsi_set_events(iscsilun); | |
572 | qemu_coroutine_yield(); | |
1dde716e | 573 | } |
c589b249 | 574 | |
063c3378 PL |
575 | if (iTask.task != NULL) { |
576 | scsi_free_scsi_task(iTask.task); | |
577 | iTask.task = NULL; | |
c589b249 RS |
578 | } |
579 | ||
063c3378 | 580 | if (iTask.do_retry) { |
837c3901 | 581 | iTask.complete = 0; |
063c3378 | 582 | goto retry; |
c589b249 RS |
583 | } |
584 | ||
063c3378 PL |
585 | if (iTask.status != SCSI_STATUS_GOOD) { |
586 | return -EIO; | |
1dde716e PL |
587 | } |
588 | ||
589 | return 0; | |
590 | } | |
591 | ||
063c3378 | 592 | static int coroutine_fn iscsi_co_flush(BlockDriverState *bs) |
1dde716e PL |
593 | { |
594 | IscsiLun *iscsilun = bs->opaque; | |
063c3378 | 595 | struct IscsiTask iTask; |
1dde716e | 596 | |
b2f9c08a PB |
597 | if (bs->sg) { |
598 | return 0; | |
599 | } | |
600 | ||
063c3378 | 601 | iscsi_co_init_iscsitask(iscsilun, &iTask); |
1dde716e | 602 | |
063c3378 PL |
603 | retry: |
604 | if (iscsi_synchronizecache10_task(iscsilun->iscsi, iscsilun->lun, 0, 0, 0, | |
605 | 0, iscsi_co_generic_cb, &iTask) == NULL) { | |
92397116 | 606 | return -ENOMEM; |
063c3378 | 607 | } |
1dde716e | 608 | |
063c3378 PL |
609 | while (!iTask.complete) { |
610 | iscsi_set_events(iscsilun); | |
611 | qemu_coroutine_yield(); | |
612 | } | |
1dde716e | 613 | |
063c3378 PL |
614 | if (iTask.task != NULL) { |
615 | scsi_free_scsi_task(iTask.task); | |
616 | iTask.task = NULL; | |
c589b249 RS |
617 | } |
618 | ||
063c3378 | 619 | if (iTask.do_retry) { |
837c3901 | 620 | iTask.complete = 0; |
063c3378 PL |
621 | goto retry; |
622 | } | |
c589b249 | 623 | |
063c3378 PL |
624 | if (iTask.status != SCSI_STATUS_GOOD) { |
625 | return -EIO; | |
626 | } | |
627 | ||
628 | return 0; | |
c589b249 RS |
629 | } |
630 | ||
98392453 RS |
631 | #ifdef __linux__ |
632 | static void | |
633 | iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status, | |
634 | void *command_data, void *opaque) | |
635 | { | |
636 | IscsiAIOCB *acb = opaque; | |
637 | ||
0a53f010 RS |
638 | g_free(acb->buf); |
639 | acb->buf = NULL; | |
640 | ||
b2090919 | 641 | if (acb->canceled != 0) { |
98392453 RS |
642 | return; |
643 | } | |
644 | ||
645 | acb->status = 0; | |
646 | if (status < 0) { | |
647 | error_report("Failed to ioctl(SG_IO) to iSCSI lun. %s", | |
648 | iscsi_get_error(iscsi)); | |
649 | acb->status = -EIO; | |
650 | } | |
651 | ||
652 | acb->ioh->driver_status = 0; | |
653 | acb->ioh->host_status = 0; | |
654 | acb->ioh->resid = 0; | |
655 | ||
656 | #define SG_ERR_DRIVER_SENSE 0x08 | |
657 | ||
658 | if (status == SCSI_STATUS_CHECK_CONDITION && acb->task->datain.size >= 2) { | |
659 | int ss; | |
660 | ||
661 | acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE; | |
662 | ||
663 | acb->ioh->sb_len_wr = acb->task->datain.size - 2; | |
664 | ss = (acb->ioh->mx_sb_len >= acb->ioh->sb_len_wr) ? | |
665 | acb->ioh->mx_sb_len : acb->ioh->sb_len_wr; | |
666 | memcpy(acb->ioh->sbp, &acb->task->datain.data[2], ss); | |
667 | } | |
668 | ||
cfb3f506 | 669 | iscsi_schedule_bh(acb); |
98392453 RS |
670 | } |
671 | ||
672 | static BlockDriverAIOCB *iscsi_aio_ioctl(BlockDriverState *bs, | |
673 | unsigned long int req, void *buf, | |
674 | BlockDriverCompletionFunc *cb, void *opaque) | |
675 | { | |
676 | IscsiLun *iscsilun = bs->opaque; | |
677 | struct iscsi_context *iscsi = iscsilun->iscsi; | |
678 | struct iscsi_data data; | |
679 | IscsiAIOCB *acb; | |
680 | ||
681 | assert(req == SG_IO); | |
682 | ||
d7331bed | 683 | acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque); |
98392453 RS |
684 | |
685 | acb->iscsilun = iscsilun; | |
686 | acb->canceled = 0; | |
1bd075f2 PB |
687 | acb->bh = NULL; |
688 | acb->status = -EINPROGRESS; | |
98392453 RS |
689 | acb->buf = NULL; |
690 | acb->ioh = buf; | |
691 | ||
692 | acb->task = malloc(sizeof(struct scsi_task)); | |
693 | if (acb->task == NULL) { | |
694 | error_report("iSCSI: Failed to allocate task for scsi command. %s", | |
695 | iscsi_get_error(iscsi)); | |
696 | qemu_aio_release(acb); | |
697 | return NULL; | |
698 | } | |
699 | memset(acb->task, 0, sizeof(struct scsi_task)); | |
700 | ||
701 | switch (acb->ioh->dxfer_direction) { | |
702 | case SG_DXFER_TO_DEV: | |
703 | acb->task->xfer_dir = SCSI_XFER_WRITE; | |
704 | break; | |
705 | case SG_DXFER_FROM_DEV: | |
706 | acb->task->xfer_dir = SCSI_XFER_READ; | |
707 | break; | |
708 | default: | |
709 | acb->task->xfer_dir = SCSI_XFER_NONE; | |
710 | break; | |
711 | } | |
712 | ||
713 | acb->task->cdb_size = acb->ioh->cmd_len; | |
714 | memcpy(&acb->task->cdb[0], acb->ioh->cmdp, acb->ioh->cmd_len); | |
715 | acb->task->expxferlen = acb->ioh->dxfer_len; | |
716 | ||
0a53f010 | 717 | data.size = 0; |
98392453 | 718 | if (acb->task->xfer_dir == SCSI_XFER_WRITE) { |
0a53f010 RS |
719 | if (acb->ioh->iovec_count == 0) { |
720 | data.data = acb->ioh->dxferp; | |
721 | data.size = acb->ioh->dxfer_len; | |
722 | } else { | |
0a53f010 RS |
723 | scsi_task_set_iov_out(acb->task, |
724 | (struct scsi_iovec *) acb->ioh->dxferp, | |
725 | acb->ioh->iovec_count); | |
0a53f010 | 726 | } |
98392453 | 727 | } |
0a53f010 | 728 | |
98392453 RS |
729 | if (iscsi_scsi_command_async(iscsi, iscsilun->lun, acb->task, |
730 | iscsi_aio_ioctl_cb, | |
0a53f010 | 731 | (data.size > 0) ? &data : NULL, |
98392453 RS |
732 | acb) != 0) { |
733 | scsi_free_scsi_task(acb->task); | |
734 | qemu_aio_release(acb); | |
735 | return NULL; | |
736 | } | |
737 | ||
738 | /* tell libiscsi to read straight into the buffer we got from ioctl */ | |
739 | if (acb->task->xfer_dir == SCSI_XFER_READ) { | |
0a53f010 RS |
740 | if (acb->ioh->iovec_count == 0) { |
741 | scsi_task_add_data_in_buffer(acb->task, | |
742 | acb->ioh->dxfer_len, | |
743 | acb->ioh->dxferp); | |
744 | } else { | |
0a53f010 RS |
745 | scsi_task_set_iov_in(acb->task, |
746 | (struct scsi_iovec *) acb->ioh->dxferp, | |
747 | acb->ioh->iovec_count); | |
0a53f010 | 748 | } |
98392453 RS |
749 | } |
750 | ||
751 | iscsi_set_events(iscsilun); | |
752 | ||
753 | return &acb->common; | |
754 | } | |
755 | ||
f1a12821 RS |
756 | static void ioctl_cb(void *opaque, int status) |
757 | { | |
758 | int *p_status = opaque; | |
759 | *p_status = status; | |
760 | } | |
761 | ||
98392453 RS |
762 | static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) |
763 | { | |
764 | IscsiLun *iscsilun = bs->opaque; | |
f1a12821 | 765 | int status; |
98392453 RS |
766 | |
767 | switch (req) { | |
768 | case SG_GET_VERSION_NUM: | |
769 | *(int *)buf = 30000; | |
770 | break; | |
771 | case SG_GET_SCSI_ID: | |
772 | ((struct sg_scsi_id *)buf)->scsi_type = iscsilun->type; | |
773 | break; | |
f1a12821 RS |
774 | case SG_IO: |
775 | status = -EINPROGRESS; | |
776 | iscsi_aio_ioctl(bs, req, buf, ioctl_cb, &status); | |
777 | ||
778 | while (status == -EINPROGRESS) { | |
80cf6257 | 779 | aio_poll(iscsilun->aio_context, true); |
f1a12821 RS |
780 | } |
781 | ||
782 | return 0; | |
98392453 RS |
783 | default: |
784 | return -1; | |
785 | } | |
786 | return 0; | |
787 | } | |
788 | #endif | |
789 | ||
c589b249 RS |
790 | static int64_t |
791 | iscsi_getlength(BlockDriverState *bs) | |
792 | { | |
793 | IscsiLun *iscsilun = bs->opaque; | |
794 | int64_t len; | |
795 | ||
796 | len = iscsilun->num_blocks; | |
797 | len *= iscsilun->block_size; | |
798 | ||
799 | return len; | |
800 | } | |
801 | ||
65f3e339 PL |
802 | static int |
803 | coroutine_fn iscsi_co_discard(BlockDriverState *bs, int64_t sector_num, | |
804 | int nb_sectors) | |
805 | { | |
806 | IscsiLun *iscsilun = bs->opaque; | |
807 | struct IscsiTask iTask; | |
808 | struct unmap_list list; | |
65f3e339 PL |
809 | |
810 | if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) { | |
811 | return -EINVAL; | |
812 | } | |
813 | ||
814 | if (!iscsilun->lbp.lbpu) { | |
815 | /* UNMAP is not supported by the target */ | |
816 | return 0; | |
817 | } | |
818 | ||
819 | list.lba = sector_qemu2lun(sector_num, iscsilun); | |
01a6a238 | 820 | list.num = sector_qemu2lun(nb_sectors, iscsilun); |
65f3e339 | 821 | |
01a6a238 | 822 | iscsi_co_init_iscsitask(iscsilun, &iTask); |
65f3e339 | 823 | retry: |
01a6a238 PL |
824 | if (iscsi_unmap_task(iscsilun->iscsi, iscsilun->lun, 0, 0, &list, 1, |
825 | iscsi_co_generic_cb, &iTask) == NULL) { | |
92397116 | 826 | return -ENOMEM; |
01a6a238 | 827 | } |
65f3e339 | 828 | |
01a6a238 PL |
829 | while (!iTask.complete) { |
830 | iscsi_set_events(iscsilun); | |
831 | qemu_coroutine_yield(); | |
832 | } | |
65f3e339 | 833 | |
01a6a238 PL |
834 | if (iTask.task != NULL) { |
835 | scsi_free_scsi_task(iTask.task); | |
836 | iTask.task = NULL; | |
837 | } | |
65f3e339 | 838 | |
01a6a238 | 839 | if (iTask.do_retry) { |
837c3901 | 840 | iTask.complete = 0; |
01a6a238 PL |
841 | goto retry; |
842 | } | |
65f3e339 | 843 | |
01a6a238 PL |
844 | if (iTask.status == SCSI_STATUS_CHECK_CONDITION) { |
845 | /* the target might fail with a check condition if it | |
846 | is not happy with the alignment of the UNMAP request | |
847 | we silently fail in this case */ | |
848 | return 0; | |
849 | } | |
65f3e339 | 850 | |
01a6a238 PL |
851 | if (iTask.status != SCSI_STATUS_GOOD) { |
852 | return -EIO; | |
65f3e339 PL |
853 | } |
854 | ||
b03c3805 PL |
855 | iscsi_allocationmap_clear(iscsilun, sector_num, nb_sectors); |
856 | ||
65f3e339 PL |
857 | return 0; |
858 | } | |
859 | ||
d4cd9615 PL |
860 | static int |
861 | coroutine_fn iscsi_co_write_zeroes(BlockDriverState *bs, int64_t sector_num, | |
862 | int nb_sectors, BdrvRequestFlags flags) | |
863 | { | |
864 | IscsiLun *iscsilun = bs->opaque; | |
865 | struct IscsiTask iTask; | |
866 | uint64_t lba; | |
867 | uint32_t nb_blocks; | |
9281fe9e | 868 | bool use_16_for_ws = iscsilun->use_16_for_rw; |
d4cd9615 PL |
869 | |
870 | if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) { | |
871 | return -EINVAL; | |
872 | } | |
873 | ||
9281fe9e PL |
874 | if (flags & BDRV_REQ_MAY_UNMAP) { |
875 | if (!use_16_for_ws && !iscsilun->lbp.lbpws10) { | |
876 | /* WRITESAME10 with UNMAP is unsupported try WRITESAME16 */ | |
877 | use_16_for_ws = true; | |
878 | } | |
879 | if (use_16_for_ws && !iscsilun->lbp.lbpws) { | |
880 | /* WRITESAME16 with UNMAP is not supported by the target, | |
881 | * fall back and try WRITESAME10/16 without UNMAP */ | |
882 | flags &= ~BDRV_REQ_MAY_UNMAP; | |
883 | use_16_for_ws = iscsilun->use_16_for_rw; | |
884 | } | |
fa6252b0 PB |
885 | } |
886 | ||
dbe5c58f | 887 | if (!(flags & BDRV_REQ_MAY_UNMAP) && !iscsilun->has_write_same) { |
9281fe9e | 888 | /* WRITESAME without UNMAP is not supported by the target */ |
d4cd9615 PL |
889 | return -ENOTSUP; |
890 | } | |
891 | ||
892 | lba = sector_qemu2lun(sector_num, iscsilun); | |
893 | nb_blocks = sector_qemu2lun(nb_sectors, iscsilun); | |
894 | ||
895 | if (iscsilun->zeroblock == NULL) { | |
896 | iscsilun->zeroblock = g_malloc0(iscsilun->block_size); | |
897 | } | |
898 | ||
899 | iscsi_co_init_iscsitask(iscsilun, &iTask); | |
900 | retry: | |
9281fe9e PL |
901 | if (use_16_for_ws) { |
902 | iTask.task = iscsi_writesame16_task(iscsilun->iscsi, iscsilun->lun, lba, | |
903 | iscsilun->zeroblock, iscsilun->block_size, | |
904 | nb_blocks, 0, !!(flags & BDRV_REQ_MAY_UNMAP), | |
905 | 0, 0, iscsi_co_generic_cb, &iTask); | |
906 | } else { | |
907 | iTask.task = iscsi_writesame10_task(iscsilun->iscsi, iscsilun->lun, lba, | |
908 | iscsilun->zeroblock, iscsilun->block_size, | |
909 | nb_blocks, 0, !!(flags & BDRV_REQ_MAY_UNMAP), | |
910 | 0, 0, iscsi_co_generic_cb, &iTask); | |
911 | } | |
912 | if (iTask.task == NULL) { | |
92397116 | 913 | return -ENOMEM; |
d4cd9615 PL |
914 | } |
915 | ||
916 | while (!iTask.complete) { | |
917 | iscsi_set_events(iscsilun); | |
918 | qemu_coroutine_yield(); | |
919 | } | |
920 | ||
d9738fd2 PL |
921 | if (iTask.status == SCSI_STATUS_CHECK_CONDITION && |
922 | iTask.task->sense.key == SCSI_SENSE_ILLEGAL_REQUEST && | |
27898a5d PB |
923 | (iTask.task->sense.ascq == SCSI_SENSE_ASCQ_INVALID_OPERATION_CODE || |
924 | iTask.task->sense.ascq == SCSI_SENSE_ASCQ_INVALID_FIELD_IN_CDB)) { | |
d9738fd2 PL |
925 | /* WRITE SAME is not supported by the target */ |
926 | iscsilun->has_write_same = false; | |
927 | scsi_free_scsi_task(iTask.task); | |
928 | return -ENOTSUP; | |
929 | } | |
930 | ||
d4cd9615 PL |
931 | if (iTask.task != NULL) { |
932 | scsi_free_scsi_task(iTask.task); | |
933 | iTask.task = NULL; | |
934 | } | |
935 | ||
936 | if (iTask.do_retry) { | |
837c3901 | 937 | iTask.complete = 0; |
d4cd9615 PL |
938 | goto retry; |
939 | } | |
940 | ||
941 | if (iTask.status != SCSI_STATUS_GOOD) { | |
942 | return -EIO; | |
943 | } | |
944 | ||
b03c3805 PL |
945 | if (flags & BDRV_REQ_MAY_UNMAP) { |
946 | iscsi_allocationmap_clear(iscsilun, sector_num, nb_sectors); | |
947 | } else { | |
948 | iscsi_allocationmap_set(iscsilun, sector_num, nb_sectors); | |
949 | } | |
950 | ||
d4cd9615 PL |
951 | return 0; |
952 | } | |
953 | ||
f2917853 PB |
954 | static void parse_chap(struct iscsi_context *iscsi, const char *target, |
955 | Error **errp) | |
f9dadc98 RS |
956 | { |
957 | QemuOptsList *list; | |
958 | QemuOpts *opts; | |
959 | const char *user = NULL; | |
960 | const char *password = NULL; | |
961 | ||
962 | list = qemu_find_opts("iscsi"); | |
963 | if (!list) { | |
f2917853 | 964 | return; |
f9dadc98 RS |
965 | } |
966 | ||
967 | opts = qemu_opts_find(list, target); | |
968 | if (opts == NULL) { | |
969 | opts = QTAILQ_FIRST(&list->head); | |
970 | if (!opts) { | |
f2917853 | 971 | return; |
f9dadc98 RS |
972 | } |
973 | } | |
974 | ||
975 | user = qemu_opt_get(opts, "user"); | |
976 | if (!user) { | |
f2917853 | 977 | return; |
f9dadc98 RS |
978 | } |
979 | ||
980 | password = qemu_opt_get(opts, "password"); | |
981 | if (!password) { | |
f2917853 PB |
982 | error_setg(errp, "CHAP username specified but no password was given"); |
983 | return; | |
f9dadc98 RS |
984 | } |
985 | ||
986 | if (iscsi_set_initiator_username_pwd(iscsi, user, password)) { | |
f2917853 | 987 | error_setg(errp, "Failed to set initiator username and password"); |
f9dadc98 | 988 | } |
f9dadc98 RS |
989 | } |
990 | ||
f2917853 PB |
991 | static void parse_header_digest(struct iscsi_context *iscsi, const char *target, |
992 | Error **errp) | |
f9dadc98 RS |
993 | { |
994 | QemuOptsList *list; | |
995 | QemuOpts *opts; | |
996 | const char *digest = NULL; | |
997 | ||
998 | list = qemu_find_opts("iscsi"); | |
999 | if (!list) { | |
1000 | return; | |
1001 | } | |
1002 | ||
1003 | opts = qemu_opts_find(list, target); | |
1004 | if (opts == NULL) { | |
1005 | opts = QTAILQ_FIRST(&list->head); | |
1006 | if (!opts) { | |
1007 | return; | |
1008 | } | |
1009 | } | |
1010 | ||
1011 | digest = qemu_opt_get(opts, "header-digest"); | |
1012 | if (!digest) { | |
1013 | return; | |
1014 | } | |
1015 | ||
1016 | if (!strcmp(digest, "CRC32C")) { | |
1017 | iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C); | |
1018 | } else if (!strcmp(digest, "NONE")) { | |
1019 | iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE); | |
1020 | } else if (!strcmp(digest, "CRC32C-NONE")) { | |
1021 | iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C_NONE); | |
1022 | } else if (!strcmp(digest, "NONE-CRC32C")) { | |
1023 | iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C); | |
1024 | } else { | |
f2917853 | 1025 | error_setg(errp, "Invalid header-digest setting : %s", digest); |
f9dadc98 RS |
1026 | } |
1027 | } | |
1028 | ||
1029 | static char *parse_initiator_name(const char *target) | |
1030 | { | |
1031 | QemuOptsList *list; | |
1032 | QemuOpts *opts; | |
5accc840 PB |
1033 | const char *name; |
1034 | char *iscsi_name; | |
1035 | UuidInfo *uuid_info; | |
f9dadc98 RS |
1036 | |
1037 | list = qemu_find_opts("iscsi"); | |
f2ef4a6d PB |
1038 | if (list) { |
1039 | opts = qemu_opts_find(list, target); | |
f9dadc98 | 1040 | if (!opts) { |
f2ef4a6d PB |
1041 | opts = QTAILQ_FIRST(&list->head); |
1042 | } | |
1043 | if (opts) { | |
1044 | name = qemu_opt_get(opts, "initiator-name"); | |
5accc840 PB |
1045 | if (name) { |
1046 | return g_strdup(name); | |
1047 | } | |
f9dadc98 RS |
1048 | } |
1049 | } | |
1050 | ||
5accc840 PB |
1051 | uuid_info = qmp_query_uuid(NULL); |
1052 | if (strcmp(uuid_info->UUID, UUID_NONE) == 0) { | |
1053 | name = qemu_get_vm_name(); | |
f2ef4a6d | 1054 | } else { |
5accc840 | 1055 | name = uuid_info->UUID; |
f9dadc98 | 1056 | } |
5accc840 PB |
1057 | iscsi_name = g_strdup_printf("iqn.2008-11.org.linux-kvm%s%s", |
1058 | name ? ":" : "", name ? name : ""); | |
1059 | qapi_free_UuidInfo(uuid_info); | |
1060 | return iscsi_name; | |
f9dadc98 RS |
1061 | } |
1062 | ||
5b5d34ec PL |
1063 | static void iscsi_nop_timed_event(void *opaque) |
1064 | { | |
1065 | IscsiLun *iscsilun = opaque; | |
1066 | ||
1067 | if (iscsi_get_nops_in_flight(iscsilun->iscsi) > MAX_NOP_FAILURES) { | |
1068 | error_report("iSCSI: NOP timeout. Reconnecting..."); | |
1069 | iscsi_reconnect(iscsilun->iscsi); | |
1070 | } | |
1071 | ||
1072 | if (iscsi_nop_out_async(iscsilun->iscsi, NULL, NULL, 0, NULL) != 0) { | |
1073 | error_report("iSCSI: failed to sent NOP-Out. Disabling NOP messages."); | |
1074 | return; | |
1075 | } | |
1076 | ||
bc72ad67 | 1077 | timer_mod(iscsilun->nop_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + NOP_INTERVAL); |
5b5d34ec PL |
1078 | iscsi_set_events(iscsilun); |
1079 | } | |
5b5d34ec | 1080 | |
f2917853 | 1081 | static void iscsi_readcapacity_sync(IscsiLun *iscsilun, Error **errp) |
cb1b83e7 PL |
1082 | { |
1083 | struct scsi_task *task = NULL; | |
1084 | struct scsi_readcapacity10 *rc10 = NULL; | |
1085 | struct scsi_readcapacity16 *rc16 = NULL; | |
cb1b83e7 PL |
1086 | int retries = ISCSI_CMD_RETRIES; |
1087 | ||
1288844e PB |
1088 | do { |
1089 | if (task != NULL) { | |
1090 | scsi_free_scsi_task(task); | |
1091 | task = NULL; | |
cb1b83e7 | 1092 | } |
1288844e PB |
1093 | |
1094 | switch (iscsilun->type) { | |
1095 | case TYPE_DISK: | |
1096 | task = iscsi_readcapacity16_sync(iscsilun->iscsi, iscsilun->lun); | |
1097 | if (task != NULL && task->status == SCSI_STATUS_GOOD) { | |
1098 | rc16 = scsi_datain_unmarshall(task); | |
1099 | if (rc16 == NULL) { | |
f2917853 | 1100 | error_setg(errp, "iSCSI: Failed to unmarshall readcapacity16 data."); |
1288844e PB |
1101 | } else { |
1102 | iscsilun->block_size = rc16->block_length; | |
1103 | iscsilun->num_blocks = rc16->returned_lba + 1; | |
f18a7cbb PL |
1104 | iscsilun->lbpme = rc16->lbpme; |
1105 | iscsilun->lbprz = rc16->lbprz; | |
9281fe9e | 1106 | iscsilun->use_16_for_rw = (rc16->returned_lba > 0xffffffff); |
1288844e PB |
1107 | } |
1108 | } | |
1109 | break; | |
1110 | case TYPE_ROM: | |
1111 | task = iscsi_readcapacity10_sync(iscsilun->iscsi, iscsilun->lun, 0, 0); | |
1112 | if (task != NULL && task->status == SCSI_STATUS_GOOD) { | |
1113 | rc10 = scsi_datain_unmarshall(task); | |
1114 | if (rc10 == NULL) { | |
f2917853 | 1115 | error_setg(errp, "iSCSI: Failed to unmarshall readcapacity10 data."); |
1288844e PB |
1116 | } else { |
1117 | iscsilun->block_size = rc10->block_size; | |
1118 | if (rc10->lba == 0) { | |
1119 | /* blank disk loaded */ | |
1120 | iscsilun->num_blocks = 0; | |
1121 | } else { | |
1122 | iscsilun->num_blocks = rc10->lba + 1; | |
1123 | } | |
1124 | } | |
1125 | } | |
1126 | break; | |
1127 | default: | |
f2917853 | 1128 | return; |
cb1b83e7 | 1129 | } |
1288844e PB |
1130 | } while (task != NULL && task->status == SCSI_STATUS_CHECK_CONDITION |
1131 | && task->sense.key == SCSI_SENSE_UNIT_ATTENTION | |
1132 | && retries-- > 0); | |
cb1b83e7 | 1133 | |
1288844e | 1134 | if (task == NULL || task->status != SCSI_STATUS_GOOD) { |
f2917853 | 1135 | error_setg(errp, "iSCSI: failed to send readcapacity10 command."); |
1288844e | 1136 | } |
cb1b83e7 PL |
1137 | if (task) { |
1138 | scsi_free_scsi_task(task); | |
1139 | } | |
cb1b83e7 PL |
1140 | } |
1141 | ||
60beb341 KW |
1142 | /* TODO Convert to fine grained options */ |
1143 | static QemuOptsList runtime_opts = { | |
1144 | .name = "iscsi", | |
1145 | .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head), | |
1146 | .desc = { | |
1147 | { | |
1148 | .name = "filename", | |
1149 | .type = QEMU_OPT_STRING, | |
1150 | .help = "URL to the iscsi image", | |
1151 | }, | |
1152 | { /* end of list */ } | |
1153 | }, | |
1154 | }; | |
1155 | ||
35cb1748 | 1156 | static struct scsi_task *iscsi_do_inquiry(struct iscsi_context *iscsi, int lun, |
24d3bd67 | 1157 | int evpd, int pc, void **inq, Error **errp) |
35cb1748 PB |
1158 | { |
1159 | int full_size; | |
1160 | struct scsi_task *task = NULL; | |
1161 | task = iscsi_inquiry_sync(iscsi, lun, evpd, pc, 64); | |
1162 | if (task == NULL || task->status != SCSI_STATUS_GOOD) { | |
1163 | goto fail; | |
1164 | } | |
1165 | full_size = scsi_datain_getfullsize(task); | |
1166 | if (full_size > task->datain.size) { | |
1167 | scsi_free_scsi_task(task); | |
1168 | ||
1169 | /* we need more data for the full list */ | |
1170 | task = iscsi_inquiry_sync(iscsi, lun, evpd, pc, full_size); | |
f18a7cbb PL |
1171 | if (task == NULL || task->status != SCSI_STATUS_GOOD) { |
1172 | goto fail; | |
1173 | } | |
35cb1748 | 1174 | } |
f18a7cbb | 1175 | |
24d3bd67 PL |
1176 | *inq = scsi_datain_unmarshall(task); |
1177 | if (*inq == NULL) { | |
1178 | error_setg(errp, "iSCSI: failed to unmarshall inquiry datain blob"); | |
172fc4dd | 1179 | goto fail_with_err; |
24d3bd67 PL |
1180 | } |
1181 | ||
35cb1748 | 1182 | return task; |
f18a7cbb PL |
1183 | |
1184 | fail: | |
172fc4dd MA |
1185 | error_setg(errp, "iSCSI: Inquiry command failed : %s", |
1186 | iscsi_get_error(iscsi)); | |
1187 | fail_with_err: | |
24d3bd67 | 1188 | if (task != NULL) { |
35cb1748 | 1189 | scsi_free_scsi_task(task); |
35cb1748 PB |
1190 | } |
1191 | return NULL; | |
f18a7cbb PL |
1192 | } |
1193 | ||
80cf6257 SH |
1194 | static void iscsi_detach_aio_context(BlockDriverState *bs) |
1195 | { | |
1196 | IscsiLun *iscsilun = bs->opaque; | |
1197 | ||
1198 | aio_set_fd_handler(iscsilun->aio_context, | |
1199 | iscsi_get_fd(iscsilun->iscsi), | |
1200 | NULL, NULL, NULL); | |
1201 | iscsilun->events = 0; | |
1202 | ||
1203 | if (iscsilun->nop_timer) { | |
1204 | timer_del(iscsilun->nop_timer); | |
1205 | timer_free(iscsilun->nop_timer); | |
1206 | iscsilun->nop_timer = NULL; | |
1207 | } | |
1208 | } | |
1209 | ||
1210 | static void iscsi_attach_aio_context(BlockDriverState *bs, | |
1211 | AioContext *new_context) | |
1212 | { | |
1213 | IscsiLun *iscsilun = bs->opaque; | |
1214 | ||
1215 | iscsilun->aio_context = new_context; | |
1216 | iscsi_set_events(iscsilun); | |
1217 | ||
80cf6257 SH |
1218 | /* Set up a timer for sending out iSCSI NOPs */ |
1219 | iscsilun->nop_timer = aio_timer_new(iscsilun->aio_context, | |
1220 | QEMU_CLOCK_REALTIME, SCALE_MS, | |
1221 | iscsi_nop_timed_event, iscsilun); | |
1222 | timer_mod(iscsilun->nop_timer, | |
1223 | qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + NOP_INTERVAL); | |
80cf6257 SH |
1224 | } |
1225 | ||
c589b249 RS |
1226 | /* |
1227 | * We support iscsi url's on the form | |
1228 | * iscsi://[<username>%<password>@]<host>[:<port>]/<targetname>/<lun> | |
28f106af JC |
1229 | * |
1230 | * Note: flags are currently not used by iscsi_open. If this function | |
1231 | * is changed such that flags are used, please examine iscsi_reopen_prepare() | |
1232 | * to see if needs to be changed as well. | |
c589b249 | 1233 | */ |
015a1036 HR |
1234 | static int iscsi_open(BlockDriverState *bs, QDict *options, int flags, |
1235 | Error **errp) | |
c589b249 RS |
1236 | { |
1237 | IscsiLun *iscsilun = bs->opaque; | |
1238 | struct iscsi_context *iscsi = NULL; | |
1239 | struct iscsi_url *iscsi_url = NULL; | |
e829b0bb PL |
1240 | struct scsi_task *task = NULL; |
1241 | struct scsi_inquiry_standard *inq = NULL; | |
24d3bd67 | 1242 | struct scsi_inquiry_supported_pages *inq_vpd; |
f9dadc98 | 1243 | char *initiator_name = NULL; |
60beb341 KW |
1244 | QemuOpts *opts; |
1245 | Error *local_err = NULL; | |
1246 | const char *filename; | |
24d3bd67 | 1247 | int i, ret; |
c589b249 RS |
1248 | |
1249 | if ((BDRV_SECTOR_SIZE % 512) != 0) { | |
f2917853 PB |
1250 | error_setg(errp, "iSCSI: Invalid BDRV_SECTOR_SIZE. " |
1251 | "BDRV_SECTOR_SIZE(%lld) is not a multiple " | |
1252 | "of 512", BDRV_SECTOR_SIZE); | |
c589b249 RS |
1253 | return -EINVAL; |
1254 | } | |
1255 | ||
87ea75d5 | 1256 | opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort); |
60beb341 | 1257 | qemu_opts_absorb_qdict(opts, options, &local_err); |
84d18f06 | 1258 | if (local_err) { |
f2917853 | 1259 | error_propagate(errp, local_err); |
60beb341 KW |
1260 | ret = -EINVAL; |
1261 | goto out; | |
1262 | } | |
1263 | ||
1264 | filename = qemu_opt_get(opts, "filename"); | |
1265 | ||
c589b249 RS |
1266 | iscsi_url = iscsi_parse_full_url(iscsi, filename); |
1267 | if (iscsi_url == NULL) { | |
f2917853 | 1268 | error_setg(errp, "Failed to parse URL : %s", filename); |
c589b249 | 1269 | ret = -EINVAL; |
b93c94f7 | 1270 | goto out; |
c589b249 RS |
1271 | } |
1272 | ||
f9dadc98 RS |
1273 | memset(iscsilun, 0, sizeof(IscsiLun)); |
1274 | ||
1275 | initiator_name = parse_initiator_name(iscsi_url->target); | |
1276 | ||
1277 | iscsi = iscsi_create_context(initiator_name); | |
1278 | if (iscsi == NULL) { | |
f2917853 | 1279 | error_setg(errp, "iSCSI: Failed to create iSCSI context."); |
f9dadc98 | 1280 | ret = -ENOMEM; |
b93c94f7 | 1281 | goto out; |
f9dadc98 RS |
1282 | } |
1283 | ||
c589b249 | 1284 | if (iscsi_set_targetname(iscsi, iscsi_url->target)) { |
f2917853 | 1285 | error_setg(errp, "iSCSI: Failed to set target name."); |
c589b249 | 1286 | ret = -EINVAL; |
b93c94f7 | 1287 | goto out; |
c589b249 RS |
1288 | } |
1289 | ||
1290 | if (iscsi_url->user != NULL) { | |
1291 | ret = iscsi_set_initiator_username_pwd(iscsi, iscsi_url->user, | |
1292 | iscsi_url->passwd); | |
1293 | if (ret != 0) { | |
f2917853 | 1294 | error_setg(errp, "Failed to set initiator username and password"); |
c589b249 | 1295 | ret = -EINVAL; |
b93c94f7 | 1296 | goto out; |
c589b249 RS |
1297 | } |
1298 | } | |
f9dadc98 RS |
1299 | |
1300 | /* check if we got CHAP username/password via the options */ | |
f2917853 PB |
1301 | parse_chap(iscsi, iscsi_url->target, &local_err); |
1302 | if (local_err != NULL) { | |
1303 | error_propagate(errp, local_err); | |
f9dadc98 | 1304 | ret = -EINVAL; |
b93c94f7 | 1305 | goto out; |
f9dadc98 RS |
1306 | } |
1307 | ||
c589b249 | 1308 | if (iscsi_set_session_type(iscsi, ISCSI_SESSION_NORMAL) != 0) { |
f2917853 | 1309 | error_setg(errp, "iSCSI: Failed to set session type to normal."); |
c589b249 | 1310 | ret = -EINVAL; |
b93c94f7 | 1311 | goto out; |
c589b249 RS |
1312 | } |
1313 | ||
1314 | iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C); | |
1315 | ||
f9dadc98 | 1316 | /* check if we got HEADER_DIGEST via the options */ |
f2917853 PB |
1317 | parse_header_digest(iscsi, iscsi_url->target, &local_err); |
1318 | if (local_err != NULL) { | |
1319 | error_propagate(errp, local_err); | |
1320 | ret = -EINVAL; | |
1321 | goto out; | |
1322 | } | |
f9dadc98 | 1323 | |
e829b0bb | 1324 | if (iscsi_full_connect_sync(iscsi, iscsi_url->portal, iscsi_url->lun) != 0) { |
f2917853 | 1325 | error_setg(errp, "iSCSI: Failed to connect to LUN : %s", |
e829b0bb PL |
1326 | iscsi_get_error(iscsi)); |
1327 | ret = -EINVAL; | |
1328 | goto out; | |
1329 | } | |
c589b249 RS |
1330 | |
1331 | iscsilun->iscsi = iscsi; | |
80cf6257 | 1332 | iscsilun->aio_context = bdrv_get_aio_context(bs); |
c589b249 | 1333 | iscsilun->lun = iscsi_url->lun; |
24d3bd67 | 1334 | iscsilun->has_write_same = true; |
c589b249 | 1335 | |
24d3bd67 PL |
1336 | task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 0, 0, |
1337 | (void **) &inq, errp); | |
1338 | if (task == NULL) { | |
c589b249 | 1339 | ret = -EINVAL; |
b93c94f7 | 1340 | goto out; |
c589b249 | 1341 | } |
e829b0bb | 1342 | iscsilun->type = inq->periperal_device_type; |
24d3bd67 PL |
1343 | scsi_free_scsi_task(task); |
1344 | task = NULL; | |
e829b0bb | 1345 | |
f2917853 PB |
1346 | iscsi_readcapacity_sync(iscsilun, &local_err); |
1347 | if (local_err != NULL) { | |
1348 | error_propagate(errp, local_err); | |
cd82b6fb | 1349 | ret = -EINVAL; |
cb1b83e7 | 1350 | goto out; |
e829b0bb | 1351 | } |
0777b5dd | 1352 | bs->total_sectors = sector_lun2qemu(iscsilun->num_blocks, iscsilun); |
2c9880c4 | 1353 | bs->request_alignment = iscsilun->block_size; |
e829b0bb | 1354 | |
f47c3f5a KW |
1355 | /* We don't have any emulation for devices other than disks and CD-ROMs, so |
1356 | * this must be sg ioctl compatible. We force it to be sg, otherwise qemu | |
1357 | * will try to read from the device to guess the image format. | |
622695a4 | 1358 | */ |
f47c3f5a | 1359 | if (iscsilun->type != TYPE_DISK && iscsilun->type != TYPE_ROM) { |
622695a4 RS |
1360 | bs->sg = 1; |
1361 | } | |
1362 | ||
24d3bd67 PL |
1363 | task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1, |
1364 | SCSI_INQUIRY_PAGECODE_SUPPORTED_VPD_PAGES, | |
1365 | (void **) &inq_vpd, errp); | |
1366 | if (task == NULL) { | |
1367 | ret = -EINVAL; | |
1368 | goto out; | |
f18a7cbb | 1369 | } |
24d3bd67 PL |
1370 | for (i = 0; i < inq_vpd->num_pages; i++) { |
1371 | struct scsi_task *inq_task; | |
1372 | struct scsi_inquiry_logical_block_provisioning *inq_lbp; | |
f18a7cbb | 1373 | struct scsi_inquiry_block_limits *inq_bl; |
24d3bd67 PL |
1374 | switch (inq_vpd->pages[i]) { |
1375 | case SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING: | |
1376 | inq_task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1, | |
1377 | SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING, | |
1378 | (void **) &inq_lbp, errp); | |
1379 | if (inq_task == NULL) { | |
1380 | ret = -EINVAL; | |
1381 | goto out; | |
1382 | } | |
1383 | memcpy(&iscsilun->lbp, inq_lbp, | |
1384 | sizeof(struct scsi_inquiry_logical_block_provisioning)); | |
1385 | scsi_free_scsi_task(inq_task); | |
1386 | break; | |
1387 | case SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS: | |
1388 | inq_task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1, | |
1389 | SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS, | |
1390 | (void **) &inq_bl, errp); | |
1391 | if (inq_task == NULL) { | |
1392 | ret = -EINVAL; | |
1393 | goto out; | |
1394 | } | |
1395 | memcpy(&iscsilun->bl, inq_bl, | |
1396 | sizeof(struct scsi_inquiry_block_limits)); | |
1397 | scsi_free_scsi_task(inq_task); | |
1398 | break; | |
1399 | default: | |
1400 | break; | |
f18a7cbb | 1401 | } |
f18a7cbb | 1402 | } |
24d3bd67 PL |
1403 | scsi_free_scsi_task(task); |
1404 | task = NULL; | |
f18a7cbb | 1405 | |
80cf6257 | 1406 | iscsi_attach_aio_context(bs, iscsilun->aio_context); |
5b5d34ec | 1407 | |
b03c3805 PL |
1408 | /* Guess the internal cluster (page) size of the iscsi target by the means |
1409 | * of opt_unmap_gran. Transfer the unmap granularity only if it has a | |
1410 | * reasonable size */ | |
3d2acaa3 | 1411 | if (iscsilun->bl.opt_unmap_gran * iscsilun->block_size >= 4 * 1024 && |
b03c3805 PL |
1412 | iscsilun->bl.opt_unmap_gran * iscsilun->block_size <= 16 * 1024 * 1024) { |
1413 | iscsilun->cluster_sectors = (iscsilun->bl.opt_unmap_gran * | |
1414 | iscsilun->block_size) >> BDRV_SECTOR_BITS; | |
b03c3805 PL |
1415 | if (iscsilun->lbprz && !(bs->open_flags & BDRV_O_NOCACHE)) { |
1416 | iscsilun->allocationmap = | |
1417 | bitmap_new(DIV_ROUND_UP(bs->total_sectors, | |
1418 | iscsilun->cluster_sectors)); | |
1419 | } | |
b03c3805 PL |
1420 | } |
1421 | ||
b93c94f7 | 1422 | out: |
60beb341 | 1423 | qemu_opts_del(opts); |
f7047c2d | 1424 | g_free(initiator_name); |
c589b249 RS |
1425 | if (iscsi_url != NULL) { |
1426 | iscsi_destroy_url(iscsi_url); | |
1427 | } | |
e829b0bb PL |
1428 | if (task != NULL) { |
1429 | scsi_free_scsi_task(task); | |
1430 | } | |
b93c94f7 PB |
1431 | |
1432 | if (ret) { | |
1433 | if (iscsi != NULL) { | |
1434 | iscsi_destroy_context(iscsi); | |
1435 | } | |
1436 | memset(iscsilun, 0, sizeof(IscsiLun)); | |
c589b249 | 1437 | } |
c589b249 RS |
1438 | return ret; |
1439 | } | |
1440 | ||
1441 | static void iscsi_close(BlockDriverState *bs) | |
1442 | { | |
1443 | IscsiLun *iscsilun = bs->opaque; | |
1444 | struct iscsi_context *iscsi = iscsilun->iscsi; | |
1445 | ||
80cf6257 | 1446 | iscsi_detach_aio_context(bs); |
c589b249 | 1447 | iscsi_destroy_context(iscsi); |
d4cd9615 | 1448 | g_free(iscsilun->zeroblock); |
b03c3805 | 1449 | g_free(iscsilun->allocationmap); |
c589b249 RS |
1450 | memset(iscsilun, 0, sizeof(IscsiLun)); |
1451 | } | |
1452 | ||
d34682cd KW |
1453 | static int iscsi_refresh_limits(BlockDriverState *bs) |
1454 | { | |
1455 | IscsiLun *iscsilun = bs->opaque; | |
1456 | ||
1457 | /* We don't actually refresh here, but just return data queried in | |
1458 | * iscsi_open(): iscsi targets don't change their limits. */ | |
c97ca29d | 1459 | if (iscsilun->lbp.lbpu) { |
d34682cd KW |
1460 | if (iscsilun->bl.max_unmap < 0xffffffff) { |
1461 | bs->bl.max_discard = sector_lun2qemu(iscsilun->bl.max_unmap, | |
1462 | iscsilun); | |
1463 | } | |
1464 | bs->bl.discard_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran, | |
1465 | iscsilun); | |
c97ca29d | 1466 | } |
d34682cd | 1467 | |
c97ca29d PB |
1468 | if (iscsilun->bl.max_ws_len < 0xffffffff) { |
1469 | bs->bl.max_write_zeroes = sector_lun2qemu(iscsilun->bl.max_ws_len, | |
1470 | iscsilun); | |
1471 | } | |
1472 | if (iscsilun->lbp.lbpws) { | |
d34682cd KW |
1473 | bs->bl.write_zeroes_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran, |
1474 | iscsilun); | |
d34682cd | 1475 | } |
5d259fc7 PL |
1476 | bs->bl.opt_transfer_length = sector_lun2qemu(iscsilun->bl.opt_xfer_len, |
1477 | iscsilun); | |
e9f526ab AL |
1478 | return 0; |
1479 | } | |
d34682cd | 1480 | |
28f106af JC |
1481 | /* Since iscsi_open() ignores bdrv_flags, there is nothing to do here in |
1482 | * prepare. Note that this will not re-establish a connection with an iSCSI | |
1483 | * target - it is effectively a NOP. */ | |
dc6afb99 JC |
1484 | static int iscsi_reopen_prepare(BDRVReopenState *state, |
1485 | BlockReopenQueue *queue, Error **errp) | |
1486 | { | |
28f106af | 1487 | /* NOP */ |
d34682cd KW |
1488 | return 0; |
1489 | } | |
1490 | ||
cb1b83e7 PL |
1491 | static int iscsi_truncate(BlockDriverState *bs, int64_t offset) |
1492 | { | |
1493 | IscsiLun *iscsilun = bs->opaque; | |
f2917853 | 1494 | Error *local_err = NULL; |
cb1b83e7 PL |
1495 | |
1496 | if (iscsilun->type != TYPE_DISK) { | |
1497 | return -ENOTSUP; | |
1498 | } | |
1499 | ||
f2917853 PB |
1500 | iscsi_readcapacity_sync(iscsilun, &local_err); |
1501 | if (local_err != NULL) { | |
1502 | error_free(local_err); | |
1503 | return -EIO; | |
cb1b83e7 PL |
1504 | } |
1505 | ||
1506 | if (offset > iscsi_getlength(bs)) { | |
1507 | return -EINVAL; | |
1508 | } | |
1509 | ||
b03c3805 PL |
1510 | if (iscsilun->allocationmap != NULL) { |
1511 | g_free(iscsilun->allocationmap); | |
1512 | iscsilun->allocationmap = | |
1513 | bitmap_new(DIV_ROUND_UP(bs->total_sectors, | |
1514 | iscsilun->cluster_sectors)); | |
1515 | } | |
1516 | ||
cb1b83e7 PL |
1517 | return 0; |
1518 | } | |
1519 | ||
a59479e3 | 1520 | static int iscsi_create(const char *filename, QemuOpts *opts, Error **errp) |
de8864e5 PL |
1521 | { |
1522 | int ret = 0; | |
1523 | int64_t total_size = 0; | |
13c91cb7 | 1524 | BlockDriverState *bs; |
de8864e5 | 1525 | IscsiLun *iscsilun = NULL; |
60beb341 | 1526 | QDict *bs_options; |
de8864e5 | 1527 | |
98522f63 | 1528 | bs = bdrv_new("", &error_abort); |
de8864e5 PL |
1529 | |
1530 | /* Read out options */ | |
a59479e3 CL |
1531 | total_size = |
1532 | qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0) / BDRV_SECTOR_SIZE; | |
13c91cb7 FZ |
1533 | bs->opaque = g_malloc0(sizeof(struct IscsiLun)); |
1534 | iscsilun = bs->opaque; | |
de8864e5 | 1535 | |
60beb341 KW |
1536 | bs_options = qdict_new(); |
1537 | qdict_put(bs_options, "filename", qstring_from_str(filename)); | |
015a1036 | 1538 | ret = iscsi_open(bs, bs_options, 0, NULL); |
60beb341 KW |
1539 | QDECREF(bs_options); |
1540 | ||
de8864e5 PL |
1541 | if (ret != 0) { |
1542 | goto out; | |
1543 | } | |
80cf6257 | 1544 | iscsi_detach_aio_context(bs); |
de8864e5 PL |
1545 | if (iscsilun->type != TYPE_DISK) { |
1546 | ret = -ENODEV; | |
1547 | goto out; | |
1548 | } | |
13c91cb7 | 1549 | if (bs->total_sectors < total_size) { |
de8864e5 | 1550 | ret = -ENOSPC; |
d3bda7bc | 1551 | goto out; |
de8864e5 PL |
1552 | } |
1553 | ||
1554 | ret = 0; | |
1555 | out: | |
1556 | if (iscsilun->iscsi != NULL) { | |
1557 | iscsi_destroy_context(iscsilun->iscsi); | |
1558 | } | |
13c91cb7 FZ |
1559 | g_free(bs->opaque); |
1560 | bs->opaque = NULL; | |
4f6fd349 | 1561 | bdrv_unref(bs); |
de8864e5 PL |
1562 | return ret; |
1563 | } | |
1564 | ||
186d4f2b PL |
1565 | static int iscsi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
1566 | { | |
1567 | IscsiLun *iscsilun = bs->opaque; | |
1568 | bdi->unallocated_blocks_are_zero = !!iscsilun->lbprz; | |
1569 | bdi->can_write_zeroes_with_unmap = iscsilun->lbprz && iscsilun->lbp.lbpws; | |
b03c3805 | 1570 | bdi->cluster_size = iscsilun->cluster_sectors * BDRV_SECTOR_SIZE; |
186d4f2b PL |
1571 | return 0; |
1572 | } | |
1573 | ||
a59479e3 CL |
1574 | static QemuOptsList iscsi_create_opts = { |
1575 | .name = "iscsi-create-opts", | |
1576 | .head = QTAILQ_HEAD_INITIALIZER(iscsi_create_opts.head), | |
1577 | .desc = { | |
1578 | { | |
1579 | .name = BLOCK_OPT_SIZE, | |
1580 | .type = QEMU_OPT_SIZE, | |
1581 | .help = "Virtual disk size" | |
1582 | }, | |
1583 | { /* end of list */ } | |
1584 | } | |
de8864e5 PL |
1585 | }; |
1586 | ||
c589b249 RS |
1587 | static BlockDriver bdrv_iscsi = { |
1588 | .format_name = "iscsi", | |
1589 | .protocol_name = "iscsi", | |
1590 | ||
1591 | .instance_size = sizeof(IscsiLun), | |
030be321 | 1592 | .bdrv_needs_filename = true, |
c589b249 RS |
1593 | .bdrv_file_open = iscsi_open, |
1594 | .bdrv_close = iscsi_close, | |
c282e1fd | 1595 | .bdrv_create = iscsi_create, |
a59479e3 | 1596 | .create_opts = &iscsi_create_opts, |
dc6afb99 | 1597 | .bdrv_reopen_prepare = iscsi_reopen_prepare, |
c589b249 RS |
1598 | |
1599 | .bdrv_getlength = iscsi_getlength, | |
186d4f2b | 1600 | .bdrv_get_info = iscsi_get_info, |
cb1b83e7 | 1601 | .bdrv_truncate = iscsi_truncate, |
d34682cd | 1602 | .bdrv_refresh_limits = iscsi_refresh_limits, |
c589b249 | 1603 | |
54a5c1d5 | 1604 | .bdrv_co_get_block_status = iscsi_co_get_block_status, |
65f3e339 | 1605 | .bdrv_co_discard = iscsi_co_discard, |
d4cd9615 | 1606 | .bdrv_co_write_zeroes = iscsi_co_write_zeroes, |
063c3378 PL |
1607 | .bdrv_co_readv = iscsi_co_readv, |
1608 | .bdrv_co_writev = iscsi_co_writev, | |
1609 | .bdrv_co_flush_to_disk = iscsi_co_flush, | |
fa6acb0c | 1610 | |
98392453 RS |
1611 | #ifdef __linux__ |
1612 | .bdrv_ioctl = iscsi_ioctl, | |
1613 | .bdrv_aio_ioctl = iscsi_aio_ioctl, | |
1614 | #endif | |
80cf6257 SH |
1615 | |
1616 | .bdrv_detach_aio_context = iscsi_detach_aio_context, | |
1617 | .bdrv_attach_aio_context = iscsi_attach_aio_context, | |
c589b249 RS |
1618 | }; |
1619 | ||
4d454574 PB |
1620 | static QemuOptsList qemu_iscsi_opts = { |
1621 | .name = "iscsi", | |
1622 | .head = QTAILQ_HEAD_INITIALIZER(qemu_iscsi_opts.head), | |
1623 | .desc = { | |
1624 | { | |
1625 | .name = "user", | |
1626 | .type = QEMU_OPT_STRING, | |
1627 | .help = "username for CHAP authentication to target", | |
1628 | },{ | |
1629 | .name = "password", | |
1630 | .type = QEMU_OPT_STRING, | |
1631 | .help = "password for CHAP authentication to target", | |
1632 | },{ | |
1633 | .name = "header-digest", | |
1634 | .type = QEMU_OPT_STRING, | |
1635 | .help = "HeaderDigest setting. " | |
1636 | "{CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}", | |
1637 | },{ | |
1638 | .name = "initiator-name", | |
1639 | .type = QEMU_OPT_STRING, | |
1640 | .help = "Initiator iqn name to use when connecting", | |
1641 | }, | |
1642 | { /* end of list */ } | |
1643 | }, | |
1644 | }; | |
1645 | ||
c589b249 RS |
1646 | static void iscsi_block_init(void) |
1647 | { | |
1648 | bdrv_register(&bdrv_iscsi); | |
4d454574 | 1649 | qemu_add_opts(&qemu_iscsi_opts); |
c589b249 RS |
1650 | } |
1651 | ||
1652 | block_init(iscsi_block_init); |