iscsi.c 43.5 KB
Newer Older
R
Ronnie Sahlberg 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * QEMU Block driver for iSCSI images
 *
 * Copyright (c) 2010-2011 Ronnie Sahlberg <ronniesahlberg@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

#include "config-host.h"

#include <poll.h>
28
#include <arpa/inet.h>
R
Ronnie Sahlberg 已提交
29
#include "qemu-common.h"
30 31
#include "qemu/config-file.h"
#include "qemu/error-report.h"
32
#include "block/block_int.h"
R
Ronnie Sahlberg 已提交
33
#include "trace.h"
P
Paolo Bonzini 已提交
34
#include "block/scsi.h"
35
#include "qemu/iov.h"
36 37
#include "sysemu/sysemu.h"
#include "qmp-commands.h"
R
Ronnie Sahlberg 已提交
38 39 40 41

#include <iscsi/iscsi.h>
#include <iscsi/scsi-lowlevel.h>

42 43
#ifdef __linux__
#include <scsi/sg.h>
P
Paolo Bonzini 已提交
44
#include <block/scsi.h>
45
#endif
R
Ronnie Sahlberg 已提交
46 47 48 49

typedef struct IscsiLun {
    struct iscsi_context *iscsi;
    int lun;
50
    enum scsi_inquiry_peripheral_device_type type;
R
Ronnie Sahlberg 已提交
51
    int block_size;
52
    uint64_t num_blocks;
53
    int events;
54
    QEMUTimer *nop_timer;
55 56 57 58
    uint8_t lbpme;
    uint8_t lbprz;
    struct scsi_inquiry_logical_block_provisioning lbp;
    struct scsi_inquiry_block_limits bl;
R
Ronnie Sahlberg 已提交
59 60
} IscsiLun;

P
Peter Lieven 已提交
61 62 63 64 65 66 67 68 69
typedef struct IscsiTask {
    int status;
    int complete;
    int retries;
    int do_retry;
    struct scsi_task *task;
    Coroutine *co;
} IscsiTask;

R
Ronnie Sahlberg 已提交
70 71 72 73 74 75 76 77 78
typedef struct IscsiAIOCB {
    BlockDriverAIOCB common;
    QEMUIOVector *qiov;
    QEMUBH *bh;
    IscsiLun *iscsilun;
    struct scsi_task *task;
    uint8_t *buf;
    int status;
    int canceled;
79 80 81
    int retries;
    int64_t sector_num;
    int nb_sectors;
82 83 84
#ifdef __linux__
    sg_io_hdr_t *ioh;
#endif
R
Ronnie Sahlberg 已提交
85 86
} IscsiAIOCB;

87 88
#define NOP_INTERVAL 5000
#define MAX_NOP_FAILURES 3
89
#define ISCSI_CMD_RETRIES 5
90
#define ISCSI_MAX_UNMAP 131072
91

92
static void
93
iscsi_bh_cb(void *p)
94 95 96 97 98
{
    IscsiAIOCB *acb = p;

    qemu_bh_delete(acb->bh);

99 100 101
    g_free(acb->buf);
    acb->buf = NULL;

102 103 104 105
    if (acb->canceled == 0) {
        acb->common.cb(acb->common.opaque, acb->status);
    }

106 107 108 109 110
    if (acb->task != NULL) {
        scsi_free_scsi_task(acb->task);
        acb->task = NULL;
    }

111 112 113
    qemu_aio_release(acb);
}

114 115
static void
iscsi_schedule_bh(IscsiAIOCB *acb)
116
{
117 118 119
    if (acb->bh) {
        return;
    }
120
    acb->bh = qemu_bh_new(iscsi_bh_cb, acb);
121 122 123
    qemu_bh_schedule(acb->bh);
}

P
Peter Lieven 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
static void
iscsi_co_generic_cb(struct iscsi_context *iscsi, int status,
                        void *command_data, void *opaque)
{
    struct IscsiTask *iTask = opaque;
    struct scsi_task *task = command_data;

    iTask->complete = 1;
    iTask->status = status;
    iTask->do_retry = 0;
    iTask->task = task;

    if (iTask->retries-- > 0 && status == SCSI_STATUS_CHECK_CONDITION
        && task->sense.key == SCSI_SENSE_UNIT_ATTENTION) {
        iTask->do_retry = 1;
        goto out;
    }

    if (status != SCSI_STATUS_GOOD) {
        error_report("iSCSI: Failure. %s", iscsi_get_error(iscsi));
    }

out:
    if (iTask->co) {
        qemu_coroutine_enter(iTask->co, NULL);
    }
}

static void iscsi_co_init_iscsitask(IscsiLun *iscsilun, struct IscsiTask *iTask)
{
    *iTask = (struct IscsiTask) {
        .co         = qemu_coroutine_self(),
        .retries    = ISCSI_CMD_RETRIES,
    };
}
159

R
Ronnie Sahlberg 已提交
160 161 162 163
static void
iscsi_abort_task_cb(struct iscsi_context *iscsi, int status, void *command_data,
                    void *private_data)
{
164 165 166 167
    IscsiAIOCB *acb = private_data;

    acb->status = -ECANCELED;
    iscsi_schedule_bh(acb);
R
Ronnie Sahlberg 已提交
168 169 170 171 172 173 174 175
}

static void
iscsi_aio_cancel(BlockDriverAIOCB *blockacb)
{
    IscsiAIOCB *acb = (IscsiAIOCB *)blockacb;
    IscsiLun *iscsilun = acb->iscsilun;

176 177 178 179
    if (acb->status != -EINPROGRESS) {
        return;
    }

180
    acb->canceled = 1;
R
Ronnie Sahlberg 已提交
181

182
    /* send a task mgmt call to the target to cancel the task on the target */
183
    iscsi_task_mgmt_abort_task_async(iscsilun->iscsi, acb->task,
184
                                     iscsi_abort_task_cb, acb);
185

186 187 188
    while (acb->status == -EINPROGRESS) {
        qemu_aio_wait();
    }
R
Ronnie Sahlberg 已提交
189 190
}

S
Stefan Hajnoczi 已提交
191
static const AIOCBInfo iscsi_aiocb_info = {
R
Ronnie Sahlberg 已提交
192 193 194 195 196 197 198 199 200 201 202 203
    .aiocb_size         = sizeof(IscsiAIOCB),
    .cancel             = iscsi_aio_cancel,
};


static void iscsi_process_read(void *arg);
static void iscsi_process_write(void *arg);

static void
iscsi_set_events(IscsiLun *iscsilun)
{
    struct iscsi_context *iscsi = iscsilun->iscsi;
204 205 206 207 208 209 210 211 212 213 214 215 216 217
    int ev;

    /* We always register a read handler.  */
    ev = POLLIN;
    ev |= iscsi_which_events(iscsi);
    if (ev != iscsilun->events) {
        qemu_aio_set_fd_handler(iscsi_get_fd(iscsi),
                      iscsi_process_read,
                      (ev & POLLOUT) ? iscsi_process_write : NULL,
                      iscsilun);

    }

    iscsilun->events = ev;
R
Ronnie Sahlberg 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
}

static void
iscsi_process_read(void *arg)
{
    IscsiLun *iscsilun = arg;
    struct iscsi_context *iscsi = iscsilun->iscsi;

    iscsi_service(iscsi, POLLIN);
    iscsi_set_events(iscsilun);
}

static void
iscsi_process_write(void *arg)
{
    IscsiLun *iscsilun = arg;
    struct iscsi_context *iscsi = iscsilun->iscsi;

    iscsi_service(iscsi, POLLOUT);
    iscsi_set_events(iscsilun);
}

