scsi.h 10.1 KB
Newer Older
G
Gerd Hoffmann 已提交
1 2
#ifndef QEMU_HW_SCSI_H
#define QEMU_HW_SCSI_H
G
Gerd Hoffmann 已提交
3

4
#include "hw/qdev.h"
5
#include "qemu/typedefs.h"
P
Paolo Bonzini 已提交
6
#include "hw/block/block.h"
7
#include "sysemu/sysemu.h"
8
#include "qemu/notify.h"
G
Gerd Hoffmann 已提交
9

10 11
#define MAX_SCSI_DEVS	255

12
#define SCSI_CMD_BUF_SIZE     16
13 14
#define SCSI_SENSE_LEN      18
#define SCSI_INQUIRY_LEN    36
15

G
Gerd Hoffmann 已提交
16
typedef struct SCSIBus SCSIBus;
17
typedef struct SCSIBusInfo SCSIBusInfo;
P
Paolo Bonzini 已提交
18
typedef struct SCSICommand SCSICommand;
G
Gerd Hoffmann 已提交
19
typedef struct SCSIDevice SCSIDevice;
20
typedef struct SCSIRequest SCSIRequest;
P
Paolo Bonzini 已提交
21
typedef struct SCSIReqOps SCSIReqOps;
G
Gerd Hoffmann 已提交
22

G
Gerd Hoffmann 已提交
23 24 25 26 27 28
enum SCSIXferMode {
    SCSI_XFER_NONE,      /*  TEST_UNIT_READY, ...            */
    SCSI_XFER_FROM_DEV,  /*  READ, INQUIRY, MODE_SENSE, ...  */
    SCSI_XFER_TO_DEV,    /*  WRITE, MODE_SELECT, ...         */
};

29 30 31 32 33 34
typedef struct SCSISense {
    uint8_t key;
    uint8_t asc;
    uint8_t ascq;
} SCSISense;

35
#define SCSI_SENSE_BUF_SIZE_OLD 96
36
#define SCSI_SENSE_BUF_SIZE 252
37

P
Paolo Bonzini 已提交
38 39 40 41 42 43 44 45
struct SCSICommand {
    uint8_t buf[SCSI_CMD_BUF_SIZE];
    int len;
    size_t xfer;
    uint64_t lba;
    enum SCSIXferMode mode;
};

46
struct SCSIRequest {
47 48
    SCSIBus           *bus;
    SCSIDevice        *dev;
P
Paolo Bonzini 已提交
49
    const SCSIReqOps  *ops;
P
Paolo Bonzini 已提交
50
    uint32_t          refcount;
51
    uint32_t          tag;
52
    uint32_t          lun;
G
Gerd Hoffmann 已提交
53
    uint32_t          status;
F
Fam Zheng 已提交
54
    void              *hba_private;
55
    size_t            resid;
P
Paolo Bonzini 已提交
56
    SCSICommand       cmd;
57
    NotifierList      cancel_notifiers;
F
Fam Zheng 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70

    /* Note:
     * - fields before sense are initialized by scsi_req_alloc;
     * - sense[] is uninitialized;
     * - fields after sense are memset to 0 by scsi_req_alloc.
     * */

    uint8_t           sense[SCSI_SENSE_BUF_SIZE];
    uint32_t          sense_len;
    bool              enqueued;
    bool              io_canceled;
    bool              retry;
    bool              dma_started;
71
    BlockAIOCB        *aiocb;
72
    QEMUSGList        *sg;
73
    QTAILQ_ENTRY(SCSIRequest) next;
74
};
75

76 77 78 79 80 81 82 83 84 85
#define TYPE_SCSI_DEVICE "scsi-device"
#define SCSI_DEVICE(obj) \
     OBJECT_CHECK(SCSIDevice, (obj), TYPE_SCSI_DEVICE)
#define SCSI_DEVICE_CLASS(klass) \
     OBJECT_CLASS_CHECK(SCSIDeviceClass, (klass), TYPE_SCSI_DEVICE)
#define SCSI_DEVICE_GET_CLASS(obj) \
     OBJECT_GET_CLASS(SCSIDeviceClass, (obj), TYPE_SCSI_DEVICE)

typedef struct SCSIDeviceClass {
    DeviceClass parent_class;
86
    void (*realize)(SCSIDevice *dev, Error **errp);
87 88
    int (*parse_cdb)(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
                     void *hba_private);
89 90 91 92 93
    SCSIRequest *(*alloc_req)(SCSIDevice *s, uint32_t tag, uint32_t lun,
                              uint8_t *buf, void *hba_private);
    void (*unit_attention_reported)(SCSIDevice *s);
} SCSIDeviceClass;

