1 1.10 christos /* $NetBSD: installboot.c,v 1.10 2016/01/21 16:58:36 christos Exp $ */ 2 1.1 wdk 3 1.1 wdk /* 4 1.1 wdk * Copyright (c) 2000 The NetBSD Foundation, Inc. 5 1.1 wdk * All rights reserved. 6 1.1 wdk * 7 1.1 wdk * This code is derived from software contributed to The NetBSD Foundation 8 1.1 wdk * by Wayne Knowles 9 1.1 wdk * 10 1.1 wdk * Redistribution and use in source and binary forms, with or without 11 1.1 wdk * modification, are permitted provided that the following conditions 12 1.1 wdk * are met: 13 1.1 wdk * 1. Redistributions of source code must retain the above copyright 14 1.1 wdk * notice, this list of conditions and the following disclaimer. 15 1.1 wdk * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 wdk * notice, this list of conditions and the following disclaimer in the 17 1.1 wdk * documentation and/or other materials provided with the distribution. 18 1.1 wdk * 19 1.1 wdk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 wdk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 wdk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 wdk * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 wdk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 wdk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 wdk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 wdk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 wdk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 wdk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 wdk * POSSIBILITY OF SUCH DAMAGE. 30 1.1 wdk */ 31 1.1 wdk 32 1.1 wdk #include <assert.h> 33 1.1 wdk #include <err.h> 34 1.1 wdk #include <fcntl.h> 35 1.1 wdk #include <stdlib.h> 36 1.1 wdk #include <stdio.h> 37 1.1 wdk #include <string.h> 38 1.1 wdk #include <unistd.h> 39 1.1 wdk 40 1.1 wdk #include <sys/param.h> 41 1.1 wdk #include <sys/stat.h> 42 1.1 wdk #include <sys/disklabel.h> 43 1.1 wdk 44 1.1 wdk 45 1.1 wdk #define VERBOSE(msg) if (verbose) \ 46 1.1 wdk fprintf(stderr, msg) 47 1.1 wdk #define FATAL(a1,a2) errx(EXIT_FAILURE, a1, a2) 48 1.1 wdk #define FATALIO(a1,a2) err(EXIT_FAILURE, a1, a2) 49 1.1 wdk 50 1.1 wdk #define BOOTBLOCK_NUMBER 2 51 1.1 wdk #define BOOTBLOCK_OFFSET BOOTBLOCK_NUMBER*DEV_BSIZE 52 1.1 wdk #define DEFAULT_BOOTFILE "boot" 53 1.1 wdk 54 1.5 dsl static void usage(void); 55 1.5 dsl static void do_list(const char *); 56 1.5 dsl static void do_remove(const char *, const char *); 57 1.5 dsl static void do_install(const char *, const char *, const char *); 58 1.5 dsl static int mipsvh_cksum(struct mips_volheader *); 59 1.5 dsl static void read_volheader(const char *, struct mips_volheader *); 60 1.5 dsl static void write_volheader(const char *, struct mips_volheader *); 61 1.5 dsl static struct mips_voldir *voldir_findfile(struct mips_volheader *, 62 1.5 dsl const char *, int); 63 1.1 wdk 64 1.1 wdk int verbose, nowrite; 65 1.1 wdk 66 1.1 wdk static void 67 1.8 cegger usage(void) 68 1.1 wdk { 69 1.1 wdk 70 1.1 wdk fprintf(stderr, "usage:\n"); 71 1.2 cgd fprintf(stderr, "\t%s [-nv] disk bootstrap [name]\n", getprogname()); 72 1.2 cgd fprintf(stderr, "\t%s -r [-nv] disk [name]\n", getprogname()); 73 1.2 cgd fprintf(stderr, "\t%s -l [-nv] disk\n", getprogname()); 74 1.1 wdk exit(EXIT_FAILURE); 75 1.1 wdk } 76 1.1 wdk 77 1.1 wdk int 78 1.1 wdk main(int argc, char *argv[]) 79 1.1 wdk { 80 1.1 wdk const char *disk; 81 1.1 wdk int c, rflag, lflag; 82 1.1 wdk 83 1.1 wdk rflag = lflag = verbose = nowrite = 0; 84 1.1 wdk 85 1.1 wdk while ((c = getopt(argc, argv, "lnrv")) != -1) { 86 1.1 wdk switch (c) { 87 1.1 wdk case 'l': 88 1.1 wdk /* List volume directory contents */ 89 1.1 wdk lflag = 1; 90 1.1 wdk break; 91 1.1 wdk case 'n': 92 1.1 wdk /* Disable write of boot sectors */ 93 1.1 wdk nowrite = 1; 94 1.1 wdk break; 95 1.1 wdk case 'r': 96 1.1 wdk /* Clear any existing boot block */ 97 1.1 wdk rflag = 1; 98 1.1 wdk break; 99 1.1 wdk case 'v': 100 1.1 wdk /* Verbose output */ 101 1.1 wdk verbose = 1; 102 1.1 wdk break; 103 1.1 wdk default: 104 1.1 wdk usage(); 105 1.1 wdk } 106 1.1 wdk } 107 1.1 wdk 108 1.1 wdk argc -= optind; 109 1.1 wdk argv += optind; 110 1.1 wdk 111 1.1 wdk if ((lflag && rflag) || argc < 1 || (lflag && argc != 1) || 112 1.1 wdk (rflag && argc > 3) || argc > 4) 113 1.1 wdk usage(); 114 1.1 wdk 115 1.1 wdk disk = argv[0]; 116 1.1 wdk 117 1.1 wdk if (lflag) 118 1.1 wdk do_list(disk); 119 1.1 wdk else if (rflag) 120 1.1 wdk do_remove(disk, argc==2?argv[1]:DEFAULT_BOOTFILE); 121 1.1 wdk else 122 1.1 wdk do_install(disk, argv[1], argc==3?argv[2]:DEFAULT_BOOTFILE); 123 1.1 wdk 124 1.1 wdk exit(EXIT_SUCCESS); 125 1.1 wdk } 126 1.1 wdk 127 1.1 wdk static void 128 1.6 dsl do_list(const char *disk) 129 1.1 wdk { 130 1.1 wdk struct mips_volheader vh; 131 1.1 wdk struct mips_voldir *vdp; 132 1.1 wdk int i; 133 1.1 wdk 134 1.1 wdk read_volheader(disk, &vh); 135 1.1 wdk 136 1.1 wdk printf("Slot\t LBN\tLength\tFilename\n"); 137 1.1 wdk printf("------------------------------------------\n"); 138 1.1 wdk for (i=0, vdp=vh.vh_voldir; i<MIPS_NVOLDIR; i++, vdp++) 139 1.1 wdk if (vdp->vd_len) 140 1.1 wdk printf("%2d:\t%5d\t%6d\t%s\n", i, vdp->vd_lba, 141 1.1 wdk vdp->vd_len, vdp->vd_name); 142 1.1 wdk } 143 1.1 wdk 144 1.1 wdk static void 145 1.6 dsl do_remove(const char *disk, const char *filename) 146 1.1 wdk { 147 1.1 wdk struct mips_volheader vh; 148 1.1 wdk struct mips_voldir *vdp; 149 1.1 wdk 150 1.1 wdk read_volheader(disk, &vh); 151 1.1 wdk vdp = voldir_findfile(&vh, filename, 0); 152 1.1 wdk if (vdp == NULL) 153 1.1 wdk FATAL("%s: file not found", disk); 154 1.1 wdk 155 1.3 wdk memset(vdp, 0, sizeof(*vdp)); 156 1.1 wdk 157 1.1 wdk /* Update volume header */ 158 1.1 wdk write_volheader(disk, &vh); 159 1.1 wdk } 160 1.1 wdk 161 1.1 wdk static void 162 1.6 dsl do_install(const char *disk, const char *bootstrap, const char *bootname) 163 1.1 wdk { 164 1.1 wdk struct stat bootstrapsb; 165 1.1 wdk struct mips_volheader vh; 166 1.1 wdk struct mips_voldir *vdp; 167 1.1 wdk int fd; 168 1.1 wdk char *boot_code; 169 1.1 wdk size_t boot_size; 170 1.1 wdk ssize_t len; 171 1.1 wdk 172 1.1 wdk /* Open the input file and check it out */ 173 1.1 wdk if ((fd = open(bootstrap, O_RDONLY)) == -1) 174 1.1 wdk FATALIO("open %s", bootstrap); 175 1.1 wdk if (fstat(fd, &bootstrapsb) == -1) 176 1.1 wdk FATALIO("fstat %s", bootstrap); 177 1.1 wdk if (!S_ISREG(bootstrapsb.st_mode)) 178 1.1 wdk FATAL("%s must be a regular file", bootstrap); 179 1.1 wdk 180 1.1 wdk boot_size = roundup(bootstrapsb.st_size, DEV_BSIZE); 181 1.1 wdk 182 1.1 wdk if (boot_size > 8192-1024) 183 1.1 wdk FATAL("bootstrap program too large (%d bytes)", boot_size); 184 1.1 wdk 185 1.1 wdk boot_code = malloc(boot_size); 186 1.1 wdk if (boot_code == NULL) 187 1.1 wdk FATAL("malloc %d bytes failed", boot_size); 188 1.3 wdk memset(boot_code, 0, boot_size); 189 1.1 wdk 190 1.1 wdk /* read the file into the buffer */ 191 1.1 wdk len = read(fd, boot_code, bootstrapsb.st_size); 192 1.1 wdk if (len == -1) 193 1.1 wdk FATALIO("read %s", bootstrap); 194 1.1 wdk else if (len != bootstrapsb.st_size) 195 1.1 wdk FATAL("read %s: short read", bootstrap); 196 1.1 wdk (void)close(fd); 197 1.1 wdk 198 1.1 wdk read_volheader(disk, &vh); 199 1.1 wdk 200 1.1 wdk vdp = voldir_findfile(&vh, bootname, 1); 201 1.1 wdk if (vdp == NULL) 202 1.1 wdk FATAL("%s: volume directory full", disk); 203 1.1 wdk 204 1.1 wdk strcpy(vdp->vd_name, bootname); 205 1.1 wdk vdp->vd_lba = BOOTBLOCK_NUMBER; 206 1.1 wdk vdp->vd_len = bootstrapsb.st_size; 207 1.1 wdk 208 1.1 wdk if (nowrite) { 209 1.1 wdk if (verbose) 210 1.1 wdk fprintf(stderr, "not writing\n"); 211 1.10 christos free(boot_code); 212 1.1 wdk return; 213 1.1 wdk } 214 1.1 wdk 215 1.1 wdk if (verbose) 216 1.1 wdk fprintf(stderr, "writing bootstrap (%d bytes at logical block %d)\n", 217 1.1 wdk boot_size, 2); 218 1.1 wdk 219 1.1 wdk /* Write bootstrap */ 220 1.1 wdk if ((fd = open(disk, O_WRONLY)) == -1) 221 1.1 wdk FATALIO("open %s", bootstrap); 222 1.1 wdk len = pwrite(fd, boot_code, boot_size, BOOTBLOCK_OFFSET); 223 1.9 christos free(boot_code); 224 1.1 wdk if (len == -1) 225 1.1 wdk FATAL("write %s", disk); 226 1.1 wdk if (len != boot_size) 227 1.1 wdk FATAL("write %s: short write", disk); 228 1.1 wdk (void) close(fd); 229 1.1 wdk 230 1.1 wdk /* Update volume header */ 231 1.1 wdk write_volheader(disk, &vh); 232 1.1 wdk } 233 1.1 wdk 234 1.1 wdk static void 235 1.6 dsl read_volheader(const char *disk, struct mips_volheader *vhp) 236 1.1 wdk { 237 1.1 wdk int vfd; 238 1.1 wdk ssize_t len; 239 1.1 wdk 240 1.1 wdk if ((vfd = open(disk, O_RDONLY)) == -1) 241 1.1 wdk FATALIO("open %s", disk); 242 1.1 wdk 243 1.1 wdk len = pread(vfd, vhp, sizeof(*vhp), MIPS_VHSECTOR*DEV_BSIZE); 244 1.1 wdk 245 1.1 wdk (void) close(vfd); 246 1.1 wdk 247 1.1 wdk if (len == -1) 248 1.1 wdk FATALIO("read %s", disk); 249 1.1 wdk if (len != sizeof(*vhp)) 250 1.1 wdk FATAL("read %s: short read", disk); 251 1.1 wdk 252 1.1 wdk /* Check volume header magic */ 253 1.1 wdk if (vhp->vh_magic != MIPS_VHMAGIC) 254 1.1 wdk FATAL("%s: no volume header", disk); 255 1.1 wdk 256 1.1 wdk /* check volume header checksum */ 257 1.1 wdk if (mipsvh_cksum(vhp)) 258 1.1 wdk FATAL("%s: volume header corrupted", disk); 259 1.1 wdk } 260 1.1 wdk 261 1.1 wdk static void 262 1.6 dsl write_volheader(const char *disk, struct mips_volheader *vhp) 263 1.1 wdk { 264 1.1 wdk int vfd; 265 1.1 wdk ssize_t len; 266 1.1 wdk 267 1.1 wdk /* update volume header checksum */ 268 1.1 wdk vhp->vh_cksum = 0; 269 1.1 wdk vhp->vh_cksum = -mipsvh_cksum(vhp); 270 1.1 wdk 271 1.1 wdk if ((vfd = open(disk, O_WRONLY)) == -1) 272 1.1 wdk FATALIO("open %s", disk); 273 1.1 wdk 274 1.1 wdk if (verbose) 275 1.1 wdk fprintf(stderr, "%s: writing volume header\n", disk); 276 1.1 wdk 277 1.1 wdk len = pwrite(vfd, vhp, sizeof(*vhp), MIPS_VHSECTOR*512); /* XXX */ 278 1.1 wdk if (len == -1) 279 1.1 wdk FATALIO("write %s", disk); 280 1.1 wdk if (len != sizeof(*vhp)) 281 1.1 wdk FATAL("write %s: short write", disk); 282 1.1 wdk 283 1.1 wdk (void) close(vfd); 284 1.1 wdk } 285 1.1 wdk 286 1.1 wdk /* 287 1.1 wdk * Compute checksum for MIPS disk volume header 288 1.1 wdk * 289 1.1 wdk * Mips volume header checksum is the 32bit 2's complement sum 290 1.1 wdk * of the entire volume header structure 291 1.1 wdk */ 292 1.1 wdk int 293 1.6 dsl mipsvh_cksum(struct mips_volheader *vhp) 294 1.1 wdk { 295 1.1 wdk int i, *ptr; 296 1.1 wdk int cksum = 0; 297 1.1 wdk 298 1.1 wdk ptr = (int *)vhp; 299 1.1 wdk i = sizeof(*vhp) / sizeof(*ptr); 300 1.1 wdk while (i--) 301 1.1 wdk cksum += *ptr++; 302 1.1 wdk return cksum; 303 1.1 wdk } 304 1.1 wdk 305 1.1 wdk 306 1.1 wdk /* 307 1.1 wdk * Locate the volume directory slot that matches a filename 308 1.1 wdk * 309 1.1 wdk * If the file entry cannot be found and create is non-zero the next 310 1.1 wdk * empty slot is returned, otherwise return NULL 311 1.1 wdk */ 312 1.1 wdk static struct mips_voldir * 313 1.7 dsl voldir_findfile(struct mips_volheader *vhp, const char *file, int create) 314 1.7 dsl /* create: return unused entry if not found */ 315 1.1 wdk { 316 1.1 wdk struct mips_voldir *vdp = vhp->vh_voldir; 317 1.1 wdk int i; 318 1.1 wdk 319 1.1 wdk for (i=0; i<MIPS_NVOLDIR; i++, vdp++) { 320 1.1 wdk if (strcmp(vdp->vd_name, file) == 0) 321 1.1 wdk return vdp; 322 1.1 wdk } 323 1.1 wdk if (create) { 324 1.1 wdk vdp = vhp->vh_voldir; 325 1.1 wdk for (i=0; i<MIPS_NVOLDIR; i++, vdp++) 326 1.1 wdk if (vdp->vd_len == 0) 327 1.1 wdk return vdp; 328 1.1 wdk } 329 1.1 wdk return NULL; 330 1.1 wdk } 331