240 241
static int
iscsi_aio_writev_acb(IscsiAIOCB *acb);
R
Ronnie Sahlberg 已提交
242 243

static void
244
iscsi_aio_write16_cb(struct iscsi_context *iscsi, int status,
R
Ronnie Sahlberg 已提交
245 246 247 248
                     void *command_data, void *opaque)
{
    IscsiAIOCB *acb = opaque;

249
    trace_iscsi_aio_write16_cb(iscsi, status, acb, acb->canceled);
R
Ronnie Sahlberg 已提交
250 251

    g_free(acb->buf);
252
    acb->buf = NULL;
R
Ronnie Sahlberg 已提交
253

254
    if (acb->canceled != 0) {
R
Ronnie Sahlberg 已提交
255 256 257 258
        return;
    }

    acb->status = 0;
259 260 261 262
    if (status != 0) {
        if (status == SCSI_STATUS_CHECK_CONDITION
            && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
            && acb->retries-- > 0) {
P
Paolo Bonzini 已提交
263 264
            scsi_free_scsi_task(acb->task);
            acb->task = NULL;
265 266 267 268 269
            if (iscsi_aio_writev_acb(acb) == 0) {
                iscsi_set_events(acb->iscsilun);
                return;
            }
        }
270
        error_report("Failed to write16 data to iSCSI lun. %s",
R
Ronnie Sahlberg 已提交
271 272 273 274
                     iscsi_get_error(iscsi));
        acb->status = -EIO;
    }

275
    iscsi_schedule_bh(acb);
R
Ronnie Sahlberg 已提交
276 277
}

278 279 280 281 282
static int64_t sector_lun2qemu(int64_t sector, IscsiLun *iscsilun)
{
    return sector * iscsilun->block_size / BDRV_SECTOR_SIZE;
}

R
Ronnie Sahlberg 已提交
283 284 285 286 287
static int64_t sector_qemu2lun(int64_t sector, IscsiLun *iscsilun)
{
    return sector * BDRV_SECTOR_SIZE / iscsilun->block_size;
}

288 289 290 291 292
static bool is_request_lun_aligned(int64_t sector_num, int nb_sectors,
                                      IscsiLun *iscsilun)
{
    if ((sector_num * BDRV_SECTOR_SIZE) % iscsilun->block_size ||
        (nb_sectors * BDRV_SECTOR_SIZE) % iscsilun->block_size) {
293 294 295
            error_report("iSCSI misaligned request: "
                         "iscsilun->block_size %u, sector_num %" PRIi64
                         ", nb_sectors %d",
296 297 298 299 300 301
                         iscsilun->block_size, sector_num, nb_sectors);
            return 0;
    }
    return 1;
}

302 303
static int
iscsi_aio_writev_acb(IscsiAIOCB *acb)
R
Ronnie Sahlberg 已提交
304
{
305
    struct iscsi_context *iscsi = acb->iscsilun->iscsi;
R
Ronnie Sahlberg 已提交
306
    size_t size;
307 308
    uint32_t num_sectors;
    uint64_t lba;
P
Peter Lieven 已提交
309
#if !defined(LIBISCSI_FEATURE_IOVECTOR)
310
    struct iscsi_data data;
P
Peter Lieven 已提交
311 312
#endif
    int ret;
R
Ronnie Sahlberg 已提交
313 314

    acb->canceled   = 0;
315 316
    acb->bh         = NULL;
    acb->status     = -EINPROGRESS;
317
    acb->buf        = NULL;
R
Ronnie Sahlberg 已提交
318 319

    /* this will allow us to get rid of 'buf' completely */
320
    size = acb->nb_sectors * BDRV_SECTOR_SIZE;
P
Peter Lieven 已提交
321 322

#if !defined(LIBISCSI_FEATURE_IOVECTOR)
323 324 325 326 327 328 329 330 331 332
    data.size = MIN(size, acb->qiov->size);

    /* if the iovec only contains one buffer we can pass it directly */
    if (acb->qiov->niov == 1) {
        data.data = acb->qiov->iov[0].iov_base;
    } else {
        acb->buf = g_malloc(data.size);
        qemu_iovec_to_buf(acb->qiov, 0, acb->buf, data.size);
        data.data = acb->buf;
    }
P
Peter Lieven 已提交
333
#endif
334 335

    acb->task = malloc(sizeof(struct scsi_task));
R
Ronnie Sahlberg 已提交
336
    if (acb->task == NULL) {
337 338
        error_report("iSCSI: Failed to allocate task for scsi WRITE16 "
                     "command. %s", iscsi_get_error(iscsi));
339
        return -1;
340 341 342 343 344 345
    }
    memset(acb->task, 0, sizeof(struct scsi_task));

    acb->task->xfer_dir = SCSI_XFER_WRITE;
    acb->task->cdb_size = 16;
    acb->task->cdb[0] = 0x8a;
346
    lba = sector_qemu2lun(acb->sector_num, acb->iscsilun);
347 348
    *(uint32_t *)&acb->task->cdb[2]  = htonl(lba >> 32);
    *(uint32_t *)&acb->task->cdb[6]  = htonl(lba & 0xffffffff);
349
    num_sectors = sector_qemu2lun(acb->nb_sectors, acb->iscsilun);
350 351 352
    *(uint32_t *)&acb->task->cdb[10] = htonl(num_sectors);
    acb->task->expxferlen = size;

P
Peter Lieven 已提交
353
#if defined(LIBISCSI_FEATURE_IOVECTOR)
354
    ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
P
Peter Lieven 已提交
355 356 357 358
                                   iscsi_aio_write16_cb,
                                   NULL,
                                   acb);
#else
359
    ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
P
Peter Lieven 已提交
360 361 362 363 364
                                   iscsi_aio_write16_cb,
                                   &data,
                                   acb);
#endif
    if (ret != 0) {
P
Paolo Bonzini 已提交
365
        scsi_free_scsi_task(acb->task);
R
Ronnie Sahlberg 已提交
366
        g_free(acb->buf);
367
        return -1;
R
Ronnie Sahlberg 已提交
368 369
    }

P
Peter Lieven 已提交
370 371 372 373
#if defined(LIBISCSI_FEATURE_IOVECTOR)
    scsi_task_set_iov_out(acb->task, (struct scsi_iovec*) acb->qiov->iov, acb->qiov->niov);
#endif

374 375 376 377 378 379 380 381 382 383 384
    return 0;
}

static BlockDriverAIOCB *
iscsi_aio_writev(BlockDriverState *bs, int64_t sector_num,
                 QEMUIOVector *qiov, int nb_sectors,
                 BlockDriverCompletionFunc *cb,
                 void *opaque)
{
    IscsiLun *iscsilun = bs->opaque;
    IscsiAIOCB *acb;
R
Ronnie Sahlberg 已提交
385

386 387 388 389
    if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) {
        return NULL;
    }

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
    acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
    trace_iscsi_aio_writev(iscsilun->iscsi, sector_num, nb_sectors, opaque, acb);

    acb->iscsilun    = iscsilun;
    acb->qiov        = qiov;
    acb->nb_sectors  = nb_sectors;
    acb->sector_num  = sector_num;
    acb->retries     = ISCSI_CMD_RETRIES;

    if (iscsi_aio_writev_acb(acb) != 0) {
        qemu_aio_release(acb);
        return NULL;
    }

    iscsi_set_events(iscsilun);
R
Ronnie Sahlberg 已提交
405 406 407
    return &acb->common;
}

408 409 410
static int
iscsi_aio_readv_acb(IscsiAIOCB *acb);

