Home | History | Annotate | Line # | Download | only in arch
sparc64.c revision 1.1
      1 /*	$NetBSD: sparc64.c,v 1.1 2002/04/04 13:45:26 lukem Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Luke Mewburn of Wasabi Systems.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the NetBSD
     21  *	Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 /*
     40  * Copyright (c) 2002 Matthew R. Green
     41  * All rights reserved.
     42  *
     43  * Redistribution and use in source and binary forms, with or without
     44  * modification, are permitted provided that the following conditions
     45  * are met:
     46  * 1. Redistributions of source code must retain the above copyright
     47  *    notice, this list of conditions and the following disclaimer.
     48  * 2. Redistributions in binary form must reproduce the above copyright
     49  *    notice, this list of conditions and the following disclaimer in the
     50  *    documentation and/or other materials provided with the distribution.
     51  * 3. The name of the author may not be used to endorse or promote products
     52  *    derived from this software without specific prior written permission.
     53  *
     54  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     55  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     56  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     57  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     58  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     59  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     60  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     61  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     62  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64  * SUCH DAMAGE.
     65  */
     66 
     67 #include <sys/cdefs.h>
     68 #if defined(__RCSID) && !defined(__lint)
     69 __RCSID("$NetBSD: sparc64.c,v 1.1 2002/04/04 13:45:26 lukem Exp $");
     70 #endif	/* !__lint */
     71 
     72 #include <sys/param.h>
     73 #include <sys/stat.h>
     74 
     75 #include <assert.h>
     76 #include <err.h>
     77 #include <stddef.h>
     78 #include <stdio.h>
     79 #include <stdlib.h>
     80 #include <unistd.h>
     81 
     82 #include "installboot.h"
     83 
     84 int	sparc64_parseopt(ib_params *, const char *);
     85 int	sparc64_setboot(ib_params *);
     86 int	sparc64_clearboot(ib_params *);
     87 
     88 int
     89 sparc64_parseopt(ib_params *params, const char *option)
     90 {
     91 
     92 	/* all options are unknown */
     93 	warnx("Unknown -o option `%s'", option);
     94 	return (0);
     95 }
     96 
     97 #define SPARC64_BOOT_BLOCK_OFFSET	DEV_BSIZE
     98 #define SPARC64_BOOT_BLOCK_BLOCKSIZE	DEV_BSIZE
     99 
    100 int
    101 sparc64_clearboot(ib_params *params)
    102 {
    103 	char	bb[512 * 15];
    104 	ssize_t	rv;
    105 
    106 	assert(params != NULL);
    107 	assert(params->fsfd != -1);
    108 	assert(params->filesystem != NULL);
    109 
    110 	if (params->flags & IB_STARTBLOCK) {
    111 		warnx("Can't use `-b bno' with `-c'");
    112 		return (0);
    113 	}
    114 	/* first check that it _could_ exist here */
    115 	rv = pread(params->fsfd, &bb, sizeof bb, SPARC64_BOOT_BLOCK_OFFSET);
    116 	if (rv == -1) {
    117 		warn("Reading `%s'", params->filesystem);
    118 		return (0);
    119 	} else if (rv != sizeof bb) {
    120 		warnx("Reading `%s': short read", params->filesystem);
    121 		return (0);
    122 	}
    123 
    124 	/* now clear it out to nothing */
    125 	memset(bb, 0, sizeof bb);
    126 
    127 	if (params->flags & IB_VERBOSE)
    128 		printf("%slearing boot block\n",
    129 		    (params->flags & IB_NOWRITE) ? "Not c" : "C");
    130 	if (params->flags & IB_NOWRITE)
    131 		return (1);
    132 
    133 	rv = pwrite(params->fsfd, &bb, sizeof(bb), SPARC64_BOOT_BLOCK_OFFSET);
    134 	if (rv == -1) {
    135 		warn("Writing `%s'", params->filesystem);
    136 		return (0);
    137 	} else if (rv != sizeof(bb)) {
    138 		warnx("Writing `%s': short write", params->filesystem);
    139 		return (0);
    140 	}
    141 
    142 	return (1);
    143 }
    144 
    145 int
    146 sparc64_setboot(ib_params *params)
    147 {
    148 	struct stat	bootstrapsb;
    149 	char		bb[512 * 15];
    150 	int		startblock, retval;
    151 	ssize_t		rv, bblen;
    152 
    153 	assert(params != NULL);
    154 	assert(params->fsfd != -1);
    155 	assert(params->filesystem != NULL);
    156 	assert(params->bbfd != -1);
    157 	assert(params->bootblock != NULL);
    158 
    159 	retval = 0;
    160 
    161 	if (fstat(params->bbfd, &bootstrapsb) == -1) {
    162 		warn("Examining `%s'", params->bootblock);
    163 		goto done;
    164 	}
    165 	if (!S_ISREG(bootstrapsb.st_mode)) {
    166 		warnx("`%s' must be a regular file", params->bootblock);
    167 		goto done;
    168 	}
    169 
    170 	bblen = read(params->bbfd, &bb, sizeof bb);
    171 	if (bblen == -1) {
    172 		warn("Reading `%s'", params->filesystem);
    173 		goto done;
    174 	}
    175 
    176 	if (params->flags & IB_STARTBLOCK)
    177 		startblock = params->startblock;
    178 	else
    179 		startblock = SPARC64_BOOT_BLOCK_OFFSET /
    180 		    SPARC64_BOOT_BLOCK_BLOCKSIZE + 1;
    181 
    182 	if (params->flags & IB_VERBOSE) {
    183 		printf("Bootstrap start sector: %#x\n", startblock);
    184 		printf("Bootstrap byte count:   %#x\n", bblen);
    185 		printf("%sriting bootstrap\n",
    186 		    (params->flags & IB_NOWRITE) ? "Not w" : "W");
    187 	}
    188 	if (params->flags & IB_NOWRITE) {
    189 		retval = 1;
    190 		goto done;
    191 	}
    192 	if (params->flags & IB_VERBOSE)
    193 		printf("Writing boot block\n");
    194 
    195 	rv = pwrite(params->fsfd, &bb, bblen,
    196 	     startblock * SPARC64_BOOT_BLOCK_BLOCKSIZE);
    197 	if (rv == -1) {
    198 		warn("Writing `%s'", params->filesystem);
    199 		goto done;
    200 	} else if (rv != bblen) {
    201 		warnx("Writing `%s': short write", params->filesystem);
    202 		goto done;
    203 	} else
    204 		retval = 1;
    205 
    206  done:
    207 	return (retval);
    208 }
    209