G
Gerd Hoffmann 已提交
94 95 96
struct SCSIDevice
{
    DeviceState qdev;
97 98
    VMChangeStateEntry *vmsentry;
    QEMUBH *bh;
G
Gerd Hoffmann 已提交
99
    uint32_t id;
100
    BlockConf conf;
101
    SCSISense unit_attention;
102
    bool sense_is_ua;
103 104
    uint8_t sense[SCSI_SENSE_BUF_SIZE];
    uint32_t sense_len;
105
    QTAILQ_HEAD(, SCSIRequest) requests;
P
Paolo Bonzini 已提交
106
    uint32_t channel;
107
    uint32_t lun;
108
    int blocksize;
109
    int type;
P
Paolo Bonzini 已提交
110
    uint64_t max_lba;
G
Gerd Hoffmann 已提交
111 112
};

113 114 115 116 117 118 119 120 121 122
extern const VMStateDescription vmstate_scsi_device;

#define VMSTATE_SCSI_DEVICE(_field, _state) {                        \
    .name       = (stringify(_field)),                               \
    .size       = sizeof(SCSIDevice),                                \
    .vmsd       = &vmstate_scsi_device,                              \
    .flags      = VMS_STRUCT,                                        \
    .offset     = vmstate_offset_value(_state, _field, SCSIDevice),  \
}

G
Gerd Hoffmann 已提交
123 124 125 126 127
/* cdrom.c */
int cdrom_read_toc(int nb_sectors, uint8_t *buf, int msf, int start_track);
int cdrom_read_toc_raw(int nb_sectors, uint8_t *buf, int msf, int session_num);

/* scsi-bus.c */
P
Paolo Bonzini 已提交
128 129
struct SCSIReqOps {
    size_t size;
130 131 132 133 134
    void (*free_req)(SCSIRequest *req);
    int32_t (*send_command)(SCSIRequest *req, uint8_t *buf);
    void (*read_data)(SCSIRequest *req);
    void (*write_data)(SCSIRequest *req);
    uint8_t *(*get_buf)(SCSIRequest *req);
135 136 137

    void (*save_request)(QEMUFile *f, SCSIRequest *req);
    void (*load_request)(QEMUFile *f, SCSIRequest *req);
P
Paolo Bonzini 已提交
138 139
};

140
struct SCSIBusInfo {
P
Paolo Bonzini 已提交
141
    int tcq;
P
Paolo Bonzini 已提交
142
    int max_channel, max_target, max_lun;
143 144
    int (*parse_cdb)(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
                     void *hba_private);
145
    void (*transfer_data)(SCSIRequest *req, uint32_t arg);
146
    void (*complete)(SCSIRequest *req, uint32_t arg, size_t resid);
P
Paolo Bonzini 已提交
147
    void (*cancel)(SCSIRequest *req);
148
    void (*change)(SCSIBus *bus, SCSIDevice *dev, SCSISense sense);
149
    QEMUSGList *(*get_sg_list)(SCSIRequest *req);
150 151 152

    void (*save_request)(QEMUFile *f, SCSIRequest *req);
    void *(*load_request)(QEMUFile *f, SCSIRequest *req);
P
Paolo Bonzini 已提交
153
    void (*free_request)(SCSIBus *bus, void *priv);
P
Paolo Bonzini 已提交
154 155
};

156 157 158
#define TYPE_SCSI_BUS "SCSI"
#define SCSI_BUS(obj) OBJECT_CHECK(SCSIBus, (obj), TYPE_SCSI_BUS)

G
Gerd Hoffmann 已提交
159 160 161 162
struct SCSIBus {
    BusState qbus;
    int busnr;

163
    SCSISense unit_attention;
164
    const SCSIBusInfo *info;
G
Gerd Hoffmann 已提交
165 166
};

167 168
void scsi_bus_new(SCSIBus *bus, size_t bus_size, DeviceState *host,
                  const SCSIBusInfo *info, const char *bus_name);
G
Gerd Hoffmann 已提交
169 170 171 172 173 174

static inline SCSIBus *scsi_bus_from_device(SCSIDevice *d)
{
    return DO_UPCAST(SCSIBus, qbus, d->qdev.parent_bus);
}

175
SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockBackend *blk,
176
                                      int unit, bool removable, int bootindex,
177 178
                                      const char *serial, Error **errp);
void scsi_bus_legacy_handle_cmdline(SCSIBus *bus, Error **errp);
G
Gerd Hoffmann 已提交
179

180 181 182 183 184 185 186 187 188 189
/*
 * Predefined sense codes
 */