R
Ronnie Sahlberg 已提交
411
static void
412
iscsi_aio_read16_cb(struct iscsi_context *iscsi, int status,
R
Ronnie Sahlberg 已提交
413 414 415 416
                    void *command_data, void *opaque)
{
    IscsiAIOCB *acb = opaque;

417
    trace_iscsi_aio_read16_cb(iscsi, status, acb, acb->canceled);
R
Ronnie Sahlberg 已提交
418

419
    if (acb->canceled != 0) {
R
Ronnie Sahlberg 已提交
420 421 422 423 424
        return;
    }

    acb->status = 0;
    if (status != 0) {
425 426 427
        if (status == SCSI_STATUS_CHECK_CONDITION
            && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
            && acb->retries-- > 0) {
P
Paolo Bonzini 已提交
428 429
            scsi_free_scsi_task(acb->task);
            acb->task = NULL;
430 431 432 433 434
            if (iscsi_aio_readv_acb(acb) == 0) {
                iscsi_set_events(acb->iscsilun);
                return;
            }
        }
435
        error_report("Failed to read16 data from iSCSI lun. %s",
R
Ronnie Sahlberg 已提交
436 437 438 439
                     iscsi_get_error(iscsi));
        acb->status = -EIO;
    }

440
    iscsi_schedule_bh(acb);
R
Ronnie Sahlberg 已提交
441 442
}

443 444
static int
iscsi_aio_readv_acb(IscsiAIOCB *acb)
R
Ronnie Sahlberg 已提交
445
{
446
    struct iscsi_context *iscsi = acb->iscsilun->iscsi;
447
    size_t size;
448 449 450
    uint64_t lba;
    uint32_t num_sectors;
    int ret;
P
Peter Lieven 已提交
451
#if !defined(LIBISCSI_FEATURE_IOVECTOR)
R
Ronnie Sahlberg 已提交
452
    int i;
P
Peter Lieven 已提交
453
#endif
R
Ronnie Sahlberg 已提交
454 455

    acb->canceled    = 0;
456 457
    acb->bh          = NULL;
    acb->status      = -EINPROGRESS;
R
Ronnie Sahlberg 已提交
458 459
    acb->buf         = NULL;

460
    size = acb->nb_sectors * BDRV_SECTOR_SIZE;
461 462

    acb->task = malloc(sizeof(struct scsi_task));
R
Ronnie Sahlberg 已提交
463
    if (acb->task == NULL) {
464 465
        error_report("iSCSI: Failed to allocate task for scsi READ16 "
                     "command. %s", iscsi_get_error(iscsi));
466
        return -1;
467 468 469 470
    }
    memset(acb->task, 0, sizeof(struct scsi_task));

    acb->task->xfer_dir = SCSI_XFER_READ;
471
    acb->task->expxferlen = size;
472
    lba = sector_qemu2lun(acb->sector_num, acb->iscsilun);
473
    num_sectors = sector_qemu2lun(acb->nb_sectors, acb->iscsilun);
474

475
    switch (acb->iscsilun->type) {
476 477 478 479 480 481 482 483 484 485 486 487 488 489
    case TYPE_DISK:
        acb->task->cdb_size = 16;
        acb->task->cdb[0]  = 0x88;
        *(uint32_t *)&acb->task->cdb[2]  = htonl(lba >> 32);
        *(uint32_t *)&acb->task->cdb[6]  = htonl(lba & 0xffffffff);
        *(uint32_t *)&acb->task->cdb[10] = htonl(num_sectors);
        break;
    default:
        acb->task->cdb_size = 10;
        acb->task->cdb[0]  = 0x28;
        *(uint32_t *)&acb->task->cdb[2] = htonl(lba);
        *(uint16_t *)&acb->task->cdb[7] = htons(num_sectors);
        break;
    }
P
Peter Lieven 已提交
490

491
    ret = iscsi_scsi_command_async(iscsi, acb->iscsilun->lun, acb->task,
P
Peter Lieven 已提交
492 493 494 495
                                   iscsi_aio_read16_cb,
                                   NULL,
                                   acb);
    if (ret != 0) {
P
Paolo Bonzini 已提交
496
        scsi_free_scsi_task(acb->task);
497
        return -1;
R
Ronnie Sahlberg 已提交
498 499
    }

P
Peter Lieven 已提交
500 501 502
#if defined(LIBISCSI_FEATURE_IOVECTOR)
    scsi_task_set_iov_in(acb->task, (struct scsi_iovec*) acb->qiov->iov, acb->qiov->niov);
#else
R
Ronnie Sahlberg 已提交
503 504 505 506 507
    for (i = 0; i < acb->qiov->niov; i++) {
        scsi_task_add_data_in_buffer(acb->task,
                acb->qiov->iov[i].iov_len,
                acb->qiov->iov[i].iov_base);
    }
P
Peter Lieven 已提交
508
#endif
509 510
    return 0;
}
R
Ronnie Sahlberg 已提交
511

512 513 514 515 516 517 518 519 520
static BlockDriverAIOCB *
iscsi_aio_readv(BlockDriverState *bs, int64_t sector_num,
                QEMUIOVector *qiov, int nb_sectors,
                BlockDriverCompletionFunc *cb,
                void *opaque)
{
    IscsiLun *iscsilun = bs->opaque;
    IscsiAIOCB *acb;

521 522 523 524
    if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) {
        return NULL;
    }

525 526 527 528 529 530 531 532 533 534 535 536 537
    acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
    trace_iscsi_aio_readv(iscsilun->iscsi, sector_num, nb_sectors, opaque, acb);

    acb->nb_sectors  = nb_sectors;
    acb->sector_num  = sector_num;
    acb->iscsilun    = iscsilun;
    acb->qiov        = qiov;
    acb->retries     = ISCSI_CMD_RETRIES;

    if (iscsi_aio_readv_acb(acb) != 0) {
        qemu_aio_release(acb);
        return NULL;
    }
R
Ronnie Sahlberg 已提交
538

539
    iscsi_set_events(iscsilun);
R
Ronnie Sahlberg 已提交
540 541 542
    return &acb->common;
}

543 544
static int
iscsi_aio_flush_acb(IscsiAIOCB *acb);
R
Ronnie Sahlberg 已提交
545 546 547 548 549 550 551

static void
iscsi_synccache10_cb(struct iscsi_context *iscsi, int status,
                     void *command_data, void *opaque)
{
    IscsiAIOCB *acb = opaque;

552
    if (acb->canceled != 0) {
R
Ronnie Sahlberg 已提交
553 554 555 556
        return;
    }

    acb->status = 0;
557 558 559 560
    if (status != 0) {
        if (status == SCSI_STATUS_CHECK_CONDITION
            && acb->task->sense.key == SCSI_SENSE_UNIT_ATTENTION
            && acb->retries-- > 0) {
P
Paolo Bonzini 已提交
561 562
            scsi_free_scsi_task(acb->task);
            acb->task = NULL;
563 564 565 566 567
            if (iscsi_aio_flush_acb(acb) == 0) {
                iscsi_set_events(acb->iscsilun);
                return;
            }
        }
R
Ronnie Sahlberg 已提交
568 569 570 571 572
        error_report("Failed to sync10 data on iSCSI lun. %s",
                     iscsi_get_error(iscsi));
        acb->status = -EIO;
    }

573
    iscsi_schedule_bh(acb);
R
Ronnie Sahlberg 已提交
574 575
}

