mpt(4): Sync with FreeBSD.
[dragonfly.git] / usr.sbin / mptutil / mpt_cam.c
1 /*-
2  * Copyright (c) 2008 Yahoo!, Inc.
3  * All rights reserved.
4  * Written by: John Baldwin <jhb@FreeBSD.org>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. Neither the name of the author nor the names of any co-contributors
15  *    may be used to endorse or promote products derived from this software
16  *    without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD: src/usr.sbin/mptutil/mpt_cam.c,v 1.3 2010/11/09 19:28:06 jhb Exp $
31  */
32
33 #include <sys/param.h>
34 #include <err.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40
41 #include <camlib.h>
42 #include <cam/scsi/scsi_message.h>
43 #include <cam/scsi/scsi_pass.h>
44
45 #include "mptutil.h"
46
47 static int xptfd;
48
49 static int
50 xpt_open(void)
51 {
52
53         if (xptfd == 0)
54                 xptfd = open(XPT_DEVICE, O_RDWR);
55         return (xptfd);
56 }
57
58 /* Fetch the path id of bus 0 for the opened mpt controller. */
59 static int
60 fetch_path_id(path_id_t *path_id)
61 {
62         struct bus_match_pattern *b;
63         union ccb ccb;
64         size_t bufsize;
65         int error;
66
67         if (xpt_open() < 0)
68                 return (ENXIO);
69
70         /* First, find the path id of bus 0 for this mpt controller. */
71         bzero(&ccb, sizeof(ccb));
72
73         ccb.ccb_h.func_code = XPT_DEV_MATCH;
74
75         bufsize = sizeof(struct dev_match_result) * 1;
76         ccb.cdm.num_matches = 0;
77         ccb.cdm.match_buf_len = bufsize;
78         ccb.cdm.matches = calloc(1, bufsize);
79
80         bufsize = sizeof(struct dev_match_pattern) * 1;
81         ccb.cdm.num_patterns = 1;
82         ccb.cdm.pattern_buf_len = bufsize;
83         ccb.cdm.patterns = calloc(1, bufsize);
84
85         /* Match mptX bus 0. */
86         ccb.cdm.patterns[0].type = DEV_MATCH_BUS;
87         b = &ccb.cdm.patterns[0].pattern.bus_pattern;
88         snprintf(b->dev_name, sizeof(b->dev_name), "mpt");
89         b->unit_number = mpt_unit;
90         b->bus_id = 0;
91         b->flags = BUS_MATCH_NAME | BUS_MATCH_UNIT | BUS_MATCH_BUS_ID;
92
93         if (ioctl(xptfd, CAMIOCOMMAND, &ccb) < 0) {
94                 error = errno;
95                 free(ccb.cdm.matches);
96                 free(ccb.cdm.patterns);
97                 return (error);
98         }
99         free(ccb.cdm.patterns);
100
101         if (((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) ||
102             (ccb.cdm.status != CAM_DEV_MATCH_LAST)) {
103                 warnx("fetch_path_id got CAM error %#x, CDM error %d\n",
104                     ccb.ccb_h.status, ccb.cdm.status);
105                 free(ccb.cdm.matches);
106                 return (EIO);
107         }
108
109         /* We should have exactly 1 match for the bus. */
110         if (ccb.cdm.num_matches != 1 ||
111             ccb.cdm.matches[0].type != DEV_MATCH_BUS) {
112                 free(ccb.cdm.matches);
113                 return (ENOENT);
114         }
115         *path_id = ccb.cdm.matches[0].result.bus_result.path_id;
116         free(ccb.cdm.matches);
117         return (0);
118 }
119
120 int
121 mpt_query_disk(U8 VolumeBus, U8 VolumeID, struct mpt_query_disk *qd)
122 {
123         struct periph_match_pattern *p;
124         struct periph_match_result *r;
125         union ccb ccb;
126         path_id_t path_id;
127         size_t bufsize;
128         int error;
129
130         /* mpt(4) only handles devices on bus 0. */
131         if (VolumeBus != 0)
132                 return (ENXIO);
133
134         if (xpt_open() < 0)
135                 return (ENXIO);
136
137         /* Find the path ID of bus 0. */
138         error = fetch_path_id(&path_id);
139         if (error)
140                 return (error);
141
142         bzero(&ccb, sizeof(ccb));
143
144         ccb.ccb_h.func_code = XPT_DEV_MATCH;
145         ccb.ccb_h.path_id = CAM_XPT_PATH_ID;
146         ccb.ccb_h.target_id = CAM_TARGET_WILDCARD;
147         ccb.ccb_h.target_lun = CAM_LUN_WILDCARD;
148
149         bufsize = sizeof(struct dev_match_result) * 5;
150         ccb.cdm.num_matches = 0;
151         ccb.cdm.match_buf_len = bufsize;
152         ccb.cdm.matches = calloc(1, bufsize);
153
154         bufsize = sizeof(struct dev_match_pattern) * 1;
155         ccb.cdm.num_patterns = 1;
156         ccb.cdm.pattern_buf_len = bufsize;
157         ccb.cdm.patterns = calloc(1, bufsize);
158
159         /* Look for a "da" device at the specified target and lun. */
160         ccb.cdm.patterns[0].type = DEV_MATCH_PERIPH;
161         p = &ccb.cdm.patterns[0].pattern.periph_pattern;
162         p->path_id = path_id;
163         snprintf(p->periph_name, sizeof(p->periph_name), "da");
164         p->target_id = VolumeID;
165         p->flags = PERIPH_MATCH_PATH | PERIPH_MATCH_NAME | PERIPH_MATCH_TARGET;
166
167         if (ioctl(xptfd, CAMIOCOMMAND, &ccb) < 0) {
168                 error = errno;
169                 free(ccb.cdm.matches);
170                 free(ccb.cdm.patterns);
171                 return (error);
172         }
173         free(ccb.cdm.patterns);
174
175         if (((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) ||
176             (ccb.cdm.status != CAM_DEV_MATCH_LAST)) {
177                 warnx("mpt_query_disk got CAM error %#x, CDM error %d\n",
178                     ccb.ccb_h.status, ccb.cdm.status);
179                 free(ccb.cdm.matches);
180                 return (EIO);
181         }
182
183         /*
184          * We should have exactly 1 match for the peripheral.
185          * However, if we don't get a match, don't print an error
186          * message and return ENOENT.
187          */
188         if (ccb.cdm.num_matches == 0) {
189                 free(ccb.cdm.matches);
190                 return (ENOENT);
191         }
192         if (ccb.cdm.num_matches != 1) {
193                 warnx("mpt_query_disk got %d matches, expected 1",
194                     ccb.cdm.num_matches);
195                 free(ccb.cdm.matches);
196                 return (EIO);
197         }
198         if (ccb.cdm.matches[0].type != DEV_MATCH_PERIPH) {
199                 warnx("mpt_query_disk got wrong CAM match");
200                 free(ccb.cdm.matches);
201                 return (EIO);
202         }
203
204         /* Copy out the data. */
205         r = &ccb.cdm.matches[1].result.periph_result;
206         snprintf(qd->devname, sizeof(qd->devname), "%s%d", r->periph_name,
207             r->unit_number);
208         free(ccb.cdm.matches);
209
210         return (0);
211 }
212
213 static int
214 periph_is_volume(CONFIG_PAGE_IOC_2 *ioc2, struct periph_match_result *r)
215 {
216         CONFIG_PAGE_IOC_2_RAID_VOL *vol;
217         int i;
218
219         if (ioc2 == NULL)
220                 return (0);
221         vol = ioc2->RaidVolume;
222         for (i = 0; i < ioc2->NumActiveVolumes; vol++, i++) {
223                 if (vol->VolumeBus == 0 && vol->VolumeID == r->target_id)
224                         return (1);
225         }
226         return (0);
227 }
228
229 /* Much borrowed from scsireadcapacity() in src/sbin/camcontrol/camcontrol.c. */
230 static int
231 fetch_scsi_capacity(struct cam_device *dev, struct mpt_standalone_disk *disk)
232 {
233         struct scsi_read_capacity_data rcap;
234         struct scsi_read_capacity_data_16 rcaplong;
235         union ccb *ccb;
236         int error;
237
238         ccb = cam_getccb(dev);
239         if (ccb == NULL)
240                 return (ENOMEM);
241
242         /* Zero the rest of the ccb. */
243         bzero(&(&ccb->ccb_h)[1], sizeof(struct ccb_scsiio) -
244             sizeof(struct ccb_hdr));
245
246         scsi_read_capacity(&ccb->csio, 1, NULL, MSG_SIMPLE_Q_TAG, &rcap,
247             SSD_FULL_SIZE, 5000);
248
249         /* Disable freezing the device queue */
250         ccb->ccb_h.flags |= CAM_DEV_QFRZDIS;
251
252         if (cam_send_ccb(dev, ccb) < 0) {
253                 error = errno;
254                 cam_freeccb(ccb);
255                 return (error);
256         }
257
258         if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
259                 cam_freeccb(ccb);
260                 return (EIO);
261         }
262         cam_freeccb(ccb);
263
264         /*
265          * A last block of 2^32-1 means that the true capacity is over 2TB,
266          * and we need to issue the long READ CAPACITY to get the real
267          * capacity.  Otherwise, we're all set.
268          */
269         if (scsi_4btoul(rcap.addr) != 0xffffffff) {
270                 disk->maxlba = scsi_4btoul(rcap.addr);
271                 return (0);
272         }
273
274         /* Zero the rest of the ccb. */
275         bzero(&(&ccb->ccb_h)[1], sizeof(struct ccb_scsiio) -
276             sizeof(struct ccb_hdr));
277
278         scsi_read_capacity_16(&ccb->csio, 1, NULL, MSG_SIMPLE_Q_TAG, 0, 0, 0,
279             &rcaplong, SSD_FULL_SIZE, 5000);
280
281         /* Disable freezing the device queue */
282         ccb->ccb_h.flags |= CAM_DEV_QFRZDIS;
283
284         if (cam_send_ccb(dev, ccb) < 0) {
285                 error = errno;
286                 cam_freeccb(ccb);
287                 return (error);
288         }
289
290         if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
291                 cam_freeccb(ccb);
292                 return (EIO);
293         }
294         cam_freeccb(ccb);
295
296         disk->maxlba = scsi_8btou64(rcaplong.addr);
297         return (0);
298 }
299
300 /* Borrowed heavily from scsi_all.c:scsi_print_inquiry(). */
301 static void
302 format_scsi_inquiry(struct mpt_standalone_disk *disk,
303     struct scsi_inquiry_data *inq_data)
304 {
305         char vendor[16], product[48], revision[16], rstr[12];
306
307         if (SID_QUAL_IS_VENDOR_UNIQUE(inq_data))
308                 return;
309         if (SID_TYPE(inq_data) != T_DIRECT)
310                 return;
311         if (SID_QUAL(inq_data) != SID_QUAL_LU_CONNECTED)
312                 return;
313
314         cam_strvis(vendor, inq_data->vendor, sizeof(inq_data->vendor),
315             sizeof(vendor));
316         cam_strvis(product, inq_data->product, sizeof(inq_data->product),
317             sizeof(product));
318         cam_strvis(revision, inq_data->revision, sizeof(inq_data->revision),
319             sizeof(revision));
320
321         /* Hack for SATA disks, no idea how to tell speed. */
322         if (strcmp(vendor, "ATA") == 0) {
323                 snprintf(disk->inqstring, sizeof(disk->inqstring),
324                     "<%s %s> SATA", product, revision);
325                 return;
326         }
327
328         switch (SID_ANSI_REV(inq_data)) {
329         case SCSI_REV_CCS:
330                 strcpy(rstr, "SCSI-CCS");
331                 break;
332         case 5:
333                 strcpy(rstr, "SAS");
334                 break;
335         default:
336                 snprintf(rstr, sizeof (rstr), "SCSI-%d",
337                     SID_ANSI_REV(inq_data));
338                 break;
339         }
340         snprintf(disk->inqstring, sizeof(disk->inqstring), "<%s %s %s> %s",
341             vendor, product, revision, rstr);
342 }
343
344 /* Much borrowed from scsiinquiry() in src/sbin/camcontrol/camcontrol.c. */
345 static int
346 fetch_scsi_inquiry(struct cam_device *dev, struct mpt_standalone_disk *disk)
347 {
348         struct scsi_inquiry_data *inq_buf;
349         union ccb *ccb;
350         int error;
351
352         ccb = cam_getccb(dev);
353         if (ccb == NULL)
354                 return (ENOMEM);
355
356         /* Zero the rest of the ccb. */
357         bzero(&(&ccb->ccb_h)[1], sizeof(struct ccb_scsiio) -
358             sizeof(struct ccb_hdr));
359
360         inq_buf = calloc(1, sizeof(*inq_buf));
361         if (inq_buf == NULL) {
362                 cam_freeccb(ccb);
363                 return (ENOMEM);
364         }
365         scsi_inquiry(&ccb->csio, 1, NULL, MSG_SIMPLE_Q_TAG, (void *)inq_buf,
366             SHORT_INQUIRY_LENGTH, 0, 0, SSD_FULL_SIZE, 5000);
367
368         /* Disable freezing the device queue */
369         ccb->ccb_h.flags |= CAM_DEV_QFRZDIS;
370
371         if (cam_send_ccb(dev, ccb) < 0) {
372                 error = errno;
373                 free(inq_buf);
374                 cam_freeccb(ccb);
375                 return (error);
376         }
377
378         if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
379                 free(inq_buf);
380                 cam_freeccb(ccb);
381                 return (EIO);
382         }
383
384         cam_freeccb(ccb);
385         format_scsi_inquiry(disk, inq_buf);
386         free(inq_buf);
387         return (0);
388 }
389
390 int
391 mpt_fetch_disks(int fd, int *ndisks, struct mpt_standalone_disk **disksp)
392 {
393         CONFIG_PAGE_IOC_2 *ioc2;
394         struct mpt_standalone_disk *disks;
395         struct periph_match_pattern *p;
396         struct periph_match_result *r;
397         struct cam_device *dev;
398         union ccb ccb;
399         path_id_t path_id;
400         size_t bufsize;
401         int count, error;
402         uint32_t i;
403
404         if (xpt_open() < 0)
405                 return (ENXIO);
406
407         error = fetch_path_id(&path_id);
408         if (error)
409                 return (error);
410
411         for (count = 100;; count+= 100) {
412                 /* Try to fetch 'count' disks in one go. */
413                 bzero(&ccb, sizeof(ccb));
414
415                 ccb.ccb_h.func_code = XPT_DEV_MATCH;
416
417                 bufsize = sizeof(struct dev_match_result) * (count + 1);
418                 ccb.cdm.num_matches = 0;
419                 ccb.cdm.match_buf_len = bufsize;
420                 ccb.cdm.matches = calloc(1, bufsize);
421
422                 bufsize = sizeof(struct dev_match_pattern) * 1;
423                 ccb.cdm.num_patterns = 1;
424                 ccb.cdm.pattern_buf_len = bufsize;
425                 ccb.cdm.patterns = calloc(1, bufsize);
426
427                 /* Match any "da" peripherals. */
428                 ccb.cdm.patterns[0].type = DEV_MATCH_PERIPH;
429                 p = &ccb.cdm.patterns[0].pattern.periph_pattern;
430                 p->path_id = path_id;
431                 snprintf(p->periph_name, sizeof(p->periph_name), "da");
432                 p->flags = PERIPH_MATCH_PATH | PERIPH_MATCH_NAME;
433
434                 if (ioctl(xptfd, CAMIOCOMMAND, &ccb) < 0) {
435                         error = errno;
436                         free(ccb.cdm.matches);
437                         free(ccb.cdm.patterns);
438                         return (error);
439                 }
440                 free(ccb.cdm.patterns);
441
442                 /* Check for CCB errors. */
443                 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
444                         free(ccb.cdm.matches);
445                         return (EIO);
446                 }
447
448                 /* If we need a longer list, try again. */
449                 if (ccb.cdm.status == CAM_DEV_MATCH_MORE) {
450                         free(ccb.cdm.matches);
451                         continue;
452                 }
453
454                 /* If we got an error, abort. */
455                 if (ccb.cdm.status != CAM_DEV_MATCH_LAST) {
456                         free(ccb.cdm.matches);
457                         return (EIO);
458                 }
459                 break;
460         }
461
462         /* Shortcut if we don't have any "da" devices. */
463         if (ccb.cdm.num_matches == 0) {
464                 free(ccb.cdm.matches);
465                 *ndisks = 0;
466                 *disksp = NULL;
467                 return (0);
468         }
469
470         /* We should have N matches, 1 for each "da" device. */
471         for (i = 0; i < ccb.cdm.num_matches; i++) {
472                 if (ccb.cdm.matches[i].type != DEV_MATCH_PERIPH) {
473                         warnx("mpt_fetch_disks got wrong CAM matches");
474                         free(ccb.cdm.matches);
475                         return (EIO);
476                 }
477         }
478
479         /*
480          * Some of the "da" peripherals may be for RAID volumes, so
481          * fetch the IOC 2 page (list of RAID volumes) so we can
482          * exclude them from the list.
483          */
484         ioc2 = mpt_read_ioc_page(fd, 2, NULL);
485         if (ioc2 == NULL)
486                 return (errno);
487         disks = calloc(ccb.cdm.num_matches, sizeof(*disks));
488         count = 0;
489         for (i = 0; i < ccb.cdm.num_matches; i++) {
490                 r = &ccb.cdm.matches[i].result.periph_result;
491                 if (periph_is_volume(ioc2, r))
492                         continue;
493                 disks[count].bus = 0;
494                 disks[count].target = r->target_id;
495                 snprintf(disks[count].devname, sizeof(disks[count].devname),
496                     "%s%d", r->periph_name, r->unit_number);
497
498                 dev = cam_open_device(disks[count].devname, O_RDWR);
499                 if (dev != NULL) {
500                         fetch_scsi_capacity(dev, &disks[count]);
501                         fetch_scsi_inquiry(dev, &disks[count]);
502                         cam_close_device(dev);
503                 }
504                 count++;
505         }
506         free(ccb.cdm.matches);
507         free(ioc2);
508
509         *ndisks = count;
510         *disksp = disks;
511         return (0);
512 }
513
514 /*
515  * Instruct the mpt(4) device to rescan its busses to find new devices
516  * such as disks whose RAID physdisk page was removed or volumes that
517  * were created.  If id is -1, the entire bus is rescanned.
518  * Otherwise, only devices at the specified ID are rescanned.  If bus
519  * is -1, then all busses are scanned instead of the specified bus.
520  * Note that currently, only bus 0 is supported.
521  */
522 int
523 mpt_rescan_bus(int bus, int id)
524 {
525         union ccb ccb;
526         path_id_t path_id;
527         int error;
528
529         /* mpt(4) only handles devices on bus 0. */
530         if (bus != -1 && bus != 0)
531                 return (EINVAL);
532
533         if (xpt_open() < 0)
534                 return (ENXIO);
535
536         error = fetch_path_id(&path_id);
537         if (error)
538                 return (error);
539
540         /* Perform the actual rescan. */
541         bzero(&ccb, sizeof(ccb));
542         ccb.ccb_h.path_id = path_id;
543         if (id == -1) {
544                 ccb.ccb_h.func_code = XPT_SCAN_BUS;
545                 ccb.ccb_h.target_id = CAM_TARGET_WILDCARD;
546                 ccb.ccb_h.target_lun = CAM_LUN_WILDCARD;
547                 ccb.ccb_h.timeout = 5000;
548         } else {
549                 ccb.ccb_h.func_code = XPT_SCAN_LUN;
550                 ccb.ccb_h.target_id = id;
551                 ccb.ccb_h.target_lun = 0;
552         }
553         ccb.crcn.flags = CAM_FLAG_NONE;
554
555         /* Run this at a low priority. */
556         ccb.ccb_h.pinfo.priority = 5;
557
558         if (ioctl(xptfd, CAMIOCOMMAND, &ccb) == -1)
559                 return (errno);
560
561         if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
562                 warnx("mpt_rescan_bus rescan got CAM error %#x\n",
563                     ccb.ccb_h.status & CAM_STATUS_MASK);
564                 return (EIO);
565         }
566
567         return (0);
568 }