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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "sg_include.h"
#include "sg_err.h"
/* This code is does a SCSI READ CAPACITY command on the given device
and outputs the result.
* Copyright (C) 1999 - 2001 D. Gilbert
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
This program is program should work on the 2.0, 2.2 and 2.3 series
of Linux kernels no matter which of those enviroments it was
compiled and built under.
Version 0.52 (20010115)
10 byte READ CAPACITY command:
[0x25][ |lu][ ][ ][ ][ ][ ][ ][cntrl] {ignore PMI mode}
*/
#ifndef SG_GET_RESERVED_SIZE
#define SG_GET_RESERVED_SIZE 0x2272
#endif
#ifndef SG_SET_RESERVED_SIZE
#define SG_SET_RESERVED_SIZE 0x2275
#endif
#ifndef SG_GET_VERSION_NUM
#define SG_GET_VERSION_NUM 0x2282
#endif
#ifndef SG_NEXT_CMD_LEN
#define SG_NEXT_CMD_LEN 0x2283
#endif
#ifndef SG_MAX_SENSE
#define SG_MAX_SENSE 16
#endif
#define SG_RT_UNKN (-1)
#define SG_RT_ORIG 0
#define SG_RT_NEW32 1 /* new driver version 2.1.31 + 2.1.32 */
#define SG_RT_NEW34 2 /* new driver version 2.1.34 and after */
typedef struct sg_h_n /* for "forward" compatibility case */
{
int pack_len; /* [o] reply_len (ie useless), ignored as input */
int reply_len; /* [i] max length of expected reply (inc. sg_header) */
int pack_id; /* [io] id number of packet (use ints >= 0) */
int result; /* [o] 0==ok, else (+ve) Unix errno (best ignored) */
unsigned int twelve_byte:1;
/* [i] Force 12 byte command length for group 6 & 7 commands */
unsigned int target_status:5; /* [o] scsi status from target */
unsigned int host_status:8; /* [o] host status (see "DID" codes) */
unsigned int driver_status:8; /* [o] driver status+suggestion */
unsigned int other_flags:10; /* unused */
unsigned char sense_buffer[SG_MAX_SENSE]; /* [o] Output in 3 cases:
when target_status is CHECK_CONDITION or
when target_status is COMMAND_TERMINATED or
when (driver_status & DRIVER_SENSE) is true. */
} Sg_h_n; /* This structure is 36 bytes long on i386 */
static int open_scsi_dev_as_sg(char * devname);
#define OFF sizeof(struct sg_header)
#define RCAP_REPLY_LEN 8
#define RCAP_CMD_LEN 10
#define MY_PACK_ID 1234
static void usage()
{
printf("Usage: 'sg_readcap <scsi_device>'\n");
}
int main(int argc, char * argv[])
{
int sg_fd, k, cmd_len, ok;
unsigned char rcapCmdBlk [RCAP_CMD_LEN] =
{0x25, 0, 0, 0, 0, 0, 0, 0, 0, 0};
unsigned char rcapBuff[OFF + OFF + RCAP_REPLY_LEN]; /* Overkill */
int rcapInLen = OFF + sizeof(rcapCmdBlk);
int rcapOutLen = OFF + RCAP_REPLY_LEN;
unsigned char * buffp = rcapBuff + OFF;
struct sg_header * sghp = (struct sg_header *)rcapBuff;
Sg_h_n * n_sghp = (Sg_h_n *)rcapBuff;
char * file_name = 0;
int reserved_size;
int sg_which = SG_RT_UNKN;
int sg_version = 0;
for (k = 1; k < argc; ++k) {
if (*argv[k] == '-') {
printf("Unrecognized switch: %s\n", argv[k]);
file_name = 0;
break;
}
else
file_name = argv[k];
}
if (0 == file_name) {
usage();
return 1;
}
sg_fd = open_scsi_dev_as_sg(file_name);
if (sg_fd < 0) {
if (-9999 == sg_fd)
printf("Failed trying to open SCSI device as an sg device\n");
else
perror("sg_readcap: open error");
return 1;
}
/* Run time selection code follows */
if (ioctl(sg_fd, SG_GET_RESERVED_SIZE, &reserved_size) < 0) {
reserved_size = SG_BIG_BUFF;
sg_which = SG_RT_ORIG;
}
else if (ioctl(sg_fd, SG_GET_VERSION_NUM, &sg_version) < 0)
sg_which = SG_RT_NEW32;
else
sg_which = SG_RT_NEW34;
sghp->reply_len = rcapOutLen;
sghp->pack_id = MY_PACK_ID;
sghp->twelve_byte = 0;
sghp->other_flags = 0; /* some apps assume this is done ?!? */
switch (sg_which) {
case SG_RT_ORIG:
sghp->sense_buffer[0] = 0;
break;
case SG_RT_NEW32:
break;
case SG_RT_NEW34: /* this is optional, explicitly setting cmd length */
cmd_len = RCAP_CMD_LEN;
if (ioctl(sg_fd, SG_NEXT_CMD_LEN, &cmd_len) < 0) {
perror("sg_readcap: SG_NEXT_CMD_LEN error");
close(sg_fd);
return 1;
}
break;
default:
printf("Illegal state for sg_which=%d\n", sg_which);
return 1;
}
memcpy(rcapBuff + OFF, rcapCmdBlk, RCAP_CMD_LEN);
if (write(sg_fd, rcapBuff, rcapInLen) < 0) {
perror("sg_readcap: write error");
close(sg_fd);
return 1;
}
if (read(sg_fd, rcapBuff, rcapOutLen) < 0) {
perror("sg_readcap: read error");
close(sg_fd);
return 1;
}
/* now for the error processing */
ok = 0;
switch (sg_which) {
case SG_RT_ORIG:
if ((0 == sghp->result) && (0 == sghp->sense_buffer[0]))
ok = 1;
else if (sghp->sense_buffer[0])
sg_print_sense("READ CAPACITY command error", sghp->sense_buffer,
SG_MAX_SENSE);
else /* sghp->result is != 0 */
printf("READ CAPACITY failed, sghp->result=%d\n", sghp->result);
break;
case SG_RT_NEW32:
case SG_RT_NEW34:
switch (sg_err_category(n_sghp->target_status, n_sghp->host_status,
n_sghp->driver_status, n_sghp->sense_buffer, SG_MAX_SENSE)) {
case SG_ERR_CAT_CLEAN:
ok = 1;
break;
case SG_ERR_CAT_RECOVERED:
printf("Recovered error on READ CAPACITY, continuing\n");
ok = 1;
break;
default: /* won't bother decoding other categories */
sg_chk_n_print("READ CAPACITY command error",
n_sghp->target_status,
n_sghp->host_status, n_sghp->driver_status,
n_sghp->sense_buffer, SG_MAX_SENSE);
break;
}
break;
default:
break;
}
if (ok) { /* output result if it is available */
unsigned int last_blk_addr;
unsigned int block_size;
last_blk_addr = 0xff & *(buffp + 3);
last_blk_addr |= (0xff & *(buffp + 2)) << 8;
last_blk_addr |= (0xff & *(buffp + 1)) << 16;
last_blk_addr |= (0xff & *buffp) << 24;
block_size = 0xff & *(buffp + 7);
block_size |= (0xff & *(buffp + 6)) << 8;
block_size |= (0xff & *(buffp + 5)) << 16;
block_size |= (0xff & *(buffp + 4)) << 24;
printf("Read Capacity results:\n");
printf(" Last block address = %u (0x%x), Number of blocks = %u\n",
last_blk_addr, (int)last_blk_addr, last_blk_addr + 1);
printf(" Block size = %u bytes\n", block_size);
}
close(sg_fd);
return 0;
}
#define MAX_SG_DEVS 26
#define MAX_FILENAME_LEN 128
#define SCAN_ALPHA 0
#define SCAN_NUMERIC 1
#define DEF_SCAN SCAN_ALPHA
static void make_dev_name(char * fname, int k, int do_numeric)
{
char buff[MAX_FILENAME_LEN];
strcpy(fname, "/dev/sg");
if (do_numeric) {
sprintf(buff, "%d", k);
strcat(fname, buff);
}
else {
if (k <= 26) {
buff[0] = 'a' + (char)k;
buff[1] = '\0';
strcat(fname, buff);
}
else
strcat(fname, "xxxx");
}
}
typedef struct my_scsi_idlun
{
int mux4;
int host_unique_id;
} My_scsi_idlun;
static int open_scsi_dev_as_sg(char * devname)
{
int fd, bus, bbus, k;
My_scsi_idlun m_idlun, mm_idlun;
int do_numeric = DEF_SCAN;
char name[MAX_FILENAME_LEN];
strcpy(name, devname);
if ((fd = open(name, O_RDONLY | O_NONBLOCK)) < 0) {
if (EACCES == errno) {
if ((fd = open(name, O_RDWR | O_NONBLOCK)) < 0)
return fd;
}
}
if (ioctl(fd, SG_GET_TIMEOUT, 0) < 0) { /* not sg device ? */
if (ioctl(fd, SCSI_IOCTL_GET_BUS_NUMBER, &bus) < 0) {
printf("Need a filename that resolves to a SCSI device\n");
close(fd);
return -9999;
}
if (ioctl(fd, SCSI_IOCTL_GET_IDLUN, &m_idlun) < 0) {
printf("Need a filename that resolves to a SCSI device (2)\n");
close(fd);
return -9999;
}
close(fd);
for (k = 0; k < MAX_SG_DEVS; k++) {
make_dev_name(name, k, do_numeric);
if ((fd = open(name, O_RDONLY | O_NONBLOCK)) < 0) {
if (EACCES == errno)
fd = open(name, O_RDWR | O_NONBLOCK);
if (fd < 0) {
if ((ENOENT == errno) && (0 == k) &&
(do_numeric == DEF_SCAN)) {
do_numeric = ! DEF_SCAN;
make_dev_name(name, k, do_numeric);
if ((fd = open(name, O_RDONLY | O_NONBLOCK)) < 0) {
if (EACCES == errno)
fd = open(name, O_RDWR | O_NONBLOCK);
}
}
if (fd < 0) {
if (EBUSY == errno)
continue; /* step over if O_EXCL already on it */
else
break;
}
}
}
if (ioctl(fd, SCSI_IOCTL_GET_BUS_NUMBER, &bbus) < 0) {
perror("sg ioctl failed");
close(fd);
fd = -9999;
}
if (ioctl(fd, SCSI_IOCTL_GET_IDLUN, &mm_idlun) < 0) {
perror("sg ioctl failed (2)");
close(fd);
fd = -9999;
}
if ((bus == bbus) &&
((m_idlun.mux4 & 0xff) == (mm_idlun.mux4 & 0xff)) &&
(((m_idlun.mux4 >> 8) & 0xff) ==
((mm_idlun.mux4 >> 8) & 0xff)) &&
(((m_idlun.mux4 >> 16) & 0xff) ==
((mm_idlun.mux4 >> 16) & 0xff))) {
printf(" >>> Mapping %s to sg device: %s\n", devname, name);
break;
}
else {
close(fd);
fd = -9999;
}
}
}
if (fd >= 0) { /* everything ok, close and re-open read-write */
close(fd);
return open(name, O_RDWR);
}
else
return fd;
}
|