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