576 577
static int
iscsi_aio_flush_acb(IscsiAIOCB *acb)
R
Ronnie Sahlberg 已提交
578
{
579
    struct iscsi_context *iscsi = acb->iscsilun->iscsi;
R
Ronnie Sahlberg 已提交
580 581

    acb->canceled   = 0;
582 583
    acb->bh         = NULL;
    acb->status     = -EINPROGRESS;
584
    acb->buf        = NULL;
R
Ronnie Sahlberg 已提交
585

586
    acb->task = iscsi_synchronizecache10_task(iscsi, acb->iscsilun->lun,
R
Ronnie Sahlberg 已提交
587 588 589 590 591 592
                                         0, 0, 0, 0,
                                         iscsi_synccache10_cb,
                                         acb);
    if (acb->task == NULL) {
        error_report("iSCSI: Failed to send synchronizecache10 command. %s",
                     iscsi_get_error(iscsi));
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
        return -1;
    }

    return 0;
}

static BlockDriverAIOCB *
iscsi_aio_flush(BlockDriverState *bs,
                BlockDriverCompletionFunc *cb, void *opaque)
{
    IscsiLun *iscsilun = bs->opaque;

    IscsiAIOCB *acb;

    acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);

    acb->iscsilun    = iscsilun;
    acb->retries     = ISCSI_CMD_RETRIES;

    if (iscsi_aio_flush_acb(acb) != 0) {
R
Ronnie Sahlberg 已提交
613 614 615 616 617 618 619 620 621
        qemu_aio_release(acb);
        return NULL;
    }

    iscsi_set_events(iscsilun);

    return &acb->common;
}

622 623 624 625 626 627 628
#ifdef __linux__
static void
iscsi_aio_ioctl_cb(struct iscsi_context *iscsi, int status,
                     void *command_data, void *opaque)
{
    IscsiAIOCB *acb = opaque;

629 630 631
    g_free(acb->buf);
    acb->buf = NULL;

632
    if (acb->canceled != 0) {
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
        return;
    }

    acb->status = 0;
    if (status < 0) {
        error_report("Failed to ioctl(SG_IO) to iSCSI lun. %s",
                     iscsi_get_error(iscsi));
        acb->status = -EIO;
    }

    acb->ioh->driver_status = 0;
    acb->ioh->host_status   = 0;
    acb->ioh->resid         = 0;

#define SG_ERR_DRIVER_SENSE    0x08

    if (status == SCSI_STATUS_CHECK_CONDITION && acb->task->datain.size >= 2) {
        int ss;

        acb->ioh->driver_status |= SG_ERR_DRIVER_SENSE;

        acb->ioh->sb_len_wr = acb->task->datain.size - 2;
        ss = (acb->ioh->mx_sb_len >= acb->ioh->sb_len_wr) ?
             acb->ioh->mx_sb_len : acb->ioh->sb_len_wr;
        memcpy(acb->ioh->sbp, &acb->task->datain.data[2], ss);
    }

660
    iscsi_schedule_bh(acb);
661 662 663 664 665 666 667 668 669 670 671 672 673
}

static BlockDriverAIOCB *iscsi_aio_ioctl(BlockDriverState *bs,
        unsigned long int req, void *buf,
        BlockDriverCompletionFunc *cb, void *opaque)
{
    IscsiLun *iscsilun = bs->opaque;
    struct iscsi_context *iscsi = iscsilun->iscsi;
    struct iscsi_data data;
    IscsiAIOCB *acb;

    assert(req == SG_IO);

S
Stefan Hajnoczi 已提交
674
    acb = qemu_aio_get(&iscsi_aiocb_info, bs, cb, opaque);
675 676 677

    acb->iscsilun = iscsilun;
    acb->canceled    = 0;
678 679
    acb->bh          = NULL;
    acb->status      = -EINPROGRESS;
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
    acb->buf         = NULL;
    acb->ioh         = buf;

    acb->task = malloc(sizeof(struct scsi_task));
    if (acb->task == NULL) {
        error_report("iSCSI: Failed to allocate task for scsi command. %s",
                     iscsi_get_error(iscsi));
        qemu_aio_release(acb);
        return NULL;
    }
    memset(acb->task, 0, sizeof(struct scsi_task));

    switch (acb->ioh->dxfer_direction) {
    case SG_DXFER_TO_DEV:
        acb->task->xfer_dir = SCSI_XFER_WRITE;
        break;
    case SG_DXFER_FROM_DEV:
        acb->task->xfer_dir = SCSI_XFER_READ;
        break;
    default:
        acb->task->xfer_dir = SCSI_XFER_NONE;
        break;
    }

    acb->task->cdb_size = acb->ioh->cmd_len;
    memcpy(&acb->task->cdb[0], acb->ioh->cmdp, acb->ioh->cmd_len);
    acb->task->expxferlen = acb->ioh->dxfer_len;

708
    data.size = 0;
709
    if (acb->task->xfer_dir == SCSI_XFER_WRITE) {
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
        if (acb->ioh->iovec_count == 0) {
            data.data = acb->ioh->dxferp;
            data.size = acb->ioh->dxfer_len;
        } else {
#if defined(LIBISCSI_FEATURE_IOVECTOR)
            scsi_task_set_iov_out(acb->task,
                                 (struct scsi_iovec *) acb->ioh->dxferp,
                                 acb->ioh->iovec_count);
#else
            struct iovec *iov = (struct iovec *)acb->ioh->dxferp;

            acb->buf = g_malloc(acb->ioh->dxfer_len);
            data.data = acb->buf;
            data.size = iov_to_buf(iov, acb->ioh->iovec_count, 0,
                                   acb->buf, acb->ioh->dxfer_len);
#endif
        }
727
    }
728

729 730
    if (iscsi_scsi_command_async(iscsi, iscsilun->lun, acb->task,
                                 iscsi_aio_ioctl_cb,
731
                                 (data.size > 0) ? &data : NULL,
732 733 734 735 736 737 738 739
                                 acb) != 0) {
        scsi_free_scsi_task(acb->task);
        qemu_aio_release(acb);
        return NULL;
    }

    /* tell libiscsi to read straight into the buffer we got from ioctl */
    if (acb->task->xfer_dir == SCSI_XFER_READ) {
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
        if (acb->ioh->iovec_count == 0) {
            scsi_task_add_data_in_buffer(acb->task,
                                         acb->ioh->dxfer_len,
                                         acb->ioh->dxferp);
        } else {
#if defined(LIBISCSI_FEATURE_IOVECTOR)
            scsi_task_set_iov_in(acb->task,
                                 (struct scsi_iovec *) acb->ioh->dxferp,
                                 acb->ioh->iovec_count);
#else
            int i;
            for (i = 0; i < acb->ioh->iovec_count; i++) {
                struct iovec *iov = (struct iovec *)acb->ioh->dxferp;

                scsi_task_add_data_in_buffer(acb->task,
                    iov[i].iov_len,
                    iov[i].iov_base);
            }
#endif
        }
760 761 762 763 764 765 766
    }

    iscsi_set_events(iscsilun);

    return &acb->common;
}

767 768 769 770 771 772 773

static void ioctl_cb(void *opaque, int status)
{
    int *p_status = opaque;
    *p_status = status;
}

774 775 776
static int iscsi_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
{
    IscsiLun *iscsilun = bs->opaque;
777
    int status;
778 779 780 781 782 783 784 785

    switch (req) {
    case SG_GET_VERSION_NUM:
        *(int *)buf = 30000;
        break;
    case SG_GET_SCSI_ID:
        ((struct sg_scsi_id *)buf)->scsi_type = iscsilun->type;
        break;
786 787 788 789 790 791 792 793 794
    case SG_IO:
        status = -EINPROGRESS;
        iscsi_aio_ioctl(bs, req, buf, ioctl_cb, &status);

        while (status == -EINPROGRESS) {
            qemu_aio_wait();
        }

        return 0;
795 796 797 798 799 800 801
    default:
        return -1;
    }
    return 0;
}
#endif

