Home | History | Annotate | Line # | Download | only in common
devopen.c revision 1.2
      1  1.2  thorpej /*	$NetBSD: devopen.c,v 1.2 1997/10/04 17:20:17 thorpej Exp $	*/
      2  1.2  thorpej 
      3  1.2  thorpej /*-
      4  1.2  thorpej  * Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
      5  1.2  thorpej  * All rights reserved.
      6  1.2  thorpej  *
      7  1.2  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.2  thorpej  * by Jason R. Thorpe.
      9  1.2  thorpej  *
     10  1.2  thorpej  * Redistribution and use in source and binary forms, with or without
     11  1.2  thorpej  * modification, are permitted provided that the following conditions
     12  1.2  thorpej  * are met:
     13  1.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     14  1.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     15  1.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17  1.2  thorpej  *    documentation and/or other materials provided with the distribution.
     18  1.2  thorpej  * 3. All advertising materials mentioning features or use of this software
     19  1.2  thorpej  *    must display the following acknowledgement:
     20  1.2  thorpej  *	This product includes software developed by the NetBSD
     21  1.2  thorpej  *	Foundation, Inc. and its contributors.
     22  1.2  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.2  thorpej  *    contributors may be used to endorse or promote products derived
     24  1.2  thorpej  *    from this software without specific prior written permission.
     25  1.2  thorpej  *
     26  1.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.2  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.2  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.2  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.2  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.2  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.2  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.2  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.2  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.2  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.2  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37  1.2  thorpej  */
     38  1.1  thorpej 
     39  1.1  thorpej /*-
     40  1.1  thorpej  *  Copyright (c) 1993 John Brezak
     41  1.1  thorpej  *  All rights reserved.
     42  1.1  thorpej  *
     43  1.1  thorpej  *  Redistribution and use in source and binary forms, with or without
     44  1.1  thorpej  *  modification, are permitted provided that the following conditions
     45  1.1  thorpej  *  are met:
     46  1.1  thorpej  *  1. Redistributions of source code must retain the above copyright
     47  1.1  thorpej  *     notice, this list of conditions and the following disclaimer.
     48  1.1  thorpej  *  2. Redistributions in binary form must reproduce the above copyright
     49  1.1  thorpej  *     notice, this list of conditions and the following disclaimer in the
     50  1.1  thorpej  *     documentation and/or other materials provided with the distribution.
     51  1.1  thorpej  *  3. The name of the author may not be used to endorse or promote products
     52  1.1  thorpej  *     derived from this software without specific prior written permission.
     53  1.1  thorpej  *
     54  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR
     55  1.1  thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     56  1.1  thorpej  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     57  1.1  thorpej  * DISCLAIMED.	IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     58  1.1  thorpej  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     59  1.1  thorpej  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     60  1.1  thorpej  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     62  1.1  thorpej  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     63  1.1  thorpej  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     64  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     65  1.1  thorpej  */
     66  1.1  thorpej 
     67  1.1  thorpej #include <sys/param.h>
     68  1.1  thorpej #include <sys/reboot.h>
     69  1.1  thorpej 
     70  1.1  thorpej #include <lib/libsa/stand.h>
     71  1.1  thorpej #include <hp300/stand/common/samachdep.h>
     72  1.1  thorpej 
     73  1.1  thorpej u_int opendev;
     74  1.1  thorpej 
     75  1.1  thorpej #define ispart(c)	((c) >= 'a' && (c) <= 'h')
     76  1.1  thorpej 
     77  1.1  thorpej atoi(char *cp)
     78  1.1  thorpej {
     79  1.1  thorpej     int val = 0;
     80  1.1  thorpej     while(isdigit(*cp))
     81  1.1  thorpej 	val = val * 10 + (*cp++ - '0');
     82  1.1  thorpej     return(val);
     83  1.1  thorpej }
     84  1.1  thorpej 
     85  1.1  thorpej usage()
     86  1.1  thorpej {
     87  1.1  thorpej     printf("\
     88  1.1  thorpej Usage: device(adaptor, controller, drive, partition)file\n\
     89  1.1  thorpej        <device><unit><partitionletter>:file\n\
     90  1.1  thorpej ");
     91  1.1  thorpej }
     92  1.1  thorpej 
     93  1.1  thorpej devlookup(d, len)
     94  1.1  thorpej 	const char *d;
     95  1.1  thorpej 	int len;
     96  1.1  thorpej {
     97  1.1  thorpej     struct devsw *dp = devsw;
     98  1.1  thorpej     int i;
     99  1.1  thorpej 
    100  1.1  thorpej     for (i = 0; i < ndevs; i++, dp++) {
    101  1.1  thorpej 	if (dp->dv_name && strncmp(dp->dv_name, d, len) == 0) {
    102  1.1  thorpej 	    /*
    103  1.1  thorpej 	     * Set the filesystem and startup up according to the device
    104  1.1  thorpej 	     * being opened.
    105  1.1  thorpej 	     */
    106  1.1  thorpej 	    switch (i) {
    107  1.1  thorpej 	    case 0:	/* ct */
    108  1.1  thorpej 		bcopy(file_system_rawfs, file_system, sizeof(struct fs_ops));
    109  1.1  thorpej 		break;
    110  1.1  thorpej 
    111  1.1  thorpej 	    case 2:	/* rd */
    112  1.1  thorpej 	    case 4:	/* sd */
    113  1.1  thorpej 		bcopy(file_system_ufs, file_system, sizeof(struct fs_ops));
    114  1.1  thorpej 		break;
    115  1.1  thorpej 
    116  1.1  thorpej 	    case 6:	/* le */
    117  1.1  thorpej 		bcopy(file_system_nfs, file_system, sizeof(struct fs_ops));
    118  1.1  thorpej 		break;
    119  1.1  thorpej 
    120  1.1  thorpej 	    default:
    121  1.1  thorpej 		/* Agh!  What happened?! */
    122  1.1  thorpej 		goto bad;
    123  1.1  thorpej 	    }
    124  1.1  thorpej 	    return(i);
    125  1.1  thorpej 	}
    126  1.1  thorpej     }
    127  1.1  thorpej 
    128  1.1  thorpej  bad:
    129  1.1  thorpej     printf("No such device - Configured devices are:\n");
    130  1.1  thorpej     for (dp = devsw, i = 0; i < ndevs; i++, dp++)
    131  1.1  thorpej 	if (dp->dv_name)
    132  1.1  thorpej 	    printf(" %s", dp->dv_name);
    133  1.1  thorpej     printf("\n");
    134  1.1  thorpej     errno = ENODEV;
    135  1.1  thorpej     return(-1);
    136  1.1  thorpej }
    137  1.1  thorpej 
    138  1.1  thorpej /*
    139  1.1  thorpej  * Parse a device spec in one of two forms.
    140  1.1  thorpej  *
    141  1.1  thorpej  * dev(adapt, ctlr, unit, part)file
    142  1.1  thorpej  * [A-Za-z]*[0-9]*[A-Za-z]:file
    143  1.1  thorpej  *    dev   unit  part
    144  1.1  thorpej  */
    145  1.1  thorpej devparse(fname, dev, adapt, ctlr, unit, part, file)
    146  1.1  thorpej 	const char *fname;
    147  1.1  thorpej 	int *dev, *adapt, *ctlr, *unit, *part;
    148  1.1  thorpej 	char **file;
    149  1.1  thorpej {
    150  1.1  thorpej     int *argp, i;
    151  1.1  thorpej     char *s, *args[4];
    152  1.1  thorpej 
    153  1.1  thorpej     /* get device name and make lower case */
    154  1.1  thorpej     for (s = (char *)fname; *s && *s != '/' && *s != ':' && *s != '('; s++)
    155  1.1  thorpej 	if (isupper(*s)) *s = tolower(*s);
    156  1.1  thorpej 
    157  1.1  thorpej     /* first form */
    158  1.1  thorpej     if (*s == '(') {
    159  1.1  thorpej 	/* lookup device and get index */
    160  1.1  thorpej 	if ((*dev = devlookup(fname, s - fname)) < 0)
    161  1.1  thorpej 	    goto baddev;
    162  1.1  thorpej 
    163  1.1  thorpej 	/* tokenize device ident */
    164  1.1  thorpej 	args[0] = ++s;
    165  1.1  thorpej 	for (args[0] = s, i = 1; *s && *s != ')'; s++) {
    166  1.1  thorpej 	    if (*s == ',')
    167  1.1  thorpej 		args[i++] = ++s;
    168  1.1  thorpej 	}
    169  1.1  thorpej 	switch(i) {
    170  1.1  thorpej 	case 4:
    171  1.1  thorpej 	    *adapt = atoi(args[0]);
    172  1.1  thorpej 	    *ctlr  = atoi(args[1]);
    173  1.1  thorpej 	    *unit  = atoi(args[2]);
    174  1.1  thorpej 	    *part  = atoi(args[3]);
    175  1.1  thorpej 	    break;
    176  1.1  thorpej 	case 3:
    177  1.1  thorpej 	    *ctlr  = atoi(args[0]);
    178  1.1  thorpej 	    *unit  = atoi(args[1]);
    179  1.1  thorpej 	    *part  = atoi(args[2]);
    180  1.1  thorpej 	    break;
    181  1.1  thorpej 	case 2:
    182  1.1  thorpej 	    *unit  = atoi(args[0]);
    183  1.1  thorpej 	    *part  = atoi(args[1]);
    184  1.1  thorpej 	    break;
    185  1.1  thorpej 	case 1:
    186  1.1  thorpej 	    *part  = atoi(args[0]);
    187  1.1  thorpej 	    break;
    188  1.1  thorpej 	case 0:
    189  1.1  thorpej 	    break;
    190  1.1  thorpej 	}
    191  1.1  thorpej 	*file = ++s;
    192  1.1  thorpej     }
    193  1.1  thorpej 
    194  1.1  thorpej     /* second form */
    195  1.1  thorpej     else if (*s == ':') {
    196  1.1  thorpej 	int temp;
    197  1.1  thorpej 
    198  1.1  thorpej 	/* isolate device */
    199  1.1  thorpej 	for (s = (char *)fname; *s != ':' && !isdigit(*s); s++);
    200  1.1  thorpej 
    201  1.1  thorpej 	/* lookup device and get index */
    202  1.1  thorpej 	if ((*dev = devlookup(fname, s - fname)) < 0)
    203  1.1  thorpej 	    goto baddev;
    204  1.1  thorpej 
    205  1.1  thorpej 	/* isolate unit */
    206  1.1  thorpej 	if ((temp = atoi(s)) > 255)
    207  1.1  thorpej 	    goto bad;
    208  1.1  thorpej 	*adapt = temp / 8;
    209  1.1  thorpej 	*ctlr = temp % 8;
    210  1.1  thorpej 	for (; isdigit(*s); s++);
    211  1.1  thorpej 
    212  1.1  thorpej 	/* translate partition */
    213  1.1  thorpej 	if (!ispart(*s))
    214  1.1  thorpej 	    goto bad;
    215  1.1  thorpej 
    216  1.1  thorpej 	*part = *s++ - 'a';
    217  1.1  thorpej 	if (*s != ':')
    218  1.1  thorpej 	    goto bad;
    219  1.1  thorpej 	*file = ++s;
    220  1.1  thorpej     }
    221  1.1  thorpej 
    222  1.1  thorpej     /* no device present */
    223  1.1  thorpej     else
    224  1.1  thorpej 	*file = (char *)fname;
    225  1.1  thorpej 
    226  1.1  thorpej     /* return the remaining unparsed part as the file to boot */
    227  1.1  thorpej     return(0);
    228  1.1  thorpej 
    229  1.1  thorpej  bad:
    230  1.1  thorpej     usage();
    231  1.1  thorpej 
    232  1.1  thorpej  baddev:
    233  1.1  thorpej     return(-1);
    234  1.1  thorpej }
    235  1.1  thorpej 
    236  1.1  thorpej 
    237  1.1  thorpej devopen(f, fname, file)
    238  1.1  thorpej 	struct open_file *f;
    239  1.1  thorpej 	const char *fname;
    240  1.1  thorpej 	char **file;
    241  1.1  thorpej {
    242  1.1  thorpej 	int n, error;
    243  1.1  thorpej 	int dev, adapt, ctlr, unit, part;
    244  1.1  thorpej 	struct devsw *dp = &devsw[0];
    245  1.1  thorpej 
    246  1.1  thorpej 	dev   = B_TYPE(bootdev);
    247  1.1  thorpej 	adapt = B_ADAPTOR(bootdev);
    248  1.1  thorpej 	ctlr  = B_CONTROLLER(bootdev);
    249  1.1  thorpej 	unit  = B_UNIT(bootdev);
    250  1.1  thorpej 	part  = B_PARTITION(bootdev);
    251  1.1  thorpej 
    252  1.1  thorpej 	if (error = devparse(fname, &dev, &adapt, &ctlr, &unit, &part, file))
    253  1.1  thorpej 	    return(error);
    254  1.1  thorpej 
    255  1.1  thorpej 	/*
    256  1.1  thorpej 	 * Set up filesystem type based on what device we're opening.
    257  1.1  thorpej 	 */
    258  1.1  thorpej 	switch (dev) {
    259  1.1  thorpej 	case 0:		/* ct */
    260  1.1  thorpej 		bcopy(file_system_rawfs, file_system, sizeof(struct fs_ops));
    261  1.1  thorpej 		break;
    262  1.1  thorpej 
    263  1.1  thorpej 	case 2:		/* rd */
    264  1.1  thorpej 	case 4:		/* sd */
    265  1.1  thorpej 		bcopy(file_system_ufs, file_system, sizeof(struct fs_ops));
    266  1.1  thorpej 		break;
    267  1.1  thorpej 
    268  1.1  thorpej 	case 6:		/* le */
    269  1.1  thorpej 		bcopy(file_system_nfs, file_system, sizeof(struct fs_ops));
    270  1.1  thorpej 		break;
    271  1.1  thorpej 
    272  1.1  thorpej 	default:
    273  1.1  thorpej 		/* XXX what else should we do here? */
    274  1.1  thorpej 		printf("WARNING: BOGUS BOOT DEV TYPE 0x%x!\n", dev);
    275  1.1  thorpej 		return (EIO);
    276  1.1  thorpej 	}
    277  1.1  thorpej 
    278  1.1  thorpej 	dp = &devsw[dev];
    279  1.1  thorpej 
    280  1.1  thorpej 	if (!dp->dv_open)
    281  1.1  thorpej 		return(ENODEV);
    282  1.1  thorpej 
    283  1.1  thorpej 	f->f_dev = dp;
    284  1.1  thorpej 
    285  1.1  thorpej 	if ((error = (*dp->dv_open)(f, adapt, ctlr, part)) == 0) {
    286  1.1  thorpej 		if ((error =
    287  1.1  thorpej 		    (*punitsw[dev].p_punit)(adapt, ctlr, &unit)) != 0) {
    288  1.1  thorpej 			goto bad;
    289  1.1  thorpej 		}
    290  1.1  thorpej 		opendev = MAKEBOOTDEV(dev, adapt, ctlr, unit, part);
    291  1.1  thorpej 		return(0);
    292  1.1  thorpej 	}
    293  1.1  thorpej 
    294  1.1  thorpej  bad:
    295  1.1  thorpej 	printf("%s(%d,%d,%d,%d): %s\n", devsw[dev].dv_name,
    296  1.1  thorpej 	    adapt, ctlr, unit, part, strerror(error));
    297  1.1  thorpej 
    298  1.1  thorpej 	return(error);
    299  1.1  thorpej }
    300