]> git.proxmox.com Git - qemu.git/blame - block/iscsi.c
vvfat: Use bdrv_open options instead of filename
[qemu.git] / block / iscsi.c
CommitLineData
c589b249
RS
1/*
2 * QEMU Block driver for iSCSI images
3 *
4 * Copyright (c) 2010-2011 Ronnie Sahlberg <ronniesahlberg@gmail.com>
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 */
24
25#include "config-host.h"
26
27#include <poll.h>
f4dfa67f 28#include <arpa/inet.h>
c589b249 29#include "qemu-common.h"
1de7afc9
PB
30#include "qemu/config-file.h"
31#include "qemu/error-report.h"
737e150e 32#include "block/block_int.h"
c589b249 33#include "trace.h"
0d09e41a 34#include "block/scsi.h"
c589b249
RS
35
36#include <iscsi/iscsi.h>
37#include <iscsi/scsi-lowlevel.h>
38
98392453
RS
39#ifdef __linux__
40#include <scsi/sg.h>
0d09e41a 41#include <block/scsi.h>
98392453 42#endif
c589b249
RS
43
44typedef struct IscsiLun {
45 struct iscsi_context *iscsi;
46 int lun;
dbfff6d7 47 enum scsi_inquiry_peripheral_device_type type;
c589b249 48 int block_size;
c7b4a952 49 uint64_t num_blocks;
c9b9f682 50 int events;
5b5d34ec 51 QEMUTimer *nop_timer;
c589b249
RS
52} IscsiLun;
53
54typedef struct IscsiAIOCB {
55 BlockDriverAIOCB common;
56 QEMUIOVector *qiov;
57 QEMUBH *bh;
58 IscsiLun *iscsilun;
59 struct scsi_task *task;
60 uint8_t *buf;
61 int status;
62 int canceled;
1dde716e 63 int retries;
c589b249
RS
64 size_t read_size;
65 size_t read_offset;
1dde716e
PL
66 int64_t sector_num;
67 int nb_sectors;
98392453
RS
68#ifdef __linux__
69 sg_io_hdr_t *ioh;
70#endif
c589b249
RS
71} IscsiAIOCB;
72
5b5d34ec
PL
73#define NOP_INTERVAL 5000
74#define MAX_NOP_FAILURES 3
1dde716e 75#define ISCSI_CMD_RETRIES 5
5b5d34ec 76
27cbd828 77static void
cfb3f506 78iscsi_bh_cb(void *p)
27cbd828
PB
79{
80 IscsiAIOCB *acb = p;
81
82 qemu_bh_delete(acb->bh);
83
4790b03d
PB
84 g_free(acb->buf);
85 acb->buf = NULL;
86
27cbd828
PB
87 if (acb->canceled == 0) {
88 acb->common.cb(acb->common.opaque, acb->status);
89 }
90
1bd075f2
PB
91 if (acb->task != NULL) {
92 scsi_free_scsi_task(acb->task);
93 acb->task = NULL;
94 }
95
27cbd828
PB
96 qemu_aio_release(acb);
97}
98
cfb3f506
PB
99static void
100iscsi_schedule_bh(IscsiAIOCB *acb)
27cbd828 101{
1bd075f2
PB
102 if (acb->bh) {
103 return;
104 }
cfb3f506 105 acb->bh = qemu_bh_new(iscsi_bh_cb, acb);
27cbd828 106 qemu_bh_schedule(acb->bh);
27cbd828
PB
107}
108
109
c589b249
RS
110static void
111iscsi_abort_task_cb(struct iscsi_context *iscsi, int status, void *command_data,
112 void *private_data)
113{
1bd075f2
PB
114 IscsiAIOCB *acb = private_data;
115
116 acb->status = -ECANCELED;
117 iscsi_schedule_bh(acb);
c589b249
RS
118}
119
120static void
121iscsi_aio_cancel(BlockDriverAIOCB *blockacb)
122{
123 IscsiAIOCB *acb = (IscsiAIOCB *)blockacb;
124 IscsiLun *iscsilun = acb->iscsilun;
125
1bd075f2
PB
126 if (acb->status != -EINPROGRESS) {
127 return;
128 }
129
b2090919 130 acb->canceled = 1;
c589b249 131
b2090919 132 /* send a task mgmt call to the target to cancel the task on the target */
64e69e80 133 iscsi_task_mgmt_abort_task_async(iscsilun->iscsi, acb->task,
1bd075f2 134 iscsi_abort_task_cb, acb);
b2090919 135
1bd075f2
PB
136 while (acb->status == -EINPROGRESS) {
137 qemu_aio_wait();
138 }
c589b249
RS
139}
140
d7331bed 141static const AIOCBInfo iscsi_aiocb_info = {
c589b249
RS
142 .aiocb_size = sizeof(IscsiAIOCB),
143 .cancel = iscsi_aio_cancel,
144};
145
146
147static void iscsi_process_read(void *arg);
148static void iscsi_process_write(void *arg);
149
150static int iscsi_process_flush(void *arg)
151{
152 IscsiLun *iscsilun = arg;
153
154 return iscsi_queue_length(iscsilun->iscsi) > 0;
155}
156
157static void
158iscsi_set_events(IscsiLun *iscsilun)
159{
160 struct iscsi_context *iscsi = iscsilun->iscsi;
c9b9f682
RS
161 int ev;
162
163 /* We always register a read handler. */
164 ev = POLLIN;
165 ev |= iscsi_which_events(iscsi);
166 if (ev != iscsilun->events) {
167 qemu_aio_set_fd_handler(iscsi_get_fd(iscsi),
168 iscsi_process_read,
169 (ev & POLLOUT) ? iscsi_process_write : NULL,
170 iscsi_process_flush,
171 iscsilun);
172
173 }
174
c9b9f682 175 iscsilun->events = ev;
c589b249
RS
176}
177
178static void
179iscsi_process_read(void *arg)
180{
181 IscsiLun *iscsilun = arg;
182 struct iscsi_context *iscsi = iscsilun->iscsi;
183
184 iscsi_service(iscsi, POLLIN);
185 iscsi_set_events(iscsilun);
186}
187
188static void
189iscsi_process_write(void *arg)
190{
191 IscsiLun *iscsilun = arg;
192 struct iscsi_context *iscsi = iscsilun->iscsi;
193
194 iscsi_service(iscsi, POLLOUT);
195 iscsi_set_events(iscsilun);
196}
197
1dde716e
PL
198static int
199iscsi_aio_writev_acb(IscsiAIOCB *acb);
c589b249 200
c589b249 201static void
f4dfa67f 202iscsi_aio_write16_cb(struct iscsi_context *iscsi, int status,
c589b249
RS
203 void *command_data, void *opaque)
204{
205 IscsiAIOCB *acb = opaque;
206
f4dfa67f 207 trace_iscsi_aio_write16_cb(iscsi, status, acb, acb->canceled);
c589b249
RS
208
209 g_free(acb->buf);
4790b03d 210 acb->buf = NULL;
c589b249 211
b2090919 212 if (acb->canceled != 0) {
c589b249
RS
213 return;
214 }
215
216 acb->status = 0;
1dde716e
PL
217 if (status != 0) {
218 if (status == SCSI_STATUS_CHECK_CONDITION
219 && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
220 && acb->retries-- > 0) {
221 if (acb->task != NULL) {
222 scsi_free_scsi_task(acb->task);
223 acb->task = NULL;
224 }
225 if (iscsi_aio_writev_acb(acb) == 0) {
226 iscsi_set_events(acb->iscsilun);
227 return;
228 }
229 }
f4dfa67f 230 error_report("Failed to write16 data to iSCSI lun. %s",
c589b249
RS
231 iscsi_get_error(iscsi));
232 acb->status = -EIO;
233 }
234
cfb3f506 235 iscsi_schedule_bh(acb);
c589b249
RS
236}
237
238static int64_t sector_qemu2lun(int64_t sector, IscsiLun *iscsilun)
239{
240 return sector * BDRV_SECTOR_SIZE / iscsilun->block_size;
241}
242
1dde716e
PL
243static int
244iscsi_aio_writev_acb(IscsiAIOCB *acb)
c589b249 245{
1dde716e 246 struct iscsi_context *iscsi = acb->iscsilun->iscsi;
c589b249 247 size_t size;
f4dfa67f
RS
248 uint32_t num_sectors;
249 uint64_t lba;
7371d56f 250#if !defined(LIBISCSI_FEATURE_IOVECTOR)
f4dfa67f 251 struct iscsi_data data;
7371d56f
PL
252#endif
253 int ret;
c589b249 254
c589b249 255 acb->canceled = 0;
1bd075f2
PB
256 acb->bh = NULL;
257 acb->status = -EINPROGRESS;
4790b03d 258 acb->buf = NULL;
c589b249 259
c589b249 260 /* this will allow us to get rid of 'buf' completely */
1dde716e 261 size = acb->nb_sectors * BDRV_SECTOR_SIZE;
7371d56f
PL
262
263#if !defined(LIBISCSI_FEATURE_IOVECTOR)
4cc841b5
PL
264 data.size = MIN(size, acb->qiov->size);
265
266 /* if the iovec only contains one buffer we can pass it directly */
267 if (acb->qiov->niov == 1) {
4cc841b5
PL
268 data.data = acb->qiov->iov[0].iov_base;
269 } else {
270 acb->buf = g_malloc(data.size);
271 qemu_iovec_to_buf(acb->qiov, 0, acb->buf, data.size);
272 data.data = acb->buf;
273 }
7371d56f 274#endif
f4dfa67f
RS
275
276 acb->task = malloc(sizeof(struct scsi_task));
c589b249 277 if (acb->task == NULL) {
f4dfa67f
RS
278 error_report("iSCSI: Failed to allocate task for scsi WRITE16 "
279 "command. %s", iscsi_get_error(iscsi));
1dde716e 280 return -1;
f4dfa67f
RS
281 }
282 memset(acb->task, 0, sizeof(struct scsi_task));
283
284 acb->task->xfer_dir = SCSI_XFER_WRITE;
285 acb->task->cdb_size = 16;
286 acb->task->cdb[0] = 0x8a;
1dde716e 287 lba = sector_qemu2lun(acb->sector_num, acb->iscsilun);
f4dfa67f
RS
288 *(uint32_t *)&acb->task->cdb[2] = htonl(lba >> 32);
289 *(uint32_t *)&acb->task->cdb[6] = htonl(lba & 0xffffffff);
1dde716e 290 num_sectors = size / acb->iscsilun->block_size;
f4dfa67f
RS
291 *(uint32_t *)&acb->task->cdb[10] = htonl(num_sectors);
292 acb->task->expxferlen = size;
293
7371d56f 294#if defined(LIBISCSI_FEATURE_IOVECTOR)
1dde716e 295 ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
7371d56f
PL
296 iscsi_aio_write16_cb,
297 NULL,
298 acb);
299#else
1dde716e 300 ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
7371d56f
PL
301 iscsi_aio_write16_cb,
302 &data,
303 acb);
304#endif
305 if (ret != 0) {
c589b249 306 g_free(acb->buf);
1dde716e 307 return -1;
c589b249
RS
308 }
309
7371d56f
PL
310#if defined(LIBISCSI_FEATURE_IOVECTOR)
311 scsi_task_set_iov_out(acb->task, (struct scsi_iovec*) acb->qiov->iov, acb->qiov->niov);
312#endif
313
1dde716e
PL
314 return 0;
315}
316
317static BlockDriverAIOCB *
318iscsi_aio_writev(BlockDriverState *bs, int64_t sector_num,
319 QEMUIOVector *qiov, int nb_sectors,
320 BlockDriverCompletionFunc *cb,
321 void *opaque)
322{
323 IscsiLun *iscsilun = bs->opaque;
324 IscsiAIOCB *acb;
c589b249 325
1dde716e
PL
326 acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
327 trace_iscsi_aio_writev(iscsilun->iscsi, sector_num, nb_sectors, opaque, acb);
328
329 acb->iscsilun = iscsilun;
330 acb->qiov = qiov;
331 acb->nb_sectors = nb_sectors;
332 acb->sector_num = sector_num;
333 acb->retries = ISCSI_CMD_RETRIES;
334
335 if (iscsi_aio_writev_acb(acb) != 0) {
336 if (acb->task) {
337 scsi_free_scsi_task(acb->task);
338 }
339 qemu_aio_release(acb);
340 return NULL;
341 }
342
343 iscsi_set_events(iscsilun);
c589b249
RS
344 return &acb->common;
345}
346
1dde716e
PL
347static int
348iscsi_aio_readv_acb(IscsiAIOCB *acb);
349
c589b249 350static void
f4dfa67f 351iscsi_aio_read16_cb(struct iscsi_context *iscsi, int status,
c589b249
RS
352 void *command_data, void *opaque)
353{
354 IscsiAIOCB *acb = opaque;
355
f4dfa67f 356 trace_iscsi_aio_read16_cb(iscsi, status, acb, acb->canceled);
c589b249 357
b2090919 358 if (acb->canceled != 0) {
c589b249
RS
359 return;
360 }
361
362 acb->status = 0;
363 if (status != 0) {
1dde716e
PL
364 if (status == SCSI_STATUS_CHECK_CONDITION
365 && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
366 && acb->retries-- > 0) {
367 if (acb->task != NULL) {
368 scsi_free_scsi_task(acb->task);
369 acb->task = NULL;
370 }
371 if (iscsi_aio_readv_acb(acb) == 0) {
372 iscsi_set_events(acb->iscsilun);
373 return;
374 }
375 }
f4dfa67f 376 error_report("Failed to read16 data from iSCSI lun. %s",
c589b249
RS
377 iscsi_get_error(iscsi));
378 acb->status = -EIO;
379 }
380
cfb3f506 381 iscsi_schedule_bh(acb);
c589b249
RS
382}
383
1dde716e
PL
384static int
385iscsi_aio_readv_acb(IscsiAIOCB *acb)
c589b249 386{
1dde716e
PL
387 struct iscsi_context *iscsi = acb->iscsilun->iscsi;
388 uint64_t lba;
389 uint32_t num_sectors;
390 int ret;
7371d56f 391#if !defined(LIBISCSI_FEATURE_IOVECTOR)
c589b249 392 int i;
7371d56f 393#endif
c589b249
RS
394
395 acb->canceled = 0;
1bd075f2
PB
396 acb->bh = NULL;
397 acb->status = -EINPROGRESS;
c589b249
RS
398 acb->buf = NULL;
399
400 /* If LUN blocksize is bigger than BDRV_BLOCK_SIZE a read from QEMU
401 * may be misaligned to the LUN, so we may need to read some extra
402 * data.
403 */
404 acb->read_offset = 0;
1dde716e
PL
405 if (acb->iscsilun->block_size > BDRV_SECTOR_SIZE) {
406 uint64_t bdrv_offset = BDRV_SECTOR_SIZE * acb->sector_num;
c589b249 407
1dde716e 408 acb->read_offset = bdrv_offset % acb->iscsilun->block_size;
c589b249
RS
409 }
410
1dde716e 411 num_sectors = (acb->read_size + acb->iscsilun->block_size
f4dfa67f 412 + acb->read_offset - 1)
1dde716e 413 / acb->iscsilun->block_size;
f4dfa67f
RS
414
415 acb->task = malloc(sizeof(struct scsi_task));
c589b249 416 if (acb->task == NULL) {
f4dfa67f
RS
417 error_report("iSCSI: Failed to allocate task for scsi READ16 "
418 "command. %s", iscsi_get_error(iscsi));
1dde716e 419 return -1;
f4dfa67f
RS
420 }
421 memset(acb->task, 0, sizeof(struct scsi_task));
422
423 acb->task->xfer_dir = SCSI_XFER_READ;
1dde716e
PL
424 lba = sector_qemu2lun(acb->sector_num, acb->iscsilun);
425 acb->task->expxferlen = acb->read_size;
f4dfa67f 426
1dde716e 427 switch (acb->iscsilun->type) {
f4dfa67f
RS
428 case TYPE_DISK:
429 acb->task->cdb_size = 16;
430 acb->task->cdb[0] = 0x88;
431 *(uint32_t *)&acb->task->cdb[2] = htonl(lba >> 32);
432 *(uint32_t *)&acb->task->cdb[6] = htonl(lba & 0xffffffff);
433 *(uint32_t *)&acb->task->cdb[10] = htonl(num_sectors);
434 break;
435 default:
436 acb->task->cdb_size = 10;
437 acb->task->cdb[0] = 0x28;
438 *(uint32_t *)&acb->task->cdb[2] = htonl(lba);
439 *(uint16_t *)&acb->task->cdb[7] = htons(num_sectors);
440 break;
441 }
e829b0bb 442
1dde716e 443 ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
7371d56f
PL
444 iscsi_aio_read16_cb,
445 NULL,
446 acb);
447 if (ret != 0) {
1dde716e 448 return -1;
c589b249
RS
449 }
450
7371d56f
PL
451#if defined(LIBISCSI_FEATURE_IOVECTOR)
452 scsi_task_set_iov_in(acb->task, (struct scsi_iovec*) acb->qiov->iov, acb->qiov->niov);
453#else
c589b249
RS
454 for (i = 0; i < acb->qiov->niov; i++) {
455 scsi_task_add_data_in_buffer(acb->task,
456 acb->qiov->iov[i].iov_len,
457 acb->qiov->iov[i].iov_base);
458 }
7371d56f 459#endif
1dde716e
PL
460 return 0;
461}
c589b249 462
1dde716e
PL
463static BlockDriverAIOCB *
464iscsi_aio_readv(BlockDriverState *bs, int64_t sector_num,
465 QEMUIOVector *qiov, int nb_sectors,
466 BlockDriverCompletionFunc *cb,
467 void *opaque)
468{
469 IscsiLun *iscsilun = bs->opaque;
470 IscsiAIOCB *acb;
471
472 acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
473 trace_iscsi_aio_readv(iscsilun->iscsi, sector_num, nb_sectors, opaque, acb);
474
475 acb->nb_sectors = nb_sectors;
476 acb->sector_num = sector_num;
477 acb->iscsilun = iscsilun;
478 acb->qiov = qiov;
479 acb->read_size = BDRV_SECTOR_SIZE * (size_t)acb->nb_sectors;
480 acb->retries = ISCSI_CMD_RETRIES;
481
482 if (iscsi_aio_readv_acb(acb) != 0) {
483 if (acb->task) {
484 scsi_free_scsi_task(acb->task);
485 }
486 qemu_aio_release(acb);
487 return NULL;
488 }
c589b249 489
1dde716e 490 iscsi_set_events(iscsilun);
c589b249
RS
491 return &acb->common;
492}
493
1dde716e
PL
494static int
495iscsi_aio_flush_acb(IscsiAIOCB *acb);
c589b249
RS
496
497static void
498iscsi_synccache10_cb(struct iscsi_context *iscsi, int status,
499 void *command_data, void *opaque)
500{
501 IscsiAIOCB *acb = opaque;
502
b2090919 503 if (acb->canceled != 0) {
c589b249
RS
504 return;
505 }
506
507 acb->status = 0;
1dde716e
PL
508 if (status != 0) {
509 if (status == SCSI_STATUS_CHECK_CONDITION
510 && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
511 && acb->retries-- > 0) {
512 if (acb->task != NULL) {
513 scsi_free_scsi_task(acb->task);
514 acb->task = NULL;
515 }
516 if (iscsi_aio_flush_acb(acb) == 0) {
517 iscsi_set_events(acb->iscsilun);
518 return;
519 }
520 }
c589b249
RS
521 error_report("Failed to sync10 data on iSCSI lun. %s",
522 iscsi_get_error(iscsi));
523 acb->status = -EIO;
524 }
525
cfb3f506 526 iscsi_schedule_bh(acb);
c589b249
RS
527}
528
1dde716e
PL
529static int
530iscsi_aio_flush_acb(IscsiAIOCB *acb)
c589b249 531{
1dde716e 532 struct iscsi_context *iscsi = acb->iscsilun->iscsi;
c589b249 533
c589b249 534 acb->canceled = 0;
1bd075f2
PB
535 acb->bh = NULL;
536 acb->status = -EINPROGRESS;
4790b03d 537 acb->buf = NULL;
c589b249 538
1dde716e 539 acb->task = iscsi_synchronizecache10_task(iscsi, acb->iscsilun->lun,
c589b249
RS
540 0, 0, 0, 0,
541 iscsi_synccache10_cb,
542 acb);
543 if (acb->task == NULL) {
544 error_report("iSCSI: Failed to send synchronizecache10 command. %s",
545 iscsi_get_error(iscsi));
1dde716e
PL
546 return -1;
547 }
548
549 return 0;
550}
551
552static BlockDriverAIOCB *
553iscsi_aio_flush(BlockDriverState *bs,
554 BlockDriverCompletionFunc *cb, void *opaque)
555{
556 IscsiLun *iscsilun = bs->opaque;
557
558 IscsiAIOCB *acb;
559
560 acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
561
562 acb->iscsilun = iscsilun;
563 acb->retries = ISCSI_CMD_RETRIES;
564
565 if (iscsi_aio_flush_acb(acb) != 0) {
c589b249
RS
566 qemu_aio_release(acb);
567 return NULL;
568 }
569
570 iscsi_set_events(iscsilun);
571
572 return &acb->common;
573}
574
1dde716e
PL
575static int iscsi_aio_discard_acb(IscsiAIOCB *acb);
576
fa6acb0c
RS
577static void
578iscsi_unmap_cb(struct iscsi_context *iscsi, int status,
579 void *command_data, void *opaque)
580{
581 IscsiAIOCB *acb = opaque;
582
b2090919 583 if (acb->canceled != 0) {
fa6acb0c
RS
584 return;
585 }
586
587 acb->status = 0;
1dde716e
PL
588 if (status != 0) {
589 if (status == SCSI_STATUS_CHECK_CONDITION
590 && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
591 && acb->retries-- > 0) {
592 if (acb->task != NULL) {
593 scsi_free_scsi_task(acb->task);
594 acb->task = NULL;
595 }
596 if (iscsi_aio_discard_acb(acb) == 0) {
597 iscsi_set_events(acb->iscsilun);
598 return;
599 }
600 }
fa6acb0c
RS
601 error_report("Failed to unmap data on iSCSI lun. %s",
602 iscsi_get_error(iscsi));
603 acb->status = -EIO;
604 }
605
cfb3f506 606 iscsi_schedule_bh(acb);
fa6acb0c
RS
607}
608
1dde716e
PL
609static int iscsi_aio_discard_acb(IscsiAIOCB *acb) {
610 struct iscsi_context *iscsi = acb->iscsilun->iscsi;
fa6acb0c
RS
611 struct unmap_list list[1];
612
fa6acb0c 613 acb->canceled = 0;
1bd075f2
PB
614 acb->bh = NULL;
615 acb->status = -EINPROGRESS;
4790b03d 616 acb->buf = NULL;
fa6acb0c 617
1dde716e
PL
618 list[0].lba = sector_qemu2lun(acb->sector_num, acb->iscsilun);
619 list[0].num = acb->nb_sectors * BDRV_SECTOR_SIZE / acb->iscsilun->block_size;
fa6acb0c 620
1dde716e 621 acb->task = iscsi_unmap_task(iscsi, acb->iscsilun->lun,
fa6acb0c
RS
622 0, 0, &list[0], 1,
623 iscsi_unmap_cb,
624 acb);
625 if (acb->task == NULL) {
626 error_report("iSCSI: Failed to send unmap command. %s",
627 iscsi_get_error(iscsi));
1dde716e
PL
628 return -1;
629 }
630
631 return 0;
632}
633
634static BlockDriverAIOCB *
635iscsi_aio_discard(BlockDriverState *bs,
636 int64_t sector_num, int nb_sectors,
637 BlockDriverCompletionFunc *cb, void *opaque)
638{
639 IscsiLun *iscsilun = bs->opaque;
640 IscsiAIOCB *acb;
641
642 acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
643
644 acb->iscsilun = iscsilun;
645 acb->nb_sectors = nb_sectors;
646 acb->sector_num = sector_num;
647 acb->retries = ISCSI_CMD_RETRIES;
648
649 if (iscsi_aio_discard_acb(acb) != 0) {
650 if (acb->task) {
651 scsi_free_scsi_task(acb->task);
652 }
fa6acb0c
RS
653 qemu_aio_release(acb);
654 return NULL;
655 }
656
657 iscsi_set_events(iscsilun);
658
659 return &acb->common;
660}
661
98392453
RS
662#ifdef __linux__
663static void
664iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status,
665 void *command_data, void *opaque)
666{
667 IscsiAIOCB *acb = opaque;
668
b2090919 669 if (acb->canceled != 0) {
98392453
RS
670 return;
671 }
672
673 acb->status = 0;
674 if (status < 0) {
675 error_report("Failed to ioctl(SG_IO) to iSCSI lun. %s",
676 iscsi_get_error(iscsi));
677 acb->status = -EIO;
678 }
679
680 acb->ioh->driver_status = 0;
681 acb->ioh->host_status = 0;
682 acb->ioh->resid = 0;
683
684#define SG_ERR_DRIVER_SENSE 0x08
685
686 if (status == SCSI_STATUS_CHECK_CONDITION && acb->task->datain.size >= 2) {
687 int ss;
688
689 acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE;
690
691 acb->ioh->sb_len_wr = acb->task->datain.size - 2;
692 ss = (acb->ioh->mx_sb_len >= acb->ioh->sb_len_wr) ?
693 acb->ioh->mx_sb_len : acb->ioh->sb_len_wr;
694 memcpy(acb->ioh->sbp, &acb->task->datain.data[2], ss);
695 }
696
cfb3f506 697 iscsi_schedule_bh(acb);
98392453
RS
698}
699
700static BlockDriverAIOCB *iscsi_aio_ioctl(BlockDriverState *bs,
701 unsigned long int req, void *buf,
702 BlockDriverCompletionFunc *cb, void *opaque)
703{
704 IscsiLun *iscsilun = bs->opaque;
705 struct iscsi_context *iscsi = iscsilun->iscsi;
706 struct iscsi_data data;
707 IscsiAIOCB *acb;
708
709 assert(req == SG_IO);
710
d7331bed 711 acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
98392453
RS
712
713 acb->iscsilun = iscsilun;
714 acb->canceled = 0;
1bd075f2
PB
715 acb->bh = NULL;
716 acb->status = -EINPROGRESS;
98392453
RS
717 acb->buf = NULL;
718 acb->ioh = buf;
719
720 acb->task = malloc(sizeof(struct scsi_task));
721 if (acb->task == NULL) {
722 error_report("iSCSI: Failed to allocate task for scsi command. %s",
723 iscsi_get_error(iscsi));
724 qemu_aio_release(acb);
725 return NULL;
726 }
727 memset(acb->task, 0, sizeof(struct scsi_task));
728
729 switch (acb->ioh->dxfer_direction) {
730 case SG_DXFER_TO_DEV:
731 acb->task->xfer_dir = SCSI_XFER_WRITE;
732 break;
733 case SG_DXFER_FROM_DEV:
734 acb->task->xfer_dir = SCSI_XFER_READ;
735 break;
736 default:
737 acb->task->xfer_dir = SCSI_XFER_NONE;
738 break;
739 }
740
741 acb->task->cdb_size = acb->ioh->cmd_len;
742 memcpy(&acb->task->cdb[0], acb->ioh->cmdp, acb->ioh->cmd_len);
743 acb->task->expxferlen = acb->ioh->dxfer_len;
744
745 if (acb->task->xfer_dir == SCSI_XFER_WRITE) {
746 data.data = acb->ioh->dxferp;
747 data.size = acb->ioh->dxfer_len;
748 }
749 if (iscsi_scsi_command_async(iscsi, iscsilun->lun, acb->task,
750 iscsi_aio_ioctl_cb,
751 (acb->task->xfer_dir == SCSI_XFER_WRITE) ?
752 &data : NULL,
753 acb) != 0) {
754 scsi_free_scsi_task(acb->task);
755 qemu_aio_release(acb);
756 return NULL;
757 }
758
759 /* tell libiscsi to read straight into the buffer we got from ioctl */
760 if (acb->task->xfer_dir == SCSI_XFER_READ) {
761 scsi_task_add_data_in_buffer(acb->task,
762 acb->ioh->dxfer_len,
763 acb->ioh->dxferp);
764 }
765
766 iscsi_set_events(iscsilun);
767
768 return &acb->common;
769}
770
f1a12821
RS
771
772static void ioctl_cb(void *opaque, int status)
773{
774 int *p_status = opaque;
775 *p_status = status;
776}
777
98392453
RS
778static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
779{
780 IscsiLun *iscsilun = bs->opaque;
f1a12821 781 int status;
98392453
RS
782
783 switch (req) {
784 case SG_GET_VERSION_NUM:
785 *(int *)buf = 30000;
786 break;
787 case SG_GET_SCSI_ID:
788 ((struct sg_scsi_id *)buf)->scsi_type = iscsilun->type;
789 break;
f1a12821
RS
790 case SG_IO:
791 status = -EINPROGRESS;
792 iscsi_aio_ioctl(bs, req, buf, ioctl_cb, &status);
793
794 while (status == -EINPROGRESS) {
795 qemu_aio_wait();
796 }
797
798 return 0;
98392453
RS
799 default:
800 return -1;
801 }
802 return 0;
803}
804#endif
805
c589b249
RS
806static int64_t
807iscsi_getlength(BlockDriverState *bs)
808{
809 IscsiLun *iscsilun = bs->opaque;
810 int64_t len;
811
812 len = iscsilun->num_blocks;
813 len *= iscsilun->block_size;
814
815 return len;
816}
817
f9dadc98
RS
818static int parse_chap(struct iscsi_context *iscsi, const char *target)
819{
820 QemuOptsList *list;
821 QemuOpts *opts;
822 const char *user = NULL;
823 const char *password = NULL;
824
825 list = qemu_find_opts("iscsi");
826 if (!list) {
827 return 0;
828 }
829
830 opts = qemu_opts_find(list, target);
831 if (opts == NULL) {
832 opts = QTAILQ_FIRST(&list->head);
833 if (!opts) {
834 return 0;
835 }
836 }
837
838 user = qemu_opt_get(opts, "user");
839 if (!user) {
840 return 0;
841 }
842
843 password = qemu_opt_get(opts, "password");
844 if (!password) {
845 error_report("CHAP username specified but no password was given");
846 return -1;
847 }
848
849 if (iscsi_set_initiator_username_pwd(iscsi, user, password)) {
850 error_report("Failed to set initiator username and password");
851 return -1;
852 }
853
854 return 0;
855}
856
857static void parse_header_digest(struct iscsi_context *iscsi, const char *target)
858{
859 QemuOptsList *list;
860 QemuOpts *opts;
861 const char *digest = NULL;
862
863 list = qemu_find_opts("iscsi");
864 if (!list) {
865 return;
866 }
867
868 opts = qemu_opts_find(list, target);
869 if (opts == NULL) {
870 opts = QTAILQ_FIRST(&list->head);
871 if (!opts) {
872 return;
873 }
874 }
875
876 digest = qemu_opt_get(opts, "header-digest");
877 if (!digest) {
878 return;
879 }
880
881 if (!strcmp(digest, "CRC32C")) {
882 iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C);
883 } else if (!strcmp(digest, "NONE")) {
884 iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE);
885 } else if (!strcmp(digest, "CRC32C-NONE")) {
886 iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C_NONE);
887 } else if (!strcmp(digest, "NONE-CRC32C")) {
888 iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C);
889 } else {
890 error_report("Invalid header-digest setting : %s", digest);
891 }
892}
893
894static char *parse_initiator_name(const char *target)
895{
896 QemuOptsList *list;
897 QemuOpts *opts;
898 const char *name = NULL;
31459f46 899 const char *iscsi_name = qemu_get_vm_name();
f9dadc98
RS
900
901 list = qemu_find_opts("iscsi");
f2ef4a6d
PB
902 if (list) {
903 opts = qemu_opts_find(list, target);
f9dadc98 904 if (!opts) {
f2ef4a6d
PB
905 opts = QTAILQ_FIRST(&list->head);
906 }
907 if (opts) {
908 name = qemu_opt_get(opts, "initiator-name");
f9dadc98
RS
909 }
910 }
911
f2ef4a6d
PB
912 if (name) {
913 return g_strdup(name);
914 } else {
31459f46
RS
915 return g_strdup_printf("iqn.2008-11.org.linux-kvm%s%s",
916 iscsi_name ? ":" : "",
917 iscsi_name ? iscsi_name : "");
f9dadc98 918 }
f9dadc98
RS
919}
920
5b5d34ec
PL
921#if defined(LIBISCSI_FEATURE_NOP_COUNTER)
922static void iscsi_nop_timed_event(void *opaque)
923{
924 IscsiLun *iscsilun = opaque;
925
926 if (iscsi_get_nops_in_flight(iscsilun->iscsi) > MAX_NOP_FAILURES) {
927 error_report("iSCSI: NOP timeout. Reconnecting...");
928 iscsi_reconnect(iscsilun->iscsi);
929 }
930
931 if (iscsi_nop_out_async(iscsilun->iscsi, NULL, NULL, 0, NULL) != 0) {
932 error_report("iSCSI: failed to sent NOP-Out. Disabling NOP messages.");
933 return;
934 }
935
936 qemu_mod_timer(iscsilun->nop_timer, qemu_get_clock_ms(rt_clock) + NOP_INTERVAL);
937 iscsi_set_events(iscsilun);
938}
939#endif
940
cb1b83e7
PL
941static int iscsi_readcapacity_sync(IscsiLun *iscsilun)
942{
943 struct scsi_task *task = NULL;
944 struct scsi_readcapacity10 *rc10 = NULL;
945 struct scsi_readcapacity16 *rc16 = NULL;
946 int ret = 0;
947 int retries = ISCSI_CMD_RETRIES;
948
949try_again:
950 switch (iscsilun->type) {
951 case TYPE_DISK:
952 task = iscsi_readcapacity16_sync(iscsilun->iscsi, iscsilun->lun);
953 if (task == NULL || task->status != SCSI_STATUS_GOOD) {
954 if (task != NULL && task->status == SCSI_STATUS_CHECK_CONDITION
955 && task->sense.key == SCSI_SENSE_UNIT_ATTENTION
956 && retries-- > 0) {
957 scsi_free_scsi_task(task);
958 goto try_again;
959 }
960 error_report("iSCSI: failed to send readcapacity16 command.");
961 ret = -EINVAL;
962 goto out;
963 }
964 rc16 = scsi_datain_unmarshall(task);
965 if (rc16 == NULL) {
966 error_report("iSCSI: Failed to unmarshall readcapacity16 data.");
967 ret = -EINVAL;
968 goto out;
969 }
970 iscsilun->block_size = rc16->block_length;
971 iscsilun->num_blocks = rc16->returned_lba + 1;
972 break;
973 case TYPE_ROM:
974 task = iscsi_readcapacity10_sync(iscsilun->iscsi, iscsilun->lun, 0, 0);
975 if (task == NULL || task->status != SCSI_STATUS_GOOD) {
976 error_report("iSCSI: failed to send readcapacity10 command.");
977 ret = -EINVAL;
978 goto out;
979 }
980 rc10 = scsi_datain_unmarshall(task);
981 if (rc10 == NULL) {
982 error_report("iSCSI: Failed to unmarshall readcapacity10 data.");
983 ret = -EINVAL;
984 goto out;
985 }
986 iscsilun->block_size = rc10->block_size;
987 if (rc10->lba == 0) {
988 /* blank disk loaded */
989 iscsilun->num_blocks = 0;
990 } else {
991 iscsilun->num_blocks = rc10->lba + 1;
992 }
993 break;
994 default:
995 break;
996 }
997
998out:
999 if (task) {
1000 scsi_free_scsi_task(task);
1001 }
1002
1003 return ret;
1004}
1005
60beb341
KW
1006/* TODO Convert to fine grained options */
1007static QemuOptsList runtime_opts = {
1008 .name = "iscsi",
1009 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
1010 .desc = {
1011 {
1012 .name = "filename",
1013 .type = QEMU_OPT_STRING,
1014 .help = "URL to the iscsi image",
1015 },
1016 { /* end of list */ }
1017 },
1018};
1019
c589b249
RS
1020/*
1021 * We support iscsi url's on the form
1022 * iscsi://[<username>%<password>@]<host>[:<port>]/<targetname>/<lun>
1023 */
60beb341 1024static int iscsi_open(BlockDriverState *bs, const char *dummy,
787e4a85 1025 QDict *options, int flags)
c589b249
RS
1026{
1027 IscsiLun *iscsilun = bs->opaque;
1028 struct iscsi_context *iscsi = NULL;
1029 struct iscsi_url *iscsi_url = NULL;
e829b0bb
PL
1030 struct scsi_task *task = NULL;
1031 struct scsi_inquiry_standard *inq = NULL;
f9dadc98 1032 char *initiator_name = NULL;
60beb341
KW
1033 QemuOpts *opts;
1034 Error *local_err = NULL;
1035 const char *filename;
c589b249
RS
1036 int ret;
1037
1038 if ((BDRV_SECTOR_SIZE % 512) != 0) {
1039 error_report("iSCSI: Invalid BDRV_SECTOR_SIZE. "
1040 "BDRV_SECTOR_SIZE(%lld) is not a multiple "
1041 "of 512", BDRV_SECTOR_SIZE);
1042 return -EINVAL;
1043 }
1044
60beb341
KW
1045 opts = qemu_opts_create_nofail(&runtime_opts);
1046 qemu_opts_absorb_qdict(opts, options, &local_err);
1047 if (error_is_set(&local_err)) {
1048 qerror_report_err(local_err);
1049 error_free(local_err);
1050 ret = -EINVAL;
1051 goto out;
1052 }
1053
1054 filename = qemu_opt_get(opts, "filename");
1055
1056
c589b249
RS
1057 iscsi_url = iscsi_parse_full_url(iscsi, filename);
1058 if (iscsi_url == NULL) {
8da1e18b 1059 error_report("Failed to parse URL : %s", filename);
c589b249 1060 ret = -EINVAL;
b93c94f7 1061 goto out;
c589b249
RS
1062 }
1063
f9dadc98
RS
1064 memset(iscsilun, 0, sizeof(IscsiLun));
1065
1066 initiator_name = parse_initiator_name(iscsi_url->target);
1067
1068 iscsi = iscsi_create_context(initiator_name);
1069 if (iscsi == NULL) {
1070 error_report("iSCSI: Failed to create iSCSI context.");
1071 ret = -ENOMEM;
b93c94f7 1072 goto out;
f9dadc98
RS
1073 }
1074
c589b249
RS
1075 if (iscsi_set_targetname(iscsi, iscsi_url->target)) {
1076 error_report("iSCSI: Failed to set target name.");
1077 ret = -EINVAL;
b93c94f7 1078 goto out;
c589b249
RS
1079 }
1080
1081 if (iscsi_url->user != NULL) {
1082 ret = iscsi_set_initiator_username_pwd(iscsi, iscsi_url->user,
1083 iscsi_url->passwd);
1084 if (ret != 0) {
1085 error_report("Failed to set initiator username and password");
1086 ret = -EINVAL;
b93c94f7 1087 goto out;
c589b249
RS
1088 }
1089 }
f9dadc98
RS
1090
1091 /* check if we got CHAP username/password via the options */
1092 if (parse_chap(iscsi, iscsi_url->target) != 0) {
1093 error_report("iSCSI: Failed to set CHAP user/password");
1094 ret = -EINVAL;
b93c94f7 1095 goto out;
f9dadc98
RS
1096 }
1097
c589b249
RS
1098 if (iscsi_set_session_type(iscsi, ISCSI_SESSION_NORMAL) != 0) {
1099 error_report("iSCSI: Failed to set session type to normal.");
1100 ret = -EINVAL;
b93c94f7 1101 goto out;
c589b249
RS
1102 }
1103
1104 iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C);
1105
f9dadc98
RS
1106 /* check if we got HEADER_DIGEST via the options */
1107 parse_header_digest(iscsi, iscsi_url->target);
1108
e829b0bb
PL
1109 if (iscsi_full_connect_sync(iscsi, iscsi_url->portal, iscsi_url->lun) != 0) {
1110 error_report("iSCSI: Failed to connect to LUN : %s",
1111 iscsi_get_error(iscsi));
1112 ret = -EINVAL;
1113 goto out;
1114 }
c589b249
RS
1115
1116 iscsilun->iscsi = iscsi;
1117 iscsilun->lun = iscsi_url->lun;
1118
e829b0bb
PL
1119 task = iscsi_inquiry_sync(iscsi, iscsilun->lun, 0, 0, 36);
1120
1121 if (task == NULL || task->status != SCSI_STATUS_GOOD) {
1122 error_report("iSCSI: failed to send inquiry command.");
c589b249 1123 ret = -EINVAL;
b93c94f7 1124 goto out;
c589b249
RS
1125 }
1126
e829b0bb
PL
1127 inq = scsi_datain_unmarshall(task);
1128 if (inq == NULL) {
1129 error_report("iSCSI: Failed to unmarshall inquiry data.");
c589b249 1130 ret = -EINVAL;
b93c94f7 1131 goto out;
c589b249 1132 }
622695a4 1133
e829b0bb
PL
1134 iscsilun->type = inq->periperal_device_type;
1135
cb1b83e7
PL
1136 if ((ret = iscsi_readcapacity_sync(iscsilun)) != 0) {
1137 goto out;
e829b0bb 1138 }
e829b0bb
PL
1139 bs->total_sectors = iscsilun->num_blocks *
1140 iscsilun->block_size / BDRV_SECTOR_SIZE ;
1141
622695a4
RS
1142 /* Medium changer or tape. We dont have any emulation for this so this must
1143 * be sg ioctl compatible. We force it to be sg, otherwise qemu will try
1144 * to read from the device to guess the image format.
1145 */
1146 if (iscsilun->type == TYPE_MEDIUM_CHANGER ||
1147 iscsilun->type == TYPE_TAPE) {
1148 bs->sg = 1;
1149 }
1150
5b5d34ec
PL
1151#if defined(LIBISCSI_FEATURE_NOP_COUNTER)
1152 /* Set up a timer for sending out iSCSI NOPs */
1153 iscsilun->nop_timer = qemu_new_timer_ms(rt_clock, iscsi_nop_timed_event, iscsilun);
1154 qemu_mod_timer(iscsilun->nop_timer, qemu_get_clock_ms(rt_clock) + NOP_INTERVAL);
1155#endif
1156
b93c94f7 1157out:
60beb341 1158 qemu_opts_del(opts);
f9dadc98
RS
1159 if (initiator_name != NULL) {
1160 g_free(initiator_name);
1161 }
c589b249
RS
1162 if (iscsi_url != NULL) {
1163 iscsi_destroy_url(iscsi_url);
1164 }
e829b0bb
PL
1165 if (task != NULL) {
1166 scsi_free_scsi_task(task);
1167 }
b93c94f7
PB
1168
1169 if (ret) {
1170 if (iscsi != NULL) {
1171 iscsi_destroy_context(iscsi);
1172 }
1173 memset(iscsilun, 0, sizeof(IscsiLun));
c589b249 1174 }
c589b249
RS
1175 return ret;
1176}
1177
1178static void iscsi_close(BlockDriverState *bs)
1179{
1180 IscsiLun *iscsilun = bs->opaque;
1181 struct iscsi_context *iscsi = iscsilun->iscsi;
1182
5b5d34ec
PL
1183 if (iscsilun->nop_timer) {
1184 qemu_del_timer(iscsilun->nop_timer);
1185 qemu_free_timer(iscsilun->nop_timer);
1186 }
bafbd6a1 1187 qemu_aio_set_fd_handler(iscsi_get_fd(iscsi), NULL, NULL, NULL, NULL);
c589b249
RS
1188 iscsi_destroy_context(iscsi);
1189 memset(iscsilun, 0, sizeof(IscsiLun));
1190}
1191
cb1b83e7
PL
1192static int iscsi_truncate(BlockDriverState *bs, int64_t offset)
1193{
1194 IscsiLun *iscsilun = bs->opaque;
1195 int ret = 0;
1196
1197 if (iscsilun->type != TYPE_DISK) {
1198 return -ENOTSUP;
1199 }
1200
1201 if ((ret = iscsi_readcapacity_sync(iscsilun)) != 0) {
1202 return ret;
1203 }
1204
1205 if (offset > iscsi_getlength(bs)) {
1206 return -EINVAL;
1207 }
1208
1209 return 0;
1210}
1211
f807ecd5
PL
1212static int iscsi_has_zero_init(BlockDriverState *bs)
1213{
1214 return 0;
1215}
1216
de8864e5
PL
1217static int iscsi_create(const char *filename, QEMUOptionParameter *options)
1218{
1219 int ret = 0;
1220 int64_t total_size = 0;
1221 BlockDriverState bs;
1222 IscsiLun *iscsilun = NULL;
60beb341 1223 QDict *bs_options;
de8864e5
PL
1224
1225 memset(&bs, 0, sizeof(BlockDriverState));
1226
1227 /* Read out options */
1228 while (options && options->name) {
1229 if (!strcmp(options->name, "size")) {
1230 total_size = options->value.n / BDRV_SECTOR_SIZE;
1231 }
1232 options++;
1233 }
1234
1235 bs.opaque = g_malloc0(sizeof(struct IscsiLun));
1236 iscsilun = bs.opaque;
1237
60beb341
KW
1238 bs_options = qdict_new();
1239 qdict_put(bs_options, "filename", qstring_from_str(filename));
1240 ret = iscsi_open(&bs, NULL, bs_options, 0);
1241 QDECREF(bs_options);
1242
de8864e5
PL
1243 if (ret != 0) {
1244 goto out;
1245 }
5b5d34ec
PL
1246 if (iscsilun->nop_timer) {
1247 qemu_del_timer(iscsilun->nop_timer);
1248 qemu_free_timer(iscsilun->nop_timer);
1249 }
de8864e5
PL
1250 if (iscsilun->type != TYPE_DISK) {
1251 ret = -ENODEV;
1252 goto out;
1253 }
1254 if (bs.total_sectors < total_size) {
1255 ret = -ENOSPC;
1256 }
1257
1258 ret = 0;
1259out:
1260 if (iscsilun->iscsi != NULL) {
1261 iscsi_destroy_context(iscsilun->iscsi);
1262 }
1263 g_free(bs.opaque);
1264 return ret;
1265}
1266
1267static QEMUOptionParameter iscsi_create_options[] = {
1268 {
1269 .name = BLOCK_OPT_SIZE,
1270 .type = OPT_SIZE,
1271 .help = "Virtual disk size"
1272 },
1273 { NULL }
1274};
1275
c589b249
RS
1276static BlockDriver bdrv_iscsi = {
1277 .format_name = "iscsi",
1278 .protocol_name = "iscsi",
1279
1280 .instance_size = sizeof(IscsiLun),
1281 .bdrv_file_open = iscsi_open,
1282 .bdrv_close = iscsi_close,
de8864e5
PL
1283 .bdrv_create = iscsi_create,
1284 .create_options = iscsi_create_options,
c589b249
RS
1285
1286 .bdrv_getlength = iscsi_getlength,
cb1b83e7 1287 .bdrv_truncate = iscsi_truncate,
c589b249
RS
1288
1289 .bdrv_aio_readv = iscsi_aio_readv,
1290 .bdrv_aio_writev = iscsi_aio_writev,
1291 .bdrv_aio_flush = iscsi_aio_flush,
fa6acb0c
RS
1292
1293 .bdrv_aio_discard = iscsi_aio_discard,
f807ecd5 1294 .bdrv_has_zero_init = iscsi_has_zero_init,
98392453
RS
1295
1296#ifdef __linux__
1297 .bdrv_ioctl = iscsi_ioctl,
1298 .bdrv_aio_ioctl = iscsi_aio_ioctl,
1299#endif
c589b249
RS
1300};
1301
4d454574
PB
1302static QemuOptsList qemu_iscsi_opts = {
1303 .name = "iscsi",
1304 .head = QTAILQ_HEAD_INITIALIZER(qemu_iscsi_opts.head),
1305 .desc = {
1306 {
1307 .name = "user",
1308 .type = QEMU_OPT_STRING,
1309 .help = "username for CHAP authentication to target",
1310 },{
1311 .name = "password",
1312 .type = QEMU_OPT_STRING,
1313 .help = "password for CHAP authentication to target",
1314 },{
1315 .name = "header-digest",
1316 .type = QEMU_OPT_STRING,
1317 .help = "HeaderDigest setting. "
1318 "{CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
1319 },{
1320 .name = "initiator-name",
1321 .type = QEMU_OPT_STRING,
1322 .help = "Initiator iqn name to use when connecting",
1323 },
1324 { /* end of list */ }
1325 },
1326};
1327
c589b249
RS
1328static void iscsi_block_init(void)
1329{
1330 bdrv_register(&bdrv_iscsi);
4d454574 1331 qemu_add_opts(&qemu_iscsi_opts);
c589b249
RS
1332}
1333
1334block_init(iscsi_block_init);