Home | History | Annotate | Line # | Download | only in kern
kern_ksyms.c revision 1.33.22.1
      1        1.1     ragge /*
      2        1.1     ragge  * Copyright (c) 2001, 2003 Anders Magnusson (ragge (at) ludd.luth.se).
      3        1.1     ragge  * All rights reserved.
      4        1.1     ragge  *
      5        1.1     ragge  * Redistribution and use in source and binary forms, with or without
      6        1.1     ragge  * modification, are permitted provided that the following conditions
      7        1.1     ragge  * are met:
      8        1.1     ragge  * 1. Redistributions of source code must retain the above copyright
      9        1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     10        1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     11        1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     12        1.1     ragge  *    documentation and/or other materials provided with the distribution.
     13        1.1     ragge  * 3. The name of the author may not be used to endorse or promote products
     14        1.1     ragge  *    derived from this software without specific prior written permission
     15        1.1     ragge  *
     16        1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17        1.1     ragge  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18        1.1     ragge  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19        1.1     ragge  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20        1.1     ragge  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21        1.1     ragge  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22        1.1     ragge  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23        1.1     ragge  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24        1.1     ragge  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25        1.1     ragge  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26        1.1     ragge  */
     27        1.1     ragge 
     28        1.1     ragge /*
     29        1.1     ragge  * Code to deal with in-kernel symbol table management + /dev/ksyms.
     30        1.1     ragge  *
     31        1.1     ragge  * For each loaded module the symbol table info is kept track of by a
     32        1.1     ragge  * struct, placed in a circular list. The first entry is the kernel
     33        1.1     ragge  * symbol table.
     34        1.1     ragge  */
     35        1.1     ragge 
     36        1.1     ragge /*
     37        1.1     ragge  * TODO:
     38        1.1     ragge  *	Change the ugly way of adding new symbols (comes with linker)
     39        1.1     ragge  *	Add kernel locking stuff.
     40        1.1     ragge  *	(Ev) add support for poll.
     41        1.1     ragge  *	(Ev) fix support for mmap.
     42        1.1     ragge  *
     43        1.1     ragge  *	Export ksyms internal logic for use in post-mortem debuggers?
     44        1.1     ragge  *	  Need to move struct symtab to ksyms.h for that.
     45        1.1     ragge  */
     46       1.11  jdolecek 
     47       1.11  jdolecek #include <sys/cdefs.h>
     48  1.33.22.1    bouyer __KERNEL_RCSID(0, "$NetBSD: kern_ksyms.c,v 1.33.22.1 2008/01/08 22:11:33 bouyer Exp $");
     49        1.1     ragge 
     50        1.1     ragge #ifdef _KERNEL
     51        1.1     ragge #include "opt_ddb.h"
     52        1.3     ragge #include "opt_ddbparam.h"	/* for SYMTAB_SPACE */
     53        1.1     ragge #endif
     54        1.1     ragge 
     55        1.1     ragge #include <sys/param.h>
     56        1.1     ragge #include <sys/errno.h>
     57        1.1     ragge #include <sys/queue.h>
     58        1.1     ragge #include <sys/exec.h>
     59        1.1     ragge #include <sys/systm.h>
     60        1.1     ragge #include <sys/conf.h>
     61        1.1     ragge #include <sys/device.h>
     62        1.1     ragge #include <sys/malloc.h>
     63        1.1     ragge #include <sys/proc.h>
     64        1.1     ragge 
     65        1.1     ragge #include <machine/elf_machdep.h> /* XXX */
     66        1.1     ragge #define ELFSIZE ARCH_ELFSIZE
     67        1.1     ragge 
     68        1.1     ragge #include <sys/exec_elf.h>
     69        1.1     ragge #include <sys/ksyms.h>
     70        1.1     ragge 
     71        1.1     ragge #include <lib/libkern/libkern.h>
     72        1.1     ragge 
     73        1.1     ragge #ifdef DDB
     74        1.1     ragge #include <ddb/db_output.h>
     75        1.1     ragge #endif
     76        1.1     ragge 
     77        1.1     ragge #include "ksyms.h"
     78        1.1     ragge 
     79        1.1     ragge static int ksymsinited = 0;
     80        1.1     ragge 
     81        1.1     ragge #if NKSYMS
     82       1.32  christos static void ksyms_hdr_init(void *hdraddr);
     83        1.1     ragge static void ksyms_sizes_calc(void);
     84        1.1     ragge static int ksyms_isopen;
     85        1.5     ragge static int ksyms_maxlen;
     86        1.1     ragge #endif
     87        1.1     ragge 
     88        1.1     ragge #ifdef KSYMS_DEBUG
     89        1.1     ragge #define	FOLLOW_CALLS		1
     90        1.1     ragge #define	FOLLOW_MORE_CALLS	2
     91        1.1     ragge #define	FOLLOW_DEVKSYMS		4
     92        1.1     ragge static int ksyms_debug;
     93        1.1     ragge #endif
     94        1.1     ragge 
     95        1.3     ragge #ifdef SYMTAB_SPACE
     96        1.3     ragge #define		SYMTAB_FILLER	"|This is the symbol table!"
     97        1.3     ragge 
     98        1.3     ragge char		db_symtab[SYMTAB_SPACE] = SYMTAB_FILLER;
     99        1.3     ragge int		db_symtabsize = SYMTAB_SPACE;
    100        1.3     ragge #endif
    101        1.1     ragge 
    102        1.1     ragge /*
    103        1.1     ragge  * Store the different symbol tables in a double-linked list.
    104        1.1     ragge  */
    105        1.1     ragge struct symtab {
    106        1.1     ragge 	CIRCLEQ_ENTRY(symtab) sd_queue;
    107        1.9  jdolecek 	const char *sd_name;	/* Name of this table */
    108        1.1     ragge 	Elf_Sym *sd_symstart;	/* Address of symbol table */
    109       1.32  christos 	char *sd_strstart;	/* Address of corresponding string table */
    110       1.17      cube 	int sd_usroffset;	/* Real address for userspace */
    111        1.1     ragge 	int sd_symsize;		/* Size in bytes of symbol table */
    112        1.1     ragge 	int sd_strsize;		/* Size of string table */
    113        1.1     ragge 	int *sd_symnmoff;	/* Used when calculating the name offset */
    114        1.1     ragge };
    115        1.1     ragge 
    116        1.1     ragge static CIRCLEQ_HEAD(, symtab) symtab_queue =
    117        1.1     ragge     CIRCLEQ_HEAD_INITIALIZER(symtab_queue);
    118        1.1     ragge 
    119        1.1     ragge static struct symtab kernel_symtab;
    120        1.1     ragge 
    121        1.8     ragge #define	USE_PTREE
    122        1.8     ragge #ifdef USE_PTREE
    123        1.8     ragge /*
    124        1.8     ragge  * Patricia-tree-based lookup structure for the in-kernel global symbols.
    125        1.8     ragge  * Based on a design by Mikael Sundstrom, msm (at) sm.luth.se.
    126        1.8     ragge  */
    127        1.8     ragge struct ptree {
    128        1.8     ragge 	int16_t bitno;
    129        1.8     ragge 	int16_t lr[2];
    130        1.8     ragge } *symb;
    131        1.8     ragge static int16_t baseidx;
    132        1.8     ragge static int treex = 1;
    133        1.8     ragge 
    134        1.8     ragge #define	P_BIT(key, bit) ((key[bit >> 3] >> (bit & 7)) & 1)
    135       1.32  christos #define	STRING(idx) (kernel_symtab.sd_symstart[idx].st_name + \
    136       1.32  christos 			kernel_symtab.sd_strstart)
    137        1.8     ragge 
    138       1.33  christos static int
    139       1.33  christos ksyms_verify(void *symstart, void *strstart)
    140       1.33  christos {
    141       1.33  christos #if defined(DIAGNOSTIC) || defined(DEBUG)
    142       1.33  christos 	if (symstart == NULL)
    143       1.33  christos 		printf("ksyms: Symbol table not found\n");
    144       1.33  christos 	if (strstart == NULL)
    145       1.33  christos 		printf("ksyms: String table not found\n");
    146       1.33  christos 	if (symstart == NULL || strstart == NULL)
    147       1.33  christos 		printf("ksyms: Perhaps the kernel is stripped?\n");
    148       1.33  christos #endif
    149       1.33  christos 	if (symstart == NULL || strstart == NULL)
    150       1.33  christos 		return 0;
    151       1.33  christos 	KASSERT(symstart <= strstart);
    152       1.33  christos 	return 1;
    153       1.33  christos }
    154       1.33  christos 
    155        1.8     ragge /*
    156        1.8     ragge  * Walk down the tree until a terminal node is found.
    157        1.8     ragge  */
    158        1.8     ragge static int
    159       1.24  christos symbol_traverse(const char *key)
    160        1.8     ragge {
    161        1.8     ragge 	int16_t nb, rbit = baseidx;
    162        1.8     ragge 
    163        1.8     ragge 	while (rbit > 0) {
    164        1.8     ragge 		nb = symb[rbit].bitno;
    165        1.8     ragge 		rbit = symb[rbit].lr[P_BIT(key, nb)];
    166        1.8     ragge 	}
    167        1.8     ragge 	return -rbit;
    168        1.8     ragge }
    169        1.8     ragge 
    170        1.8     ragge static int
    171        1.8     ragge ptree_add(char *key, int val)
    172        1.8     ragge {
    173        1.8     ragge 	int idx;
    174       1.15  christos 	int nix, cix, bit, rbit, sb, lastrbit, svbit = 0, ix;
    175        1.8     ragge 	char *m, *k;
    176        1.8     ragge 
    177        1.8     ragge 	if (baseidx == 0) {
    178        1.8     ragge 		baseidx = -val;
    179        1.8     ragge 		return 0; /* First element */
    180        1.8     ragge 	}
    181        1.8     ragge 
    182        1.8     ragge 	/* Get string to match against */
    183        1.8     ragge 	idx = symbol_traverse(key);
    184        1.8     ragge 
    185        1.8     ragge 	/* Find first mismatching bit */
    186        1.8     ragge 	m = STRING(idx);
    187        1.8     ragge 	k = key;
    188        1.8     ragge 	if (strcmp(m, k) == 0)
    189        1.8     ragge 		return 1;
    190        1.8     ragge 
    191        1.8     ragge 	for (cix = 0; *m && *k && *m == *k; m++, k++, cix += 8)
    192        1.8     ragge 		;
    193        1.8     ragge 	ix = ffs((int)*m ^ (int)*k) - 1;
    194        1.8     ragge 	cix += ix;
    195        1.8     ragge 
    196        1.8     ragge 	/* Create new node */
    197        1.8     ragge 	nix = treex++;
    198        1.8     ragge 	bit = P_BIT(key, cix);
    199        1.8     ragge 	symb[nix].bitno = cix;
    200        1.8     ragge 	symb[nix].lr[bit] = -val;
    201        1.8     ragge 
    202        1.8     ragge 	/* Find where to insert node */
    203        1.8     ragge 	rbit = baseidx;
    204        1.8     ragge 	lastrbit = 0;
    205        1.8     ragge 	for (;;) {
    206        1.8     ragge 		if (rbit < 0)
    207        1.8     ragge 			break;
    208        1.8     ragge 		sb = symb[rbit].bitno;
    209        1.8     ragge 		if (sb > cix)
    210        1.8     ragge 			break;
    211        1.8     ragge 		if (sb == cix)
    212        1.8     ragge 			printf("symb[rbit].bitno == cix!!!\n");
    213        1.8     ragge 		lastrbit = rbit;
    214        1.8     ragge 		svbit = P_BIT(key, sb);
    215        1.8     ragge 		rbit = symb[rbit].lr[svbit];
    216        1.8     ragge 	}
    217        1.8     ragge 
    218        1.8     ragge 	/* Do the actual insertion */
    219        1.8     ragge 	if (lastrbit == 0) {
    220        1.8     ragge 		/* first element */
    221        1.8     ragge 		symb[nix].lr[!bit] = baseidx;
    222        1.8     ragge 		baseidx = nix;
    223        1.8     ragge 	} else {
    224        1.8     ragge 		symb[nix].lr[!bit] = rbit;
    225        1.8     ragge 		symb[lastrbit].lr[svbit] = nix;
    226        1.8     ragge 	}
    227        1.8     ragge 	return 0;
    228        1.8     ragge }
    229        1.8     ragge 
    230        1.8     ragge static int
    231       1.24  christos ptree_find(const char *key)
    232        1.8     ragge {
    233        1.8     ragge 	int idx;
    234        1.8     ragge 
    235        1.8     ragge 	if (baseidx == 0)
    236        1.8     ragge 		return 0;
    237        1.8     ragge 	idx = symbol_traverse(key);
    238        1.8     ragge 
    239        1.8     ragge 	if (strcmp(key, STRING(idx)) == 0)
    240        1.8     ragge 		return idx;
    241        1.8     ragge 	return 0;
    242        1.8     ragge }
    243        1.8     ragge 
    244        1.8     ragge static void
    245        1.8     ragge ptree_gen(char *off, struct symtab *tab)
    246        1.8     ragge {
    247        1.8     ragge 	Elf_Sym *sym;
    248       1.16     ragge 	int i, nsym;
    249        1.8     ragge 
    250        1.8     ragge 	if (off != NULL)
    251        1.8     ragge 		symb = (struct ptree *)ALIGN(off);
    252        1.8     ragge 	else
    253        1.8     ragge 		symb = malloc((tab->sd_symsize/sizeof(Elf_Sym)) *
    254        1.8     ragge 		    sizeof(struct ptree), M_DEVBUF, M_WAITOK);
    255        1.8     ragge 	symb--; /* sym index won't be 0 */
    256        1.8     ragge 
    257        1.8     ragge 	sym = tab->sd_symstart;
    258       1.16     ragge 	if ((nsym = tab->sd_symsize/sizeof(Elf_Sym)) > INT16_MAX) {
    259       1.16     ragge 		printf("Too many symbols for tree, skipping %d symbols\n",
    260       1.16     ragge 		    nsym-INT16_MAX);
    261       1.16     ragge 		nsym = INT16_MAX;
    262       1.16     ragge 	}
    263       1.16     ragge 	for (i = 1; i < nsym; i++) {
    264        1.8     ragge 		if (ELF_ST_BIND(sym[i].st_info) != STB_GLOBAL)
    265        1.8     ragge 			continue;
    266        1.8     ragge 		ptree_add(tab->sd_strstart+sym[i].st_name, i);
    267        1.8     ragge 	}
    268        1.8     ragge }
    269       1.25   thorpej #endif /* USE_PTREE */
    270        1.8     ragge 
    271        1.1     ragge /*
    272        1.1     ragge  * Finds a certain symbol name in a certain symbol table.
    273        1.1     ragge  */
    274        1.1     ragge static Elf_Sym *
    275       1.24  christos findsym(const char *name, struct symtab *table)
    276        1.1     ragge {
    277        1.1     ragge 	Elf_Sym *start = table->sd_symstart;
    278        1.1     ragge 	int i, sz = table->sd_symsize/sizeof(Elf_Sym);
    279        1.1     ragge 	char *np;
    280       1.32  christos 	char *realstart = table->sd_strstart - table->sd_usroffset;
    281        1.1     ragge 
    282        1.8     ragge #ifdef USE_PTREE
    283        1.8     ragge 	if (table == &kernel_symtab && (i = ptree_find(name)) != 0)
    284        1.8     ragge 		return &start[i];
    285        1.8     ragge #endif
    286        1.8     ragge 
    287        1.1     ragge 	for (i = 0; i < sz; i++) {
    288       1.17      cube 		np = realstart + start[i].st_name;
    289        1.1     ragge 		if (name[0] == np[0] && name[1] == np[1] &&
    290        1.1     ragge 		    strcmp(name, np) == 0)
    291        1.1     ragge 			return &start[i];
    292        1.1     ragge 	}
    293        1.1     ragge 	return NULL;
    294        1.1     ragge }
    295        1.1     ragge 
    296        1.1     ragge /*
    297        1.1     ragge  * The "attach" is in reality done in ksyms_init().
    298        1.1     ragge  */
    299        1.1     ragge void ksymsattach(int);
    300        1.1     ragge void
    301       1.30      yamt ksymsattach(int arg)
    302        1.1     ragge {
    303        1.8     ragge 
    304        1.8     ragge #ifdef USE_PTREE
    305        1.8     ragge 	if (baseidx == 0)
    306        1.8     ragge 		ptree_gen(0, &kernel_symtab);
    307        1.8     ragge #endif
    308        1.8     ragge 
    309        1.1     ragge }
    310        1.1     ragge 
    311        1.1     ragge /*
    312       1.29      jmmv  * Add a symbol table.
    313       1.29      jmmv  * This is intended for use when the symbol table and its corresponding
    314       1.29      jmmv  * string table are easily available.  If they are embedded in an ELF
    315       1.29      jmmv  * image, use addsymtab_elf() instead.
    316       1.29      jmmv  *
    317       1.29      jmmv  * name - Symbol's table name.
    318       1.29      jmmv  * symstart, symsize - Address and size of the symbol table.
    319       1.29      jmmv  * strstart, strsize - Address and size of the string table.
    320       1.29      jmmv  * tab - Symbol table to be updated with this information.
    321       1.29      jmmv  * newstart - Address to which the symbol table has to be copied during
    322       1.29      jmmv  *            shrinking.  If NULL, it is not moved.
    323        1.1     ragge  */
    324        1.1     ragge static void
    325       1.29      jmmv addsymtab(const char *name,
    326       1.32  christos     void *symstart, size_t symsize,
    327       1.32  christos     void *strstart, size_t strsize,
    328       1.29      jmmv     struct symtab *tab,
    329       1.32  christos     void *newstart)
    330        1.1     ragge {
    331       1.32  christos 	void *send;
    332        1.8     ragge 	Elf_Sym *sym, *nsym;
    333       1.29      jmmv 	int i, n, g;
    334        1.8     ragge 	char *str;
    335        1.1     ragge 
    336       1.29      jmmv 	if (newstart == NULL)
    337       1.29      jmmv 		newstart = symstart;
    338       1.29      jmmv 	KASSERT(newstart <= symstart && symstart <= strstart);
    339       1.29      jmmv 
    340       1.29      jmmv 	tab->sd_symstart = (Elf_Sym *)symstart;
    341       1.29      jmmv 	tab->sd_symsize = symsize;
    342       1.29      jmmv 	tab->sd_strstart = strstart;
    343       1.29      jmmv 	tab->sd_strsize = strsize;
    344        1.1     ragge 	tab->sd_name = name;
    345        1.8     ragge 	send = tab->sd_strstart + tab->sd_strsize;
    346        1.8     ragge 
    347        1.8     ragge #ifdef KSYMS_DEBUG
    348       1.29      jmmv 	printf("newstart %p sym %p symsz %d str %p strsz %d send %p\n",
    349       1.29      jmmv 	    newstart, symstart, symsize, strstart, strsize, send);
    350        1.8     ragge #endif
    351        1.1     ragge 
    352        1.8     ragge 	/*
    353        1.8     ragge 	 * Pack symbol table by removing all file name references
    354        1.8     ragge 	 * and overwrite the elf header.
    355        1.8     ragge 	 */
    356        1.8     ragge 	sym = tab->sd_symstart;
    357       1.29      jmmv 	nsym = (Elf_Sym *)newstart;
    358        1.8     ragge 	str = tab->sd_strstart;
    359        1.8     ragge 	for (g = i = n = 0; i < tab->sd_symsize/sizeof(Elf_Sym); i++) {
    360        1.8     ragge 		if (i == 0) {
    361        1.8     ragge 			nsym[n++] = sym[i];
    362        1.8     ragge 			continue;
    363        1.8     ragge 		}
    364        1.8     ragge 		/*
    365        1.8     ragge 		 * Remove useless symbols.
    366        1.8     ragge 		 * Should actually remove all typeless symbols.
    367        1.8     ragge 		 */
    368        1.5     ragge 		if (sym[i].st_name == 0)
    369        1.8     ragge 			continue; /* Skip nameless entries */
    370  1.33.22.1    bouyer 		if (sym[i].st_shndx == SHN_UNDEF)
    371  1.33.22.1    bouyer 			continue; /* Skip external references */
    372        1.8     ragge 		if (ELF_ST_TYPE(sym[i].st_info) == STT_FILE)
    373        1.8     ragge 			continue; /* Skip filenames */
    374        1.8     ragge 		if (ELF_ST_TYPE(sym[i].st_info) == STT_NOTYPE &&
    375        1.8     ragge 		    sym[i].st_value == 0 &&
    376        1.8     ragge 		    strcmp(str + sym[i].st_name, "*ABS*") == 0)
    377        1.8     ragge 			continue; /* XXX */
    378        1.8     ragge 		if (ELF_ST_TYPE(sym[i].st_info) == STT_NOTYPE &&
    379        1.8     ragge 		    strcmp(str + sym[i].st_name, "gcc2_compiled.") == 0)
    380        1.8     ragge 			continue; /* XXX */
    381        1.8     ragge 
    382        1.8     ragge #ifndef DDB
    383        1.8     ragge 		/* Only need global symbols */
    384        1.8     ragge 		if (ELF_ST_BIND(sym[i].st_info) != STB_GLOBAL)
    385        1.5     ragge 			continue;
    386        1.8     ragge #endif
    387        1.8     ragge 
    388        1.8     ragge 		/* Save symbol. Set it as an absolute offset */
    389        1.8     ragge 		nsym[n] = sym[i];
    390        1.8     ragge 		nsym[n].st_shndx = SHN_ABS;
    391        1.8     ragge 		if (ELF_ST_BIND(nsym[n].st_info) == STB_GLOBAL)
    392        1.8     ragge 			g++;
    393        1.6      tron #if NKSYMS
    394       1.29      jmmv 		{
    395       1.29      jmmv 			int j;
    396       1.29      jmmv 			j = strlen(nsym[n].st_name + tab->sd_strstart) + 1;
    397       1.29      jmmv 			if (j > ksyms_maxlen)
    398       1.29      jmmv 				ksyms_maxlen = j;
    399       1.29      jmmv 		}
    400        1.6      tron #endif
    401        1.8     ragge 		n++;
    402        1.8     ragge 
    403        1.5     ragge 	}
    404        1.8     ragge 	tab->sd_symstart = nsym;
    405        1.8     ragge 	tab->sd_symsize = n * sizeof(Elf_Sym);
    406        1.8     ragge 
    407        1.8     ragge #ifdef notyet
    408        1.8     ragge 	/*
    409        1.8     ragge 	 * Remove left-over strings.
    410        1.8     ragge 	 */
    411        1.8     ragge 	sym = tab->sd_symstart;
    412       1.32  christos 	str = (void *)tab->sd_symstart + tab->sd_symsize;
    413        1.8     ragge 	str[0] = 0;
    414        1.8     ragge 	n = 1;
    415        1.8     ragge 	for (i = 1; i < tab->sd_symsize/sizeof(Elf_Sym); i++) {
    416       1.10    itojun 		strcpy(str + n, tab->sd_strstart + sym[i].st_name);
    417        1.8     ragge 		sym[i].st_name = n;
    418        1.8     ragge 		n += strlen(str+n) + 1;
    419        1.8     ragge 	}
    420        1.8     ragge 	tab->sd_strstart = str;
    421        1.8     ragge 	tab->sd_strsize = n;
    422        1.8     ragge 
    423        1.8     ragge #ifdef KSYMS_DEBUG
    424        1.8     ragge 	printf("str %p strsz %d send %p\n", str, n, send);
    425        1.8     ragge #endif
    426        1.8     ragge #endif
    427        1.1     ragge 
    428        1.1     ragge 	CIRCLEQ_INSERT_HEAD(&symtab_queue, tab, sd_queue);
    429        1.8     ragge 
    430        1.8     ragge #ifdef notyet
    431        1.8     ragge #ifdef USE_PTREE
    432        1.8     ragge 	/* Try to use the freed space, if possible */
    433        1.8     ragge 	if (send - str - n > g * sizeof(struct ptree))
    434        1.8     ragge 		ptree_gen(str + n, tab);
    435        1.8     ragge #endif
    436        1.8     ragge #endif
    437        1.1     ragge }
    438        1.1     ragge 
    439        1.1     ragge /*
    440       1.29      jmmv  * Add a symbol table named name.
    441       1.29      jmmv  * This is intended for use when the kernel loader enters the table.
    442       1.29      jmmv  */
    443       1.29      jmmv static void
    444       1.29      jmmv addsymtab_elf(const char *name, Elf_Ehdr *ehdr, struct symtab *tab)
    445       1.29      jmmv {
    446       1.29      jmmv 	int i, j;
    447       1.32  christos 	char *start = (char *)ehdr;
    448       1.29      jmmv 	Elf_Shdr *shdr;
    449       1.32  christos 	char *symstart = NULL, *strstart = NULL;
    450       1.29      jmmv 	size_t symsize = 0, strsize = 0;
    451       1.29      jmmv 
    452       1.29      jmmv 	/* Find the symbol table and the corresponding string table. */
    453       1.29      jmmv 	shdr = (Elf_Shdr *)(start + ehdr->e_shoff);
    454       1.29      jmmv 	for (i = 1; i < ehdr->e_shnum; i++) {
    455       1.29      jmmv 		if (shdr[i].sh_type != SHT_SYMTAB)
    456       1.29      jmmv 			continue;
    457       1.29      jmmv 		if (shdr[i].sh_offset == 0)
    458       1.29      jmmv 			continue;
    459       1.29      jmmv 		symstart = start + shdr[i].sh_offset;
    460       1.29      jmmv 		symsize = shdr[i].sh_size;
    461       1.29      jmmv 		j = shdr[i].sh_link;
    462       1.29      jmmv 		if (shdr[j].sh_offset == 0)
    463       1.29      jmmv 			continue; /* Can this happen? */
    464       1.29      jmmv 		strstart = start + shdr[j].sh_offset;
    465       1.29      jmmv 		strsize = shdr[j].sh_size;
    466       1.29      jmmv 		break;
    467       1.29      jmmv 	}
    468       1.29      jmmv 
    469       1.33  christos 	if (!ksyms_verify(symstart, strstart))
    470       1.33  christos 		return;
    471       1.29      jmmv 
    472       1.29      jmmv 	addsymtab(name, symstart, symsize, strstart, strsize, tab, start);
    473       1.29      jmmv }
    474       1.29      jmmv 
    475       1.29      jmmv /*
    476        1.1     ragge  * Setup the kernel symbol table stuff.
    477        1.1     ragge  */
    478        1.1     ragge void
    479       1.30      yamt ksyms_init(int symsize, void *start, void *end)
    480        1.1     ragge {
    481        1.3     ragge 	Elf_Ehdr *ehdr;
    482        1.3     ragge 
    483        1.3     ragge #ifdef SYMTAB_SPACE
    484        1.3     ragge 	if (symsize <= 0 &&
    485        1.3     ragge 	    strncmp(db_symtab, SYMTAB_FILLER, sizeof(SYMTAB_FILLER))) {
    486        1.3     ragge 		symsize = db_symtabsize;
    487        1.3     ragge 		start = db_symtab;
    488        1.3     ragge 		end = db_symtab + db_symtabsize;
    489        1.3     ragge 	}
    490        1.3     ragge #endif
    491        1.3     ragge 	if (symsize <= 0) {
    492        1.3     ragge 		printf("[ Kernel symbol table missing! ]\n");
    493        1.3     ragge 		return;
    494        1.3     ragge 	}
    495        1.3     ragge 
    496        1.3     ragge 	/* Sanity check */
    497        1.3     ragge 	if (ALIGNED_POINTER(start, long) == 0) {
    498        1.3     ragge 		printf("[ Kernel symbol table has bad start address %p ]\n",
    499        1.3     ragge 		    start);
    500        1.3     ragge 		return;
    501        1.3     ragge 	}
    502        1.3     ragge 
    503        1.3     ragge 	ehdr = (Elf_Ehdr *)start;
    504        1.1     ragge 
    505        1.1     ragge 	/* check if this is a valid ELF header */
    506        1.1     ragge 	/* No reason to verify arch type, the kernel is actually running! */
    507        1.1     ragge 	if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG) ||
    508        1.1     ragge 	    ehdr->e_ident[EI_CLASS] != ELFCLASS ||
    509        1.1     ragge 	    ehdr->e_version > 1) {
    510        1.3     ragge #ifdef notyet /* DDB */
    511        1.3     ragge 		if (ddb_init(symsize, start, end))
    512        1.3     ragge 			return; /* old-style symbol table */
    513        1.3     ragge #endif
    514        1.3     ragge 		printf("[ Kernel symbol table invalid! ]\n");
    515        1.1     ragge 		return; /* nothing to do */
    516        1.1     ragge 	}
    517        1.1     ragge 
    518        1.8     ragge #if NKSYMS
    519        1.8     ragge 	/* Loaded header will be scratched in addsymtab */
    520        1.8     ragge 	ksyms_hdr_init(start);
    521        1.8     ragge #endif
    522        1.8     ragge 
    523       1.29      jmmv 	addsymtab_elf("netbsd", ehdr, &kernel_symtab);
    524        1.8     ragge 
    525        1.1     ragge #if NKSYMS
    526        1.1     ragge 	ksyms_sizes_calc();
    527        1.1     ragge #endif
    528        1.8     ragge 
    529        1.1     ragge 	ksymsinited = 1;
    530        1.8     ragge 
    531        1.1     ragge #ifdef DEBUG
    532        1.1     ragge 	printf("Loaded initial symtab at %p, strtab at %p, # entries %ld\n",
    533        1.1     ragge 	    kernel_symtab.sd_symstart, kernel_symtab.sd_strstart,
    534        1.2     ragge 	    (long)kernel_symtab.sd_symsize/sizeof(Elf_Sym));
    535        1.1     ragge #endif
    536        1.1     ragge }
    537        1.1     ragge 
    538        1.1     ragge /*
    539       1.29      jmmv  * Setup the kernel symbol table stuff.
    540       1.29      jmmv  * Use this when the address of the symbol and string tables are known;
    541       1.29      jmmv  * otherwise use ksyms_init with an ELF image.
    542       1.31      jmmv  * We need to pass a minimal ELF header which will later be completed by
    543       1.31      jmmv  * ksyms_hdr_init and handed off to userland through /dev/ksyms.  We use
    544       1.32  christos  * a void *rather than a pointer to avoid exposing the Elf_Ehdr type.
    545       1.29      jmmv  */
    546       1.29      jmmv void
    547       1.32  christos ksyms_init_explicit(void *ehdr, void *symstart, size_t symsize,
    548       1.32  christos     void *strstart, size_t strsize)
    549       1.29      jmmv {
    550       1.29      jmmv 
    551       1.33  christos 	if (!ksyms_verify(symstart, strstart))
    552       1.33  christos 		return;
    553       1.29      jmmv 
    554       1.31      jmmv #if NKSYMS
    555       1.31      jmmv 	ksyms_hdr_init(ehdr);
    556       1.31      jmmv #endif
    557       1.31      jmmv 
    558       1.29      jmmv 	addsymtab("netbsd", symstart, symsize, strstart, strsize,
    559       1.29      jmmv 	    &kernel_symtab, NULL);
    560       1.29      jmmv 
    561       1.29      jmmv #if NKSYMS
    562       1.29      jmmv 	ksyms_sizes_calc();
    563       1.29      jmmv #endif
    564       1.29      jmmv 
    565       1.29      jmmv 	ksymsinited = 1;
    566       1.29      jmmv }
    567       1.29      jmmv 
    568       1.29      jmmv /*
    569        1.1     ragge  * Get the value associated with a symbol.
    570       1.23     perry  * "mod" is the module name, or null if any module.
    571        1.1     ragge  * "sym" is the symbol name.
    572        1.1     ragge  * "val" is a pointer to the corresponding value, if call succeeded.
    573        1.1     ragge  * Returns 0 if success or ENOENT if no such entry.
    574        1.1     ragge  */
    575        1.1     ragge int
    576       1.24  christos ksyms_getval(const char *mod, const char *sym, unsigned long *val, int type)
    577        1.1     ragge {
    578        1.1     ragge 	struct symtab *st;
    579        1.1     ragge 	Elf_Sym *es;
    580        1.1     ragge 
    581        1.1     ragge 	if (ksymsinited == 0)
    582        1.1     ragge 		return ENOENT;
    583        1.1     ragge 
    584        1.1     ragge #ifdef KSYMS_DEBUG
    585        1.1     ragge 	if (ksyms_debug & FOLLOW_CALLS)
    586        1.1     ragge 		printf("ksyms_getval: mod %s sym %s valp %p\n", mod, sym, val);
    587        1.1     ragge #endif
    588        1.1     ragge 
    589        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    590        1.1     ragge 		if (mod && strcmp(st->sd_name, mod))
    591        1.1     ragge 			continue;
    592       1.22      cube 		if ((es = findsym(sym, st)) == NULL)
    593        1.1     ragge 			continue;
    594  1.33.22.1    bouyer 		if (es->st_shndx == SHN_UNDEF)
    595  1.33.22.1    bouyer 			continue;
    596        1.1     ragge 
    597        1.1     ragge 		/* Skip if bad binding */
    598        1.1     ragge 		if (type == KSYMS_EXTERN &&
    599        1.1     ragge 		    ELF_ST_BIND(es->st_info) != STB_GLOBAL)
    600        1.1     ragge 			continue;
    601        1.1     ragge 
    602        1.1     ragge 		if (val)
    603        1.1     ragge 			*val = es->st_value;
    604        1.1     ragge 		return 0;
    605        1.1     ragge 	}
    606        1.1     ragge 	return ENOENT;
    607        1.1     ragge }
    608        1.1     ragge 
    609        1.1     ragge /*
    610        1.1     ragge  * Get "mod" and "symbol" associated with an address.
    611        1.1     ragge  * Returns 0 if success or ENOENT if no such entry.
    612        1.1     ragge  */
    613        1.1     ragge int
    614       1.24  christos ksyms_getname(const char **mod, const char **sym, vaddr_t v, int f)
    615        1.1     ragge {
    616        1.1     ragge 	struct symtab *st;
    617        1.1     ragge 	Elf_Sym *les, *es = NULL;
    618        1.1     ragge 	vaddr_t laddr = 0;
    619       1.15  christos 	const char *lmod = NULL;
    620       1.15  christos 	char *stable = NULL;
    621        1.1     ragge 	int type, i, sz;
    622        1.1     ragge 
    623        1.1     ragge 	if (ksymsinited == 0)
    624        1.1     ragge 		return ENOENT;
    625        1.1     ragge 
    626        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    627        1.1     ragge 		sz = st->sd_symsize/sizeof(Elf_Sym);
    628        1.1     ragge 		for (i = 0; i < sz; i++) {
    629        1.1     ragge 			les = st->sd_symstart + i;
    630        1.1     ragge 			type = ELF_ST_TYPE(les->st_info);
    631        1.1     ragge 
    632        1.1     ragge 			if ((f & KSYMS_PROC) && (type != STT_FUNC))
    633        1.1     ragge 				continue;
    634        1.1     ragge 
    635        1.1     ragge 			if (type == STT_NOTYPE)
    636        1.1     ragge 				continue;
    637        1.1     ragge 
    638        1.1     ragge 			if (((f & KSYMS_ANY) == 0) &&
    639        1.1     ragge 			    (type != STT_FUNC) && (type != STT_OBJECT))
    640        1.1     ragge 				continue;
    641        1.1     ragge 
    642        1.1     ragge 			if ((les->st_value <= v) && (les->st_value > laddr)) {
    643        1.1     ragge 				laddr = les->st_value;
    644        1.1     ragge 				es = les;
    645        1.1     ragge 				lmod = st->sd_name;
    646       1.17      cube 				stable = st->sd_strstart - st->sd_usroffset;
    647        1.1     ragge 			}
    648        1.1     ragge 		}
    649        1.1     ragge 	}
    650        1.1     ragge 	if (es == NULL)
    651        1.1     ragge 		return ENOENT;
    652        1.1     ragge 	if ((f & KSYMS_EXACT) && (v != es->st_value))
    653        1.1     ragge 		return ENOENT;
    654        1.1     ragge 	if (mod)
    655        1.1     ragge 		*mod = lmod;
    656        1.1     ragge 	if (sym)
    657        1.1     ragge 		*sym = stable + es->st_name;
    658        1.1     ragge 	return 0;
    659        1.1     ragge }
    660        1.1     ragge 
    661        1.1     ragge #if NKSYMS
    662        1.1     ragge static int symsz, strsz;
    663        1.1     ragge 
    664       1.22      cube /*
    665       1.22      cube  * In case we exposing the symbol table to the userland using the pseudo-
    666       1.22      cube  * device /dev/ksyms, it is easier to provide all the tables as one.
    667       1.22      cube  * However, it means we have to change all the st_name fields for the
    668       1.22      cube  * symbols so they match the ELF image that the userland will read
    669       1.22      cube  * through the device.
    670       1.22      cube  *
    671       1.22      cube  * The actual (correct) value of st_name is preserved through a global
    672       1.22      cube  * offset stored in the symbol table structure.
    673       1.22      cube  */
    674       1.22      cube 
    675        1.1     ragge static void
    676        1.1     ragge ksyms_sizes_calc(void)
    677       1.23     perry {
    678       1.23     perry         struct symtab *st;
    679        1.1     ragge 	int i;
    680        1.1     ragge 
    681        1.1     ragge         symsz = strsz = 0;
    682        1.1     ragge         CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    683        1.1     ragge 		if (st != &kernel_symtab) {
    684        1.1     ragge 			for (i = 0; i < st->sd_symsize/sizeof(Elf_Sym); i++)
    685        1.1     ragge 				st->sd_symstart[i].st_name =
    686        1.1     ragge 				    strsz + st->sd_symnmoff[i];
    687       1.17      cube 			st->sd_usroffset = strsz;
    688        1.1     ragge 		}
    689        1.1     ragge                 symsz += st->sd_symsize;
    690        1.1     ragge                 strsz += st->sd_strsize;
    691       1.17      cube         }
    692        1.1     ragge }
    693       1.25   thorpej #endif /* NKSYMS */
    694        1.1     ragge 
    695        1.1     ragge /*
    696       1.20      matt  * Temporary work structure for dynamic loaded symbol tables.
    697        1.1     ragge  * Will go away when in-kernel linker is in place.
    698        1.1     ragge  */
    699       1.20      matt 
    700       1.20      matt struct syminfo {
    701       1.20      matt 	size_t cursyms;
    702       1.20      matt 	size_t curnamep;
    703       1.20      matt 	size_t maxsyms;
    704       1.20      matt 	size_t maxnamep;
    705       1.20      matt 	Elf_Sym *syms;
    706       1.20      matt 	int *symnmoff;
    707       1.20      matt 	char *symnames;
    708       1.20      matt };
    709       1.23     perry 
    710        1.1     ragge 
    711        1.1     ragge /*
    712        1.1     ragge  * Add a symbol to the temporary save area for symbols.
    713        1.1     ragge  * This routine will go away when the in-kernel linker is in place.
    714        1.1     ragge  */
    715        1.1     ragge static void
    716       1.20      matt addsym(struct syminfo *info, const Elf_Sym *sym, const char *name,
    717       1.20      matt        const char *mod)
    718        1.1     ragge {
    719       1.20      matt 	int len, mlen;
    720        1.1     ragge 
    721        1.1     ragge #ifdef KSYMS_DEBUG
    722        1.1     ragge 	if (ksyms_debug & FOLLOW_MORE_CALLS)
    723        1.1     ragge 		printf("addsym: name %s val %lx\n", name, (long)sym->st_value);
    724        1.1     ragge #endif
    725       1.20      matt 	len = strlen(name) + 1;
    726       1.20      matt 	if (mod)
    727       1.20      matt 		mlen = 1 + strlen(mod);
    728       1.20      matt 	else
    729       1.20      matt 		mlen = 0;
    730       1.23     perry 	if (info->cursyms == info->maxsyms ||
    731       1.20      matt 	    (len + mlen + info->curnamep) > info->maxnamep) {
    732       1.19      matt 		printf("addsym: too many symbols, skipping '%s'\n", name);
    733        1.1     ragge 		return;
    734        1.1     ragge 	}
    735       1.20      matt 	strlcpy(&info->symnames[info->curnamep], name,
    736       1.20      matt 	    info->maxnamep - info->curnamep);
    737       1.20      matt 	if (mlen) {
    738       1.20      matt 		info->symnames[info->curnamep + len - 1] = '.';
    739       1.20      matt 		strlcpy(&info->symnames[info->curnamep + len], mod,
    740       1.20      matt 		    info->maxnamep - (info->curnamep + len));
    741       1.20      matt 		len += mlen;
    742       1.20      matt 	}
    743       1.20      matt 	info->syms[info->cursyms] = *sym;
    744       1.20      matt 	info->syms[info->cursyms].st_name = info->curnamep;
    745       1.20      matt 	info->symnmoff[info->cursyms] = info->curnamep;
    746       1.20      matt 	info->curnamep += len;
    747        1.7     ragge #if NKSYMS
    748        1.5     ragge 	if (len > ksyms_maxlen)
    749        1.5     ragge 		ksyms_maxlen = len;
    750        1.6      tron #endif
    751       1.20      matt 	info->cursyms++;
    752        1.1     ragge }
    753        1.1     ragge /*
    754        1.1     ragge  * Adds a symbol table.
    755        1.1     ragge  * "name" is the module name, "start" and "size" is where the symbol table
    756        1.1     ragge  * is located, and "type" is in which binary format the symbol table is.
    757        1.1     ragge  * New memory for keeping the symbol table is allocated in this function.
    758        1.1     ragge  * Returns 0 if success and EEXIST if the module name is in use.
    759        1.1     ragge  */
    760       1.21      matt static int
    761       1.21      matt specialsym(const char *symname)
    762       1.21      matt {
    763       1.21      matt 	return	!strcmp(symname, "_bss_start") ||
    764       1.21      matt 		!strcmp(symname, "__bss_start") ||
    765       1.21      matt 		!strcmp(symname, "_bss_end__") ||
    766       1.21      matt 		!strcmp(symname, "__bss_end__") ||
    767       1.21      matt 		!strcmp(symname, "_edata") ||
    768       1.21      matt 		!strcmp(symname, "_end") ||
    769       1.21      matt 		!strcmp(symname, "__end") ||
    770       1.21      matt 		!strcmp(symname, "__end__") ||
    771       1.21      matt 		!strncmp(symname, "__start_link_set_", 17) ||
    772       1.21      matt 		!strncmp(symname, "__stop_link_set_", 16);
    773       1.21      matt }
    774       1.21      matt 
    775        1.1     ragge int
    776        1.9  jdolecek ksyms_addsymtab(const char *mod, void *symstart, vsize_t symsize,
    777       1.30      yamt     char *strstart, vsize_t strsize)
    778        1.1     ragge {
    779        1.1     ragge 	Elf_Sym *sym = symstart;
    780        1.1     ragge 	struct symtab *st;
    781       1.14     ragge 	unsigned long rval;
    782        1.1     ragge 	int i;
    783       1.20      matt 	char *name;
    784       1.20      matt 	struct syminfo info;
    785        1.1     ragge 
    786        1.1     ragge #ifdef KSYMS_DEBUG
    787        1.1     ragge 	if (ksyms_debug & FOLLOW_CALLS)
    788        1.1     ragge 		printf("ksyms_addsymtab: mod %s symsize %lx strsize %lx\n",
    789        1.1     ragge 		    mod, symsize, strsize);
    790        1.1     ragge #endif
    791        1.1     ragge 
    792        1.1     ragge #if NKSYMS
    793        1.1     ragge 	/*
    794        1.1     ragge 	 * Do not try to add a symbol table while someone is reading
    795        1.1     ragge 	 * from /dev/ksyms.
    796        1.1     ragge 	 */
    797        1.1     ragge 	while (ksyms_isopen != 0)
    798        1.1     ragge 		tsleep(&ksyms_isopen, PWAIT, "ksyms", 0);
    799        1.1     ragge #endif
    800        1.1     ragge 
    801        1.1     ragge 	/* Check if this symtab already loaded */
    802        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    803        1.1     ragge 		if (strcmp(mod, st->sd_name) == 0)
    804        1.1     ragge 			return EEXIST;
    805        1.1     ragge 	}
    806        1.1     ragge 
    807        1.1     ragge 	/*
    808        1.1     ragge 	 * XXX - Only add a symbol if it do not exist already.
    809        1.1     ragge 	 * This is because of a flaw in the current LKM implementation,
    810       1.20      matt 	 * these loops will be removed once the in-kernel linker is in place.
    811        1.1     ragge 	 */
    812       1.20      matt 	memset(&info, 0, sizeof(info));
    813        1.1     ragge 	for (i = 0; i < symsize/sizeof(Elf_Sym); i++) {
    814       1.20      matt 		char * const symname = strstart + sym[i].st_name;
    815        1.1     ragge 		if (sym[i].st_name == 0)
    816        1.1     ragge 			continue; /* Just ignore */
    817        1.1     ragge 
    818        1.1     ragge 		/* check validity of the symbol */
    819        1.1     ragge 		/* XXX - save local symbols if DDB */
    820        1.1     ragge 		if (ELF_ST_BIND(sym[i].st_info) != STB_GLOBAL)
    821        1.1     ragge 			continue;
    822       1.23     perry 
    823        1.1     ragge 		/* Check if the symbol exists */
    824       1.22      cube 		if (ksyms_getval(NULL, symname, &rval, KSYMS_EXTERN) == 0) {
    825        1.1     ragge 			/* Check (and complain) about differing values */
    826  1.33.22.1    bouyer 			if (sym[i].st_value != rval &&
    827  1.33.22.1    bouyer 			    sym[i].st_shndx != SHN_UNDEF) {
    828       1.21      matt 				if (specialsym(symname)) {
    829       1.20      matt 					info.maxsyms++;
    830       1.20      matt 					info.maxnamep += strlen(symname) + 1 +
    831       1.20      matt 					    strlen(mod) + 1;
    832       1.20      matt 				} else {
    833       1.20      matt 					printf("%s: symbol '%s' redeclared with"
    834       1.20      matt 					    " different value (%lx != %lx)\n",
    835       1.20      matt 					    mod, symname,
    836       1.20      matt 					    rval, (long)sym[i].st_value);
    837       1.20      matt 				}
    838       1.20      matt 			}
    839       1.20      matt 		} else {
    840       1.20      matt 			/*
    841       1.20      matt 			 * Count this symbol
    842       1.20      matt 			 */
    843       1.20      matt 			info.maxsyms++;
    844       1.20      matt 			info.maxnamep += strlen(symname) + 1;
    845       1.20      matt 		}
    846       1.20      matt 	}
    847       1.20      matt 
    848       1.20      matt 	/*
    849       1.20      matt 	 * Now that we know the sizes, malloc the structures.
    850       1.20      matt 	 */
    851       1.20      matt 	info.syms = malloc(sizeof(Elf_Sym)*info.maxsyms, M_DEVBUF, M_WAITOK);
    852       1.20      matt 	info.symnames = malloc(info.maxnamep, M_DEVBUF, M_WAITOK);
    853       1.20      matt 	info.symnmoff = malloc(sizeof(int)*info.maxsyms, M_DEVBUF, M_WAITOK);
    854       1.20      matt 
    855       1.20      matt 	/*
    856       1.20      matt 	 * Now that we have the symbols, actually fill in the structures.
    857       1.20      matt 	 */
    858       1.20      matt 	for (i = 0; i < symsize/sizeof(Elf_Sym); i++) {
    859       1.20      matt 		char * const symname = strstart + sym[i].st_name;
    860       1.20      matt 		if (sym[i].st_name == 0)
    861       1.20      matt 			continue; /* Just ignore */
    862       1.20      matt 
    863       1.20      matt 		/* check validity of the symbol */
    864       1.20      matt 		/* XXX - save local symbols if DDB */
    865       1.20      matt 		if (ELF_ST_BIND(sym[i].st_info) != STB_GLOBAL)
    866       1.20      matt 			continue;
    867       1.23     perry 
    868       1.20      matt 		/* Check if the symbol exists */
    869       1.22      cube 		if (ksyms_getval(NULL, symname, &rval, KSYMS_EXTERN) == 0) {
    870       1.21      matt 			if ((sym[i].st_value != rval) && specialsym(symname)) {
    871       1.20      matt 				addsym(&info, &sym[i], symname, mod);
    872        1.1     ragge 			}
    873        1.1     ragge 		} else
    874        1.1     ragge 			/* Ok, save this symbol */
    875       1.20      matt 			addsym(&info, &sym[i], symname, NULL);
    876        1.1     ragge 	}
    877        1.5     ragge 
    878        1.1     ragge 	st = malloc(sizeof(struct symtab), M_DEVBUF, M_WAITOK);
    879       1.10    itojun 	i = strlen(mod) + 1;
    880       1.10    itojun 	name = malloc(i, M_DEVBUF, M_WAITOK);
    881       1.10    itojun 	strlcpy(name, mod, i);
    882        1.9  jdolecek 	st->sd_name = name;
    883       1.20      matt 	st->sd_symnmoff = info.symnmoff;
    884       1.20      matt 	st->sd_symstart = info.syms;
    885       1.20      matt 	st->sd_symsize = sizeof(Elf_Sym)*info.maxsyms;
    886       1.20      matt 	st->sd_strstart = info.symnames;
    887       1.20      matt 	st->sd_strsize = info.maxnamep;
    888        1.1     ragge 
    889        1.1     ragge 	/* Make them absolute references */
    890        1.1     ragge 	sym = st->sd_symstart;
    891        1.1     ragge 	for (i = 0; i < st->sd_symsize/sizeof(Elf_Sym); i++)
    892        1.1     ragge 		sym[i].st_shndx = SHN_ABS;
    893        1.1     ragge 
    894        1.1     ragge 	CIRCLEQ_INSERT_TAIL(&symtab_queue, st, sd_queue);
    895        1.1     ragge #if NKSYMS
    896        1.1     ragge 	ksyms_sizes_calc();
    897        1.1     ragge #endif
    898        1.1     ragge 	return 0;
    899        1.1     ragge }
    900        1.1     ragge 
    901        1.1     ragge /*
    902        1.1     ragge  * Remove a symbol table specified by name.
    903        1.1     ragge  * Returns 0 if success, EBUSY if device open and ENOENT if no such name.
    904        1.1     ragge  */
    905        1.1     ragge int
    906        1.9  jdolecek ksyms_delsymtab(const char *mod)
    907        1.1     ragge {
    908        1.1     ragge 	struct symtab *st;
    909        1.1     ragge 	int found = 0;
    910        1.1     ragge 
    911        1.1     ragge #if NKSYMS
    912        1.1     ragge 	/*
    913        1.1     ragge 	 * Do not try to delete a symbol table while someone is reading
    914        1.1     ragge 	 * from /dev/ksyms.
    915        1.1     ragge 	 */
    916        1.1     ragge 	while (ksyms_isopen != 0)
    917        1.1     ragge 		tsleep(&ksyms_isopen, PWAIT, "ksyms", 0);
    918        1.1     ragge #endif
    919        1.1     ragge 
    920        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    921        1.1     ragge 		if (strcmp(mod, st->sd_name) == 0) {
    922        1.1     ragge 			found = 1;
    923        1.1     ragge 			break;
    924        1.1     ragge 		}
    925        1.1     ragge 	}
    926        1.1     ragge 	if (found == 0)
    927        1.1     ragge 		return ENOENT;
    928        1.1     ragge 	CIRCLEQ_REMOVE(&symtab_queue, st, sd_queue);
    929        1.1     ragge 	free(st->sd_symstart, M_DEVBUF);
    930        1.1     ragge 	free(st->sd_strstart, M_DEVBUF);
    931        1.1     ragge 	free(st->sd_symnmoff, M_DEVBUF);
    932       1.24  christos 	/* XXXUNCONST LINTED - const castaway */
    933       1.24  christos 	free(__UNCONST(st->sd_name), M_DEVBUF);
    934        1.1     ragge 	free(st, M_DEVBUF);
    935        1.1     ragge #if NKSYMS
    936        1.1     ragge 	ksyms_sizes_calc();
    937        1.1     ragge #endif
    938        1.1     ragge 	return 0;
    939        1.1     ragge }
    940        1.1     ragge 
    941       1.17      cube int
    942       1.17      cube ksyms_rensymtab(const char *old, const char *new)
    943       1.17      cube {
    944       1.17      cube 	struct symtab *st, *oldst = NULL;
    945       1.17      cube 	char *newstr;
    946       1.17      cube 
    947       1.17      cube 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    948       1.17      cube 		if (strcmp(old, st->sd_name) == 0)
    949       1.17      cube 			oldst = st;
    950       1.17      cube 		if (strcmp(new, st->sd_name) == 0)
    951       1.17      cube 			return (EEXIST);
    952       1.17      cube 	}
    953       1.17      cube 	if (oldst == NULL)
    954       1.17      cube 		return (ENOENT);
    955       1.17      cube 
    956       1.17      cube 	newstr = malloc(strlen(new)+1, M_DEVBUF, M_WAITOK);
    957       1.17      cube 	if (!newstr)
    958       1.17      cube 		return (ENOMEM);
    959       1.17      cube 	strcpy(newstr, new);
    960       1.24  christos 	/*XXXUNCONST*/
    961       1.24  christos 	free(__UNCONST(oldst->sd_name), M_DEVBUF);
    962       1.17      cube 	oldst->sd_name = newstr;
    963       1.17      cube 
    964       1.17      cube 	return (0);
    965       1.17      cube }
    966       1.17      cube 
    967        1.1     ragge #ifdef DDB
    968        1.1     ragge /*
    969        1.1     ragge  * Keep sifting stuff here, to avoid export of ksyms internals.
    970        1.1     ragge  */
    971        1.1     ragge int
    972        1.1     ragge ksyms_sift(char *mod, char *sym, int mode)
    973        1.1     ragge {
    974        1.1     ragge 	struct symtab *st;
    975        1.1     ragge 	char *sb;
    976        1.1     ragge 	int i, sz;
    977        1.1     ragge 
    978        1.1     ragge 	if (ksymsinited == 0)
    979        1.1     ragge 		return ENOENT;
    980        1.1     ragge 
    981        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
    982        1.1     ragge 		if (mod && strcmp(mod, st->sd_name))
    983        1.1     ragge 			continue;
    984        1.1     ragge 		sb = st->sd_strstart;
    985        1.1     ragge 
    986        1.1     ragge 		sz = st->sd_symsize/sizeof(Elf_Sym);
    987        1.1     ragge 		for (i = 0; i < sz; i++) {
    988        1.1     ragge 			Elf_Sym *les = st->sd_symstart + i;
    989        1.1     ragge 			char c;
    990        1.1     ragge 
    991       1.17      cube 			if (strstr(sb + les->st_name - st->sd_usroffset, sym)
    992       1.17      cube 			    == NULL)
    993        1.1     ragge 				continue;
    994        1.1     ragge 
    995        1.1     ragge 			if (mode == 'F') {
    996        1.1     ragge 				switch (ELF_ST_TYPE(les->st_info)) {
    997        1.1     ragge 				case STT_OBJECT:
    998        1.1     ragge 					c = '+';
    999        1.1     ragge 					break;
   1000        1.1     ragge 				case STT_FUNC:
   1001        1.1     ragge 					c = '*';
   1002        1.1     ragge 					break;
   1003        1.1     ragge 				case STT_SECTION:
   1004        1.1     ragge 					c = '&';
   1005        1.1     ragge 					break;
   1006        1.1     ragge 				case STT_FILE:
   1007        1.1     ragge 					c = '/';
   1008        1.1     ragge 					break;
   1009        1.1     ragge 				default:
   1010        1.1     ragge 					c = ' ';
   1011        1.1     ragge 					break;
   1012        1.1     ragge 				}
   1013       1.17      cube 				db_printf("%s%c ", sb + les->st_name -
   1014       1.17      cube 				    st->sd_usroffset, c);
   1015        1.1     ragge 			} else
   1016       1.17      cube 				db_printf("%s ", sb + les->st_name -
   1017       1.17      cube 				    st->sd_usroffset);
   1018        1.1     ragge 		}
   1019        1.1     ragge 	}
   1020        1.1     ragge 	return ENOENT;
   1021        1.1     ragge }
   1022       1.25   thorpej #endif /* DDB */
   1023        1.1     ragge 
   1024        1.1     ragge #if NKSYMS
   1025        1.1     ragge /*
   1026        1.1     ragge  * Static allocated ELF header.
   1027        1.1     ragge  * Basic info is filled in at attach, sizes at open.
   1028        1.1     ragge  */
   1029        1.1     ragge #define	SYMTAB		1
   1030        1.1     ragge #define	STRTAB		2
   1031        1.1     ragge #define	SHSTRTAB	3
   1032        1.1     ragge #define NSECHDR		4
   1033        1.1     ragge 
   1034        1.1     ragge #define	NPRGHDR		2
   1035        1.1     ragge #define	SHSTRSIZ	28
   1036        1.1     ragge 
   1037        1.1     ragge static struct ksyms_hdr {
   1038        1.1     ragge 	Elf_Ehdr	kh_ehdr;
   1039        1.1     ragge 	Elf_Phdr	kh_phdr[NPRGHDR];
   1040        1.1     ragge 	Elf_Shdr	kh_shdr[NSECHDR];
   1041        1.1     ragge 	char 		kh_strtab[SHSTRSIZ];
   1042        1.1     ragge } ksyms_hdr;
   1043        1.1     ragge 
   1044        1.1     ragge 
   1045       1.25   thorpej static void
   1046       1.32  christos ksyms_hdr_init(void *hdraddr)
   1047        1.1     ragge {
   1048        1.1     ragge 
   1049        1.1     ragge 	/* Copy the loaded elf exec header */
   1050        1.1     ragge 	memcpy(&ksyms_hdr.kh_ehdr, hdraddr, sizeof(Elf_Ehdr));
   1051        1.1     ragge 
   1052        1.1     ragge 	/* Set correct program/section header sizes, offsets and numbers */
   1053        1.1     ragge 	ksyms_hdr.kh_ehdr.e_phoff = offsetof(struct ksyms_hdr, kh_phdr[0]);
   1054        1.1     ragge 	ksyms_hdr.kh_ehdr.e_phentsize = sizeof(Elf_Phdr);
   1055        1.1     ragge 	ksyms_hdr.kh_ehdr.e_phnum = NPRGHDR;
   1056        1.1     ragge 	ksyms_hdr.kh_ehdr.e_shoff = offsetof(struct ksyms_hdr, kh_shdr[0]);
   1057        1.1     ragge 	ksyms_hdr.kh_ehdr.e_shentsize = sizeof(Elf_Shdr);
   1058        1.1     ragge 	ksyms_hdr.kh_ehdr.e_shnum = NSECHDR;
   1059        1.1     ragge 	ksyms_hdr.kh_ehdr.e_shstrndx = NSECHDR - 1; /* Last section */
   1060        1.1     ragge 
   1061        1.1     ragge 	/*
   1062        1.1     ragge 	 * Keep program headers zeroed (unused).
   1063        1.1     ragge 	 * The section headers are hand-crafted.
   1064        1.1     ragge 	 * First section is section zero.
   1065        1.1     ragge 	 */
   1066        1.1     ragge 
   1067        1.1     ragge 	/* Second section header; ".symtab" */
   1068        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_name = 1; /* Section 3 offset */
   1069        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_type = SHT_SYMTAB;
   1070        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_offset = sizeof(struct ksyms_hdr);
   1071        1.1     ragge /*	ksyms_hdr.kh_shdr[SYMTAB].sh_size = filled in at open */
   1072        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_link = 2; /* Corresponding strtab */
   1073        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_info = 0; /* XXX */
   1074        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_addralign = sizeof(long);
   1075        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_entsize = sizeof(Elf_Sym);
   1076        1.1     ragge 
   1077        1.1     ragge 	/* Third section header; ".strtab" */
   1078        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_name = 9; /* Section 3 offset */
   1079        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_type = SHT_STRTAB;
   1080        1.1     ragge /*	ksyms_hdr.kh_shdr[STRTAB].sh_offset = filled in at open */
   1081        1.1     ragge /*	ksyms_hdr.kh_shdr[STRTAB].sh_size = filled in at open */
   1082        1.1     ragge /*	ksyms_hdr.kh_shdr[STRTAB].sh_link = kept zero */
   1083        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_info = 0;
   1084        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_addralign = sizeof(char);
   1085        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_entsize = 0;
   1086        1.1     ragge 
   1087        1.1     ragge 	/* Fourth section, ".shstrtab" */
   1088        1.1     ragge 	ksyms_hdr.kh_shdr[SHSTRTAB].sh_name = 17; /* This section name offset */
   1089        1.1     ragge 	ksyms_hdr.kh_shdr[SHSTRTAB].sh_type = SHT_STRTAB;
   1090        1.1     ragge 	ksyms_hdr.kh_shdr[SHSTRTAB].sh_offset =
   1091        1.1     ragge 	    offsetof(struct ksyms_hdr, kh_strtab);
   1092        1.1     ragge 	ksyms_hdr.kh_shdr[SHSTRTAB].sh_size = SHSTRSIZ;
   1093        1.1     ragge 	ksyms_hdr.kh_shdr[SHSTRTAB].sh_addralign = sizeof(char);
   1094        1.1     ragge 
   1095        1.1     ragge 	/* Set section names */
   1096       1.10    itojun 	strlcpy(&ksyms_hdr.kh_strtab[1], ".symtab",
   1097       1.10    itojun 	    sizeof(ksyms_hdr.kh_strtab) - 1);
   1098       1.10    itojun 	strlcpy(&ksyms_hdr.kh_strtab[9], ".strtab",
   1099       1.10    itojun 	    sizeof(ksyms_hdr.kh_strtab) - 9);
   1100       1.10    itojun 	strlcpy(&ksyms_hdr.kh_strtab[17], ".shstrtab",
   1101       1.10    itojun 	    sizeof(ksyms_hdr.kh_strtab) - 17);
   1102        1.1     ragge };
   1103        1.1     ragge 
   1104       1.25   thorpej static int
   1105       1.30      yamt ksymsopen(dev_t dev, int oflags, int devtype, struct lwp *l)
   1106        1.1     ragge {
   1107        1.1     ragge 
   1108        1.1     ragge 	if (minor(dev))
   1109        1.1     ragge 		return ENXIO;
   1110       1.18      cube 	if (ksymsinited == 0)
   1111       1.18      cube 		return ENXIO;
   1112        1.1     ragge 
   1113        1.1     ragge 	ksyms_hdr.kh_shdr[SYMTAB].sh_size = symsz;
   1114        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_offset = symsz +
   1115        1.1     ragge 	    ksyms_hdr.kh_shdr[SYMTAB].sh_offset;
   1116        1.1     ragge 	ksyms_hdr.kh_shdr[STRTAB].sh_size = strsz;
   1117        1.1     ragge 	ksyms_isopen = 1;
   1118        1.1     ragge 
   1119        1.1     ragge #ifdef KSYMS_DEBUG
   1120        1.1     ragge 	if (ksyms_debug & FOLLOW_DEVKSYMS)
   1121        1.1     ragge 		printf("ksymsopen: symsz 0x%x strsz 0x%x\n", symsz, strsz);
   1122        1.1     ragge #endif
   1123        1.1     ragge 
   1124        1.1     ragge 	return 0;
   1125        1.1     ragge }
   1126        1.1     ragge 
   1127       1.25   thorpej static int
   1128       1.30      yamt ksymsclose(dev_t dev, int oflags, int devtype, struct lwp *l)
   1129        1.1     ragge {
   1130        1.1     ragge 
   1131        1.1     ragge #ifdef KSYMS_DEBUG
   1132        1.1     ragge 	if (ksyms_debug & FOLLOW_DEVKSYMS)
   1133        1.1     ragge 		printf("ksymsclose\n");
   1134        1.1     ragge #endif
   1135        1.1     ragge 
   1136        1.1     ragge 	ksyms_isopen = 0;
   1137        1.1     ragge 	wakeup(&ksyms_isopen);
   1138        1.1     ragge 	return 0;
   1139        1.1     ragge }
   1140        1.1     ragge 
   1141        1.1     ragge #define	HDRSIZ	sizeof(struct ksyms_hdr)
   1142        1.1     ragge 
   1143       1.25   thorpej static int
   1144       1.30      yamt ksymsread(dev_t dev, struct uio *uio, int ioflag)
   1145        1.1     ragge {
   1146        1.1     ragge 	struct symtab *st;
   1147        1.1     ragge 	size_t filepos, inpos, off;
   1148        1.1     ragge 
   1149        1.1     ragge #ifdef KSYMS_DEBUG
   1150        1.1     ragge 	if (ksyms_debug & FOLLOW_DEVKSYMS)
   1151       1.26       riz 		printf("ksymsread: offset 0x%llx resid 0x%zx\n",
   1152        1.1     ragge 		    (long long)uio->uio_offset, uio->uio_resid);
   1153        1.1     ragge #endif
   1154        1.1     ragge 
   1155        1.1     ragge 	off = uio->uio_offset;
   1156        1.1     ragge 	if (off >= (strsz + symsz + HDRSIZ))
   1157        1.1     ragge 		return 0; /* End of symtab */
   1158        1.1     ragge 	/*
   1159        1.1     ragge 	 * First: Copy out the ELF header.
   1160        1.1     ragge 	 */
   1161        1.1     ragge 	if (off < HDRSIZ)
   1162        1.1     ragge 		uiomove((char *)&ksyms_hdr + off, HDRSIZ - off, uio);
   1163        1.1     ragge 
   1164        1.1     ragge 	/*
   1165        1.1     ragge 	 * Copy out the symbol table.
   1166        1.1     ragge 	 */
   1167        1.1     ragge 	filepos = HDRSIZ;
   1168        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
   1169        1.1     ragge 		if (uio->uio_resid == 0)
   1170        1.1     ragge 			return 0;
   1171        1.1     ragge 		if (uio->uio_offset <= st->sd_symsize + filepos) {
   1172        1.1     ragge 			inpos = uio->uio_offset - filepos;
   1173        1.1     ragge 			uiomove((char *)st->sd_symstart + inpos,
   1174        1.1     ragge 			   st->sd_symsize - inpos, uio);
   1175        1.1     ragge 		}
   1176        1.1     ragge 		filepos += st->sd_symsize;
   1177        1.1     ragge 	}
   1178        1.1     ragge 
   1179        1.1     ragge 	if (filepos != HDRSIZ + symsz)
   1180        1.1     ragge 		panic("ksymsread: unsunc");
   1181        1.1     ragge 
   1182        1.1     ragge 	/*
   1183        1.1     ragge 	 * Copy out the string table
   1184        1.1     ragge 	 */
   1185        1.1     ragge 	CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
   1186        1.1     ragge 		if (uio->uio_resid == 0)
   1187        1.1     ragge 			return 0;
   1188        1.1     ragge 		if (uio->uio_offset <= st->sd_strsize + filepos) {
   1189        1.1     ragge 			inpos = uio->uio_offset - filepos;
   1190        1.1     ragge 			uiomove((char *)st->sd_strstart + inpos,
   1191        1.1     ragge 			   st->sd_strsize - inpos, uio);
   1192        1.1     ragge 		}
   1193        1.1     ragge 		filepos += st->sd_strsize;
   1194        1.1     ragge 	}
   1195        1.1     ragge 	return 0;
   1196        1.1     ragge }
   1197        1.1     ragge 
   1198       1.25   thorpej static int
   1199       1.30      yamt ksymswrite(dev_t dev, struct uio *uio, int ioflag)
   1200        1.1     ragge {
   1201       1.30      yamt 
   1202        1.1     ragge 	return EROFS;
   1203        1.1     ragge }
   1204        1.1     ragge 
   1205       1.25   thorpej static int
   1206       1.32  christos ksymsioctl(dev_t dev, u_long cmd, void *data, int fflag, struct lwp *l)
   1207        1.1     ragge {
   1208        1.1     ragge 	struct ksyms_gsymbol *kg = (struct ksyms_gsymbol *)data;
   1209        1.1     ragge 	struct symtab *st;
   1210       1.15  christos 	Elf_Sym *sym = NULL;
   1211        1.1     ragge 	unsigned long val;
   1212        1.1     ragge 	int error = 0;
   1213       1.15  christos 	char *str = NULL;
   1214        1.5     ragge 
   1215        1.5     ragge 	if (cmd == KIOCGVALUE || cmd == KIOCGSYMBOL)
   1216        1.5     ragge 		str = malloc(ksyms_maxlen, M_DEVBUF, M_WAITOK);
   1217        1.1     ragge 
   1218        1.1     ragge 	switch (cmd) {
   1219        1.1     ragge 	case KIOCGVALUE:
   1220        1.1     ragge 		/*
   1221        1.1     ragge 		 * Use the in-kernel symbol lookup code for fast
   1222        1.1     ragge 		 * retreival of a value.
   1223        1.1     ragge 		 */
   1224        1.5     ragge 		if ((error = copyinstr(kg->kg_name, str, ksyms_maxlen, NULL)))
   1225        1.1     ragge 			break;
   1226       1.22      cube 		if ((error = ksyms_getval(NULL, str, &val, KSYMS_EXTERN)))
   1227        1.1     ragge 			break;
   1228        1.1     ragge 		error = copyout(&val, kg->kg_value, sizeof(long));
   1229        1.1     ragge 		break;
   1230        1.1     ragge 
   1231        1.1     ragge 	case KIOCGSYMBOL:
   1232        1.1     ragge 		/*
   1233        1.1     ragge 		 * Use the in-kernel symbol lookup code for fast
   1234        1.1     ragge 		 * retreival of a symbol.
   1235        1.1     ragge 		 */
   1236        1.5     ragge 		if ((error = copyinstr(kg->kg_name, str, ksyms_maxlen, NULL)))
   1237        1.1     ragge 			break;
   1238        1.1     ragge 		CIRCLEQ_FOREACH(st, &symtab_queue, sd_queue) {
   1239       1.22      cube 			if ((sym = findsym(str, st)) == NULL) /* from userland */
   1240        1.1     ragge 				continue;
   1241        1.1     ragge 
   1242        1.1     ragge 			/* Skip if bad binding */
   1243        1.1     ragge 			if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL) {
   1244        1.1     ragge 				sym = NULL;
   1245        1.1     ragge 				continue;
   1246        1.1     ragge 			}
   1247        1.1     ragge 			break;
   1248        1.1     ragge 		}
   1249       1.22      cube 		/*
   1250       1.22      cube 		 * XXX which value of sym->st_name should be returned?  The real
   1251       1.22      cube 		 * one, or the one that matches what reading /dev/ksyms get?
   1252       1.22      cube 		 *
   1253       1.22      cube 		 * Currently, we're returning the /dev/ksyms one.
   1254       1.22      cube 		 */
   1255        1.1     ragge 		if (sym != NULL)
   1256        1.1     ragge 			error = copyout(sym, kg->kg_sym, sizeof(Elf_Sym));
   1257        1.1     ragge 		else
   1258        1.1     ragge 			error = ENOENT;
   1259        1.1     ragge 		break;
   1260        1.1     ragge 
   1261        1.1     ragge 	case KIOCGSIZE:
   1262        1.1     ragge 		/*
   1263        1.1     ragge 		 * Get total size of symbol table.
   1264        1.1     ragge 		 */
   1265        1.1     ragge 		*(int *)data = strsz + symsz + HDRSIZ;
   1266        1.1     ragge 		break;
   1267        1.1     ragge 
   1268        1.1     ragge 	default:
   1269        1.1     ragge 		error = ENOTTY;
   1270        1.1     ragge 		break;
   1271        1.1     ragge 	}
   1272        1.5     ragge 
   1273        1.5     ragge 	if (cmd == KIOCGVALUE || cmd == KIOCGSYMBOL)
   1274        1.5     ragge 		free(str, M_DEVBUF);
   1275        1.5     ragge 
   1276        1.5     ragge 	return error;
   1277        1.1     ragge }
   1278       1.25   thorpej 
   1279       1.25   thorpej const struct cdevsw ksyms_cdevsw = {
   1280       1.25   thorpej 	ksymsopen, ksymsclose, ksymsread, ksymswrite, ksymsioctl,
   1281       1.25   thorpej 	    nullstop, notty, nopoll, nommap, nullkqfilter, DV_DULL
   1282       1.25   thorpej };
   1283       1.25   thorpej #endif /* NKSYMS */
   1284