/* No sense data available */
extern const struct SCSISense sense_code_NO_SENSE;
/* LUN not ready, Manual intervention required */
extern const struct SCSISense sense_code_LUN_NOT_READY;
/* LUN not ready, Medium not present */
extern const struct SCSISense sense_code_NO_MEDIUM;
190 191
/* LUN not ready, medium removal prevented */
extern const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED;
192 193 194 195 196 197 198 199
/* Hardware error, internal target failure */
extern const struct SCSISense sense_code_TARGET_FAILURE;
/* Illegal request, invalid command operation code */
extern const struct SCSISense sense_code_INVALID_OPCODE;
/* Illegal request, LBA out of range */
extern const struct SCSISense sense_code_LBA_OUT_OF_RANGE;
/* Illegal request, Invalid field in CDB */
extern const struct SCSISense sense_code_INVALID_FIELD;
200 201 202 203
/* Illegal request, Invalid field in parameter list */
extern const struct SCSISense sense_code_INVALID_PARAM;
/* Illegal request, Parameter list length error */
extern const struct SCSISense sense_code_INVALID_PARAM_LEN;
204 205
/* Illegal request, LUN not supported */
extern const struct SCSISense sense_code_LUN_NOT_SUPPORTED;
206 207 208 209
/* Illegal request, Saving parameters not supported */
extern const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED;
/* Illegal request, Incompatible format */
extern const struct SCSISense sense_code_INCOMPATIBLE_FORMAT;
210 211
/* Illegal request, medium removal prevented */
extern const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED;
212 213
/* Illegal request, Invalid Transfer Tag */
extern const struct SCSISense sense_code_INVALID_TAG;
214 215 216 217 218 219
/* Command aborted, I/O process terminated */
extern const struct SCSISense sense_code_IO_ERROR;
/* Command aborted, I_T Nexus loss occurred */
extern const struct SCSISense sense_code_I_T_NEXUS_LOSS;
/* Command aborted, Logical Unit failure */
extern const struct SCSISense sense_code_LUN_FAILURE;
220 221
/* Command aborted, Overlapped Commands Attempted */
extern const struct SCSISense sense_code_OVERLAPPED_COMMANDS;
222 223
/* LUN not ready, Capacity data has changed */
extern const struct SCSISense sense_code_CAPACITY_CHANGED;
224 225
/* LUN not ready, Medium not present */
extern const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM;
226 227 228 229 230 231 232 233
/* Unit attention, Power on, reset or bus device reset occurred */
extern const struct SCSISense sense_code_RESET;
/* Unit attention, Medium may have changed*/
extern const struct SCSISense sense_code_MEDIUM_CHANGED;
/* Unit attention, Reported LUNs data has changed */
extern const struct SCSISense sense_code_REPORTED_LUNS_CHANGED;
/* Unit attention, Device internal reset */
extern const struct SCSISense sense_code_DEVICE_INTERNAL_RESET;
234 235
/* Data Protection, Write Protected */
extern const struct SCSISense sense_code_WRITE_PROTECTED;
236 237
/* Data Protection, Space Allocation Failed Write Protect */
extern const struct SCSISense sense_code_SPACE_ALLOC_FAILED;
238 239 240

#define SENSE_CODE(x) sense_code_ ## x

241 242 243
uint32_t scsi_data_cdb_xfer(uint8_t *buf);
uint32_t scsi_cdb_xfer(uint8_t *buf);
int scsi_cdb_length(uint8_t *buf);
244
int scsi_sense_valid(SCSISense sense);
245 246
int scsi_build_sense(uint8_t *in_buf, int in_len,
                     uint8_t *buf, int len, bool fixed);
247

P
Paolo Bonzini 已提交
248 249
SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d,
                            uint32_t tag, uint32_t lun, void *hba_private);
250
SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun,
251 252
                          uint8_t *buf, void *hba_private);
int32_t scsi_req_enqueue(SCSIRequest *req);
253
void scsi_req_free(SCSIRequest *req);
P
Paolo Bonzini 已提交
254 255
SCSIRequest *scsi_req_ref(SCSIRequest *req);
void scsi_req_unref(SCSIRequest *req);
256

257 258
int scsi_bus_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf,
                       void *hba_private);
259
int scsi_req_parse_cdb(SCSIDevice *dev, SCSICommand *cmd, uint8_t *buf);
260
void scsi_req_build_sense(SCSIRequest *req, SCSISense sense);
G
Gerd Hoffmann 已提交
261
void scsi_req_print(SCSIRequest *req);
262
void scsi_req_continue(SCSIRequest *req);
P
Paolo Bonzini 已提交
263
void scsi_req_data(SCSIRequest *req, int len);
264
void scsi_req_complete(SCSIRequest *req, int status);
P
Paolo Bonzini 已提交
265
uint8_t *scsi_req_get_buf(SCSIRequest *req);
266
int scsi_req_get_sense(SCSIRequest *req, uint8_t *buf, int len);
267
void scsi_req_cancel_complete(SCSIRequest *req);
P
Paolo Bonzini 已提交
268
void scsi_req_cancel(SCSIRequest *req);
269
void scsi_req_cancel_async(SCSIRequest *req, Notifier *notifier);
270
void scsi_req_retry(SCSIRequest *req);
271
void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense);
272
void scsi_device_set_ua(SCSIDevice *sdev, SCSISense sense);
273
void scsi_device_report_change(SCSIDevice *dev, SCSISense sense);
274
void scsi_device_unit_attention_reported(SCSIDevice *dev);
275
int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed);
P
Paolo Bonzini 已提交
276
SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int target, int lun);
277

P
Paolo Bonzini 已提交
278 279 280
/* scsi-generic.c. */
extern const SCSIReqOps scsi_generic_req_ops;

G
Gerd Hoffmann 已提交
281
#endif