xref: /illumos-gate/usr/src/cmd/biosdev/biosdev.c (revision bea83d026ee1bd1b2a2419e1d0232f107a5d7d9b)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <sys/param.h>
33 #include <errno.h>
34 #include <sys/types.h>
35 #include <dirent.h>
36 #include <libdevinfo.h>
37 #include <fcntl.h>
38 #include <sys/types.h>
39 #include <sys/stat.h>
40 #include <sys/pci.h>
41 #include <sys/biosdisk.h>
42 
43 
44 /*
45  * structure used for searching device tree for a node matching
46  * pci bus/dev/fn
47  */
48 typedef struct pcibdf {
49 	int busnum;
50 	int devnum;
51 	int funcnum;
52 	di_node_t	di_node;
53 } pcibdf_t;
54 
55 /*
56  * structure used for searching device tree for a node matching
57  * USB serial number.
58  */
59 typedef struct {
60 	uint64_t serialno;
61 	di_node_t	node;
62 } usbser_t;
63 
64 /*
65  * structure for holding the mapping info
66  */
67 typedef struct {
68 	int disklist_index;	/* index to disk_list of the mapped path */
69 	int matchcount;		/* number of matches per this device number */
70 } mapinfo_t;
71 
72 #define	DEVFS_PREFIX "/devices"
73 #define	DISKS_LIST_INCR		20	/* increment for resizing disk_list */
74 
75 #define	BIOSPROPNAME_TMPL	"biosdev-0x%x"
76 #define	BIOSPROPNAME_TMPL_LEN	13
77 #define	BIOSDEV_NUM		8
78 #define	STARTING_DRVNUM		0x80
79 
80 /*
81  * array to hold mappings. Element at index X corresponds to BIOS device
82  * number 0x80 + X
83  */
84 static mapinfo_t mapinfo[BIOSDEV_NUM];
85 
86 /*
87  * Cache copy of kernel device tree snapshot root handle, includes devices
88  * that are detached
89  */
90 static di_node_t root_node = DI_NODE_NIL;
91 
92 /*
93  * kernel device tree snapshot with currently attached devices. Detached
94  * devices are not included.
95  */
96 static di_node_t root_allnode = DI_NODE_NIL;
97 
98 /*
99  * handle to retrieve prom properties
100  */
101 
102 static di_prom_handle_t prom_hdl = DI_PROM_HANDLE_NIL;
103 
104 static char **disk_list = NULL;	/* array of physical device pathnames */
105 static int disk_list_len = 0;		/* length of disk_list */
106 static int disk_list_valid = 0;	/* number of valid entries in disk_list */
107 
108 static int debug = 0;			/* used for enabling debug output */
109 
110 
111 /* Local function prototypes */
112 static void new_disk_list_entry(di_node_t node);
113 static int i_disktype(di_node_t node, di_minor_t minor, void *arg);
114 static void build_disk_list();
115 static int search_disklist_match_path(char *path);
116 static void free_disks();
117 static void cleanup_and_exit(int);
118 
119 static int match_edd(biosdev_data_t *bd);
120 static int match_first_block(biosdev_data_t *bd);
121 
122 static di_node_t search_tree_match_pcibdf(di_node_t node, int bus, int dev,
123     int fn);
124 static int i_match_pcibdf(di_node_t node, void *arg);
125 
126 static di_node_t search_tree_match_usbserialno(di_node_t node,
127     uint64_t serialno);
128 static int i_match_usbserialno(di_node_t node, void *arg);
129 
130 static di_node_t search_children_match_busaddr(di_node_t node,
131     char *matchbusaddr);
132 
133 
134 
135 static void
136 new_disk_list_entry(di_node_t node)
137 {
138 	size_t	newsize;
139 	char **newlist;
140 	int newlen;
141 	char *devfspath;
142 
143 	if (disk_list_valid >= disk_list_len)	{
144 		/* valid should never really be larger than len */
145 		/* if they are equal we need to init or realloc */
146 		newlen = disk_list_len + DISKS_LIST_INCR;
147 		newsize = newlen * sizeof (*disk_list);
148 
149 		newlist = (char **)realloc(disk_list, newsize);
150 		if (newlist == NULL) {
151 			(void) printf("realloc failed to resize disk table\n");
152 			cleanup_and_exit(1);
153 		}
154 		disk_list = newlist;
155 		disk_list_len = newlen;
156 	}
157 
158 	devfspath = di_devfs_path(node);
159 	disk_list[disk_list_valid] = devfspath;
160 	if (debug)
161 		(void) printf("adding %s\n", devfspath);
162 	disk_list_valid++;
163 }
164 
165 /* ARGSUSED */
166 static int
167 i_disktype(di_node_t node, di_minor_t minor, void *arg)
168 {
169 	char *minortype;
170 
171 	if (di_minor_spectype(minor) == S_IFCHR) {
172 		minortype = di_minor_nodetype(minor);
173 
174 		/* exclude CD's */
175 		if (strncmp(minortype, DDI_NT_CD, sizeof (DDI_NT_CD) - 1) != 0)
176 			/* only take p0 raw device */
177 			if (strcmp(di_minor_name(minor), "q,raw") == 0)
178 				new_disk_list_entry(node);
179 	}
180 	return (DI_WALK_CONTINUE);
181 }
182 
183 static void
184 build_disk_list()
185 {
186 	int ret;
187 	ret = di_walk_minor(root_node, DDI_NT_BLOCK, 0, NULL,
188 	    i_disktype);
189 	if (ret != 0) {
190 		(void) fprintf(stderr, "di_walk_minor failed errno %d\n",
191 		    errno);
192 		cleanup_and_exit(1);
193 	}
194 }
195 
196 static void
197 free_disks()
198 {
199 	int i;
200 
201 	if (disk_list) {
202 		for (i = 0; i < disk_list_valid; i++)
203 			di_devfs_path_free(disk_list[i]);
204 
205 		free(disk_list);
206 	}
207 }
208 
209 static int
210 i_match_pcibdf(di_node_t node, void *arg)
211 {
212 	pcibdf_t *pbp;
213 	int len;
214 	uint32_t	regval;
215 	uint32_t	busnum, funcnum, devicenum;
216 	char *devtype;
217 	uint32_t *regbuf = NULL;
218 	di_node_t	parentnode;
219 
220 	pbp = (pcibdf_t *)arg;
221 
222 	parentnode = di_parent_node(node);
223 
224 	len = di_prop_lookup_strings(DDI_DEV_T_ANY, parentnode,
225 	    "device_type", (char **)&devtype);
226 
227 	if ((len <= 0) ||
228 	    ((strcmp(devtype, "pci") != 0) && (strcmp(devtype, "pciex") != 0)))
229 		return (DI_WALK_CONTINUE);
230 
231 	len = di_prop_lookup_ints(DDI_DEV_T_ANY, node, "reg",
232 	    (int **)&regbuf);
233 
234 	if (len <= 0) {
235 		/* Try PROM property */
236 		len = di_prom_prop_lookup_ints(prom_hdl, node, "reg",
237 		    (int **)&regbuf);
238 	}
239 
240 
241 	if (len > 0) {
242 		regval = regbuf[0];
243 
244 		busnum = PCI_REG_BUS_G(regval);
245 		devicenum = PCI_REG_DEV_G(regval);
246 		funcnum = PCI_REG_FUNC_G(regval);
247 
248 		if ((busnum == pbp->busnum) &&
249 		    (devicenum == pbp->devnum) &&
250 		    (funcnum == pbp->funcnum)) {
251 			/* found it */
252 			pbp->di_node = node;
253 			return (DI_WALK_TERMINATE);
254 		}
255 	}
256 
257 	return (DI_WALK_CONTINUE);
258 }
259 
260 static di_node_t
261 search_tree_match_pcibdf(di_node_t node, int bus, int dev, int fn)
262 {
263 	pcibdf_t pb;
264 	pb.busnum = bus;
265 	pb.devnum = dev;
266 	pb.funcnum = fn;
267 	pb.di_node = DI_NODE_NIL;
268 
269 	(void) di_walk_node(node, DI_WALK_CLDFIRST, &pb, i_match_pcibdf);
270 	return (pb.di_node);
271 
272 }
273 
274 static int
275 i_match_usbserialno(di_node_t node, void *arg)
276 {
277 	int len;
278 	char *serialp;
279 	usbser_t *usbsp;
280 
281 	usbsp = (usbser_t *)arg;
282 
283 	len = di_prop_lookup_bytes(DDI_DEV_T_ANY, node, "usb-serialno",
284 	    (uchar_t **)&serialp);
285 
286 	if ((len > 0) && (strncmp((char *)&usbsp->serialno, serialp,
287 	    sizeof (uint64_t)) == 0)) {
288 		usbsp->node = node;
289 		return (DI_WALK_TERMINATE);
290 	}
291 	return (DI_WALK_CONTINUE);
292 }
293 
294 static di_node_t
295 search_tree_match_usbserialno(di_node_t node, uint64_t serialno)
296 {
297 
298 	usbser_t usbs;
299 
300 	usbs.serialno = serialno;
301 	usbs.node = DI_NODE_NIL;
302 
303 	(void) di_walk_node(node, DI_WALK_CLDFIRST, &usbs, i_match_usbserialno);
304 	return (usbs.node);
305 }
306 
307 /*
308  * returns the index to the disklist to the disk with matching path
309  */
310 static int
311 search_disklist_match_path(char *path)
312 {
313 	int i;
314 	for (i = 0; i < disk_list_valid; i++)
315 		if (strcmp(disk_list[i], path) == 0) {
316 			return (i);
317 		}
318 	return (-1);
319 }
320 
321 /*
322  * Find first child of 'node' whose unit address is 'matchbusaddr'
323  */
324 static di_node_t
325 search_children_match_busaddr(di_node_t node, char *matchbusaddr)
326 {
327 	di_node_t cnode;
328 	char *busaddr;
329 	di_path_t pi = DI_PATH_NIL;
330 	char pbuf[MAXPATHLEN];
331 
332 	if (matchbusaddr == NULL)
333 		return (DI_NODE_NIL);
334 
335 	while ((pi = di_path_next_client(node, pi)) != DI_PATH_NIL)
336 		if (strncmp(di_path_addr(pi, pbuf),  matchbusaddr, MAXPATHLEN)
337 		    == 0)
338 			return (di_path_client_node(pi));
339 
340 	for (cnode = di_child_node(node); cnode != DI_NODE_NIL;
341 	    cnode = di_sibling_node(cnode)) {
342 		busaddr = di_bus_addr(cnode);
343 		if (busaddr == NULL)
344 			continue;
345 		if (strncmp(busaddr, matchbusaddr, MAXNAMELEN) == 0)
346 			break;
347 	}
348 	return (cnode);
349 }
350 
351 /*
352  * Construct a physical device pathname from EDD and verify the
353  * path exists. Return the index of in disk_list for the mapped
354  * path on success, -1 on failure.
355  */
356 static int
357 match_edd(biosdev_data_t *bdata)
358 {
359 	di_node_t node, cnode = DI_NODE_NIL;
360 	char *devfspath = NULL;
361 	fn48_t *bd;
362 	int index;
363 	char busaddrbuf[MAXNAMELEN];
364 
365 	if (!bdata->edd_valid) {
366 		if (debug)
367 			(void) printf("edd not valid\n");
368 		return (-1);
369 	}
370 
371 	bd = &bdata->fn48_dev_params;
372 
373 	if (bd->magic != 0xBEDD || bd->pathinfo_len == 0) {
374 		/* EDD extensions for devicepath not present */
375 		if (debug)
376 			(void) printf("magic not valid %x pathinfolen %d\n",
377 			    bd->magic, bd->pathinfo_len);
378 		return (-1);
379 	}
380 
381 	/* we handle only PCI scsi, ata or sata for now */
382 	if (strncmp(bd->bustype, "PCI", 3) != 0) {
383 		if (debug)
384 			(void) printf("was not pci %s\n", bd->bustype);
385 		return (-1);
386 	}
387 	if (debug)
388 		(void) printf("match_edd bdf %d %d %d\n",
389 		    bd->interfacepath.pci.bus,
390 		    bd->interfacepath.pci.device,
391 		    bd->interfacepath.pci.function);
392 
393 	/* look into devinfo tree and find a node with matching pci b/d/f */
394 	node = search_tree_match_pcibdf(root_node, bd->interfacepath.pci.bus,
395 	    bd->interfacepath.pci.device, bd->interfacepath.pci.function);
396 
397 	if (node == DI_NODE_NIL) {
398 		if (debug)
399 			(void) printf(" could not find a node in tree "
400 			    "matching bdf\n");
401 		return (-1);
402 	}
403 
404 	if (debug) {
405 		int i;
406 		(void) printf("interface type ");
407 		for (i = 0; i < 8; i++)
408 			(void) printf("%c", bd->interface_type[i]);
409 		(void) printf(" pci channel %x target %x\n",
410 		    bd->interfacepath.pci.channel,
411 		    bd->devicepath.scsi.target);
412 	}
413 
414 	if (strncmp(bd->interface_type, "SCSI", 4) == 0) {
415 
416 		(void) snprintf(busaddrbuf, MAXNAMELEN, "%x,%x",
417 		    bd->devicepath.scsi.target, bd->devicepath.scsi.lun_lo);
418 
419 		cnode = search_children_match_busaddr(node, busaddrbuf);
420 
421 	} else if ((strncmp(bd->interface_type, "ATAPI", 5) == 0) ||
422 	    (strncmp(bd->interface_type, "ATA", 3) == 0) ||
423 	    (strncmp(bd->interface_type, "SATA", 4) == 0)) {
424 
425 		if (strncmp(di_node_name(node), "pci-ide", 7) == 0) {
426 			/*
427 			 * Legacy using pci-ide
428 			 * the child should be ide@<x>, where x is
429 			 * the channel number
430 			 */
431 			(void) snprintf(busaddrbuf, MAXNAMELEN, "%d",
432 			    bd->interfacepath.pci.channel);
433 
434 			if ((cnode = search_children_match_busaddr(node,
435 			    busaddrbuf)) != DI_NODE_NIL) {
436 
437 				(void) snprintf(busaddrbuf, MAXNAMELEN, "%x,0",
438 				    bd->devicepath.ata.chan);
439 				cnode = search_children_match_busaddr(cnode,
440 				    busaddrbuf);
441 
442 				if (cnode == DI_NODE_NIL)
443 					if (debug)
444 						(void) printf("Interface %s "
445 						    "using pci-ide no "
446 						    "grandchild at %s\n",
447 						    bd->interface_type,
448 						    busaddrbuf);
449 			} else {
450 				if (debug)
451 					(void) printf("Interface %s using "
452 					    "pci-ide, with no child at %s\n",
453 					    bd->interface_type, busaddrbuf);
454 			}
455 		} else {
456 			if (strncmp(bd->interface_type, "SATA", 4) == 0) {
457 				/*
458 				 * The current EDD (EDD-2) spec does not
459 				 * address port number. This is work in
460 				 * progress.
461 				 * Interprete the first field of device path
462 				 * as port number. Needs to be revisited
463 				 * with port multiplier support.
464 				 */
465 				(void) snprintf(busaddrbuf, MAXNAMELEN, "%x,0",
466 				    bd->devicepath.ata.chan);
467 
468 				cnode = search_children_match_busaddr(node,
469 				    busaddrbuf);
470 			} else {
471 				if (debug)
472 					(void) printf("Interface %s, not using"
473 					    " pci-ide\n", bd->interface_type);
474 			}
475 		}
476 
477 	} else if (strncmp(bd->interface_type, "USB", 3) == 0) {
478 		cnode = search_tree_match_usbserialno(node,
479 		    bd->devicepath.usb.usb_serial_id);
480 	} else {
481 		if (debug)
482 			(void) printf("sorry not supported interface %s\n",
483 			    bd->interface_type);
484 	}
485 
486 	if (cnode != DI_NODE_NIL) {
487 		devfspath = di_devfs_path(cnode);
488 		index = search_disklist_match_path(devfspath);
489 		di_devfs_path_free(devfspath);
490 		if (index >= 0)
491 			return (index);
492 	}
493 
494 	return (-1);
495 }
496 
497 /*
498  * For each disk in list of disks, compare the first block with the
499  * one from bdd. On the first match, return the index of path in
500  * disk_list. If none matched return -1.
501  */
502 static int
503 match_first_block(biosdev_data_t *bd)
504 {
505 
506 	char diskpath[MAXPATHLEN];
507 	int fd;
508 	char buf[512];
509 	ssize_t	num_read;
510 	int i;
511 
512 	if (!bd->first_block_valid)
513 		return (-1);
514 
515 	for (i = 0; i < disk_list_valid; i++) {
516 		(void) snprintf(diskpath, MAXPATHLEN, "%s/%s:q,raw",
517 		    DEVFS_PREFIX, disk_list[i]);
518 		fd = open(diskpath, O_RDONLY);
519 		if (fd  < 0) {
520 			(void) fprintf(stderr, "opening %s failed errno %d\n",
521 			    diskpath, errno);
522 			continue;
523 		}
524 		num_read = read(fd, buf, 512);
525 		if (num_read != 512) {
526 			(void) printf("read only %d bytes from %s\n", num_read,
527 			    diskpath);
528 			continue;
529 		}
530 
531 		if (memcmp(buf, bd->first_block, 512) == 0)	 {
532 			/* found it */
533 			return (i);
534 		}
535 	}
536 	return (-1);
537 }
538 
539 
540 static void
541 cleanup_and_exit(int exitcode)
542 {
543 
544 	free_disks();
545 
546 	if (root_node != DI_NODE_NIL)
547 		di_fini(root_node);
548 
549 	if (root_allnode != DI_NODE_NIL)
550 		di_fini(root_allnode);
551 
552 	if (prom_hdl != DI_PROM_HANDLE_NIL)
553 		di_prom_fini(prom_hdl);
554 	exit(exitcode);
555 
556 }
557 
558 
559 int
560 main(int argc, char *argv[])
561 {
562 	biosdev_data_t		*biosdata;
563 	int i, c, j;
564 	int matchedindex = -1;
565 	char biospropname[BIOSPROPNAME_TMPL_LEN];
566 	int totalmatches = 0;
567 	biosdev_data_t *biosdataarray[BIOSDEV_NUM];
568 
569 
570 	while ((c = getopt(argc, argv, "d")) != -1)  {
571 		switch (c) {
572 		case 'd':
573 			debug = 1;
574 			break;
575 		default:
576 			(void) printf("unknown option %c\n", c);
577 			exit(1);
578 		}
579 	}
580 
581 	if ((prom_hdl = di_prom_init()) == DI_PROM_HANDLE_NIL) {
582 		(void) fprintf(stderr, "di_prom_init failed\n");
583 		cleanup_and_exit(1);
584 	}
585 
586 	if ((root_node = di_init("/", DINFOCACHE)) == DI_NODE_NIL) {
587 		(void) fprintf(stderr, "di_init failed\n");
588 		cleanup_and_exit(1);
589 	}
590 
591 	if ((root_allnode = di_init("/", DINFOCPYALL)) == DI_NODE_NIL) {
592 		(void) fprintf(stderr, "di_init failed\n");
593 		cleanup_and_exit(1);
594 	}
595 
596 	(void) memset(mapinfo, 0, sizeof (mapinfo));
597 
598 	/* get a list of all disks in the system */
599 	build_disk_list();
600 
601 	/*  Get property values that were created at boot up time */
602 	for (i = 0; i < BIOSDEV_NUM; i++) {
603 
604 		(void) snprintf((char *)biospropname, BIOSPROPNAME_TMPL_LEN,
605 		    BIOSPROPNAME_TMPL, i + STARTING_DRVNUM);
606 		if (di_prop_lookup_bytes(DDI_DEV_T_ANY, root_allnode,
607 		    biospropname, (uchar_t **)&biosdataarray[i]) <= 0)
608 			biosdataarray[i] = NULL;
609 	}
610 
611 	/* Try to match based on device/interface path info from BIOS */
612 	for (i = 0; i < BIOSDEV_NUM; i++) {
613 
614 		if ((biosdata = biosdataarray[i]) == NULL)
615 			continue;
616 		if (debug)
617 			(void) printf("matching edd 0x%x\n",
618 			    i + STARTING_DRVNUM);
619 
620 		matchedindex = match_edd(biosdata);
621 
622 		if (matchedindex != -1) {
623 			if (debug) {
624 				(void) printf("matched by edd\n");
625 				(void) printf("0x%x %s\n", i + STARTING_DRVNUM,
626 				    disk_list[matchedindex]);
627 			}
628 
629 			mapinfo[i].disklist_index = matchedindex;
630 			mapinfo[i].matchcount++;
631 
632 			for (j = 0; j < i; j++) {
633 				if (mapinfo[j].matchcount > 0 &&
634 				    mapinfo[j].disklist_index == matchedindex) {
635 					mapinfo[j].matchcount++;
636 					mapinfo[i].matchcount++;
637 				}
638 			}
639 
640 		} else
641 			if (debug)
642 				(void) printf("No matches by edd\n");
643 	}
644 
645 	/*
646 	 * Go through the list and ignore any found matches that are dups.
647 	 * This is to workaround issues with BIOSes that do not implement
648 	 * providing interface/device path info correctly.
649 	 */
650 
651 	for (i = 0; i < BIOSDEV_NUM; i++) {
652 		if (mapinfo[i].matchcount > 1) {
653 			if (debug)
654 				(void) printf("Ignoring dup match_edd\n(count "
655 				    "%d): 0x%x %s\n", mapinfo[i].matchcount,
656 				    i + STARTING_DRVNUM,
657 				    disk_list[mapinfo[i].disklist_index]);
658 
659 			mapinfo[i].matchcount = 0;
660 			mapinfo[i].disklist_index = 0;
661 		}
662 	}
663 
664 
665 	/*
666 	 * For each bios dev number that we do not have exactly one match
667 	 * already, try to match based on first block
668 	 */
669 	for (i = 0; i < BIOSDEV_NUM; i++) {
670 		if (mapinfo[i].matchcount == 1)
671 			continue;
672 
673 		if ((biosdata = biosdataarray[i]) == NULL)
674 			continue;
675 
676 		if (debug)
677 			(void) printf("matching first block 0x%x\n",
678 			    i + STARTING_DRVNUM);
679 
680 		matchedindex = match_first_block(biosdata);
681 		if (matchedindex != -1) {
682 			if (debug) {
683 				(void) printf("matched by first block\n");
684 				(void) printf("0x%x %s\n", i + STARTING_DRVNUM,
685 				    disk_list[matchedindex]);
686 			}
687 
688 			mapinfo[i].disklist_index = matchedindex;
689 			mapinfo[i].matchcount++;
690 
691 			for (j = 0; j < i; j++) {
692 				if (mapinfo[j].matchcount > 0 &&
693 				    mapinfo[j].disklist_index == matchedindex) {
694 					mapinfo[j].matchcount++;
695 					mapinfo[i].matchcount++;
696 				}
697 			}
698 		} else
699 			if (debug) {
700 				(void) printf(" No matches by first block\n");
701 				(void) fprintf(stderr, "Could not match 0x%x\n",
702 				    i + STARTING_DRVNUM);
703 			}
704 	}
705 
706 
707 	for (i = 0; i < BIOSDEV_NUM; i++) {
708 		if (mapinfo[i].matchcount == 1) {
709 			(void) printf("0x%x %s\n", i + STARTING_DRVNUM,
710 			    disk_list[mapinfo[i].disklist_index]);
711 			totalmatches++;
712 		} else if (debug && mapinfo[i].matchcount > 1) {
713 			(void) printf("0x%x %s matchcount %d\n",
714 			    i + STARTING_DRVNUM,
715 			    disk_list[mapinfo[i].disklist_index],
716 			    mapinfo[i].matchcount);
717 		}
718 	}
719 
720 	if (totalmatches == 0) {
721 		(void) fprintf(stderr, "biosdev: Could not match any!!\n");
722 		cleanup_and_exit(1);
723 	}
724 
725 	cleanup_and_exit(0);
726 	/* NOTREACHED */
727 	return (0);
728 }
729