Home | History | Annotate | Line # | Download | only in arch
sparc64.c revision 1.10
      1 /*	$NetBSD: sparc64.c,v 1.10 2002/04/30 14:24:33 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.10 2002/04/30 14:24:33 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 <string.h>
     81 #include <unistd.h>
     82 
     83 #include "installboot.h"
     84 
     85 #define SPARC64_BOOT_BLOCK_OFFSET	DEV_BSIZE
     86 #define SPARC64_BOOT_BLOCK_BLOCKSIZE	DEV_BSIZE
     87 #define SPARC64_BOOT_BLOCK_MAX_SIZE	(DEV_BSIZE * 15)
     88 
     89 int
     90 sparc64_clearboot(ib_params *params)
     91 {
     92 	char	bb[SPARC64_BOOT_BLOCK_MAX_SIZE];
     93 	ssize_t	rv;
     94 
     95 	assert(params != NULL);
     96 	assert(params->fsfd != -1);
     97 	assert(params->filesystem != NULL);
     98 
     99 	if (params->flags & IB_STARTBLOCK) {
    100 		warnx("Can't use `-b bno' with `-c'");
    101 		return (0);
    102 	}
    103 	/* first check that it _could_ exist here */
    104 	rv = pread(params->fsfd, &bb, sizeof(bb), SPARC64_BOOT_BLOCK_OFFSET);
    105 	if (rv == -1) {
    106 		warn("Reading `%s'", params->filesystem);
    107 		return (0);
    108 	} else if (rv != sizeof(bb)) {
    109 		warnx("Reading `%s': short read", params->filesystem);
    110 		return (0);
    111 	}
    112 
    113 	/* now clear it out to nothing */
    114 	memset(&bb, 0, sizeof(bb));
    115 
    116 	if (params->flags & IB_VERBOSE)
    117 		printf("%slearing boot block\n",
    118 		    (params->flags & IB_NOWRITE) ? "Not c" : "C");
    119 	if (params->flags & IB_NOWRITE)
    120 		return (1);
    121 
    122 	rv = pwrite(params->fsfd, &bb, sizeof(bb), SPARC64_BOOT_BLOCK_OFFSET);
    123 	if (rv == -1) {
    124 		warn("Writing `%s'", params->filesystem);
    125 		return (0);
    126 	} else if (rv != sizeof(bb)) {
    127 		warnx("Writing `%s': short write", params->filesystem);
    128 		return (0);
    129 	}
    130 
    131 	return (1);
    132 }
    133 
    134 int
    135 sparc64_setboot(ib_params *params)
    136 {
    137 	struct stat	bootstrapsb;
    138 	char		bb[SPARC64_BOOT_BLOCK_MAX_SIZE];
    139 	uint32_t	startblock;
    140 	int		retval;
    141 	ssize_t		rv;
    142 
    143 	assert(params != NULL);
    144 	assert(params->fsfd != -1);
    145 	assert(params->filesystem != NULL);
    146 	assert(params->s1fd != -1);
    147 	assert(params->stage1 != NULL);
    148 
    149 	retval = 0;
    150 
    151 	if (fstat(params->s1fd, &bootstrapsb) == -1) {
    152 		warn("Examining `%s'", params->stage1);
    153 		goto done;
    154 	}
    155 	if (!S_ISREG(bootstrapsb.st_mode)) {
    156 		warnx("`%s' must be a regular file", params->stage1);
    157 		goto done;
    158 	}
    159 
    160 	memset(&bb, 0, SPARC64_BOOT_BLOCK_MAX_SIZE);
    161 	rv = read(params->s1fd, &bb, sizeof(bb));
    162 	if (rv == -1) {
    163 		warn("Reading `%s'", params->stage1);
    164 		goto done;
    165 	}
    166 
    167 	if (params->flags & IB_STARTBLOCK)
    168 		startblock = params->startblock;
    169 	else
    170 		startblock = SPARC64_BOOT_BLOCK_OFFSET /
    171 		    SPARC64_BOOT_BLOCK_BLOCKSIZE;
    172 
    173 	if (params->flags & IB_VERBOSE) {
    174 		printf("Bootstrap start sector: %u\n", startblock);
    175 		printf("Bootstrap byte count:   %u\n", (unsigned)rv);
    176 		printf("%sriting bootstrap\n",
    177 		    (params->flags & IB_NOWRITE) ? "Not w" : "W");
    178 	}
    179 	if (params->flags & IB_NOWRITE) {
    180 		retval = 1;
    181 		goto done;
    182 	}
    183 
    184 	rv = pwrite(params->fsfd, &bb, SPARC64_BOOT_BLOCK_MAX_SIZE,
    185 	    startblock * SPARC64_BOOT_BLOCK_BLOCKSIZE);
    186 	if (rv == -1) {
    187 		warn("Writing `%s'", params->filesystem);
    188 		goto done;
    189 	} else if (rv != SPARC64_BOOT_BLOCK_MAX_SIZE) {
    190 		warnx("Writing `%s': short write", params->filesystem);
    191 		goto done;
    192 	} else
    193 		retval = 1;
    194 
    195  done:
    196 	return (retval);
    197 }
    198