R
Ronnie Sahlberg 已提交
802 803 804 805 806 807 808 809 810 811 812 813
static int64_t
iscsi_getlength(BlockDriverState *bs)
{
    IscsiLun *iscsilun = bs->opaque;
    int64_t len;

    len  = iscsilun->num_blocks;
    len *= iscsilun->block_size;

    return len;
}

814
#if defined(LIBISCSI_FEATURE_IOVECTOR)
815

P
Peter Lieven 已提交
816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
static int64_t coroutine_fn iscsi_co_get_block_status(BlockDriverState *bs,
                                                  int64_t sector_num,
                                                  int nb_sectors, int *pnum)
{
    IscsiLun *iscsilun = bs->opaque;
    struct scsi_get_lba_status *lbas = NULL;
    struct scsi_lba_status_descriptor *lbasd = NULL;
    struct IscsiTask iTask;
    int64_t ret;

    iscsi_co_init_iscsitask(iscsilun, &iTask);

    if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) {
        ret = -EINVAL;
        goto out;
    }

    /* default to all sectors allocated */
    ret = BDRV_BLOCK_DATA;
    ret |= (sector_num << BDRV_SECTOR_BITS) | BDRV_BLOCK_OFFSET_VALID;
    *pnum = nb_sectors;

    /* LUN does not support logical block provisioning */
    if (iscsilun->lbpme == 0) {
        goto out;
    }

retry:
    if (iscsi_get_lba_status_task(iscsilun->iscsi, iscsilun->lun,
                                  sector_qemu2lun(sector_num, iscsilun),
                                  8 + 16, iscsi_co_generic_cb,
                                  &iTask) == NULL) {
        ret = -EIO;
        goto out;
    }

    while (!iTask.complete) {
        iscsi_set_events(iscsilun);
        qemu_coroutine_yield();
    }

    if (iTask.do_retry) {
        if (iTask.task != NULL) {
            scsi_free_scsi_task(iTask.task);
            iTask.task = NULL;
        }
        goto retry;
    }

    if (iTask.status != SCSI_STATUS_GOOD) {
        /* in case the get_lba_status_callout fails (i.e.
         * because the device is busy or the cmd is not
         * supported) we pretend all blocks are allocated
S
Stefan Weil 已提交
869
         * for backwards compatibility */
P
Peter Lieven 已提交
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
        goto out;
    }

    lbas = scsi_datain_unmarshall(iTask.task);
    if (lbas == NULL) {
        ret = -EIO;
        goto out;
    }

    lbasd = &lbas->descriptors[0];

    if (sector_qemu2lun(sector_num, iscsilun) != lbasd->lba) {
        ret = -EIO;
        goto out;
    }

    *pnum = sector_lun2qemu(lbasd->num_blocks, iscsilun);
    if (*pnum > nb_sectors) {
        *pnum = nb_sectors;
    }

    if (lbasd->provisioning == SCSI_PROVISIONING_TYPE_DEALLOCATED ||
        lbasd->provisioning == SCSI_PROVISIONING_TYPE_ANCHORED) {
        ret &= ~BDRV_BLOCK_DATA;
        if (iscsilun->lbprz) {
            ret |= BDRV_BLOCK_ZERO;
        }
    }

out:
    if (iTask.task != NULL) {
        scsi_free_scsi_task(iTask.task);
    }
    return ret;
}

906
#endif /* LIBISCSI_FEATURE_IOVECTOR */
907

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
static int
coroutine_fn iscsi_co_discard(BlockDriverState *bs, int64_t sector_num,
                                   int nb_sectors)
{
    IscsiLun *iscsilun = bs->opaque;
    struct IscsiTask iTask;
    struct unmap_list list;
    uint32_t nb_blocks;
    uint32_t max_unmap;

    if (!is_request_lun_aligned(sector_num, nb_sectors, iscsilun)) {
        return -EINVAL;
    }

    if (!iscsilun->lbp.lbpu) {
        /* UNMAP is not supported by the target */
        return 0;
    }

    list.lba = sector_qemu2lun(sector_num, iscsilun);
    nb_blocks = sector_qemu2lun(nb_sectors, iscsilun);

    max_unmap = iscsilun->bl.max_unmap;
    if (max_unmap == 0xffffffff) {
        max_unmap = ISCSI_MAX_UNMAP;
    }

    while (nb_blocks > 0) {
        iscsi_co_init_iscsitask(iscsilun, &iTask);
        list.num = nb_blocks;
        if (list.num > max_unmap) {
            list.num = max_unmap;
        }
retry:
        if (iscsi_unmap_task(iscsilun->iscsi, iscsilun->lun, 0, 0, &list, 1,
                         iscsi_co_generic_cb, &iTask) == NULL) {
            return -EIO;
        }

        while (!iTask.complete) {
            iscsi_set_events(iscsilun);
            qemu_coroutine_yield();
        }

        if (iTask.task != NULL) {
            scsi_free_scsi_task(iTask.task);
            iTask.task = NULL;
        }

        if (iTask.do_retry) {
            goto retry;
        }

        if (iTask.status == SCSI_STATUS_CHECK_CONDITION) {
            /* the target might fail with a check condition if it
               is not happy with the alignment of the UNMAP request
               we silently fail in this case */
            return 0;
        }

        if (iTask.status != SCSI_STATUS_GOOD) {
            return -EIO;
        }

        list.lba += list.num;
        nb_blocks -= list.num;
    }

    return 0;
}

979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
static int parse_chap(struct iscsi_context *iscsi, const char *target)
{
    QemuOptsList *list;
    QemuOpts *opts;
    const char *user = NULL;
    const char *password = NULL;

    list = qemu_find_opts("iscsi");
    if (!list) {
        return 0;
    }

    opts = qemu_opts_find(list, target);
    if (opts == NULL) {
        opts = QTAILQ_FIRST(&list->head);
        if (!opts) {
            return 0;
        }
    }

    user = qemu_opt_get(opts, "user");
    if (!user) {
        return 0;
    }

    password = qemu_opt_get(opts, "password");
    if (!password) {
        error_report("CHAP username specified but no password was given");
        return -1;
    }

    if (iscsi_set_initiator_username_pwd(iscsi, user, password)) {
        error_report("Failed to set initiator username and password");
        return -1;
    }

    return 0;
}

static void parse_header_digest(struct iscsi_context *iscsi, const char *target)
{
    QemuOptsList *list;
    QemuOpts *opts;
    const char *digest = NULL;

    list = qemu_find_opts("iscsi");
    if (!list) {
        return;
    }

    opts = qemu_opts_find(list, target);
    if (opts == NULL) {
        opts = QTAILQ_FIRST(&list->head);
        if (!opts) {
            return;
        }
    }

    digest = qemu_opt_get(opts, "header-digest");
    if (!digest) {
        return;
    }

    if (!strcmp(digest, "CRC32C")) {
        iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C);
    } else if (!strcmp(digest, "NONE")) {
        iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE);
    } else if (!strcmp(digest, "CRC32C-NONE")) {
        iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_CRC32C_NONE);
    } else if (!strcmp(digest, "NONE-CRC32C")) {
        iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C);
    } else {
        error_report("Invalid header-digest setting : %s", digest);
    }
}

