📄 db_sym.cxx
字号:
/* $NetBSD: db_sym.c,v 1.9 1995/05/24 20:21:00 gwr Exp $ *//* * Mach Operating System * Copyright (c) 1991,1990 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. */#include <arch-kerninc/db_machdep.hxx>#include <kerninc/util.h>#include <ddb/db_sym.hxx>#include <ddb/db_command.hxx>#include <ddb/db_output.hxx>/* * We import from the symbol-table dependent routines: */extern db_sym_t X_db_lookup(db_symtab_t *symtabp, const char *symstr);extern db_sym_t X_db_sym_match(db_symtab_t *symtabp, const char *symstr);extern db_sym_t X_db_search_symbol(db_symtab_t *symtabp, db_addr_t addr, db_strategy_t strategy, vm_offset_t *newdiff);extern bool X_db_line_at_pc(db_symtab_t *symtabp, db_sym_t sym, const char **filename, int *linenum, db_expr_t pc); extern void X_db_symbol_values(db_sym_t sym, const char** name, db_expr_t *val);extern bool X_db_sym_numargs(db_symtab_t *symtabp, db_sym_t sym, int *nargp, const char **argnames); /* * Multiple symbol tables */#ifndef MAXLKMS#define MAXLKMS 20#endif#ifndef MAXNOSYMTABS#define MAXNOSYMTABS MAXLKMS+1 /* Room for kernel + LKM's */#endifdb_symtab_t db_symtabs[MAXNOSYMTABS] = {{0,},};db_symtab_t *db_last_symtab;db_sym_t db_lookup(const char *symstr); /* forward */booldb_line_at_pc(db_sym_t sym, const char **filename, int *linenum, db_expr_t pc){ return X_db_line_at_pc( db_last_symtab, sym, filename, linenum, pc);}booldb_sym_numargs(db_sym_t sym, int *nargp, const char **argnames){ return X_db_sym_numargs(db_last_symtab, sym, nargp, argnames);}voiddb_sym_match(const char *symstr){ register int i; int symtab_start = 0; int symtab_end = MAXNOSYMTABS; for (i = symtab_start; i < symtab_end; i++) { if (db_symtabs[i].name) X_db_sym_match(&db_symtabs[i], symstr); }}/* * Add symbol table, with given name, to list of symbol tables. */intdb_add_symbol_table(char *start, char *end, const char *name, void * ref){ int slot; for (slot = 0; slot < MAXNOSYMTABS; slot++) { if (db_symtabs[slot].name == NULL) break; } if (slot >= MAXNOSYMTABS) { printf ("No slots left for %s symbol table", name); return(-1); } db_symtabs[slot].start = start; db_symtabs[slot].end = end; db_symtabs[slot].name = name; db_symtabs[slot].machdep = ref; return(slot);}/* * Delete a symbol table. Caller is responsible for freeing storage. */voiddb_del_symbol_table(char *name){ int slot; for (slot = 0; slot < MAXNOSYMTABS; slot++) { if (db_symtabs[slot].name && ! strcmp(db_symtabs[slot].name, name)) break; } if (slot >= MAXNOSYMTABS) { printf ("Unable to find symbol table slot for %s.", name); return; } db_symtabs[slot].start = 0; db_symtabs[slot].end = 0; db_symtabs[slot].name = 0; db_symtabs[slot].machdep = 0;}/* * db_qualify("vm_map", "netbsd") returns "netbsd:vm_map". * * Note: return value points to static data whose content is * overwritten by each call... but in practice this seems okay. */static char *db_qualify(db_sym_t sym, register const char *symtabname){ const char *symname; static char tmp[256]; register char *s; db_symbol_values(sym, &symname, 0); s = tmp; while ((*s++ = *symtabname++)) { } s[-1] = ':'; while ((*s++ = *symname++)) { } return tmp;}booldb_eqname(char *src, char *dst, char c){ if (!strcmp(src, dst)) return (true); if (src[0] == c) return (!strcmp(src+1,dst)); return (false);}booldb_value_of_name(const char *name, db_expr_t *valuep){ db_sym_t sym; sym = db_lookup(name); if (sym == DB_SYM_NULL) return (false); db_symbol_values(sym, &name, valuep); return (true);}/* * Lookup a symbol. * If the symbol has a qualifier (e.g., ux:vm_map), * then only the specified symbol table will be searched; * otherwise, all symbol tables will be searched. */db_sym_tdb_lookup(const char *symstr){ db_sym_t sp; register int i; int symtab_start = 0; int symtab_end = MAXNOSYMTABS;#if 0 register const char *cp; /* * Look for, remove, and remember any symbol table specifier. */ for (cp = symstr; *cp; cp++) { if (*cp == ':') { *cp = '\0'; for (i = 0; i < MAXNOSYMTABS; i++) { if (db_symtabs[i].name && ! strcmp(symstr, db_symtabs[i].name)) { symtab_start = i; symtab_end = i + 1; break; } } *cp = ':'; if (i == MAXNOSYMTABS) { db_error("invalid symbol table name"); /*NOTREACHED*/ } symstr = cp+1; } }#endif /* * Look in the specified set of symbol tables. * Return on first match. */ for (i = symtab_start; i < symtab_end; i++) { if (db_symtabs[i].name && (sp = X_db_lookup(&db_symtabs[i], symstr))) { db_last_symtab = &db_symtabs[i]; return sp; } } return 0;}/* * Does this symbol name appear in more than one symbol table? * Used by db_symbol_values to decide whether to qualify a symbol. */bool db_qualify_ambiguous_names = false;booldb_symbol_is_ambiguous(db_sym_t sym){ const char *sym_name; register int i; register bool found_once = false; if (!db_qualify_ambiguous_names) return false; db_symbol_values(sym, &sym_name, 0); for (i = 0; i < MAXNOSYMTABS; i++) { if (db_symtabs[i].name && X_db_lookup(&db_symtabs[i], sym_name)) { if (found_once) return true; found_once = true; } } return false;}/* * Find the closest symbol to val, and return its name * and the difference between val and the symbol found. */db_sym_tdb_search_symbol(register db_addr_t val, db_strategy_t strategy, db_expr_t *offp){ register vm_offset_t diff; vm_offset_t newdiff; register int i; db_sym_t ret = DB_SYM_NULL, sym; newdiff = diff = ~0; db_last_symtab = 0; for (i = 0; i < MAXNOSYMTABS; i++) { if (!db_symtabs[i].name) continue; sym = X_db_search_symbol(&db_symtabs[i], val, strategy, &newdiff); if (newdiff < diff) { db_last_symtab = &db_symtabs[i]; diff = newdiff; ret = sym; } } *offp = diff; return ret;}/* * Return name and value of a symbol */voiddb_symbol_values(db_sym_t sym, const char **namep, db_expr_t *valuep){ db_expr_t value; if (sym == DB_SYM_NULL) { *namep = 0; return; } X_db_symbol_values(sym, namep, &value); if (db_symbol_is_ambiguous(sym)) *namep = db_qualify(sym, db_last_symtab->name); if (valuep) *valuep = value;}/* * Print a the closest symbol to value * * After matching the symbol according to the given strategy * we print it in the name+offset format, provided the symbol's * value is close enough (eg smaller than db_maxoff). * We also attempt to print [filename:linenum] when applicable * (eg for procedure names). * * If we could not find a reasonable name+offset representation, * then we just print the value in hex. Small values might get * bogus symbol associations, e.g. 3 might get some absolute * value like _INCLUDE_VERSION or something, therefore we do * not accept symbols whose value is zero (and use plain hex). * Also, avoid printing as "end+0x????" which is useless. * The variable db_lastsym is used instead of "end" in case we * add support for symbols in loadable driver modules. */extern char end[];db_expr_t db_lastsym = (db_expr_t)end;db_expr_t db_maxoff = 0x10000000;voiddb_printsym(db_expr_t off, db_strategy_t strategy){ db_expr_t d; const char *filename; const char *name; db_expr_t value; int linenum; db_sym_t cursym; if (off <= db_lastsym) { cursym = db_search_symbol(off, strategy, &d); db_symbol_values(cursym, &name, &value); if (name && (d < db_maxoff) && value) { db_printf("%s", name); if (d) db_printf("+%#r", d); if (strategy == DB_STGY_PROC) { if (db_line_at_pc(cursym, &filename, &linenum, off)) db_printf(" [%s:%d]", filename, linenum); } return; } } db_printf("%#x", off); return;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -