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