Home | History | Annotate | Line # | Download | only in common
fileload.c revision 1.1.4.2
      1  1.1.4.2  elad /*	$NetBSD: fileload.c,v 1.1.4.2 2006/04/19 02:33:05 elad Exp $	*/
      2  1.1.4.2  elad 
      3  1.1.4.2  elad /*-
      4  1.1.4.2  elad  * Copyright (c) 1998 Michael Smith <msmith (at) freebsd.org>
      5  1.1.4.2  elad  * All rights reserved.
      6  1.1.4.2  elad  *
      7  1.1.4.2  elad  * Redistribution and use in source and binary forms, with or without
      8  1.1.4.2  elad  * modification, are permitted provided that the following conditions
      9  1.1.4.2  elad  * are met:
     10  1.1.4.2  elad  * 1. Redistributions of source code must retain the above copyright
     11  1.1.4.2  elad  *    notice, this list of conditions and the following disclaimer.
     12  1.1.4.2  elad  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1.4.2  elad  *    notice, this list of conditions and the following disclaimer in the
     14  1.1.4.2  elad  *    documentation and/or other materials provided with the distribution.
     15  1.1.4.2  elad  *
     16  1.1.4.2  elad  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.1.4.2  elad  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.1.4.2  elad  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.1.4.2  elad  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.1.4.2  elad  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.1.4.2  elad  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.1.4.2  elad  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1.4.2  elad  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.1.4.2  elad  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1.4.2  elad  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1.4.2  elad  * SUCH DAMAGE.
     27  1.1.4.2  elad  */
     28  1.1.4.2  elad 
     29  1.1.4.2  elad #include <sys/cdefs.h>
     30  1.1.4.2  elad 
     31  1.1.4.2  elad /*
     32  1.1.4.2  elad  * file/module function dispatcher, support, etc.
     33  1.1.4.2  elad  */
     34  1.1.4.2  elad 
     35  1.1.4.2  elad #include <lib/libsa/stand.h>
     36  1.1.4.2  elad #include <sys/param.h>
     37  1.1.4.2  elad #include <sys/lkm.h>
     38  1.1.4.2  elad #include <sys/queue.h>
     39  1.1.4.2  elad 
     40  1.1.4.2  elad #include "bootstrap.h"
     41  1.1.4.2  elad 
     42  1.1.4.2  elad static int			file_load(char *filename, vaddr_t dest, struct preloaded_file **result);
     43  1.1.4.2  elad static int			file_havepath(const char *name);
     44  1.1.4.2  elad static void			file_insert_tail(struct preloaded_file *mp);
     45  1.1.4.2  elad 
     46  1.1.4.2  elad /* load address should be tweaked by first module loaded (kernel) */
     47  1.1.4.2  elad static vaddr_t	loadaddr = 0;
     48  1.1.4.2  elad 
     49  1.1.4.2  elad struct preloaded_file *preloaded_files = NULL;
     50  1.1.4.2  elad 
     51  1.1.4.2  elad /*
     52  1.1.4.2  elad  * load a kernel from disk.
     53  1.1.4.2  elad  *
     54  1.1.4.2  elad  * kernels are loaded as:
     55  1.1.4.2  elad  *
     56  1.1.4.2  elad  * load <path> <options>
     57  1.1.4.2  elad  */
     58  1.1.4.2  elad 
     59  1.1.4.2  elad int
     60  1.1.4.2  elad command_load(int argc, char *argv[])
     61  1.1.4.2  elad {
     62  1.1.4.2  elad     char	*typestr;
     63  1.1.4.2  elad     int		dofile, dokld, ch, error;
     64  1.1.4.2  elad 
     65  1.1.4.2  elad     dokld = dofile = 0;
     66  1.1.4.2  elad     optind = 1;
     67  1.1.4.2  elad     optreset = 1;
     68  1.1.4.2  elad     typestr = NULL;
     69  1.1.4.2  elad     if (argc == 1) {
     70  1.1.4.2  elad 	command_errmsg = "no filename specified";
     71  1.1.4.2  elad 	return(CMD_ERROR);
     72  1.1.4.2  elad     }
     73  1.1.4.2  elad     while ((ch = getopt(argc, argv, "k:")) != -1) {
     74  1.1.4.2  elad 	switch(ch) {
     75  1.1.4.2  elad 	case 'k':
     76  1.1.4.2  elad 	    dokld = 1;
     77  1.1.4.2  elad 	    break;
     78  1.1.4.2  elad 	case '?':
     79  1.1.4.2  elad 	default:
     80  1.1.4.2  elad 	    /* getopt has already reported an error */
     81  1.1.4.2  elad 	    return(CMD_OK);
     82  1.1.4.2  elad 	}
     83  1.1.4.2  elad     }
     84  1.1.4.2  elad     argv += (optind - 1);
     85  1.1.4.2  elad     argc -= (optind - 1);
     86  1.1.4.2  elad 
     87  1.1.4.2  elad     /*
     88  1.1.4.2  elad      * Do we have explicit KLD load ?
     89  1.1.4.2  elad      */
     90  1.1.4.2  elad     if (dokld || file_havepath(argv[1])) {
     91  1.1.4.2  elad 	error = file_loadkernel(argv[1], argc - 2, argv + 2);
     92  1.1.4.2  elad 	if (error == EEXIST)
     93  1.1.4.2  elad 	    sprintf(command_errbuf, "warning: KLD '%s' already loaded", argv[1]);
     94  1.1.4.2  elad     }
     95  1.1.4.2  elad     return (error == 0 ? CMD_OK : CMD_ERROR);
     96  1.1.4.2  elad }
     97  1.1.4.2  elad 
     98  1.1.4.2  elad 
     99  1.1.4.2  elad int
    100  1.1.4.2  elad command_unload(int argc, char *argv[])
    101  1.1.4.2  elad {
    102  1.1.4.2  elad     struct preloaded_file	*fp;
    103  1.1.4.2  elad 
    104  1.1.4.2  elad     while (preloaded_files != NULL) {
    105  1.1.4.2  elad 	fp = preloaded_files;
    106  1.1.4.2  elad 	preloaded_files = preloaded_files->f_next;
    107  1.1.4.2  elad 	file_discard(fp);
    108  1.1.4.2  elad     }
    109  1.1.4.2  elad     loadaddr = 0;
    110  1.1.4.2  elad     unsetenv("kernelname");
    111  1.1.4.2  elad     return(CMD_OK);
    112  1.1.4.2  elad }
    113  1.1.4.2  elad 
    114  1.1.4.2  elad 
    115  1.1.4.2  elad int
    116  1.1.4.2  elad command_lskern(int argc, char *argv[])
    117  1.1.4.2  elad {
    118  1.1.4.2  elad     struct preloaded_file	*fp;
    119  1.1.4.2  elad     char			lbuf[80];
    120  1.1.4.2  elad     int				ch, verbose;
    121  1.1.4.2  elad 
    122  1.1.4.2  elad     verbose = 0;
    123  1.1.4.2  elad     optind = 1;
    124  1.1.4.2  elad     optreset = 1;
    125  1.1.4.2  elad 
    126  1.1.4.2  elad     pager_open();
    127  1.1.4.2  elad     for (fp = preloaded_files; fp; fp = fp->f_next) {
    128  1.1.4.2  elad 	sprintf(lbuf, " %p: %s (%s, 0x%lx)\n",
    129  1.1.4.2  elad 		(void *) fp->f_addr, fp->f_name, fp->f_type, (long) fp->f_size);
    130  1.1.4.2  elad 	pager_output(lbuf);
    131  1.1.4.2  elad 	if (fp->f_args != NULL) {
    132  1.1.4.2  elad 	    pager_output("    args: ");
    133  1.1.4.2  elad 	    pager_output(fp->f_args);
    134  1.1.4.2  elad 	    pager_output("\n");
    135  1.1.4.2  elad 	}
    136  1.1.4.2  elad     }
    137  1.1.4.2  elad     pager_close();
    138  1.1.4.2  elad     return(CMD_OK);
    139  1.1.4.2  elad }
    140  1.1.4.2  elad 
    141  1.1.4.2  elad /*
    142  1.1.4.2  elad  * File level interface, functions file_*
    143  1.1.4.2  elad  */
    144  1.1.4.2  elad int
    145  1.1.4.2  elad file_load(char *filename, vaddr_t dest, struct preloaded_file **result)
    146  1.1.4.2  elad {
    147  1.1.4.2  elad     struct preloaded_file *fp;
    148  1.1.4.2  elad     int error;
    149  1.1.4.2  elad     int i;
    150  1.1.4.2  elad 
    151  1.1.4.2  elad     error = EFTYPE;
    152  1.1.4.2  elad     for (i = 0, fp = NULL; file_formats[i] && fp == NULL; i++) {
    153  1.1.4.2  elad 	error = (file_formats[i]->l_load)(filename, dest, &fp);
    154  1.1.4.2  elad 	if (error == 0) {
    155  1.1.4.2  elad 	    fp->f_loader = i;		/* remember the loader */
    156  1.1.4.2  elad 	    *result = fp;
    157  1.1.4.2  elad 	    break;
    158  1.1.4.2  elad 	}
    159  1.1.4.2  elad 	if (error == EFTYPE)
    160  1.1.4.2  elad 	    continue;		/* Unknown to this handler? */
    161  1.1.4.2  elad 	if (error) {
    162  1.1.4.2  elad 	    sprintf(command_errbuf, "can't load file '%s': %s",
    163  1.1.4.2  elad 		filename, strerror(error));
    164  1.1.4.2  elad 	    break;
    165  1.1.4.2  elad 	}
    166  1.1.4.2  elad     }
    167  1.1.4.2  elad     return (error);
    168  1.1.4.2  elad }
    169  1.1.4.2  elad 
    170  1.1.4.2  elad /*
    171  1.1.4.2  elad  * Load specified KLD. If path is omitted, then try to locate it via
    172  1.1.4.2  elad  * search path.
    173  1.1.4.2  elad  */
    174  1.1.4.2  elad int
    175  1.1.4.2  elad file_loadkernel(char *filename, int argc, char *argv[])
    176  1.1.4.2  elad {
    177  1.1.4.2  elad     struct preloaded_file	*fp, *last_file;
    178  1.1.4.2  elad     int				err;
    179  1.1.4.2  elad 
    180  1.1.4.2  elad     /*
    181  1.1.4.2  elad      * Check if KLD already loaded
    182  1.1.4.2  elad      */
    183  1.1.4.2  elad     fp = file_findfile(filename, NULL);
    184  1.1.4.2  elad     if (fp) {
    185  1.1.4.2  elad 	sprintf(command_errbuf, "warning: KLD '%s' already loaded", filename);
    186  1.1.4.2  elad 	free(filename);
    187  1.1.4.2  elad 	return (0);
    188  1.1.4.2  elad     }
    189  1.1.4.2  elad     for (last_file = preloaded_files;
    190  1.1.4.2  elad 	 last_file != NULL && last_file->f_next != NULL;
    191  1.1.4.2  elad 	 last_file = last_file->f_next)
    192  1.1.4.2  elad 	;
    193  1.1.4.2  elad 
    194  1.1.4.2  elad     do {
    195  1.1.4.2  elad 	err = file_load(filename, loadaddr, &fp);
    196  1.1.4.2  elad 	if (err)
    197  1.1.4.2  elad 	    break;
    198  1.1.4.2  elad 	fp->f_args = unargv(argc, argv);
    199  1.1.4.2  elad 	loadaddr = fp->f_addr + fp->f_size;
    200  1.1.4.2  elad 	file_insert_tail(fp);		/* Add to the list of loaded files */
    201  1.1.4.2  elad     } while(0);
    202  1.1.4.2  elad     if (err == EFTYPE)
    203  1.1.4.2  elad 	sprintf(command_errbuf, "don't know how to load module '%s'", filename);
    204  1.1.4.2  elad     if (err && fp)
    205  1.1.4.2  elad 	file_discard(fp);
    206  1.1.4.2  elad     free(filename);
    207  1.1.4.2  elad     return (err);
    208  1.1.4.2  elad }
    209  1.1.4.2  elad 
    210  1.1.4.2  elad /*
    211  1.1.4.2  elad  * Find a file matching (name) and (type).
    212  1.1.4.2  elad  * NULL may be passed as a wildcard to either.
    213  1.1.4.2  elad  */
    214  1.1.4.2  elad struct preloaded_file *
    215  1.1.4.2  elad file_findfile(char *name, char *type)
    216  1.1.4.2  elad {
    217  1.1.4.2  elad     struct preloaded_file *fp;
    218  1.1.4.2  elad 
    219  1.1.4.2  elad     for (fp = preloaded_files; fp != NULL; fp = fp->f_next) {
    220  1.1.4.2  elad 	if (((name == NULL) || !strcmp(name, fp->f_name)) &&
    221  1.1.4.2  elad 	    ((type == NULL) || !strcmp(type, fp->f_type)))
    222  1.1.4.2  elad 	    break;
    223  1.1.4.2  elad     }
    224  1.1.4.2  elad     return (fp);
    225  1.1.4.2  elad }
    226  1.1.4.2  elad 
    227  1.1.4.2  elad /*
    228  1.1.4.2  elad  * Check if file name have any qualifiers
    229  1.1.4.2  elad  */
    230  1.1.4.2  elad static int
    231  1.1.4.2  elad file_havepath(const char *name)
    232  1.1.4.2  elad {
    233  1.1.4.2  elad     const char		*cp;
    234  1.1.4.2  elad 
    235  1.1.4.2  elad     archsw.arch_getdev(NULL, name, &cp);
    236  1.1.4.2  elad     return (cp != name || strchr(name, '/') != NULL);
    237  1.1.4.2  elad }
    238  1.1.4.2  elad 
    239  1.1.4.2  elad /*
    240  1.1.4.2  elad  * Throw a file away
    241  1.1.4.2  elad  */
    242  1.1.4.2  elad void
    243  1.1.4.2  elad file_discard(struct preloaded_file *fp)
    244  1.1.4.2  elad {
    245  1.1.4.2  elad     if (fp == NULL)
    246  1.1.4.2  elad 	return;
    247  1.1.4.2  elad     if (fp->f_name != NULL)
    248  1.1.4.2  elad 	free(fp->f_name);
    249  1.1.4.2  elad     if (fp->f_type != NULL)
    250  1.1.4.2  elad         free(fp->f_type);
    251  1.1.4.2  elad     if (fp->f_args != NULL)
    252  1.1.4.2  elad         free(fp->f_args);
    253  1.1.4.2  elad     if (fp->marks != NULL)
    254  1.1.4.2  elad 	free(fp->marks);
    255  1.1.4.2  elad     free(fp);
    256  1.1.4.2  elad }
    257  1.1.4.2  elad 
    258  1.1.4.2  elad /*
    259  1.1.4.2  elad  * Allocate a new file; must be used instead of malloc()
    260  1.1.4.2  elad  * to ensure safe initialisation.
    261  1.1.4.2  elad  */
    262  1.1.4.2  elad struct preloaded_file *
    263  1.1.4.2  elad file_alloc(void)
    264  1.1.4.2  elad {
    265  1.1.4.2  elad     struct preloaded_file	*fp;
    266  1.1.4.2  elad 
    267  1.1.4.2  elad     if ((fp = alloc(sizeof(struct preloaded_file))) != NULL) {
    268  1.1.4.2  elad 	bzero(fp, sizeof(struct preloaded_file));
    269  1.1.4.2  elad 
    270  1.1.4.2  elad 	if (fp->marks = alloc(sizeof(u_long))) {
    271  1.1.4.2  elad 		bzero(fp->marks, sizeof(u_long));
    272  1.1.4.2  elad 	}
    273  1.1.4.2  elad     }
    274  1.1.4.2  elad     return (fp);
    275  1.1.4.2  elad }
    276  1.1.4.2  elad 
    277  1.1.4.2  elad /*
    278  1.1.4.2  elad  * Add a module to the chain
    279  1.1.4.2  elad  */
    280  1.1.4.2  elad static void
    281  1.1.4.2  elad file_insert_tail(struct preloaded_file *fp)
    282  1.1.4.2  elad {
    283  1.1.4.2  elad     struct preloaded_file	*cm;
    284  1.1.4.2  elad 
    285  1.1.4.2  elad     /* Append to list of loaded file */
    286  1.1.4.2  elad     fp->f_next = NULL;
    287  1.1.4.2  elad     if (preloaded_files == NULL) {
    288  1.1.4.2  elad 	preloaded_files = fp;
    289  1.1.4.2  elad     } else {
    290  1.1.4.2  elad 	for (cm = preloaded_files; cm->f_next != NULL; cm = cm->f_next)
    291  1.1.4.2  elad 	    ;
    292  1.1.4.2  elad 	cm->f_next = fp;
    293  1.1.4.2  elad     }
    294  1.1.4.2  elad }
    295  1.1.4.2  elad 
    296