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