static char *parse_initiator_name(const char *target)
{
    QemuOptsList *list;
    QemuOpts *opts;
1059 1060 1061
    const char *name;
    char *iscsi_name;
    UuidInfo *uuid_info;
1062 1063

    list = qemu_find_opts("iscsi");
1064 1065
    if (list) {
        opts = qemu_opts_find(list, target);
1066
        if (!opts) {
1067 1068 1069 1070
            opts = QTAILQ_FIRST(&list->head);
        }
        if (opts) {
            name = qemu_opt_get(opts, "initiator-name");
1071 1072 1073
            if (name) {
                return g_strdup(name);
            }
1074 1075 1076
        }
    }

1077 1078 1079
    uuid_info = qmp_query_uuid(NULL);
    if (strcmp(uuid_info->UUID, UUID_NONE) == 0) {
        name = qemu_get_vm_name();
1080
    } else {
1081
        name = uuid_info->UUID;
1082
    }
1083 1084 1085 1086
    iscsi_name = g_strdup_printf("iqn.2008-11.org.linux-kvm%s%s",
                                 name ? ":" : "", name ? name : "");
    qapi_free_UuidInfo(uuid_info);
    return iscsi_name;
1087 1088
}

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
#if defined(LIBISCSI_FEATURE_NOP_COUNTER)
static void iscsi_nop_timed_event(void *opaque)
{
    IscsiLun *iscsilun = opaque;

    if (iscsi_get_nops_in_flight(iscsilun->iscsi) > MAX_NOP_FAILURES) {
        error_report("iSCSI: NOP timeout. Reconnecting...");
        iscsi_reconnect(iscsilun->iscsi);
    }

    if (iscsi_nop_out_async(iscsilun->iscsi, NULL, NULL, 0, NULL) != 0) {
        error_report("iSCSI: failed to sent NOP-Out. Disabling NOP messages.");
        return;
    }

1104
    timer_mod(iscsilun->nop_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + NOP_INTERVAL);
1105 1106 1107 1108
    iscsi_set_events(iscsilun);
}
#endif

P
Peter Lieven 已提交
1109 1110 1111 1112 1113 1114 1115 1116
static int iscsi_readcapacity_sync(IscsiLun *iscsilun)
{
    struct scsi_task *task = NULL;
    struct scsi_readcapacity10 *rc10 = NULL;
    struct scsi_readcapacity16 *rc16 = NULL;
    int ret = 0;
    int retries = ISCSI_CMD_RETRIES; 

1117 1118 1119 1120
    do {
        if (task != NULL) {
            scsi_free_scsi_task(task);
            task = NULL;
P
Peter Lieven 已提交
1121
        }
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133

        switch (iscsilun->type) {
        case TYPE_DISK:
            task = iscsi_readcapacity16_sync(iscsilun->iscsi, iscsilun->lun);
            if (task != NULL && task->status == SCSI_STATUS_GOOD) {
                rc16 = scsi_datain_unmarshall(task);
                if (rc16 == NULL) {
                    error_report("iSCSI: Failed to unmarshall readcapacity16 data.");
                    ret = -EINVAL;
                } else {
                    iscsilun->block_size = rc16->block_length;
                    iscsilun->num_blocks = rc16->returned_lba + 1;
1134 1135
                    iscsilun->lbpme = rc16->lbpme;
                    iscsilun->lbprz = rc16->lbprz;
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
                }
            }
            break;
        case TYPE_ROM:
            task = iscsi_readcapacity10_sync(iscsilun->iscsi, iscsilun->lun, 0, 0);
            if (task != NULL && task->status == SCSI_STATUS_GOOD) {
                rc10 = scsi_datain_unmarshall(task);
                if (rc10 == NULL) {
                    error_report("iSCSI: Failed to unmarshall readcapacity10 data.");
                    ret = -EINVAL;
                } else {
                    iscsilun->block_size = rc10->block_size;
                    if (rc10->lba == 0) {
                        /* blank disk loaded */
                        iscsilun->num_blocks = 0;
                    } else {
                        iscsilun->num_blocks = rc10->lba + 1;
                    }
                }
            }
            break;
        default:
            return 0;
P
Peter Lieven 已提交
1159
        }
1160 1161 1162
    } while (task != NULL && task->status == SCSI_STATUS_CHECK_CONDITION
             && task->sense.key == SCSI_SENSE_UNIT_ATTENTION
             && retries-- > 0);
P
Peter Lieven 已提交
1163

1164 1165 1166 1167
    if (task == NULL || task->status != SCSI_STATUS_GOOD) {
        error_report("iSCSI: failed to send readcapacity10 command.");
        ret = -EINVAL;
    }
P
Peter Lieven 已提交
1168 1169 1170 1171 1172 1173
    if (task) {
        scsi_free_scsi_task(task);
    }
    return ret;
}

1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
/* TODO Convert to fine grained options */
static QemuOptsList runtime_opts = {
    .name = "iscsi",
    .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
    .desc = {
        {
            .name = "filename",
            .type = QEMU_OPT_STRING,
            .help = "URL to the iscsi image",
        },
        { /* end of list */ }
    },
};

1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
static struct scsi_task *iscsi_do_inquiry(struct iscsi_context *iscsi,
                                          int lun, int evpd, int pc) {
        int full_size;
        struct scsi_task *task = NULL;
        task = iscsi_inquiry_sync(iscsi, lun, evpd, pc, 64);
        if (task == NULL || task->status != SCSI_STATUS_GOOD) {
            goto fail;
        }
        full_size = scsi_datain_getfullsize(task);
        if (full_size > task->datain.size) {
            scsi_free_scsi_task(task);

            /* we need more data for the full list */
            task = iscsi_inquiry_sync(iscsi, lun, evpd, pc, full_size);
            if (task == NULL || task->status != SCSI_STATUS_GOOD) {
                goto fail;
            }
        }

        return task;

fail:
        error_report("iSCSI: Inquiry command failed : %s",
                     iscsi_get_error(iscsi));
        if (task) {
            scsi_free_scsi_task(task);
            return NULL;
        }
        return NULL;
}

R
Ronnie Sahlberg 已提交
1219 1220 1221 1222
/*
 * We support iscsi url's on the form
 * iscsi://[<username>%<password>@]<host>[:<port>]/<targetname>/<lun>
 */
M
Max Reitz 已提交
1223 1224
static int iscsi_open(BlockDriverState *bs, QDict *options, int flags,
                      Error **errp)
