stat: Avoid freeing null pointer
[fio.git] / engines / sg.c
CommitLineData
2866c82d 1/*
da751ca9
JA
2 * sg engine
3 *
4 * IO engine that uses the Linux SG v3 interface to talk to SCSI devices
2866c82d 5 *
b4b9665e
VF
6 * This ioengine can operate in two modes:
7 * sync with block devices (/dev/sdX) or
8 * with character devices (/dev/sgY) with direct=1 or sync=1
9 * async with character devices with direct=0 and sync=0
10 *
11 * What value does queue() return for the different cases?
12 * queue() return value
13 * In sync mode:
14 * /dev/sdX RWT FIO_Q_COMPLETED
15 * /dev/sgY RWT FIO_Q_COMPLETED
16 * with direct=1 or sync=1
17 *
18 * In async mode:
19 * /dev/sgY RWT FIO_Q_QUEUED
20 * direct=0 and sync=0
21 *
22 * Because FIO_SYNCIO is set for this ioengine td_io_queue() will fill in
23 * issue_time *before* each IO is sent to queue()
24 *
25 * Where are the IO counting functions called for the different cases?
26 *
27 * In sync mode:
28 * /dev/sdX (commit==NULL)
29 * RWT
30 * io_u_mark_depth() called in td_io_queue()
31 * io_u_mark_submit/complete() called in td_io_queue()
32 * issue_time set in td_io_queue()
33 *
34 * /dev/sgY with direct=1 or sync=1 (commit does nothing)
35 * RWT
36 * io_u_mark_depth() called in td_io_queue()
37 * io_u_mark_submit/complete() called in queue()
38 * issue_time set in td_io_queue()
39 *
40 * In async mode:
41 * /dev/sgY with direct=0 and sync=0
42 * RW: read and write operations are submitted in queue()
43 * io_u_mark_depth() called in td_io_commit()
44 * io_u_mark_submit() called in queue()
45 * issue_time set in td_io_queue()
46 * T: trim operations are queued in queue() and submitted in commit()
47 * io_u_mark_depth() called in td_io_commit()
48 * io_u_mark_submit() called in commit()
49 * issue_time set in commit()
50 *
2866c82d
JA
51 */
52#include <stdio.h>
53#include <stdlib.h>
54#include <unistd.h>
55#include <errno.h>
8393ca93 56#include <poll.h>
5f350952
JA
57
58#include "../fio.h"
52b81b7c 59#include "../optgroup.h"
2866c82d 60
34cfcdaf
JA
61#ifdef FIO_HAVE_SGIO
62
b0dc148e
DG
63#ifndef SGV4_FLAG_HIPRI
64#define SGV4_FLAG_HIPRI 0x800
65#endif
66
cbdc9353
VF
67enum {
68 FIO_SG_WRITE = 1,
69 FIO_SG_WRITE_VERIFY = 2,
70 FIO_SG_WRITE_SAME = 3
71};
52b81b7c
KD
72
73struct sg_options {
74 void *pad;
b0dc148e 75 unsigned int hipri;
52b81b7c
KD
76 unsigned int readfua;
77 unsigned int writefua;
cbdc9353 78 unsigned int write_mode;
52b81b7c
KD
79};
80
81static struct fio_option options[] = {
b0dc148e
DG
82 {
83 .name = "hipri",
84 .lname = "High Priority",
85 .type = FIO_OPT_STR_SET,
86 .off1 = offsetof(struct sg_options, hipri),
87 .help = "Use polled IO completions",
88 .category = FIO_OPT_C_ENGINE,
89 .group = FIO_OPT_G_SG,
90 },
52b81b7c
KD
91 {
92 .name = "readfua",
93 .lname = "sg engine read fua flag support",
94 .type = FIO_OPT_BOOL,
95 .off1 = offsetof(struct sg_options, readfua),
96 .help = "Set FUA flag (force unit access) for all Read operations",
97 .def = "0",
98 .category = FIO_OPT_C_ENGINE,
99 .group = FIO_OPT_G_SG,
100 },
101 {
102 .name = "writefua",
103 .lname = "sg engine write fua flag support",
104 .type = FIO_OPT_BOOL,
105 .off1 = offsetof(struct sg_options, writefua),
106 .help = "Set FUA flag (force unit access) for all Write operations",
107 .def = "0",
108 .category = FIO_OPT_C_ENGINE,
109 .group = FIO_OPT_G_SG,
110 },
cbdc9353
VF
111 {
112 .name = "sg_write_mode",
113 .lname = "specify sg write mode",
114 .type = FIO_OPT_STR,
115 .off1 = offsetof(struct sg_options, write_mode),
116 .help = "Specify SCSI WRITE mode",
117 .def = "write",
118 .posval = {
119 { .ival = "write",
120 .oval = FIO_SG_WRITE,
121 .help = "Issue standard SCSI WRITE commands",
122 },
123 { .ival = "verify",
124 .oval = FIO_SG_WRITE_VERIFY,
125 .help = "Issue SCSI WRITE AND VERIFY commands",
126 },
127 { .ival = "same",
128 .oval = FIO_SG_WRITE_SAME,
129 .help = "Issue SCSI WRITE SAME commands",
130 },
131 },
132 .category = FIO_OPT_C_ENGINE,
133 .group = FIO_OPT_G_SG,
134 },
52b81b7c
KD
135 {
136 .name = NULL,
137 },
138};
139
5ad7be56
KD
140#define MAX_10B_LBA 0xFFFFFFFFULL
141#define SCSI_TIMEOUT_MS 30000 // 30 second timeout; currently no method to override
142#define MAX_SB 64 // sense block maximum return size
aa18e0ec
VF
143/*
144#define FIO_SGIO_DEBUG
145*/
5ad7be56 146
2866c82d 147struct sgio_cmd {
fde57152 148 unsigned char cdb[16]; // enhanced from 10 to support 16 byte commands
5ad7be56 149 unsigned char sb[MAX_SB]; // add sense block to commands
2866c82d
JA
150 int nr;
151};
152
b4b9665e 153struct sgio_trim {
a824149a 154 uint8_t *unmap_param;
b4b9665e
VF
155 unsigned int unmap_range_count;
156 struct io_u **trim_io_us;
157};
158
2866c82d
JA
159struct sgio_data {
160 struct sgio_cmd *cmds;
161 struct io_u **events;
dc0deca2
JA
162 struct pollfd *pfds;
163 int *fd_flags;
164 void *sgbuf;
2866c82d 165 unsigned int bs;
b5af8293 166 int type_checked;
b4b9665e
VF
167 struct sgio_trim **trim_queues;
168 int current_queue;
aa18e0ec 169#ifdef FIO_SGIO_DEBUG
b4b9665e 170 unsigned int *trim_queue_map;
aa18e0ec 171#endif
2866c82d
JA
172};
173
a824149a
DF
174static inline uint32_t sgio_get_be32(uint8_t *buf)
175{
176 return be32_to_cpu(*((uint32_t *) buf));
177}
178
179static inline uint64_t sgio_get_be64(uint8_t *buf)
180{
181 return be64_to_cpu(*((uint64_t *) buf));
182}
183
184static inline void sgio_set_be16(uint16_t val, uint8_t *buf)
185{
186 uint16_t t = cpu_to_be16(val);
187
188 memcpy(buf, &t, sizeof(uint16_t));
189}
190
191static inline void sgio_set_be32(uint32_t val, uint8_t *buf)
192{
193 uint32_t t = cpu_to_be32(val);
194
195 memcpy(buf, &t, sizeof(uint32_t));
196}
197
198static inline void sgio_set_be64(uint64_t val, uint8_t *buf)
199{
200 uint64_t t = cpu_to_be64(val);
201
202 memcpy(buf, &t, sizeof(uint64_t));
203}
204
b4b9665e
VF
205static inline bool sgio_unbuffered(struct thread_data *td)
206{
207 return (td->o.odirect || td->o.sync_io);
208}
209
2866c82d
JA
210static void sgio_hdr_init(struct sgio_data *sd, struct sg_io_hdr *hdr,
211 struct io_u *io_u, int fs)
212{
213 struct sgio_cmd *sc = &sd->cmds[io_u->index];
214
215 memset(hdr, 0, sizeof(*hdr));
216 memset(sc->cdb, 0, sizeof(sc->cdb));
217
218 hdr->interface_id = 'S';
219 hdr->cmdp = sc->cdb;
220 hdr->cmd_len = sizeof(sc->cdb);
5ad7be56
KD
221 hdr->sbp = sc->sb;
222 hdr->mx_sb_len = sizeof(sc->sb);
2866c82d
JA
223 hdr->pack_id = io_u->index;
224 hdr->usr_ptr = io_u;
b4b9665e 225 hdr->timeout = SCSI_TIMEOUT_MS;
2866c82d
JA
226
227 if (fs) {
cec6b55d
JA
228 hdr->dxferp = io_u->xfer_buf;
229 hdr->dxfer_len = io_u->xfer_buflen;
2866c82d
JA
230 }
231}
232
adee86c5
JA
233static int pollin_events(struct pollfd *pfds, int fds)
234{
235 int i;
236
237 for (i = 0; i < fds; i++)
238 if (pfds[i].revents & POLLIN)
239 return 1;
240
241 return 0;
242}
2866c82d 243
14d0261e
JA
244static int sg_fd_read(int fd, void *data, size_t size)
245{
246 int err = 0;
247
248 while (size) {
249 ssize_t ret;
250
251 ret = read(fd, data, size);
252 if (ret < 0) {
253 if (errno == EAGAIN || errno == EINTR)
254 continue;
255 err = errno;
256 break;
257 } else if (!ret)
258 break;
259 else {
260 data += ret;
261 size -= ret;
262 }
263 }
264
265 if (err)
266 return err;
267 if (size)
268 return EAGAIN;
269
270 return 0;
271}
272
e7d2e616 273static int fio_sgio_getevents(struct thread_data *td, unsigned int min,
1f440ece
JA
274 unsigned int max,
275 const struct timespec fio_unused *t)
2866c82d 276{
565e784d 277 struct sgio_data *sd = td->io_ops_data;
b4b9665e 278 int left = max, eventNum, ret, r = 0, trims = 0;
dc0deca2 279 void *buf = sd->sgbuf;
b4b9665e 280 unsigned int i, j, events;
946ff865 281 struct fio_file *f;
b4b9665e 282 struct io_u *io_u;
2866c82d
JA
283
284 /*
adee86c5 285 * Fill in the file descriptors
2866c82d 286 */
adee86c5
JA
287 for_each_file(td, f, i) {
288 /*
289 * don't block for min events == 0
290 */
4a851614 291 if (!min)
3a35845f
JA
292 sd->fd_flags[i] = fio_set_fd_nonblocking(f->fd, "sg");
293 else
294 sd->fd_flags[i] = -1;
4a851614 295
dc0deca2
JA
296 sd->pfds[i].fd = f->fd;
297 sd->pfds[i].events = POLLIN;
2866c82d
JA
298 }
299
b4b9665e
VF
300 /*
301 ** There are two counters here:
302 ** - number of SCSI commands completed
303 ** - number of io_us completed
304 **
305 ** These are the same with reads and writes, but
306 ** could differ with trim/unmap commands because
307 ** a single unmap can include multiple io_us
308 */
309
310 while (left > 0) {
c97e3cb0 311 char *p;
adee86c5 312
b4b9665e 313 dprint(FD_IO, "sgio_getevents: sd %p: min=%d, max=%d, left=%d\n", sd, min, max, left);
5ad7be56 314
2866c82d
JA
315 do {
316 if (!min)
317 break;
adee86c5 318
2dc1bbeb 319 ret = poll(sd->pfds, td->o.nr_files, -1);
adee86c5 320 if (ret < 0) {
adee86c5 321 if (!r)
22819ec2 322 r = -errno;
e1161c32 323 td_verror(td, errno, "poll");
adee86c5
JA
324 break;
325 } else if (!ret)
326 continue;
327
2dc1bbeb 328 if (pollin_events(sd->pfds, td->o.nr_files))
2866c82d
JA
329 break;
330 } while (1);
331
adee86c5 332 if (r < 0)
2866c82d 333 break;
adee86c5
JA
334
335re_read:
336 p = buf;
337 events = 0;
338 for_each_file(td, f, i) {
5ad7be56 339 for (eventNum = 0; eventNum < left; eventNum++) {
14d0261e 340 ret = sg_fd_read(f->fd, p, sizeof(struct sg_io_hdr));
b4b9665e 341 dprint(FD_IO, "sgio_getevents: sg_fd_read ret: %d\n", ret);
14d0261e
JA
342 if (ret) {
343 r = -ret;
344 td_verror(td, r, "sg_read");
5ad7be56 345 break;
5ad7be56 346 }
b4b9665e
VF
347 io_u = ((struct sg_io_hdr *)p)->usr_ptr;
348 if (io_u->ddir == DDIR_TRIM) {
349 events += sd->trim_queues[io_u->index]->unmap_range_count;
350 eventNum += sd->trim_queues[io_u->index]->unmap_range_count - 1;
351 } else
352 events++;
353
14d0261e 354 p += sizeof(struct sg_io_hdr);
b4b9665e 355 dprint(FD_IO, "sgio_getevents: events: %d, eventNum: %d, left: %d\n", events, eventNum, left);
adee86c5
JA
356 }
357 }
358
14d0261e 359 if (r < 0 && !events)
2866c82d 360 break;
adee86c5
JA
361 if (!events) {
362 usleep(1000);
363 goto re_read;
364 }
2866c82d 365
2866c82d
JA
366 left -= events;
367 r += events;
368
369 for (i = 0; i < events; i++) {
370 struct sg_io_hdr *hdr = (struct sg_io_hdr *) buf + i;
b4b9665e
VF
371 sd->events[i + trims] = hdr->usr_ptr;
372 io_u = (struct io_u *)(hdr->usr_ptr);
5ad7be56 373
5ad7be56 374 if (hdr->info & SG_INFO_CHECK) {
b4b9665e 375 /* record if an io error occurred, ignore resid */
be660713 376 memcpy(&io_u->hdr, hdr, sizeof(struct sg_io_hdr));
b4b9665e
VF
377 sd->events[i + trims]->error = EIO;
378 }
379
380 if (io_u->ddir == DDIR_TRIM) {
381 struct sgio_trim *st = sd->trim_queues[io_u->index];
aa18e0ec 382#ifdef FIO_SGIO_DEBUG
b4b9665e 383 assert(st->trim_io_us[0] == io_u);
aa18e0ec 384 assert(sd->trim_queue_map[io_u->index] == io_u->index);
b4b9665e
VF
385 dprint(FD_IO, "sgio_getevents: reaping %d io_us from trim queue %d\n", st->unmap_range_count, io_u->index);
386 dprint(FD_IO, "sgio_getevents: reaped io_u %d and stored in events[%d]\n", io_u->index, i+trims);
aa18e0ec 387#endif
b4b9665e
VF
388 for (j = 1; j < st->unmap_range_count; j++) {
389 ++trims;
390 sd->events[i + trims] = st->trim_io_us[j];
aa18e0ec 391#ifdef FIO_SGIO_DEBUG
b4b9665e 392 dprint(FD_IO, "sgio_getevents: reaped io_u %d and stored in events[%d]\n", st->trim_io_us[j]->index, i+trims);
aa18e0ec
VF
393 assert(sd->trim_queue_map[st->trim_io_us[j]->index] == io_u->index);
394#endif
b4b9665e
VF
395 if (hdr->info & SG_INFO_CHECK) {
396 /* record if an io error occurred, ignore resid */
397 memcpy(&st->trim_io_us[j]->hdr, hdr, sizeof(struct sg_io_hdr));
398 sd->events[i + trims]->error = EIO;
399 }
400 }
401 events -= st->unmap_range_count - 1;
402 st->unmap_range_count = 0;
5ad7be56 403 }
2866c82d
JA
404 }
405 }
406
adee86c5 407 if (!min) {
affe05a9 408 for_each_file(td, f, i) {
3a35845f
JA
409 if (sd->fd_flags[i] == -1)
410 continue;
411
affe05a9
JA
412 if (fcntl(f->fd, F_SETFL, sd->fd_flags[i]) < 0)
413 log_err("fio: sg failed to restore fcntl flags: %s\n", strerror(errno));
414 }
adee86c5 415 }
2866c82d 416
2866c82d
JA
417 return r;
418}
419
2e4ef4fb
JA
420static enum fio_q_status fio_sgio_ioctl_doio(struct thread_data *td,
421 struct fio_file *f,
422 struct io_u *io_u)
2866c82d 423{
565e784d 424 struct sgio_data *sd = td->io_ops_data;
2866c82d 425 struct sg_io_hdr *hdr = &io_u->hdr;
36167d82 426 int ret;
2866c82d
JA
427
428 sd->events[0] = io_u;
429
36167d82
JA
430 ret = ioctl(f->fd, SG_IO, hdr);
431 if (ret < 0)
a05bd42d 432 return ret;
36167d82 433
5ad7be56
KD
434 /* record if an io error occurred */
435 if (hdr->info & SG_INFO_CHECK)
436 io_u->error = EIO;
437
36167d82 438 return FIO_Q_COMPLETED;
2866c82d
JA
439}
440
a999bc49
JA
441static enum fio_q_status fio_sgio_rw_doio(struct thread_data *td,
442 struct fio_file *f,
b4b9665e 443 struct io_u *io_u, int do_sync)
2866c82d
JA
444{
445 struct sg_io_hdr *hdr = &io_u->hdr;
446 int ret;
447
53cdc686 448 ret = write(f->fd, hdr, sizeof(*hdr));
2866c82d 449 if (ret < 0)
a05bd42d 450 return ret;
2866c82d 451
2b13e716 452 if (do_sync) {
a999bc49
JA
453 /*
454 * We can't just read back the first command that completes
455 * and assume it's the one we need, it could be any command
456 * that is inflight.
457 */
458 do {
459 struct io_u *__io_u;
460
461 ret = read(f->fd, hdr, sizeof(*hdr));
462 if (ret < 0)
463 return ret;
464
7508b394
JA
465 __io_u = hdr->usr_ptr;
466
a999bc49
JA
467 /* record if an io error occurred */
468 if (hdr->info & SG_INFO_CHECK)
7508b394 469 __io_u->error = EIO;
5ad7be56 470
a999bc49
JA
471 if (__io_u == io_u)
472 break;
473
474 if (io_u_sync_complete(td, __io_u)) {
475 ret = -1;
476 break;
477 }
478 } while (1);
5ad7be56 479
36167d82 480 return FIO_Q_COMPLETED;
2866c82d
JA
481 }
482
36167d82 483 return FIO_Q_QUEUED;
2866c82d
JA
484}
485
b4b9665e
VF
486static enum fio_q_status fio_sgio_doio(struct thread_data *td,
487 struct io_u *io_u, int do_sync)
2866c82d 488{
53cdc686 489 struct fio_file *f = io_u->file;
b4b9665e 490 enum fio_q_status ret;
53cdc686 491
686fbd31 492 if (f->filetype == FIO_TYPE_BLOCK) {
5ad7be56 493 ret = fio_sgio_ioctl_doio(td, f, io_u);
a999bc49
JA
494 if (io_u->error)
495 td_verror(td, io_u->error, __func__);
5ad7be56 496 } else {
a999bc49
JA
497 ret = fio_sgio_rw_doio(td, f, io_u, do_sync);
498 if (io_u->error && do_sync)
c9aeb797 499 td_verror(td, io_u->error, __func__);
5ad7be56 500 }
2866c82d 501
5ad7be56 502 return ret;
2866c82d
JA
503}
504
b4b9665e
VF
505static void fio_sgio_rw_lba(struct sg_io_hdr *hdr, unsigned long long lba,
506 unsigned long long nr_blocks)
507{
508 if (lba < MAX_10B_LBA) {
a824149a
DF
509 sgio_set_be32((uint32_t) lba, &hdr->cmdp[2]);
510 sgio_set_be16((uint16_t) nr_blocks, &hdr->cmdp[7]);
b4b9665e 511 } else {
a824149a
DF
512 sgio_set_be64(lba, &hdr->cmdp[2]);
513 sgio_set_be32((uint32_t) nr_blocks, &hdr->cmdp[10]);
b4b9665e
VF
514 }
515
516 return;
517}
518
2866c82d
JA
519static int fio_sgio_prep(struct thread_data *td, struct io_u *io_u)
520{
521 struct sg_io_hdr *hdr = &io_u->hdr;
52b81b7c 522 struct sg_options *o = td->eo;
565e784d 523 struct sgio_data *sd = td->io_ops_data;
b4b9665e
VF
524 unsigned long long nr_blocks, lba;
525 int offset;
2866c82d 526
cec6b55d 527 if (io_u->xfer_buflen & (sd->bs - 1)) {
2866c82d
JA
528 log_err("read/write not sector aligned\n");
529 return EINVAL;
530 }
531
5ad7be56
KD
532 nr_blocks = io_u->xfer_buflen / sd->bs;
533 lba = io_u->offset / sd->bs;
534
2866c82d 535 if (io_u->ddir == DDIR_READ) {
87dc1ab1
JA
536 sgio_hdr_init(sd, hdr, io_u, 1);
537
2866c82d 538 hdr->dxfer_direction = SG_DXFER_FROM_DEV;
5ad7be56
KD
539 if (lba < MAX_10B_LBA)
540 hdr->cmdp[0] = 0x28; // read(10)
541 else
542 hdr->cmdp[0] = 0x88; // read(16)
52b81b7c 543
b0dc148e
DG
544 if (o->hipri)
545 hdr->flags |= SGV4_FLAG_HIPRI;
52b81b7c
KD
546 if (o->readfua)
547 hdr->cmdp[1] |= 0x08;
548
b4b9665e
VF
549 fio_sgio_rw_lba(hdr, lba, nr_blocks);
550
87dc1ab1
JA
551 } else if (io_u->ddir == DDIR_WRITE) {
552 sgio_hdr_init(sd, hdr, io_u, 1);
553
2866c82d 554 hdr->dxfer_direction = SG_DXFER_TO_DEV;
cbdc9353
VF
555 switch(o->write_mode) {
556 case FIO_SG_WRITE:
557 if (lba < MAX_10B_LBA)
558 hdr->cmdp[0] = 0x2a; // write(10)
559 else
560 hdr->cmdp[0] = 0x8a; // write(16)
b0dc148e
DG
561 if (o->hipri)
562 hdr->flags |= SGV4_FLAG_HIPRI;
cbdc9353
VF
563 if (o->writefua)
564 hdr->cmdp[1] |= 0x08;
565 break;
566 case FIO_SG_WRITE_VERIFY:
567 if (lba < MAX_10B_LBA)
568 hdr->cmdp[0] = 0x2e; // write and verify(10)
569 else
570 hdr->cmdp[0] = 0x8e; // write and verify(16)
571 break;
572 // BYTCHK is disabled by virtue of the memset in sgio_hdr_init
573 case FIO_SG_WRITE_SAME:
574 hdr->dxfer_len = sd->bs;
575 if (lba < MAX_10B_LBA)
576 hdr->cmdp[0] = 0x41; // write same(10)
577 else
578 hdr->cmdp[0] = 0x93; // write same(16)
579 break;
580 };
b4b9665e
VF
581
582 fio_sgio_rw_lba(hdr, lba, nr_blocks);
583
584 } else if (io_u->ddir == DDIR_TRIM) {
585 struct sgio_trim *st;
586
587 if (sd->current_queue == -1) {
588 sgio_hdr_init(sd, hdr, io_u, 0);
589
590 hdr->cmd_len = 10;
591 hdr->dxfer_direction = SG_DXFER_TO_DEV;
592 hdr->cmdp[0] = 0x42; // unmap
593 sd->current_queue = io_u->index;
594 st = sd->trim_queues[sd->current_queue];
595 hdr->dxferp = st->unmap_param;
aa18e0ec 596#ifdef FIO_SGIO_DEBUG
b4b9665e
VF
597 assert(sd->trim_queues[io_u->index]->unmap_range_count == 0);
598 dprint(FD_IO, "sg: creating new queue based on io_u %d\n", io_u->index);
aa18e0ec 599#endif
b4b9665e
VF
600 }
601 else
602 st = sd->trim_queues[sd->current_queue];
603
604 dprint(FD_IO, "sg: adding io_u %d to trim queue %d\n", io_u->index, sd->current_queue);
605 st->trim_io_us[st->unmap_range_count] = io_u;
aa18e0ec 606#ifdef FIO_SGIO_DEBUG
b4b9665e 607 sd->trim_queue_map[io_u->index] = sd->current_queue;
aa18e0ec 608#endif
b4b9665e
VF
609
610 offset = 8 + 16 * st->unmap_range_count;
a824149a
DF
611 sgio_set_be64(lba, &st->unmap_param[offset]);
612 sgio_set_be32((uint32_t) nr_blocks, &st->unmap_param[offset + 8]);
b4b9665e
VF
613
614 st->unmap_range_count++;
615
616 } else if (ddir_sync(io_u->ddir)) {
87dc1ab1 617 sgio_hdr_init(sd, hdr, io_u, 0);
87dc1ab1 618 hdr->dxfer_direction = SG_DXFER_NONE;
5ad7be56
KD
619 if (lba < MAX_10B_LBA)
620 hdr->cmdp[0] = 0x35; // synccache(10)
621 else
622 hdr->cmdp[0] = 0x91; // synccache(16)
b4b9665e
VF
623 } else
624 assert(0);
2866c82d 625
2866c82d
JA
626 return 0;
627}
628
b4b9665e
VF
629static void fio_sgio_unmap_setup(struct sg_io_hdr *hdr, struct sgio_trim *st)
630{
a824149a 631 uint16_t cnt = st->unmap_range_count * 16;
b4b9665e 632
a824149a
DF
633 hdr->dxfer_len = cnt + 8;
634 sgio_set_be16(cnt + 8, &hdr->cmdp[7]);
635 sgio_set_be16(cnt + 6, st->unmap_param);
636 sgio_set_be16(cnt, &st->unmap_param[2]);
b4b9665e
VF
637
638 return;
639}
640
2e4ef4fb
JA
641static enum fio_q_status fio_sgio_queue(struct thread_data *td,
642 struct io_u *io_u)
2866c82d
JA
643{
644 struct sg_io_hdr *hdr = &io_u->hdr;
b4b9665e 645 struct sgio_data *sd = td->io_ops_data;
f6db4fa5 646 int ret, do_sync = 0;
2866c82d 647
7101d9c2
JA
648 fio_ro_check(td, io_u);
649
b4b9665e 650 if (sgio_unbuffered(td) || ddir_sync(io_u->ddir))
f6db4fa5
JA
651 do_sync = 1;
652
b4b9665e
VF
653 if (io_u->ddir == DDIR_TRIM) {
654 if (do_sync || io_u->file->filetype == FIO_TYPE_BLOCK) {
655 struct sgio_trim *st = sd->trim_queues[sd->current_queue];
656
657 /* finish cdb setup for unmap because we are
658 ** doing unmap commands synchronously */
aa18e0ec 659#ifdef FIO_SGIO_DEBUG
b4b9665e
VF
660 assert(st->unmap_range_count == 1);
661 assert(io_u == st->trim_io_us[0]);
aa18e0ec 662#endif
b4b9665e
VF
663 hdr = &io_u->hdr;
664
665 fio_sgio_unmap_setup(hdr, st);
666
667 st->unmap_range_count = 0;
668 sd->current_queue = -1;
669 } else
670 /* queue up trim ranges and submit in commit() */
671 return FIO_Q_QUEUED;
672 }
673
f6db4fa5 674 ret = fio_sgio_doio(td, io_u, do_sync);
2866c82d
JA
675
676 if (ret < 0)
677 io_u->error = errno;
678 else if (hdr->status) {
679 io_u->resid = hdr->resid;
680 io_u->error = EIO;
b4b9665e
VF
681 } else if (td->io_ops->commit != NULL) {
682 if (do_sync && !ddir_sync(io_u->ddir)) {
683 io_u_mark_submit(td, 1);
684 io_u_mark_complete(td, 1);
685 } else if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) {
686 io_u_mark_submit(td, 1);
687 io_u_queued(td, io_u);
688 }
2866c82d
JA
689 }
690
95bcd815 691 if (io_u->error) {
e1161c32 692 td_verror(td, io_u->error, "xfer");
36167d82 693 return FIO_Q_COMPLETED;
95bcd815
JA
694 }
695
36167d82 696 return ret;
2866c82d
JA
697}
698
b4b9665e
VF
699static int fio_sgio_commit(struct thread_data *td)
700{
701 struct sgio_data *sd = td->io_ops_data;
702 struct sgio_trim *st;
703 struct io_u *io_u;
704 struct sg_io_hdr *hdr;
705 struct timespec now;
706 unsigned int i;
707 int ret;
708
709 if (sd->current_queue == -1)
710 return 0;
711
712 st = sd->trim_queues[sd->current_queue];
713 io_u = st->trim_io_us[0];
714 hdr = &io_u->hdr;
715
716 fio_sgio_unmap_setup(hdr, st);
717
718 sd->current_queue = -1;
719
a999bc49 720 ret = fio_sgio_rw_doio(td, io_u->file, io_u, 0);
b4b9665e 721
53ee8c17
VF
722 if (ret < 0 || hdr->status) {
723 int error;
724
725 if (ret < 0)
726 error = errno;
727 else {
728 error = EIO;
729 ret = -EIO;
b4b9665e 730 }
53ee8c17
VF
731
732 for (i = 0; i < st->unmap_range_count; i++) {
733 st->trim_io_us[i]->error = error;
734 clear_io_u(td, st->trim_io_us[i]);
735 if (hdr->status)
736 st->trim_io_us[i]->resid = hdr->resid;
b4b9665e 737 }
53ee8c17
VF
738
739 td_verror(td, error, "xfer");
740 return ret;
b4b9665e
VF
741 }
742
53ee8c17
VF
743 if (fio_fill_issue_time(td)) {
744 fio_gettime(&now, NULL);
745 for (i = 0; i < st->unmap_range_count; i++) {
746 memcpy(&st->trim_io_us[i]->issue_time, &now, sizeof(now));
747 io_u_queued(td, io_u);
748 }
b4b9665e 749 }
53ee8c17 750 io_u_mark_submit(td, st->unmap_range_count);
b4b9665e 751
53ee8c17 752 return 0;
b4b9665e
VF
753}
754
2866c82d
JA
755static struct io_u *fio_sgio_event(struct thread_data *td, int event)
756{
565e784d 757 struct sgio_data *sd = td->io_ops_data;
2866c82d
JA
758
759 return sd->events[event];
760}
761
5ad7be56
KD
762static int fio_sgio_read_capacity(struct thread_data *td, unsigned int *bs,
763 unsigned long long *max_lba)
2866c82d 764{
5ad7be56
KD
765 /*
766 * need to do read capacity operation w/o benefit of sd or
767 * io_u structures, which are not initialized until later.
768 */
769 struct sg_io_hdr hdr;
02ae7bd8
DF
770 unsigned long long hlba;
771 unsigned int blksz = 0;
5ad7be56
KD
772 unsigned char cmd[16];
773 unsigned char sb[64];
774 unsigned char buf[32]; // read capacity return
2866c82d 775 int ret;
5ad7be56 776 int fd = -1;
2866c82d 777
5ad7be56 778 struct fio_file *f = td->files[0];
2866c82d 779
5ad7be56
KD
780 /* open file independent of rest of application */
781 fd = open(f->file_name, O_RDONLY);
782 if (fd < 0)
783 return -errno;
2866c82d 784
5ad7be56
KD
785 memset(&hdr, 0, sizeof(hdr));
786 memset(cmd, 0, sizeof(cmd));
787 memset(sb, 0, sizeof(sb));
788 memset(buf, 0, sizeof(buf));
2866c82d 789
5ad7be56
KD
790 /* First let's try a 10 byte read capacity. */
791 hdr.interface_id = 'S';
792 hdr.cmdp = cmd;
793 hdr.cmd_len = 10;
794 hdr.sbp = sb;
795 hdr.mx_sb_len = sizeof(sb);
796 hdr.timeout = SCSI_TIMEOUT_MS;
797 hdr.cmdp[0] = 0x25; // Read Capacity(10)
798 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
799 hdr.dxferp = buf;
800 hdr.dxfer_len = sizeof(buf);
801
802 ret = ioctl(fd, SG_IO, &hdr);
803 if (ret < 0) {
804 close(fd);
2866c82d 805 return ret;
5ad7be56 806 }
2866c82d 807
02ae7bd8
DF
808 if (hdr.info & SG_INFO_CHECK) {
809 /* RCAP(10) might be unsupported by device. Force RCAP(16) */
810 hlba = MAX_10B_LBA;
811 } else {
a824149a
DF
812 blksz = sgio_get_be32(&buf[4]);
813 hlba = sgio_get_be32(buf);
02ae7bd8 814 }
5ad7be56
KD
815
816 /*
fde57152
TK
817 * If max lba masked by MAX_10B_LBA equals MAX_10B_LBA,
818 * then need to retry with 16 byte Read Capacity command.
5ad7be56 819 */
02ae7bd8 820 if (hlba == MAX_10B_LBA) {
5ad7be56 821 hdr.cmd_len = 16;
28c43a89
TK
822 hdr.cmdp[0] = 0x9e; // service action
823 hdr.cmdp[1] = 0x10; // Read Capacity(16)
a824149a 824 sgio_set_be32(sizeof(buf), &hdr.cmdp[10]);
5ad7be56
KD
825
826 hdr.dxfer_direction = SG_DXFER_FROM_DEV;
827 hdr.dxferp = buf;
828 hdr.dxfer_len = sizeof(buf);
829
830 ret = ioctl(fd, SG_IO, &hdr);
831 if (ret < 0) {
832 close(fd);
833 return ret;
834 }
835
836 /* record if an io error occurred */
837 if (hdr.info & SG_INFO_CHECK)
838 td_verror(td, EIO, "fio_sgio_read_capacity");
839
a824149a
DF
840 blksz = sgio_get_be32(&buf[8]);
841 hlba = sgio_get_be64(buf);
02ae7bd8
DF
842 }
843
844 if (blksz) {
845 *bs = blksz;
846 *max_lba = hlba;
847 ret = 0;
848 } else {
849 ret = EIO;
5ad7be56
KD
850 }
851
852 close(fd);
02ae7bd8 853 return ret;
2866c82d
JA
854}
855
856static void fio_sgio_cleanup(struct thread_data *td)
857{
565e784d 858 struct sgio_data *sd = td->io_ops_data;
b4b9665e 859 int i;
dc0deca2
JA
860
861 if (sd) {
862 free(sd->events);
863 free(sd->cmds);
864 free(sd->fd_flags);
865 free(sd->pfds);
866 free(sd->sgbuf);
aa18e0ec 867#ifdef FIO_SGIO_DEBUG
b4b9665e 868 free(sd->trim_queue_map);
aa18e0ec 869#endif
b4b9665e
VF
870
871 for (i = 0; i < td->o.iodepth; i++) {
872 free(sd->trim_queues[i]->unmap_param);
873 free(sd->trim_queues[i]->trim_io_us);
874 free(sd->trim_queues[i]);
875 }
876
877 free(sd->trim_queues);
dc0deca2 878 free(sd);
2866c82d
JA
879 }
880}
881
882static int fio_sgio_init(struct thread_data *td)
883{
884 struct sgio_data *sd;
b4b9665e 885 struct sgio_trim *st;
b0dc148e 886 struct sg_io_hdr *h3p;
b4b9665e 887 int i;
2866c82d 888
b4b9665e
VF
889 sd = calloc(1, sizeof(*sd));
890 sd->cmds = calloc(td->o.iodepth, sizeof(struct sgio_cmd));
891 sd->sgbuf = calloc(td->o.iodepth, sizeof(struct sg_io_hdr));
892 sd->events = calloc(td->o.iodepth, sizeof(struct io_u *));
893 sd->pfds = calloc(td->o.nr_files, sizeof(struct pollfd));
894 sd->fd_flags = calloc(td->o.nr_files, sizeof(int));
5ad7be56 895 sd->type_checked = 0;
b4b9665e
VF
896
897 sd->trim_queues = calloc(td->o.iodepth, sizeof(struct sgio_trim *));
898 sd->current_queue = -1;
aa18e0ec 899#ifdef FIO_SGIO_DEBUG
b4b9665e 900 sd->trim_queue_map = calloc(td->o.iodepth, sizeof(int));
aa18e0ec 901#endif
b0dc148e 902 for (i = 0, h3p = sd->sgbuf; i < td->o.iodepth; i++, ++h3p) {
b4b9665e
VF
903 sd->trim_queues[i] = calloc(1, sizeof(struct sgio_trim));
904 st = sd->trim_queues[i];
905 st->unmap_param = calloc(td->o.iodepth + 1, sizeof(char[16]));
906 st->unmap_range_count = 0;
907 st->trim_io_us = calloc(td->o.iodepth, sizeof(struct io_u *));
b0dc148e 908 h3p->interface_id = 'S';
b4b9665e
VF
909 }
910
565e784d 911 td->io_ops_data = sd;
2866c82d 912
b5af8293
JA
913 /*
914 * we want to do it, regardless of whether odirect is set or not
915 */
2dc1bbeb 916 td->o.override_sync = 1;
b5af8293
JA
917 return 0;
918}
919
920static int fio_sgio_type_check(struct thread_data *td, struct fio_file *f)
921{
565e784d 922 struct sgio_data *sd = td->io_ops_data;
5ad7be56
KD
923 unsigned int bs = 0;
924 unsigned long long max_lba = 0;
925
686fbd31 926 if (f->filetype == FIO_TYPE_BLOCK) {
53cdc686 927 if (ioctl(f->fd, BLKSSZGET, &bs) < 0) {
e1161c32 928 td_verror(td, errno, "ioctl");
b5af8293 929 return 1;
2866c82d 930 }
af52b345 931 } else if (f->filetype == FIO_TYPE_CHAR) {
b5af8293 932 int version, ret;
2866c82d 933
53cdc686 934 if (ioctl(f->fd, SG_GET_VERSION_NUM, &version) < 0) {
e1161c32 935 td_verror(td, errno, "ioctl");
b5af8293 936 return 1;
2866c82d
JA
937 }
938
5ad7be56
KD
939 ret = fio_sgio_read_capacity(td, &bs, &max_lba);
940 if (ret) {
941 td_verror(td, td->error, "fio_sgio_read_capacity");
942 log_err("ioengine sg unable to read capacity successfully\n");
b5af8293 943 return 1;
5ad7be56 944 }
2866c82d 945 } else {
16ada754 946 td_verror(td, EINVAL, "wrong file type");
30dac136 947 log_err("ioengine sg only works on block or character devices\n");
b5af8293 948 return 1;
2866c82d
JA
949 }
950
951 sd->bs = bs;
5ad7be56 952 // Determine size of commands needed based on max_lba
166c6b42
TK
953 if (max_lba >= MAX_10B_LBA) {
954 dprint(FD_IO, "sgio_type_check: using 16 byte read/write "
955 "commands for lba above 0x%016llx/0x%016llx\n",
956 MAX_10B_LBA, max_lba);
5ad7be56
KD
957 }
958
686fbd31 959 if (f->filetype == FIO_TYPE_BLOCK) {
36167d82
JA
960 td->io_ops->getevents = NULL;
961 td->io_ops->event = NULL;
b4b9665e
VF
962 td->io_ops->commit = NULL;
963 /*
964 ** Setting these functions to null may cause problems
965 ** with filename=/dev/sda:/dev/sg0 since we are only
966 ** considering a single file
967 */
36167d82 968 }
5ad7be56 969 sd->type_checked = 1;
2866c82d 970
2866c82d 971 return 0;
b5af8293
JA
972}
973
974static int fio_sgio_open(struct thread_data *td, struct fio_file *f)
975{
565e784d 976 struct sgio_data *sd = td->io_ops_data;
b5af8293
JA
977 int ret;
978
979 ret = generic_open_file(td, f);
980 if (ret)
981 return ret;
982
15ba640a 983 if (sd && !sd->type_checked && fio_sgio_type_check(td, f)) {
6977bcd0 984 ret = generic_close_file(td, f);
67486df3 985 return ret;
b5af8293
JA
986 }
987
988 return 0;
2866c82d
JA
989}
990
5ad7be56
KD
991/*
992 * Build an error string with details about the driver, host or scsi
993 * error contained in the sg header Caller will use as necessary.
994 */
995static char *fio_sgio_errdetails(struct io_u *io_u)
996{
997 struct sg_io_hdr *hdr = &io_u->hdr;
998#define MAXERRDETAIL 1024
999#define MAXMSGCHUNK 128
fd04fa03 1000 char *msg, msgchunk[MAXMSGCHUNK];
5ad7be56
KD
1001 int i;
1002
efa72f25 1003 msg = calloc(1, MAXERRDETAIL);
fd04fa03 1004 strcpy(msg, "");
5ad7be56
KD
1005
1006 /*
1007 * can't seem to find sg_err.h, so I'll just echo the define values
1008 * so others can search on internet to find clearer clues of meaning.
1009 */
1010 if (hdr->info & SG_INFO_CHECK) {
5ad7be56
KD
1011 if (hdr->host_status) {
1012 snprintf(msgchunk, MAXMSGCHUNK, "SG Host Status: 0x%02x; ", hdr->host_status);
1013 strlcat(msg, msgchunk, MAXERRDETAIL);
1014 switch (hdr->host_status) {
1015 case 0x01:
1016 strlcat(msg, "SG_ERR_DID_NO_CONNECT", MAXERRDETAIL);
1017 break;
1018 case 0x02:
1019 strlcat(msg, "SG_ERR_DID_BUS_BUSY", MAXERRDETAIL);
1020 break;
1021 case 0x03:
1022 strlcat(msg, "SG_ERR_DID_TIME_OUT", MAXERRDETAIL);
1023 break;
1024 case 0x04:
1025 strlcat(msg, "SG_ERR_DID_BAD_TARGET", MAXERRDETAIL);
1026 break;
1027 case 0x05:
1028 strlcat(msg, "SG_ERR_DID_ABORT", MAXERRDETAIL);
1029 break;
1030 case 0x06:
1031 strlcat(msg, "SG_ERR_DID_PARITY", MAXERRDETAIL);
1032 break;
1033 case 0x07:
1034 strlcat(msg, "SG_ERR_DID_ERROR (internal error)", MAXERRDETAIL);
1035 break;
1036 case 0x08:
1037 strlcat(msg, "SG_ERR_DID_RESET", MAXERRDETAIL);
1038 break;
1039 case 0x09:
1040 strlcat(msg, "SG_ERR_DID_BAD_INTR (unexpected)", MAXERRDETAIL);
1041 break;
1042 case 0x0a:
1043 strlcat(msg, "SG_ERR_DID_PASSTHROUGH", MAXERRDETAIL);
1044 break;
1045 case 0x0b:
1046 strlcat(msg, "SG_ERR_DID_SOFT_ERROR (driver retry?)", MAXERRDETAIL);
1047 break;
1048 case 0x0c:
1049 strlcat(msg, "SG_ERR_DID_IMM_RETRY", MAXERRDETAIL);
1050 break;
1051 case 0x0d:
1052 strlcat(msg, "SG_ERR_DID_REQUEUE", MAXERRDETAIL);
1053 break;
2ce6c6e5
TK
1054 case 0x0e:
1055 strlcat(msg, "SG_ERR_DID_TRANSPORT_DISRUPTED", MAXERRDETAIL);
1056 break;
1057 case 0x0f:
1058 strlcat(msg, "SG_ERR_DID_TRANSPORT_FAILFAST", MAXERRDETAIL);
1059 break;
1060 case 0x10:
1061 strlcat(msg, "SG_ERR_DID_TARGET_FAILURE", MAXERRDETAIL);
1062 break;
1063 case 0x11:
1064 strlcat(msg, "SG_ERR_DID_NEXUS_FAILURE", MAXERRDETAIL);
1065 break;
1066 case 0x12:
1067 strlcat(msg, "SG_ERR_DID_ALLOC_FAILURE", MAXERRDETAIL);
1068 break;
1069 case 0x13:
1070 strlcat(msg, "SG_ERR_DID_MEDIUM_ERROR", MAXERRDETAIL);
1071 break;
5ad7be56
KD
1072 default:
1073 strlcat(msg, "Unknown", MAXERRDETAIL);
1074 break;
1075 }
1076 strlcat(msg, ". ", MAXERRDETAIL);
1077 }
1078 if (hdr->driver_status) {
1079 snprintf(msgchunk, MAXMSGCHUNK, "SG Driver Status: 0x%02x; ", hdr->driver_status);
1080 strlcat(msg, msgchunk, MAXERRDETAIL);
1081 switch (hdr->driver_status & 0x0F) {
1082 case 0x01:
1083 strlcat(msg, "SG_ERR_DRIVER_BUSY", MAXERRDETAIL);
1084 break;
1085 case 0x02:
1086 strlcat(msg, "SG_ERR_DRIVER_SOFT", MAXERRDETAIL);
1087 break;
1088 case 0x03:
1089 strlcat(msg, "SG_ERR_DRIVER_MEDIA", MAXERRDETAIL);
1090 break;
1091 case 0x04:
1092 strlcat(msg, "SG_ERR_DRIVER_ERROR", MAXERRDETAIL);
1093 break;
1094 case 0x05:
1095 strlcat(msg, "SG_ERR_DRIVER_INVALID", MAXERRDETAIL);
1096 break;
1097 case 0x06:
1098 strlcat(msg, "SG_ERR_DRIVER_TIMEOUT", MAXERRDETAIL);
1099 break;
1100 case 0x07:
1101 strlcat(msg, "SG_ERR_DRIVER_HARD", MAXERRDETAIL);
1102 break;
1103 case 0x08:
1104 strlcat(msg, "SG_ERR_DRIVER_SENSE", MAXERRDETAIL);
1105 break;
1106 default:
1107 strlcat(msg, "Unknown", MAXERRDETAIL);
1108 break;
1109 }
1110 strlcat(msg, "; ", MAXERRDETAIL);
1111 switch (hdr->driver_status & 0xF0) {
1112 case 0x10:
1113 strlcat(msg, "SG_ERR_SUGGEST_RETRY", MAXERRDETAIL);
1114 break;
1115 case 0x20:
1116 strlcat(msg, "SG_ERR_SUGGEST_ABORT", MAXERRDETAIL);
1117 break;
1118 case 0x30:
1119 strlcat(msg, "SG_ERR_SUGGEST_REMAP", MAXERRDETAIL);
1120 break;
1121 case 0x40:
1122 strlcat(msg, "SG_ERR_SUGGEST_DIE", MAXERRDETAIL);
1123 break;
1124 case 0x80:
1125 strlcat(msg, "SG_ERR_SUGGEST_SENSE", MAXERRDETAIL);
1126 break;
1127 }
1128 strlcat(msg, ". ", MAXERRDETAIL);
1129 }
1130 if (hdr->status) {
1131 snprintf(msgchunk, MAXMSGCHUNK, "SG SCSI Status: 0x%02x; ", hdr->status);
1132 strlcat(msg, msgchunk, MAXERRDETAIL);
1133 // SCSI 3 status codes
1134 switch (hdr->status) {
1135 case 0x02:
1136 strlcat(msg, "CHECK_CONDITION", MAXERRDETAIL);
1137 break;
1138 case 0x04:
1139 strlcat(msg, "CONDITION_MET", MAXERRDETAIL);
1140 break;
1141 case 0x08:
1142 strlcat(msg, "BUSY", MAXERRDETAIL);
1143 break;
1144 case 0x10:
1145 strlcat(msg, "INTERMEDIATE", MAXERRDETAIL);
1146 break;
1147 case 0x14:
1148 strlcat(msg, "INTERMEDIATE_CONDITION_MET", MAXERRDETAIL);
1149 break;
1150 case 0x18:
1151 strlcat(msg, "RESERVATION_CONFLICT", MAXERRDETAIL);
1152 break;
1153 case 0x22:
1154 strlcat(msg, "COMMAND_TERMINATED", MAXERRDETAIL);
1155 break;
1156 case 0x28:
1157 strlcat(msg, "TASK_SET_FULL", MAXERRDETAIL);
1158 break;
1159 case 0x30:
1160 strlcat(msg, "ACA_ACTIVE", MAXERRDETAIL);
1161 break;
1162 case 0x40:
1163 strlcat(msg, "TASK_ABORTED", MAXERRDETAIL);
1164 break;
1165 default:
1166 strlcat(msg, "Unknown", MAXERRDETAIL);
1167 break;
1168 }
1169 strlcat(msg, ". ", MAXERRDETAIL);
1170 }
1171 if (hdr->sb_len_wr) {
1172 snprintf(msgchunk, MAXMSGCHUNK, "Sense Data (%d bytes):", hdr->sb_len_wr);
1173 strlcat(msg, msgchunk, MAXERRDETAIL);
1174 for (i = 0; i < hdr->sb_len_wr; i++) {
1175 snprintf(msgchunk, MAXMSGCHUNK, " %02x", hdr->sbp[i]);
1176 strlcat(msg, msgchunk, MAXERRDETAIL);
1177 }
1178 strlcat(msg, ". ", MAXERRDETAIL);
1179 }
1180 if (hdr->resid != 0) {
1181 snprintf(msgchunk, MAXMSGCHUNK, "SG Driver: %d bytes out of %d not transferred. ", hdr->resid, hdr->dxfer_len);
1182 strlcat(msg, msgchunk, MAXERRDETAIL);
5ad7be56 1183 }
b4dbb3ce
VF
1184 if (hdr->cmdp) {
1185 strlcat(msg, "cdb:", MAXERRDETAIL);
1186 for (i = 0; i < hdr->cmd_len; i++) {
1187 snprintf(msgchunk, MAXMSGCHUNK, " %02x", hdr->cmdp[i]);
1188 strlcat(msg, msgchunk, MAXERRDETAIL);
1189 }
1190 strlcat(msg, ". ", MAXERRDETAIL);
1191 if (io_u->ddir == DDIR_TRIM) {
1192 unsigned char *param_list = hdr->dxferp;
1193 strlcat(msg, "dxferp:", MAXERRDETAIL);
1194 for (i = 0; i < hdr->dxfer_len; i++) {
1195 snprintf(msgchunk, MAXMSGCHUNK, " %02x", param_list[i]);
1196 strlcat(msg, msgchunk, MAXERRDETAIL);
1197 }
1198 strlcat(msg, ". ", MAXERRDETAIL);
1199 }
1200 }
5ad7be56
KD
1201 }
1202
fd04fa03 1203 if (!(hdr->info & SG_INFO_CHECK) && !strlen(msg))
36833fb0
BVA
1204 snprintf(msg, MAXERRDETAIL, "%s",
1205 "SG Driver did not report a Host, Driver or Device check");
5ad7be56 1206
fd04fa03 1207 return msg;
5ad7be56
KD
1208}
1209
1210/*
1211 * get max file size from read capacity.
1212 */
1213static int fio_sgio_get_file_size(struct thread_data *td, struct fio_file *f)
1214{
1215 /*
1216 * get_file_size is being called even before sgio_init is
1217 * called, so none of the sg_io structures are
1218 * initialized in the thread_data yet. So we need to do the
1219 * ReadCapacity without any of those helpers. One of the effects
1220 * is that ReadCapacity may get called 4 times on each open:
1221 * readcap(10) followed by readcap(16) if needed - just to get
1222 * the file size after the init occurs - it will be called
1223 * again when "type_check" is called during structure
1224 * initialization I'm not sure how to prevent this little
1225 * inefficiency.
1226 */
1227 unsigned int bs = 0;
1228 unsigned long long max_lba = 0;
1229 int ret;
1230
1231 if (fio_file_size_known(f))
1232 return 0;
1233
686fbd31 1234 if (f->filetype != FIO_TYPE_BLOCK && f->filetype != FIO_TYPE_CHAR) {
30dac136
TK
1235 td_verror(td, EINVAL, "wrong file type");
1236 log_err("ioengine sg only works on block or character devices\n");
1237 return 1;
1238 }
1239
5ad7be56
KD
1240 ret = fio_sgio_read_capacity(td, &bs, &max_lba);
1241 if (ret ) {
1242 td_verror(td, td->error, "fio_sgio_read_capacity");
1243 log_err("ioengine sg unable to successfully execute read capacity to get block size and maximum lba\n");
1244 return 1;
1245 }
1246
1247 f->real_file_size = (max_lba + 1) * bs;
1248 fio_file_set_size_known(f);
1249 return 0;
1250}
1251
1252
5f350952 1253static struct ioengine_ops ioengine = {
2866c82d
JA
1254 .name = "sg",
1255 .version = FIO_IOOPS_VERSION,
1256 .init = fio_sgio_init,
1257 .prep = fio_sgio_prep,
1258 .queue = fio_sgio_queue,
b4b9665e 1259 .commit = fio_sgio_commit,
2866c82d 1260 .getevents = fio_sgio_getevents,
5ad7be56 1261 .errdetails = fio_sgio_errdetails,
2866c82d
JA
1262 .event = fio_sgio_event,
1263 .cleanup = fio_sgio_cleanup,
b5af8293
JA
1264 .open_file = fio_sgio_open,
1265 .close_file = generic_close_file,
fde57152 1266 .get_file_size = fio_sgio_get_file_size,
b2a15192 1267 .flags = FIO_SYNCIO | FIO_RAWIO,
52b81b7c
KD
1268 .options = options,
1269 .option_struct_size = sizeof(struct sg_options)
2866c82d 1270};
34cfcdaf
JA
1271
1272#else /* FIO_HAVE_SGIO */
1273
1274/*
1275 * When we have a proper configure system in place, we simply wont build
1276 * and install this io engine. For now install a crippled version that
1277 * just complains and fails to load.
1278 */
1279static int fio_sgio_init(struct thread_data fio_unused *td)
1280{
a3edaf76 1281 log_err("fio: ioengine sg not available\n");
34cfcdaf
JA
1282 return 1;
1283}
1284
5f350952 1285static struct ioengine_ops ioengine = {
d0c70934 1286 .name = "sg",
34cfcdaf
JA
1287 .version = FIO_IOOPS_VERSION,
1288 .init = fio_sgio_init,
1289};
1290
1291#endif
5f350952
JA
1292
1293static void fio_init fio_sgio_register(void)
1294{
1295 register_ioengine(&ioengine);
1296}
1297
1298static void fio_exit fio_sgio_unregister(void)
1299{
1300 unregister_ioengine(&ioengine);
1301}