]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/scsi_id/scsi_serial.c
man: move non-target units together (#6934)
[thirdparty/systemd.git] / src / udev / scsi_id / scsi_serial.c
CommitLineData
e0f83fbe 1/*
c521693b
GKH
2 * Copyright (C) IBM Corp. 2003
3 *
8b5651bb 4 * Author: Patrick Mansfield<patmans@us.ibm.com>
c521693b 5 *
8b5651bb
KS
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
c521693b
GKH
18 */
19
c521693b 20#include <errno.h>
c521693b 21#include <fcntl.h>
78d9ecfd 22#include <inttypes.h>
07630cea
LP
23#include <linux/bsg.h>
24#include <linux/types.h>
78d9ecfd 25#include <scsi/scsi.h>
c521693b 26#include <scsi/sg.h>
07630cea
LP
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <sys/ioctl.h>
31#include <sys/stat.h>
32#include <sys/types.h>
33#include <time.h>
34#include <unistd.h>
1aa1e248 35
cf0fbc49 36#include "libudev.h"
b4bbcaa9
TA
37
38#include "libudev-private.h"
07630cea 39#include "random-util.h"
c521693b 40#include "scsi.h"
1aa1e248 41#include "scsi_id.h"
07630cea 42#include "string-util.h"
c521693b
GKH
43
44/*
45 * A priority based list of id, naa, and binary/ascii for the identifier
46 * descriptor in VPD page 0x83.
47 *
48 * Brute force search for a match starting with the first value in the
49 * following id_search_list. This is not a performance issue, since there
50 * is normally one or some small number of descriptors.
51 */
52static const struct scsi_id_search_values id_search_list[] = {
461577ee
ZJS
53 { SCSI_ID_TGTGROUP, SCSI_ID_NAA_DONT_CARE, SCSI_ID_BINARY },
54 { SCSI_ID_NAA, SCSI_ID_NAA_IEEE_REG_EXTENDED, SCSI_ID_BINARY },
55 { SCSI_ID_NAA, SCSI_ID_NAA_IEEE_REG_EXTENDED, SCSI_ID_ASCII },
56 { SCSI_ID_NAA, SCSI_ID_NAA_IEEE_REG, SCSI_ID_BINARY },
57 { SCSI_ID_NAA, SCSI_ID_NAA_IEEE_REG, SCSI_ID_ASCII },
912541b0
KS
58 /*
59 * Devices already exist using NAA values that are now marked
60 * reserved. These should not conflict with other values, or it is
61 * a bug in the device. As long as we find the IEEE extended one
62 * first, we really don't care what other ones are used. Using
63 * don't care here means that a device that returns multiple
64 * non-IEEE descriptors in a random order will get different
65 * names.
66 */
461577ee
ZJS
67 { SCSI_ID_NAA, SCSI_ID_NAA_DONT_CARE, SCSI_ID_BINARY },
68 { SCSI_ID_NAA, SCSI_ID_NAA_DONT_CARE, SCSI_ID_ASCII },
69 { SCSI_ID_EUI_64, SCSI_ID_NAA_DONT_CARE, SCSI_ID_BINARY },
70 { SCSI_ID_EUI_64, SCSI_ID_NAA_DONT_CARE, SCSI_ID_ASCII },
71 { SCSI_ID_T10_VENDOR, SCSI_ID_NAA_DONT_CARE, SCSI_ID_BINARY },
72 { SCSI_ID_T10_VENDOR, SCSI_ID_NAA_DONT_CARE, SCSI_ID_ASCII },
73 { SCSI_ID_VENDOR_SPECIFIC, SCSI_ID_NAA_DONT_CARE, SCSI_ID_BINARY },
74 { SCSI_ID_VENDOR_SPECIFIC, SCSI_ID_NAA_DONT_CARE, SCSI_ID_ASCII },
c521693b
GKH
75};
76
77static const char hex_str[]="0123456789abcdef";
78
c521693b
GKH
79/*
80 * Values returned in the result/status, only the ones used by the code
81 * are used here.
82 */
83
461577ee
ZJS
84#define DID_NO_CONNECT 0x01 /* Unable to connect before timeout */
85#define DID_BUS_BUSY 0x02 /* Bus remain busy until timeout */
86#define DID_TIME_OUT 0x03 /* Timed out for some other reason */
87#define DRIVER_TIMEOUT 0x06
88#define DRIVER_SENSE 0x08 /* Sense_buffer has been set */
c521693b
GKH
89
90/* The following "category" function returns one of the following */
912541b0
KS
91#define SG_ERR_CAT_CLEAN 0 /* No errors or other information */
92#define SG_ERR_CAT_MEDIA_CHANGED 1 /* interpreted from sense buffer */
93#define SG_ERR_CAT_RESET 2 /* interpreted from sense buffer */
461577ee
ZJS
94#define SG_ERR_CAT_TIMEOUT 3
95#define SG_ERR_CAT_RECOVERED 4 /* Successful command after recovered err */
96#define SG_ERR_CAT_NOTSUPPORTED 5 /* Illegal / unsupported command */
97#define SG_ERR_CAT_SENSE 98 /* Something else in the sense buffer */
98#define SG_ERR_CAT_OTHER 99 /* Some other error/warning */
c521693b 99
4e9fdfcc 100static int do_scsi_page80_inquiry(struct udev *udev,
912541b0
KS
101 struct scsi_id_device *dev_scsi, int fd,
102 char *serial, char *serial_short, int max_len);
4e9fdfcc 103
7d563a17 104static int sg_err_category_new(struct udev *udev,
912541b0
KS
105 int scsi_status, int msg_status, int
106 host_status, int driver_status, const
107 unsigned char *sense_buffer, int sb_len)
c521693b 108{
912541b0
KS
109 scsi_status &= 0x7e;
110
111 /*
112 * XXX change to return only two values - failed or OK.
113 */
114
115 if (!scsi_status && !host_status && !driver_status)
116 return SG_ERR_CAT_CLEAN;
117
118 if ((scsi_status == SCSI_CHECK_CONDITION) ||
119 (scsi_status == SCSI_COMMAND_TERMINATED) ||
120 ((driver_status & 0xf) == DRIVER_SENSE)) {
121 if (sense_buffer && (sb_len > 2)) {
122 int sense_key;
123 unsigned char asc;
124
125 if (sense_buffer[0] & 0x2) {
126 sense_key = sense_buffer[1] & 0xf;
127 asc = sense_buffer[2];
128 } else {
129 sense_key = sense_buffer[2] & 0xf;
130 asc = (sb_len > 12) ? sense_buffer[12] : 0;
131 }
132
133 if (sense_key == RECOVERED_ERROR)
134 return SG_ERR_CAT_RECOVERED;
135 else if (sense_key == UNIT_ATTENTION) {
136 if (0x28 == asc)
137 return SG_ERR_CAT_MEDIA_CHANGED;
138 if (0x29 == asc)
139 return SG_ERR_CAT_RESET;
1f6b4113 140 } else if (sense_key == ILLEGAL_REQUEST)
912541b0 141 return SG_ERR_CAT_NOTSUPPORTED;
912541b0
KS
142 }
143 return SG_ERR_CAT_SENSE;
144 }
145 if (host_status) {
146 if ((host_status == DID_NO_CONNECT) ||
147 (host_status == DID_BUS_BUSY) ||
148 (host_status == DID_TIME_OUT))
149 return SG_ERR_CAT_TIMEOUT;
150 }
151 if (driver_status) {
152 if (driver_status == DRIVER_TIMEOUT)
153 return SG_ERR_CAT_TIMEOUT;
154 }
155 return SG_ERR_CAT_OTHER;
c521693b
GKH
156}
157
7d563a17 158static int sg_err_category3(struct udev *udev, struct sg_io_hdr *hp)
c521693b 159{
912541b0
KS
160 return sg_err_category_new(udev,
161 hp->status, hp->msg_status,
162 hp->host_status, hp->driver_status,
163 hp->sbp, hp->sb_len_wr);
c521693b
GKH
164}
165
7d563a17 166static int sg_err_category4(struct udev *udev, struct sg_io_v4 *hp)
78d9ecfd 167{
912541b0
KS
168 return sg_err_category_new(udev, hp->device_status, 0,
169 hp->transport_status, hp->driver_status,
170 (unsigned char *)(uintptr_t)hp->response,
171 hp->response_len);
78d9ecfd
HR
172}
173
7d563a17 174static int scsi_dump_sense(struct udev *udev,
912541b0
KS
175 struct scsi_id_device *dev_scsi,
176 unsigned char *sense_buffer, int sb_len)
c521693b 177{
912541b0
KS
178 int s;
179 int code;
180 int sense_class;
181 int sense_key;
182 int asc, ascq;
c521693b 183#ifdef DUMP_SENSE
912541b0
KS
184 char out_buffer[256];
185 int i, j;
c521693b
GKH
186#endif
187
912541b0
KS
188 /*
189 * Figure out and print the sense key, asc and ascq.
190 *
191 * If you want to suppress these for a particular drive model, add
192 * a black list entry in the scsi_id config file.
193 *
194 * XXX We probably need to: lookup the sense/asc/ascq in a retry
195 * table, and if found return 1 (after dumping the sense, asc, and
196 * ascq). So, if/when we get something like a power on/reset,
197 * we'll retry the command.
198 */
199
912541b0 200 if (sb_len < 1) {
9f6445e3 201 log_debug("%s: sense buffer empty", dev_scsi->kernel);
912541b0
KS
202 return -1;
203 }
204
205 sense_class = (sense_buffer[0] >> 4) & 0x07;
206 code = sense_buffer[0] & 0xf;
207
208 if (sense_class == 7) {
209 /*
210 * extended sense data.
211 */
212 s = sense_buffer[7] + 8;
213 if (sb_len < s) {
9f6445e3 214 log_debug("%s: sense buffer too small %d bytes, %d bytes too short",
461577ee 215 dev_scsi->kernel, sb_len, s - sb_len);
912541b0
KS
216 return -1;
217 }
218 if ((code == 0x0) || (code == 0x1)) {
219 sense_key = sense_buffer[2] & 0xf;
220 if (s < 14) {
221 /*
222 * Possible?
223 */
9f6445e3 224 log_debug("%s: sense result too" " small %d bytes",
461577ee 225 dev_scsi->kernel, s);
912541b0
KS
226 return -1;
227 }
228 asc = sense_buffer[12];
229 ascq = sense_buffer[13];
230 } else if ((code == 0x2) || (code == 0x3)) {
231 sense_key = sense_buffer[1] & 0xf;
232 asc = sense_buffer[2];
233 ascq = sense_buffer[3];
234 } else {
9f6445e3 235 log_debug("%s: invalid sense code 0x%x",
461577ee 236 dev_scsi->kernel, code);
912541b0
KS
237 return -1;
238 }
9f6445e3 239 log_debug("%s: sense key 0x%x ASC 0x%x ASCQ 0x%x",
461577ee 240 dev_scsi->kernel, sense_key, asc, ascq);
912541b0
KS
241 } else {
242 if (sb_len < 4) {
9f6445e3 243 log_debug("%s: sense buffer too small %d bytes, %d bytes too short",
461577ee 244 dev_scsi->kernel, sb_len, 4 - sb_len);
912541b0
KS
245 return -1;
246 }
247
248 if (sense_buffer[0] < 15)
9f6445e3 249 log_debug("%s: old sense key: 0x%x", dev_scsi->kernel, sense_buffer[0] & 0x0f);
912541b0 250 else
9f6445e3 251 log_debug("%s: sense = %2x %2x",
461577ee 252 dev_scsi->kernel, sense_buffer[0], sense_buffer[2]);
9f6445e3 253 log_debug("%s: non-extended sense class %d code 0x%0x",
461577ee 254 dev_scsi->kernel, sense_class, code);
912541b0
KS
255
256 }
c521693b
GKH
257
258#ifdef DUMP_SENSE
912541b0 259 for (i = 0, j = 0; (i < s) && (j < 254); i++) {
912541b0
KS
260 out_buffer[j++] = hex_str[(sense_buffer[i] & 0xf0) >> 4];
261 out_buffer[j++] = hex_str[sense_buffer[i] & 0x0f];
262 out_buffer[j++] = ' ';
263 }
264 out_buffer[j] = '\0';
9f6445e3
LP
265 log_debug("%s: sense dump:", dev_scsi->kernel);
266 log_debug("%s: %s", dev_scsi->kernel, out_buffer);
c521693b
GKH
267
268#endif
912541b0 269 return -1;
c521693b
GKH
270}
271
7d563a17 272static int scsi_dump(struct udev *udev,
912541b0 273 struct scsi_id_device *dev_scsi, struct sg_io_hdr *io)
c521693b 274{
912541b0
KS
275 if (!io->status && !io->host_status && !io->msg_status &&
276 !io->driver_status) {
277 /*
278 * Impossible, should not be called.
279 */
9f6445e3 280 log_debug("%s: called with no error", __FUNCTION__);
912541b0
KS
281 return -1;
282 }
283
9f6445e3 284 log_debug("%s: sg_io failed status 0x%x 0x%x 0x%x 0x%x",
461577ee 285 dev_scsi->kernel, io->driver_status, io->host_status, io->msg_status, io->status);
912541b0
KS
286 if (io->status == SCSI_CHECK_CONDITION)
287 return scsi_dump_sense(udev, dev_scsi, io->sbp, io->sb_len_wr);
288 else
289 return -1;
78d9ecfd
HR
290}
291
7d563a17 292static int scsi_dump_v4(struct udev *udev,
912541b0 293 struct scsi_id_device *dev_scsi, struct sg_io_v4 *io)
78d9ecfd 294{
912541b0
KS
295 if (!io->device_status && !io->transport_status &&
296 !io->driver_status) {
297 /*
298 * Impossible, should not be called.
299 */
9f6445e3 300 log_debug("%s: called with no error", __FUNCTION__);
912541b0
KS
301 return -1;
302 }
303
9f6445e3 304 log_debug("%s: sg_io failed status 0x%x 0x%x 0x%x",
461577ee 305 dev_scsi->kernel, io->driver_status, io->transport_status, io->device_status);
912541b0
KS
306 if (io->device_status == SCSI_CHECK_CONDITION)
307 return scsi_dump_sense(udev, dev_scsi, (unsigned char *)(uintptr_t)io->response,
308 io->response_len);
309 else
310 return -1;
c521693b
GKH
311}
312
7d563a17 313static int scsi_inquiry(struct udev *udev,
912541b0
KS
314 struct scsi_id_device *dev_scsi, int fd,
315 unsigned char evpd, unsigned char page,
316 unsigned char *buf, unsigned int buflen)
c521693b 317{
912541b0
KS
318 unsigned char inq_cmd[INQUIRY_CMDLEN] =
319 { INQUIRY_CMD, evpd, page, 0, buflen, 0 };
320 unsigned char sense[SENSE_BUFF_LEN];
321 void *io_buf;
322 struct sg_io_v4 io_v4;
323 struct sg_io_hdr io_hdr;
324 int retry = 3; /* rather random */
325 int retval;
326
327 if (buflen > SCSI_INQ_BUFF_LEN) {
9f6445e3 328 log_debug("buflen %d too long", buflen);
912541b0
KS
329 return -1;
330 }
c521693b
GKH
331
332resend:
912541b0 333 if (dev_scsi->use_sg == 4) {
29804cc1 334 memzero(&io_v4, sizeof(struct sg_io_v4));
912541b0
KS
335 io_v4.guard = 'Q';
336 io_v4.protocol = BSG_PROTOCOL_SCSI;
337 io_v4.subprotocol = BSG_SUB_PROTOCOL_SCSI_CMD;
338 io_v4.request_len = sizeof(inq_cmd);
339 io_v4.request = (uintptr_t)inq_cmd;
340 io_v4.max_response_len = sizeof(sense);
341 io_v4.response = (uintptr_t)sense;
342 io_v4.din_xfer_len = buflen;
343 io_v4.din_xferp = (uintptr_t)buf;
344 io_buf = (void *)&io_v4;
345 } else {
29804cc1 346 memzero(&io_hdr, sizeof(struct sg_io_hdr));
912541b0
KS
347 io_hdr.interface_id = 'S';
348 io_hdr.cmd_len = sizeof(inq_cmd);
349 io_hdr.mx_sb_len = sizeof(sense);
350 io_hdr.dxfer_direction = SG_DXFER_FROM_DEV;
351 io_hdr.dxfer_len = buflen;
352 io_hdr.dxferp = buf;
353 io_hdr.cmdp = inq_cmd;
354 io_hdr.sbp = sense;
355 io_hdr.timeout = DEF_TIMEOUT;
356 io_buf = (void *)&io_hdr;
357 }
358
359 retval = ioctl(fd, SG_IO, io_buf);
360 if (retval < 0) {
361 if ((errno == EINVAL || errno == ENOSYS) && dev_scsi->use_sg == 4) {
362 dev_scsi->use_sg = 3;
363 goto resend;
364 }
56f64d95 365 log_debug_errno(errno, "%s: ioctl failed: %m", dev_scsi->kernel);
912541b0
KS
366 goto error;
367 }
368
369 if (dev_scsi->use_sg == 4)
370 retval = sg_err_category4(udev, io_buf);
371 else
372 retval = sg_err_category3(udev, io_buf);
373
374 switch (retval) {
375 case SG_ERR_CAT_NOTSUPPORTED:
376 buf[1] = 0;
377 /* Fallthrough */
378 case SG_ERR_CAT_CLEAN:
379 case SG_ERR_CAT_RECOVERED:
380 retval = 0;
381 break;
382
383 default:
384 if (dev_scsi->use_sg == 4)
385 retval = scsi_dump_v4(udev, dev_scsi, io_buf);
386 else
387 retval = scsi_dump(udev, dev_scsi, io_buf);
388 }
389
390 if (!retval) {
391 retval = buflen;
392 } else if (retval > 0) {
baa30fbc 393 if (--retry > 0)
912541b0 394 goto resend;
912541b0
KS
395 retval = -1;
396 }
c521693b 397
01f950e2 398error:
912541b0 399 if (retval < 0)
9f6445e3 400 log_debug("%s: Unable to get INQUIRY vpd %d page 0x%x.",
461577ee 401 dev_scsi->kernel, evpd, page);
062db23d 402
912541b0 403 return retval;
c521693b
GKH
404}
405
01f950e2 406/* Get list of supported EVPD pages */
7d563a17 407static int do_scsi_page0_inquiry(struct udev *udev,
912541b0
KS
408 struct scsi_id_device *dev_scsi, int fd,
409 unsigned char *buffer, unsigned int len)
c521693b 410{
912541b0
KS
411 int retval;
412
29804cc1 413 memzero(buffer, len);
912541b0
KS
414 retval = scsi_inquiry(udev, dev_scsi, fd, 1, 0x0, buffer, len);
415 if (retval < 0)
416 return 1;
417
418 if (buffer[1] != 0) {
9f6445e3 419 log_debug("%s: page 0 not available.", dev_scsi->kernel);
912541b0
KS
420 return 1;
421 }
422 if (buffer[3] > len) {
461577ee 423 log_debug("%s: page 0 buffer too long %d", dev_scsi->kernel, buffer[3]);
912541b0
KS
424 return 1;
425 }
426
427 /*
428 * Following check is based on code once included in the 2.5.x
429 * kernel.
430 *
431 * Some ill behaved devices return the standard inquiry here
432 * rather than the evpd data, snoop the data to verify.
433 */
434 if (buffer[3] > MODEL_LENGTH) {
435 /*
436 * If the vendor id appears in the page assume the page is
437 * invalid.
438 */
641906e9 439 if (strneq((char *)&buffer[VENDOR_LENGTH], dev_scsi->vendor, VENDOR_LENGTH)) {
9f6445e3 440 log_debug("%s: invalid page0 data", dev_scsi->kernel);
912541b0
KS
441 return 1;
442 }
443 }
444 return 0;
c521693b
GKH
445}
446
447/*
448 * The caller checks that serial is long enough to include the vendor +
449 * model.
450 */
7d563a17 451static int prepend_vendor_model(struct udev *udev,
912541b0 452 struct scsi_id_device *dev_scsi, char *serial)
c521693b 453{
912541b0
KS
454 int ind;
455
456 strncpy(serial, dev_scsi->vendor, VENDOR_LENGTH);
457 strncat(serial, dev_scsi->model, MODEL_LENGTH);
458 ind = strlen(serial);
459
460 /*
461 * This is not a complete check, since we are using strncat/cpy
462 * above, ind will never be too large.
463 */
464 if (ind != (VENDOR_LENGTH + MODEL_LENGTH)) {
9f6445e3 465 log_debug("%s: expected length %d, got length %d",
461577ee 466 dev_scsi->kernel, (VENDOR_LENGTH + MODEL_LENGTH), ind);
912541b0
KS
467 return -1;
468 }
469 return ind;
c521693b
GKH
470}
471
bb061708 472/*
c521693b
GKH
473 * check_fill_0x83_id - check the page 0x83 id, if OK allocate and fill
474 * serial number.
bb061708 475 */
7d563a17 476static int check_fill_0x83_id(struct udev *udev,
912541b0
KS
477 struct scsi_id_device *dev_scsi,
478 unsigned char *page_83,
479 const struct scsi_id_search_values
480 *id_search, char *serial, char *serial_short,
481 int max_len, char *wwn,
482 char *wwn_vendor_extension, char *tgpt_group)
c521693b 483{
912541b0
KS
484 int i, j, s, len;
485
486 /*
487 * ASSOCIATION must be with the device (value 0)
488 * or with the target port for SCSI_ID_TGTPORT
489 */
490 if ((page_83[1] & 0x30) == 0x10) {
491 if (id_search->id_type != SCSI_ID_TGTGROUP)
492 return 1;
1f6b4113 493 } else if ((page_83[1] & 0x30) != 0)
912541b0 494 return 1;
912541b0
KS
495
496 if ((page_83[1] & 0x0f) != id_search->id_type)
497 return 1;
498
499 /*
500 * Possibly check NAA sub-type.
501 */
502 if ((id_search->naa_type != SCSI_ID_NAA_DONT_CARE) &&
503 (id_search->naa_type != (page_83[4] & 0xf0) >> 4))
504 return 1;
505
506 /*
507 * Check for matching code set - ASCII or BINARY.
508 */
509 if ((page_83[0] & 0x0f) != id_search->code_set)
510 return 1;
511
512 /*
513 * page_83[3]: identifier length
514 */
515 len = page_83[3];
516 if ((page_83[0] & 0x0f) != SCSI_ID_ASCII)
517 /*
518 * If not ASCII, use two bytes for each binary value.
519 */
520 len *= 2;
521
522 /*
523 * Add one byte for the NUL termination, and one for the id_type.
524 */
525 len += 2;
526 if (id_search->id_type == SCSI_ID_VENDOR_SPECIFIC)
527 len += VENDOR_LENGTH + MODEL_LENGTH;
528
529 if (max_len < len) {
9f6445e3 530 log_debug("%s: length %d too short - need %d",
461577ee 531 dev_scsi->kernel, max_len, len);
912541b0
KS
532 return 1;
533 }
534
535 if (id_search->id_type == SCSI_ID_TGTGROUP && tgpt_group != NULL) {
536 unsigned int group;
537
538 group = ((unsigned int)page_83[6] << 8) | page_83[7];
539 sprintf(tgpt_group,"%x", group);
540 return 1;
541 }
542
543 serial[0] = hex_str[id_search->id_type];
544
545 /*
546 * For SCSI_ID_VENDOR_SPECIFIC prepend the vendor and model before
547 * the id since it is not unique across all vendors and models,
548 * this differs from SCSI_ID_T10_VENDOR, where the vendor is
549 * included in the identifier.
550 */
551 if (id_search->id_type == SCSI_ID_VENDOR_SPECIFIC)
baa30fbc 552 if (prepend_vendor_model(udev, dev_scsi, &serial[1]) < 0)
912541b0 553 return 1;
912541b0
KS
554
555 i = 4; /* offset to the start of the identifier */
556 s = j = strlen(serial);
557 if ((page_83[0] & 0x0f) == SCSI_ID_ASCII) {
558 /*
559 * ASCII descriptor.
560 */
561 while (i < (4 + page_83[3]))
562 serial[j++] = page_83[i++];
563 } else {
564 /*
565 * Binary descriptor, convert to ASCII, using two bytes of
566 * ASCII for each byte in the page_83.
567 */
568 while (i < (4 + page_83[3])) {
569 serial[j++] = hex_str[(page_83[i] & 0xf0) >> 4];
570 serial[j++] = hex_str[page_83[i] & 0x0f];
571 i++;
572 }
573 }
574
575 strcpy(serial_short, &serial[s]);
576
577 if (id_search->id_type == SCSI_ID_NAA && wwn != NULL) {
578 strncpy(wwn, &serial[s], 16);
ece174c5 579 if (wwn_vendor_extension != NULL)
912541b0 580 strncpy(wwn_vendor_extension, &serial[s + 16], 16);
912541b0
KS
581 }
582
583 return 0;
c521693b
GKH
584}
585
cbba4a54 586/* Extract the raw binary from VPD 0x83 pre-SPC devices */
7d563a17 587static int check_fill_0x83_prespc3(struct udev *udev,
912541b0
KS
588 struct scsi_id_device *dev_scsi,
589 unsigned char *page_83,
590 const struct scsi_id_search_values
591 *id_search, char *serial, char *serial_short, int max_len)
cbba4a54 592{
912541b0
KS
593 int i, j;
594
912541b0
KS
595 serial[0] = hex_str[id_search->id_type];
596 /* serial has been memset to zero before */
597 j = strlen(serial); /* j = 1; */
598
599 for (i = 0; (i < page_83[3]) && (j < max_len-3); ++i) {
600 serial[j++] = hex_str[(page_83[4+i] & 0xf0) >> 4];
601 serial[j++] = hex_str[ page_83[4+i] & 0x0f];
602 }
603 serial[max_len-1] = 0;
604 strncpy(serial_short, serial, max_len-1);
605 return 0;
cbba4a54
KG
606}
607
608
01f950e2 609/* Get device identification VPD page */
7d563a17 610static int do_scsi_page83_inquiry(struct udev *udev,
912541b0
KS
611 struct scsi_id_device *dev_scsi, int fd,
612 char *serial, char *serial_short, int len,
613 char *unit_serial_number, char *wwn,
614 char *wwn_vendor_extension, char *tgpt_group)
c521693b 615{
912541b0
KS
616 int retval;
617 unsigned int id_ind, j;
618 unsigned char page_83[SCSI_INQ_BUFF_LEN];
c521693b 619
912541b0 620 /* also pick up the page 80 serial number */
4e9fdfcc
DZ
621 do_scsi_page80_inquiry(udev, dev_scsi, fd, NULL, unit_serial_number, MAX_SERIAL_LEN);
622
29804cc1 623 memzero(page_83, SCSI_INQ_BUFF_LEN);
912541b0
KS
624 retval = scsi_inquiry(udev, dev_scsi, fd, 1, PAGE_83, page_83,
625 SCSI_INQ_BUFF_LEN);
626 if (retval < 0)
627 return 1;
628
629 if (page_83[1] != PAGE_83) {
9f6445e3 630 log_debug("%s: Invalid page 0x83", dev_scsi->kernel);
912541b0
KS
631 return 1;
632 }
633
634 /*
635 * XXX Some devices (IBM 3542) return all spaces for an identifier if
636 * the LUN is not actually configured. This leads to identifiers of
637 * the form: "1 ".
638 */
639
640 /*
641 * Model 4, 5, and (some) model 6 EMC Symmetrix devices return
642 * a page 83 reply according to SCSI-2 format instead of SPC-2/3.
643 *
644 * The SCSI-2 page 83 format returns an IEEE WWN in binary
645 * encoded hexi-decimal in the 16 bytes following the initial
646 * 4-byte page 83 reply header.
647 *
648 * Both the SPC-2 and SPC-3 formats return an IEEE WWN as part
649 * of an Identification descriptor. The 3rd byte of the first
650 * Identification descriptor is a reserved (BSZ) byte field.
651 *
652 * Reference the 7th byte of the page 83 reply to determine
653 * whether the reply is compliant with SCSI-2 or SPC-2/3
654 * specifications. A zero value in the 7th byte indicates
655 * an SPC-2/3 conformant reply, (i.e., the reserved field of the
656 * first Identification descriptor). This byte will be non-zero
657 * for a SCSI-2 conformant page 83 reply from these EMC
658 * Symmetrix models since the 7th byte of the reply corresponds
659 * to the 4th and 5th nibbles of the 6-byte OUI for EMC, that is,
660 * 0x006048.
661 */
662
663 if (page_83[6] != 0)
664 return check_fill_0x83_prespc3(udev,
665 dev_scsi, page_83, id_search_list,
666 serial, serial_short, len);
667
668 /*
669 * Search for a match in the prioritized id_search_list - since WWN ids
4e9fdfcc 670 * come first we can pick up the WWN in check_fill_0x83_id().
912541b0
KS
671 */
672 for (id_ind = 0;
673 id_ind < sizeof(id_search_list)/sizeof(id_search_list[0]);
674 id_ind++) {
675 /*
676 * Examine each descriptor returned. There is normally only
677 * one or a small number of descriptors.
678 */
679 for (j = 4; j <= (unsigned int)page_83[3] + 3; j += page_83[j + 3] + 4) {
680 retval = check_fill_0x83_id(udev,
681 dev_scsi, &page_83[j],
682 &id_search_list[id_ind],
683 serial, serial_short, len,
684 wwn, wwn_vendor_extension,
685 tgpt_group);
baa30fbc 686 if (!retval)
912541b0 687 return retval;
baa30fbc 688 else if (retval < 0)
912541b0 689 return retval;
912541b0
KS
690 }
691 }
692 return 1;
c521693b
GKH
693}
694
50be1401
EG
695/*
696 * Get device identification VPD page for older SCSI-2 device which is not
697 * compliant with either SPC-2 or SPC-3 format.
698 *
699 * Return the hard coded error code value 2 if the page 83 reply is not
700 * conformant to the SCSI-2 format.
701 */
7d563a17 702static int do_scsi_page83_prespc3_inquiry(struct udev *udev,
912541b0
KS
703 struct scsi_id_device *dev_scsi, int fd,
704 char *serial, char *serial_short, int len)
50be1401 705{
912541b0
KS
706 int retval;
707 int i, j;
708 unsigned char page_83[SCSI_INQ_BUFF_LEN];
709
29804cc1 710 memzero(page_83, SCSI_INQ_BUFF_LEN);
912541b0
KS
711 retval = scsi_inquiry(udev, dev_scsi, fd, 1, PAGE_83, page_83, SCSI_INQ_BUFF_LEN);
712 if (retval < 0)
713 return 1;
714
715 if (page_83[1] != PAGE_83) {
9f6445e3 716 log_debug("%s: Invalid page 0x83", dev_scsi->kernel);
912541b0
KS
717 return 1;
718 }
719 /*
720 * Model 4, 5, and (some) model 6 EMC Symmetrix devices return
721 * a page 83 reply according to SCSI-2 format instead of SPC-2/3.
722 *
723 * The SCSI-2 page 83 format returns an IEEE WWN in binary
724 * encoded hexi-decimal in the 16 bytes following the initial
725 * 4-byte page 83 reply header.
726 *
727 * Both the SPC-2 and SPC-3 formats return an IEEE WWN as part
728 * of an Identification descriptor. The 3rd byte of the first
729 * Identification descriptor is a reserved (BSZ) byte field.
730 *
731 * Reference the 7th byte of the page 83 reply to determine
732 * whether the reply is compliant with SCSI-2 or SPC-2/3
733 * specifications. A zero value in the 7th byte indicates
734 * an SPC-2/3 conformant reply, (i.e., the reserved field of the
735 * first Identification descriptor). This byte will be non-zero
736 * for a SCSI-2 conformant page 83 reply from these EMC
737 * Symmetrix models since the 7th byte of the reply corresponds
738 * to the 4th and 5th nibbles of the 6-byte OUI for EMC, that is,
739 * 0x006048.
740 */
741 if (page_83[6] == 0)
742 return 2;
743
744 serial[0] = hex_str[id_search_list[0].id_type];
745 /*
746 * The first four bytes contain data, not a descriptor.
747 */
748 i = 4;
749 j = strlen(serial);
750 /*
751 * Binary descriptor, convert to ASCII,
752 * using two bytes of ASCII for each byte
753 * in the page_83.
754 */
755 while (i < (page_83[3]+4)) {
756 serial[j++] = hex_str[(page_83[i] & 0xf0) >> 4];
757 serial[j++] = hex_str[page_83[i] & 0x0f];
758 i++;
759 }
912541b0 760 return 0;
50be1401
EG
761}
762
01f950e2 763/* Get unit serial number VPD page */
7d563a17 764static int do_scsi_page80_inquiry(struct udev *udev,
912541b0
KS
765 struct scsi_id_device *dev_scsi, int fd,
766 char *serial, char *serial_short, int max_len)
c521693b 767{
912541b0
KS
768 int retval;
769 int ser_ind;
770 int i;
771 int len;
772 unsigned char buf[SCSI_INQ_BUFF_LEN];
773
29804cc1 774 memzero(buf, SCSI_INQ_BUFF_LEN);
912541b0
KS
775 retval = scsi_inquiry(udev, dev_scsi, fd, 1, PAGE_80, buf, SCSI_INQ_BUFF_LEN);
776 if (retval < 0)
777 return retval;
778
779 if (buf[1] != PAGE_80) {
9f6445e3 780 log_debug("%s: Invalid page 0x80", dev_scsi->kernel);
912541b0
KS
781 return 1;
782 }
783
784 len = 1 + VENDOR_LENGTH + MODEL_LENGTH + buf[3];
785 if (max_len < len) {
9f6445e3 786 log_debug("%s: length %d too short - need %d",
461577ee 787 dev_scsi->kernel, max_len, len);
912541b0
KS
788 return 1;
789 }
790 /*
791 * Prepend 'S' to avoid unlikely collision with page 0x83 vendor
792 * specific type where we prepend '0' + vendor + model.
793 */
4e9fdfcc
DZ
794 len = buf[3];
795 if (serial != NULL) {
796 serial[0] = 'S';
797 ser_ind = prepend_vendor_model(udev, dev_scsi, &serial[1]);
798 if (ser_ind < 0)
799 return 1;
b929bf04 800 ser_ind++; /* for the leading 'S' */
4e9fdfcc
DZ
801 for (i = 4; i < len + 4; i++, ser_ind++)
802 serial[ser_ind] = buf[i];
803 }
804 if (serial_short != NULL) {
805 memcpy(serial_short, &buf[4], len);
806 serial_short[len] = '\0';
807 }
912541b0 808 return 0;
c521693b
GKH
809}
810
7d563a17 811int scsi_std_inquiry(struct udev *udev,
912541b0 812 struct scsi_id_device *dev_scsi, const char *devname)
87cf9f5a 813{
912541b0
KS
814 int fd;
815 unsigned char buf[SCSI_INQ_BUFF_LEN];
816 struct stat statbuf;
817 int err = 0;
818
c8a202b7 819 fd = open(devname, O_RDONLY | O_NONBLOCK | O_CLOEXEC);
912541b0 820 if (fd < 0) {
56f64d95 821 log_debug_errno(errno, "scsi_id: cannot open %s: %m", devname);
912541b0
KS
822 return 1;
823 }
824
825 if (fstat(fd, &statbuf) < 0) {
56f64d95 826 log_debug_errno(errno, "scsi_id: cannot stat %s: %m", devname);
912541b0
KS
827 err = 2;
828 goto out;
829 }
830 sprintf(dev_scsi->kernel,"%d:%d", major(statbuf.st_rdev),
831 minor(statbuf.st_rdev));
832
29804cc1 833 memzero(buf, SCSI_INQ_BUFF_LEN);
912541b0
KS
834 err = scsi_inquiry(udev, dev_scsi, fd, 0, 0, buf, SCSI_INQ_BUFF_LEN);
835 if (err < 0)
836 goto out;
837
838 err = 0;
839 memcpy(dev_scsi->vendor, buf + 8, 8);
840 dev_scsi->vendor[8] = '\0';
841 memcpy(dev_scsi->model, buf + 16, 16);
842 dev_scsi->model[16] = '\0';
843 memcpy(dev_scsi->revision, buf + 32, 4);
844 dev_scsi->revision[4] = '\0';
845 sprintf(dev_scsi->type,"%x", buf[0] & 0x1f);
87cf9f5a 846
24dabba5 847out:
912541b0
KS
848 close(fd);
849 return err;
87cf9f5a
HR
850}
851
7d563a17 852int scsi_get_serial(struct udev *udev,
912541b0
KS
853 struct scsi_id_device *dev_scsi, const char *devname,
854 int page_code, int len)
c521693b 855{
912541b0
KS
856 unsigned char page0[SCSI_INQ_BUFF_LEN];
857 int fd = -1;
858 int cnt;
859 int ind;
860 int retval;
861
29804cc1 862 memzero(dev_scsi->serial, len);
ef309a68 863 initialize_srand();
912541b0
KS
864 for (cnt = 20; cnt > 0; cnt--) {
865 struct timespec duration;
866
c8a202b7 867 fd = open(devname, O_RDONLY | O_NONBLOCK | O_CLOEXEC);
912541b0
KS
868 if (fd >= 0 || errno != EBUSY)
869 break;
870 duration.tv_sec = 0;
871 duration.tv_nsec = (200 * 1000 * 1000) + (rand() % 100 * 1000 * 1000);
872 nanosleep(&duration, NULL);
873 }
874 if (fd < 0)
875 return 1;
876
877 if (page_code == PAGE_80) {
878 if (do_scsi_page80_inquiry(udev, dev_scsi, fd, dev_scsi->serial, dev_scsi->serial_short, len)) {
879 retval = 1;
880 goto completed;
881 } else {
882 retval = 0;
883 goto completed;
884 }
885 } else if (page_code == PAGE_83) {
886 if (do_scsi_page83_inquiry(udev, dev_scsi, fd, dev_scsi->serial, dev_scsi->serial_short, len, dev_scsi->unit_serial_number, dev_scsi->wwn, dev_scsi->wwn_vendor_extension, dev_scsi->tgpt_group)) {
887 retval = 1;
888 goto completed;
889 } else {
890 retval = 0;
891 goto completed;
892 }
893 } else if (page_code == PAGE_83_PRE_SPC3) {
894 retval = do_scsi_page83_prespc3_inquiry(udev, dev_scsi, fd, dev_scsi->serial, dev_scsi->serial_short, len);
895 if (retval) {
896 /*
897 * Fallback to servicing a SPC-2/3 compliant page 83
898 * inquiry if the page 83 reply format does not
899 * conform to pre-SPC3 expectations.
900 */
901 if (retval == 2) {
902 if (do_scsi_page83_inquiry(udev, dev_scsi, fd, dev_scsi->serial, dev_scsi->serial_short, len, dev_scsi->unit_serial_number, dev_scsi->wwn, dev_scsi->wwn_vendor_extension, dev_scsi->tgpt_group)) {
903 retval = 1;
904 goto completed;
905 } else {
906 retval = 0;
907 goto completed;
908 }
909 }
910 else {
911 retval = 1;
912 goto completed;
913 }
914 } else {
915 retval = 0;
916 goto completed;
917 }
918 } else if (page_code != 0x00) {
9f6445e3 919 log_debug("%s: unsupported page code 0x%d", dev_scsi->kernel, page_code);
ab261e12
LN
920 retval = 1;
921 goto completed;
912541b0
KS
922 }
923
924 /*
925 * Get page 0, the page of the pages. By default, try from best to
926 * worst of supported pages: 0x83 then 0x80.
927 */
928 if (do_scsi_page0_inquiry(udev, dev_scsi, fd, page0, SCSI_INQ_BUFF_LEN)) {
929 /*
930 * Don't try anything else. Black list if a specific page
931 * should be used for this vendor+model, or maybe have an
932 * optional fall-back to page 0x80 or page 0x83.
933 */
934 retval = 1;
935 goto completed;
936 }
937
912541b0
KS
938 for (ind = 4; ind <= page0[3] + 3; ind++)
939 if (page0[ind] == PAGE_83)
940 if (!do_scsi_page83_inquiry(udev, dev_scsi, fd,
941 dev_scsi->serial, dev_scsi->serial_short, len, dev_scsi->unit_serial_number, dev_scsi->wwn, dev_scsi->wwn_vendor_extension, dev_scsi->tgpt_group)) {
942 /*
943 * Success
944 */
945 retval = 0;
946 goto completed;
947 }
948
949 for (ind = 4; ind <= page0[3] + 3; ind++)
950 if (page0[ind] == PAGE_80)
951 if (!do_scsi_page80_inquiry(udev, dev_scsi, fd,
952 dev_scsi->serial, dev_scsi->serial_short, len)) {
953 /*
954 * Success
955 */
956 retval = 0;
957 goto completed;
958 }
959 retval = 1;
24dabba5 960
c521693b 961completed:
912541b0
KS
962 close(fd);
963 return retval;
c521693b 964}