R
Ronnie Sahlberg 已提交
1225 1226 1227 1228
{
    IscsiLun *iscsilun = bs->opaque;
    struct iscsi_context *iscsi = NULL;
    struct iscsi_url *iscsi_url = NULL;
P
Peter Lieven 已提交
1229 1230
    struct scsi_task *task = NULL;
    struct scsi_inquiry_standard *inq = NULL;
1231
    char *initiator_name = NULL;
1232 1233 1234
    QemuOpts *opts;
    Error *local_err = NULL;
    const char *filename;
R
Ronnie Sahlberg 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243
    int ret;

    if ((BDRV_SECTOR_SIZE % 512) != 0) {
        error_report("iSCSI: Invalid BDRV_SECTOR_SIZE. "
                     "BDRV_SECTOR_SIZE(%lld) is not a multiple "
                     "of 512", BDRV_SECTOR_SIZE);
        return -EINVAL;
    }

1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
    opts = qemu_opts_create_nofail(&runtime_opts);
    qemu_opts_absorb_qdict(opts, options, &local_err);
    if (error_is_set(&local_err)) {
        qerror_report_err(local_err);
        error_free(local_err);
        ret = -EINVAL;
        goto out;
    }

    filename = qemu_opt_get(opts, "filename");


R
Ronnie Sahlberg 已提交
1256 1257
    iscsi_url = iscsi_parse_full_url(iscsi, filename);
    if (iscsi_url == NULL) {
P
Peter Lieven 已提交
1258
        error_report("Failed to parse URL : %s", filename);
R
Ronnie Sahlberg 已提交
1259
        ret = -EINVAL;
1260
        goto out;
R
Ronnie Sahlberg 已提交
1261 1262
    }

1263 1264 1265 1266 1267 1268 1269 1270
    memset(iscsilun, 0, sizeof(IscsiLun));

    initiator_name = parse_initiator_name(iscsi_url->target);

    iscsi = iscsi_create_context(initiator_name);
    if (iscsi == NULL) {
        error_report("iSCSI: Failed to create iSCSI context.");
        ret = -ENOMEM;
1271
        goto out;
1272 1273
    }

R
Ronnie Sahlberg 已提交
1274 1275 1276
    if (iscsi_set_targetname(iscsi, iscsi_url->target)) {
        error_report("iSCSI: Failed to set target name.");
        ret = -EINVAL;
1277
        goto out;
R
Ronnie Sahlberg 已提交
1278 1279 1280 1281 1282 1283 1284 1285
    }

    if (iscsi_url->user != NULL) {
        ret = iscsi_set_initiator_username_pwd(iscsi, iscsi_url->user,
                                              iscsi_url->passwd);
        if (ret != 0) {
            error_report("Failed to set initiator username and password");
            ret = -EINVAL;
1286
            goto out;
R
Ronnie Sahlberg 已提交
1287 1288
        }
    }
1289 1290 1291 1292 1293

    /* check if we got CHAP username/password via the options */
    if (parse_chap(iscsi, iscsi_url->target) != 0) {
        error_report("iSCSI: Failed to set CHAP user/password");
        ret = -EINVAL;
1294
        goto out;
1295 1296
    }

R
Ronnie Sahlberg 已提交
1297 1298 1299
    if (iscsi_set_session_type(iscsi, ISCSI_SESSION_NORMAL) != 0) {
        error_report("iSCSI: Failed to set session type to normal.");
        ret = -EINVAL;
1300
        goto out;
R
Ronnie Sahlberg 已提交
1301 1302 1303 1304
    }

    iscsi_set_header_digest(iscsi, ISCSI_HEADER_DIGEST_NONE_CRC32C);

1305 1306 1307
    /* check if we got HEADER_DIGEST via the options */
    parse_header_digest(iscsi, iscsi_url->target);

P
Peter Lieven 已提交
1308 1309 1310 1311 1312 1313
    if (iscsi_full_connect_sync(iscsi, iscsi_url->portal, iscsi_url->lun) != 0) {
        error_report("iSCSI: Failed to connect to LUN : %s",
            iscsi_get_error(iscsi));
        ret = -EINVAL;
        goto out;
    }
R
Ronnie Sahlberg 已提交
1314 1315 1316 1317

    iscsilun->iscsi = iscsi;
    iscsilun->lun   = iscsi_url->lun;

P
Peter Lieven 已提交
1318 1319 1320 1321
    task = iscsi_inquiry_sync(iscsi, iscsilun->lun, 0, 0, 36);

    if (task == NULL || task->status != SCSI_STATUS_GOOD) {
        error_report("iSCSI: failed to send inquiry command.");
R
Ronnie Sahlberg 已提交
1322
        ret = -EINVAL;
1323
        goto out;
R
Ronnie Sahlberg 已提交
1324 1325
    }

P
Peter Lieven 已提交
1326 1327 1328
    inq = scsi_datain_unmarshall(task);
    if (inq == NULL) {
        error_report("iSCSI: Failed to unmarshall inquiry data.");
R
Ronnie Sahlberg 已提交
1329
        ret = -EINVAL;
1330
        goto out;
R
Ronnie Sahlberg 已提交
1331
    }
1332

P
Peter Lieven 已提交
1333 1334
    iscsilun->type = inq->periperal_device_type;

P
Peter Lieven 已提交
1335 1336
    if ((ret = iscsi_readcapacity_sync(iscsilun)) != 0) {
        goto out;
P
Peter Lieven 已提交
1337
    }
1338
    bs->total_sectors = sector_lun2qemu(iscsilun->num_blocks, iscsilun);
P
Peter Lieven 已提交
1339

1340 1341 1342 1343 1344 1345 1346 1347 1348
    /* Medium changer or tape. We dont have any emulation for this so this must
     * be sg ioctl compatible. We force it to be sg, otherwise qemu will try
     * to read from the device to guess the image format.
     */
    if (iscsilun->type == TYPE_MEDIUM_CHANGER ||
        iscsilun->type == TYPE_TAPE) {
        bs->sg = 1;
    }

1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
    if (iscsilun->lbpme) {
        struct scsi_inquiry_logical_block_provisioning *inq_lbp;
        task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1,
                                SCSI_INQUIRY_PAGECODE_LOGICAL_BLOCK_PROVISIONING);
        if (task == NULL) {
            ret = -EINVAL;
            goto out;
        }
        inq_lbp = scsi_datain_unmarshall(task);
        if (inq_lbp == NULL) {
            error_report("iSCSI: failed to unmarshall inquiry datain blob");
            ret = -EINVAL;
            goto out;
        }
        memcpy(&iscsilun->lbp, inq_lbp,
               sizeof(struct scsi_inquiry_logical_block_provisioning));
        scsi_free_scsi_task(task);
        task = NULL;
    }

    if (iscsilun->lbp.lbpu || iscsilun->lbp.lbpws) {
        struct scsi_inquiry_block_limits *inq_bl;
        task = iscsi_do_inquiry(iscsilun->iscsi, iscsilun->lun, 1,
                                SCSI_INQUIRY_PAGECODE_BLOCK_LIMITS);
        if (task == NULL) {
            ret = -EINVAL;
            goto out;
        }
        inq_bl = scsi_datain_unmarshall(task);
        if (inq_bl == NULL) {
            error_report("iSCSI: failed to unmarshall inquiry datain blob");
            ret = -EINVAL;
            goto out;
        }
        memcpy(&iscsilun->bl, inq_bl,
               sizeof(struct scsi_inquiry_block_limits));
        scsi_free_scsi_task(task);
        task = NULL;
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400

        if (iscsilun->bl.max_unmap < 0xffffffff) {
            bs->bl.max_discard = sector_lun2qemu(iscsilun->bl.max_unmap,
                                                 iscsilun);
        }
        bs->bl.discard_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran,
                                                   iscsilun);

        if (iscsilun->bl.max_ws_len < 0xffffffff) {
            bs->bl.max_write_zeroes = sector_lun2qemu(iscsilun->bl.max_ws_len,
                                                      iscsilun);
        }
        bs->bl.write_zeroes_alignment = sector_lun2qemu(iscsilun->bl.opt_unmap_gran,
                                                        iscsilun);
1401 1402
    }

1403 1404
#if defined(LIBISCSI_FEATURE_NOP_COUNTER)
    /* Set up a timer for sending out iSCSI NOPs */
1405 1406
    iscsilun->nop_timer = timer_new_ms(QEMU_CLOCK_REALTIME, iscsi_nop_timed_event, iscsilun);
    timer_mod(iscsilun->nop_timer, qemu_clock_get_ms(QEMU_CLOCK_REALTIME) + NOP_INTERVAL);
1407 1408
#endif

1409
out:
1410
    qemu_opts_del(opts);
1411 1412 1413
    if (initiator_name != NULL) {
        g_free(initiator_name);
    }
R
Ronnie Sahlberg 已提交
1414 1415 1416
    if (iscsi_url != NULL) {
        iscsi_destroy_url(iscsi_url);
    }
P
Peter Lieven 已提交
1417 1418 1419
    if (task != NULL) {
        scsi_free_scsi_task(task);
    }
