Home | History | Annotate | Line # | Download | only in mopcopy
mopcopy.c revision 1.2
      1 /*	$NetBSD: mopcopy.c,v 1.2 2002/11/05 04:54:26 thorpej Exp $	*/
      2 
      3 /* mopcopy - Convert a Unix format kernel into something that
      4  * can be transfered via MOP.
      5  *
      6  * This code was written while refering to the NetBSD/vax boot
      7  * loader. Therefore anything that can be booted by the Vax
      8  * should be convertable with this program.
      9  *
     10  * If necessary, the a.out header is stripped, and the program
     11  * segments are padded out. The BSS segment is zero filled.
     12  * A header is prepended that looks like an IHD header. In
     13  * particular the Unix mahine ID is placed where mopd expects
     14  * the image type to be (offset is IHD_W_ALIAS). If the machine
     15  * ID could be mistaken for a DEC image type, then the conversion
     16  * is aborted. The original a.out header is copied into the front
     17  * of the header so that once we have detected the Unix machine
     18  * ID we can haul the load address and the xfer address out.
     19  */
     20 
     21 /*
     22  * Copyright (c) 1996 Lloyd Parkes.  All rights reserved.
     23  *
     24  * Redistribution and use in source and binary forms, with or without
     25  * modification, are permitted provided that the following conditions
     26  * are met:
     27  * 1. Redistributions of source code must retain the above copyright
     28  *    notice, this list of conditions and the following disclaimer.
     29  * 2. Redistributions in binary form must reproduce the above copyright
     30  *    notice, this list of conditions and the following disclaimer in the
     31  *    documentation and/or other materials provided with the distribution.
     32  * 3. All advertising materials mentioning features or use of this software
     33  *    must display the following acknowledgement:
     34  *	This product includes software developed by Lloyd Parkes.
     35  * 4. The name of the author may not be used to endorse or promote products
     36  *    derived from this software without specific prior written permission.
     37  *
     38  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     39  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     40  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     41  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     42  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     43  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     44  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     45  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     46  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     47  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     48  */
     49 
     50 #include <sys/cdefs.h>
     51 #ifndef lint
     52 __RCSID("$NetBSD: mopcopy.c,v 1.2 2002/11/05 04:54:26 thorpej Exp $");
     53 #endif
     54 
     55 #include "os.h"
     56 #include "common.h"
     57 #include "mopdef.h"
     58 #include "file.h"
     59 #if defined(__NetBSD__) || defined(__OpenBSD__)
     60 #include <sys/exec_aout.h>
     61 #endif
     62 #if defined(__FreeBSD__)
     63 #include <sys/imgact_aout.h>
     64 #endif
     65 #if defined(__bsdi__)
     66 #include <a.out.h>
     67 #define NOAOUT
     68 #endif
     69 #if !defined(MID_VAX)
     70 #define MID_VAX 140
     71 #endif
     72 
     73 #ifndef NOELF
     74 # if defined(__NetBSD__)
     75 #  include <sys/exec_elf.h>
     76 # else
     77 #  define NOELF
     78 # endif
     79 # if !defined(EM_VAX)
     80 #  define EM_VAX 75
     81 # endif
     82 #endif /* NOELF */
     83 
     84 u_char header[512];		/* The VAX header we generate is 1 block. */
     85 struct exec ex, ex_swap;
     86 
     87 int
     88 main (int argc, char **argv)
     89 {
     90 	FILE   *out;		/* A FILE because that is easier. */
     91 	int	i, j;
     92 	struct dllist dl;
     93 
     94 	if (argc != 3) {
     95 		fprintf (stderr, "usage: %s kernel-in sys-out\n",
     96 		    getprogname());
     97 		return (1);
     98 	}
     99 
    100 	dl.ldfd = open (argv[1], O_RDONLY);
    101 	if (dl.ldfd == -1)
    102 		err(2, "open `%s'", argv[1]);
    103 
    104 	if (GetFileInfo(&dl) == -1)
    105 		errx(3, "`%s' is an unknown file type", argv[1]);
    106 
    107 	switch (dl.image_type) {
    108 	case IMAGE_TYPE_MOP:
    109 		errx(3, "`%s' is already a MOP image", argv[1]);
    110 		break;
    111 
    112 #ifndef NOELF
    113 	case IMAGE_TYPE_ELF32:
    114 		if (dl.e_machine != EM_VAX)
    115 			printf("WARNING: `%s' is not a VAX image "
    116 			    "(machine=%d)\n", argv[1], dl.e_machine);
    117 		for (i = 0, j = 0; j < dl.e_nsec; j++)
    118 			i += dl.e_sections[j].s_fsize + dl.e_sections[j].s_pad;
    119 		break;
    120 #endif
    121 
    122 #ifndef NOAOUT
    123 	case IMAGE_TYPE_AOUT:
    124 		if (dl.a_mid != MID_VAX)
    125 			printf("WARNING: `%s' is not a VAX image (mid=%d)\n",
    126 			    argv[1], dl.a_mid);
    127 		i = dl.a_text + dl.a_text_fill + dl.a_data + dl.a_data_fill +
    128 		    dl.a_bss  + dl.a_bss_fill;
    129 		break;
    130 #endif
    131 
    132 	default:
    133 		errx(3, "Image type `%s' not supported",
    134 		    FileTypeName(dl.image_type));
    135 	}
    136 
    137 	i = (i+1) / 512;
    138 
    139 	dl.nloadaddr = dl.loadaddr;
    140 	dl.lseek     = lseek(dl.ldfd,0L,SEEK_CUR);
    141 	dl.a_lseek   = 0;
    142 	dl.count     = 0;
    143 	dl.dl_bsz    = 512;
    144 
    145 	mopFilePutLX(header,IHD_W_SIZE,0xd4,2);   /* Offset to ISD section. */
    146 	mopFilePutLX(header,IHD_W_ACTIVOFF,0x30,2);/* Offset to 1st section.*/
    147 	mopFilePutLX(header,IHD_W_ALIAS,IHD_C_NATIVE,2);/* It's a VAX image.*/
    148 	mopFilePutLX(header,IHD_B_HDRBLKCNT,1,1); /* Only one header block. */
    149 	mopFilePutLX(header,0x30+IHA_L_TFRADR1,dl.xferaddr,4); /* Xfer Addr */
    150 	mopFilePutLX(header,0xd4+ISD_W_PAGCNT,i,2);/* Imagesize in blks.*/
    151 
    152 	out = fopen (argv[2], "w");
    153 	if (!out)
    154 		err(2, "writing `%s'", argv[2]);
    155 
    156 	/* Now we do the actual work. Write VAX MOP-image header */
    157 
    158 	fwrite (header, sizeof (header), 1, out);
    159 
    160 	switch (dl.image_type) {
    161 	case IMAGE_TYPE_MOP:
    162 		abort();
    163 
    164 	case IMAGE_TYPE_ELF32:
    165 #ifdef NOELF
    166 		abort();
    167 #else
    168 		fprintf(stderr, "copying ");
    169 		for (j = 0; j < dl.e_nsec; j++)
    170 			fprintf(stderr, "%s%u+%u", j == 0 ? "" : "+",
    171 			    dl.e_sections[j].s_fsize,
    172 			    dl.e_sections[j].s_pad);
    173 		fprintf(stderr, "->0x%x\n", dl.xferaddr);
    174 #endif
    175 		break;
    176 
    177 	case IMAGE_TYPE_AOUT:
    178 #ifdef NOAOUT
    179 		abort();
    180 #else
    181 		fprintf(stderr, "copying %u+%u+%u->0x%x\n", dl.a_text,
    182 		    dl.a_data, dl.a_bss, dl.xferaddr);
    183 #endif
    184 		break;
    185 	}
    186 
    187 	while ((i = mopFileRead(&dl,header)) > 0) {
    188 		(void)fwrite(header, i, 1, out);
    189 	}
    190 
    191 	fclose (out);
    192 	return (0);
    193 }
    194