Home | History | Annotate | Line # | Download | only in common
blkdev.c revision 1.5
      1  1.5  tsutsui /* $NetBSD: blkdev.c,v 1.5 2009/01/12 07:30:45 tsutsui Exp $ */
      2  1.1      cgd 
      3  1.1      cgd /*
      4  1.1      cgd  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
      5  1.1      cgd  *
      6  1.1      cgd  * Redistribution and use in source and binary forms, with or without
      7  1.1      cgd  * modification, are permitted provided that the following conditions
      8  1.1      cgd  * are met:
      9  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     10  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     11  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     13  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     14  1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     15  1.1      cgd  *    must display the following acknowledgement:
     16  1.1      cgd  *      This product includes software developed by Christopher G. Demetriou
     17  1.1      cgd  *	for the NetBSD Project.
     18  1.1      cgd  * 4. The name of the author may not be used to endorse or promote products
     19  1.1      cgd  *    derived from this software without specific prior written permission
     20  1.1      cgd  *
     21  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1      cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1      cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1      cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1      cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1      cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1      cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1      cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1      cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1      cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1      cgd  */
     32  1.1      cgd 
     33  1.1      cgd /*
     34  1.1      cgd  * Copyright (c) 1992, 1993
     35  1.1      cgd  *	The Regents of the University of California.  All rights reserved.
     36  1.1      cgd  *
     37  1.1      cgd  * This code is derived from software contributed to Berkeley by
     38  1.1      cgd  * Van Jacobson of Lawrence Berkeley Laboratory and Ralph Campbell.
     39  1.1      cgd  *
     40  1.1      cgd  * Redistribution and use in source and binary forms, with or without
     41  1.1      cgd  * modification, are permitted provided that the following conditions
     42  1.1      cgd  * are met:
     43  1.1      cgd  * 1. Redistributions of source code must retain the above copyright
     44  1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     45  1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     46  1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     47  1.1      cgd  *    documentation and/or other materials provided with the distribution.
     48  1.3      agc  * 3. Neither the name of the University nor the names of its contributors
     49  1.1      cgd  *    may be used to endorse or promote products derived from this software
     50  1.1      cgd  *    without specific prior written permission.
     51  1.1      cgd  *
     52  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     53  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     54  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     55  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     56  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     57  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     58  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     59  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     60  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     61  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     62  1.1      cgd  * SUCH DAMAGE.
     63  1.1      cgd  *
     64  1.1      cgd  *	@(#)rz.c	8.1 (Berkeley) 6/10/93
     65  1.1      cgd  */
     66  1.1      cgd 
     67  1.1      cgd #include <lib/libsa/stand.h>
     68  1.1      cgd #include <lib/libkern/libkern.h>
     69  1.1      cgd 
     70  1.1      cgd #include <sys/param.h>
     71  1.1      cgd #include <sys/disklabel.h>
     72  1.1      cgd 
     73  1.1      cgd #include "stand/common/cfe_api.h"
     74  1.1      cgd 
     75  1.1      cgd #include "stand/common/common.h"
     76  1.1      cgd #include "blkdev.h"
     77  1.1      cgd 
     78  1.1      cgd /*
     79  1.1      cgd  * If BOOTXX_FS_TYPE is defined, we'll try to find and use the first
     80  1.1      cgd  * partition with that type mentioned in the disklabel, else default to
     81  1.1      cgd  * using block 0.
     82  1.1      cgd  *
     83  1.1      cgd  * The old boot blocks used to look for a file system starting at block
     84  1.1      cgd  * 0.  It's not immediately obvious that change here is necessary or good,
     85  1.1      cgd  * so for now we don't bother looking for the specific type.
     86  1.1      cgd  */
     87  1.1      cgd #undef BOOTXX_FS_TYPE
     88  1.1      cgd 
     89  1.1      cgd int		blkdev_is_open;
     90  1.1      cgd u_int32_t	blkdev_part_offset;
     91  1.1      cgd 
     92  1.1      cgd /*
     93  1.1      cgd  * Since we have only one device, and want to squeeze space, we just
     94  1.1      cgd  * short-circuit devopen() to do the disk open as well.
     95  1.1      cgd  *
     96  1.1      cgd  * Devopen is supposed to decode the string 'fname', open the device,
     97  1.1      cgd  * and make 'file' point to the remaining file name.  Since we don't
     98  1.1      cgd  * do any device munging, we can just set *file to fname.
     99  1.1      cgd  */
    100  1.1      cgd int
    101  1.1      cgd devopen(f, fname, file)
    102  1.1      cgd 	struct open_file *f;
    103  1.1      cgd 	const char *fname;
    104  1.1      cgd 	char **file;	/* out */
    105  1.1      cgd {
    106  1.1      cgd #if defined(BOOTXX_FS_TYPE)
    107  1.1      cgd 	int i;
    108  1.1      cgd 	size_t cnt;
    109  1.1      cgd 	char *msg, buf[DEV_BSIZE];
    110  1.1      cgd 	struct disklabel l;
    111  1.1      cgd #endif /* defined(BOOTXX_FS_TYPE) */
    112  1.1      cgd 
    113  1.1      cgd 	if (blkdev_is_open) {
    114  1.1      cgd 		return (EBUSY);
    115  1.1      cgd 	    }
    116  1.1      cgd 
    117  1.1      cgd 	*file = (char *)fname;
    118  1.1      cgd 
    119  1.1      cgd #if 0
    120  1.1      cgd 	f->f_devdata = NULL;			/* no point */
    121  1.1      cgd #endif
    122  1.1      cgd 
    123  1.1      cgd 	/* Try to read disk label and partition table information. */
    124  1.1      cgd 	blkdev_part_offset = 0;
    125  1.1      cgd #if defined(BOOTXX_FS_TYPE)
    126  1.1      cgd 
    127  1.1      cgd 	i = diskstrategy(NULL, F_READ,
    128  1.1      cgd 	    (daddr_t)LABELSECTOR, DEV_BSIZE, buf, &cnt);
    129  1.1      cgd 	if (i || cnt != DEV_BSIZE) {
    130  1.1      cgd 		return (ENXIO);
    131  1.1      cgd 	}
    132  1.1      cgd 	msg = getdisklabel(buf, &l);
    133  1.1      cgd 	if (msg == NULL) {
    134  1.1      cgd 		/*
    135  1.1      cgd 		 * there's a label.  find the first partition of the
    136  1.1      cgd 		 * type we want and use its offset.  if none are
    137  1.1      cgd 		 * found, we just use offset 0.
    138  1.1      cgd 		 */
    139  1.1      cgd 		for (i = 0; i < l.d_npartitions; i++) {
    140  1.1      cgd 			if (l.d_partitions[i].p_fstype == BOOTXX_FS_TYPE) {
    141  1.1      cgd 				blkdev_part_offset = l.d_partitions[i].p_offset;
    142  1.1      cgd 				break;
    143  1.1      cgd 			}
    144  1.1      cgd 		}
    145  1.1      cgd 	} else {
    146  1.1      cgd 		/* just use offset 0; it's already set that way */
    147  1.1      cgd 	}
    148  1.1      cgd #endif /* defined(BOOTXX_FS_TYPE) */
    149  1.1      cgd 
    150  1.1      cgd 	blkdev_is_open = 1;
    151  1.1      cgd 	return (0);
    152  1.1      cgd }
    153  1.1      cgd 
    154  1.1      cgd int
    155  1.1      cgd blkdevstrategy(devdata, rw, bn, reqcnt, addrvoid, cnt)
    156  1.1      cgd 	void *devdata;
    157  1.1      cgd 	int rw;
    158  1.1      cgd 	daddr_t bn;
    159  1.1      cgd 	size_t reqcnt;
    160  1.1      cgd 	void *addrvoid;
    161  1.1      cgd 	size_t *cnt;	/* out: number of bytes transfered */
    162  1.1      cgd {
    163  1.5  tsutsui 	unsigned char *addr = addrvoid;
    164  1.1      cgd 	int res;
    165  1.1      cgd 
    166  1.2       he #if !defined(LIBSA_NO_TWIDDLE)
    167  1.1      cgd 	twiddle();
    168  1.2       he #endif
    169  1.1      cgd 
    170  1.1      cgd 	/* Partial-block transfers not handled. */
    171  1.1      cgd 	if (reqcnt & (DEV_BSIZE - 1)) {
    172  1.1      cgd 		*cnt = 0;
    173  1.1      cgd 		return (EINVAL);
    174  1.1      cgd 	}
    175  1.1      cgd 	res = cfe_readblk(booted_dev_fd,(bn+blkdev_part_offset)*DEV_BSIZE,addr,reqcnt);
    176  1.1      cgd 	if (res < 0) return EIO;
    177  1.1      cgd 
    178  1.1      cgd 	*cnt = res;
    179  1.1      cgd 	return (0);
    180  1.1      cgd }
    181  1.1      cgd 
    182  1.1      cgd #if !defined(LIBSA_NO_FS_CLOSE)
    183  1.1      cgd int
    184  1.1      cgd blkdevclose(struct open_file *f)
    185  1.1      cgd {
    186  1.1      cgd 
    187  1.1      cgd 	blkdev_is_open = 0;
    188  1.1      cgd 	return (0);
    189  1.1      cgd }
    190  1.1      cgd #endif /* !defined(LIBSA_NO_FS_CLOSE) */
    191