1420 1421 1422 1423 1424 1425

    if (ret) {
        if (iscsi != NULL) {
            iscsi_destroy_context(iscsi);
        }
        memset(iscsilun, 0, sizeof(IscsiLun));
R
Ronnie Sahlberg 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434
    }
    return ret;
}

static void iscsi_close(BlockDriverState *bs)
{
    IscsiLun *iscsilun = bs->opaque;
    struct iscsi_context *iscsi = iscsilun->iscsi;

1435
    if (iscsilun->nop_timer) {
1436 1437
        timer_del(iscsilun->nop_timer);
        timer_free(iscsilun->nop_timer);
1438
    }
S
Stefan Hajnoczi 已提交
1439
    qemu_aio_set_fd_handler(iscsi_get_fd(iscsi), NULL, NULL, NULL);
R
Ronnie Sahlberg 已提交
1440 1441 1442 1443
    iscsi_destroy_context(iscsi);
    memset(iscsilun, 0, sizeof(IscsiLun));
}

P
Peter Lieven 已提交
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
static int iscsi_truncate(BlockDriverState *bs, int64_t offset)
{
    IscsiLun *iscsilun = bs->opaque;
    int ret = 0;

    if (iscsilun->type != TYPE_DISK) {
        return -ENOTSUP;
    }

    if ((ret = iscsi_readcapacity_sync(iscsilun)) != 0) {
        return ret;
    }

    if (offset > iscsi_getlength(bs)) {
        return -EINVAL;
    }

    return 0;
}

1464 1465 1466 1467 1468
static int iscsi_has_zero_init(BlockDriverState *bs)
{
    return 0;
}

1469 1470
static int iscsi_create(const char *filename, QEMUOptionParameter *options,
                        Error **errp)
P
Peter Lieven 已提交
1471 1472 1473
{
    int ret = 0;
    int64_t total_size = 0;
1474
    BlockDriverState *bs;
P
Peter Lieven 已提交
1475
    IscsiLun *iscsilun = NULL;
1476
    QDict *bs_options;
P
Peter Lieven 已提交
1477

1478
    bs = bdrv_new("");
P
Peter Lieven 已提交
1479 1480 1481 1482 1483 1484 1485 1486 1487

    /* Read out options */
    while (options && options->name) {
        if (!strcmp(options->name, "size")) {
            total_size = options->value.n / BDRV_SECTOR_SIZE;
        }
        options++;
    }

1488 1489
    bs->opaque = g_malloc0(sizeof(struct IscsiLun));
    iscsilun = bs->opaque;
P
Peter Lieven 已提交
1490

1491 1492
    bs_options = qdict_new();
    qdict_put(bs_options, "filename", qstring_from_str(filename));
M
Max Reitz 已提交
1493
    ret = iscsi_open(bs, bs_options, 0, NULL);
1494 1495
    QDECREF(bs_options);

P
Peter Lieven 已提交
1496 1497 1498
    if (ret != 0) {
        goto out;
    }
1499
    if (iscsilun->nop_timer) {
1500 1501
        timer_del(iscsilun->nop_timer);
        timer_free(iscsilun->nop_timer);
1502
    }
P
Peter Lieven 已提交
1503 1504 1505 1506
    if (iscsilun->type != TYPE_DISK) {
        ret = -ENODEV;
        goto out;
    }
1507
    if (bs->total_sectors < total_size) {
P
Peter Lieven 已提交
1508
        ret = -ENOSPC;
1509
        goto out;
P
Peter Lieven 已提交
1510 1511 1512 1513 1514 1515 1516
    }

    ret = 0;
out:
    if (iscsilun->iscsi != NULL) {
        iscsi_destroy_context(iscsilun->iscsi);
    }
1517 1518
    g_free(bs->opaque);
    bs->opaque = NULL;
F
Fam Zheng 已提交
1519
    bdrv_unref(bs);
P
Peter Lieven 已提交
1520 1521 1522
    return ret;
}

P
Peter Lieven 已提交
1523 1524 1525 1526 1527 1528 1529 1530
static int iscsi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
{
    IscsiLun *iscsilun = bs->opaque;
    bdi->unallocated_blocks_are_zero = !!iscsilun->lbprz;
    bdi->can_write_zeroes_with_unmap = iscsilun->lbprz && iscsilun->lbp.lbpws;
    return 0;
}

P
Peter Lieven 已提交
1531 1532 1533 1534 1535 1536 1537 1538 1539
static QEMUOptionParameter iscsi_create_options[] = {
    {
        .name = BLOCK_OPT_SIZE,
        .type = OPT_SIZE,
        .help = "Virtual disk size"
    },
    { NULL }
};

R
Ronnie Sahlberg 已提交
1540 1541 1542 1543 1544
static BlockDriver bdrv_iscsi = {
    .format_name     = "iscsi",
    .protocol_name   = "iscsi",

    .instance_size   = sizeof(IscsiLun),
1545
    .bdrv_needs_filename = true,
R
Ronnie Sahlberg 已提交
1546 1547
    .bdrv_file_open  = iscsi_open,
    .bdrv_close      = iscsi_close,
P
Peter Lieven 已提交
1548 1549
    .bdrv_create     = iscsi_create,
    .create_options  = iscsi_create_options,
R
Ronnie Sahlberg 已提交
1550 1551

    .bdrv_getlength  = iscsi_getlength,
P
Peter Lieven 已提交
1552
    .bdrv_get_info   = iscsi_get_info,
P
Peter Lieven 已提交
1553
    .bdrv_truncate   = iscsi_truncate,
R
Ronnie Sahlberg 已提交
1554

1555
#if defined(LIBISCSI_FEATURE_IOVECTOR)
P
Peter Lieven 已提交
1556
    .bdrv_co_get_block_status = iscsi_co_get_block_status,
1557
#endif
1558
    .bdrv_co_discard      = iscsi_co_discard,
P
Peter Lieven 已提交
1559

R
Ronnie Sahlberg 已提交
1560 1561 1562
    .bdrv_aio_readv  = iscsi_aio_readv,
    .bdrv_aio_writev = iscsi_aio_writev,
    .bdrv_aio_flush  = iscsi_aio_flush,
1563

1564
    .bdrv_has_zero_init = iscsi_has_zero_init,
1565 1566 1567 1568 1569

#ifdef __linux__
    .bdrv_ioctl       = iscsi_ioctl,
    .bdrv_aio_ioctl   = iscsi_aio_ioctl,
#endif
R
Ronnie Sahlberg 已提交
1570 1571
};

1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
static QemuOptsList qemu_iscsi_opts = {
    .name = "iscsi",
    .head = QTAILQ_HEAD_INITIALIZER(qemu_iscsi_opts.head),
    .desc = {
        {
            .name = "user",
            .type = QEMU_OPT_STRING,
            .help = "username for CHAP authentication to target",
        },{
            .name = "password",
            .type = QEMU_OPT_STRING,
            .help = "password for CHAP authentication to target",
        },{
            .name = "header-digest",
            .type = QEMU_OPT_STRING,
            .help = "HeaderDigest setting. "
                    "{CRC32C|CRC32C-NONE|NONE-CRC32C|NONE}",
        },{
            .name = "initiator-name",
            .type = QEMU_OPT_STRING,
            .help = "Initiator iqn name to use when connecting",
        },
        { /* end of list */ }
    },
};

R
Ronnie Sahlberg 已提交
1598 1599 1600
static void iscsi_block_init(void)
{
    bdrv_register(&bdrv_iscsi);
1601
    qemu_add_opts(&qemu_iscsi_opts);
R
Ronnie Sahlberg 已提交
1602 1603 1604
}

block_init(iscsi_block_init);