17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5ea8dc4b6Seschrock * Common Development and Distribution License (the "License"). 6ea8dc4b6Seschrock * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22da346f3bSPramod Batni * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 2583eb21d9SBayard Bell /* 2683eb21d9SBayard Bell * Copyright 2011 Bayard G. Bell <buffer.g.overflow@gmail.com>. 2783eb21d9SBayard Bell * All rights reserved. Use is subject to license terms. 2883eb21d9SBayard Bell */ 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate /* 317c478bd9Sstevel@tonic-gate * Kernel's linker/loader 327c478bd9Sstevel@tonic-gate */ 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate #include <sys/types.h> 357c478bd9Sstevel@tonic-gate #include <sys/param.h> 367c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 377c478bd9Sstevel@tonic-gate #include <sys/systm.h> 387c478bd9Sstevel@tonic-gate #include <sys/user.h> 397c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 407c478bd9Sstevel@tonic-gate #include <sys/reboot.h> 417c478bd9Sstevel@tonic-gate #include <sys/bootconf.h> 427c478bd9Sstevel@tonic-gate #include <sys/debug.h> 437c478bd9Sstevel@tonic-gate #include <sys/uio.h> 447c478bd9Sstevel@tonic-gate #include <sys/file.h> 457c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 467c478bd9Sstevel@tonic-gate #include <sys/user.h> 477c478bd9Sstevel@tonic-gate #include <sys/mman.h> 487c478bd9Sstevel@tonic-gate #include <vm/as.h> 497c478bd9Sstevel@tonic-gate #include <vm/seg_kp.h> 507c478bd9Sstevel@tonic-gate #include <vm/seg_kmem.h> 517c478bd9Sstevel@tonic-gate #include <sys/elf.h> 527c478bd9Sstevel@tonic-gate #include <sys/elf_notes.h> 537c478bd9Sstevel@tonic-gate #include <sys/vmsystm.h> 547c478bd9Sstevel@tonic-gate #include <sys/kdi.h> 557c478bd9Sstevel@tonic-gate #include <sys/atomic.h> 567c478bd9Sstevel@tonic-gate #include <sys/kmdb.h> 577c478bd9Sstevel@tonic-gate 587c478bd9Sstevel@tonic-gate #include <sys/link.h> 597c478bd9Sstevel@tonic-gate #include <sys/kobj.h> 607c478bd9Sstevel@tonic-gate #include <sys/ksyms.h> 617c478bd9Sstevel@tonic-gate #include <sys/disp.h> 627c478bd9Sstevel@tonic-gate #include <sys/modctl.h> 637c478bd9Sstevel@tonic-gate #include <sys/varargs.h> 647c478bd9Sstevel@tonic-gate #include <sys/kstat.h> 657c478bd9Sstevel@tonic-gate #include <sys/kobj_impl.h> 66986fd29aSsetje #include <sys/fs/decomp.h> 677c478bd9Sstevel@tonic-gate #include <sys/callb.h> 687c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 697c478bd9Sstevel@tonic-gate #include <sys/tnf_probe.h> 70986fd29aSsetje #include <sys/zmod.h> 717c478bd9Sstevel@tonic-gate 72986fd29aSsetje #include <krtld/reloc.h> 73986fd29aSsetje #include <krtld/kobj_kdi.h> 747c478bd9Sstevel@tonic-gate #include <sys/sha1.h> 757c478bd9Sstevel@tonic-gate #include <sys/crypto/elfsign.h> 767c478bd9Sstevel@tonic-gate 77986fd29aSsetje #if !defined(_OBP) 787c478bd9Sstevel@tonic-gate #include <sys/bootvfs.h> 797c478bd9Sstevel@tonic-gate #endif 807c478bd9Sstevel@tonic-gate 817c478bd9Sstevel@tonic-gate /* 827c478bd9Sstevel@tonic-gate * do_symbols() error codes 837c478bd9Sstevel@tonic-gate */ 847c478bd9Sstevel@tonic-gate #define DOSYM_UNDEF -1 /* undefined symbol */ 857c478bd9Sstevel@tonic-gate #define DOSYM_UNSAFE -2 /* MT-unsafe driver symbol */ 867c478bd9Sstevel@tonic-gate 87986fd29aSsetje #if !defined(_OBP) 88ae115bc7Smrj static void synthetic_bootaux(char *, val_t *); 89986fd29aSsetje #endif 90986fd29aSsetje 91ae115bc7Smrj static struct module *load_exec(val_t *, char *); 927c478bd9Sstevel@tonic-gate static void load_linker(val_t *); 93ae115bc7Smrj static struct modctl *add_primary(const char *filename, int); 947c478bd9Sstevel@tonic-gate static int bind_primary(val_t *, int); 957c478bd9Sstevel@tonic-gate static int load_primary(struct module *, int); 967c478bd9Sstevel@tonic-gate static int load_kmdb(val_t *); 977c478bd9Sstevel@tonic-gate static int get_progbits(struct module *, struct _buf *); 987c478bd9Sstevel@tonic-gate static int get_syms(struct module *, struct _buf *); 997c478bd9Sstevel@tonic-gate static int get_ctf(struct module *, struct _buf *); 1007c478bd9Sstevel@tonic-gate static void get_signature(struct module *, struct _buf *); 1017c478bd9Sstevel@tonic-gate static int do_common(struct module *); 1027c478bd9Sstevel@tonic-gate static void add_dependent(struct module *, struct module *); 1037c478bd9Sstevel@tonic-gate static int do_dependents(struct modctl *, char *, size_t); 1047c478bd9Sstevel@tonic-gate static int do_symbols(struct module *, Elf64_Addr); 1057c478bd9Sstevel@tonic-gate static void module_assign(struct modctl *, struct module *); 1067c478bd9Sstevel@tonic-gate static void free_module_data(struct module *); 1077c478bd9Sstevel@tonic-gate static char *depends_on(struct module *); 108ae115bc7Smrj static char *getmodpath(const char *); 1097c478bd9Sstevel@tonic-gate static char *basename(char *); 1107c478bd9Sstevel@tonic-gate static void attr_val(val_t *); 1117c478bd9Sstevel@tonic-gate static char *find_libmacro(char *); 1127c478bd9Sstevel@tonic-gate static char *expand_libmacro(char *, char *, char *); 1137c478bd9Sstevel@tonic-gate static int read_bootflags(void); 114986fd29aSsetje static int kobj_comp_setup(struct _buf *, struct compinfo *); 115986fd29aSsetje static int kobj_uncomp_blk(struct _buf *, caddr_t, uint_t); 116986fd29aSsetje static int kobj_read_blks(struct _buf *, caddr_t, uint_t, uint_t); 1177c478bd9Sstevel@tonic-gate static int kobj_boot_open(char *, int); 1187c478bd9Sstevel@tonic-gate static int kobj_boot_close(int); 1197c478bd9Sstevel@tonic-gate static int kobj_boot_seek(int, off_t, off_t); 1207c478bd9Sstevel@tonic-gate static int kobj_boot_read(int, caddr_t, size_t); 121ea8dc4b6Seschrock static int kobj_boot_fstat(int, struct bootstat *); 122986fd29aSsetje static int kobj_boot_compinfo(int, struct compinfo *); 1237c478bd9Sstevel@tonic-gate 1247c478bd9Sstevel@tonic-gate static Sym *lookup_one(struct module *, const char *); 1257c478bd9Sstevel@tonic-gate static void sym_insert(struct module *, char *, symid_t); 1267c478bd9Sstevel@tonic-gate static Sym *sym_lookup(struct module *, Sym *); 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gate static struct kobjopen_tctl *kobjopen_alloc(char *filename); 1297c478bd9Sstevel@tonic-gate static void kobjopen_free(struct kobjopen_tctl *ltp); 1307c478bd9Sstevel@tonic-gate static void kobjopen_thread(struct kobjopen_tctl *ltp); 1311d7f3fadSKrishnendu Sadhukhan - Sun Microsystems static int kobj_is_compressed(intptr_t); 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gate extern int kcopy(const void *, void *, size_t); 1347c478bd9Sstevel@tonic-gate extern int elf_mach_ok(Ehdr *); 1357c478bd9Sstevel@tonic-gate extern int alloc_gottable(struct module *, caddr_t *, caddr_t *); 1367c478bd9Sstevel@tonic-gate 137986fd29aSsetje #if !defined(_OBP) 138986fd29aSsetje extern int kobj_boot_mountroot(void); 139986fd29aSsetje #endif 140986fd29aSsetje 141986fd29aSsetje static void tnf_unsplice_probes(uint_t, struct modctl *); 142986fd29aSsetje extern tnf_probe_control_t *__tnf_probe_list_head; 143986fd29aSsetje extern tnf_tag_data_t *__tnf_tag_list_head; 1447c478bd9Sstevel@tonic-gate 1457c478bd9Sstevel@tonic-gate extern int modrootloaded; 1467c478bd9Sstevel@tonic-gate extern int swaploaded; 1477c478bd9Sstevel@tonic-gate extern int bop_io_quiesced; 1487c478bd9Sstevel@tonic-gate extern int last_module_id; 1497c478bd9Sstevel@tonic-gate 150986fd29aSsetje extern char stubs_base[]; 151986fd29aSsetje extern char stubs_end[]; 152986fd29aSsetje 1537c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 1547c478bd9Sstevel@tonic-gate /* 1557c478bd9Sstevel@tonic-gate * Values that can be or'd in to kobj_debug and their effects: 1567c478bd9Sstevel@tonic-gate * 1577c478bd9Sstevel@tonic-gate * D_DEBUG - misc. debugging information. 1587c478bd9Sstevel@tonic-gate * D_SYMBOLS - list symbols and their values as they are entered 1597c478bd9Sstevel@tonic-gate * into the hash table 1607c478bd9Sstevel@tonic-gate * D_RELOCATIONS - display relocation processing information 1617c478bd9Sstevel@tonic-gate * D_LOADING - display information about each module as it 1627c478bd9Sstevel@tonic-gate * is loaded. 1637c478bd9Sstevel@tonic-gate */ 1647c478bd9Sstevel@tonic-gate int kobj_debug = 0; 165ae115bc7Smrj 166ae115bc7Smrj #define KOBJ_MARK(s) if (kobj_debug & D_DEBUG) \ 167ae115bc7Smrj (_kobj_printf(ops, "%d", __LINE__), _kobj_printf(ops, ": %s\n", s)) 168ae115bc7Smrj #else 169ae115bc7Smrj #define KOBJ_MARK(s) /* discard */ 1707c478bd9Sstevel@tonic-gate #endif 1717c478bd9Sstevel@tonic-gate 1727c478bd9Sstevel@tonic-gate #define MODPATH_PROPNAME "module-path" 1737c478bd9Sstevel@tonic-gate 1747c478bd9Sstevel@tonic-gate #ifdef MODDIR_SUFFIX 1757c478bd9Sstevel@tonic-gate static char slash_moddir_suffix_slash[] = MODDIR_SUFFIX "/"; 1767c478bd9Sstevel@tonic-gate #else 1777c478bd9Sstevel@tonic-gate #define slash_moddir_suffix_slash "" 1787c478bd9Sstevel@tonic-gate #endif 1797c478bd9Sstevel@tonic-gate 1807c478bd9Sstevel@tonic-gate #define _moddebug get_weakish_int(&moddebug) 1817c478bd9Sstevel@tonic-gate #define _modrootloaded get_weakish_int(&modrootloaded) 1827c478bd9Sstevel@tonic-gate #define _swaploaded get_weakish_int(&swaploaded) 1837c478bd9Sstevel@tonic-gate #define _ioquiesced get_weakish_int(&bop_io_quiesced) 1847c478bd9Sstevel@tonic-gate 1857c478bd9Sstevel@tonic-gate #define mod(X) (struct module *)((X)->modl_modp->mod_mp) 1867c478bd9Sstevel@tonic-gate 1877c478bd9Sstevel@tonic-gate void *romp; /* rom vector (opaque to us) */ 1887c478bd9Sstevel@tonic-gate struct bootops *ops; /* bootops vector */ 1897c478bd9Sstevel@tonic-gate void *dbvec; /* debug vector */ 1907c478bd9Sstevel@tonic-gate 1917c478bd9Sstevel@tonic-gate /* 1927c478bd9Sstevel@tonic-gate * kobjopen thread control structure 1937c478bd9Sstevel@tonic-gate */ 1947c478bd9Sstevel@tonic-gate struct kobjopen_tctl { 1957c478bd9Sstevel@tonic-gate ksema_t sema; 1967c478bd9Sstevel@tonic-gate char *name; /* name of file */ 1977c478bd9Sstevel@tonic-gate struct vnode *vp; /* vnode return from vn_open() */ 1987c478bd9Sstevel@tonic-gate int Errno; /* error return from vnopen */ 1997c478bd9Sstevel@tonic-gate }; 2007c478bd9Sstevel@tonic-gate 2017c478bd9Sstevel@tonic-gate /* 2027c478bd9Sstevel@tonic-gate * Structure for defining dynamically expandable library macros 2037c478bd9Sstevel@tonic-gate */ 2047c478bd9Sstevel@tonic-gate 2057c478bd9Sstevel@tonic-gate struct lib_macro_info { 2067c478bd9Sstevel@tonic-gate char *lmi_list; /* ptr to list of possible choices */ 2077c478bd9Sstevel@tonic-gate char *lmi_macroname; /* pointer to macro name */ 2087c478bd9Sstevel@tonic-gate ushort_t lmi_ba_index; /* index into bootaux vector */ 2097c478bd9Sstevel@tonic-gate ushort_t lmi_macrolen; /* macro length */ 2107c478bd9Sstevel@tonic-gate } libmacros[] = { 2117c478bd9Sstevel@tonic-gate { NULL, "CPU", BA_CPU, 0 }, 2127c478bd9Sstevel@tonic-gate { NULL, "MMU", BA_MMU, 0 } 2137c478bd9Sstevel@tonic-gate }; 2147c478bd9Sstevel@tonic-gate 2157c478bd9Sstevel@tonic-gate #define NLIBMACROS sizeof (libmacros) / sizeof (struct lib_macro_info) 2167c478bd9Sstevel@tonic-gate 2177c478bd9Sstevel@tonic-gate char *boot_cpu_compatible_list; /* make $CPU available */ 2187c478bd9Sstevel@tonic-gate 219ae115bc7Smrj char *kobj_module_path; /* module search path */ 2207c478bd9Sstevel@tonic-gate vmem_t *text_arena; /* module text arena */ 2217c478bd9Sstevel@tonic-gate static vmem_t *data_arena; /* module data & bss arena */ 2227c478bd9Sstevel@tonic-gate static vmem_t *ctf_arena; /* CTF debug data arena */ 2237c478bd9Sstevel@tonic-gate static struct modctl *kobj_modules = NULL; /* modules loaded */ 2247c478bd9Sstevel@tonic-gate int kobj_mmu_pagesize; /* system pagesize */ 2257c478bd9Sstevel@tonic-gate static int lg_pagesize; /* "large" pagesize */ 2267c478bd9Sstevel@tonic-gate static int kobj_last_module_id = 0; /* id assignment */ 2277c478bd9Sstevel@tonic-gate static kmutex_t kobj_lock; /* protects mach memory list */ 2287c478bd9Sstevel@tonic-gate 2297c478bd9Sstevel@tonic-gate /* 2307c478bd9Sstevel@tonic-gate * The following functions have been implemented by the kernel. 2317c478bd9Sstevel@tonic-gate * However, many 3rd party drivers provide their own implementations 2327c478bd9Sstevel@tonic-gate * of these functions. When such drivers are loaded, messages 233da6c28aaSamw * indicating that these symbols have been multiply defined will be 2347c478bd9Sstevel@tonic-gate * emitted to the console. To avoid alarming customers for no good 2357c478bd9Sstevel@tonic-gate * reason, we simply suppress such warnings for the following set of 2367c478bd9Sstevel@tonic-gate * functions. 2377c478bd9Sstevel@tonic-gate */ 2387c478bd9Sstevel@tonic-gate static char *suppress_sym_list[] = 2397c478bd9Sstevel@tonic-gate { 2407c478bd9Sstevel@tonic-gate "strstr", 2417c478bd9Sstevel@tonic-gate "strncat", 2427c478bd9Sstevel@tonic-gate "strlcat", 2437c478bd9Sstevel@tonic-gate "strlcpy", 2447c478bd9Sstevel@tonic-gate "strspn", 2457c478bd9Sstevel@tonic-gate "memcpy", 2467c478bd9Sstevel@tonic-gate "memset", 2477c478bd9Sstevel@tonic-gate "memmove", 2487c478bd9Sstevel@tonic-gate "memcmp", 2497c478bd9Sstevel@tonic-gate "memchr", 2507c478bd9Sstevel@tonic-gate "__udivdi3", 2517c478bd9Sstevel@tonic-gate "__divdi3", 2527c478bd9Sstevel@tonic-gate "__umoddi3", 2537c478bd9Sstevel@tonic-gate "__moddi3", 2547c478bd9Sstevel@tonic-gate NULL /* This entry must exist */ 2557c478bd9Sstevel@tonic-gate }; 2567c478bd9Sstevel@tonic-gate 2577c478bd9Sstevel@tonic-gate /* indexed by KOBJ_NOTIFY_* */ 2587c478bd9Sstevel@tonic-gate static kobj_notify_list_t *kobj_notifiers[KOBJ_NOTIFY_MAX + 1]; 2597c478bd9Sstevel@tonic-gate 2607c478bd9Sstevel@tonic-gate /* 2617c478bd9Sstevel@tonic-gate * TNF probe management globals 2627c478bd9Sstevel@tonic-gate */ 2637c478bd9Sstevel@tonic-gate tnf_probe_control_t *__tnf_probe_list_head = NULL; 2647c478bd9Sstevel@tonic-gate tnf_tag_data_t *__tnf_tag_list_head = NULL; 2657c478bd9Sstevel@tonic-gate int tnf_changed_probe_list = 0; 2667c478bd9Sstevel@tonic-gate 2677c478bd9Sstevel@tonic-gate /* 2687c478bd9Sstevel@tonic-gate * Prefix for statically defined tracing (SDT) DTrace probes. 2697c478bd9Sstevel@tonic-gate */ 2707c478bd9Sstevel@tonic-gate const char *sdt_prefix = "__dtrace_probe_"; 2717c478bd9Sstevel@tonic-gate 2727c478bd9Sstevel@tonic-gate /* 273ae115bc7Smrj * Beginning and end of the kernel's dynamic text/data segments. 2747c478bd9Sstevel@tonic-gate */ 2757c478bd9Sstevel@tonic-gate static caddr_t _text; 2767c478bd9Sstevel@tonic-gate static caddr_t _etext; 2777c478bd9Sstevel@tonic-gate static caddr_t _data; 278ae115bc7Smrj 279ae115bc7Smrj /* 280986fd29aSsetje * The sparc linker doesn't create a memory location 281986fd29aSsetje * for a variable named _edata, so _edata can only be 282986fd29aSsetje * referred to, not modified. krtld needs a static 283986fd29aSsetje * variable to modify it - within krtld, of course - 284986fd29aSsetje * outside of krtld, e_data is used in all kernels. 285ae115bc7Smrj */ 286986fd29aSsetje #if defined(__sparc) 287986fd29aSsetje static caddr_t _edata; 288986fd29aSsetje #else 289986fd29aSsetje extern caddr_t _edata; 290ae115bc7Smrj #endif 2917c478bd9Sstevel@tonic-gate 292986fd29aSsetje Addr dynseg = 0; /* load address of "dynamic" segment */ 293986fd29aSsetje size_t dynsize; /* "dynamic" segment size */ 294986fd29aSsetje 2957c478bd9Sstevel@tonic-gate 2967c478bd9Sstevel@tonic-gate int standalone = 1; /* an unwholey kernel? */ 2977c478bd9Sstevel@tonic-gate int use_iflush; /* iflush after relocations */ 2987c478bd9Sstevel@tonic-gate 2997c478bd9Sstevel@tonic-gate /* 3007c478bd9Sstevel@tonic-gate * _kobj_printf() 3017c478bd9Sstevel@tonic-gate * 3027c478bd9Sstevel@tonic-gate * Common printf function pointer. Can handle only one conversion 3037c478bd9Sstevel@tonic-gate * specification in the format string. Some of the functions invoked 3047c478bd9Sstevel@tonic-gate * through this function pointer cannot handle more that one conversion 3057c478bd9Sstevel@tonic-gate * specification in the format string. 3067c478bd9Sstevel@tonic-gate */ 3077c478bd9Sstevel@tonic-gate void (*_kobj_printf)(void *, const char *, ...); /* printf routine */ 3087c478bd9Sstevel@tonic-gate 309986fd29aSsetje /* 310986fd29aSsetje * Standalone function pointers for use within krtld. 311986fd29aSsetje * Many platforms implement optimized platmod versions of 312986fd29aSsetje * utilities such as bcopy and any such are not yet available 313986fd29aSsetje * until the kernel is more completely stitched together. 314986fd29aSsetje * See kobj_impl.h 315986fd29aSsetje */ 316986fd29aSsetje void (*kobj_bcopy)(const void *, void *, size_t); 317986fd29aSsetje void (*kobj_bzero)(void *, size_t); 318986fd29aSsetje size_t (*kobj_strlcat)(char *, const char *, size_t); 319986fd29aSsetje 3207c478bd9Sstevel@tonic-gate static kobj_stat_t kobj_stat; 3217c478bd9Sstevel@tonic-gate 3227c478bd9Sstevel@tonic-gate #define MINALIGN 8 /* at least a double-word */ 3237c478bd9Sstevel@tonic-gate 3247c478bd9Sstevel@tonic-gate int 3257c478bd9Sstevel@tonic-gate get_weakish_int(int *ip) 3267c478bd9Sstevel@tonic-gate { 3277c478bd9Sstevel@tonic-gate if (standalone) 3287c478bd9Sstevel@tonic-gate return (0); 3297c478bd9Sstevel@tonic-gate return (ip == NULL ? 0 : *ip); 3307c478bd9Sstevel@tonic-gate } 3317c478bd9Sstevel@tonic-gate 3327c478bd9Sstevel@tonic-gate static void * 3337c478bd9Sstevel@tonic-gate get_weakish_pointer(void **ptrp) 3347c478bd9Sstevel@tonic-gate { 3357c478bd9Sstevel@tonic-gate if (standalone) 3367c478bd9Sstevel@tonic-gate return (0); 3377c478bd9Sstevel@tonic-gate return (ptrp == NULL ? 0 : *ptrp); 3387c478bd9Sstevel@tonic-gate } 3397c478bd9Sstevel@tonic-gate 3407c478bd9Sstevel@tonic-gate /* 3417c478bd9Sstevel@tonic-gate * XXX fix dependencies on "kernel"; this should work 3427c478bd9Sstevel@tonic-gate * for other standalone binaries as well. 3437c478bd9Sstevel@tonic-gate * 3447c478bd9Sstevel@tonic-gate * XXX Fix hashing code to use one pointer to 3457c478bd9Sstevel@tonic-gate * hash entries. 3467c478bd9Sstevel@tonic-gate * |----------| 3477c478bd9Sstevel@tonic-gate * | nbuckets | 3487c478bd9Sstevel@tonic-gate * |----------| 3497c478bd9Sstevel@tonic-gate * | nchains | 3507c478bd9Sstevel@tonic-gate * |----------| 3517c478bd9Sstevel@tonic-gate * | bucket[] | 3527c478bd9Sstevel@tonic-gate * |----------| 3537c478bd9Sstevel@tonic-gate * | chain[] | 3547c478bd9Sstevel@tonic-gate * |----------| 3557c478bd9Sstevel@tonic-gate */ 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate /* 3587c478bd9Sstevel@tonic-gate * Load, bind and relocate all modules that 3597c478bd9Sstevel@tonic-gate * form the primary kernel. At this point, our 3607c478bd9Sstevel@tonic-gate * externals have not been relocated. 3617c478bd9Sstevel@tonic-gate */ 3627c478bd9Sstevel@tonic-gate void 3637c478bd9Sstevel@tonic-gate kobj_init( 3647c478bd9Sstevel@tonic-gate void *romvec, 3657c478bd9Sstevel@tonic-gate void *dvec, 3667c478bd9Sstevel@tonic-gate struct bootops *bootvec, 3677c478bd9Sstevel@tonic-gate val_t *bootaux) 3687c478bd9Sstevel@tonic-gate { 3697c478bd9Sstevel@tonic-gate struct module *mp; 3707c478bd9Sstevel@tonic-gate struct modctl *modp; 3717c478bd9Sstevel@tonic-gate Addr entry; 372ae115bc7Smrj char filename[MAXPATHLEN]; 3737c478bd9Sstevel@tonic-gate 3747c478bd9Sstevel@tonic-gate /* 3757c478bd9Sstevel@tonic-gate * Save these to pass on to 3767c478bd9Sstevel@tonic-gate * the booted standalone. 3777c478bd9Sstevel@tonic-gate */ 3787c478bd9Sstevel@tonic-gate romp = romvec; 3797c478bd9Sstevel@tonic-gate dbvec = dvec; 3807c478bd9Sstevel@tonic-gate 3817c478bd9Sstevel@tonic-gate ops = bootvec; 382986fd29aSsetje kobj_setup_standalone_vectors(); 383986fd29aSsetje 384ae115bc7Smrj KOBJ_MARK("Entered kobj_init()"); 3857c478bd9Sstevel@tonic-gate 386ae115bc7Smrj (void) BOP_GETPROP(ops, "whoami", filename); 3877c478bd9Sstevel@tonic-gate 3887c478bd9Sstevel@tonic-gate /* 3897c478bd9Sstevel@tonic-gate * We don't support standalone debuggers anymore. The use of kadb 3907c478bd9Sstevel@tonic-gate * will interfere with the later use of kmdb. Let the user mend 3917c478bd9Sstevel@tonic-gate * their ways now. Users will reach this message if they still 3927c478bd9Sstevel@tonic-gate * have the kadb binary on their system (perhaps they used an old 3937c478bd9Sstevel@tonic-gate * bfu, or maybe they intentionally copied it there) and have 3947c478bd9Sstevel@tonic-gate * specified its use in a way that eluded our checking in the boot 3957c478bd9Sstevel@tonic-gate * program. 3967c478bd9Sstevel@tonic-gate */ 3977c478bd9Sstevel@tonic-gate if (dvec != NULL) { 3987c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\nWARNING: Standalone debuggers such as " 3997c478bd9Sstevel@tonic-gate "kadb are no longer supported\n\n"); 4007c478bd9Sstevel@tonic-gate goto fail; 4017c478bd9Sstevel@tonic-gate } 4027c478bd9Sstevel@tonic-gate 403986fd29aSsetje #if defined(_OBP) 404986fd29aSsetje /* 405986fd29aSsetje * OBP allows us to read both the ramdisk and 406986fd29aSsetje * the underlying root fs when root is a disk. 407986fd29aSsetje * This can lower incidences of unbootable systems 408986fd29aSsetje * when the archive is out-of-date with the /etc 409986fd29aSsetje * state files. 410986fd29aSsetje */ 411986fd29aSsetje if (BOP_MOUNTROOT() != BOOT_SVC_OK) { 412986fd29aSsetje _kobj_printf(ops, "can't mount boot fs\n"); 413986fd29aSsetje goto fail; 414986fd29aSsetje } 415986fd29aSsetje #else 4167c478bd9Sstevel@tonic-gate { 4177c478bd9Sstevel@tonic-gate /* on x86, we always boot with a ramdisk */ 4187c478bd9Sstevel@tonic-gate (void) kobj_boot_mountroot(); 419ae115bc7Smrj 420ae115bc7Smrj /* 421ae115bc7Smrj * Now that the ramdisk is mounted, finish boot property 422ae115bc7Smrj * initialization. 423ae115bc7Smrj */ 424ae115bc7Smrj boot_prop_finish(); 4257c478bd9Sstevel@tonic-gate } 4267c478bd9Sstevel@tonic-gate 427ae115bc7Smrj #if !defined(_UNIX_KRTLD) 428ae115bc7Smrj /* 429986fd29aSsetje * 'unix' is linked together with 'krtld' into one executable and 430ae115bc7Smrj * the early boot code does -not- hand us any of the dynamic metadata 431ae115bc7Smrj * about the executable. In particular, it does not read in, map or 432ae115bc7Smrj * otherwise look at the program headers. We fake all that up now. 433ae115bc7Smrj * 434ae115bc7Smrj * We do this early as DTrace static probes and tnf probes both call 435ae115bc7Smrj * undefined references. We have to process those relocations before 436ae115bc7Smrj * calling any of them. 437986fd29aSsetje * 438986fd29aSsetje * OBP tells kobj_start() where the ELF image is in memory, so it 439986fd29aSsetje * synthesized bootaux before kobj_init() was called 440ae115bc7Smrj */ 441ae115bc7Smrj if (bootaux[BA_PHDR].ba_ptr == NULL) 442ae115bc7Smrj synthetic_bootaux(filename, bootaux); 443986fd29aSsetje 444986fd29aSsetje #endif /* !_UNIX_KRTLD */ 445986fd29aSsetje #endif /* _OBP */ 446ae115bc7Smrj 447ae115bc7Smrj /* 448ae115bc7Smrj * Save the interesting attribute-values 449ae115bc7Smrj * (scanned by kobj_boot). 450ae115bc7Smrj */ 451ae115bc7Smrj attr_val(bootaux); 452ae115bc7Smrj 4537c478bd9Sstevel@tonic-gate /* 4547c478bd9Sstevel@tonic-gate * Set the module search path. 4557c478bd9Sstevel@tonic-gate */ 456ae115bc7Smrj kobj_module_path = getmodpath(filename); 4577c478bd9Sstevel@tonic-gate 4587c478bd9Sstevel@tonic-gate boot_cpu_compatible_list = find_libmacro("CPU"); 4597c478bd9Sstevel@tonic-gate 4607c478bd9Sstevel@tonic-gate /* 4617c478bd9Sstevel@tonic-gate * These two modules have actually been 4627c478bd9Sstevel@tonic-gate * loaded by boot, but we finish the job 4637c478bd9Sstevel@tonic-gate * by introducing them into the world of 4647c478bd9Sstevel@tonic-gate * loadable modules. 4657c478bd9Sstevel@tonic-gate */ 4667c478bd9Sstevel@tonic-gate 467ae115bc7Smrj mp = load_exec(bootaux, filename); 4687c478bd9Sstevel@tonic-gate load_linker(bootaux); 4697c478bd9Sstevel@tonic-gate 4707c478bd9Sstevel@tonic-gate /* 4717c478bd9Sstevel@tonic-gate * Load all the primary dependent modules. 4727c478bd9Sstevel@tonic-gate */ 4737c478bd9Sstevel@tonic-gate if (load_primary(mp, KOBJ_LM_PRIMARY) == -1) 4747c478bd9Sstevel@tonic-gate goto fail; 4757c478bd9Sstevel@tonic-gate 4767c478bd9Sstevel@tonic-gate /* 4777c478bd9Sstevel@tonic-gate * Glue it together. 4787c478bd9Sstevel@tonic-gate */ 4797c478bd9Sstevel@tonic-gate if (bind_primary(bootaux, KOBJ_LM_PRIMARY) == -1) 4807c478bd9Sstevel@tonic-gate goto fail; 4817c478bd9Sstevel@tonic-gate 4827c478bd9Sstevel@tonic-gate entry = bootaux[BA_ENTRY].ba_val; 4837c478bd9Sstevel@tonic-gate 4847c478bd9Sstevel@tonic-gate /* 4857c478bd9Sstevel@tonic-gate * Get the boot flags 4867c478bd9Sstevel@tonic-gate */ 4877c478bd9Sstevel@tonic-gate bootflags(ops); 4887c478bd9Sstevel@tonic-gate 4897c478bd9Sstevel@tonic-gate if (boothowto & RB_VERBOSE) 4907c478bd9Sstevel@tonic-gate kobj_lm_dump(KOBJ_LM_PRIMARY); 4917c478bd9Sstevel@tonic-gate 4927c478bd9Sstevel@tonic-gate kobj_kdi_init(); 4937c478bd9Sstevel@tonic-gate 4947c478bd9Sstevel@tonic-gate if (boothowto & RB_KMDB) { 4957c478bd9Sstevel@tonic-gate if (load_kmdb(bootaux) < 0) 4967c478bd9Sstevel@tonic-gate goto fail; 4977c478bd9Sstevel@tonic-gate } 4987c478bd9Sstevel@tonic-gate 4997c478bd9Sstevel@tonic-gate /* 5007c478bd9Sstevel@tonic-gate * Post setup. 5017c478bd9Sstevel@tonic-gate */ 5027c478bd9Sstevel@tonic-gate s_text = _text; 5037c478bd9Sstevel@tonic-gate e_text = _etext; 5047c478bd9Sstevel@tonic-gate s_data = _data; 5057c478bd9Sstevel@tonic-gate e_data = _edata; 5067c478bd9Sstevel@tonic-gate 5077c478bd9Sstevel@tonic-gate kobj_sync_instruction_memory(s_text, e_text - s_text); 5087c478bd9Sstevel@tonic-gate 5097c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 5107c478bd9Sstevel@tonic-gate if (kobj_debug & D_DEBUG) 5117c478bd9Sstevel@tonic-gate _kobj_printf(ops, 5127c478bd9Sstevel@tonic-gate "krtld: transferring control to: 0x%p\n", entry); 5137c478bd9Sstevel@tonic-gate #endif 5147c478bd9Sstevel@tonic-gate 5157c478bd9Sstevel@tonic-gate /* 5167c478bd9Sstevel@tonic-gate * Make sure the mod system knows about the modules already loaded. 5177c478bd9Sstevel@tonic-gate */ 5187c478bd9Sstevel@tonic-gate last_module_id = kobj_last_module_id; 5197c478bd9Sstevel@tonic-gate bcopy(kobj_modules, &modules, sizeof (modules)); 5207c478bd9Sstevel@tonic-gate modp = &modules; 5217c478bd9Sstevel@tonic-gate do { 5227c478bd9Sstevel@tonic-gate if (modp->mod_next == kobj_modules) 5237c478bd9Sstevel@tonic-gate modp->mod_next = &modules; 5247c478bd9Sstevel@tonic-gate if (modp->mod_prev == kobj_modules) 5257c478bd9Sstevel@tonic-gate modp->mod_prev = &modules; 5267c478bd9Sstevel@tonic-gate } while ((modp = modp->mod_next) != &modules); 5277c478bd9Sstevel@tonic-gate 5287c478bd9Sstevel@tonic-gate standalone = 0; 5297c478bd9Sstevel@tonic-gate 530986fd29aSsetje #ifdef KOBJ_DEBUG 531986fd29aSsetje if (kobj_debug & D_DEBUG) 532986fd29aSsetje _kobj_printf(ops, 533986fd29aSsetje "krtld: really transferring control to: 0x%p\n", entry); 5347c478bd9Sstevel@tonic-gate #endif 5357c478bd9Sstevel@tonic-gate 536986fd29aSsetje /* restore printf/bcopy/bzero vectors before returning */ 537986fd29aSsetje kobj_restore_vectors(); 538986fd29aSsetje 539986fd29aSsetje #if defined(_DBOOT) 540986fd29aSsetje /* 541986fd29aSsetje * krtld was called from a dboot ELF section, the embedded 542986fd29aSsetje * dboot code contains the real entry via bootaux 543986fd29aSsetje */ 5447c478bd9Sstevel@tonic-gate exitto((caddr_t)entry); 545986fd29aSsetje #else 546986fd29aSsetje /* 547986fd29aSsetje * krtld was directly called from startup 548986fd29aSsetje */ 549986fd29aSsetje return; 550986fd29aSsetje #endif 551986fd29aSsetje 5527c478bd9Sstevel@tonic-gate fail: 5537c478bd9Sstevel@tonic-gate 5547c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: error during initial load/link phase\n"); 555c8cefa24Sjosephb 556c8cefa24Sjosephb #if !defined(_UNIX_KRTLD) 557c8cefa24Sjosephb _kobj_printf(ops, "\n"); 558c8cefa24Sjosephb _kobj_printf(ops, "krtld could neither locate nor resolve symbols" 559c8cefa24Sjosephb " for:\n"); 560c8cefa24Sjosephb _kobj_printf(ops, " %s\n", filename); 561c8cefa24Sjosephb _kobj_printf(ops, "in the boot archive. Please verify that this" 562c8cefa24Sjosephb " file\n"); 563c8cefa24Sjosephb _kobj_printf(ops, "matches what is found in the boot archive.\n"); 564c8cefa24Sjosephb _kobj_printf(ops, "You may need to boot using the Solaris failsafe to" 565c8cefa24Sjosephb " fix this.\n"); 566c8cefa24Sjosephb bop_panic("Unable to boot"); 567c8cefa24Sjosephb #endif 5687c478bd9Sstevel@tonic-gate } 5697c478bd9Sstevel@tonic-gate 570986fd29aSsetje #if !defined(_UNIX_KRTLD) && !defined(_OBP) 571ae115bc7Smrj /* 572986fd29aSsetje * Synthesize additional metadata that describes the executable if 573986fd29aSsetje * krtld's caller didn't do it. 574ae115bc7Smrj * 575ae115bc7Smrj * (When the dynamic executable has an interpreter, the boot program 576ae115bc7Smrj * does all this for us. Where we don't have an interpreter, (or a 577ae115bc7Smrj * even a boot program, perhaps) we have to do this for ourselves.) 578ae115bc7Smrj */ 579ae115bc7Smrj static void 580ae115bc7Smrj synthetic_bootaux(char *filename, val_t *bootaux) 581ae115bc7Smrj { 582ae115bc7Smrj Ehdr ehdr; 583ae115bc7Smrj caddr_t phdrbase; 584ae115bc7Smrj struct _buf *file; 585ae115bc7Smrj int i, n; 586ae115bc7Smrj 587ae115bc7Smrj /* 588ae115bc7Smrj * Elf header 589ae115bc7Smrj */ 590ae115bc7Smrj KOBJ_MARK("synthetic_bootaux()"); 591ae115bc7Smrj KOBJ_MARK(filename); 592ae115bc7Smrj file = kobj_open_file(filename); 593ae115bc7Smrj if (file == (struct _buf *)-1) { 594ae115bc7Smrj _kobj_printf(ops, "krtld: failed to open '%s'\n", filename); 595ae115bc7Smrj return; 596ae115bc7Smrj } 597ae115bc7Smrj KOBJ_MARK("reading program headers"); 598ae115bc7Smrj if (kobj_read_file(file, (char *)&ehdr, sizeof (ehdr), 0) < 0) { 599ae115bc7Smrj _kobj_printf(ops, "krtld: %s: failed to read ehder\n", 600ae115bc7Smrj filename); 601ae115bc7Smrj return; 602ae115bc7Smrj } 603ae115bc7Smrj 604ae115bc7Smrj /* 605ae115bc7Smrj * Program headers 606ae115bc7Smrj */ 607ae115bc7Smrj bootaux[BA_PHNUM].ba_val = ehdr.e_phnum; 608ae115bc7Smrj bootaux[BA_PHENT].ba_val = ehdr.e_phentsize; 609ae115bc7Smrj n = ehdr.e_phentsize * ehdr.e_phnum; 610ae115bc7Smrj 611ae115bc7Smrj phdrbase = kobj_alloc(n, KM_WAIT | KM_TMP); 612ae115bc7Smrj 613ae115bc7Smrj if (kobj_read_file(file, phdrbase, n, ehdr.e_phoff) < 0) { 614ae115bc7Smrj _kobj_printf(ops, "krtld: %s: failed to read phdrs\n", 615ae115bc7Smrj filename); 616ae115bc7Smrj return; 617ae115bc7Smrj } 618ae115bc7Smrj bootaux[BA_PHDR].ba_ptr = phdrbase; 619ae115bc7Smrj kobj_close_file(file); 620ae115bc7Smrj KOBJ_MARK("closed file"); 621ae115bc7Smrj 622ae115bc7Smrj /* 623ae115bc7Smrj * Find the dynamic section address 624ae115bc7Smrj */ 625ae115bc7Smrj for (i = 0; i < ehdr.e_phnum; i++) { 626ae115bc7Smrj Phdr *phdr = (Phdr *)(phdrbase + ehdr.e_phentsize * i); 627ae115bc7Smrj 628ae115bc7Smrj if (phdr->p_type == PT_DYNAMIC) { 629ae115bc7Smrj bootaux[BA_DYNAMIC].ba_ptr = (void *)phdr->p_vaddr; 630ae115bc7Smrj break; 631ae115bc7Smrj } 632ae115bc7Smrj } 633ae115bc7Smrj KOBJ_MARK("synthetic_bootaux() done"); 634ae115bc7Smrj } 635986fd29aSsetje #endif /* !_UNIX_KRTLD && !_OBP */ 636ae115bc7Smrj 6377c478bd9Sstevel@tonic-gate /* 6387c478bd9Sstevel@tonic-gate * Set up any global information derived 6397c478bd9Sstevel@tonic-gate * from attribute/values in the boot or 6407c478bd9Sstevel@tonic-gate * aux vector. 6417c478bd9Sstevel@tonic-gate */ 6427c478bd9Sstevel@tonic-gate static void 6437c478bd9Sstevel@tonic-gate attr_val(val_t *bootaux) 6447c478bd9Sstevel@tonic-gate { 6457c478bd9Sstevel@tonic-gate Phdr *phdr; 6467c478bd9Sstevel@tonic-gate int phnum, phsize; 6477c478bd9Sstevel@tonic-gate int i; 6487c478bd9Sstevel@tonic-gate 649ae115bc7Smrj KOBJ_MARK("attr_val()"); 6507c478bd9Sstevel@tonic-gate kobj_mmu_pagesize = bootaux[BA_PAGESZ].ba_val; 6517c478bd9Sstevel@tonic-gate lg_pagesize = bootaux[BA_LPAGESZ].ba_val; 6527c478bd9Sstevel@tonic-gate use_iflush = bootaux[BA_IFLUSH].ba_val; 6537c478bd9Sstevel@tonic-gate 6547c478bd9Sstevel@tonic-gate phdr = (Phdr *)bootaux[BA_PHDR].ba_ptr; 6557c478bd9Sstevel@tonic-gate phnum = bootaux[BA_PHNUM].ba_val; 6567c478bd9Sstevel@tonic-gate phsize = bootaux[BA_PHENT].ba_val; 6577c478bd9Sstevel@tonic-gate for (i = 0; i < phnum; i++) { 6587c478bd9Sstevel@tonic-gate phdr = (Phdr *)(bootaux[BA_PHDR].ba_val + i * phsize); 6597c478bd9Sstevel@tonic-gate 660986fd29aSsetje if (phdr->p_type != PT_LOAD) { 6617c478bd9Sstevel@tonic-gate continue; 662986fd29aSsetje } 6637c478bd9Sstevel@tonic-gate /* 6647c478bd9Sstevel@tonic-gate * Bounds of the various segments. 6657c478bd9Sstevel@tonic-gate */ 6667c478bd9Sstevel@tonic-gate if (!(phdr->p_flags & PF_X)) { 667986fd29aSsetje #if defined(_RELSEG) 668986fd29aSsetje /* 669986fd29aSsetje * sparc kernel puts the dynamic info 670986fd29aSsetje * into a separate segment, which is 671986fd29aSsetje * free'd in bop_fini() 672986fd29aSsetje */ 673986fd29aSsetje ASSERT(phdr->p_vaddr != 0); 6747c478bd9Sstevel@tonic-gate dynseg = phdr->p_vaddr; 675986fd29aSsetje dynsize = phdr->p_memsz; 676ae115bc7Smrj #else 677ae115bc7Smrj ASSERT(phdr->p_vaddr == 0); 678ae115bc7Smrj #endif 6797c478bd9Sstevel@tonic-gate } else { 6807c478bd9Sstevel@tonic-gate if (phdr->p_flags & PF_W) { 6817c478bd9Sstevel@tonic-gate _data = (caddr_t)phdr->p_vaddr; 6827c478bd9Sstevel@tonic-gate _edata = _data + phdr->p_memsz; 6837c478bd9Sstevel@tonic-gate } else { 6847c478bd9Sstevel@tonic-gate _text = (caddr_t)phdr->p_vaddr; 6857c478bd9Sstevel@tonic-gate _etext = _text + phdr->p_memsz; 6867c478bd9Sstevel@tonic-gate } 6877c478bd9Sstevel@tonic-gate } 6887c478bd9Sstevel@tonic-gate } 6897c478bd9Sstevel@tonic-gate 6907c478bd9Sstevel@tonic-gate /* To do the kobj_alloc, _edata needs to be set. */ 6917c478bd9Sstevel@tonic-gate for (i = 0; i < NLIBMACROS; i++) { 6927c478bd9Sstevel@tonic-gate if (bootaux[libmacros[i].lmi_ba_index].ba_ptr != NULL) { 6937c478bd9Sstevel@tonic-gate libmacros[i].lmi_list = kobj_alloc( 6947c478bd9Sstevel@tonic-gate strlen(bootaux[libmacros[i].lmi_ba_index].ba_ptr) + 6957c478bd9Sstevel@tonic-gate 1, KM_WAIT); 6967c478bd9Sstevel@tonic-gate (void) strcpy(libmacros[i].lmi_list, 6977c478bd9Sstevel@tonic-gate bootaux[libmacros[i].lmi_ba_index].ba_ptr); 6987c478bd9Sstevel@tonic-gate } 6997c478bd9Sstevel@tonic-gate libmacros[i].lmi_macrolen = strlen(libmacros[i].lmi_macroname); 7007c478bd9Sstevel@tonic-gate } 7017c478bd9Sstevel@tonic-gate } 7027c478bd9Sstevel@tonic-gate 7037c478bd9Sstevel@tonic-gate /* 7047c478bd9Sstevel@tonic-gate * Set up the booted executable. 7057c478bd9Sstevel@tonic-gate */ 7067c478bd9Sstevel@tonic-gate static struct module * 707ae115bc7Smrj load_exec(val_t *bootaux, char *filename) 7087c478bd9Sstevel@tonic-gate { 7097c478bd9Sstevel@tonic-gate struct modctl *cp; 7107c478bd9Sstevel@tonic-gate struct module *mp; 7117c478bd9Sstevel@tonic-gate Dyn *dyn; 7127c478bd9Sstevel@tonic-gate Sym *sp; 7137c478bd9Sstevel@tonic-gate int i, lsize, osize, nsize, allocsize; 7147c478bd9Sstevel@tonic-gate char *libname, *tmp; 715986fd29aSsetje char path[MAXPATHLEN]; 7167c478bd9Sstevel@tonic-gate 717ae115bc7Smrj #ifdef KOBJ_DEBUG 718ae115bc7Smrj if (kobj_debug & D_DEBUG) 719ae115bc7Smrj _kobj_printf(ops, "module path '%s'\n", kobj_module_path); 720ae115bc7Smrj #endif 721ae115bc7Smrj 722ae115bc7Smrj KOBJ_MARK("add_primary"); 7237c478bd9Sstevel@tonic-gate cp = add_primary(filename, KOBJ_LM_PRIMARY); 7247c478bd9Sstevel@tonic-gate 725ae115bc7Smrj KOBJ_MARK("struct module"); 7267c478bd9Sstevel@tonic-gate mp = kobj_zalloc(sizeof (struct module), KM_WAIT); 7277c478bd9Sstevel@tonic-gate cp->mod_mp = mp; 7287c478bd9Sstevel@tonic-gate 7297c478bd9Sstevel@tonic-gate /* 7307c478bd9Sstevel@tonic-gate * We don't have the following information 7317c478bd9Sstevel@tonic-gate * since this module is an executable and not 7327c478bd9Sstevel@tonic-gate * a relocatable .o. 7337c478bd9Sstevel@tonic-gate */ 7347c478bd9Sstevel@tonic-gate mp->symtbl_section = 0; 7357c478bd9Sstevel@tonic-gate mp->shdrs = NULL; 7367c478bd9Sstevel@tonic-gate mp->strhdr = NULL; 7377c478bd9Sstevel@tonic-gate 7387c478bd9Sstevel@tonic-gate /* 7397c478bd9Sstevel@tonic-gate * Since this module is the only exception, 7407c478bd9Sstevel@tonic-gate * we cons up some section headers. 7417c478bd9Sstevel@tonic-gate */ 742ae115bc7Smrj KOBJ_MARK("symhdr"); 7437c478bd9Sstevel@tonic-gate mp->symhdr = kobj_zalloc(sizeof (Shdr), KM_WAIT); 744ae115bc7Smrj 745ae115bc7Smrj KOBJ_MARK("strhdr"); 7467c478bd9Sstevel@tonic-gate mp->strhdr = kobj_zalloc(sizeof (Shdr), KM_WAIT); 7477c478bd9Sstevel@tonic-gate 7487c478bd9Sstevel@tonic-gate mp->symhdr->sh_type = SHT_SYMTAB; 7497c478bd9Sstevel@tonic-gate mp->strhdr->sh_type = SHT_STRTAB; 7507c478bd9Sstevel@tonic-gate /* 7517c478bd9Sstevel@tonic-gate * Scan the dynamic structure. 7527c478bd9Sstevel@tonic-gate */ 7537c478bd9Sstevel@tonic-gate for (dyn = (Dyn *) bootaux[BA_DYNAMIC].ba_ptr; 7547c478bd9Sstevel@tonic-gate dyn->d_tag != DT_NULL; dyn++) { 7557c478bd9Sstevel@tonic-gate switch (dyn->d_tag) { 7567c478bd9Sstevel@tonic-gate case DT_SYMTAB: 7577c478bd9Sstevel@tonic-gate mp->symspace = mp->symtbl = (char *)dyn->d_un.d_ptr; 7587c478bd9Sstevel@tonic-gate mp->symhdr->sh_addr = dyn->d_un.d_ptr; 7597c478bd9Sstevel@tonic-gate break; 7607c478bd9Sstevel@tonic-gate case DT_HASH: 7617c478bd9Sstevel@tonic-gate mp->nsyms = *((uint_t *)dyn->d_un.d_ptr + 1); 7627c478bd9Sstevel@tonic-gate mp->hashsize = *(uint_t *)dyn->d_un.d_ptr; 7637c478bd9Sstevel@tonic-gate break; 7647c478bd9Sstevel@tonic-gate case DT_STRTAB: 7657c478bd9Sstevel@tonic-gate mp->strings = (char *)dyn->d_un.d_ptr; 7667c478bd9Sstevel@tonic-gate mp->strhdr->sh_addr = dyn->d_un.d_ptr; 7677c478bd9Sstevel@tonic-gate break; 7687c478bd9Sstevel@tonic-gate case DT_STRSZ: 7697c478bd9Sstevel@tonic-gate mp->strhdr->sh_size = dyn->d_un.d_val; 7707c478bd9Sstevel@tonic-gate break; 7717c478bd9Sstevel@tonic-gate case DT_SYMENT: 7727c478bd9Sstevel@tonic-gate mp->symhdr->sh_entsize = dyn->d_un.d_val; 7737c478bd9Sstevel@tonic-gate break; 7747c478bd9Sstevel@tonic-gate } 7757c478bd9Sstevel@tonic-gate } 7767c478bd9Sstevel@tonic-gate 7777c478bd9Sstevel@tonic-gate /* 7787c478bd9Sstevel@tonic-gate * Collapse any DT_NEEDED entries into one string. 7797c478bd9Sstevel@tonic-gate */ 7807c478bd9Sstevel@tonic-gate nsize = osize = 0; 7817c478bd9Sstevel@tonic-gate allocsize = MAXPATHLEN; 7827c478bd9Sstevel@tonic-gate 783ae115bc7Smrj KOBJ_MARK("depends_on"); 7847c478bd9Sstevel@tonic-gate mp->depends_on = kobj_alloc(allocsize, KM_WAIT); 7857c478bd9Sstevel@tonic-gate 7867c478bd9Sstevel@tonic-gate for (dyn = (Dyn *) bootaux[BA_DYNAMIC].ba_ptr; 7877c478bd9Sstevel@tonic-gate dyn->d_tag != DT_NULL; dyn++) 7887c478bd9Sstevel@tonic-gate if (dyn->d_tag == DT_NEEDED) { 7897c478bd9Sstevel@tonic-gate char *_lib; 7907c478bd9Sstevel@tonic-gate 7917c478bd9Sstevel@tonic-gate libname = mp->strings + dyn->d_un.d_val; 7927c478bd9Sstevel@tonic-gate if (strchr(libname, '$') != NULL) { 7937c478bd9Sstevel@tonic-gate if ((_lib = expand_libmacro(libname, 794986fd29aSsetje path, path)) != NULL) 7957c478bd9Sstevel@tonic-gate libname = _lib; 7967c478bd9Sstevel@tonic-gate else 7977c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: " 7987c478bd9Sstevel@tonic-gate "load_exec: fail to " 7997c478bd9Sstevel@tonic-gate "expand %s\n", libname); 8007c478bd9Sstevel@tonic-gate } 8017c478bd9Sstevel@tonic-gate lsize = strlen(libname); 8027c478bd9Sstevel@tonic-gate nsize += lsize; 8037c478bd9Sstevel@tonic-gate if (nsize + 1 > allocsize) { 804ae115bc7Smrj KOBJ_MARK("grow depends_on"); 8057c478bd9Sstevel@tonic-gate tmp = kobj_alloc(allocsize + MAXPATHLEN, 8067c478bd9Sstevel@tonic-gate KM_WAIT); 8077c478bd9Sstevel@tonic-gate bcopy(mp->depends_on, tmp, osize); 8087c478bd9Sstevel@tonic-gate kobj_free(mp->depends_on, allocsize); 8097c478bd9Sstevel@tonic-gate mp->depends_on = tmp; 8107c478bd9Sstevel@tonic-gate allocsize += MAXPATHLEN; 8117c478bd9Sstevel@tonic-gate } 8127c478bd9Sstevel@tonic-gate bcopy(libname, mp->depends_on + osize, lsize); 813da6c28aaSamw *(mp->depends_on + nsize) = ' '; /* separate */ 8147c478bd9Sstevel@tonic-gate nsize++; 8157c478bd9Sstevel@tonic-gate osize = nsize; 8167c478bd9Sstevel@tonic-gate } 8177c478bd9Sstevel@tonic-gate if (nsize) { 8187c478bd9Sstevel@tonic-gate mp->depends_on[nsize - 1] = '\0'; /* terminate the string */ 8197c478bd9Sstevel@tonic-gate /* 8207c478bd9Sstevel@tonic-gate * alloc with exact size and copy whatever it got over 8217c478bd9Sstevel@tonic-gate */ 822ae115bc7Smrj KOBJ_MARK("realloc depends_on"); 8237c478bd9Sstevel@tonic-gate tmp = kobj_alloc(nsize, KM_WAIT); 8247c478bd9Sstevel@tonic-gate bcopy(mp->depends_on, tmp, nsize); 8257c478bd9Sstevel@tonic-gate kobj_free(mp->depends_on, allocsize); 8267c478bd9Sstevel@tonic-gate mp->depends_on = tmp; 8277c478bd9Sstevel@tonic-gate } else { 8287c478bd9Sstevel@tonic-gate kobj_free(mp->depends_on, allocsize); 8297c478bd9Sstevel@tonic-gate mp->depends_on = NULL; 8307c478bd9Sstevel@tonic-gate } 8317c478bd9Sstevel@tonic-gate 8327c478bd9Sstevel@tonic-gate mp->flags = KOBJ_EXEC|KOBJ_PRIM; /* NOT a relocatable .o */ 8337c478bd9Sstevel@tonic-gate mp->symhdr->sh_size = mp->nsyms * mp->symhdr->sh_entsize; 8347c478bd9Sstevel@tonic-gate /* 8357c478bd9Sstevel@tonic-gate * We allocate our own table since we don't 8367c478bd9Sstevel@tonic-gate * hash undefined references. 8377c478bd9Sstevel@tonic-gate */ 838ae115bc7Smrj KOBJ_MARK("chains"); 8397c478bd9Sstevel@tonic-gate mp->chains = kobj_zalloc(mp->nsyms * sizeof (symid_t), KM_WAIT); 840ae115bc7Smrj KOBJ_MARK("buckets"); 8417c478bd9Sstevel@tonic-gate mp->buckets = kobj_zalloc(mp->hashsize * sizeof (symid_t), KM_WAIT); 8427c478bd9Sstevel@tonic-gate 8437c478bd9Sstevel@tonic-gate mp->text = _text; 8447c478bd9Sstevel@tonic-gate mp->data = _data; 845ae115bc7Smrj 846ae115bc7Smrj mp->text_size = _etext - _text; 847ae115bc7Smrj mp->data_size = _edata - _data; 848ae115bc7Smrj 8497c478bd9Sstevel@tonic-gate cp->mod_text = mp->text; 8507c478bd9Sstevel@tonic-gate cp->mod_text_size = mp->text_size; 8517c478bd9Sstevel@tonic-gate 8527c478bd9Sstevel@tonic-gate mp->filename = cp->mod_filename; 8537c478bd9Sstevel@tonic-gate 8547c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 8557c478bd9Sstevel@tonic-gate if (kobj_debug & D_LOADING) { 8567c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: file=%s\n", mp->filename); 8577c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\ttext: 0x%p", mp->text); 8587c478bd9Sstevel@tonic-gate _kobj_printf(ops, " size: 0x%x\n", mp->text_size); 8597c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\tdata: 0x%p", mp->data); 8607c478bd9Sstevel@tonic-gate _kobj_printf(ops, " dsize: 0x%x\n", mp->data_size); 8617c478bd9Sstevel@tonic-gate } 8627c478bd9Sstevel@tonic-gate #endif /* KOBJ_DEBUG */ 8637c478bd9Sstevel@tonic-gate 8647c478bd9Sstevel@tonic-gate /* 8657c478bd9Sstevel@tonic-gate * Insert symbols into the hash table. 8667c478bd9Sstevel@tonic-gate */ 8677c478bd9Sstevel@tonic-gate for (i = 0; i < mp->nsyms; i++) { 8687c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + i * mp->symhdr->sh_entsize); 8697c478bd9Sstevel@tonic-gate 8707c478bd9Sstevel@tonic-gate if (sp->st_name == 0 || sp->st_shndx == SHN_UNDEF) 8717c478bd9Sstevel@tonic-gate continue; 872986fd29aSsetje #if defined(__sparc) 8737c478bd9Sstevel@tonic-gate /* 8747c478bd9Sstevel@tonic-gate * Register symbols are ignored in the kernel 8757c478bd9Sstevel@tonic-gate */ 8767c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sp->st_info) == STT_SPARC_REGISTER) 8777c478bd9Sstevel@tonic-gate continue; 8787c478bd9Sstevel@tonic-gate #endif /* __sparc */ 8797c478bd9Sstevel@tonic-gate 8807c478bd9Sstevel@tonic-gate sym_insert(mp, mp->strings + sp->st_name, i); 8817c478bd9Sstevel@tonic-gate } 8827c478bd9Sstevel@tonic-gate 883ae115bc7Smrj KOBJ_MARK("load_exec done"); 8847c478bd9Sstevel@tonic-gate return (mp); 8857c478bd9Sstevel@tonic-gate } 8867c478bd9Sstevel@tonic-gate 8877c478bd9Sstevel@tonic-gate /* 888ae115bc7Smrj * Set up the linker module (if it's compiled in, LDNAME is NULL) 8897c478bd9Sstevel@tonic-gate */ 8907c478bd9Sstevel@tonic-gate static void 8917c478bd9Sstevel@tonic-gate load_linker(val_t *bootaux) 8927c478bd9Sstevel@tonic-gate { 8937c478bd9Sstevel@tonic-gate struct module *kmp = (struct module *)kobj_modules->mod_mp; 8947c478bd9Sstevel@tonic-gate struct module *mp; 8957c478bd9Sstevel@tonic-gate struct modctl *cp; 8967c478bd9Sstevel@tonic-gate int i; 8977c478bd9Sstevel@tonic-gate Shdr *shp; 8987c478bd9Sstevel@tonic-gate Sym *sp; 8997c478bd9Sstevel@tonic-gate int shsize; 9007c478bd9Sstevel@tonic-gate char *dlname = (char *)bootaux[BA_LDNAME].ba_ptr; 9017c478bd9Sstevel@tonic-gate 902ae115bc7Smrj /* 903ae115bc7Smrj * On some architectures, krtld is compiled into the kernel. 904ae115bc7Smrj */ 905ae115bc7Smrj if (dlname == NULL) 906ae115bc7Smrj return; 907ae115bc7Smrj 9087c478bd9Sstevel@tonic-gate cp = add_primary(dlname, KOBJ_LM_PRIMARY); 9097c478bd9Sstevel@tonic-gate 9107c478bd9Sstevel@tonic-gate mp = kobj_zalloc(sizeof (struct module), KM_WAIT); 9117c478bd9Sstevel@tonic-gate 9127c478bd9Sstevel@tonic-gate cp->mod_mp = mp; 9137c478bd9Sstevel@tonic-gate mp->hdr = *(Ehdr *)bootaux[BA_LDELF].ba_ptr; 9147c478bd9Sstevel@tonic-gate shsize = mp->hdr.e_shentsize * mp->hdr.e_shnum; 9157c478bd9Sstevel@tonic-gate mp->shdrs = kobj_alloc(shsize, KM_WAIT); 9167c478bd9Sstevel@tonic-gate bcopy(bootaux[BA_LDSHDR].ba_ptr, mp->shdrs, shsize); 9177c478bd9Sstevel@tonic-gate 9187c478bd9Sstevel@tonic-gate for (i = 1; i < (int)mp->hdr.e_shnum; i++) { 9197c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + (i * mp->hdr.e_shentsize)); 9207c478bd9Sstevel@tonic-gate 9217c478bd9Sstevel@tonic-gate if (shp->sh_flags & SHF_ALLOC) { 9227c478bd9Sstevel@tonic-gate if (shp->sh_flags & SHF_WRITE) { 9237c478bd9Sstevel@tonic-gate if (mp->data == NULL) 9247c478bd9Sstevel@tonic-gate mp->data = (char *)shp->sh_addr; 9257c478bd9Sstevel@tonic-gate } else if (mp->text == NULL) { 9267c478bd9Sstevel@tonic-gate mp->text = (char *)shp->sh_addr; 9277c478bd9Sstevel@tonic-gate } 9287c478bd9Sstevel@tonic-gate } 9297c478bd9Sstevel@tonic-gate if (shp->sh_type == SHT_SYMTAB) { 9307c478bd9Sstevel@tonic-gate mp->symtbl_section = i; 9317c478bd9Sstevel@tonic-gate mp->symhdr = shp; 9327c478bd9Sstevel@tonic-gate mp->symspace = mp->symtbl = (char *)shp->sh_addr; 9337c478bd9Sstevel@tonic-gate } 9347c478bd9Sstevel@tonic-gate } 9357c478bd9Sstevel@tonic-gate mp->nsyms = mp->symhdr->sh_size / mp->symhdr->sh_entsize; 9367c478bd9Sstevel@tonic-gate mp->flags = KOBJ_INTERP|KOBJ_PRIM; 9377c478bd9Sstevel@tonic-gate mp->strhdr = (Shdr *) 9387c478bd9Sstevel@tonic-gate (mp->shdrs + mp->symhdr->sh_link * mp->hdr.e_shentsize); 9397c478bd9Sstevel@tonic-gate mp->strings = (char *)mp->strhdr->sh_addr; 9407c478bd9Sstevel@tonic-gate mp->hashsize = kobj_gethashsize(mp->nsyms); 9417c478bd9Sstevel@tonic-gate 9427c478bd9Sstevel@tonic-gate mp->symsize = mp->symhdr->sh_size + mp->strhdr->sh_size + sizeof (int) + 9437c478bd9Sstevel@tonic-gate (mp->hashsize + mp->nsyms) * sizeof (symid_t); 9447c478bd9Sstevel@tonic-gate 9457c478bd9Sstevel@tonic-gate mp->chains = kobj_zalloc(mp->nsyms * sizeof (symid_t), KM_WAIT); 9467c478bd9Sstevel@tonic-gate mp->buckets = kobj_zalloc(mp->hashsize * sizeof (symid_t), KM_WAIT); 9477c478bd9Sstevel@tonic-gate 9487c478bd9Sstevel@tonic-gate mp->bss = bootaux[BA_BSS].ba_val; 9497c478bd9Sstevel@tonic-gate mp->bss_align = 0; /* pre-aligned during allocation */ 9507c478bd9Sstevel@tonic-gate mp->bss_size = (uintptr_t)_edata - mp->bss; 9517c478bd9Sstevel@tonic-gate mp->text_size = _etext - mp->text; 9527c478bd9Sstevel@tonic-gate mp->data_size = _edata - mp->data; 9537c478bd9Sstevel@tonic-gate mp->filename = cp->mod_filename; 9547c478bd9Sstevel@tonic-gate cp->mod_text = mp->text; 9557c478bd9Sstevel@tonic-gate cp->mod_text_size = mp->text_size; 9567c478bd9Sstevel@tonic-gate 9577c478bd9Sstevel@tonic-gate /* 9587c478bd9Sstevel@tonic-gate * Now that we've figured out where the linker is, 9597c478bd9Sstevel@tonic-gate * set the limits for the booted object. 9607c478bd9Sstevel@tonic-gate */ 9617c478bd9Sstevel@tonic-gate kmp->text_size = (size_t)(mp->text - kmp->text); 9627c478bd9Sstevel@tonic-gate kmp->data_size = (size_t)(mp->data - kmp->data); 9637c478bd9Sstevel@tonic-gate kobj_modules->mod_text_size = kmp->text_size; 9647c478bd9Sstevel@tonic-gate 9657c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 9667c478bd9Sstevel@tonic-gate if (kobj_debug & D_LOADING) { 9677c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: file=%s\n", mp->filename); 9687c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\ttext:0x%p", mp->text); 9697c478bd9Sstevel@tonic-gate _kobj_printf(ops, " size: 0x%x\n", mp->text_size); 9707c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\tdata:0x%p", mp->data); 9717c478bd9Sstevel@tonic-gate _kobj_printf(ops, " dsize: 0x%x\n", mp->data_size); 9727c478bd9Sstevel@tonic-gate } 9737c478bd9Sstevel@tonic-gate #endif /* KOBJ_DEBUG */ 9747c478bd9Sstevel@tonic-gate 9757c478bd9Sstevel@tonic-gate /* 9767c478bd9Sstevel@tonic-gate * Insert the symbols into the hash table. 9777c478bd9Sstevel@tonic-gate */ 9787c478bd9Sstevel@tonic-gate for (i = 0; i < mp->nsyms; i++) { 9797c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + i * mp->symhdr->sh_entsize); 9807c478bd9Sstevel@tonic-gate 9817c478bd9Sstevel@tonic-gate if (sp->st_name == 0 || sp->st_shndx == SHN_UNDEF) 9827c478bd9Sstevel@tonic-gate continue; 9837c478bd9Sstevel@tonic-gate if (ELF_ST_BIND(sp->st_info) == STB_GLOBAL) { 9847c478bd9Sstevel@tonic-gate if (sp->st_shndx == SHN_COMMON) 9857c478bd9Sstevel@tonic-gate sp->st_shndx = SHN_ABS; 9867c478bd9Sstevel@tonic-gate } 9877c478bd9Sstevel@tonic-gate sym_insert(mp, mp->strings + sp->st_name, i); 9887c478bd9Sstevel@tonic-gate } 9897c478bd9Sstevel@tonic-gate 9907c478bd9Sstevel@tonic-gate } 9917c478bd9Sstevel@tonic-gate 9927c478bd9Sstevel@tonic-gate static kobj_notify_list_t ** 9937c478bd9Sstevel@tonic-gate kobj_notify_lookup(uint_t type) 9947c478bd9Sstevel@tonic-gate { 9957c478bd9Sstevel@tonic-gate ASSERT(type != 0 && type < sizeof (kobj_notifiers) / 9967c478bd9Sstevel@tonic-gate sizeof (kobj_notify_list_t *)); 9977c478bd9Sstevel@tonic-gate 9987c478bd9Sstevel@tonic-gate return (&kobj_notifiers[type]); 9997c478bd9Sstevel@tonic-gate } 10007c478bd9Sstevel@tonic-gate 10017c478bd9Sstevel@tonic-gate int 10027c478bd9Sstevel@tonic-gate kobj_notify_add(kobj_notify_list_t *knp) 10037c478bd9Sstevel@tonic-gate { 10047c478bd9Sstevel@tonic-gate kobj_notify_list_t **knl; 10057c478bd9Sstevel@tonic-gate 10067c478bd9Sstevel@tonic-gate knl = kobj_notify_lookup(knp->kn_type); 10077c478bd9Sstevel@tonic-gate 10087c478bd9Sstevel@tonic-gate knp->kn_next = NULL; 10097c478bd9Sstevel@tonic-gate knp->kn_prev = NULL; 10107c478bd9Sstevel@tonic-gate 10117c478bd9Sstevel@tonic-gate mutex_enter(&kobj_lock); 10127c478bd9Sstevel@tonic-gate 10137c478bd9Sstevel@tonic-gate if (*knl != NULL) { 10147c478bd9Sstevel@tonic-gate (*knl)->kn_prev = knp; 10157c478bd9Sstevel@tonic-gate knp->kn_next = *knl; 10167c478bd9Sstevel@tonic-gate } 10177c478bd9Sstevel@tonic-gate (*knl) = knp; 10187c478bd9Sstevel@tonic-gate 10197c478bd9Sstevel@tonic-gate mutex_exit(&kobj_lock); 10207c478bd9Sstevel@tonic-gate return (0); 10217c478bd9Sstevel@tonic-gate } 10227c478bd9Sstevel@tonic-gate 10237c478bd9Sstevel@tonic-gate int 10247c478bd9Sstevel@tonic-gate kobj_notify_remove(kobj_notify_list_t *knp) 10257c478bd9Sstevel@tonic-gate { 10267c478bd9Sstevel@tonic-gate kobj_notify_list_t **knl = kobj_notify_lookup(knp->kn_type); 10277c478bd9Sstevel@tonic-gate kobj_notify_list_t *tknp; 10287c478bd9Sstevel@tonic-gate 10297c478bd9Sstevel@tonic-gate mutex_enter(&kobj_lock); 10307c478bd9Sstevel@tonic-gate 10317c478bd9Sstevel@tonic-gate /* LINTED */ 10327c478bd9Sstevel@tonic-gate if (tknp = knp->kn_next) 10337c478bd9Sstevel@tonic-gate tknp->kn_prev = knp->kn_prev; 10347c478bd9Sstevel@tonic-gate 10357c478bd9Sstevel@tonic-gate /* LINTED */ 10367c478bd9Sstevel@tonic-gate if (tknp = knp->kn_prev) 10377c478bd9Sstevel@tonic-gate tknp->kn_next = knp->kn_next; 10387c478bd9Sstevel@tonic-gate else 10397c478bd9Sstevel@tonic-gate *knl = knp->kn_next; 10407c478bd9Sstevel@tonic-gate 10417c478bd9Sstevel@tonic-gate mutex_exit(&kobj_lock); 10427c478bd9Sstevel@tonic-gate 10437c478bd9Sstevel@tonic-gate return (0); 10447c478bd9Sstevel@tonic-gate } 10457c478bd9Sstevel@tonic-gate 10467c478bd9Sstevel@tonic-gate /* 10477c478bd9Sstevel@tonic-gate * Notify all interested callbacks of a specified change in module state. 10487c478bd9Sstevel@tonic-gate */ 10497c478bd9Sstevel@tonic-gate static void 10507c478bd9Sstevel@tonic-gate kobj_notify(int type, struct modctl *modp) 10517c478bd9Sstevel@tonic-gate { 10527c478bd9Sstevel@tonic-gate kobj_notify_list_t *knp; 10537c478bd9Sstevel@tonic-gate 10547c478bd9Sstevel@tonic-gate if (modp->mod_loadflags & MOD_NONOTIFY || standalone) 10557c478bd9Sstevel@tonic-gate return; 10567c478bd9Sstevel@tonic-gate 10577c478bd9Sstevel@tonic-gate mutex_enter(&kobj_lock); 10587c478bd9Sstevel@tonic-gate 10597c478bd9Sstevel@tonic-gate for (knp = *(kobj_notify_lookup(type)); knp != NULL; knp = knp->kn_next) 10607c478bd9Sstevel@tonic-gate knp->kn_func(type, modp); 10617c478bd9Sstevel@tonic-gate 10627c478bd9Sstevel@tonic-gate /* 10637c478bd9Sstevel@tonic-gate * KDI notification must be last (it has to allow for work done by the 10647c478bd9Sstevel@tonic-gate * other notification callbacks), so we call it manually. 10657c478bd9Sstevel@tonic-gate */ 10667c478bd9Sstevel@tonic-gate kobj_kdi_mod_notify(type, modp); 10677c478bd9Sstevel@tonic-gate 10687c478bd9Sstevel@tonic-gate mutex_exit(&kobj_lock); 10697c478bd9Sstevel@tonic-gate } 10707c478bd9Sstevel@tonic-gate 10717c478bd9Sstevel@tonic-gate /* 1072986fd29aSsetje * Create the module path. 10737c478bd9Sstevel@tonic-gate */ 10747c478bd9Sstevel@tonic-gate static char * 1075ae115bc7Smrj getmodpath(const char *filename) 10767c478bd9Sstevel@tonic-gate { 1077986fd29aSsetje char *path = kobj_zalloc(MAXPATHLEN, KM_WAIT); 1078ae115bc7Smrj 1079ae115bc7Smrj /* 1080986fd29aSsetje * Platform code gets first crack, then add 1081986fd29aSsetje * the default components 1082ae115bc7Smrj */ 1083986fd29aSsetje mach_modpath(path, filename); 1084986fd29aSsetje if (*path != '\0') 1085ae115bc7Smrj (void) strcat(path, " "); 1086ae115bc7Smrj return (strcat(path, MOD_DEFPATH)); 10877c478bd9Sstevel@tonic-gate } 10887c478bd9Sstevel@tonic-gate 10897c478bd9Sstevel@tonic-gate static struct modctl * 1090ae115bc7Smrj add_primary(const char *filename, int lmid) 10917c478bd9Sstevel@tonic-gate { 10927c478bd9Sstevel@tonic-gate struct modctl *cp; 10937c478bd9Sstevel@tonic-gate 10947c478bd9Sstevel@tonic-gate cp = kobj_zalloc(sizeof (struct modctl), KM_WAIT); 10957c478bd9Sstevel@tonic-gate 10967c478bd9Sstevel@tonic-gate cp->mod_filename = kobj_alloc(strlen(filename) + 1, KM_WAIT); 10977c478bd9Sstevel@tonic-gate 10987c478bd9Sstevel@tonic-gate /* 10997c478bd9Sstevel@tonic-gate * For symbol lookup, we assemble our own 11007c478bd9Sstevel@tonic-gate * modctl list of the primary modules. 11017c478bd9Sstevel@tonic-gate */ 11027c478bd9Sstevel@tonic-gate 11037c478bd9Sstevel@tonic-gate (void) strcpy(cp->mod_filename, filename); 11047c478bd9Sstevel@tonic-gate cp->mod_modname = basename(cp->mod_filename); 11057c478bd9Sstevel@tonic-gate 11067c478bd9Sstevel@tonic-gate /* set values for modinfo assuming that the load will work */ 11077c478bd9Sstevel@tonic-gate cp->mod_prim = 1; 11087c478bd9Sstevel@tonic-gate cp->mod_loaded = 1; 11097c478bd9Sstevel@tonic-gate cp->mod_installed = 1; 11107c478bd9Sstevel@tonic-gate cp->mod_loadcnt = 1; 11117c478bd9Sstevel@tonic-gate cp->mod_loadflags = MOD_NOAUTOUNLOAD; 11127c478bd9Sstevel@tonic-gate 11137c478bd9Sstevel@tonic-gate cp->mod_id = kobj_last_module_id++; 11147c478bd9Sstevel@tonic-gate 11157c478bd9Sstevel@tonic-gate /* 11167c478bd9Sstevel@tonic-gate * Link the module in. We'll pass this info on 11177c478bd9Sstevel@tonic-gate * to the mod squad later. 11187c478bd9Sstevel@tonic-gate */ 11197c478bd9Sstevel@tonic-gate if (kobj_modules == NULL) { 11207c478bd9Sstevel@tonic-gate kobj_modules = cp; 11217c478bd9Sstevel@tonic-gate cp->mod_prev = cp->mod_next = cp; 11227c478bd9Sstevel@tonic-gate } else { 11237c478bd9Sstevel@tonic-gate cp->mod_prev = kobj_modules->mod_prev; 11247c478bd9Sstevel@tonic-gate cp->mod_next = kobj_modules; 11257c478bd9Sstevel@tonic-gate kobj_modules->mod_prev->mod_next = cp; 11267c478bd9Sstevel@tonic-gate kobj_modules->mod_prev = cp; 11277c478bd9Sstevel@tonic-gate } 11287c478bd9Sstevel@tonic-gate 11297c478bd9Sstevel@tonic-gate kobj_lm_append(lmid, cp); 11307c478bd9Sstevel@tonic-gate 11317c478bd9Sstevel@tonic-gate return (cp); 11327c478bd9Sstevel@tonic-gate } 11337c478bd9Sstevel@tonic-gate 11347c478bd9Sstevel@tonic-gate static int 11357c478bd9Sstevel@tonic-gate bind_primary(val_t *bootaux, int lmid) 11367c478bd9Sstevel@tonic-gate { 11377c478bd9Sstevel@tonic-gate struct modctl_list *linkmap = kobj_lm_lookup(lmid); 11387c478bd9Sstevel@tonic-gate struct modctl_list *lp; 11397c478bd9Sstevel@tonic-gate struct module *mp; 11407c478bd9Sstevel@tonic-gate 11417c478bd9Sstevel@tonic-gate /* 11427c478bd9Sstevel@tonic-gate * Do common symbols. 11437c478bd9Sstevel@tonic-gate */ 11447c478bd9Sstevel@tonic-gate for (lp = linkmap; lp; lp = lp->modl_next) { 11457c478bd9Sstevel@tonic-gate mp = mod(lp); 11467c478bd9Sstevel@tonic-gate 11477c478bd9Sstevel@tonic-gate /* 11487c478bd9Sstevel@tonic-gate * Don't do common section relocations for modules that 11497c478bd9Sstevel@tonic-gate * don't need it. 11507c478bd9Sstevel@tonic-gate */ 11517c478bd9Sstevel@tonic-gate if (mp->flags & (KOBJ_EXEC|KOBJ_INTERP)) 11527c478bd9Sstevel@tonic-gate continue; 11537c478bd9Sstevel@tonic-gate 11547c478bd9Sstevel@tonic-gate if (do_common(mp) < 0) 11557c478bd9Sstevel@tonic-gate return (-1); 11567c478bd9Sstevel@tonic-gate } 11577c478bd9Sstevel@tonic-gate 11587c478bd9Sstevel@tonic-gate /* 11597c478bd9Sstevel@tonic-gate * Resolve symbols. 11607c478bd9Sstevel@tonic-gate */ 11617c478bd9Sstevel@tonic-gate for (lp = linkmap; lp; lp = lp->modl_next) { 11627c478bd9Sstevel@tonic-gate mp = mod(lp); 11637c478bd9Sstevel@tonic-gate 11647c478bd9Sstevel@tonic-gate if (do_symbols(mp, 0) < 0) 11657c478bd9Sstevel@tonic-gate return (-1); 11667c478bd9Sstevel@tonic-gate } 11677c478bd9Sstevel@tonic-gate 11687c478bd9Sstevel@tonic-gate /* 11697c478bd9Sstevel@tonic-gate * Do relocations. 11707c478bd9Sstevel@tonic-gate */ 11717c478bd9Sstevel@tonic-gate for (lp = linkmap; lp; lp = lp->modl_next) { 11727c478bd9Sstevel@tonic-gate mp = mod(lp); 11737c478bd9Sstevel@tonic-gate 11747c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_EXEC) { 1175ae115bc7Smrj Dyn *dyn; 1176ae115bc7Smrj Word relasz = 0, relaent = 0; 11777c478bd9Sstevel@tonic-gate Word shtype; 1178ae115bc7Smrj char *rela = NULL; 11797c478bd9Sstevel@tonic-gate 11807c478bd9Sstevel@tonic-gate for (dyn = (Dyn *)bootaux[BA_DYNAMIC].ba_ptr; 11817c478bd9Sstevel@tonic-gate dyn->d_tag != DT_NULL; dyn++) { 11827c478bd9Sstevel@tonic-gate switch (dyn->d_tag) { 11837c478bd9Sstevel@tonic-gate case DT_RELASZ: 11847c478bd9Sstevel@tonic-gate case DT_RELSZ: 11857c478bd9Sstevel@tonic-gate relasz = dyn->d_un.d_val; 11867c478bd9Sstevel@tonic-gate break; 11877c478bd9Sstevel@tonic-gate case DT_RELAENT: 11887c478bd9Sstevel@tonic-gate case DT_RELENT: 11897c478bd9Sstevel@tonic-gate relaent = dyn->d_un.d_val; 11907c478bd9Sstevel@tonic-gate break; 11917c478bd9Sstevel@tonic-gate case DT_RELA: 11927c478bd9Sstevel@tonic-gate shtype = SHT_RELA; 1193986fd29aSsetje rela = (char *)dyn->d_un.d_ptr; 11947c478bd9Sstevel@tonic-gate break; 11957c478bd9Sstevel@tonic-gate case DT_REL: 11967c478bd9Sstevel@tonic-gate shtype = SHT_REL; 1197986fd29aSsetje rela = (char *)dyn->d_un.d_ptr; 11987c478bd9Sstevel@tonic-gate break; 11997c478bd9Sstevel@tonic-gate } 12007c478bd9Sstevel@tonic-gate } 12017c478bd9Sstevel@tonic-gate if (relasz == 0 || 12027c478bd9Sstevel@tonic-gate relaent == 0 || rela == NULL) { 12037c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: bind_primary(): " 12047c478bd9Sstevel@tonic-gate "no relocation information found for " 12057c478bd9Sstevel@tonic-gate "module %s\n", mp->filename); 12067c478bd9Sstevel@tonic-gate return (-1); 12077c478bd9Sstevel@tonic-gate } 12087c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 12097c478bd9Sstevel@tonic-gate if (kobj_debug & D_RELOCATIONS) 12107c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: relocating: file=%s " 12117c478bd9Sstevel@tonic-gate "KOBJ_EXEC\n", mp->filename); 12127c478bd9Sstevel@tonic-gate #endif 12137c478bd9Sstevel@tonic-gate if (do_relocate(mp, rela, shtype, relasz/relaent, 12147c478bd9Sstevel@tonic-gate relaent, (Addr)mp->text) < 0) 12157c478bd9Sstevel@tonic-gate return (-1); 12167c478bd9Sstevel@tonic-gate } else { 12177c478bd9Sstevel@tonic-gate if (do_relocations(mp) < 0) 12187c478bd9Sstevel@tonic-gate return (-1); 12197c478bd9Sstevel@tonic-gate } 12207c478bd9Sstevel@tonic-gate 12217c478bd9Sstevel@tonic-gate kobj_sync_instruction_memory(mp->text, mp->text_size); 12227c478bd9Sstevel@tonic-gate } 12237c478bd9Sstevel@tonic-gate 12247c478bd9Sstevel@tonic-gate for (lp = linkmap; lp; lp = lp->modl_next) { 12257c478bd9Sstevel@tonic-gate mp = mod(lp); 12267c478bd9Sstevel@tonic-gate 12277c478bd9Sstevel@tonic-gate /* 12287c478bd9Sstevel@tonic-gate * We need to re-read the full symbol table for the boot file, 12297c478bd9Sstevel@tonic-gate * since we couldn't use the full one before. We also need to 12307c478bd9Sstevel@tonic-gate * load the CTF sections of both the boot file and the 12317c478bd9Sstevel@tonic-gate * interpreter (us). 12327c478bd9Sstevel@tonic-gate */ 12337c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_EXEC) { 12347c478bd9Sstevel@tonic-gate struct _buf *file; 12357c478bd9Sstevel@tonic-gate int n; 12367c478bd9Sstevel@tonic-gate 12377c478bd9Sstevel@tonic-gate file = kobj_open_file(mp->filename); 12387c478bd9Sstevel@tonic-gate if (file == (struct _buf *)-1) 12397c478bd9Sstevel@tonic-gate return (-1); 12407c478bd9Sstevel@tonic-gate if (kobj_read_file(file, (char *)&mp->hdr, 12417c478bd9Sstevel@tonic-gate sizeof (mp->hdr), 0) < 0) 12427c478bd9Sstevel@tonic-gate return (-1); 12437c478bd9Sstevel@tonic-gate n = mp->hdr.e_shentsize * mp->hdr.e_shnum; 12447c478bd9Sstevel@tonic-gate mp->shdrs = kobj_alloc(n, KM_WAIT); 12457c478bd9Sstevel@tonic-gate if (kobj_read_file(file, mp->shdrs, n, 12467c478bd9Sstevel@tonic-gate mp->hdr.e_shoff) < 0) 12477c478bd9Sstevel@tonic-gate return (-1); 12487c478bd9Sstevel@tonic-gate if (get_syms(mp, file) < 0) 12497c478bd9Sstevel@tonic-gate return (-1); 12507c478bd9Sstevel@tonic-gate if (get_ctf(mp, file) < 0) 12517c478bd9Sstevel@tonic-gate return (-1); 12527c478bd9Sstevel@tonic-gate kobj_close_file(file); 12537c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_RELOCATED; 12547c478bd9Sstevel@tonic-gate 12557c478bd9Sstevel@tonic-gate } else if (mp->flags & KOBJ_INTERP) { 12567c478bd9Sstevel@tonic-gate struct _buf *file; 12577c478bd9Sstevel@tonic-gate 12587c478bd9Sstevel@tonic-gate /* 12597c478bd9Sstevel@tonic-gate * The interpreter path fragment in mp->filename 12607c478bd9Sstevel@tonic-gate * will already have the module directory suffix 12617c478bd9Sstevel@tonic-gate * in it (if appropriate). 12627c478bd9Sstevel@tonic-gate */ 12637c478bd9Sstevel@tonic-gate file = kobj_open_path(mp->filename, 1, 0); 12647c478bd9Sstevel@tonic-gate if (file == (struct _buf *)-1) 12657c478bd9Sstevel@tonic-gate return (-1); 12667c478bd9Sstevel@tonic-gate if (get_ctf(mp, file) < 0) 12677c478bd9Sstevel@tonic-gate return (-1); 12687c478bd9Sstevel@tonic-gate kobj_close_file(file); 12697c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_RELOCATED; 12707c478bd9Sstevel@tonic-gate } 12717c478bd9Sstevel@tonic-gate } 12727c478bd9Sstevel@tonic-gate 12737c478bd9Sstevel@tonic-gate return (0); 12747c478bd9Sstevel@tonic-gate } 12757c478bd9Sstevel@tonic-gate 12767c478bd9Sstevel@tonic-gate static struct modctl * 12777c478bd9Sstevel@tonic-gate mod_already_loaded(char *modname) 12787c478bd9Sstevel@tonic-gate { 12797c478bd9Sstevel@tonic-gate struct modctl *mctl = kobj_modules; 12807c478bd9Sstevel@tonic-gate 12817c478bd9Sstevel@tonic-gate do { 12827c478bd9Sstevel@tonic-gate if (strcmp(modname, mctl->mod_filename) == 0) 12837c478bd9Sstevel@tonic-gate return (mctl); 12847c478bd9Sstevel@tonic-gate mctl = mctl->mod_next; 12857c478bd9Sstevel@tonic-gate 12867c478bd9Sstevel@tonic-gate } while (mctl != kobj_modules); 12877c478bd9Sstevel@tonic-gate 12887c478bd9Sstevel@tonic-gate return (NULL); 12897c478bd9Sstevel@tonic-gate } 12907c478bd9Sstevel@tonic-gate 12917c478bd9Sstevel@tonic-gate /* 12927c478bd9Sstevel@tonic-gate * Load all the primary dependent modules. 12937c478bd9Sstevel@tonic-gate */ 12947c478bd9Sstevel@tonic-gate static int 12957c478bd9Sstevel@tonic-gate load_primary(struct module *mp, int lmid) 12967c478bd9Sstevel@tonic-gate { 12977c478bd9Sstevel@tonic-gate struct modctl *cp; 12987c478bd9Sstevel@tonic-gate struct module *dmp; 12997c478bd9Sstevel@tonic-gate char *p, *q; 13007c478bd9Sstevel@tonic-gate char modname[MODMAXNAMELEN]; 13017c478bd9Sstevel@tonic-gate 13027c478bd9Sstevel@tonic-gate if ((p = mp->depends_on) == NULL) 13037c478bd9Sstevel@tonic-gate return (0); 13047c478bd9Sstevel@tonic-gate 13057c478bd9Sstevel@tonic-gate /* CONSTANTCONDITION */ 13067c478bd9Sstevel@tonic-gate while (1) { 13077c478bd9Sstevel@tonic-gate /* 13087c478bd9Sstevel@tonic-gate * Skip space. 13097c478bd9Sstevel@tonic-gate */ 13107c478bd9Sstevel@tonic-gate while (*p && (*p == ' ' || *p == '\t')) 13117c478bd9Sstevel@tonic-gate p++; 13127c478bd9Sstevel@tonic-gate /* 13137c478bd9Sstevel@tonic-gate * Get module name. 13147c478bd9Sstevel@tonic-gate */ 13157c478bd9Sstevel@tonic-gate q = modname; 13167c478bd9Sstevel@tonic-gate while (*p && *p != ' ' && *p != '\t') 13177c478bd9Sstevel@tonic-gate *q++ = *p++; 13187c478bd9Sstevel@tonic-gate 13197c478bd9Sstevel@tonic-gate if (q == modname) 13207c478bd9Sstevel@tonic-gate break; 13217c478bd9Sstevel@tonic-gate 13227c478bd9Sstevel@tonic-gate *q = '\0'; 13237c478bd9Sstevel@tonic-gate /* 13247c478bd9Sstevel@tonic-gate * Check for dup dependencies. 13257c478bd9Sstevel@tonic-gate */ 13267c478bd9Sstevel@tonic-gate if (strcmp(modname, "dtracestubs") == 0 || 13277c478bd9Sstevel@tonic-gate mod_already_loaded(modname) != NULL) 13287c478bd9Sstevel@tonic-gate continue; 13297c478bd9Sstevel@tonic-gate 13307c478bd9Sstevel@tonic-gate cp = add_primary(modname, lmid); 13317c478bd9Sstevel@tonic-gate cp->mod_busy = 1; 13327c478bd9Sstevel@tonic-gate /* 13337c478bd9Sstevel@tonic-gate * Load it. 13347c478bd9Sstevel@tonic-gate */ 13357c478bd9Sstevel@tonic-gate (void) kobj_load_module(cp, 1); 13367c478bd9Sstevel@tonic-gate cp->mod_busy = 0; 13377c478bd9Sstevel@tonic-gate 13387c478bd9Sstevel@tonic-gate if ((dmp = cp->mod_mp) == NULL) { 13397c478bd9Sstevel@tonic-gate cp->mod_loaded = 0; 13407c478bd9Sstevel@tonic-gate cp->mod_installed = 0; 13417c478bd9Sstevel@tonic-gate cp->mod_loadcnt = 0; 13427c478bd9Sstevel@tonic-gate return (-1); 13437c478bd9Sstevel@tonic-gate } 13447c478bd9Sstevel@tonic-gate 13457c478bd9Sstevel@tonic-gate add_dependent(mp, dmp); 13467c478bd9Sstevel@tonic-gate dmp->flags |= KOBJ_PRIM; 13477c478bd9Sstevel@tonic-gate 13487c478bd9Sstevel@tonic-gate /* 13497c478bd9Sstevel@tonic-gate * Recurse. 13507c478bd9Sstevel@tonic-gate */ 13517c478bd9Sstevel@tonic-gate if (load_primary(dmp, lmid) == -1) { 13527c478bd9Sstevel@tonic-gate cp->mod_loaded = 0; 13537c478bd9Sstevel@tonic-gate cp->mod_installed = 0; 13547c478bd9Sstevel@tonic-gate cp->mod_loadcnt = 0; 13557c478bd9Sstevel@tonic-gate return (-1); 13567c478bd9Sstevel@tonic-gate } 13577c478bd9Sstevel@tonic-gate } 13587c478bd9Sstevel@tonic-gate return (0); 13597c478bd9Sstevel@tonic-gate } 13607c478bd9Sstevel@tonic-gate 13617c478bd9Sstevel@tonic-gate static int 136228cdc3d7Sszhou console_is_usb_serial(void) 136328cdc3d7Sszhou { 136428cdc3d7Sszhou char *console; 136528cdc3d7Sszhou int len, ret; 136628cdc3d7Sszhou 136728cdc3d7Sszhou if ((len = BOP_GETPROPLEN(ops, "console")) == -1) 136828cdc3d7Sszhou return (0); 136928cdc3d7Sszhou 137028cdc3d7Sszhou console = kobj_zalloc(len, KM_WAIT|KM_TMP); 137128cdc3d7Sszhou (void) BOP_GETPROP(ops, "console", console); 137228cdc3d7Sszhou ret = (strcmp(console, "usb-serial") == 0); 137328cdc3d7Sszhou kobj_free(console, len); 137428cdc3d7Sszhou 137528cdc3d7Sszhou return (ret); 137628cdc3d7Sszhou } 137728cdc3d7Sszhou 137828cdc3d7Sszhou static int 13797c478bd9Sstevel@tonic-gate load_kmdb(val_t *bootaux) 13807c478bd9Sstevel@tonic-gate { 13817c478bd9Sstevel@tonic-gate struct modctl *mctl; 13827c478bd9Sstevel@tonic-gate struct module *mp; 13837c478bd9Sstevel@tonic-gate Sym *sym; 13847c478bd9Sstevel@tonic-gate 138528cdc3d7Sszhou if (console_is_usb_serial()) { 138628cdc3d7Sszhou _kobj_printf(ops, "kmdb not loaded " 138728cdc3d7Sszhou "(unsupported on usb serial console)\n"); 138828cdc3d7Sszhou return (0); 138928cdc3d7Sszhou } 139028cdc3d7Sszhou 13917c478bd9Sstevel@tonic-gate _kobj_printf(ops, "Loading kmdb...\n"); 13927c478bd9Sstevel@tonic-gate 13937c478bd9Sstevel@tonic-gate if ((mctl = add_primary("misc/kmdbmod", KOBJ_LM_DEBUGGER)) == NULL) 13947c478bd9Sstevel@tonic-gate return (-1); 13957c478bd9Sstevel@tonic-gate 13967c478bd9Sstevel@tonic-gate mctl->mod_busy = 1; 13977c478bd9Sstevel@tonic-gate (void) kobj_load_module(mctl, 1); 13987c478bd9Sstevel@tonic-gate mctl->mod_busy = 0; 13997c478bd9Sstevel@tonic-gate 14007c478bd9Sstevel@tonic-gate if ((mp = mctl->mod_mp) == NULL) 14017c478bd9Sstevel@tonic-gate return (-1); 14027c478bd9Sstevel@tonic-gate 14037c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_PRIM; 14047c478bd9Sstevel@tonic-gate 14057c478bd9Sstevel@tonic-gate if (load_primary(mp, KOBJ_LM_DEBUGGER) < 0) 14067c478bd9Sstevel@tonic-gate return (-1); 14077c478bd9Sstevel@tonic-gate 14087c478bd9Sstevel@tonic-gate if (boothowto & RB_VERBOSE) 14097c478bd9Sstevel@tonic-gate kobj_lm_dump(KOBJ_LM_DEBUGGER); 14107c478bd9Sstevel@tonic-gate 14117c478bd9Sstevel@tonic-gate if (bind_primary(bootaux, KOBJ_LM_DEBUGGER) < 0) 14127c478bd9Sstevel@tonic-gate return (-1); 14137c478bd9Sstevel@tonic-gate 14147c478bd9Sstevel@tonic-gate if ((sym = lookup_one(mctl->mod_mp, "kctl_boot_activate")) == NULL) 14157c478bd9Sstevel@tonic-gate return (-1); 14167c478bd9Sstevel@tonic-gate 1417ae115bc7Smrj #ifdef KOBJ_DEBUG 1418ae115bc7Smrj if (kobj_debug & D_DEBUG) { 1419ae115bc7Smrj _kobj_printf(ops, "calling kctl_boot_activate() @ 0x%lx\n", 1420ae115bc7Smrj sym->st_value); 1421ae115bc7Smrj _kobj_printf(ops, "\tops 0x%p\n", ops); 1422ae115bc7Smrj _kobj_printf(ops, "\tromp 0x%p\n", romp); 1423ae115bc7Smrj } 1424ae115bc7Smrj #endif 1425ae115bc7Smrj 14267c478bd9Sstevel@tonic-gate if (((kctl_boot_activate_f *)sym->st_value)(ops, romp, 0, 14277c478bd9Sstevel@tonic-gate (const char **)kobj_kmdb_argv) < 0) 14287c478bd9Sstevel@tonic-gate return (-1); 14297c478bd9Sstevel@tonic-gate 14307c478bd9Sstevel@tonic-gate return (0); 14317c478bd9Sstevel@tonic-gate } 14327c478bd9Sstevel@tonic-gate 14337c478bd9Sstevel@tonic-gate /* 14347c478bd9Sstevel@tonic-gate * Return a string listing module dependencies. 14357c478bd9Sstevel@tonic-gate */ 14367c478bd9Sstevel@tonic-gate static char * 14377c478bd9Sstevel@tonic-gate depends_on(struct module *mp) 14387c478bd9Sstevel@tonic-gate { 14397c478bd9Sstevel@tonic-gate Sym *sp; 14407c478bd9Sstevel@tonic-gate char *depstr, *q; 14417c478bd9Sstevel@tonic-gate 14427c478bd9Sstevel@tonic-gate /* 14437c478bd9Sstevel@tonic-gate * The module doesn't have a depends_on value, so let's try it the 14447c478bd9Sstevel@tonic-gate * old-fashioned way - via "_depends_on" 14457c478bd9Sstevel@tonic-gate */ 14467c478bd9Sstevel@tonic-gate if ((sp = lookup_one(mp, "_depends_on")) == NULL) 14477c478bd9Sstevel@tonic-gate return (NULL); 14487c478bd9Sstevel@tonic-gate 14497c478bd9Sstevel@tonic-gate q = (char *)sp->st_value; 14507c478bd9Sstevel@tonic-gate 145183eb21d9SBayard Bell #ifdef KOBJ_DEBUG 145283eb21d9SBayard Bell /* 145383eb21d9SBayard Bell * _depends_on is a deprecated interface, so we warn about its use 145483eb21d9SBayard Bell * irrespective of subsequent processing errors. How else are we going 145583eb21d9SBayard Bell * to be able to deco this interface completely? 145683eb21d9SBayard Bell * Changes initially limited to DEBUG because third-party modules 145783eb21d9SBayard Bell * should be flagged to developers before general use base. 145883eb21d9SBayard Bell */ 145983eb21d9SBayard Bell _kobj_printf(ops, 146083eb21d9SBayard Bell "Warning: %s uses deprecated _depends_on interface.\n", 146183eb21d9SBayard Bell mp->filename); 146283eb21d9SBayard Bell _kobj_printf(ops, "Please notify module developer or vendor.\n"); 146383eb21d9SBayard Bell #endif 146483eb21d9SBayard Bell 14657c478bd9Sstevel@tonic-gate /* 14667c478bd9Sstevel@tonic-gate * Idiot checks. Make sure it's 14677c478bd9Sstevel@tonic-gate * in-bounds and NULL terminated. 14687c478bd9Sstevel@tonic-gate */ 14697c478bd9Sstevel@tonic-gate if (kobj_addrcheck(mp, q) || q[sp->st_size - 1] != '\0') { 14707c478bd9Sstevel@tonic-gate _kobj_printf(ops, "Error processing dependency for %s\n", 14717c478bd9Sstevel@tonic-gate mp->filename); 14727c478bd9Sstevel@tonic-gate return (NULL); 14737c478bd9Sstevel@tonic-gate } 14747c478bd9Sstevel@tonic-gate 14757c478bd9Sstevel@tonic-gate depstr = (char *)kobj_alloc(strlen(q) + 1, KM_WAIT); 14767c478bd9Sstevel@tonic-gate (void) strcpy(depstr, q); 14777c478bd9Sstevel@tonic-gate 14787c478bd9Sstevel@tonic-gate return (depstr); 14797c478bd9Sstevel@tonic-gate } 14807c478bd9Sstevel@tonic-gate 14817c478bd9Sstevel@tonic-gate void 14827c478bd9Sstevel@tonic-gate kobj_getmodinfo(void *xmp, struct modinfo *modinfo) 14837c478bd9Sstevel@tonic-gate { 14847c478bd9Sstevel@tonic-gate struct module *mp; 14857c478bd9Sstevel@tonic-gate mp = (struct module *)xmp; 14867c478bd9Sstevel@tonic-gate 14877c478bd9Sstevel@tonic-gate modinfo->mi_base = mp->text; 14887c478bd9Sstevel@tonic-gate modinfo->mi_size = mp->text_size + mp->data_size; 14897c478bd9Sstevel@tonic-gate } 14907c478bd9Sstevel@tonic-gate 14917c478bd9Sstevel@tonic-gate /* 14927c478bd9Sstevel@tonic-gate * kobj_export_ksyms() performs the following services: 14937c478bd9Sstevel@tonic-gate * 14947c478bd9Sstevel@tonic-gate * (1) Migrates the symbol table from boot/kobj memory to the ksyms arena. 14957c478bd9Sstevel@tonic-gate * (2) Removes unneeded symbols to save space. 14967c478bd9Sstevel@tonic-gate * (3) Reduces memory footprint by using VM_BESTFIT allocations. 14977c478bd9Sstevel@tonic-gate * (4) Makes the symbol table visible to /dev/ksyms. 14987c478bd9Sstevel@tonic-gate */ 14997c478bd9Sstevel@tonic-gate static void 15007c478bd9Sstevel@tonic-gate kobj_export_ksyms(struct module *mp) 15017c478bd9Sstevel@tonic-gate { 15027c478bd9Sstevel@tonic-gate Sym *esp = (Sym *)(mp->symtbl + mp->symhdr->sh_size); 15037c478bd9Sstevel@tonic-gate Sym *sp, *osp; 15047c478bd9Sstevel@tonic-gate char *name; 15057c478bd9Sstevel@tonic-gate size_t namelen; 15067c478bd9Sstevel@tonic-gate struct module *omp; 15077c478bd9Sstevel@tonic-gate uint_t nsyms; 15087c478bd9Sstevel@tonic-gate size_t symsize = mp->symhdr->sh_entsize; 15097c478bd9Sstevel@tonic-gate size_t locals = 1; 15107c478bd9Sstevel@tonic-gate size_t strsize; 15117c478bd9Sstevel@tonic-gate 15127c478bd9Sstevel@tonic-gate /* 15137c478bd9Sstevel@tonic-gate * Make a copy of the original module structure. 15147c478bd9Sstevel@tonic-gate */ 15157c478bd9Sstevel@tonic-gate omp = kobj_alloc(sizeof (struct module), KM_WAIT); 15167c478bd9Sstevel@tonic-gate bcopy(mp, omp, sizeof (struct module)); 15177c478bd9Sstevel@tonic-gate 15187c478bd9Sstevel@tonic-gate /* 15197c478bd9Sstevel@tonic-gate * Compute the sizes of the new symbol table sections. 15207c478bd9Sstevel@tonic-gate */ 15217c478bd9Sstevel@tonic-gate for (nsyms = strsize = 1, osp = (Sym *)omp->symtbl; osp < esp; osp++) { 15227c478bd9Sstevel@tonic-gate if (osp->st_value == 0) 15237c478bd9Sstevel@tonic-gate continue; 15247c478bd9Sstevel@tonic-gate if (sym_lookup(omp, osp) == NULL) 15257c478bd9Sstevel@tonic-gate continue; 15267c478bd9Sstevel@tonic-gate name = omp->strings + osp->st_name; 15277c478bd9Sstevel@tonic-gate namelen = strlen(name); 15287c478bd9Sstevel@tonic-gate if (ELF_ST_BIND(osp->st_info) == STB_LOCAL) 15297c478bd9Sstevel@tonic-gate locals++; 15307c478bd9Sstevel@tonic-gate nsyms++; 15317c478bd9Sstevel@tonic-gate strsize += namelen + 1; 15327c478bd9Sstevel@tonic-gate } 15337c478bd9Sstevel@tonic-gate 15347c478bd9Sstevel@tonic-gate mp->nsyms = nsyms; 15357c478bd9Sstevel@tonic-gate mp->hashsize = kobj_gethashsize(mp->nsyms); 15367c478bd9Sstevel@tonic-gate 15377c478bd9Sstevel@tonic-gate /* 15387c478bd9Sstevel@tonic-gate * ksyms_lock must be held as writer during any operation that 15397c478bd9Sstevel@tonic-gate * modifies ksyms_arena, including allocation from same, and 15407c478bd9Sstevel@tonic-gate * must not be dropped until the arena is vmem_walk()able. 15417c478bd9Sstevel@tonic-gate */ 15427c478bd9Sstevel@tonic-gate rw_enter(&ksyms_lock, RW_WRITER); 15437c478bd9Sstevel@tonic-gate 15447c478bd9Sstevel@tonic-gate /* 15457c478bd9Sstevel@tonic-gate * Allocate space for the new section headers (symtab and strtab), 15467c478bd9Sstevel@tonic-gate * symbol table, buckets, chains, and strings. 15477c478bd9Sstevel@tonic-gate */ 15487c478bd9Sstevel@tonic-gate mp->symsize = (2 * sizeof (Shdr)) + (nsyms * symsize) + 15497c478bd9Sstevel@tonic-gate (mp->hashsize + mp->nsyms) * sizeof (symid_t) + strsize; 15507c478bd9Sstevel@tonic-gate 15517c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_NOKSYMS) { 15527c478bd9Sstevel@tonic-gate mp->symspace = kobj_alloc(mp->symsize, KM_WAIT); 15537c478bd9Sstevel@tonic-gate } else { 15547c478bd9Sstevel@tonic-gate mp->symspace = vmem_alloc(ksyms_arena, mp->symsize, 15557c478bd9Sstevel@tonic-gate VM_BESTFIT | VM_SLEEP); 15567c478bd9Sstevel@tonic-gate } 15577c478bd9Sstevel@tonic-gate bzero(mp->symspace, mp->symsize); 15587c478bd9Sstevel@tonic-gate 15597c478bd9Sstevel@tonic-gate /* 15607c478bd9Sstevel@tonic-gate * Divvy up symspace. 15617c478bd9Sstevel@tonic-gate */ 15627c478bd9Sstevel@tonic-gate mp->shdrs = mp->symspace; 15637c478bd9Sstevel@tonic-gate mp->symhdr = (Shdr *)mp->shdrs; 15647c478bd9Sstevel@tonic-gate mp->strhdr = (Shdr *)(mp->symhdr + 1); 15657c478bd9Sstevel@tonic-gate mp->symtbl = (char *)(mp->strhdr + 1); 15667c478bd9Sstevel@tonic-gate mp->buckets = (symid_t *)(mp->symtbl + (nsyms * symsize)); 15677c478bd9Sstevel@tonic-gate mp->chains = (symid_t *)(mp->buckets + mp->hashsize); 15687c478bd9Sstevel@tonic-gate mp->strings = (char *)(mp->chains + nsyms); 15697c478bd9Sstevel@tonic-gate 15707c478bd9Sstevel@tonic-gate /* 15717c478bd9Sstevel@tonic-gate * Fill in the new section headers (symtab and strtab). 15727c478bd9Sstevel@tonic-gate */ 15737c478bd9Sstevel@tonic-gate mp->hdr.e_shnum = 2; 15747c478bd9Sstevel@tonic-gate mp->symtbl_section = 0; 15757c478bd9Sstevel@tonic-gate 15767c478bd9Sstevel@tonic-gate mp->symhdr->sh_type = SHT_SYMTAB; 15777c478bd9Sstevel@tonic-gate mp->symhdr->sh_addr = (Addr)mp->symtbl; 15787c478bd9Sstevel@tonic-gate mp->symhdr->sh_size = nsyms * symsize; 15797c478bd9Sstevel@tonic-gate mp->symhdr->sh_link = 1; 15807c478bd9Sstevel@tonic-gate mp->symhdr->sh_info = locals; 15817c478bd9Sstevel@tonic-gate mp->symhdr->sh_addralign = sizeof (Addr); 15827c478bd9Sstevel@tonic-gate mp->symhdr->sh_entsize = symsize; 15837c478bd9Sstevel@tonic-gate 15847c478bd9Sstevel@tonic-gate mp->strhdr->sh_type = SHT_STRTAB; 15857c478bd9Sstevel@tonic-gate mp->strhdr->sh_addr = (Addr)mp->strings; 15867c478bd9Sstevel@tonic-gate mp->strhdr->sh_size = strsize; 15877c478bd9Sstevel@tonic-gate mp->strhdr->sh_addralign = 1; 15887c478bd9Sstevel@tonic-gate 15897c478bd9Sstevel@tonic-gate /* 15907c478bd9Sstevel@tonic-gate * Construct the new symbol table. 15917c478bd9Sstevel@tonic-gate */ 15927c478bd9Sstevel@tonic-gate for (nsyms = strsize = 1, osp = (Sym *)omp->symtbl; osp < esp; osp++) { 15937c478bd9Sstevel@tonic-gate if (osp->st_value == 0) 15947c478bd9Sstevel@tonic-gate continue; 15957c478bd9Sstevel@tonic-gate if (sym_lookup(omp, osp) == NULL) 15967c478bd9Sstevel@tonic-gate continue; 15977c478bd9Sstevel@tonic-gate name = omp->strings + osp->st_name; 15987c478bd9Sstevel@tonic-gate namelen = strlen(name); 15997c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + symsize * nsyms); 16007c478bd9Sstevel@tonic-gate bcopy(osp, sp, symsize); 16017c478bd9Sstevel@tonic-gate bcopy(name, mp->strings + strsize, namelen); 16027c478bd9Sstevel@tonic-gate sp->st_name = strsize; 16037c478bd9Sstevel@tonic-gate sym_insert(mp, name, nsyms); 16047c478bd9Sstevel@tonic-gate nsyms++; 16057c478bd9Sstevel@tonic-gate strsize += namelen + 1; 16067c478bd9Sstevel@tonic-gate } 16077c478bd9Sstevel@tonic-gate 16087c478bd9Sstevel@tonic-gate rw_exit(&ksyms_lock); 16097c478bd9Sstevel@tonic-gate 16107c478bd9Sstevel@tonic-gate /* 16117c478bd9Sstevel@tonic-gate * Free the old section headers -- we'll never need them again. 16127c478bd9Sstevel@tonic-gate */ 161366f0458fSkchow if (!(mp->flags & KOBJ_PRIM)) { 161466f0458fSkchow uint_t shn; 161566f0458fSkchow Shdr *shp; 161666f0458fSkchow 161766f0458fSkchow for (shn = 1; shn < omp->hdr.e_shnum; shn++) { 161866f0458fSkchow shp = (Shdr *)(omp->shdrs + shn * omp->hdr.e_shentsize); 161966f0458fSkchow switch (shp->sh_type) { 162066f0458fSkchow case SHT_RELA: 162166f0458fSkchow case SHT_REL: 162266f0458fSkchow if (shp->sh_addr != 0) { 162366f0458fSkchow kobj_free((void *)shp->sh_addr, 162466f0458fSkchow shp->sh_size); 162566f0458fSkchow } 162666f0458fSkchow break; 162766f0458fSkchow } 162866f0458fSkchow } 16297c478bd9Sstevel@tonic-gate kobj_free(omp->shdrs, omp->hdr.e_shentsize * omp->hdr.e_shnum); 163066f0458fSkchow } 16317c478bd9Sstevel@tonic-gate /* 16327c478bd9Sstevel@tonic-gate * Discard the old symbol table and our copy of the module strucure. 16337c478bd9Sstevel@tonic-gate */ 16347c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_PRIM)) 16357c478bd9Sstevel@tonic-gate kobj_free(omp->symspace, omp->symsize); 16367c478bd9Sstevel@tonic-gate kobj_free(omp, sizeof (struct module)); 16377c478bd9Sstevel@tonic-gate } 16387c478bd9Sstevel@tonic-gate 16397c478bd9Sstevel@tonic-gate static void 16407c478bd9Sstevel@tonic-gate kobj_export_ctf(struct module *mp) 16417c478bd9Sstevel@tonic-gate { 16427c478bd9Sstevel@tonic-gate char *data = mp->ctfdata; 16437c478bd9Sstevel@tonic-gate size_t size = mp->ctfsize; 16447c478bd9Sstevel@tonic-gate 16457c478bd9Sstevel@tonic-gate if (data != NULL) { 16467c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_NOCTF) { 16477c478bd9Sstevel@tonic-gate mp->ctfdata = NULL; 16487c478bd9Sstevel@tonic-gate mp->ctfsize = 0; 16497c478bd9Sstevel@tonic-gate } else { 16507c478bd9Sstevel@tonic-gate mp->ctfdata = vmem_alloc(ctf_arena, size, 16517c478bd9Sstevel@tonic-gate VM_BESTFIT | VM_SLEEP); 16527c478bd9Sstevel@tonic-gate bcopy(data, mp->ctfdata, size); 16537c478bd9Sstevel@tonic-gate } 16547c478bd9Sstevel@tonic-gate 16557c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_PRIM)) 16567c478bd9Sstevel@tonic-gate kobj_free(data, size); 16577c478bd9Sstevel@tonic-gate } 16587c478bd9Sstevel@tonic-gate } 16597c478bd9Sstevel@tonic-gate 16607c478bd9Sstevel@tonic-gate void 16617c478bd9Sstevel@tonic-gate kobj_export_module(struct module *mp) 16627c478bd9Sstevel@tonic-gate { 16637c478bd9Sstevel@tonic-gate kobj_export_ksyms(mp); 16647c478bd9Sstevel@tonic-gate kobj_export_ctf(mp); 16657c478bd9Sstevel@tonic-gate 16667c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_EXPORTED; 16677c478bd9Sstevel@tonic-gate } 16687c478bd9Sstevel@tonic-gate 16697c478bd9Sstevel@tonic-gate static int 16707c478bd9Sstevel@tonic-gate process_dynamic(struct module *mp, char *dyndata, char *strdata) 16717c478bd9Sstevel@tonic-gate { 16727c478bd9Sstevel@tonic-gate char *path = NULL, *depstr = NULL; 16737c478bd9Sstevel@tonic-gate int allocsize = 0, osize = 0, nsize = 0; 16747c478bd9Sstevel@tonic-gate char *libname, *tmp; 16757c478bd9Sstevel@tonic-gate int lsize; 16767c478bd9Sstevel@tonic-gate Dyn *dynp; 16777c478bd9Sstevel@tonic-gate 16787c478bd9Sstevel@tonic-gate for (dynp = (Dyn *)dyndata; dynp && dynp->d_tag != DT_NULL; dynp++) { 16797c478bd9Sstevel@tonic-gate switch (dynp->d_tag) { 16807c478bd9Sstevel@tonic-gate case DT_NEEDED: 16817c478bd9Sstevel@tonic-gate /* 16827c478bd9Sstevel@tonic-gate * Read the DT_NEEDED entries, expanding the macros they 16837c478bd9Sstevel@tonic-gate * contain (if any), and concatenating them into a 16847c478bd9Sstevel@tonic-gate * single space-separated dependency list. 16857c478bd9Sstevel@tonic-gate */ 16867c478bd9Sstevel@tonic-gate libname = (ulong_t)dynp->d_un.d_ptr + strdata; 16877c478bd9Sstevel@tonic-gate 16887c478bd9Sstevel@tonic-gate if (strchr(libname, '$') != NULL) { 16897c478bd9Sstevel@tonic-gate char *_lib; 16907c478bd9Sstevel@tonic-gate 16917c478bd9Sstevel@tonic-gate if (path == NULL) 16927c478bd9Sstevel@tonic-gate path = kobj_alloc(MAXPATHLEN, KM_WAIT); 16937c478bd9Sstevel@tonic-gate if ((_lib = expand_libmacro(libname, path, 16947c478bd9Sstevel@tonic-gate path)) != NULL) 16957c478bd9Sstevel@tonic-gate libname = _lib; 16967c478bd9Sstevel@tonic-gate else { 16977c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: " 16987c478bd9Sstevel@tonic-gate "process_dynamic: failed to expand " 16997c478bd9Sstevel@tonic-gate "%s\n", libname); 17007c478bd9Sstevel@tonic-gate } 17017c478bd9Sstevel@tonic-gate } 17027c478bd9Sstevel@tonic-gate 17037c478bd9Sstevel@tonic-gate lsize = strlen(libname); 17047c478bd9Sstevel@tonic-gate nsize += lsize; 17057c478bd9Sstevel@tonic-gate if (nsize + 1 > allocsize) { 17067c478bd9Sstevel@tonic-gate tmp = kobj_alloc(allocsize + MAXPATHLEN, 17077c478bd9Sstevel@tonic-gate KM_WAIT); 17087c478bd9Sstevel@tonic-gate if (depstr != NULL) { 17097c478bd9Sstevel@tonic-gate bcopy(depstr, tmp, osize); 17107c478bd9Sstevel@tonic-gate kobj_free(depstr, allocsize); 17117c478bd9Sstevel@tonic-gate } 17127c478bd9Sstevel@tonic-gate depstr = tmp; 17137c478bd9Sstevel@tonic-gate allocsize += MAXPATHLEN; 17147c478bd9Sstevel@tonic-gate } 17157c478bd9Sstevel@tonic-gate bcopy(libname, depstr + osize, lsize); 17167c478bd9Sstevel@tonic-gate *(depstr + nsize) = ' '; /* separator */ 17177c478bd9Sstevel@tonic-gate nsize++; 17187c478bd9Sstevel@tonic-gate osize = nsize; 17197c478bd9Sstevel@tonic-gate break; 17207c478bd9Sstevel@tonic-gate 17217c478bd9Sstevel@tonic-gate case DT_FLAGS_1: 17227c478bd9Sstevel@tonic-gate if (dynp->d_un.d_val & DF_1_IGNMULDEF) 17237c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_IGNMULDEF; 17247c478bd9Sstevel@tonic-gate if (dynp->d_un.d_val & DF_1_NOKSYMS) 17257c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_NOKSYMS; 17267c478bd9Sstevel@tonic-gate 17277c478bd9Sstevel@tonic-gate break; 17287c478bd9Sstevel@tonic-gate } 17297c478bd9Sstevel@tonic-gate } 17307c478bd9Sstevel@tonic-gate 17317c478bd9Sstevel@tonic-gate /* 17327c478bd9Sstevel@tonic-gate * finish up the depends string (if any) 17337c478bd9Sstevel@tonic-gate */ 17347c478bd9Sstevel@tonic-gate if (depstr != NULL) { 1735da6c28aaSamw *(depstr + nsize - 1) = '\0'; /* overwrite separator w/term */ 17367c478bd9Sstevel@tonic-gate if (path != NULL) 17377c478bd9Sstevel@tonic-gate kobj_free(path, MAXPATHLEN); 17387c478bd9Sstevel@tonic-gate 17397c478bd9Sstevel@tonic-gate tmp = kobj_alloc(nsize, KM_WAIT); 17407c478bd9Sstevel@tonic-gate bcopy(depstr, tmp, nsize); 17417c478bd9Sstevel@tonic-gate kobj_free(depstr, allocsize); 17427c478bd9Sstevel@tonic-gate depstr = tmp; 17437c478bd9Sstevel@tonic-gate 17447c478bd9Sstevel@tonic-gate mp->depends_on = depstr; 17457c478bd9Sstevel@tonic-gate } 17467c478bd9Sstevel@tonic-gate 17477c478bd9Sstevel@tonic-gate return (0); 17487c478bd9Sstevel@tonic-gate } 17497c478bd9Sstevel@tonic-gate 17507c478bd9Sstevel@tonic-gate static int 17517c478bd9Sstevel@tonic-gate do_dynamic(struct module *mp, struct _buf *file) 17527c478bd9Sstevel@tonic-gate { 17537c478bd9Sstevel@tonic-gate Shdr *dshp, *dstrp, *shp; 17547c478bd9Sstevel@tonic-gate char *dyndata, *dstrdata; 17557c478bd9Sstevel@tonic-gate int dshn, shn, rc; 17567c478bd9Sstevel@tonic-gate 17577c478bd9Sstevel@tonic-gate /* find and validate the dynamic section (if any) */ 17587c478bd9Sstevel@tonic-gate 17597c478bd9Sstevel@tonic-gate for (dshp = NULL, shn = 1; shn < mp->hdr.e_shnum; shn++) { 17607c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + shn * mp->hdr.e_shentsize); 17617c478bd9Sstevel@tonic-gate switch (shp->sh_type) { 17627c478bd9Sstevel@tonic-gate case SHT_DYNAMIC: 17637c478bd9Sstevel@tonic-gate if (dshp != NULL) { 17647c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_dynamic: %s, ", 17657c478bd9Sstevel@tonic-gate mp->filename); 17667c478bd9Sstevel@tonic-gate _kobj_printf(ops, 17677c478bd9Sstevel@tonic-gate "multiple dynamic sections\n"); 17687c478bd9Sstevel@tonic-gate return (-1); 17697c478bd9Sstevel@tonic-gate } else { 17707c478bd9Sstevel@tonic-gate dshp = shp; 17717c478bd9Sstevel@tonic-gate dshn = shn; 17727c478bd9Sstevel@tonic-gate } 17737c478bd9Sstevel@tonic-gate break; 17747c478bd9Sstevel@tonic-gate } 17757c478bd9Sstevel@tonic-gate } 17767c478bd9Sstevel@tonic-gate 17777c478bd9Sstevel@tonic-gate if (dshp == NULL) 17787c478bd9Sstevel@tonic-gate return (0); 17797c478bd9Sstevel@tonic-gate 17807c478bd9Sstevel@tonic-gate if (dshp->sh_link > mp->hdr.e_shnum) { 17817c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_dynamic: %s, ", mp->filename); 17827c478bd9Sstevel@tonic-gate _kobj_printf(ops, "no section for sh_link %d\n", dshp->sh_link); 17837c478bd9Sstevel@tonic-gate return (-1); 17847c478bd9Sstevel@tonic-gate } 17857c478bd9Sstevel@tonic-gate dstrp = (Shdr *)(mp->shdrs + dshp->sh_link * mp->hdr.e_shentsize); 17867c478bd9Sstevel@tonic-gate 17877c478bd9Sstevel@tonic-gate if (dstrp->sh_type != SHT_STRTAB) { 17887c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_dynamic: %s, ", mp->filename); 17897c478bd9Sstevel@tonic-gate _kobj_printf(ops, "sh_link not a string table for section %d\n", 17907c478bd9Sstevel@tonic-gate dshn); 17917c478bd9Sstevel@tonic-gate return (-1); 17927c478bd9Sstevel@tonic-gate } 17937c478bd9Sstevel@tonic-gate 17947c478bd9Sstevel@tonic-gate /* read it from disk */ 17957c478bd9Sstevel@tonic-gate 17967c478bd9Sstevel@tonic-gate dyndata = kobj_alloc(dshp->sh_size, KM_WAIT|KM_TMP); 17977c478bd9Sstevel@tonic-gate if (kobj_read_file(file, dyndata, dshp->sh_size, dshp->sh_offset) < 0) { 17987c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_dynamic: %s, ", mp->filename); 17997c478bd9Sstevel@tonic-gate _kobj_printf(ops, "error reading section %d\n", dshn); 18007c478bd9Sstevel@tonic-gate 18017c478bd9Sstevel@tonic-gate kobj_free(dyndata, dshp->sh_size); 18027c478bd9Sstevel@tonic-gate return (-1); 18037c478bd9Sstevel@tonic-gate } 18047c478bd9Sstevel@tonic-gate 18057c478bd9Sstevel@tonic-gate dstrdata = kobj_alloc(dstrp->sh_size, KM_WAIT|KM_TMP); 18067c478bd9Sstevel@tonic-gate if (kobj_read_file(file, dstrdata, dstrp->sh_size, 18077c478bd9Sstevel@tonic-gate dstrp->sh_offset) < 0) { 18087c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_dynamic: %s, ", mp->filename); 18097c478bd9Sstevel@tonic-gate _kobj_printf(ops, "error reading section %d\n", dshp->sh_link); 18107c478bd9Sstevel@tonic-gate 18117c478bd9Sstevel@tonic-gate kobj_free(dyndata, dshp->sh_size); 18127c478bd9Sstevel@tonic-gate kobj_free(dstrdata, dstrp->sh_size); 18137c478bd9Sstevel@tonic-gate return (-1); 18147c478bd9Sstevel@tonic-gate } 18157c478bd9Sstevel@tonic-gate 18167c478bd9Sstevel@tonic-gate /* pull the interesting pieces out */ 18177c478bd9Sstevel@tonic-gate 18187c478bd9Sstevel@tonic-gate rc = process_dynamic(mp, dyndata, dstrdata); 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate kobj_free(dyndata, dshp->sh_size); 18217c478bd9Sstevel@tonic-gate kobj_free(dstrdata, dstrp->sh_size); 18227c478bd9Sstevel@tonic-gate 18237c478bd9Sstevel@tonic-gate return (rc); 18247c478bd9Sstevel@tonic-gate } 18257c478bd9Sstevel@tonic-gate 18267c478bd9Sstevel@tonic-gate void 18277c478bd9Sstevel@tonic-gate kobj_set_ctf(struct module *mp, caddr_t data, size_t size) 18287c478bd9Sstevel@tonic-gate { 18297c478bd9Sstevel@tonic-gate if (!standalone) { 18307c478bd9Sstevel@tonic-gate if (mp->ctfdata != NULL) { 18317c478bd9Sstevel@tonic-gate if (vmem_contains(ctf_arena, mp->ctfdata, 18327c478bd9Sstevel@tonic-gate mp->ctfsize)) { 18337c478bd9Sstevel@tonic-gate vmem_free(ctf_arena, mp->ctfdata, mp->ctfsize); 18347c478bd9Sstevel@tonic-gate } else { 18357c478bd9Sstevel@tonic-gate kobj_free(mp->ctfdata, mp->ctfsize); 18367c478bd9Sstevel@tonic-gate } 18377c478bd9Sstevel@tonic-gate } 18387c478bd9Sstevel@tonic-gate } 18397c478bd9Sstevel@tonic-gate 18407c478bd9Sstevel@tonic-gate /* 18417c478bd9Sstevel@tonic-gate * The order is very important here. We need to make sure that 18427c478bd9Sstevel@tonic-gate * consumers, at any given instant, see a consistent state. We'd 18437c478bd9Sstevel@tonic-gate * rather they see no CTF data than the address of one buffer and the 18447c478bd9Sstevel@tonic-gate * size of another. 18457c478bd9Sstevel@tonic-gate */ 18467c478bd9Sstevel@tonic-gate mp->ctfdata = NULL; 18477c478bd9Sstevel@tonic-gate membar_producer(); 18487c478bd9Sstevel@tonic-gate mp->ctfsize = size; 18497c478bd9Sstevel@tonic-gate mp->ctfdata = data; 18507c478bd9Sstevel@tonic-gate membar_producer(); 18517c478bd9Sstevel@tonic-gate } 18527c478bd9Sstevel@tonic-gate 18537c478bd9Sstevel@tonic-gate int 18547c478bd9Sstevel@tonic-gate kobj_load_module(struct modctl *modp, int use_path) 18557c478bd9Sstevel@tonic-gate { 18567c478bd9Sstevel@tonic-gate char *filename = modp->mod_filename; 18577c478bd9Sstevel@tonic-gate char *modname = modp->mod_modname; 18587c478bd9Sstevel@tonic-gate int i; 18597c478bd9Sstevel@tonic-gate int n; 18607c478bd9Sstevel@tonic-gate struct _buf *file; 18617c478bd9Sstevel@tonic-gate struct module *mp = NULL; 18627c478bd9Sstevel@tonic-gate #ifdef MODDIR_SUFFIX 18637c478bd9Sstevel@tonic-gate int no_suffixdir_drv = 0; 18647c478bd9Sstevel@tonic-gate #endif 18657c478bd9Sstevel@tonic-gate 18667c478bd9Sstevel@tonic-gate mp = kobj_zalloc(sizeof (struct module), KM_WAIT); 18677c478bd9Sstevel@tonic-gate 18687c478bd9Sstevel@tonic-gate /* 18697c478bd9Sstevel@tonic-gate * We need to prevent kmdb's symbols from leaking into /dev/ksyms. 18707c478bd9Sstevel@tonic-gate * kmdb contains a bunch of symbols with well-known names, symbols 18717c478bd9Sstevel@tonic-gate * which will mask the real versions, thus causing no end of trouble 18727c478bd9Sstevel@tonic-gate * for mdb. 18737c478bd9Sstevel@tonic-gate */ 18747c478bd9Sstevel@tonic-gate if (strcmp(modp->mod_modname, "kmdbmod") == 0) 18757c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_NOKSYMS; 18767c478bd9Sstevel@tonic-gate 18777c478bd9Sstevel@tonic-gate file = kobj_open_path(filename, use_path, 1); 18787c478bd9Sstevel@tonic-gate if (file == (struct _buf *)-1) { 18797c478bd9Sstevel@tonic-gate #ifdef MODDIR_SUFFIX 18807c478bd9Sstevel@tonic-gate file = kobj_open_path(filename, use_path, 0); 18817c478bd9Sstevel@tonic-gate #endif 18827c478bd9Sstevel@tonic-gate if (file == (struct _buf *)-1) { 18837c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 18847c478bd9Sstevel@tonic-gate goto bad; 18857c478bd9Sstevel@tonic-gate } 18867c478bd9Sstevel@tonic-gate #ifdef MODDIR_SUFFIX 18877c478bd9Sstevel@tonic-gate /* 18887c478bd9Sstevel@tonic-gate * There is no driver module in the ISA specific (suffix) 18897c478bd9Sstevel@tonic-gate * subdirectory but there is a module in the parent directory. 18907c478bd9Sstevel@tonic-gate */ 18917c478bd9Sstevel@tonic-gate if (strncmp(filename, "drv/", 4) == 0) { 18927c478bd9Sstevel@tonic-gate no_suffixdir_drv = 1; 18937c478bd9Sstevel@tonic-gate } 18947c478bd9Sstevel@tonic-gate #endif 18957c478bd9Sstevel@tonic-gate } 18967c478bd9Sstevel@tonic-gate 18977c478bd9Sstevel@tonic-gate mp->filename = kobj_alloc(strlen(file->_name) + 1, KM_WAIT); 18987c478bd9Sstevel@tonic-gate (void) strcpy(mp->filename, file->_name); 18997c478bd9Sstevel@tonic-gate 19007c478bd9Sstevel@tonic-gate if (kobj_read_file(file, (char *)&mp->hdr, sizeof (mp->hdr), 0) < 0) { 19017c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_load_module: %s read header failed\n", 19027c478bd9Sstevel@tonic-gate modname); 19037c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(file->_name) + 1); 19047c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 19057c478bd9Sstevel@tonic-gate goto bad; 19067c478bd9Sstevel@tonic-gate } 19077c478bd9Sstevel@tonic-gate for (i = 0; i < SELFMAG; i++) { 19087c478bd9Sstevel@tonic-gate if (mp->hdr.e_ident[i] != ELFMAG[i]) { 19097c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 19107c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s not an elf module\n", 19117c478bd9Sstevel@tonic-gate modname); 19127c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(file->_name) + 1); 19137c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 19147c478bd9Sstevel@tonic-gate goto bad; 19157c478bd9Sstevel@tonic-gate } 19167c478bd9Sstevel@tonic-gate } 19177c478bd9Sstevel@tonic-gate /* 19187c478bd9Sstevel@tonic-gate * It's ELF, but is it our ISA? Interpreting the header 19197c478bd9Sstevel@tonic-gate * from a file for a byte-swapped ISA could cause a huge 19207c478bd9Sstevel@tonic-gate * and unsatisfiable value to be passed to kobj_alloc below 19217c478bd9Sstevel@tonic-gate * and therefore hang booting. 19227c478bd9Sstevel@tonic-gate */ 19237c478bd9Sstevel@tonic-gate if (!elf_mach_ok(&mp->hdr)) { 19247c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 19257c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s not an elf module for this ISA\n", 19267c478bd9Sstevel@tonic-gate modname); 19277c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(file->_name) + 1); 19287c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 19297c478bd9Sstevel@tonic-gate #ifdef MODDIR_SUFFIX 19307c478bd9Sstevel@tonic-gate /* 19317c478bd9Sstevel@tonic-gate * The driver mod is not in the ISA specific subdirectory 19327c478bd9Sstevel@tonic-gate * and the module in the parent directory is not our ISA. 19337c478bd9Sstevel@tonic-gate * If it is our ISA, for now we will silently succeed. 19347c478bd9Sstevel@tonic-gate */ 19357c478bd9Sstevel@tonic-gate if (no_suffixdir_drv == 1) { 19367c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "?NOTICE: %s: 64-bit driver module" 19377c478bd9Sstevel@tonic-gate " not found\n", modname); 19387c478bd9Sstevel@tonic-gate } 19397c478bd9Sstevel@tonic-gate #endif 19407c478bd9Sstevel@tonic-gate goto bad; 19417c478bd9Sstevel@tonic-gate } 19427c478bd9Sstevel@tonic-gate 19437c478bd9Sstevel@tonic-gate /* 19447c478bd9Sstevel@tonic-gate * All modules, save for unix, should be relocatable (as opposed to 19457c478bd9Sstevel@tonic-gate * dynamic). Dynamic modules come with PLTs and GOTs, which can't 19467c478bd9Sstevel@tonic-gate * currently be processed by krtld. 19477c478bd9Sstevel@tonic-gate */ 19487c478bd9Sstevel@tonic-gate if (mp->hdr.e_type != ET_REL) { 19497c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 19507c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s isn't a relocatable (ET_REL) " 19517c478bd9Sstevel@tonic-gate "module\n", modname); 19527c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(file->_name) + 1); 19537c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 19547c478bd9Sstevel@tonic-gate goto bad; 19557c478bd9Sstevel@tonic-gate } 19567c478bd9Sstevel@tonic-gate 19577c478bd9Sstevel@tonic-gate n = mp->hdr.e_shentsize * mp->hdr.e_shnum; 19587c478bd9Sstevel@tonic-gate mp->shdrs = kobj_alloc(n, KM_WAIT); 19597c478bd9Sstevel@tonic-gate 19607c478bd9Sstevel@tonic-gate if (kobj_read_file(file, mp->shdrs, n, mp->hdr.e_shoff) < 0) { 19617c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_load_module: %s error reading " 19627c478bd9Sstevel@tonic-gate "section headers\n", modname); 19637c478bd9Sstevel@tonic-gate kobj_free(mp->shdrs, n); 19647c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(file->_name) + 1); 19657c478bd9Sstevel@tonic-gate kobj_free(mp, sizeof (*mp)); 19667c478bd9Sstevel@tonic-gate goto bad; 19677c478bd9Sstevel@tonic-gate } 19687c478bd9Sstevel@tonic-gate 19697c478bd9Sstevel@tonic-gate kobj_notify(KOBJ_NOTIFY_MODLOADING, modp); 19707c478bd9Sstevel@tonic-gate module_assign(modp, mp); 19717c478bd9Sstevel@tonic-gate 19727c478bd9Sstevel@tonic-gate /* read in sections */ 19737c478bd9Sstevel@tonic-gate if (get_progbits(mp, file) < 0) { 19747c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s error reading sections\n", modname); 19757c478bd9Sstevel@tonic-gate goto bad; 19767c478bd9Sstevel@tonic-gate } 19777c478bd9Sstevel@tonic-gate 19787c478bd9Sstevel@tonic-gate if (do_dynamic(mp, file) < 0) { 19797c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s error reading dynamic section\n", 19807c478bd9Sstevel@tonic-gate modname); 19817c478bd9Sstevel@tonic-gate goto bad; 19827c478bd9Sstevel@tonic-gate } 19837c478bd9Sstevel@tonic-gate 19847c478bd9Sstevel@tonic-gate modp->mod_text = mp->text; 19857c478bd9Sstevel@tonic-gate modp->mod_text_size = mp->text_size; 19867c478bd9Sstevel@tonic-gate 19877c478bd9Sstevel@tonic-gate /* read in symbols; adjust values for each section's real address */ 19887c478bd9Sstevel@tonic-gate if (get_syms(mp, file) < 0) { 19897c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s error reading symbols\n", 19907c478bd9Sstevel@tonic-gate modname); 19917c478bd9Sstevel@tonic-gate goto bad; 19927c478bd9Sstevel@tonic-gate } 19937c478bd9Sstevel@tonic-gate 19947c478bd9Sstevel@tonic-gate /* 19957c478bd9Sstevel@tonic-gate * If we didn't dependency information from the dynamic section, look 19967c478bd9Sstevel@tonic-gate * for it the old-fashioned way. 19977c478bd9Sstevel@tonic-gate */ 19987c478bd9Sstevel@tonic-gate if (mp->depends_on == NULL) 19997c478bd9Sstevel@tonic-gate mp->depends_on = depends_on(mp); 20007c478bd9Sstevel@tonic-gate 20017c478bd9Sstevel@tonic-gate if (get_ctf(mp, file) < 0) { 20027c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s debug information will not " 20037c478bd9Sstevel@tonic-gate "be available\n", modname); 20047c478bd9Sstevel@tonic-gate } 20057c478bd9Sstevel@tonic-gate 20067c478bd9Sstevel@tonic-gate /* primary kernel modules do not have a signature section */ 20077c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_PRIM)) 20087c478bd9Sstevel@tonic-gate get_signature(mp, file); 20097c478bd9Sstevel@tonic-gate 20107c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 20117c478bd9Sstevel@tonic-gate if (kobj_debug & D_LOADING) { 20127c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: file=%s\n", mp->filename); 20137c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\ttext:0x%p", mp->text); 20147c478bd9Sstevel@tonic-gate _kobj_printf(ops, " size: 0x%x\n", mp->text_size); 20157c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\tdata:0x%p", mp->data); 20167c478bd9Sstevel@tonic-gate _kobj_printf(ops, " dsize: 0x%x\n", mp->data_size); 20177c478bd9Sstevel@tonic-gate } 20187c478bd9Sstevel@tonic-gate #endif /* KOBJ_DEBUG */ 20197c478bd9Sstevel@tonic-gate 20207c478bd9Sstevel@tonic-gate /* 20217c478bd9Sstevel@tonic-gate * For primary kernel modules, we defer 20227c478bd9Sstevel@tonic-gate * symbol resolution and relocation until 20237c478bd9Sstevel@tonic-gate * all primary objects have been loaded. 20247c478bd9Sstevel@tonic-gate */ 20257c478bd9Sstevel@tonic-gate if (!standalone) { 20267c478bd9Sstevel@tonic-gate int ddrval, dcrval; 20277c478bd9Sstevel@tonic-gate char *dependent_modname; 20287c478bd9Sstevel@tonic-gate /* load all dependents */ 20297c478bd9Sstevel@tonic-gate dependent_modname = kobj_zalloc(MODMAXNAMELEN, KM_WAIT); 20307c478bd9Sstevel@tonic-gate ddrval = do_dependents(modp, dependent_modname, MODMAXNAMELEN); 20317c478bd9Sstevel@tonic-gate 20327c478bd9Sstevel@tonic-gate /* 20337c478bd9Sstevel@tonic-gate * resolve undefined and common symbols, 20347c478bd9Sstevel@tonic-gate * also allocates common space 20357c478bd9Sstevel@tonic-gate */ 20367c478bd9Sstevel@tonic-gate if ((dcrval = do_common(mp)) < 0) { 20377c478bd9Sstevel@tonic-gate switch (dcrval) { 20387c478bd9Sstevel@tonic-gate case DOSYM_UNSAFE: 20397c478bd9Sstevel@tonic-gate _kobj_printf(ops, "WARNING: mod_load: " 20407c478bd9Sstevel@tonic-gate "MT-unsafe module '%s' rejected\n", 20417c478bd9Sstevel@tonic-gate modname); 20427c478bd9Sstevel@tonic-gate break; 20437c478bd9Sstevel@tonic-gate case DOSYM_UNDEF: 20447c478bd9Sstevel@tonic-gate _kobj_printf(ops, "WARNING: mod_load: " 20457c478bd9Sstevel@tonic-gate "cannot load module '%s'\n", 20467c478bd9Sstevel@tonic-gate modname); 20477c478bd9Sstevel@tonic-gate if (ddrval == -1) { 20487c478bd9Sstevel@tonic-gate _kobj_printf(ops, "WARNING: %s: ", 20497c478bd9Sstevel@tonic-gate modname); 20507c478bd9Sstevel@tonic-gate _kobj_printf(ops, 20517c478bd9Sstevel@tonic-gate "unable to resolve dependency, " 20527c478bd9Sstevel@tonic-gate "module '%s' not found\n", 20537c478bd9Sstevel@tonic-gate dependent_modname); 20547c478bd9Sstevel@tonic-gate } 20557c478bd9Sstevel@tonic-gate break; 20567c478bd9Sstevel@tonic-gate } 20577c478bd9Sstevel@tonic-gate } 20587c478bd9Sstevel@tonic-gate kobj_free(dependent_modname, MODMAXNAMELEN); 20597c478bd9Sstevel@tonic-gate if (dcrval < 0) 20607c478bd9Sstevel@tonic-gate goto bad; 20617c478bd9Sstevel@tonic-gate 20627c478bd9Sstevel@tonic-gate /* process relocation tables */ 20637c478bd9Sstevel@tonic-gate if (do_relocations(mp) < 0) { 20647c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s error doing relocations\n", 20657c478bd9Sstevel@tonic-gate modname); 20667c478bd9Sstevel@tonic-gate goto bad; 20677c478bd9Sstevel@tonic-gate } 20687c478bd9Sstevel@tonic-gate 20697c478bd9Sstevel@tonic-gate if (mp->destination) { 20707c478bd9Sstevel@tonic-gate off_t off = (uintptr_t)mp->destination & PAGEOFFSET; 20717c478bd9Sstevel@tonic-gate caddr_t base = (caddr_t)mp->destination - off; 20727c478bd9Sstevel@tonic-gate size_t size = P2ROUNDUP(mp->text_size + off, PAGESIZE); 20737c478bd9Sstevel@tonic-gate 20747c478bd9Sstevel@tonic-gate hat_unload(kas.a_hat, base, size, HAT_UNLOAD_UNLOCK); 20757c478bd9Sstevel@tonic-gate vmem_free(heap_arena, base, size); 20767c478bd9Sstevel@tonic-gate } 20777c478bd9Sstevel@tonic-gate 20787c478bd9Sstevel@tonic-gate /* sync_instruction_memory */ 20797c478bd9Sstevel@tonic-gate kobj_sync_instruction_memory(mp->text, mp->text_size); 20807c478bd9Sstevel@tonic-gate kobj_export_module(mp); 20817c478bd9Sstevel@tonic-gate kobj_notify(KOBJ_NOTIFY_MODLOADED, modp); 20827c478bd9Sstevel@tonic-gate } 20837c478bd9Sstevel@tonic-gate kobj_close_file(file); 20847c478bd9Sstevel@tonic-gate return (0); 20857c478bd9Sstevel@tonic-gate bad: 20867c478bd9Sstevel@tonic-gate if (file != (struct _buf *)-1) 20877c478bd9Sstevel@tonic-gate kobj_close_file(file); 20887c478bd9Sstevel@tonic-gate if (modp->mod_mp != NULL) 20897c478bd9Sstevel@tonic-gate free_module_data(modp->mod_mp); 20907c478bd9Sstevel@tonic-gate 20917c478bd9Sstevel@tonic-gate module_assign(modp, NULL); 20927c478bd9Sstevel@tonic-gate return ((file == (struct _buf *)-1) ? ENOENT : EINVAL); 20937c478bd9Sstevel@tonic-gate } 20947c478bd9Sstevel@tonic-gate 20957c478bd9Sstevel@tonic-gate int 20967c478bd9Sstevel@tonic-gate kobj_load_primary_module(struct modctl *modp) 20977c478bd9Sstevel@tonic-gate { 20987c478bd9Sstevel@tonic-gate struct modctl *dep; 20997c478bd9Sstevel@tonic-gate struct module *mp; 21007c478bd9Sstevel@tonic-gate 21017c478bd9Sstevel@tonic-gate if (kobj_load_module(modp, 0) != 0) 21027c478bd9Sstevel@tonic-gate return (-1); 21037c478bd9Sstevel@tonic-gate 21047c478bd9Sstevel@tonic-gate mp = modp->mod_mp; 21057c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_PRIM; 21067c478bd9Sstevel@tonic-gate 21077c478bd9Sstevel@tonic-gate /* Bind new module to its dependents */ 21087c478bd9Sstevel@tonic-gate if (mp->depends_on != NULL && (dep = 21097c478bd9Sstevel@tonic-gate mod_already_loaded(mp->depends_on)) == NULL) { 21107c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 21117c478bd9Sstevel@tonic-gate if (kobj_debug & D_DEBUG) { 21127c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: failed to resolve deps " 21137c478bd9Sstevel@tonic-gate "for primary %s\n", modp->mod_modname); 21147c478bd9Sstevel@tonic-gate } 21157c478bd9Sstevel@tonic-gate #endif 21167c478bd9Sstevel@tonic-gate return (-1); 21177c478bd9Sstevel@tonic-gate } 21187c478bd9Sstevel@tonic-gate 21197c478bd9Sstevel@tonic-gate add_dependent(mp, dep->mod_mp); 21207c478bd9Sstevel@tonic-gate 21217c478bd9Sstevel@tonic-gate /* 21227c478bd9Sstevel@tonic-gate * Relocate it. This module may not be part of a link map, so we 21237c478bd9Sstevel@tonic-gate * can't use bind_primary. 21247c478bd9Sstevel@tonic-gate */ 21257c478bd9Sstevel@tonic-gate if (do_common(mp) < 0 || do_symbols(mp, 0) < 0 || 21267c478bd9Sstevel@tonic-gate do_relocations(mp) < 0) { 21277c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 21287c478bd9Sstevel@tonic-gate if (kobj_debug & D_DEBUG) { 21297c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: failed to relocate " 21307c478bd9Sstevel@tonic-gate "primary %s\n", modp->mod_modname); 21317c478bd9Sstevel@tonic-gate } 21327c478bd9Sstevel@tonic-gate #endif 21337c478bd9Sstevel@tonic-gate return (-1); 21347c478bd9Sstevel@tonic-gate } 21357c478bd9Sstevel@tonic-gate 21367c478bd9Sstevel@tonic-gate return (0); 21377c478bd9Sstevel@tonic-gate } 21387c478bd9Sstevel@tonic-gate 21397c478bd9Sstevel@tonic-gate static void 21407c478bd9Sstevel@tonic-gate module_assign(struct modctl *cp, struct module *mp) 21417c478bd9Sstevel@tonic-gate { 21427c478bd9Sstevel@tonic-gate if (standalone) { 21437c478bd9Sstevel@tonic-gate cp->mod_mp = mp; 21447c478bd9Sstevel@tonic-gate return; 21457c478bd9Sstevel@tonic-gate } 21467c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 21477c478bd9Sstevel@tonic-gate cp->mod_mp = mp; 21487c478bd9Sstevel@tonic-gate cp->mod_gencount++; 21497c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 21507c478bd9Sstevel@tonic-gate } 21517c478bd9Sstevel@tonic-gate 21527c478bd9Sstevel@tonic-gate void 21537c478bd9Sstevel@tonic-gate kobj_unload_module(struct modctl *modp) 21547c478bd9Sstevel@tonic-gate { 21557c478bd9Sstevel@tonic-gate struct module *mp = modp->mod_mp; 21567c478bd9Sstevel@tonic-gate 21577c478bd9Sstevel@tonic-gate if ((_moddebug & MODDEBUG_KEEPTEXT) && mp) { 21587c478bd9Sstevel@tonic-gate _kobj_printf(ops, "text for %s ", mp->filename); 21597c478bd9Sstevel@tonic-gate _kobj_printf(ops, "was at %p\n", mp->text); 21607c478bd9Sstevel@tonic-gate mp->text = NULL; /* don't actually free it */ 21617c478bd9Sstevel@tonic-gate } 21627c478bd9Sstevel@tonic-gate 21637c478bd9Sstevel@tonic-gate kobj_notify(KOBJ_NOTIFY_MODUNLOADING, modp); 21647c478bd9Sstevel@tonic-gate 21657c478bd9Sstevel@tonic-gate /* 21667c478bd9Sstevel@tonic-gate * Null out mod_mp first, so consumers (debuggers) know not to look 21677c478bd9Sstevel@tonic-gate * at the module structure any more. 21687c478bd9Sstevel@tonic-gate */ 21697c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 21707c478bd9Sstevel@tonic-gate modp->mod_mp = NULL; 21717c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 21727c478bd9Sstevel@tonic-gate 21737c478bd9Sstevel@tonic-gate kobj_notify(KOBJ_NOTIFY_MODUNLOADED, modp); 21747c478bd9Sstevel@tonic-gate free_module_data(mp); 21757c478bd9Sstevel@tonic-gate } 21767c478bd9Sstevel@tonic-gate 21777c478bd9Sstevel@tonic-gate static void 21787c478bd9Sstevel@tonic-gate free_module_data(struct module *mp) 21797c478bd9Sstevel@tonic-gate { 21807c478bd9Sstevel@tonic-gate struct module_list *lp, *tmp; 21817c478bd9Sstevel@tonic-gate int ksyms_exported = 0; 21827c478bd9Sstevel@tonic-gate 21837c478bd9Sstevel@tonic-gate lp = mp->head; 21847c478bd9Sstevel@tonic-gate while (lp) { 21857c478bd9Sstevel@tonic-gate tmp = lp; 21867c478bd9Sstevel@tonic-gate lp = lp->next; 21877c478bd9Sstevel@tonic-gate kobj_free((char *)tmp, sizeof (*tmp)); 21887c478bd9Sstevel@tonic-gate } 21897c478bd9Sstevel@tonic-gate 21907c478bd9Sstevel@tonic-gate rw_enter(&ksyms_lock, RW_WRITER); 21917c478bd9Sstevel@tonic-gate if (mp->symspace) { 21927c478bd9Sstevel@tonic-gate if (vmem_contains(ksyms_arena, mp->symspace, mp->symsize)) { 21937c478bd9Sstevel@tonic-gate vmem_free(ksyms_arena, mp->symspace, mp->symsize); 21947c478bd9Sstevel@tonic-gate ksyms_exported = 1; 21957c478bd9Sstevel@tonic-gate } else { 21967c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_NOKSYMS) 21977c478bd9Sstevel@tonic-gate ksyms_exported = 1; 21987c478bd9Sstevel@tonic-gate kobj_free(mp->symspace, mp->symsize); 21997c478bd9Sstevel@tonic-gate } 22007c478bd9Sstevel@tonic-gate } 22017c478bd9Sstevel@tonic-gate rw_exit(&ksyms_lock); 22027c478bd9Sstevel@tonic-gate 22037c478bd9Sstevel@tonic-gate if (mp->ctfdata) { 22047c478bd9Sstevel@tonic-gate if (vmem_contains(ctf_arena, mp->ctfdata, mp->ctfsize)) 22057c478bd9Sstevel@tonic-gate vmem_free(ctf_arena, mp->ctfdata, mp->ctfsize); 22067c478bd9Sstevel@tonic-gate else 22077c478bd9Sstevel@tonic-gate kobj_free(mp->ctfdata, mp->ctfsize); 22087c478bd9Sstevel@tonic-gate } 22097c478bd9Sstevel@tonic-gate 22107c478bd9Sstevel@tonic-gate if (mp->sigdata) 22117c478bd9Sstevel@tonic-gate kobj_free(mp->sigdata, mp->sigsize); 22127c478bd9Sstevel@tonic-gate 22137c478bd9Sstevel@tonic-gate /* 22147c478bd9Sstevel@tonic-gate * We did not get far enough into kobj_export_ksyms() to free allocated 22157c478bd9Sstevel@tonic-gate * buffers because we encounted error conditions. Free the buffers. 22167c478bd9Sstevel@tonic-gate */ 22177c478bd9Sstevel@tonic-gate if ((ksyms_exported == 0) && (mp->shdrs != NULL)) { 22187c478bd9Sstevel@tonic-gate uint_t shn; 22197c478bd9Sstevel@tonic-gate Shdr *shp; 22207c478bd9Sstevel@tonic-gate 22217c478bd9Sstevel@tonic-gate for (shn = 1; shn < mp->hdr.e_shnum; shn++) { 22227c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + shn * mp->hdr.e_shentsize); 22237c478bd9Sstevel@tonic-gate switch (shp->sh_type) { 22247c478bd9Sstevel@tonic-gate case SHT_RELA: 22257c478bd9Sstevel@tonic-gate case SHT_REL: 22267c478bd9Sstevel@tonic-gate if (shp->sh_addr != 0) 22277c478bd9Sstevel@tonic-gate kobj_free((void *)shp->sh_addr, 22287c478bd9Sstevel@tonic-gate shp->sh_size); 22297c478bd9Sstevel@tonic-gate break; 22307c478bd9Sstevel@tonic-gate } 22317c478bd9Sstevel@tonic-gate } 22327c478bd9Sstevel@tonic-gate err_free_done: 22337c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_PRIM)) { 22347c478bd9Sstevel@tonic-gate kobj_free(mp->shdrs, 22357c478bd9Sstevel@tonic-gate mp->hdr.e_shentsize * mp->hdr.e_shnum); 22367c478bd9Sstevel@tonic-gate } 22377c478bd9Sstevel@tonic-gate } 22387c478bd9Sstevel@tonic-gate 22397c478bd9Sstevel@tonic-gate if (mp->bss) 22407c478bd9Sstevel@tonic-gate vmem_free(data_arena, (void *)mp->bss, mp->bss_size); 22417c478bd9Sstevel@tonic-gate 22427c478bd9Sstevel@tonic-gate if (mp->fbt_tab) 22437c478bd9Sstevel@tonic-gate kobj_texthole_free(mp->fbt_tab, mp->fbt_size); 22447c478bd9Sstevel@tonic-gate 22457c478bd9Sstevel@tonic-gate if (mp->textwin_base) 22467c478bd9Sstevel@tonic-gate kobj_textwin_free(mp); 22477c478bd9Sstevel@tonic-gate 22487c478bd9Sstevel@tonic-gate if (mp->sdt_probes != NULL) { 22497c478bd9Sstevel@tonic-gate sdt_probedesc_t *sdp = mp->sdt_probes, *next; 22507c478bd9Sstevel@tonic-gate 22517c478bd9Sstevel@tonic-gate while (sdp != NULL) { 22527c478bd9Sstevel@tonic-gate next = sdp->sdpd_next; 22537c478bd9Sstevel@tonic-gate kobj_free(sdp->sdpd_name, strlen(sdp->sdpd_name) + 1); 22547c478bd9Sstevel@tonic-gate kobj_free(sdp, sizeof (sdt_probedesc_t)); 22557c478bd9Sstevel@tonic-gate sdp = next; 22567c478bd9Sstevel@tonic-gate } 22577c478bd9Sstevel@tonic-gate } 22587c478bd9Sstevel@tonic-gate 22597c478bd9Sstevel@tonic-gate if (mp->sdt_tab) 22607c478bd9Sstevel@tonic-gate kobj_texthole_free(mp->sdt_tab, mp->sdt_size); 22617c478bd9Sstevel@tonic-gate if (mp->text) 22627c478bd9Sstevel@tonic-gate vmem_free(text_arena, mp->text, mp->text_size); 22637c478bd9Sstevel@tonic-gate if (mp->data) 22647c478bd9Sstevel@tonic-gate vmem_free(data_arena, mp->data, mp->data_size); 22657c478bd9Sstevel@tonic-gate if (mp->depends_on) 22667c478bd9Sstevel@tonic-gate kobj_free(mp->depends_on, strlen(mp->depends_on)+1); 22677c478bd9Sstevel@tonic-gate if (mp->filename) 22687c478bd9Sstevel@tonic-gate kobj_free(mp->filename, strlen(mp->filename)+1); 22697c478bd9Sstevel@tonic-gate 22707c478bd9Sstevel@tonic-gate kobj_free((char *)mp, sizeof (*mp)); 22717c478bd9Sstevel@tonic-gate } 22727c478bd9Sstevel@tonic-gate 22737c478bd9Sstevel@tonic-gate static int 22747c478bd9Sstevel@tonic-gate get_progbits(struct module *mp, struct _buf *file) 22757c478bd9Sstevel@tonic-gate { 22767c478bd9Sstevel@tonic-gate struct proginfo *tp, *dp, *sdp; 22777c478bd9Sstevel@tonic-gate Shdr *shp; 22787c478bd9Sstevel@tonic-gate reloc_dest_t dest = NULL; 22797c478bd9Sstevel@tonic-gate uintptr_t bits_ptr; 2280ba2be530Sab196087 uintptr_t text = 0, data, textptr; 22817c478bd9Sstevel@tonic-gate uint_t shn; 22827c478bd9Sstevel@tonic-gate int err = -1; 22837c478bd9Sstevel@tonic-gate 2284986fd29aSsetje tp = kobj_zalloc(sizeof (struct proginfo), KM_WAIT|KM_TMP); 2285986fd29aSsetje dp = kobj_zalloc(sizeof (struct proginfo), KM_WAIT|KM_TMP); 2286986fd29aSsetje sdp = kobj_zalloc(sizeof (struct proginfo), KM_WAIT|KM_TMP); 22877c478bd9Sstevel@tonic-gate /* 22887c478bd9Sstevel@tonic-gate * loop through sections to find out how much space we need 22897c478bd9Sstevel@tonic-gate * for text, data, (also bss that is already assigned) 22907c478bd9Sstevel@tonic-gate */ 22917c478bd9Sstevel@tonic-gate if (get_progbits_size(mp, tp, dp, sdp) < 0) 22927c478bd9Sstevel@tonic-gate goto done; 22937c478bd9Sstevel@tonic-gate 22947c478bd9Sstevel@tonic-gate mp->text_size = tp->size; 22957c478bd9Sstevel@tonic-gate mp->data_size = dp->size; 22967c478bd9Sstevel@tonic-gate 22977c478bd9Sstevel@tonic-gate if (standalone) { 2298ae115bc7Smrj caddr_t limit = _data; 2299ae115bc7Smrj 2300ae115bc7Smrj if (lg_pagesize && _text + lg_pagesize < limit) 2301ae115bc7Smrj limit = _text + lg_pagesize; 2302ae115bc7Smrj 23037c478bd9Sstevel@tonic-gate mp->text = kobj_segbrk(&_etext, mp->text_size, 2304ae115bc7Smrj tp->align, limit); 23057c478bd9Sstevel@tonic-gate /* 23067c478bd9Sstevel@tonic-gate * If we can't grow the text segment, try the 23077c478bd9Sstevel@tonic-gate * data segment before failing. 23087c478bd9Sstevel@tonic-gate */ 23097c478bd9Sstevel@tonic-gate if (mp->text == NULL) { 23107c478bd9Sstevel@tonic-gate mp->text = kobj_segbrk(&_edata, mp->text_size, 23117c478bd9Sstevel@tonic-gate tp->align, 0); 23127c478bd9Sstevel@tonic-gate } 23137c478bd9Sstevel@tonic-gate 23147c478bd9Sstevel@tonic-gate mp->data = kobj_segbrk(&_edata, mp->data_size, dp->align, 0); 23157c478bd9Sstevel@tonic-gate 23167c478bd9Sstevel@tonic-gate if (mp->text == NULL || mp->data == NULL) 23177c478bd9Sstevel@tonic-gate goto done; 23187c478bd9Sstevel@tonic-gate 23197c478bd9Sstevel@tonic-gate } else { 23207c478bd9Sstevel@tonic-gate if (text_arena == NULL) 23217c478bd9Sstevel@tonic-gate kobj_vmem_init(&text_arena, &data_arena); 23227c478bd9Sstevel@tonic-gate 23237c478bd9Sstevel@tonic-gate /* 23247c478bd9Sstevel@tonic-gate * some architectures may want to load the module on a 23257c478bd9Sstevel@tonic-gate * page that is currently read only. It may not be 23267c478bd9Sstevel@tonic-gate * possible for those architectures to remap their page 23277c478bd9Sstevel@tonic-gate * on the fly. So we provide a facility for them to hang 23287c478bd9Sstevel@tonic-gate * a private hook where the memory they assign the module 23297c478bd9Sstevel@tonic-gate * is not the actual place where the module loads. 23307c478bd9Sstevel@tonic-gate * 23317c478bd9Sstevel@tonic-gate * In this case there are two addresses that deal with the 23327c478bd9Sstevel@tonic-gate * modload. 23337c478bd9Sstevel@tonic-gate * 1) the final destination of the module 23347c478bd9Sstevel@tonic-gate * 2) the address that is used to view the newly 23357c478bd9Sstevel@tonic-gate * loaded module until all the relocations relative to 1 23367c478bd9Sstevel@tonic-gate * above are completed. 23377c478bd9Sstevel@tonic-gate * 23387c478bd9Sstevel@tonic-gate * That is what dest is used for below. 23397c478bd9Sstevel@tonic-gate */ 23407c478bd9Sstevel@tonic-gate mp->text_size += tp->align; 23417c478bd9Sstevel@tonic-gate mp->data_size += dp->align; 23427c478bd9Sstevel@tonic-gate 23437c478bd9Sstevel@tonic-gate mp->text = kobj_text_alloc(text_arena, mp->text_size); 23447c478bd9Sstevel@tonic-gate 23457c478bd9Sstevel@tonic-gate /* 23467c478bd9Sstevel@tonic-gate * a remap is taking place. Align the text ptr relative 23477c478bd9Sstevel@tonic-gate * to the secondary mapping. That is where the bits will 23487c478bd9Sstevel@tonic-gate * be read in. 23497c478bd9Sstevel@tonic-gate */ 23507c478bd9Sstevel@tonic-gate if (kvseg.s_base != NULL && !vmem_contains(heaptext_arena, 23517c478bd9Sstevel@tonic-gate mp->text, mp->text_size)) { 23527c478bd9Sstevel@tonic-gate off_t off = (uintptr_t)mp->text & PAGEOFFSET; 23537c478bd9Sstevel@tonic-gate size_t size = P2ROUNDUP(mp->text_size + off, PAGESIZE); 23547c478bd9Sstevel@tonic-gate caddr_t map = vmem_alloc(heap_arena, size, VM_SLEEP); 23557c478bd9Sstevel@tonic-gate caddr_t orig = mp->text - off; 23567c478bd9Sstevel@tonic-gate pgcnt_t pages = size / PAGESIZE; 23577c478bd9Sstevel@tonic-gate 23587c478bd9Sstevel@tonic-gate dest = (reloc_dest_t)(map + off); 23597c478bd9Sstevel@tonic-gate text = ALIGN((uintptr_t)dest, tp->align); 23607c478bd9Sstevel@tonic-gate 23617c478bd9Sstevel@tonic-gate while (pages--) { 23627c478bd9Sstevel@tonic-gate hat_devload(kas.a_hat, map, PAGESIZE, 23637c478bd9Sstevel@tonic-gate hat_getpfnum(kas.a_hat, orig), 23647c478bd9Sstevel@tonic-gate PROT_READ | PROT_WRITE | PROT_EXEC, 23657c478bd9Sstevel@tonic-gate HAT_LOAD_NOCONSIST | HAT_LOAD_LOCK); 23667c478bd9Sstevel@tonic-gate map += PAGESIZE; 23677c478bd9Sstevel@tonic-gate orig += PAGESIZE; 23687c478bd9Sstevel@tonic-gate } 23697c478bd9Sstevel@tonic-gate /* 23707c478bd9Sstevel@tonic-gate * Since we set up a non-cacheable mapping, we need 23717c478bd9Sstevel@tonic-gate * to flush any old entries in the cache that might 23727c478bd9Sstevel@tonic-gate * be left around from the read-only mapping. 23737c478bd9Sstevel@tonic-gate */ 23747c478bd9Sstevel@tonic-gate dcache_flushall(); 23757c478bd9Sstevel@tonic-gate } 23767c478bd9Sstevel@tonic-gate if (mp->data_size) 23777c478bd9Sstevel@tonic-gate mp->data = vmem_alloc(data_arena, mp->data_size, 23787c478bd9Sstevel@tonic-gate VM_SLEEP | VM_BESTFIT); 23797c478bd9Sstevel@tonic-gate } 23807c478bd9Sstevel@tonic-gate textptr = (uintptr_t)mp->text; 23817c478bd9Sstevel@tonic-gate textptr = ALIGN(textptr, tp->align); 23827c478bd9Sstevel@tonic-gate mp->destination = dest; 23837c478bd9Sstevel@tonic-gate 23847c478bd9Sstevel@tonic-gate /* 23857c478bd9Sstevel@tonic-gate * This is the case where a remap is not being done. 23867c478bd9Sstevel@tonic-gate */ 23877c478bd9Sstevel@tonic-gate if (text == 0) 23887c478bd9Sstevel@tonic-gate text = ALIGN((uintptr_t)mp->text, tp->align); 23897c478bd9Sstevel@tonic-gate data = ALIGN((uintptr_t)mp->data, dp->align); 23907c478bd9Sstevel@tonic-gate 23917c478bd9Sstevel@tonic-gate /* now loop though sections assigning addresses and loading the data */ 23927c478bd9Sstevel@tonic-gate for (shn = 1; shn < mp->hdr.e_shnum; shn++) { 23937c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + shn * mp->hdr.e_shentsize); 23947c478bd9Sstevel@tonic-gate if (!(shp->sh_flags & SHF_ALLOC)) 23957c478bd9Sstevel@tonic-gate continue; 23967c478bd9Sstevel@tonic-gate 23977c478bd9Sstevel@tonic-gate if ((shp->sh_flags & SHF_WRITE) == 0) 23987c478bd9Sstevel@tonic-gate bits_ptr = text; 23997c478bd9Sstevel@tonic-gate else 24007c478bd9Sstevel@tonic-gate bits_ptr = data; 24017c478bd9Sstevel@tonic-gate 24027c478bd9Sstevel@tonic-gate bits_ptr = ALIGN(bits_ptr, shp->sh_addralign); 24037c478bd9Sstevel@tonic-gate 24047c478bd9Sstevel@tonic-gate if (shp->sh_type == SHT_NOBITS) { 24057c478bd9Sstevel@tonic-gate /* 24067c478bd9Sstevel@tonic-gate * Zero bss. 24077c478bd9Sstevel@tonic-gate */ 24087c478bd9Sstevel@tonic-gate bzero((caddr_t)bits_ptr, shp->sh_size); 24097c478bd9Sstevel@tonic-gate shp->sh_type = SHT_PROGBITS; 24107c478bd9Sstevel@tonic-gate } else { 24117c478bd9Sstevel@tonic-gate if (kobj_read_file(file, (char *)bits_ptr, 24127c478bd9Sstevel@tonic-gate shp->sh_size, shp->sh_offset) < 0) 24137c478bd9Sstevel@tonic-gate goto done; 24147c478bd9Sstevel@tonic-gate } 24157c478bd9Sstevel@tonic-gate 24167c478bd9Sstevel@tonic-gate if (shp->sh_flags & SHF_WRITE) { 24177c478bd9Sstevel@tonic-gate shp->sh_addr = bits_ptr; 24187c478bd9Sstevel@tonic-gate } else { 24197c478bd9Sstevel@tonic-gate textptr = ALIGN(textptr, shp->sh_addralign); 24207c478bd9Sstevel@tonic-gate shp->sh_addr = textptr; 24217c478bd9Sstevel@tonic-gate textptr += shp->sh_size; 24227c478bd9Sstevel@tonic-gate } 24237c478bd9Sstevel@tonic-gate 24247c478bd9Sstevel@tonic-gate bits_ptr += shp->sh_size; 24257c478bd9Sstevel@tonic-gate if ((shp->sh_flags & SHF_WRITE) == 0) 24267c478bd9Sstevel@tonic-gate text = bits_ptr; 24277c478bd9Sstevel@tonic-gate else 24287c478bd9Sstevel@tonic-gate data = bits_ptr; 24297c478bd9Sstevel@tonic-gate } 24307c478bd9Sstevel@tonic-gate 24317c478bd9Sstevel@tonic-gate err = 0; 24327c478bd9Sstevel@tonic-gate done: 24337c478bd9Sstevel@tonic-gate /* 24347c478bd9Sstevel@tonic-gate * Free and mark as freed the section headers here so that 24357c478bd9Sstevel@tonic-gate * free_module_data() does not have to worry about this buffer. 24367c478bd9Sstevel@tonic-gate * 24377c478bd9Sstevel@tonic-gate * This buffer is freed here because one of the possible reasons 24387c478bd9Sstevel@tonic-gate * for error is a section with non-zero sh_addr and in that case 24397c478bd9Sstevel@tonic-gate * free_module_data() would have no way of recognizing that this 24407c478bd9Sstevel@tonic-gate * buffer was unallocated. 24417c478bd9Sstevel@tonic-gate */ 24427c478bd9Sstevel@tonic-gate if (err != 0) { 24437c478bd9Sstevel@tonic-gate kobj_free(mp->shdrs, mp->hdr.e_shentsize * mp->hdr.e_shnum); 24447c478bd9Sstevel@tonic-gate mp->shdrs = NULL; 24457c478bd9Sstevel@tonic-gate } 24467c478bd9Sstevel@tonic-gate 24477c478bd9Sstevel@tonic-gate (void) kobj_free(tp, sizeof (struct proginfo)); 24487c478bd9Sstevel@tonic-gate (void) kobj_free(dp, sizeof (struct proginfo)); 24497c478bd9Sstevel@tonic-gate (void) kobj_free(sdp, sizeof (struct proginfo)); 24507c478bd9Sstevel@tonic-gate 24517c478bd9Sstevel@tonic-gate return (err); 24527c478bd9Sstevel@tonic-gate } 24537c478bd9Sstevel@tonic-gate 24547c478bd9Sstevel@tonic-gate /* 24557c478bd9Sstevel@tonic-gate * Go through suppress_sym_list to see if "multiply defined" 24567c478bd9Sstevel@tonic-gate * warning of this symbol should be suppressed. Return 1 if 24577c478bd9Sstevel@tonic-gate * warning should be suppressed, 0 otherwise. 24587c478bd9Sstevel@tonic-gate */ 24597c478bd9Sstevel@tonic-gate static int 24607c478bd9Sstevel@tonic-gate kobj_suppress_warning(char *symname) 24617c478bd9Sstevel@tonic-gate { 24627c478bd9Sstevel@tonic-gate int i; 24637c478bd9Sstevel@tonic-gate 24647c478bd9Sstevel@tonic-gate for (i = 0; suppress_sym_list[i] != NULL; i++) { 24657c478bd9Sstevel@tonic-gate if (strcmp(suppress_sym_list[i], symname) == 0) 24667c478bd9Sstevel@tonic-gate return (1); 24677c478bd9Sstevel@tonic-gate } 24687c478bd9Sstevel@tonic-gate 24697c478bd9Sstevel@tonic-gate return (0); 24707c478bd9Sstevel@tonic-gate } 24717c478bd9Sstevel@tonic-gate 24727c478bd9Sstevel@tonic-gate static int 24737c478bd9Sstevel@tonic-gate get_syms(struct module *mp, struct _buf *file) 24747c478bd9Sstevel@tonic-gate { 24757c478bd9Sstevel@tonic-gate uint_t shn; 24767c478bd9Sstevel@tonic-gate Shdr *shp; 24777c478bd9Sstevel@tonic-gate uint_t i; 24787c478bd9Sstevel@tonic-gate Sym *sp, *ksp; 24797c478bd9Sstevel@tonic-gate char *symname; 24807c478bd9Sstevel@tonic-gate int dosymtab = 0; 24817c478bd9Sstevel@tonic-gate 24827c478bd9Sstevel@tonic-gate /* 24837c478bd9Sstevel@tonic-gate * Find the interesting sections. 24847c478bd9Sstevel@tonic-gate */ 24857c478bd9Sstevel@tonic-gate for (shn = 1; shn < mp->hdr.e_shnum; shn++) { 24867c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + shn * mp->hdr.e_shentsize); 24877c478bd9Sstevel@tonic-gate switch (shp->sh_type) { 24887c478bd9Sstevel@tonic-gate case SHT_SYMTAB: 24897c478bd9Sstevel@tonic-gate mp->symtbl_section = shn; 24907c478bd9Sstevel@tonic-gate mp->symhdr = shp; 24917c478bd9Sstevel@tonic-gate dosymtab++; 24927c478bd9Sstevel@tonic-gate break; 24937c478bd9Sstevel@tonic-gate 24947c478bd9Sstevel@tonic-gate case SHT_RELA: 24957c478bd9Sstevel@tonic-gate case SHT_REL: 24967c478bd9Sstevel@tonic-gate /* 24977c478bd9Sstevel@tonic-gate * Already loaded. 24987c478bd9Sstevel@tonic-gate */ 24997c478bd9Sstevel@tonic-gate if (shp->sh_addr) 25007c478bd9Sstevel@tonic-gate continue; 2501986fd29aSsetje 2502986fd29aSsetje /* KM_TMP since kobj_free'd in do_relocations */ 25037c478bd9Sstevel@tonic-gate shp->sh_addr = (Addr) 25047c478bd9Sstevel@tonic-gate kobj_alloc(shp->sh_size, KM_WAIT|KM_TMP); 25057c478bd9Sstevel@tonic-gate 25067c478bd9Sstevel@tonic-gate if (kobj_read_file(file, (char *)shp->sh_addr, 25077c478bd9Sstevel@tonic-gate shp->sh_size, shp->sh_offset) < 0) { 25087c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_syms: %s, ", 25097c478bd9Sstevel@tonic-gate mp->filename); 25107c478bd9Sstevel@tonic-gate _kobj_printf(ops, "error reading section %d\n", 25117c478bd9Sstevel@tonic-gate shn); 25127c478bd9Sstevel@tonic-gate return (-1); 25137c478bd9Sstevel@tonic-gate } 25147c478bd9Sstevel@tonic-gate break; 25157c478bd9Sstevel@tonic-gate } 25167c478bd9Sstevel@tonic-gate } 25177c478bd9Sstevel@tonic-gate 25187c478bd9Sstevel@tonic-gate /* 25197c478bd9Sstevel@tonic-gate * This is true for a stripped executable. In the case of 25207c478bd9Sstevel@tonic-gate * 'unix' it can be stripped but it still contains the SHT_DYNSYM, 25217c478bd9Sstevel@tonic-gate * and since that symbol information is still present everything 25227c478bd9Sstevel@tonic-gate * is just fine. 25237c478bd9Sstevel@tonic-gate */ 25247c478bd9Sstevel@tonic-gate if (!dosymtab) { 25257c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_EXEC) 25267c478bd9Sstevel@tonic-gate return (0); 25277c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_syms: %s ", 25287c478bd9Sstevel@tonic-gate mp->filename); 25297c478bd9Sstevel@tonic-gate _kobj_printf(ops, "no SHT_SYMTAB symbol table found\n"); 25307c478bd9Sstevel@tonic-gate return (-1); 25317c478bd9Sstevel@tonic-gate } 25327c478bd9Sstevel@tonic-gate 25337c478bd9Sstevel@tonic-gate /* 25347c478bd9Sstevel@tonic-gate * get the associated string table header 25357c478bd9Sstevel@tonic-gate */ 25367c478bd9Sstevel@tonic-gate if ((mp->symhdr == 0) || (mp->symhdr->sh_link >= mp->hdr.e_shnum)) 25377c478bd9Sstevel@tonic-gate return (-1); 25387c478bd9Sstevel@tonic-gate mp->strhdr = (Shdr *) 25397c478bd9Sstevel@tonic-gate (mp->shdrs + mp->symhdr->sh_link * mp->hdr.e_shentsize); 25407c478bd9Sstevel@tonic-gate 25417c478bd9Sstevel@tonic-gate mp->nsyms = mp->symhdr->sh_size / mp->symhdr->sh_entsize; 25427c478bd9Sstevel@tonic-gate mp->hashsize = kobj_gethashsize(mp->nsyms); 25437c478bd9Sstevel@tonic-gate 25447c478bd9Sstevel@tonic-gate /* 25457c478bd9Sstevel@tonic-gate * Allocate space for the symbol table, buckets, chains, and strings. 25467c478bd9Sstevel@tonic-gate */ 25477c478bd9Sstevel@tonic-gate mp->symsize = mp->symhdr->sh_size + 25487c478bd9Sstevel@tonic-gate (mp->hashsize + mp->nsyms) * sizeof (symid_t) + mp->strhdr->sh_size; 25497c478bd9Sstevel@tonic-gate mp->symspace = kobj_zalloc(mp->symsize, KM_WAIT|KM_SCRATCH); 25507c478bd9Sstevel@tonic-gate 25517c478bd9Sstevel@tonic-gate mp->symtbl = mp->symspace; 25527c478bd9Sstevel@tonic-gate mp->buckets = (symid_t *)(mp->symtbl + mp->symhdr->sh_size); 25537c478bd9Sstevel@tonic-gate mp->chains = mp->buckets + mp->hashsize; 25547c478bd9Sstevel@tonic-gate mp->strings = (char *)(mp->chains + mp->nsyms); 25557c478bd9Sstevel@tonic-gate 25567c478bd9Sstevel@tonic-gate if (kobj_read_file(file, mp->symtbl, 25577c478bd9Sstevel@tonic-gate mp->symhdr->sh_size, mp->symhdr->sh_offset) < 0 || 25587c478bd9Sstevel@tonic-gate kobj_read_file(file, mp->strings, 25597c478bd9Sstevel@tonic-gate mp->strhdr->sh_size, mp->strhdr->sh_offset) < 0) 25607c478bd9Sstevel@tonic-gate return (-1); 25617c478bd9Sstevel@tonic-gate 25627c478bd9Sstevel@tonic-gate /* 25637c478bd9Sstevel@tonic-gate * loop through the symbol table adjusting values to account 25647c478bd9Sstevel@tonic-gate * for where each section got loaded into memory. Also 25657c478bd9Sstevel@tonic-gate * fill in the hash table. 25667c478bd9Sstevel@tonic-gate */ 25677c478bd9Sstevel@tonic-gate for (i = 1; i < mp->nsyms; i++) { 25687c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + i * mp->symhdr->sh_entsize); 25697c478bd9Sstevel@tonic-gate if (sp->st_shndx < SHN_LORESERVE) { 25707c478bd9Sstevel@tonic-gate if (sp->st_shndx >= mp->hdr.e_shnum) { 25717c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s bad shndx ", 25727c478bd9Sstevel@tonic-gate file->_name); 25737c478bd9Sstevel@tonic-gate _kobj_printf(ops, "in symbol %d\n", i); 25747c478bd9Sstevel@tonic-gate return (-1); 25757c478bd9Sstevel@tonic-gate } 25767c478bd9Sstevel@tonic-gate shp = (Shdr *) 25777c478bd9Sstevel@tonic-gate (mp->shdrs + 25787c478bd9Sstevel@tonic-gate sp->st_shndx * mp->hdr.e_shentsize); 25797c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_EXEC)) 25807c478bd9Sstevel@tonic-gate sp->st_value += shp->sh_addr; 25817c478bd9Sstevel@tonic-gate } 25827c478bd9Sstevel@tonic-gate 25837c478bd9Sstevel@tonic-gate if (sp->st_name == 0 || sp->st_shndx == SHN_UNDEF) 25847c478bd9Sstevel@tonic-gate continue; 25857c478bd9Sstevel@tonic-gate if (sp->st_name >= mp->strhdr->sh_size) 25867c478bd9Sstevel@tonic-gate return (-1); 25877c478bd9Sstevel@tonic-gate 25887c478bd9Sstevel@tonic-gate symname = mp->strings + sp->st_name; 25897c478bd9Sstevel@tonic-gate 25907c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_EXEC) && 25917c478bd9Sstevel@tonic-gate ELF_ST_BIND(sp->st_info) == STB_GLOBAL) { 25927c478bd9Sstevel@tonic-gate ksp = kobj_lookup_all(mp, symname, 0); 25937c478bd9Sstevel@tonic-gate 25947c478bd9Sstevel@tonic-gate if (ksp && ELF_ST_BIND(ksp->st_info) == STB_GLOBAL && 25957c478bd9Sstevel@tonic-gate !kobj_suppress_warning(symname) && 25967c478bd9Sstevel@tonic-gate sp->st_shndx != SHN_UNDEF && 25977c478bd9Sstevel@tonic-gate sp->st_shndx != SHN_COMMON && 25987c478bd9Sstevel@tonic-gate ksp->st_shndx != SHN_UNDEF && 25997c478bd9Sstevel@tonic-gate ksp->st_shndx != SHN_COMMON) { 26007c478bd9Sstevel@tonic-gate /* 26017c478bd9Sstevel@tonic-gate * Unless this symbol is a stub, it's multiply 26027c478bd9Sstevel@tonic-gate * defined. Multiply-defined symbols are 26037c478bd9Sstevel@tonic-gate * usually bad, but some objects (kmdb) have 26047c478bd9Sstevel@tonic-gate * a legitimate need to have their own 26057c478bd9Sstevel@tonic-gate * copies of common functions. 26067c478bd9Sstevel@tonic-gate */ 26077c478bd9Sstevel@tonic-gate if ((standalone || 26087c478bd9Sstevel@tonic-gate ksp->st_value < (uintptr_t)stubs_base || 26097c478bd9Sstevel@tonic-gate ksp->st_value >= (uintptr_t)stubs_end) && 26107c478bd9Sstevel@tonic-gate !(mp->flags & KOBJ_IGNMULDEF)) { 26117c478bd9Sstevel@tonic-gate _kobj_printf(ops, 26127c478bd9Sstevel@tonic-gate "%s symbol ", file->_name); 26137c478bd9Sstevel@tonic-gate _kobj_printf(ops, 26147c478bd9Sstevel@tonic-gate "%s multiply defined\n", symname); 26157c478bd9Sstevel@tonic-gate } 26167c478bd9Sstevel@tonic-gate } 26177c478bd9Sstevel@tonic-gate } 2618ae115bc7Smrj 26197c478bd9Sstevel@tonic-gate sym_insert(mp, symname, i); 26207c478bd9Sstevel@tonic-gate } 26217c478bd9Sstevel@tonic-gate 26227c478bd9Sstevel@tonic-gate return (0); 26237c478bd9Sstevel@tonic-gate } 26247c478bd9Sstevel@tonic-gate 26257c478bd9Sstevel@tonic-gate static int 26267c478bd9Sstevel@tonic-gate get_ctf(struct module *mp, struct _buf *file) 26277c478bd9Sstevel@tonic-gate { 26287c478bd9Sstevel@tonic-gate char *shstrtab, *ctfdata; 26297c478bd9Sstevel@tonic-gate size_t shstrlen; 26307c478bd9Sstevel@tonic-gate Shdr *shp; 26317c478bd9Sstevel@tonic-gate uint_t i; 26327c478bd9Sstevel@tonic-gate 26337c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_NOCTF) 26347c478bd9Sstevel@tonic-gate return (0); /* do not attempt to even load CTF data */ 26357c478bd9Sstevel@tonic-gate 26367c478bd9Sstevel@tonic-gate if (mp->hdr.e_shstrndx >= mp->hdr.e_shnum) { 26377c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_ctf: %s, ", 26387c478bd9Sstevel@tonic-gate mp->filename); 26397c478bd9Sstevel@tonic-gate _kobj_printf(ops, "corrupt e_shstrndx %u\n", 26407c478bd9Sstevel@tonic-gate mp->hdr.e_shstrndx); 26417c478bd9Sstevel@tonic-gate return (-1); 26427c478bd9Sstevel@tonic-gate } 26437c478bd9Sstevel@tonic-gate 26447c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + mp->hdr.e_shstrndx * mp->hdr.e_shentsize); 26457c478bd9Sstevel@tonic-gate shstrlen = shp->sh_size; 26467c478bd9Sstevel@tonic-gate shstrtab = kobj_alloc(shstrlen, KM_WAIT|KM_TMP); 26477c478bd9Sstevel@tonic-gate 26487c478bd9Sstevel@tonic-gate if (kobj_read_file(file, shstrtab, shstrlen, shp->sh_offset) < 0) { 26497c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_ctf: %s, ", 26507c478bd9Sstevel@tonic-gate mp->filename); 26517c478bd9Sstevel@tonic-gate _kobj_printf(ops, "error reading section %u\n", 26527c478bd9Sstevel@tonic-gate mp->hdr.e_shstrndx); 26537c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 26547c478bd9Sstevel@tonic-gate return (-1); 26557c478bd9Sstevel@tonic-gate } 26567c478bd9Sstevel@tonic-gate 26577c478bd9Sstevel@tonic-gate for (i = 0; i < mp->hdr.e_shnum; i++) { 26587c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + i * mp->hdr.e_shentsize); 26597c478bd9Sstevel@tonic-gate 26607c478bd9Sstevel@tonic-gate if (shp->sh_size != 0 && shp->sh_name < shstrlen && 26617c478bd9Sstevel@tonic-gate strcmp(shstrtab + shp->sh_name, ".SUNW_ctf") == 0) { 26627c478bd9Sstevel@tonic-gate ctfdata = kobj_alloc(shp->sh_size, KM_WAIT|KM_SCRATCH); 26637c478bd9Sstevel@tonic-gate 26647c478bd9Sstevel@tonic-gate if (kobj_read_file(file, ctfdata, shp->sh_size, 26657c478bd9Sstevel@tonic-gate shp->sh_offset) < 0) { 26667c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_ctf: %s, error " 26677c478bd9Sstevel@tonic-gate "reading .SUNW_ctf data\n", mp->filename); 26687c478bd9Sstevel@tonic-gate kobj_free(ctfdata, shp->sh_size); 26697c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 26707c478bd9Sstevel@tonic-gate return (-1); 26717c478bd9Sstevel@tonic-gate } 26727c478bd9Sstevel@tonic-gate 26737c478bd9Sstevel@tonic-gate mp->ctfdata = ctfdata; 26747c478bd9Sstevel@tonic-gate mp->ctfsize = shp->sh_size; 26757c478bd9Sstevel@tonic-gate break; 26767c478bd9Sstevel@tonic-gate } 26777c478bd9Sstevel@tonic-gate } 26787c478bd9Sstevel@tonic-gate 26797c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 26807c478bd9Sstevel@tonic-gate return (0); 26817c478bd9Sstevel@tonic-gate } 26827c478bd9Sstevel@tonic-gate 26837c478bd9Sstevel@tonic-gate #define SHA1_DIGEST_LENGTH 20 /* SHA1 digest length in bytes */ 26847c478bd9Sstevel@tonic-gate 26857c478bd9Sstevel@tonic-gate /* 26867c478bd9Sstevel@tonic-gate * Return the hash of the ELF sections that are memory resident. 26877c478bd9Sstevel@tonic-gate * i.e. text and data. We skip a SHT_NOBITS section since it occupies 26887c478bd9Sstevel@tonic-gate * no space in the file. We use SHA1 here since libelfsign uses 26897c478bd9Sstevel@tonic-gate * it and both places need to use the same algorithm. 26907c478bd9Sstevel@tonic-gate */ 26917c478bd9Sstevel@tonic-gate static void 26927c478bd9Sstevel@tonic-gate crypto_es_hash(struct module *mp, char *hash, char *shstrtab) 26937c478bd9Sstevel@tonic-gate { 26947c478bd9Sstevel@tonic-gate uint_t shn; 26957c478bd9Sstevel@tonic-gate Shdr *shp; 26967c478bd9Sstevel@tonic-gate SHA1_CTX ctx; 26977c478bd9Sstevel@tonic-gate 26987c478bd9Sstevel@tonic-gate SHA1Init(&ctx); 26997c478bd9Sstevel@tonic-gate 27007c478bd9Sstevel@tonic-gate for (shn = 1; shn < mp->hdr.e_shnum; shn++) { 27017c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + shn * mp->hdr.e_shentsize); 27027c478bd9Sstevel@tonic-gate if (!(shp->sh_flags & SHF_ALLOC) || shp->sh_size == 0) 27037c478bd9Sstevel@tonic-gate continue; 27047c478bd9Sstevel@tonic-gate 27057c478bd9Sstevel@tonic-gate /* 27067c478bd9Sstevel@tonic-gate * The check should ideally be shp->sh_type == SHT_NOBITS. 27077c478bd9Sstevel@tonic-gate * However, we can't do that check here as get_progbits() 27087c478bd9Sstevel@tonic-gate * resets the type. 27097c478bd9Sstevel@tonic-gate */ 27107c478bd9Sstevel@tonic-gate if (strcmp(shstrtab + shp->sh_name, ".bss") == 0) 27117c478bd9Sstevel@tonic-gate continue; 27127c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 27137c478bd9Sstevel@tonic-gate if (kobj_debug & D_DEBUG) 27147c478bd9Sstevel@tonic-gate _kobj_printf(ops, 27157c478bd9Sstevel@tonic-gate "krtld: crypto_es_hash: updating hash with" 27167c478bd9Sstevel@tonic-gate " %s data size=%d\n", shstrtab + shp->sh_name, 27177c478bd9Sstevel@tonic-gate shp->sh_size); 27187c478bd9Sstevel@tonic-gate #endif 27197c478bd9Sstevel@tonic-gate ASSERT(shp->sh_addr != NULL); 27207c478bd9Sstevel@tonic-gate SHA1Update(&ctx, (const uint8_t *)shp->sh_addr, shp->sh_size); 27217c478bd9Sstevel@tonic-gate } 27227c478bd9Sstevel@tonic-gate 27237c478bd9Sstevel@tonic-gate SHA1Final((uchar_t *)hash, &ctx); 27247c478bd9Sstevel@tonic-gate } 27257c478bd9Sstevel@tonic-gate 27267c478bd9Sstevel@tonic-gate /* 27277c478bd9Sstevel@tonic-gate * Get the .SUNW_signature section for the module, it it exists. 27287c478bd9Sstevel@tonic-gate * 27297c478bd9Sstevel@tonic-gate * This section exists only for crypto modules. None of the 27307c478bd9Sstevel@tonic-gate * primary modules have this section currently. 27317c478bd9Sstevel@tonic-gate */ 27327c478bd9Sstevel@tonic-gate static void 27337c478bd9Sstevel@tonic-gate get_signature(struct module *mp, struct _buf *file) 27347c478bd9Sstevel@tonic-gate { 27357c478bd9Sstevel@tonic-gate char *shstrtab, *sigdata = NULL; 27367c478bd9Sstevel@tonic-gate size_t shstrlen; 27377c478bd9Sstevel@tonic-gate Shdr *shp; 27387c478bd9Sstevel@tonic-gate uint_t i; 27397c478bd9Sstevel@tonic-gate 27407c478bd9Sstevel@tonic-gate if (mp->hdr.e_shstrndx >= mp->hdr.e_shnum) { 27417c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_signature: %s, ", 27427c478bd9Sstevel@tonic-gate mp->filename); 27437c478bd9Sstevel@tonic-gate _kobj_printf(ops, "corrupt e_shstrndx %u\n", 27447c478bd9Sstevel@tonic-gate mp->hdr.e_shstrndx); 27457c478bd9Sstevel@tonic-gate return; 27467c478bd9Sstevel@tonic-gate } 27477c478bd9Sstevel@tonic-gate 27487c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + mp->hdr.e_shstrndx * mp->hdr.e_shentsize); 27497c478bd9Sstevel@tonic-gate shstrlen = shp->sh_size; 27507c478bd9Sstevel@tonic-gate shstrtab = kobj_alloc(shstrlen, KM_WAIT|KM_TMP); 27517c478bd9Sstevel@tonic-gate 27527c478bd9Sstevel@tonic-gate if (kobj_read_file(file, shstrtab, shstrlen, shp->sh_offset) < 0) { 27537c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_signature: %s, ", 27547c478bd9Sstevel@tonic-gate mp->filename); 27557c478bd9Sstevel@tonic-gate _kobj_printf(ops, "error reading section %u\n", 27567c478bd9Sstevel@tonic-gate mp->hdr.e_shstrndx); 27577c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 27587c478bd9Sstevel@tonic-gate return; 27597c478bd9Sstevel@tonic-gate } 27607c478bd9Sstevel@tonic-gate 27617c478bd9Sstevel@tonic-gate for (i = 0; i < mp->hdr.e_shnum; i++) { 27627c478bd9Sstevel@tonic-gate shp = (Shdr *)(mp->shdrs + i * mp->hdr.e_shentsize); 27637c478bd9Sstevel@tonic-gate if (shp->sh_size != 0 && shp->sh_name < shstrlen && 27647c478bd9Sstevel@tonic-gate strcmp(shstrtab + shp->sh_name, 27657c478bd9Sstevel@tonic-gate ELF_SIGNATURE_SECTION) == 0) { 27667c478bd9Sstevel@tonic-gate filesig_vers_t filesig_version; 27677c478bd9Sstevel@tonic-gate size_t sigsize = shp->sh_size + SHA1_DIGEST_LENGTH; 27687c478bd9Sstevel@tonic-gate sigdata = kobj_alloc(sigsize, KM_WAIT|KM_SCRATCH); 27697c478bd9Sstevel@tonic-gate 27707c478bd9Sstevel@tonic-gate if (kobj_read_file(file, sigdata, shp->sh_size, 27717c478bd9Sstevel@tonic-gate shp->sh_offset) < 0) { 27727c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld: get_signature: %s," 27737c478bd9Sstevel@tonic-gate " error reading .SUNW_signature data\n", 27747c478bd9Sstevel@tonic-gate mp->filename); 27757c478bd9Sstevel@tonic-gate kobj_free(sigdata, sigsize); 27767c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 27777c478bd9Sstevel@tonic-gate return; 27787c478bd9Sstevel@tonic-gate } 27797c478bd9Sstevel@tonic-gate filesig_version = ((struct filesignatures *)sigdata)-> 27807c478bd9Sstevel@tonic-gate filesig_sig.filesig_version; 27817c478bd9Sstevel@tonic-gate if (!(filesig_version == FILESIG_VERSION1 || 27827c478bd9Sstevel@tonic-gate filesig_version == FILESIG_VERSION3)) { 27837c478bd9Sstevel@tonic-gate /* skip versions we don't understand */ 27847c478bd9Sstevel@tonic-gate kobj_free(sigdata, sigsize); 27857c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 27867c478bd9Sstevel@tonic-gate return; 27877c478bd9Sstevel@tonic-gate } 27887c478bd9Sstevel@tonic-gate 27897c478bd9Sstevel@tonic-gate mp->sigdata = sigdata; 27907c478bd9Sstevel@tonic-gate mp->sigsize = sigsize; 27917c478bd9Sstevel@tonic-gate break; 27927c478bd9Sstevel@tonic-gate } 27937c478bd9Sstevel@tonic-gate } 27947c478bd9Sstevel@tonic-gate 27957c478bd9Sstevel@tonic-gate if (sigdata != NULL) { 27967c478bd9Sstevel@tonic-gate crypto_es_hash(mp, sigdata + shp->sh_size, shstrtab); 27977c478bd9Sstevel@tonic-gate } 27987c478bd9Sstevel@tonic-gate 27997c478bd9Sstevel@tonic-gate kobj_free(shstrtab, shstrlen); 28007c478bd9Sstevel@tonic-gate } 28017c478bd9Sstevel@tonic-gate 28027c478bd9Sstevel@tonic-gate static void 28037c478bd9Sstevel@tonic-gate add_dependent(struct module *mp, struct module *dep) 28047c478bd9Sstevel@tonic-gate { 28057c478bd9Sstevel@tonic-gate struct module_list *lp; 28067c478bd9Sstevel@tonic-gate 28077c478bd9Sstevel@tonic-gate for (lp = mp->head; lp; lp = lp->next) { 28087c478bd9Sstevel@tonic-gate if (lp->mp == dep) 28097c478bd9Sstevel@tonic-gate return; /* already on the list */ 28107c478bd9Sstevel@tonic-gate } 28117c478bd9Sstevel@tonic-gate 28127c478bd9Sstevel@tonic-gate if (lp == NULL) { 28137c478bd9Sstevel@tonic-gate lp = kobj_zalloc(sizeof (*lp), KM_WAIT); 28147c478bd9Sstevel@tonic-gate 28157c478bd9Sstevel@tonic-gate lp->mp = dep; 28167c478bd9Sstevel@tonic-gate lp->next = NULL; 28177c478bd9Sstevel@tonic-gate if (mp->tail) 28187c478bd9Sstevel@tonic-gate mp->tail->next = lp; 28197c478bd9Sstevel@tonic-gate else 28207c478bd9Sstevel@tonic-gate mp->head = lp; 28217c478bd9Sstevel@tonic-gate mp->tail = lp; 28227c478bd9Sstevel@tonic-gate } 28237c478bd9Sstevel@tonic-gate } 28247c478bd9Sstevel@tonic-gate 28257c478bd9Sstevel@tonic-gate static int 28267c478bd9Sstevel@tonic-gate do_dependents(struct modctl *modp, char *modname, size_t modnamelen) 28277c478bd9Sstevel@tonic-gate { 28287c478bd9Sstevel@tonic-gate struct module *mp; 28297c478bd9Sstevel@tonic-gate struct modctl *req; 28307c478bd9Sstevel@tonic-gate char *d, *p, *q; 28317c478bd9Sstevel@tonic-gate int c; 28327c478bd9Sstevel@tonic-gate char *err_modname = NULL; 28337c478bd9Sstevel@tonic-gate 28347c478bd9Sstevel@tonic-gate mp = modp->mod_mp; 28357c478bd9Sstevel@tonic-gate 28367c478bd9Sstevel@tonic-gate if ((p = mp->depends_on) == NULL) 28377c478bd9Sstevel@tonic-gate return (0); 28387c478bd9Sstevel@tonic-gate 28397c478bd9Sstevel@tonic-gate for (;;) { 28407c478bd9Sstevel@tonic-gate /* 28417c478bd9Sstevel@tonic-gate * Skip space. 28427c478bd9Sstevel@tonic-gate */ 28437c478bd9Sstevel@tonic-gate while (*p && (*p == ' ' || *p == '\t')) 28447c478bd9Sstevel@tonic-gate p++; 28457c478bd9Sstevel@tonic-gate /* 28467c478bd9Sstevel@tonic-gate * Get module name. 28477c478bd9Sstevel@tonic-gate */ 28487c478bd9Sstevel@tonic-gate d = p; 28497c478bd9Sstevel@tonic-gate q = modname; 28507c478bd9Sstevel@tonic-gate c = 0; 28517c478bd9Sstevel@tonic-gate while (*p && *p != ' ' && *p != '\t') { 28527c478bd9Sstevel@tonic-gate if (c < modnamelen - 1) { 28537c478bd9Sstevel@tonic-gate *q++ = *p; 28547c478bd9Sstevel@tonic-gate c++; 28557c478bd9Sstevel@tonic-gate } 28567c478bd9Sstevel@tonic-gate p++; 28577c478bd9Sstevel@tonic-gate } 28587c478bd9Sstevel@tonic-gate 28597c478bd9Sstevel@tonic-gate if (q == modname) 28607c478bd9Sstevel@tonic-gate break; 28617c478bd9Sstevel@tonic-gate 28627c478bd9Sstevel@tonic-gate if (c == modnamelen - 1) { 28637c478bd9Sstevel@tonic-gate char *dep = kobj_alloc(p - d + 1, KM_WAIT|KM_TMP); 28647c478bd9Sstevel@tonic-gate 28657c478bd9Sstevel@tonic-gate (void) strncpy(dep, d, p - d + 1); 28667c478bd9Sstevel@tonic-gate dep[p - d] = '\0'; 28677c478bd9Sstevel@tonic-gate 28687c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s: dependency ", modp->mod_modname); 28697c478bd9Sstevel@tonic-gate _kobj_printf(ops, "'%s' too long ", dep); 28707c478bd9Sstevel@tonic-gate _kobj_printf(ops, "(max %d chars)\n", modnamelen); 28717c478bd9Sstevel@tonic-gate 28727c478bd9Sstevel@tonic-gate kobj_free(dep, p - d + 1); 28737c478bd9Sstevel@tonic-gate 28747c478bd9Sstevel@tonic-gate return (-1); 28757c478bd9Sstevel@tonic-gate } 28767c478bd9Sstevel@tonic-gate 28777c478bd9Sstevel@tonic-gate *q = '\0'; 28787c478bd9Sstevel@tonic-gate if ((req = mod_load_requisite(modp, modname)) == NULL) { 28797c478bd9Sstevel@tonic-gate #ifndef KOBJ_DEBUG 28807c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_LOADMSG) { 28817c478bd9Sstevel@tonic-gate #endif /* KOBJ_DEBUG */ 28827c478bd9Sstevel@tonic-gate _kobj_printf(ops, 28837c478bd9Sstevel@tonic-gate "%s: unable to resolve dependency, ", 28847c478bd9Sstevel@tonic-gate modp->mod_modname); 28857c478bd9Sstevel@tonic-gate _kobj_printf(ops, "cannot load module '%s'\n", 28867c478bd9Sstevel@tonic-gate modname); 28877c478bd9Sstevel@tonic-gate #ifndef KOBJ_DEBUG 28887c478bd9Sstevel@tonic-gate } 28897c478bd9Sstevel@tonic-gate #endif /* KOBJ_DEBUG */ 28907c478bd9Sstevel@tonic-gate if (err_modname == NULL) { 28917c478bd9Sstevel@tonic-gate /* 28927c478bd9Sstevel@tonic-gate * This must be the same size as the modname 28937c478bd9Sstevel@tonic-gate * one. 28947c478bd9Sstevel@tonic-gate */ 28957c478bd9Sstevel@tonic-gate err_modname = kobj_zalloc(MODMAXNAMELEN, 28967c478bd9Sstevel@tonic-gate KM_WAIT); 28977c478bd9Sstevel@tonic-gate 28987c478bd9Sstevel@tonic-gate /* 28997c478bd9Sstevel@tonic-gate * We can use strcpy() here without fearing 29007c478bd9Sstevel@tonic-gate * the NULL terminator because the size of 29017c478bd9Sstevel@tonic-gate * err_modname is the same as one of modname, 29027c478bd9Sstevel@tonic-gate * and it's filled with zeros. 29037c478bd9Sstevel@tonic-gate */ 29047c478bd9Sstevel@tonic-gate (void) strcpy(err_modname, modname); 29057c478bd9Sstevel@tonic-gate } 29067c478bd9Sstevel@tonic-gate continue; 29077c478bd9Sstevel@tonic-gate } 29087c478bd9Sstevel@tonic-gate 29097c478bd9Sstevel@tonic-gate add_dependent(mp, req->mod_mp); 29107c478bd9Sstevel@tonic-gate mod_release_mod(req); 29117c478bd9Sstevel@tonic-gate 29127c478bd9Sstevel@tonic-gate } 29137c478bd9Sstevel@tonic-gate 29147c478bd9Sstevel@tonic-gate if (err_modname != NULL) { 29157c478bd9Sstevel@tonic-gate /* 29167c478bd9Sstevel@tonic-gate * Copy the first module name where you detect an error to keep 29177c478bd9Sstevel@tonic-gate * its behavior the same as before. 29187c478bd9Sstevel@tonic-gate * This way keeps minimizing the memory use for error 29197c478bd9Sstevel@tonic-gate * modules, and this might be important at boot time because 29207c478bd9Sstevel@tonic-gate * the memory usage is a crucial factor for booting in most 29217c478bd9Sstevel@tonic-gate * cases. You can expect more verbose messages when using 29227c478bd9Sstevel@tonic-gate * a debug kernel or setting a bit in moddebug. 29237c478bd9Sstevel@tonic-gate */ 29247c478bd9Sstevel@tonic-gate bzero(modname, MODMAXNAMELEN); 29257c478bd9Sstevel@tonic-gate (void) strcpy(modname, err_modname); 29267c478bd9Sstevel@tonic-gate kobj_free(err_modname, MODMAXNAMELEN); 29277c478bd9Sstevel@tonic-gate return (-1); 29287c478bd9Sstevel@tonic-gate } 29297c478bd9Sstevel@tonic-gate 29307c478bd9Sstevel@tonic-gate return (0); 29317c478bd9Sstevel@tonic-gate } 29327c478bd9Sstevel@tonic-gate 29337c478bd9Sstevel@tonic-gate static int 29347c478bd9Sstevel@tonic-gate do_common(struct module *mp) 29357c478bd9Sstevel@tonic-gate { 29367c478bd9Sstevel@tonic-gate int err; 29377c478bd9Sstevel@tonic-gate 29387c478bd9Sstevel@tonic-gate /* 29397c478bd9Sstevel@tonic-gate * first time through, assign all symbols defined in other 29407c478bd9Sstevel@tonic-gate * modules, and count up how much common space will be needed 29417c478bd9Sstevel@tonic-gate * (bss_size and bss_align) 29427c478bd9Sstevel@tonic-gate */ 29437c478bd9Sstevel@tonic-gate if ((err = do_symbols(mp, 0)) < 0) 29447c478bd9Sstevel@tonic-gate return (err); 29457c478bd9Sstevel@tonic-gate /* 29467c478bd9Sstevel@tonic-gate * increase bss_size by the maximum delta that could be 29477c478bd9Sstevel@tonic-gate * computed by the ALIGN below 29487c478bd9Sstevel@tonic-gate */ 29497c478bd9Sstevel@tonic-gate mp->bss_size += mp->bss_align; 29507c478bd9Sstevel@tonic-gate if (mp->bss_size) { 29517c478bd9Sstevel@tonic-gate if (standalone) 29527c478bd9Sstevel@tonic-gate mp->bss = (uintptr_t)kobj_segbrk(&_edata, mp->bss_size, 29537c478bd9Sstevel@tonic-gate MINALIGN, 0); 29547c478bd9Sstevel@tonic-gate else 29557c478bd9Sstevel@tonic-gate mp->bss = (uintptr_t)vmem_alloc(data_arena, 29567c478bd9Sstevel@tonic-gate mp->bss_size, VM_SLEEP | VM_BESTFIT); 29577c478bd9Sstevel@tonic-gate bzero((void *)mp->bss, mp->bss_size); 29587c478bd9Sstevel@tonic-gate /* now assign addresses to all common symbols */ 29597c478bd9Sstevel@tonic-gate if ((err = do_symbols(mp, ALIGN(mp->bss, mp->bss_align))) < 0) 29607c478bd9Sstevel@tonic-gate return (err); 29617c478bd9Sstevel@tonic-gate } 29627c478bd9Sstevel@tonic-gate return (0); 29637c478bd9Sstevel@tonic-gate } 29647c478bd9Sstevel@tonic-gate 29657c478bd9Sstevel@tonic-gate static int 29667c478bd9Sstevel@tonic-gate do_symbols(struct module *mp, Elf64_Addr bss_base) 29677c478bd9Sstevel@tonic-gate { 29687c478bd9Sstevel@tonic-gate int bss_align; 29697c478bd9Sstevel@tonic-gate uintptr_t bss_ptr; 29707c478bd9Sstevel@tonic-gate int err; 29717c478bd9Sstevel@tonic-gate int i; 29727c478bd9Sstevel@tonic-gate Sym *sp, *sp1; 29737c478bd9Sstevel@tonic-gate char *name; 29747c478bd9Sstevel@tonic-gate int assign; 29757c478bd9Sstevel@tonic-gate int resolved = 1; 29767c478bd9Sstevel@tonic-gate 29777c478bd9Sstevel@tonic-gate /* 29787c478bd9Sstevel@tonic-gate * Nothing left to do (optimization). 29797c478bd9Sstevel@tonic-gate */ 29807c478bd9Sstevel@tonic-gate if (mp->flags & KOBJ_RESOLVED) 29817c478bd9Sstevel@tonic-gate return (0); 29827c478bd9Sstevel@tonic-gate 29837c478bd9Sstevel@tonic-gate assign = (bss_base) ? 1 : 0; 29847c478bd9Sstevel@tonic-gate bss_ptr = bss_base; 29857c478bd9Sstevel@tonic-gate bss_align = 0; 29867c478bd9Sstevel@tonic-gate err = 0; 29877c478bd9Sstevel@tonic-gate 29887c478bd9Sstevel@tonic-gate for (i = 1; i < mp->nsyms; i++) { 29897c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + mp->symhdr->sh_entsize * i); 29907c478bd9Sstevel@tonic-gate /* 29917c478bd9Sstevel@tonic-gate * we know that st_name is in bounds, since get_sections 29927c478bd9Sstevel@tonic-gate * has already checked all of the symbols 29937c478bd9Sstevel@tonic-gate */ 29947c478bd9Sstevel@tonic-gate name = mp->strings + sp->st_name; 29957c478bd9Sstevel@tonic-gate if (sp->st_shndx != SHN_UNDEF && sp->st_shndx != SHN_COMMON) 29967c478bd9Sstevel@tonic-gate continue; 2997986fd29aSsetje #if defined(__sparc) 29987c478bd9Sstevel@tonic-gate /* 29997c478bd9Sstevel@tonic-gate * Register symbols are ignored in the kernel 30007c478bd9Sstevel@tonic-gate */ 30017c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sp->st_info) == STT_SPARC_REGISTER) { 30027c478bd9Sstevel@tonic-gate if (*name != '\0') { 30037c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s: named REGISTER symbol ", 30047c478bd9Sstevel@tonic-gate mp->filename); 30057c478bd9Sstevel@tonic-gate _kobj_printf(ops, "not supported '%s'\n", 30067c478bd9Sstevel@tonic-gate name); 30077c478bd9Sstevel@tonic-gate err = DOSYM_UNDEF; 30087c478bd9Sstevel@tonic-gate } 30097c478bd9Sstevel@tonic-gate continue; 30107c478bd9Sstevel@tonic-gate } 30117c478bd9Sstevel@tonic-gate #endif /* __sparc */ 30127c478bd9Sstevel@tonic-gate /* 30137c478bd9Sstevel@tonic-gate * TLS symbols are ignored in the kernel 30147c478bd9Sstevel@tonic-gate */ 30157c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sp->st_info) == STT_TLS) { 30167c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s: TLS symbol ", 30177c478bd9Sstevel@tonic-gate mp->filename); 30187c478bd9Sstevel@tonic-gate _kobj_printf(ops, "not supported '%s'\n", 30197c478bd9Sstevel@tonic-gate name); 30207c478bd9Sstevel@tonic-gate err = DOSYM_UNDEF; 30217c478bd9Sstevel@tonic-gate continue; 30227c478bd9Sstevel@tonic-gate } 30237c478bd9Sstevel@tonic-gate 30247c478bd9Sstevel@tonic-gate if (ELF_ST_BIND(sp->st_info) != STB_LOCAL) { 30257c478bd9Sstevel@tonic-gate if ((sp1 = kobj_lookup_all(mp, name, 0)) != NULL) { 30267c478bd9Sstevel@tonic-gate sp->st_shndx = SHN_ABS; 30277c478bd9Sstevel@tonic-gate sp->st_value = sp1->st_value; 30287c478bd9Sstevel@tonic-gate continue; 30297c478bd9Sstevel@tonic-gate } 30307c478bd9Sstevel@tonic-gate } 30317c478bd9Sstevel@tonic-gate 30327c478bd9Sstevel@tonic-gate if (sp->st_shndx == SHN_UNDEF) { 30337c478bd9Sstevel@tonic-gate resolved = 0; 30347c478bd9Sstevel@tonic-gate 30357c478bd9Sstevel@tonic-gate if (strncmp(name, sdt_prefix, strlen(sdt_prefix)) == 0) 30367c478bd9Sstevel@tonic-gate continue; 30377c478bd9Sstevel@tonic-gate 30387c478bd9Sstevel@tonic-gate /* 30397c478bd9Sstevel@tonic-gate * If it's not a weak reference and it's 30407c478bd9Sstevel@tonic-gate * not a primary object, it's an error. 30417c478bd9Sstevel@tonic-gate * (Primary objects may take more than 30427c478bd9Sstevel@tonic-gate * one pass to resolve) 30437c478bd9Sstevel@tonic-gate */ 30447c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_PRIM) && 30457c478bd9Sstevel@tonic-gate ELF_ST_BIND(sp->st_info) != STB_WEAK) { 30467c478bd9Sstevel@tonic-gate _kobj_printf(ops, "%s: undefined symbol", 30477c478bd9Sstevel@tonic-gate mp->filename); 30487c478bd9Sstevel@tonic-gate _kobj_printf(ops, " '%s'\n", name); 30497c478bd9Sstevel@tonic-gate /* 30507c478bd9Sstevel@tonic-gate * Try to determine whether this symbol 30517c478bd9Sstevel@tonic-gate * represents a dependency on obsolete 30527c478bd9Sstevel@tonic-gate * unsafe driver support. This is just 30537c478bd9Sstevel@tonic-gate * to make the warning more informative. 30547c478bd9Sstevel@tonic-gate */ 30557c478bd9Sstevel@tonic-gate if (strcmp(name, "sleep") == 0 || 30567c478bd9Sstevel@tonic-gate strcmp(name, "unsleep") == 0 || 30577c478bd9Sstevel@tonic-gate strcmp(name, "wakeup") == 0 || 30587c478bd9Sstevel@tonic-gate strcmp(name, "bsd_compat_ioctl") == 0 || 30597c478bd9Sstevel@tonic-gate strcmp(name, "unsafe_driver") == 0 || 30607c478bd9Sstevel@tonic-gate strncmp(name, "spl", 3) == 0 || 30617c478bd9Sstevel@tonic-gate strncmp(name, "i_ddi_spl", 9) == 0) 30627c478bd9Sstevel@tonic-gate err = DOSYM_UNSAFE; 30637c478bd9Sstevel@tonic-gate if (err == 0) 30647c478bd9Sstevel@tonic-gate err = DOSYM_UNDEF; 30657c478bd9Sstevel@tonic-gate } 30667c478bd9Sstevel@tonic-gate continue; 30677c478bd9Sstevel@tonic-gate } 30687c478bd9Sstevel@tonic-gate /* 30697c478bd9Sstevel@tonic-gate * It's a common symbol - st_value is the 30707c478bd9Sstevel@tonic-gate * required alignment. 30717c478bd9Sstevel@tonic-gate */ 30727c478bd9Sstevel@tonic-gate if (sp->st_value > bss_align) 30737c478bd9Sstevel@tonic-gate bss_align = sp->st_value; 30747c478bd9Sstevel@tonic-gate bss_ptr = ALIGN(bss_ptr, sp->st_value); 30757c478bd9Sstevel@tonic-gate if (assign) { 30767c478bd9Sstevel@tonic-gate sp->st_shndx = SHN_ABS; 30777c478bd9Sstevel@tonic-gate sp->st_value = bss_ptr; 30787c478bd9Sstevel@tonic-gate } 30797c478bd9Sstevel@tonic-gate bss_ptr += sp->st_size; 30807c478bd9Sstevel@tonic-gate } 30817c478bd9Sstevel@tonic-gate if (err) 30827c478bd9Sstevel@tonic-gate return (err); 30837c478bd9Sstevel@tonic-gate if (assign == 0 && mp->bss == NULL) { 30847c478bd9Sstevel@tonic-gate mp->bss_align = bss_align; 30857c478bd9Sstevel@tonic-gate mp->bss_size = bss_ptr; 30867c478bd9Sstevel@tonic-gate } else if (resolved) { 30877c478bd9Sstevel@tonic-gate mp->flags |= KOBJ_RESOLVED; 30887c478bd9Sstevel@tonic-gate } 30897c478bd9Sstevel@tonic-gate 30907c478bd9Sstevel@tonic-gate return (0); 30917c478bd9Sstevel@tonic-gate } 30927c478bd9Sstevel@tonic-gate 30937c478bd9Sstevel@tonic-gate uint_t 30947c478bd9Sstevel@tonic-gate kobj_hash_name(const char *p) 30957c478bd9Sstevel@tonic-gate { 3096986fd29aSsetje uint_t g; 30977c478bd9Sstevel@tonic-gate uint_t hval; 30987c478bd9Sstevel@tonic-gate 30997c478bd9Sstevel@tonic-gate hval = 0; 31007c478bd9Sstevel@tonic-gate while (*p) { 31017c478bd9Sstevel@tonic-gate hval = (hval << 4) + *p++; 31027c478bd9Sstevel@tonic-gate if ((g = (hval & 0xf0000000)) != 0) 31037c478bd9Sstevel@tonic-gate hval ^= g >> 24; 31047c478bd9Sstevel@tonic-gate hval &= ~g; 31057c478bd9Sstevel@tonic-gate } 31067c478bd9Sstevel@tonic-gate return (hval); 31077c478bd9Sstevel@tonic-gate } 31087c478bd9Sstevel@tonic-gate 31097c478bd9Sstevel@tonic-gate /* look for name in all modules */ 31107c478bd9Sstevel@tonic-gate uintptr_t 31117c478bd9Sstevel@tonic-gate kobj_getsymvalue(char *name, int kernelonly) 31127c478bd9Sstevel@tonic-gate { 31137c478bd9Sstevel@tonic-gate Sym *sp; 31147c478bd9Sstevel@tonic-gate struct modctl *modp; 31157c478bd9Sstevel@tonic-gate struct module *mp; 31167c478bd9Sstevel@tonic-gate uintptr_t value = 0; 31177c478bd9Sstevel@tonic-gate 31187c478bd9Sstevel@tonic-gate if ((sp = kobj_lookup_kernel(name)) != NULL) 31197c478bd9Sstevel@tonic-gate return ((uintptr_t)sp->st_value); 31207c478bd9Sstevel@tonic-gate 31217c478bd9Sstevel@tonic-gate if (kernelonly) 31227c478bd9Sstevel@tonic-gate return (0); /* didn't find it in the kernel so give up */ 31237c478bd9Sstevel@tonic-gate 31247c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 31257c478bd9Sstevel@tonic-gate modp = &modules; 31267c478bd9Sstevel@tonic-gate do { 31277c478bd9Sstevel@tonic-gate mp = (struct module *)modp->mod_mp; 31287c478bd9Sstevel@tonic-gate if (mp && !(mp->flags & KOBJ_PRIM) && modp->mod_loaded && 31297c478bd9Sstevel@tonic-gate (sp = lookup_one(mp, name))) { 31307c478bd9Sstevel@tonic-gate value = (uintptr_t)sp->st_value; 31317c478bd9Sstevel@tonic-gate break; 31327c478bd9Sstevel@tonic-gate } 31337c478bd9Sstevel@tonic-gate } while ((modp = modp->mod_next) != &modules); 31347c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 31357c478bd9Sstevel@tonic-gate return (value); 31367c478bd9Sstevel@tonic-gate } 31377c478bd9Sstevel@tonic-gate 31387c478bd9Sstevel@tonic-gate /* look for a symbol near value. */ 31397c478bd9Sstevel@tonic-gate char * 31407c478bd9Sstevel@tonic-gate kobj_getsymname(uintptr_t value, ulong_t *offset) 31417c478bd9Sstevel@tonic-gate { 31427c478bd9Sstevel@tonic-gate char *name = NULL; 31437c478bd9Sstevel@tonic-gate struct modctl *modp; 31447c478bd9Sstevel@tonic-gate 31457c478bd9Sstevel@tonic-gate struct modctl_list *lp; 31467c478bd9Sstevel@tonic-gate struct module *mp; 31477c478bd9Sstevel@tonic-gate 31487c478bd9Sstevel@tonic-gate /* 31497c478bd9Sstevel@tonic-gate * Loop through the primary kernel modules. 31507c478bd9Sstevel@tonic-gate */ 31517c478bd9Sstevel@tonic-gate for (lp = kobj_lm_lookup(KOBJ_LM_PRIMARY); lp; lp = lp->modl_next) { 31527c478bd9Sstevel@tonic-gate mp = mod(lp); 31537c478bd9Sstevel@tonic-gate 31547c478bd9Sstevel@tonic-gate if ((name = kobj_searchsym(mp, value, offset)) != NULL) 31557c478bd9Sstevel@tonic-gate return (name); 31567c478bd9Sstevel@tonic-gate } 31577c478bd9Sstevel@tonic-gate 31587c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 31597c478bd9Sstevel@tonic-gate modp = &modules; 31607c478bd9Sstevel@tonic-gate do { 31617c478bd9Sstevel@tonic-gate mp = (struct module *)modp->mod_mp; 31627c478bd9Sstevel@tonic-gate if (mp && !(mp->flags & KOBJ_PRIM) && modp->mod_loaded && 31637c478bd9Sstevel@tonic-gate (name = kobj_searchsym(mp, value, offset))) 31647c478bd9Sstevel@tonic-gate break; 31657c478bd9Sstevel@tonic-gate } while ((modp = modp->mod_next) != &modules); 31667c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 31677c478bd9Sstevel@tonic-gate return (name); 31687c478bd9Sstevel@tonic-gate } 31697c478bd9Sstevel@tonic-gate 31707c478bd9Sstevel@tonic-gate /* return address of symbol and size */ 31717c478bd9Sstevel@tonic-gate 31727c478bd9Sstevel@tonic-gate uintptr_t 31737c478bd9Sstevel@tonic-gate kobj_getelfsym(char *name, void *mp, int *size) 31747c478bd9Sstevel@tonic-gate { 31757c478bd9Sstevel@tonic-gate Sym *sp; 31767c478bd9Sstevel@tonic-gate 31777c478bd9Sstevel@tonic-gate if (mp == NULL) 31787c478bd9Sstevel@tonic-gate sp = kobj_lookup_kernel(name); 31797c478bd9Sstevel@tonic-gate else 31807c478bd9Sstevel@tonic-gate sp = lookup_one(mp, name); 31817c478bd9Sstevel@tonic-gate 31827c478bd9Sstevel@tonic-gate if (sp == NULL) 31837c478bd9Sstevel@tonic-gate return (0); 31847c478bd9Sstevel@tonic-gate 31857c478bd9Sstevel@tonic-gate *size = (int)sp->st_size; 31867c478bd9Sstevel@tonic-gate return ((uintptr_t)sp->st_value); 31877c478bd9Sstevel@tonic-gate } 31887c478bd9Sstevel@tonic-gate 31897c478bd9Sstevel@tonic-gate uintptr_t 31907aec1d6eScindi kobj_lookup(struct module *mod, const char *name) 31917c478bd9Sstevel@tonic-gate { 31927c478bd9Sstevel@tonic-gate Sym *sp; 31937c478bd9Sstevel@tonic-gate 31947c478bd9Sstevel@tonic-gate sp = lookup_one(mod, name); 31957c478bd9Sstevel@tonic-gate 31967c478bd9Sstevel@tonic-gate if (sp == NULL) 31977c478bd9Sstevel@tonic-gate return (0); 31987c478bd9Sstevel@tonic-gate 31997c478bd9Sstevel@tonic-gate return ((uintptr_t)sp->st_value); 32007c478bd9Sstevel@tonic-gate } 32017c478bd9Sstevel@tonic-gate 32027c478bd9Sstevel@tonic-gate char * 32037c478bd9Sstevel@tonic-gate kobj_searchsym(struct module *mp, uintptr_t value, ulong_t *offset) 32047c478bd9Sstevel@tonic-gate { 32057c478bd9Sstevel@tonic-gate Sym *symtabptr; 32067c478bd9Sstevel@tonic-gate char *strtabptr; 32077c478bd9Sstevel@tonic-gate int symnum; 32087c478bd9Sstevel@tonic-gate Sym *sym; 32097c478bd9Sstevel@tonic-gate Sym *cursym; 32107c478bd9Sstevel@tonic-gate uintptr_t curval; 32117c478bd9Sstevel@tonic-gate 32127c478bd9Sstevel@tonic-gate *offset = (ulong_t)-1l; /* assume not found */ 32137c478bd9Sstevel@tonic-gate cursym = NULL; 32147c478bd9Sstevel@tonic-gate 32157c478bd9Sstevel@tonic-gate if (kobj_addrcheck(mp, (void *)value) != 0) 32167c478bd9Sstevel@tonic-gate return (NULL); /* not in this module */ 32177c478bd9Sstevel@tonic-gate 32187c478bd9Sstevel@tonic-gate strtabptr = mp->strings; 32197c478bd9Sstevel@tonic-gate symtabptr = (Sym *)mp->symtbl; 32207c478bd9Sstevel@tonic-gate 32217c478bd9Sstevel@tonic-gate /* 32227c478bd9Sstevel@tonic-gate * Scan the module's symbol table for a symbol <= value 32237c478bd9Sstevel@tonic-gate */ 32247c478bd9Sstevel@tonic-gate for (symnum = 1, sym = symtabptr + 1; 32257c478bd9Sstevel@tonic-gate symnum < mp->nsyms; symnum++, sym = (Sym *) 32267c478bd9Sstevel@tonic-gate ((uintptr_t)sym + mp->symhdr->sh_entsize)) { 32277c478bd9Sstevel@tonic-gate if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL) { 32287c478bd9Sstevel@tonic-gate if (ELF_ST_BIND(sym->st_info) != STB_LOCAL) 32297c478bd9Sstevel@tonic-gate continue; 32307c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sym->st_info) != STT_OBJECT && 32317c478bd9Sstevel@tonic-gate ELF_ST_TYPE(sym->st_info) != STT_FUNC) 32327c478bd9Sstevel@tonic-gate continue; 32337c478bd9Sstevel@tonic-gate } 32347c478bd9Sstevel@tonic-gate 32357c478bd9Sstevel@tonic-gate curval = (uintptr_t)sym->st_value; 32367c478bd9Sstevel@tonic-gate 32377c478bd9Sstevel@tonic-gate if (curval > value) 32387c478bd9Sstevel@tonic-gate continue; 32397c478bd9Sstevel@tonic-gate 32407c478bd9Sstevel@tonic-gate /* 32417c478bd9Sstevel@tonic-gate * If one or both are functions... 32427c478bd9Sstevel@tonic-gate */ 32437c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sym->st_info) == STT_FUNC || (cursym != NULL && 32447c478bd9Sstevel@tonic-gate ELF_ST_TYPE(cursym->st_info) == STT_FUNC)) { 32457c478bd9Sstevel@tonic-gate /* Ignore if the address is out of the bounds */ 32467c478bd9Sstevel@tonic-gate if (value - sym->st_value >= sym->st_size) 32477c478bd9Sstevel@tonic-gate continue; 32487c478bd9Sstevel@tonic-gate 32497c478bd9Sstevel@tonic-gate if (cursym != NULL && 32507c478bd9Sstevel@tonic-gate ELF_ST_TYPE(cursym->st_info) == STT_FUNC) { 32517c478bd9Sstevel@tonic-gate /* Prefer the function to the non-function */ 32527c478bd9Sstevel@tonic-gate if (ELF_ST_TYPE(sym->st_info) != STT_FUNC) 32537c478bd9Sstevel@tonic-gate continue; 32547c478bd9Sstevel@tonic-gate 32557c478bd9Sstevel@tonic-gate /* Prefer the larger of the two functions */ 32567c478bd9Sstevel@tonic-gate if (sym->st_size <= cursym->st_size) 32577c478bd9Sstevel@tonic-gate continue; 32587c478bd9Sstevel@tonic-gate } 32597c478bd9Sstevel@tonic-gate } else if (value - curval >= *offset) { 32607c478bd9Sstevel@tonic-gate continue; 32617c478bd9Sstevel@tonic-gate } 32627c478bd9Sstevel@tonic-gate 32637c478bd9Sstevel@tonic-gate *offset = (ulong_t)(value - curval); 32647c478bd9Sstevel@tonic-gate cursym = sym; 32657c478bd9Sstevel@tonic-gate } 32667c478bd9Sstevel@tonic-gate if (cursym == NULL) 32677c478bd9Sstevel@tonic-gate return (NULL); 32687c478bd9Sstevel@tonic-gate 32697c478bd9Sstevel@tonic-gate return (strtabptr + cursym->st_name); 32707c478bd9Sstevel@tonic-gate } 32717c478bd9Sstevel@tonic-gate 32727c478bd9Sstevel@tonic-gate Sym * 32737c478bd9Sstevel@tonic-gate kobj_lookup_all(struct module *mp, char *name, int include_self) 32747c478bd9Sstevel@tonic-gate { 32757c478bd9Sstevel@tonic-gate Sym *sp; 32767c478bd9Sstevel@tonic-gate struct module_list *mlp; 32777c478bd9Sstevel@tonic-gate struct modctl_list *clp; 32787c478bd9Sstevel@tonic-gate struct module *mmp; 32797c478bd9Sstevel@tonic-gate 32807c478bd9Sstevel@tonic-gate if (include_self && (sp = lookup_one(mp, name)) != NULL) 32817c478bd9Sstevel@tonic-gate return (sp); 32827c478bd9Sstevel@tonic-gate 32837c478bd9Sstevel@tonic-gate for (mlp = mp->head; mlp; mlp = mlp->next) { 32847c478bd9Sstevel@tonic-gate if ((sp = lookup_one(mlp->mp, name)) != NULL && 32857c478bd9Sstevel@tonic-gate ELF_ST_BIND(sp->st_info) != STB_LOCAL) 32867c478bd9Sstevel@tonic-gate return (sp); 32877c478bd9Sstevel@tonic-gate } 32887c478bd9Sstevel@tonic-gate 32897c478bd9Sstevel@tonic-gate /* 32907c478bd9Sstevel@tonic-gate * Loop through the primary kernel modules. 32917c478bd9Sstevel@tonic-gate */ 32927c478bd9Sstevel@tonic-gate for (clp = kobj_lm_lookup(KOBJ_LM_PRIMARY); clp; clp = clp->modl_next) { 32937c478bd9Sstevel@tonic-gate mmp = mod(clp); 32947c478bd9Sstevel@tonic-gate 32957c478bd9Sstevel@tonic-gate if (mmp == NULL || mp == mmp) 32967c478bd9Sstevel@tonic-gate continue; 32977c478bd9Sstevel@tonic-gate 32987c478bd9Sstevel@tonic-gate if ((sp = lookup_one(mmp, name)) != NULL && 32997c478bd9Sstevel@tonic-gate ELF_ST_BIND(sp->st_info) != STB_LOCAL) 33007c478bd9Sstevel@tonic-gate return (sp); 33017c478bd9Sstevel@tonic-gate } 33027c478bd9Sstevel@tonic-gate return (NULL); 33037c478bd9Sstevel@tonic-gate } 33047c478bd9Sstevel@tonic-gate 33057c478bd9Sstevel@tonic-gate Sym * 33067c478bd9Sstevel@tonic-gate kobj_lookup_kernel(const char *name) 33077c478bd9Sstevel@tonic-gate { 33087c478bd9Sstevel@tonic-gate struct modctl_list *lp; 33097c478bd9Sstevel@tonic-gate struct module *mp; 33107c478bd9Sstevel@tonic-gate Sym *sp; 33117c478bd9Sstevel@tonic-gate 33127c478bd9Sstevel@tonic-gate /* 33137c478bd9Sstevel@tonic-gate * Loop through the primary kernel modules. 33147c478bd9Sstevel@tonic-gate */ 33157c478bd9Sstevel@tonic-gate for (lp = kobj_lm_lookup(KOBJ_LM_PRIMARY); lp; lp = lp->modl_next) { 33167c478bd9Sstevel@tonic-gate mp = mod(lp); 33177c478bd9Sstevel@tonic-gate 33187c478bd9Sstevel@tonic-gate if (mp == NULL) 33197c478bd9Sstevel@tonic-gate continue; 33207c478bd9Sstevel@tonic-gate 33217c478bd9Sstevel@tonic-gate if ((sp = lookup_one(mp, name)) != NULL) 33227c478bd9Sstevel@tonic-gate return (sp); 33237c478bd9Sstevel@tonic-gate } 33247c478bd9Sstevel@tonic-gate return (NULL); 33257c478bd9Sstevel@tonic-gate } 33267c478bd9Sstevel@tonic-gate 33277c478bd9Sstevel@tonic-gate static Sym * 33287c478bd9Sstevel@tonic-gate lookup_one(struct module *mp, const char *name) 33297c478bd9Sstevel@tonic-gate { 33307c478bd9Sstevel@tonic-gate symid_t *ip; 33317c478bd9Sstevel@tonic-gate char *name1; 33327c478bd9Sstevel@tonic-gate Sym *sp; 33337c478bd9Sstevel@tonic-gate 33347c478bd9Sstevel@tonic-gate for (ip = &mp->buckets[kobj_hash_name(name) % mp->hashsize]; *ip; 33357c478bd9Sstevel@tonic-gate ip = &mp->chains[*ip]) { 33367c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + 33377c478bd9Sstevel@tonic-gate mp->symhdr->sh_entsize * *ip); 33387c478bd9Sstevel@tonic-gate name1 = mp->strings + sp->st_name; 33397c478bd9Sstevel@tonic-gate if (strcmp(name, name1) == 0 && 33407c478bd9Sstevel@tonic-gate ELF_ST_TYPE(sp->st_info) != STT_FILE && 33417c478bd9Sstevel@tonic-gate sp->st_shndx != SHN_UNDEF && 33427c478bd9Sstevel@tonic-gate sp->st_shndx != SHN_COMMON) 33437c478bd9Sstevel@tonic-gate return (sp); 33447c478bd9Sstevel@tonic-gate } 33457c478bd9Sstevel@tonic-gate return (NULL); 33467c478bd9Sstevel@tonic-gate } 33477c478bd9Sstevel@tonic-gate 33487c478bd9Sstevel@tonic-gate /* 33497c478bd9Sstevel@tonic-gate * Lookup a given symbol pointer in the module's symbol hash. If the symbol 33507c478bd9Sstevel@tonic-gate * is hashed, return the symbol pointer; otherwise return NULL. 33517c478bd9Sstevel@tonic-gate */ 33527c478bd9Sstevel@tonic-gate static Sym * 33537c478bd9Sstevel@tonic-gate sym_lookup(struct module *mp, Sym *ksp) 33547c478bd9Sstevel@tonic-gate { 33557c478bd9Sstevel@tonic-gate char *name = mp->strings + ksp->st_name; 33567c478bd9Sstevel@tonic-gate symid_t *ip; 33577c478bd9Sstevel@tonic-gate Sym *sp; 33587c478bd9Sstevel@tonic-gate 33597c478bd9Sstevel@tonic-gate for (ip = &mp->buckets[kobj_hash_name(name) % mp->hashsize]; *ip; 33607c478bd9Sstevel@tonic-gate ip = &mp->chains[*ip]) { 33617c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + mp->symhdr->sh_entsize * *ip); 33627c478bd9Sstevel@tonic-gate if (sp == ksp) 33637c478bd9Sstevel@tonic-gate return (ksp); 33647c478bd9Sstevel@tonic-gate } 33657c478bd9Sstevel@tonic-gate return (NULL); 33667c478bd9Sstevel@tonic-gate } 33677c478bd9Sstevel@tonic-gate 33687c478bd9Sstevel@tonic-gate static void 33697c478bd9Sstevel@tonic-gate sym_insert(struct module *mp, char *name, symid_t index) 33707c478bd9Sstevel@tonic-gate { 33717c478bd9Sstevel@tonic-gate symid_t *ip; 33727c478bd9Sstevel@tonic-gate 33737c478bd9Sstevel@tonic-gate #ifdef KOBJ_DEBUG 33747c478bd9Sstevel@tonic-gate if (kobj_debug & D_SYMBOLS) { 33757c478bd9Sstevel@tonic-gate static struct module *lastmp = NULL; 33767c478bd9Sstevel@tonic-gate Sym *sp; 33777c478bd9Sstevel@tonic-gate if (lastmp != mp) { 33787c478bd9Sstevel@tonic-gate _kobj_printf(ops, 33797c478bd9Sstevel@tonic-gate "krtld: symbol entry: file=%s\n", 33807c478bd9Sstevel@tonic-gate mp->filename); 33817c478bd9Sstevel@tonic-gate _kobj_printf(ops, 33827c478bd9Sstevel@tonic-gate "krtld:\tsymndx\tvalue\t\t" 33837c478bd9Sstevel@tonic-gate "symbol name\n"); 33847c478bd9Sstevel@tonic-gate lastmp = mp; 33857c478bd9Sstevel@tonic-gate } 33867c478bd9Sstevel@tonic-gate sp = (Sym *)(mp->symtbl + 33877c478bd9Sstevel@tonic-gate index * mp->symhdr->sh_entsize); 33887c478bd9Sstevel@tonic-gate _kobj_printf(ops, "krtld:\t[%3d]", index); 33897c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\t0x%lx", sp->st_value); 33907c478bd9Sstevel@tonic-gate _kobj_printf(ops, "\t%s\n", name); 33917c478bd9Sstevel@tonic-gate } 33927c478bd9Sstevel@tonic-gate 33937c478bd9Sstevel@tonic-gate #endif 33947c478bd9Sstevel@tonic-gate for (ip = &mp->buckets[kobj_hash_name(name) % mp->hashsize]; *ip; 33957c478bd9Sstevel@tonic-gate ip = &mp->chains[*ip]) { 33967c478bd9Sstevel@tonic-gate ; 33977c478bd9Sstevel@tonic-gate } 33987c478bd9Sstevel@tonic-gate *ip = index; 33997c478bd9Sstevel@tonic-gate } 34007c478bd9Sstevel@tonic-gate 34017c478bd9Sstevel@tonic-gate struct modctl * 34027c478bd9Sstevel@tonic-gate kobj_boot_mod_lookup(const char *modname) 34037c478bd9Sstevel@tonic-gate { 34047c478bd9Sstevel@tonic-gate struct modctl *mctl = kobj_modules; 34057c478bd9Sstevel@tonic-gate 34067c478bd9Sstevel@tonic-gate do { 34077c478bd9Sstevel@tonic-gate if (strcmp(modname, mctl->mod_modname) == 0) 34087c478bd9Sstevel@tonic-gate return (mctl); 34097c478bd9Sstevel@tonic-gate } while ((mctl = mctl->mod_next) != kobj_modules); 34107c478bd9Sstevel@tonic-gate 34117c478bd9Sstevel@tonic-gate return (NULL); 34127c478bd9Sstevel@tonic-gate } 34137c478bd9Sstevel@tonic-gate 34147c478bd9Sstevel@tonic-gate /* 34155c311300Scth * Determine if the module exists. 34165c311300Scth */ 34175c311300Scth int 34185c311300Scth kobj_path_exists(char *name, int use_path) 34195c311300Scth { 34205c311300Scth struct _buf *file; 34215c311300Scth 34225c311300Scth file = kobj_open_path(name, use_path, 1); 34235c311300Scth #ifdef MODDIR_SUFFIX 34245c311300Scth if (file == (struct _buf *)-1) 34255c311300Scth file = kobj_open_path(name, use_path, 0); 34265c311300Scth #endif /* MODDIR_SUFFIX */ 34275c311300Scth if (file == (struct _buf *)-1) 34285c311300Scth return (0); 34295c311300Scth kobj_close_file(file); 34305c311300Scth return (1); 34315c311300Scth } 34325c311300Scth 34335c311300Scth /* 34347c478bd9Sstevel@tonic-gate * fullname is dynamically allocated to be able to hold the 34357c478bd9Sstevel@tonic-gate * maximum size string that can be constructed from name. 34367c478bd9Sstevel@tonic-gate * path is exactly like the shell PATH variable. 34377c478bd9Sstevel@tonic-gate */ 34387c478bd9Sstevel@tonic-gate struct _buf * 34397c478bd9Sstevel@tonic-gate kobj_open_path(char *name, int use_path, int use_moddir_suffix) 34407c478bd9Sstevel@tonic-gate { 34417c478bd9Sstevel@tonic-gate char *p, *q; 34427c478bd9Sstevel@tonic-gate char *pathp; 34437c478bd9Sstevel@tonic-gate char *pathpsave; 34447c478bd9Sstevel@tonic-gate char *fullname; 34457c478bd9Sstevel@tonic-gate int maxpathlen; 34467c478bd9Sstevel@tonic-gate struct _buf *file; 34477c478bd9Sstevel@tonic-gate 34487c478bd9Sstevel@tonic-gate #if !defined(MODDIR_SUFFIX) 34497c478bd9Sstevel@tonic-gate use_moddir_suffix = B_FALSE; 34507c478bd9Sstevel@tonic-gate #endif 34517c478bd9Sstevel@tonic-gate 34527c478bd9Sstevel@tonic-gate if (!use_path) 34537c478bd9Sstevel@tonic-gate pathp = ""; /* use name as specified */ 34547c478bd9Sstevel@tonic-gate else 3455ae115bc7Smrj pathp = kobj_module_path; 3456ae115bc7Smrj /* use configured default path */ 34577c478bd9Sstevel@tonic-gate 34587c478bd9Sstevel@tonic-gate pathpsave = pathp; /* keep this for error reporting */ 34597c478bd9Sstevel@tonic-gate 34607c478bd9Sstevel@tonic-gate /* 34617c478bd9Sstevel@tonic-gate * Allocate enough space for the largest possible fullname. 34627c478bd9Sstevel@tonic-gate * since path is of the form <directory> : <directory> : ... 34637c478bd9Sstevel@tonic-gate * we're potentially allocating a little more than we need to 34647c478bd9Sstevel@tonic-gate * but we'll allocate the exact amount when we find the right directory. 34657c478bd9Sstevel@tonic-gate * (The + 3 below is one for NULL terminator and one for the '/' 34667c478bd9Sstevel@tonic-gate * we might have to add at the beginning of path and one for 34677c478bd9Sstevel@tonic-gate * the '/' between path and name.) 34687c478bd9Sstevel@tonic-gate */ 34697c478bd9Sstevel@tonic-gate maxpathlen = strlen(pathp) + strlen(name) + 3; 34707c478bd9Sstevel@tonic-gate /* sizeof includes null */ 34717c478bd9Sstevel@tonic-gate maxpathlen += sizeof (slash_moddir_suffix_slash) - 1; 34727c478bd9Sstevel@tonic-gate fullname = kobj_zalloc(maxpathlen, KM_WAIT); 34737c478bd9Sstevel@tonic-gate 34747c478bd9Sstevel@tonic-gate for (;;) { 34757c478bd9Sstevel@tonic-gate p = fullname; 34767c478bd9Sstevel@tonic-gate if (*pathp != '\0' && *pathp != '/') 34777c478bd9Sstevel@tonic-gate *p++ = '/'; /* path must start with '/' */ 34787c478bd9Sstevel@tonic-gate while (*pathp && *pathp != ':' && *pathp != ' ') 34797c478bd9Sstevel@tonic-gate *p++ = *pathp++; 34807c478bd9Sstevel@tonic-gate if (p != fullname && p[-1] != '/') 34817c478bd9Sstevel@tonic-gate *p++ = '/'; 34827c478bd9Sstevel@tonic-gate if (use_moddir_suffix) { 34837c478bd9Sstevel@tonic-gate char *b = basename(name); 34847c478bd9Sstevel@tonic-gate char *s; 34857c478bd9Sstevel@tonic-gate 34867c478bd9Sstevel@tonic-gate /* copy everything up to the base name */ 34877c478bd9Sstevel@tonic-gate q = name; 34887c478bd9Sstevel@tonic-gate while (q != b && *q) 34897c478bd9Sstevel@tonic-gate *p++ = *q++; 34907c478bd9Sstevel@tonic-gate s = slash_moddir_suffix_slash; 34917c478bd9Sstevel@tonic-gate while (*s) 34927c478bd9Sstevel@tonic-gate *p++ = *s++; 34937c478bd9Sstevel@tonic-gate /* copy the rest */ 34947c478bd9Sstevel@tonic-gate while (*b) 34957c478bd9Sstevel@tonic-gate *p++ = *b++; 34967c478bd9Sstevel@tonic-gate } else { 34977c478bd9Sstevel@tonic-gate q = name; 34987c478bd9Sstevel@tonic-gate while (*q) 34997c478bd9Sstevel@tonic-gate *p++ = *q++; 35007c478bd9Sstevel@tonic-gate } 35017c478bd9Sstevel@tonic-gate *p = 0; 35027c478bd9Sstevel@tonic-gate if ((file = kobj_open_file(fullname)) != (struct _buf *)-1) { 35037c478bd9Sstevel@tonic-gate kobj_free(fullname, maxpathlen); 35047c478bd9Sstevel@tonic-gate return (file); 35057c478bd9Sstevel@tonic-gate } 3506b2940a7cSRichard Lowe while (*pathp == ' ' || *pathp == ':') 3507da346f3bSPramod Batni pathp++; 35087c478bd9Sstevel@tonic-gate if (*pathp == 0) 35097c478bd9Sstevel@tonic-gate break; 3510da346f3bSPramod Batni 35117c478bd9Sstevel@tonic-gate } 35127c478bd9Sstevel@tonic-gate kobj_free(fullname, maxpathlen); 35137c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 35147c478bd9Sstevel@tonic-gate _kobj_printf(ops, "can't open %s,", name); 35157c478bd9Sstevel@tonic-gate _kobj_printf(ops, " path is %s\n", pathpsave); 35167c478bd9Sstevel@tonic-gate } 35177c478bd9Sstevel@tonic-gate return ((struct _buf *)-1); 35187c478bd9Sstevel@tonic-gate } 35197c478bd9Sstevel@tonic-gate 35207c478bd9Sstevel@tonic-gate intptr_t 35217c478bd9Sstevel@tonic-gate kobj_open(char *filename) 35227c478bd9Sstevel@tonic-gate { 35237c478bd9Sstevel@tonic-gate struct vnode *vp; 35247c478bd9Sstevel@tonic-gate int fd; 35257c478bd9Sstevel@tonic-gate 35267c478bd9Sstevel@tonic-gate if (_modrootloaded) { 35277c478bd9Sstevel@tonic-gate struct kobjopen_tctl *ltp = kobjopen_alloc(filename); 35287c478bd9Sstevel@tonic-gate int Errno; 35297c478bd9Sstevel@tonic-gate 35307c478bd9Sstevel@tonic-gate /* 35317c478bd9Sstevel@tonic-gate * Hand off the open to a thread who has a 35327c478bd9Sstevel@tonic-gate * stack size capable handling the request. 35337c478bd9Sstevel@tonic-gate */ 35347c478bd9Sstevel@tonic-gate if (curthread != &t0) { 35357c478bd9Sstevel@tonic-gate (void) thread_create(NULL, DEFAULTSTKSZ * 2, 35367c478bd9Sstevel@tonic-gate kobjopen_thread, ltp, 0, &p0, TS_RUN, maxclsyspri); 35377c478bd9Sstevel@tonic-gate sema_p(<p->sema); 35387c478bd9Sstevel@tonic-gate Errno = ltp->Errno; 35397c478bd9Sstevel@tonic-gate vp = ltp->vp; 35407c478bd9Sstevel@tonic-gate } else { 35417c478bd9Sstevel@tonic-gate /* 35427c478bd9Sstevel@tonic-gate * 1098067: module creds should not be those of the 35437c478bd9Sstevel@tonic-gate * caller 35447c478bd9Sstevel@tonic-gate */ 35457c478bd9Sstevel@tonic-gate cred_t *saved_cred = curthread->t_cred; 35467c478bd9Sstevel@tonic-gate curthread->t_cred = kcred; 3547ea8dc4b6Seschrock Errno = vn_openat(filename, UIO_SYSSPACE, FREAD, 0, &vp, 3548da6c28aaSamw 0, 0, rootdir, -1); 35497c478bd9Sstevel@tonic-gate curthread->t_cred = saved_cred; 35507c478bd9Sstevel@tonic-gate } 35517c478bd9Sstevel@tonic-gate kobjopen_free(ltp); 35527c478bd9Sstevel@tonic-gate 35537c478bd9Sstevel@tonic-gate if (Errno) { 35547c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 35557c478bd9Sstevel@tonic-gate _kobj_printf(ops, 35567c478bd9Sstevel@tonic-gate "kobj_open: vn_open of %s fails, ", 35577c478bd9Sstevel@tonic-gate filename); 35587c478bd9Sstevel@tonic-gate _kobj_printf(ops, "Errno = %d\n", Errno); 35597c478bd9Sstevel@tonic-gate } 35607c478bd9Sstevel@tonic-gate return (-1); 35617c478bd9Sstevel@tonic-gate } else { 35627c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 35637c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_open: '%s'", filename); 35647c478bd9Sstevel@tonic-gate _kobj_printf(ops, " vp = %p\n", vp); 35657c478bd9Sstevel@tonic-gate } 35667c478bd9Sstevel@tonic-gate return ((intptr_t)vp); 35677c478bd9Sstevel@tonic-gate } 35687c478bd9Sstevel@tonic-gate } else { 35697c478bd9Sstevel@tonic-gate fd = kobj_boot_open(filename, 0); 35707c478bd9Sstevel@tonic-gate 35717c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 35727c478bd9Sstevel@tonic-gate if (fd < 0) 35737c478bd9Sstevel@tonic-gate _kobj_printf(ops, 35747c478bd9Sstevel@tonic-gate "kobj_open: can't open %s\n", filename); 35757c478bd9Sstevel@tonic-gate else { 35767c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_open: '%s'", filename); 35777c478bd9Sstevel@tonic-gate _kobj_printf(ops, " descr = 0x%x\n", fd); 35787c478bd9Sstevel@tonic-gate } 35797c478bd9Sstevel@tonic-gate } 35807c478bd9Sstevel@tonic-gate return ((intptr_t)fd); 35817c478bd9Sstevel@tonic-gate } 35827c478bd9Sstevel@tonic-gate } 35837c478bd9Sstevel@tonic-gate 35847c478bd9Sstevel@tonic-gate /* 35857c478bd9Sstevel@tonic-gate * Calls to kobj_open() are handled off to this routine as a separate thread. 35867c478bd9Sstevel@tonic-gate */ 35877c478bd9Sstevel@tonic-gate static void 35887c478bd9Sstevel@tonic-gate kobjopen_thread(struct kobjopen_tctl *ltp) 35897c478bd9Sstevel@tonic-gate { 35907c478bd9Sstevel@tonic-gate kmutex_t cpr_lk; 35917c478bd9Sstevel@tonic-gate callb_cpr_t cpr_i; 35927c478bd9Sstevel@tonic-gate 35937c478bd9Sstevel@tonic-gate mutex_init(&cpr_lk, NULL, MUTEX_DEFAULT, NULL); 35947c478bd9Sstevel@tonic-gate CALLB_CPR_INIT(&cpr_i, &cpr_lk, callb_generic_cpr, "kobjopen"); 35957c478bd9Sstevel@tonic-gate ltp->Errno = vn_open(ltp->name, UIO_SYSSPACE, FREAD, 0, &(ltp->vp), 35967c478bd9Sstevel@tonic-gate 0, 0); 35977c478bd9Sstevel@tonic-gate sema_v(<p->sema); 35987c478bd9Sstevel@tonic-gate mutex_enter(&cpr_lk); 35997c478bd9Sstevel@tonic-gate CALLB_CPR_EXIT(&cpr_i); 36007c478bd9Sstevel@tonic-gate mutex_destroy(&cpr_lk); 36017c478bd9Sstevel@tonic-gate thread_exit(); 36027c478bd9Sstevel@tonic-gate } 36037c478bd9Sstevel@tonic-gate 36047c478bd9Sstevel@tonic-gate /* 36057c478bd9Sstevel@tonic-gate * allocate and initialize a kobjopen thread structure 36067c478bd9Sstevel@tonic-gate */ 36077c478bd9Sstevel@tonic-gate static struct kobjopen_tctl * 36087c478bd9Sstevel@tonic-gate kobjopen_alloc(char *filename) 36097c478bd9Sstevel@tonic-gate { 36107c478bd9Sstevel@tonic-gate struct kobjopen_tctl *ltp = kmem_zalloc(sizeof (*ltp), KM_SLEEP); 36117c478bd9Sstevel@tonic-gate 36127c478bd9Sstevel@tonic-gate ASSERT(filename != NULL); 36137c478bd9Sstevel@tonic-gate 36147c478bd9Sstevel@tonic-gate ltp->name = kmem_alloc(strlen(filename) + 1, KM_SLEEP); 36157c478bd9Sstevel@tonic-gate bcopy(filename, ltp->name, strlen(filename) + 1); 36167c478bd9Sstevel@tonic-gate sema_init(<p->sema, 0, NULL, SEMA_DEFAULT, NULL); 36177c478bd9Sstevel@tonic-gate return (ltp); 36187c478bd9Sstevel@tonic-gate } 36197c478bd9Sstevel@tonic-gate 36207c478bd9Sstevel@tonic-gate /* 36217c478bd9Sstevel@tonic-gate * free a kobjopen thread control structure 36227c478bd9Sstevel@tonic-gate */ 36237c478bd9Sstevel@tonic-gate static void 36247c478bd9Sstevel@tonic-gate kobjopen_free(struct kobjopen_tctl *ltp) 36257c478bd9Sstevel@tonic-gate { 36267c478bd9Sstevel@tonic-gate sema_destroy(<p->sema); 36277c478bd9Sstevel@tonic-gate kmem_free(ltp->name, strlen(ltp->name) + 1); 36287c478bd9Sstevel@tonic-gate kmem_free(ltp, sizeof (*ltp)); 36297c478bd9Sstevel@tonic-gate } 36307c478bd9Sstevel@tonic-gate 36317c478bd9Sstevel@tonic-gate int 3632986fd29aSsetje kobj_read(intptr_t descr, char *buf, uint_t size, uint_t offset) 36337c478bd9Sstevel@tonic-gate { 36347c478bd9Sstevel@tonic-gate int stat; 36357c478bd9Sstevel@tonic-gate ssize_t resid; 36367c478bd9Sstevel@tonic-gate 36377c478bd9Sstevel@tonic-gate if (_modrootloaded) { 36387c478bd9Sstevel@tonic-gate if ((stat = vn_rdwr(UIO_READ, (struct vnode *)descr, buf, size, 36397c478bd9Sstevel@tonic-gate (offset_t)offset, UIO_SYSSPACE, 0, (rlim64_t)0, CRED(), 36407c478bd9Sstevel@tonic-gate &resid)) != 0) { 36417c478bd9Sstevel@tonic-gate _kobj_printf(ops, 36427c478bd9Sstevel@tonic-gate "vn_rdwr failed with error 0x%x\n", stat); 36437c478bd9Sstevel@tonic-gate return (-1); 36447c478bd9Sstevel@tonic-gate } 36457c478bd9Sstevel@tonic-gate return (size - resid); 36467c478bd9Sstevel@tonic-gate } else { 36477c478bd9Sstevel@tonic-gate int count = 0; 36487c478bd9Sstevel@tonic-gate 36497c478bd9Sstevel@tonic-gate if (kobj_boot_seek((int)descr, (off_t)0, offset) != 0) { 36507c478bd9Sstevel@tonic-gate _kobj_printf(ops, 36517c478bd9Sstevel@tonic-gate "kobj_read: seek 0x%x failed\n", offset); 36527c478bd9Sstevel@tonic-gate return (-1); 36537c478bd9Sstevel@tonic-gate } 36547c478bd9Sstevel@tonic-gate 36557c478bd9Sstevel@tonic-gate count = kobj_boot_read((int)descr, buf, size); 36567c478bd9Sstevel@tonic-gate if (count < size) { 36577c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 36587c478bd9Sstevel@tonic-gate _kobj_printf(ops, 36597c478bd9Sstevel@tonic-gate "kobj_read: req %d bytes, ", size); 36607c478bd9Sstevel@tonic-gate _kobj_printf(ops, "got %d\n", count); 36617c478bd9Sstevel@tonic-gate } 36627c478bd9Sstevel@tonic-gate } 36637c478bd9Sstevel@tonic-gate return (count); 36647c478bd9Sstevel@tonic-gate } 36657c478bd9Sstevel@tonic-gate } 36667c478bd9Sstevel@tonic-gate 36677c478bd9Sstevel@tonic-gate void 36687c478bd9Sstevel@tonic-gate kobj_close(intptr_t descr) 36697c478bd9Sstevel@tonic-gate { 36707c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 36717c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_close: 0x%lx\n", descr); 36727c478bd9Sstevel@tonic-gate 36737c478bd9Sstevel@tonic-gate if (_modrootloaded) { 36747c478bd9Sstevel@tonic-gate struct vnode *vp = (struct vnode *)descr; 3675da6c28aaSamw (void) VOP_CLOSE(vp, FREAD, 1, (offset_t)0, CRED(), NULL); 36767c478bd9Sstevel@tonic-gate VN_RELE(vp); 36777c478bd9Sstevel@tonic-gate } else 36787c478bd9Sstevel@tonic-gate (void) kobj_boot_close((int)descr); 36797c478bd9Sstevel@tonic-gate } 36807c478bd9Sstevel@tonic-gate 3681ea8dc4b6Seschrock int 3682ea8dc4b6Seschrock kobj_fstat(intptr_t descr, struct bootstat *buf) 3683ea8dc4b6Seschrock { 3684ea8dc4b6Seschrock if (buf == NULL) 3685ea8dc4b6Seschrock return (-1); 3686ea8dc4b6Seschrock 3687ea8dc4b6Seschrock if (_modrootloaded) { 3688ea8dc4b6Seschrock vattr_t vattr; 3689ea8dc4b6Seschrock struct vnode *vp = (struct vnode *)descr; 3690da6c28aaSamw if (VOP_GETATTR(vp, &vattr, 0, kcred, NULL) != 0) 3691ea8dc4b6Seschrock return (-1); 3692ea8dc4b6Seschrock 3693ea8dc4b6Seschrock /* 3694ea8dc4b6Seschrock * The vattr and bootstat structures are similar, but not 3695ea8dc4b6Seschrock * identical. We do our best to fill in the bootstat structure 3696ea8dc4b6Seschrock * from the contents of vattr (transfering only the ones that 3697ea8dc4b6Seschrock * are obvious. 3698ea8dc4b6Seschrock */ 3699ea8dc4b6Seschrock 3700ea8dc4b6Seschrock buf->st_mode = (uint32_t)vattr.va_mode; 3701ea8dc4b6Seschrock buf->st_nlink = (uint32_t)vattr.va_nlink; 3702ea8dc4b6Seschrock buf->st_uid = (int32_t)vattr.va_uid; 3703ea8dc4b6Seschrock buf->st_gid = (int32_t)vattr.va_gid; 3704ea8dc4b6Seschrock buf->st_rdev = (uint64_t)vattr.va_rdev; 3705ea8dc4b6Seschrock buf->st_size = (uint64_t)vattr.va_size; 3706ea8dc4b6Seschrock buf->st_atim.tv_sec = (int64_t)vattr.va_atime.tv_sec; 3707ea8dc4b6Seschrock buf->st_atim.tv_nsec = (int64_t)vattr.va_atime.tv_nsec; 3708ea8dc4b6Seschrock buf->st_mtim.tv_sec = (int64_t)vattr.va_mtime.tv_sec; 3709ea8dc4b6Seschrock buf->st_mtim.tv_nsec = (int64_t)vattr.va_mtime.tv_nsec; 3710ea8dc4b6Seschrock buf->st_ctim.tv_sec = (int64_t)vattr.va_ctime.tv_sec; 3711ea8dc4b6Seschrock buf->st_ctim.tv_nsec = (int64_t)vattr.va_ctime.tv_nsec; 3712ea8dc4b6Seschrock buf->st_blksize = (int32_t)vattr.va_blksize; 3713ea8dc4b6Seschrock buf->st_blocks = (int64_t)vattr.va_nblocks; 3714ea8dc4b6Seschrock 3715ea8dc4b6Seschrock return (0); 3716ea8dc4b6Seschrock } 3717ea8dc4b6Seschrock 3718ea8dc4b6Seschrock return (kobj_boot_fstat((int)descr, buf)); 3719ea8dc4b6Seschrock } 3720ea8dc4b6Seschrock 3721ea8dc4b6Seschrock 37227c478bd9Sstevel@tonic-gate struct _buf * 37237c478bd9Sstevel@tonic-gate kobj_open_file(char *name) 37247c478bd9Sstevel@tonic-gate { 37257c478bd9Sstevel@tonic-gate struct _buf *file; 3726986fd29aSsetje struct compinfo cbuf; 37277c478bd9Sstevel@tonic-gate intptr_t fd; 37287c478bd9Sstevel@tonic-gate 37297c478bd9Sstevel@tonic-gate if ((fd = kobj_open(name)) == -1) { 37307c478bd9Sstevel@tonic-gate return ((struct _buf *)-1); 37317c478bd9Sstevel@tonic-gate } 37327c478bd9Sstevel@tonic-gate 37337c478bd9Sstevel@tonic-gate file = kobj_zalloc(sizeof (struct _buf), KM_WAIT|KM_TMP); 37347c478bd9Sstevel@tonic-gate file->_fd = fd; 37357c478bd9Sstevel@tonic-gate file->_name = kobj_alloc(strlen(name)+1, KM_WAIT|KM_TMP); 37367c478bd9Sstevel@tonic-gate file->_cnt = file->_size = file->_off = 0; 37377c478bd9Sstevel@tonic-gate file->_ln = 1; 37387c478bd9Sstevel@tonic-gate file->_ptr = file->_base; 37397c478bd9Sstevel@tonic-gate (void) strcpy(file->_name, name); 3740986fd29aSsetje 3741986fd29aSsetje /* 3742986fd29aSsetje * Before root is mounted, we must check 3743986fd29aSsetje * for a compressed file and do our own 3744986fd29aSsetje * buffering. 3745986fd29aSsetje */ 3746986fd29aSsetje if (_modrootloaded) { 3747986fd29aSsetje file->_base = kobj_zalloc(MAXBSIZE, KM_WAIT); 3748986fd29aSsetje file->_bsize = MAXBSIZE; 37491d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 37501d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* Check if the file is compressed */ 3751215280f2SKrishnendu Sadhukhan - Sun Microsystems file->_iscmp = kobj_is_compressed(fd); 3752986fd29aSsetje } else { 3753986fd29aSsetje if (kobj_boot_compinfo(fd, &cbuf) != 0) { 3754986fd29aSsetje kobj_close_file(file); 3755986fd29aSsetje return ((struct _buf *)-1); 3756986fd29aSsetje } 3757986fd29aSsetje file->_iscmp = cbuf.iscmp; 3758986fd29aSsetje if (file->_iscmp) { 3759986fd29aSsetje if (kobj_comp_setup(file, &cbuf) != 0) { 3760986fd29aSsetje kobj_close_file(file); 3761986fd29aSsetje return ((struct _buf *)-1); 3762986fd29aSsetje } 3763986fd29aSsetje } else { 3764986fd29aSsetje file->_base = kobj_zalloc(cbuf.blksize, KM_WAIT|KM_TMP); 3765986fd29aSsetje file->_bsize = cbuf.blksize; 3766986fd29aSsetje } 3767986fd29aSsetje } 37687c478bd9Sstevel@tonic-gate return (file); 37697c478bd9Sstevel@tonic-gate } 37707c478bd9Sstevel@tonic-gate 3771986fd29aSsetje static int 3772986fd29aSsetje kobj_comp_setup(struct _buf *file, struct compinfo *cip) 3773986fd29aSsetje { 3774986fd29aSsetje struct comphdr *hdr; 3775986fd29aSsetje 3776986fd29aSsetje /* 3777986fd29aSsetje * read the compressed image into memory, 3778986fd29aSsetje * so we can deompress from there 3779986fd29aSsetje */ 3780986fd29aSsetje file->_dsize = cip->fsize; 3781986fd29aSsetje file->_dbuf = kobj_alloc(cip->fsize, KM_WAIT|KM_TMP); 3782986fd29aSsetje if (kobj_read(file->_fd, file->_dbuf, cip->fsize, 0) != cip->fsize) { 3783986fd29aSsetje kobj_free(file->_dbuf, cip->fsize); 3784986fd29aSsetje return (-1); 3785986fd29aSsetje } 3786986fd29aSsetje 3787986fd29aSsetje hdr = kobj_comphdr(file); 37881d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if (hdr->ch_magic != CH_MAGIC_ZLIB || hdr->ch_version != CH_VERSION || 3789986fd29aSsetje hdr->ch_algorithm != CH_ALG_ZLIB || hdr->ch_fsize == 0 || 3790*de710d24SJosef 'Jeff' Sipek !ISP2(hdr->ch_blksize)) { 3791986fd29aSsetje kobj_free(file->_dbuf, cip->fsize); 3792986fd29aSsetje return (-1); 3793986fd29aSsetje } 3794986fd29aSsetje file->_base = kobj_alloc(hdr->ch_blksize, KM_WAIT|KM_TMP); 3795986fd29aSsetje file->_bsize = hdr->ch_blksize; 3796986fd29aSsetje return (0); 3797986fd29aSsetje } 3798986fd29aSsetje 37997c478bd9Sstevel@tonic-gate void 38007c478bd9Sstevel@tonic-gate kobj_close_file(struct _buf *file) 38017c478bd9Sstevel@tonic-gate { 38027c478bd9Sstevel@tonic-gate kobj_close(file->_fd); 3803986fd29aSsetje if (file->_base != NULL) 3804986fd29aSsetje kobj_free(file->_base, file->_bsize); 3805986fd29aSsetje if (file->_dbuf != NULL) 3806986fd29aSsetje kobj_free(file->_dbuf, file->_dsize); 38077c478bd9Sstevel@tonic-gate kobj_free(file->_name, strlen(file->_name)+1); 38087c478bd9Sstevel@tonic-gate kobj_free(file, sizeof (struct _buf)); 38097c478bd9Sstevel@tonic-gate } 38107c478bd9Sstevel@tonic-gate 38117c478bd9Sstevel@tonic-gate int 3812986fd29aSsetje kobj_read_file(struct _buf *file, char *buf, uint_t size, uint_t off) 38137c478bd9Sstevel@tonic-gate { 38147c478bd9Sstevel@tonic-gate int b_size, c_size; 38157c478bd9Sstevel@tonic-gate int b_off; /* Offset into buffer for start of bcopy */ 38167c478bd9Sstevel@tonic-gate int count = 0; 38177c478bd9Sstevel@tonic-gate int page_addr; 38187c478bd9Sstevel@tonic-gate 38197c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) { 38207c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_read_file: size=%x,", size); 38217c478bd9Sstevel@tonic-gate _kobj_printf(ops, " offset=%x at", off); 38227c478bd9Sstevel@tonic-gate _kobj_printf(ops, " buf=%x\n", buf); 38237c478bd9Sstevel@tonic-gate } 38247c478bd9Sstevel@tonic-gate 38251d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* 38261d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * Handle compressed (gzip for now) file here. First get the 38271d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * compressed size, then read the image into memory and finally 38281d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * call zlib to decompress the image at the supplied memory buffer. 38291d7f3fadSKrishnendu Sadhukhan - Sun Microsystems */ 3830215280f2SKrishnendu Sadhukhan - Sun Microsystems if (file->_iscmp == CH_MAGIC_GZIP) { 38311d7f3fadSKrishnendu Sadhukhan - Sun Microsystems ulong_t dlen; 38321d7f3fadSKrishnendu Sadhukhan - Sun Microsystems vattr_t vattr; 38331d7f3fadSKrishnendu Sadhukhan - Sun Microsystems struct vnode *vp = (struct vnode *)file->_fd; 38341d7f3fadSKrishnendu Sadhukhan - Sun Microsystems ssize_t resid; 38351d7f3fadSKrishnendu Sadhukhan - Sun Microsystems int err = 0; 38361d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38371d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if (VOP_GETATTR(vp, &vattr, 0, kcred, NULL) != 0) 38381d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (-1); 38391d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38401d7f3fadSKrishnendu Sadhukhan - Sun Microsystems file->_dbuf = kobj_alloc(vattr.va_size, KM_WAIT|KM_TMP); 38411d7f3fadSKrishnendu Sadhukhan - Sun Microsystems file->_dsize = vattr.va_size; 38421d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38431d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* Read the compressed file into memory */ 38441d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if ((err = vn_rdwr(UIO_READ, vp, file->_dbuf, vattr.va_size, 38451d7f3fadSKrishnendu Sadhukhan - Sun Microsystems (offset_t)(0), UIO_SYSSPACE, 0, (rlim64_t)0, CRED(), 38461d7f3fadSKrishnendu Sadhukhan - Sun Microsystems &resid)) != 0) { 38471d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38481d7f3fadSKrishnendu Sadhukhan - Sun Microsystems _kobj_printf(ops, "kobj_read_file :vn_rdwr() failed, " 38491d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "error code 0x%x\n", err); 38501d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (-1); 38511d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 38521d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38531d7f3fadSKrishnendu Sadhukhan - Sun Microsystems dlen = size; 38541d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38551d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* Decompress the image at the supplied memory buffer */ 38561d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if ((err = z_uncompress(buf, &dlen, file->_dbuf, 38571d7f3fadSKrishnendu Sadhukhan - Sun Microsystems vattr.va_size)) != Z_OK) { 38581d7f3fadSKrishnendu Sadhukhan - Sun Microsystems _kobj_printf(ops, "kobj_read_file: z_uncompress " 38591d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "failed, error code : 0x%x\n", err); 38601d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (-1); 38611d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 38621d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38631d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if (dlen != size) { 38641d7f3fadSKrishnendu Sadhukhan - Sun Microsystems _kobj_printf(ops, "kobj_read_file: z_uncompress " 38651d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "failed to uncompress (size returned 0x%x , " 38661d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "expected size: 0x%x)\n", dlen, size); 38671d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (-1); 38681d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 38691d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38701d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (0); 38711d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 38721d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 38737c478bd9Sstevel@tonic-gate while (size) { 3874986fd29aSsetje page_addr = F_PAGE(file, off); 38757c478bd9Sstevel@tonic-gate b_size = file->_size; 38767c478bd9Sstevel@tonic-gate /* 38777c478bd9Sstevel@tonic-gate * If we have the filesystem page the caller's referring to 38787c478bd9Sstevel@tonic-gate * and we have something in the buffer, 38797c478bd9Sstevel@tonic-gate * satisfy as much of the request from the buffer as we can. 38807c478bd9Sstevel@tonic-gate */ 38817c478bd9Sstevel@tonic-gate if (page_addr == file->_off && b_size > 0) { 3882986fd29aSsetje b_off = B_OFFSET(file, off); 38837c478bd9Sstevel@tonic-gate c_size = b_size - b_off; 38847c478bd9Sstevel@tonic-gate /* 38857c478bd9Sstevel@tonic-gate * If there's nothing to copy, we're at EOF. 38867c478bd9Sstevel@tonic-gate */ 38877c478bd9Sstevel@tonic-gate if (c_size <= 0) 38887c478bd9Sstevel@tonic-gate break; 38897c478bd9Sstevel@tonic-gate if (c_size > size) 38907c478bd9Sstevel@tonic-gate c_size = size; 38917c478bd9Sstevel@tonic-gate if (buf) { 38927c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 38937c478bd9Sstevel@tonic-gate _kobj_printf(ops, "copying %x bytes\n", 38947c478bd9Sstevel@tonic-gate c_size); 38957c478bd9Sstevel@tonic-gate bcopy(file->_base+b_off, buf, c_size); 38967c478bd9Sstevel@tonic-gate size -= c_size; 38977c478bd9Sstevel@tonic-gate off += c_size; 38987c478bd9Sstevel@tonic-gate buf += c_size; 38997c478bd9Sstevel@tonic-gate count += c_size; 39007c478bd9Sstevel@tonic-gate } else { 39017c478bd9Sstevel@tonic-gate _kobj_printf(ops, "kobj_read: system error"); 39027c478bd9Sstevel@tonic-gate count = -1; 39037c478bd9Sstevel@tonic-gate break; 39047c478bd9Sstevel@tonic-gate } 39057c478bd9Sstevel@tonic-gate } else { 39067c478bd9Sstevel@tonic-gate /* 39077c478bd9Sstevel@tonic-gate * If the caller's offset is page aligned and 39087c478bd9Sstevel@tonic-gate * the caller want's at least a filesystem page and 39097c478bd9Sstevel@tonic-gate * the caller provided a buffer, 39107c478bd9Sstevel@tonic-gate * read directly into the caller's buffer. 39117c478bd9Sstevel@tonic-gate */ 39127c478bd9Sstevel@tonic-gate if (page_addr == off && 3913986fd29aSsetje (c_size = F_BLKS(file, size)) && buf) { 3914986fd29aSsetje c_size = kobj_read_blks(file, buf, c_size, 39157c478bd9Sstevel@tonic-gate page_addr); 39167c478bd9Sstevel@tonic-gate if (c_size < 0) { 39177c478bd9Sstevel@tonic-gate count = -1; 39187c478bd9Sstevel@tonic-gate break; 39197c478bd9Sstevel@tonic-gate } 39207c478bd9Sstevel@tonic-gate count += c_size; 3921986fd29aSsetje if (c_size != F_BLKS(file, size)) 39227c478bd9Sstevel@tonic-gate break; 39237c478bd9Sstevel@tonic-gate size -= c_size; 39247c478bd9Sstevel@tonic-gate off += c_size; 39257c478bd9Sstevel@tonic-gate buf += c_size; 39267c478bd9Sstevel@tonic-gate /* 39277c478bd9Sstevel@tonic-gate * Otherwise, read into our buffer and copy next time 39287c478bd9Sstevel@tonic-gate * around the loop. 39297c478bd9Sstevel@tonic-gate */ 39307c478bd9Sstevel@tonic-gate } else { 39317c478bd9Sstevel@tonic-gate file->_off = page_addr; 3932986fd29aSsetje c_size = kobj_read_blks(file, file->_base, 3933986fd29aSsetje file->_bsize, page_addr); 39347c478bd9Sstevel@tonic-gate file->_ptr = file->_base; 39357c478bd9Sstevel@tonic-gate file->_cnt = c_size; 39367c478bd9Sstevel@tonic-gate file->_size = c_size; 39377c478bd9Sstevel@tonic-gate /* 39387c478bd9Sstevel@tonic-gate * If a _filbuf call or nothing read, break. 39397c478bd9Sstevel@tonic-gate */ 39407c478bd9Sstevel@tonic-gate if (buf == NULL || c_size <= 0) { 39417c478bd9Sstevel@tonic-gate count = c_size; 39427c478bd9Sstevel@tonic-gate break; 39437c478bd9Sstevel@tonic-gate } 39447c478bd9Sstevel@tonic-gate } 39457c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 39467c478bd9Sstevel@tonic-gate _kobj_printf(ops, "read %x bytes\n", c_size); 39477c478bd9Sstevel@tonic-gate } 39487c478bd9Sstevel@tonic-gate } 39497c478bd9Sstevel@tonic-gate if (_moddebug & MODDEBUG_ERRMSG) 39507c478bd9Sstevel@tonic-gate _kobj_printf(ops, "count = %x\n", count); 39517c478bd9Sstevel@tonic-gate 39527c478bd9Sstevel@tonic-gate return (count); 39537c478bd9Sstevel@tonic-gate } 39547c478bd9Sstevel@tonic-gate 3955986fd29aSsetje static int 3956986fd29aSsetje kobj_read_blks(struct _buf *file, char *buf, uint_t size, uint_t off) 3957986fd29aSsetje { 3958986fd29aSsetje int ret; 3959986fd29aSsetje 3960986fd29aSsetje ASSERT(B_OFFSET(file, size) == 0 && B_OFFSET(file, off) == 0); 3961986fd29aSsetje if (file->_iscmp) { 3962986fd29aSsetje uint_t blks; 3963986fd29aSsetje int nret; 3964986fd29aSsetje 3965986fd29aSsetje ret = 0; 3966986fd29aSsetje for (blks = size / file->_bsize; blks != 0; blks--) { 3967986fd29aSsetje nret = kobj_uncomp_blk(file, buf, off); 3968986fd29aSsetje if (nret == -1) 3969986fd29aSsetje return (-1); 3970986fd29aSsetje buf += nret; 3971986fd29aSsetje off += nret; 3972986fd29aSsetje ret += nret; 3973986fd29aSsetje if (nret < file->_bsize) 3974986fd29aSsetje break; 3975986fd29aSsetje } 3976986fd29aSsetje } else 3977986fd29aSsetje ret = kobj_read(file->_fd, buf, size, off); 3978986fd29aSsetje return (ret); 3979986fd29aSsetje } 3980986fd29aSsetje 3981986fd29aSsetje static int 3982986fd29aSsetje kobj_uncomp_blk(struct _buf *file, char *buf, uint_t off) 3983986fd29aSsetje { 3984986fd29aSsetje struct comphdr *hdr = kobj_comphdr(file); 3985986fd29aSsetje ulong_t dlen, slen; 3986986fd29aSsetje caddr_t src; 3987986fd29aSsetje int i; 3988986fd29aSsetje 3989986fd29aSsetje dlen = file->_bsize; 3990986fd29aSsetje i = off / file->_bsize; 3991986fd29aSsetje src = file->_dbuf + hdr->ch_blkmap[i]; 3992986fd29aSsetje if (i == hdr->ch_fsize / file->_bsize) 399379755401Ssetje slen = file->_dsize - hdr->ch_blkmap[i]; 3994986fd29aSsetje else 3995986fd29aSsetje slen = hdr->ch_blkmap[i + 1] - hdr->ch_blkmap[i]; 3996986fd29aSsetje if (z_uncompress(buf, &dlen, src, slen) != Z_OK) 3997986fd29aSsetje return (-1); 3998986fd29aSsetje return (dlen); 3999986fd29aSsetje } 4000986fd29aSsetje 40017c478bd9Sstevel@tonic-gate int 40027c478bd9Sstevel@tonic-gate kobj_filbuf(struct _buf *f) 40037c478bd9Sstevel@tonic-gate { 4004986fd29aSsetje if (kobj_read_file(f, NULL, f->_bsize, f->_off + f->_size) > 0) 40057c478bd9Sstevel@tonic-gate return (kobj_getc(f)); 40067c478bd9Sstevel@tonic-gate return (-1); 40077c478bd9Sstevel@tonic-gate } 40087c478bd9Sstevel@tonic-gate 40097c478bd9Sstevel@tonic-gate void 40107c478bd9Sstevel@tonic-gate kobj_free(void *address, size_t size) 40117c478bd9Sstevel@tonic-gate { 40127c478bd9Sstevel@tonic-gate if (standalone) 40137c478bd9Sstevel@tonic-gate return; 40147c478bd9Sstevel@tonic-gate 40157c478bd9Sstevel@tonic-gate kmem_free(address, size); 40167c478bd9Sstevel@tonic-gate kobj_stat.nfree_calls++; 40177c478bd9Sstevel@tonic-gate kobj_stat.nfree += size; 40187c478bd9Sstevel@tonic-gate } 40197c478bd9Sstevel@tonic-gate 40207c478bd9Sstevel@tonic-gate void * 40217c478bd9Sstevel@tonic-gate kobj_zalloc(size_t size, int flag) 40227c478bd9Sstevel@tonic-gate { 40237c478bd9Sstevel@tonic-gate void *v; 40247c478bd9Sstevel@tonic-gate 40257c478bd9Sstevel@tonic-gate if ((v = kobj_alloc(size, flag)) != 0) { 40267c478bd9Sstevel@tonic-gate bzero(v, size); 40277c478bd9Sstevel@tonic-gate } 40287c478bd9Sstevel@tonic-gate 40297c478bd9Sstevel@tonic-gate return (v); 40307c478bd9Sstevel@tonic-gate } 40317c478bd9Sstevel@tonic-gate 40327c478bd9Sstevel@tonic-gate void * 40337c478bd9Sstevel@tonic-gate kobj_alloc(size_t size, int flag) 40347c478bd9Sstevel@tonic-gate { 40357c478bd9Sstevel@tonic-gate /* 40367c478bd9Sstevel@tonic-gate * If we are running standalone in the 40377c478bd9Sstevel@tonic-gate * linker, we ask boot for memory. 40387c478bd9Sstevel@tonic-gate * Either it's temporary memory that we lose 40397c478bd9Sstevel@tonic-gate * once boot is mapped out or we allocate it 40407c478bd9Sstevel@tonic-gate * permanently using the dynamic data segment. 40417c478bd9Sstevel@tonic-gate */ 40427c478bd9Sstevel@tonic-gate if (standalone) { 4043986fd29aSsetje #if defined(_OBP) 4044986fd29aSsetje if (flag & (KM_TMP | KM_SCRATCH)) 4045986fd29aSsetje return (bop_temp_alloc(size, MINALIGN)); 4046986fd29aSsetje #else 40477c478bd9Sstevel@tonic-gate if (flag & (KM_TMP | KM_SCRATCH)) 40487c478bd9Sstevel@tonic-gate return (BOP_ALLOC(ops, 0, size, MINALIGN)); 40497c478bd9Sstevel@tonic-gate #endif 40507c478bd9Sstevel@tonic-gate return (kobj_segbrk(&_edata, size, MINALIGN, 0)); 40517c478bd9Sstevel@tonic-gate } 40527c478bd9Sstevel@tonic-gate 40537c478bd9Sstevel@tonic-gate kobj_stat.nalloc_calls++; 40547c478bd9Sstevel@tonic-gate kobj_stat.nalloc += size; 40557c478bd9Sstevel@tonic-gate 40567c478bd9Sstevel@tonic-gate return (kmem_alloc(size, (flag & KM_NOWAIT) ? KM_NOSLEEP : KM_SLEEP)); 40577c478bd9Sstevel@tonic-gate } 40587c478bd9Sstevel@tonic-gate 40597c478bd9Sstevel@tonic-gate /* 40607c478bd9Sstevel@tonic-gate * Allow the "mod" system to sync up with the work 40617c478bd9Sstevel@tonic-gate * already done by kobj during the initial loading 40627c478bd9Sstevel@tonic-gate * of the kernel. This also gives us a chance 40637c478bd9Sstevel@tonic-gate * to reallocate memory that belongs to boot. 40647c478bd9Sstevel@tonic-gate */ 40657c478bd9Sstevel@tonic-gate void 40667c478bd9Sstevel@tonic-gate kobj_sync(void) 40677c478bd9Sstevel@tonic-gate { 40687c478bd9Sstevel@tonic-gate struct modctl_list *lp, **lpp; 40697c478bd9Sstevel@tonic-gate 40707c478bd9Sstevel@tonic-gate /* 4071ae115bc7Smrj * The module path can be set in /etc/system via 'moddir' commands 40727c478bd9Sstevel@tonic-gate */ 40737c478bd9Sstevel@tonic-gate if (default_path != NULL) 4074ae115bc7Smrj kobj_module_path = default_path; 40757c478bd9Sstevel@tonic-gate else 4076ae115bc7Smrj default_path = kobj_module_path; 40777c478bd9Sstevel@tonic-gate 40787c478bd9Sstevel@tonic-gate ksyms_arena = vmem_create("ksyms", NULL, 0, sizeof (uint64_t), 40797c478bd9Sstevel@tonic-gate segkmem_alloc, segkmem_free, heap_arena, 0, VM_SLEEP); 40807c478bd9Sstevel@tonic-gate 40817c478bd9Sstevel@tonic-gate ctf_arena = vmem_create("ctf", NULL, 0, sizeof (uint_t), 40827c478bd9Sstevel@tonic-gate segkmem_alloc, segkmem_free, heap_arena, 0, VM_SLEEP); 40837c478bd9Sstevel@tonic-gate 40847c478bd9Sstevel@tonic-gate /* 40857c478bd9Sstevel@tonic-gate * Move symbol tables from boot memory to ksyms_arena. 40867c478bd9Sstevel@tonic-gate */ 40877c478bd9Sstevel@tonic-gate for (lpp = kobj_linkmaps; *lpp != NULL; lpp++) { 40887c478bd9Sstevel@tonic-gate for (lp = *lpp; lp != NULL; lp = lp->modl_next) 40897c478bd9Sstevel@tonic-gate kobj_export_module(mod(lp)); 40907c478bd9Sstevel@tonic-gate } 40917c478bd9Sstevel@tonic-gate } 40927c478bd9Sstevel@tonic-gate 40937c478bd9Sstevel@tonic-gate caddr_t 40947c478bd9Sstevel@tonic-gate kobj_segbrk(caddr_t *spp, size_t size, size_t align, caddr_t limit) 40957c478bd9Sstevel@tonic-gate { 40967c478bd9Sstevel@tonic-gate uintptr_t va, pva; 40977c478bd9Sstevel@tonic-gate size_t alloc_pgsz = kobj_mmu_pagesize; 40987c478bd9Sstevel@tonic-gate size_t alloc_align = BO_NO_ALIGN; 40997c478bd9Sstevel@tonic-gate size_t alloc_size; 41007c478bd9Sstevel@tonic-gate 41017c478bd9Sstevel@tonic-gate /* 41027c478bd9Sstevel@tonic-gate * If we are using "large" mappings for the kernel, 41037c478bd9Sstevel@tonic-gate * request aligned memory from boot using the 41047c478bd9Sstevel@tonic-gate * "large" pagesize. 41057c478bd9Sstevel@tonic-gate */ 41067c478bd9Sstevel@tonic-gate if (lg_pagesize) { 41077c478bd9Sstevel@tonic-gate alloc_align = lg_pagesize; 41087c478bd9Sstevel@tonic-gate alloc_pgsz = lg_pagesize; 41097c478bd9Sstevel@tonic-gate } 41101ee144f5Sjg 41111ee144f5Sjg #if defined(__sparc) 41121ee144f5Sjg /* account for redzone */ 41131ee144f5Sjg if (limit) 41141ee144f5Sjg limit -= alloc_pgsz; 41151ee144f5Sjg #endif /* __sparc */ 41161ee144f5Sjg 41177c478bd9Sstevel@tonic-gate va = ALIGN((uintptr_t)*spp, align); 41187c478bd9Sstevel@tonic-gate pva = P2ROUNDUP((uintptr_t)*spp, alloc_pgsz); 41197c478bd9Sstevel@tonic-gate /* 41207c478bd9Sstevel@tonic-gate * Need more pages? 41217c478bd9Sstevel@tonic-gate */ 41227c478bd9Sstevel@tonic-gate if (va + size > pva) { 4123ae115bc7Smrj uintptr_t npva; 4124ae115bc7Smrj 41257c478bd9Sstevel@tonic-gate alloc_size = P2ROUNDUP(size - (pva - va), alloc_pgsz); 41267c478bd9Sstevel@tonic-gate /* 41277c478bd9Sstevel@tonic-gate * Check for overlapping segments. 41287c478bd9Sstevel@tonic-gate */ 4129ae115bc7Smrj if (limit && limit <= *spp + alloc_size) { 41307c478bd9Sstevel@tonic-gate return ((caddr_t)0); 4131ae115bc7Smrj } 41327c478bd9Sstevel@tonic-gate 4133ae115bc7Smrj npva = (uintptr_t)BOP_ALLOC(ops, (caddr_t)pva, 41347c478bd9Sstevel@tonic-gate alloc_size, alloc_align); 4135ae115bc7Smrj 4136ae115bc7Smrj if (npva == NULL) { 4137ae115bc7Smrj _kobj_printf(ops, "BOP_ALLOC failed, 0x%lx bytes", 41387c478bd9Sstevel@tonic-gate alloc_size); 4139ae115bc7Smrj _kobj_printf(ops, " aligned %lx", alloc_align); 41407c478bd9Sstevel@tonic-gate _kobj_printf(ops, " at 0x%lx\n", pva); 4141ae115bc7Smrj return (NULL); 41427c478bd9Sstevel@tonic-gate } 41437c478bd9Sstevel@tonic-gate } 41447c478bd9Sstevel@tonic-gate *spp = (caddr_t)(va + size); 41457c478bd9Sstevel@tonic-gate 41467c478bd9Sstevel@tonic-gate return ((caddr_t)va); 41477c478bd9Sstevel@tonic-gate } 41487c478bd9Sstevel@tonic-gate 41497c478bd9Sstevel@tonic-gate /* 41507c478bd9Sstevel@tonic-gate * Calculate the number of output hash buckets. 41517c478bd9Sstevel@tonic-gate * We use the next prime larger than n / 4, 41527c478bd9Sstevel@tonic-gate * so the average hash chain is about 4 entries. 41537c478bd9Sstevel@tonic-gate * More buckets would just be a waste of memory. 41547c478bd9Sstevel@tonic-gate */ 41557c478bd9Sstevel@tonic-gate uint_t 41567c478bd9Sstevel@tonic-gate kobj_gethashsize(uint_t n) 41577c478bd9Sstevel@tonic-gate { 41587c478bd9Sstevel@tonic-gate int f; 41597c478bd9Sstevel@tonic-gate int hsize = MAX(n / 4, 2); 41607c478bd9Sstevel@tonic-gate 41617c478bd9Sstevel@tonic-gate for (f = 2; f * f <= hsize; f++) 41627c478bd9Sstevel@tonic-gate if (hsize % f == 0) 41637c478bd9Sstevel@tonic-gate hsize += f = 1; 41647c478bd9Sstevel@tonic-gate 41657c478bd9Sstevel@tonic-gate return (hsize); 4166b1b8ab34Slling } 4167b1b8ab34Slling 4168b1b8ab34Slling /* 4169b1b8ab34Slling * Get the file size. 4170b1b8ab34Slling * 4171b1b8ab34Slling * Before root is mounted, files are compressed in the boot_archive ramdisk 4172b1b8ab34Slling * (in the memory). kobj_fstat would return the compressed file size. 4173b1b8ab34Slling * In order to get the uncompressed file size, read the file to the end and 4174b1b8ab34Slling * count its size. 4175b1b8ab34Slling */ 4176b1b8ab34Slling int 4177b1b8ab34Slling kobj_get_filesize(struct _buf *file, uint64_t *size) 4178b1b8ab34Slling { 41791d7f3fadSKrishnendu Sadhukhan - Sun Microsystems int err = 0; 41801d7f3fadSKrishnendu Sadhukhan - Sun Microsystems ssize_t resid; 41811d7f3fadSKrishnendu Sadhukhan - Sun Microsystems uint32_t buf; 41821d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 4183b1b8ab34Slling if (_modrootloaded) { 4184b1b8ab34Slling struct bootstat bst; 4185b1b8ab34Slling 4186b1b8ab34Slling if (kobj_fstat(file->_fd, &bst) != 0) 4187b1b8ab34Slling return (EIO); 4188b1b8ab34Slling *size = bst.st_size; 41891d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 4190215280f2SKrishnendu Sadhukhan - Sun Microsystems if (file->_iscmp == CH_MAGIC_GZIP) { 41911d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* 41921d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * Read the last 4 bytes of the compressed (gzip) 41931d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * image to get the size of its uncompressed 41941d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * version. 41951d7f3fadSKrishnendu Sadhukhan - Sun Microsystems */ 41961d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if ((err = vn_rdwr(UIO_READ, (struct vnode *)file->_fd, 41971d7f3fadSKrishnendu Sadhukhan - Sun Microsystems (char *)(&buf), 4, (offset_t)(*size - 4), 41981d7f3fadSKrishnendu Sadhukhan - Sun Microsystems UIO_SYSSPACE, 0, (rlim64_t)0, CRED(), &resid)) 41991d7f3fadSKrishnendu Sadhukhan - Sun Microsystems != 0) { 42001d7f3fadSKrishnendu Sadhukhan - Sun Microsystems _kobj_printf(ops, "kobj_get_filesize: " 42011d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "vn_rdwr() failed with error 0x%x\n", err); 42021d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (-1); 42031d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 42041d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 42051d7f3fadSKrishnendu Sadhukhan - Sun Microsystems *size = (uint64_t)buf; 42061d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 4207b1b8ab34Slling } else { 4208986fd29aSsetje 4209986fd29aSsetje #if defined(_OBP) 4210986fd29aSsetje struct bootstat bsb; 4211986fd29aSsetje 4212986fd29aSsetje if (file->_iscmp) { 4213986fd29aSsetje struct comphdr *hdr = kobj_comphdr(file); 4214986fd29aSsetje 4215986fd29aSsetje *size = hdr->ch_fsize; 4216986fd29aSsetje } else if (kobj_boot_fstat(file->_fd, &bsb) != 0) 4217986fd29aSsetje return (EIO); 4218986fd29aSsetje else 4219986fd29aSsetje *size = bsb.st_size; 4220986fd29aSsetje #else 4221b1b8ab34Slling char *buf; 4222b1b8ab34Slling int count; 4223b1b8ab34Slling uint64_t offset = 0; 4224b1b8ab34Slling 4225b1b8ab34Slling buf = kmem_alloc(MAXBSIZE, KM_SLEEP); 4226b1b8ab34Slling do { 4227b1b8ab34Slling count = kobj_read_file(file, buf, MAXBSIZE, offset); 4228b1b8ab34Slling if (count < 0) { 4229b1b8ab34Slling kmem_free(buf, MAXBSIZE); 4230b1b8ab34Slling return (EIO); 4231b1b8ab34Slling } 4232b1b8ab34Slling offset += count; 4233b1b8ab34Slling } while (count == MAXBSIZE); 4234b1b8ab34Slling kmem_free(buf, MAXBSIZE); 4235b1b8ab34Slling 4236b1b8ab34Slling *size = offset; 4237986fd29aSsetje #endif 4238b1b8ab34Slling } 4239b1b8ab34Slling 4240b1b8ab34Slling return (0); 42417c478bd9Sstevel@tonic-gate } 42427c478bd9Sstevel@tonic-gate 42437c478bd9Sstevel@tonic-gate static char * 42447c478bd9Sstevel@tonic-gate basename(char *s) 42457c478bd9Sstevel@tonic-gate { 42467c478bd9Sstevel@tonic-gate char *p, *q; 42477c478bd9Sstevel@tonic-gate 42487c478bd9Sstevel@tonic-gate q = NULL; 42497c478bd9Sstevel@tonic-gate p = s; 42507c478bd9Sstevel@tonic-gate do { 42517c478bd9Sstevel@tonic-gate if (*p == '/') 42527c478bd9Sstevel@tonic-gate q = p; 42537c478bd9Sstevel@tonic-gate } while (*p++); 42547c478bd9Sstevel@tonic-gate return (q ? q + 1 : s); 42557c478bd9Sstevel@tonic-gate } 42567c478bd9Sstevel@tonic-gate 42577c478bd9Sstevel@tonic-gate void 42587c478bd9Sstevel@tonic-gate kobj_stat_get(kobj_stat_t *kp) 42597c478bd9Sstevel@tonic-gate { 42607c478bd9Sstevel@tonic-gate *kp = kobj_stat; 42617c478bd9Sstevel@tonic-gate } 42627c478bd9Sstevel@tonic-gate 42637c478bd9Sstevel@tonic-gate int 42647c478bd9Sstevel@tonic-gate kobj_getpagesize() 42657c478bd9Sstevel@tonic-gate { 42667c478bd9Sstevel@tonic-gate return (lg_pagesize); 42677c478bd9Sstevel@tonic-gate } 42687c478bd9Sstevel@tonic-gate 42697c478bd9Sstevel@tonic-gate void 42707c478bd9Sstevel@tonic-gate kobj_textwin_alloc(struct module *mp) 42717c478bd9Sstevel@tonic-gate { 42727c478bd9Sstevel@tonic-gate ASSERT(MUTEX_HELD(&mod_lock)); 42737c478bd9Sstevel@tonic-gate 42747c478bd9Sstevel@tonic-gate if (mp->textwin != NULL) 42757c478bd9Sstevel@tonic-gate return; 42767c478bd9Sstevel@tonic-gate 42777c478bd9Sstevel@tonic-gate /* 42787c478bd9Sstevel@tonic-gate * If the text is not contained in the heap, then it is not contained 42797c478bd9Sstevel@tonic-gate * by a writable mapping. (Specifically, it's on the nucleus page.) 42807c478bd9Sstevel@tonic-gate * We allocate a read/write mapping for this module's text to allow 42817c478bd9Sstevel@tonic-gate * the text to be patched without calling hot_patch_kernel_text() 42827c478bd9Sstevel@tonic-gate * (which is quite slow). 42837c478bd9Sstevel@tonic-gate */ 42847c478bd9Sstevel@tonic-gate if (!vmem_contains(heaptext_arena, mp->text, mp->text_size)) { 42857c478bd9Sstevel@tonic-gate uintptr_t text = (uintptr_t)mp->text; 42867c478bd9Sstevel@tonic-gate uintptr_t size = (uintptr_t)mp->text_size; 42877c478bd9Sstevel@tonic-gate uintptr_t i; 42887c478bd9Sstevel@tonic-gate caddr_t va; 42897c478bd9Sstevel@tonic-gate size_t sz = ((text + size + PAGESIZE - 1) & PAGEMASK) - 42907c478bd9Sstevel@tonic-gate (text & PAGEMASK); 42917c478bd9Sstevel@tonic-gate 42927c478bd9Sstevel@tonic-gate va = mp->textwin_base = vmem_alloc(heap_arena, sz, VM_SLEEP); 42937c478bd9Sstevel@tonic-gate 42947c478bd9Sstevel@tonic-gate for (i = text & PAGEMASK; i < text + size; i += PAGESIZE) { 42957c478bd9Sstevel@tonic-gate hat_devload(kas.a_hat, va, PAGESIZE, 42967c478bd9Sstevel@tonic-gate hat_getpfnum(kas.a_hat, (caddr_t)i), 42977c478bd9Sstevel@tonic-gate PROT_READ | PROT_WRITE, 42987c478bd9Sstevel@tonic-gate HAT_LOAD_LOCK | HAT_LOAD_NOCONSIST); 42997c478bd9Sstevel@tonic-gate va += PAGESIZE; 43007c478bd9Sstevel@tonic-gate } 43017c478bd9Sstevel@tonic-gate 43027c478bd9Sstevel@tonic-gate mp->textwin = mp->textwin_base + (text & PAGEOFFSET); 43037c478bd9Sstevel@tonic-gate } else { 43047c478bd9Sstevel@tonic-gate mp->textwin = mp->text; 43057c478bd9Sstevel@tonic-gate } 43067c478bd9Sstevel@tonic-gate } 43077c478bd9Sstevel@tonic-gate 43087c478bd9Sstevel@tonic-gate void 43097c478bd9Sstevel@tonic-gate kobj_textwin_free(struct module *mp) 43107c478bd9Sstevel@tonic-gate { 43117c478bd9Sstevel@tonic-gate uintptr_t text = (uintptr_t)mp->text; 43127c478bd9Sstevel@tonic-gate uintptr_t tsize = (uintptr_t)mp->text_size; 43137c478bd9Sstevel@tonic-gate size_t size = (((text + tsize + PAGESIZE - 1) & PAGEMASK) - 43147c478bd9Sstevel@tonic-gate (text & PAGEMASK)); 43157c478bd9Sstevel@tonic-gate 43167c478bd9Sstevel@tonic-gate mp->textwin = NULL; 43177c478bd9Sstevel@tonic-gate 43187c478bd9Sstevel@tonic-gate if (mp->textwin_base == NULL) 43197c478bd9Sstevel@tonic-gate return; 43207c478bd9Sstevel@tonic-gate 43217c478bd9Sstevel@tonic-gate hat_unload(kas.a_hat, mp->textwin_base, size, HAT_UNLOAD_UNLOCK); 43227c478bd9Sstevel@tonic-gate vmem_free(heap_arena, mp->textwin_base, size); 43237c478bd9Sstevel@tonic-gate mp->textwin_base = NULL; 43247c478bd9Sstevel@tonic-gate } 43257c478bd9Sstevel@tonic-gate 43267c478bd9Sstevel@tonic-gate static char * 43277c478bd9Sstevel@tonic-gate find_libmacro(char *name) 43287c478bd9Sstevel@tonic-gate { 43297c478bd9Sstevel@tonic-gate int lmi; 43307c478bd9Sstevel@tonic-gate 43317c478bd9Sstevel@tonic-gate for (lmi = 0; lmi < NLIBMACROS; lmi++) { 43327c478bd9Sstevel@tonic-gate if (strcmp(name, libmacros[lmi].lmi_macroname) == 0) 43337c478bd9Sstevel@tonic-gate return (libmacros[lmi].lmi_list); 43347c478bd9Sstevel@tonic-gate } 43357c478bd9Sstevel@tonic-gate return (NULL); 43367c478bd9Sstevel@tonic-gate } 43377c478bd9Sstevel@tonic-gate 43387c478bd9Sstevel@tonic-gate /* 43397c478bd9Sstevel@tonic-gate * Check for $MACRO in tail (string to expand) and expand it in path at pathend 43407c478bd9Sstevel@tonic-gate * returns path if successful, else NULL 43417c478bd9Sstevel@tonic-gate * Support multiple $MACROs expansion and the first valid path will be returned 43427c478bd9Sstevel@tonic-gate * Caller's responsibility to provide enough space in path to expand 43437c478bd9Sstevel@tonic-gate */ 43447c478bd9Sstevel@tonic-gate char * 43457c478bd9Sstevel@tonic-gate expand_libmacro(char *tail, char *path, char *pathend) 43467c478bd9Sstevel@tonic-gate { 43477c478bd9Sstevel@tonic-gate char c, *p, *p1, *p2, *path2, *endp; 43487c478bd9Sstevel@tonic-gate int diff, lmi, macrolen, valid_macro, more_macro; 43497c478bd9Sstevel@tonic-gate struct _buf *file; 43507c478bd9Sstevel@tonic-gate 43517c478bd9Sstevel@tonic-gate /* 43527c478bd9Sstevel@tonic-gate * check for $MACROS between nulls or slashes 43537c478bd9Sstevel@tonic-gate */ 43547c478bd9Sstevel@tonic-gate p = strchr(tail, '$'); 43557c478bd9Sstevel@tonic-gate if (p == NULL) 43567c478bd9Sstevel@tonic-gate return (NULL); 43577c478bd9Sstevel@tonic-gate for (lmi = 0; lmi < NLIBMACROS; lmi++) { 43587c478bd9Sstevel@tonic-gate macrolen = libmacros[lmi].lmi_macrolen; 43597c478bd9Sstevel@tonic-gate if (strncmp(p + 1, libmacros[lmi].lmi_macroname, macrolen) == 0) 43607c478bd9Sstevel@tonic-gate break; 43617c478bd9Sstevel@tonic-gate } 43627c478bd9Sstevel@tonic-gate 43637c478bd9Sstevel@tonic-gate valid_macro = 0; 43647c478bd9Sstevel@tonic-gate if (lmi < NLIBMACROS) { 43657c478bd9Sstevel@tonic-gate /* 43667c478bd9Sstevel@tonic-gate * The following checks are used to restrict expansion of 43677c478bd9Sstevel@tonic-gate * macros to those that form a full directory/file name 43687c478bd9Sstevel@tonic-gate * and to keep the behavior same as before. If this 43697c478bd9Sstevel@tonic-gate * restriction is removed or no longer valid in the future, 43707c478bd9Sstevel@tonic-gate * the checks below can be deleted. 43717c478bd9Sstevel@tonic-gate */ 43727c478bd9Sstevel@tonic-gate if ((p == tail) || (*(p - 1) == '/')) { 43737c478bd9Sstevel@tonic-gate c = *(p + macrolen + 1); 43747c478bd9Sstevel@tonic-gate if (c == '/' || c == '\0') 43757c478bd9Sstevel@tonic-gate valid_macro = 1; 43767c478bd9Sstevel@tonic-gate } 43777c478bd9Sstevel@tonic-gate } 43787c478bd9Sstevel@tonic-gate 43797c478bd9Sstevel@tonic-gate if (!valid_macro) { 43807c478bd9Sstevel@tonic-gate p2 = strchr(p, '/'); 43817c478bd9Sstevel@tonic-gate /* 43827c478bd9Sstevel@tonic-gate * if no more macro to expand, then just copy whatever left 43837c478bd9Sstevel@tonic-gate * and check whether it exists 43847c478bd9Sstevel@tonic-gate */ 43857c478bd9Sstevel@tonic-gate if (p2 == NULL || strchr(p2, '$') == NULL) { 43867c478bd9Sstevel@tonic-gate (void) strcpy(pathend, tail); 43877c478bd9Sstevel@tonic-gate if ((file = kobj_open_path(path, 1, 1)) != 43887c478bd9Sstevel@tonic-gate (struct _buf *)-1) { 43897c478bd9Sstevel@tonic-gate kobj_close_file(file); 43907c478bd9Sstevel@tonic-gate return (path); 43917c478bd9Sstevel@tonic-gate } else 43927c478bd9Sstevel@tonic-gate return (NULL); 43937c478bd9Sstevel@tonic-gate } else { 43947c478bd9Sstevel@tonic-gate /* 43957c478bd9Sstevel@tonic-gate * copy all chars before '/' and call expand_libmacro() 43967c478bd9Sstevel@tonic-gate * again 43977c478bd9Sstevel@tonic-gate */ 43987c478bd9Sstevel@tonic-gate diff = p2 - tail; 43997c478bd9Sstevel@tonic-gate bcopy(tail, pathend, diff); 44007c478bd9Sstevel@tonic-gate pathend += diff; 44017c478bd9Sstevel@tonic-gate *(pathend) = '\0'; 44027c478bd9Sstevel@tonic-gate return (expand_libmacro(p2, path, pathend)); 44037c478bd9Sstevel@tonic-gate } 44047c478bd9Sstevel@tonic-gate } 44057c478bd9Sstevel@tonic-gate 44067c478bd9Sstevel@tonic-gate more_macro = 0; 44077c478bd9Sstevel@tonic-gate if (c != '\0') { 44087c478bd9Sstevel@tonic-gate endp = p + macrolen + 1; 44097c478bd9Sstevel@tonic-gate if (strchr(endp, '$') != NULL) 44107c478bd9Sstevel@tonic-gate more_macro = 1; 44117c478bd9Sstevel@tonic-gate } else 44127c478bd9Sstevel@tonic-gate endp = NULL; 44137c478bd9Sstevel@tonic-gate 44147c478bd9Sstevel@tonic-gate /* 44157c478bd9Sstevel@tonic-gate * copy lmi_list and split it into components. 44167c478bd9Sstevel@tonic-gate * then put the part of tail before $MACRO into path 44177c478bd9Sstevel@tonic-gate * at pathend 44187c478bd9Sstevel@tonic-gate */ 44197c478bd9Sstevel@tonic-gate diff = p - tail; 44207c478bd9Sstevel@tonic-gate if (diff > 0) 44217c478bd9Sstevel@tonic-gate bcopy(tail, pathend, diff); 44227c478bd9Sstevel@tonic-gate path2 = pathend + diff; 44237c478bd9Sstevel@tonic-gate p1 = libmacros[lmi].lmi_list; 44247c478bd9Sstevel@tonic-gate while (p1 && (*p1 != '\0')) { 44257c478bd9Sstevel@tonic-gate p2 = strchr(p1, ':'); 44267c478bd9Sstevel@tonic-gate if (p2) { 44277c478bd9Sstevel@tonic-gate diff = p2 - p1; 44287c478bd9Sstevel@tonic-gate bcopy(p1, path2, diff); 44297c478bd9Sstevel@tonic-gate *(path2 + diff) = '\0'; 44307c478bd9Sstevel@tonic-gate } else { 44317c478bd9Sstevel@tonic-gate diff = strlen(p1); 44327c478bd9Sstevel@tonic-gate bcopy(p1, path2, diff + 1); 44337c478bd9Sstevel@tonic-gate } 44347c478bd9Sstevel@tonic-gate /* copy endp only if there isn't any more macro to expand */ 44357c478bd9Sstevel@tonic-gate if (!more_macro && (endp != NULL)) 44367c478bd9Sstevel@tonic-gate (void) strcat(path2, endp); 44377c478bd9Sstevel@tonic-gate file = kobj_open_path(path, 1, 1); 44387c478bd9Sstevel@tonic-gate if (file != (struct _buf *)-1) { 44397c478bd9Sstevel@tonic-gate kobj_close_file(file); 44407c478bd9Sstevel@tonic-gate /* 44417c478bd9Sstevel@tonic-gate * if more macros to expand then call expand_libmacro(), 44427c478bd9Sstevel@tonic-gate * else return path which has the whole path 44437c478bd9Sstevel@tonic-gate */ 44447c478bd9Sstevel@tonic-gate if (!more_macro || (expand_libmacro(endp, path, 44457c478bd9Sstevel@tonic-gate path2 + diff) != NULL)) { 44467c478bd9Sstevel@tonic-gate return (path); 44477c478bd9Sstevel@tonic-gate } 44487c478bd9Sstevel@tonic-gate } 44497c478bd9Sstevel@tonic-gate if (p2) 44507c478bd9Sstevel@tonic-gate p1 = ++p2; 44517c478bd9Sstevel@tonic-gate else 44527c478bd9Sstevel@tonic-gate return (NULL); 44537c478bd9Sstevel@tonic-gate } 44547c478bd9Sstevel@tonic-gate return (NULL); 44557c478bd9Sstevel@tonic-gate } 44567c478bd9Sstevel@tonic-gate 44577c478bd9Sstevel@tonic-gate static void 44587c478bd9Sstevel@tonic-gate tnf_add_notifyunload(kobj_notify_f *fp) 44597c478bd9Sstevel@tonic-gate { 44607c478bd9Sstevel@tonic-gate kobj_notify_list_t *entry; 44617c478bd9Sstevel@tonic-gate 44627c478bd9Sstevel@tonic-gate entry = kobj_alloc(sizeof (kobj_notify_list_t), KM_WAIT); 44637c478bd9Sstevel@tonic-gate entry->kn_type = KOBJ_NOTIFY_MODUNLOADING; 44647c478bd9Sstevel@tonic-gate entry->kn_func = fp; 44657c478bd9Sstevel@tonic-gate (void) kobj_notify_add(entry); 44667c478bd9Sstevel@tonic-gate } 44677c478bd9Sstevel@tonic-gate 44687c478bd9Sstevel@tonic-gate /* ARGSUSED */ 44697c478bd9Sstevel@tonic-gate static void 4470986fd29aSsetje tnf_unsplice_probes(uint_t what, struct modctl *mod) 44717c478bd9Sstevel@tonic-gate { 44727c478bd9Sstevel@tonic-gate tnf_probe_control_t **p; 44737c478bd9Sstevel@tonic-gate tnf_tag_data_t **q; 44747c478bd9Sstevel@tonic-gate struct module *mp = mod->mod_mp; 44757c478bd9Sstevel@tonic-gate 44767c478bd9Sstevel@tonic-gate if (!(mp->flags & KOBJ_TNF_PROBE)) 44777c478bd9Sstevel@tonic-gate return; 44787c478bd9Sstevel@tonic-gate 44797c478bd9Sstevel@tonic-gate for (p = &__tnf_probe_list_head; *p; ) 44807c478bd9Sstevel@tonic-gate if (kobj_addrcheck(mp, (char *)*p) == 0) 44817c478bd9Sstevel@tonic-gate *p = (*p)->next; 44827c478bd9Sstevel@tonic-gate else 44837c478bd9Sstevel@tonic-gate p = &(*p)->next; 44847c478bd9Sstevel@tonic-gate 44857c478bd9Sstevel@tonic-gate for (q = &__tnf_tag_list_head; *q; ) 44867c478bd9Sstevel@tonic-gate if (kobj_addrcheck(mp, (char *)*q) == 0) 44877c478bd9Sstevel@tonic-gate *q = (tnf_tag_data_t *)(*q)->tag_version; 44887c478bd9Sstevel@tonic-gate else 44897c478bd9Sstevel@tonic-gate q = (tnf_tag_data_t **)&(*q)->tag_version; 44907c478bd9Sstevel@tonic-gate 44917c478bd9Sstevel@tonic-gate tnf_changed_probe_list = 1; 44927c478bd9Sstevel@tonic-gate } 44937c478bd9Sstevel@tonic-gate 44947c478bd9Sstevel@tonic-gate int 44957c478bd9Sstevel@tonic-gate tnf_splice_probes(int boot_load, tnf_probe_control_t *plist, 44967c478bd9Sstevel@tonic-gate tnf_tag_data_t *tlist) 44977c478bd9Sstevel@tonic-gate { 44987c478bd9Sstevel@tonic-gate int result = 0; 44997c478bd9Sstevel@tonic-gate static int add_notify = 1; 45007c478bd9Sstevel@tonic-gate 45017c478bd9Sstevel@tonic-gate if (plist) { 45027c478bd9Sstevel@tonic-gate tnf_probe_control_t *pl; 45037c478bd9Sstevel@tonic-gate 45047c478bd9Sstevel@tonic-gate for (pl = plist; pl->next; ) 45057c478bd9Sstevel@tonic-gate pl = pl->next; 45067c478bd9Sstevel@tonic-gate 45077c478bd9Sstevel@tonic-gate if (!boot_load) 45087c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 45097c478bd9Sstevel@tonic-gate tnf_changed_probe_list = 1; 45107c478bd9Sstevel@tonic-gate pl->next = __tnf_probe_list_head; 45117c478bd9Sstevel@tonic-gate __tnf_probe_list_head = plist; 45127c478bd9Sstevel@tonic-gate if (!boot_load) 45137c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 45147c478bd9Sstevel@tonic-gate result = 1; 45157c478bd9Sstevel@tonic-gate } 45167c478bd9Sstevel@tonic-gate 45177c478bd9Sstevel@tonic-gate if (tlist) { 45187c478bd9Sstevel@tonic-gate tnf_tag_data_t *tl; 45197c478bd9Sstevel@tonic-gate 45207c478bd9Sstevel@tonic-gate for (tl = tlist; tl->tag_version; ) 45217c478bd9Sstevel@tonic-gate tl = (tnf_tag_data_t *)tl->tag_version; 45227c478bd9Sstevel@tonic-gate 45237c478bd9Sstevel@tonic-gate if (!boot_load) 45247c478bd9Sstevel@tonic-gate mutex_enter(&mod_lock); 45257c478bd9Sstevel@tonic-gate tl->tag_version = (tnf_tag_version_t *)__tnf_tag_list_head; 45267c478bd9Sstevel@tonic-gate __tnf_tag_list_head = tlist; 45277c478bd9Sstevel@tonic-gate if (!boot_load) 45287c478bd9Sstevel@tonic-gate mutex_exit(&mod_lock); 45297c478bd9Sstevel@tonic-gate result = 1; 45307c478bd9Sstevel@tonic-gate } 45317c478bd9Sstevel@tonic-gate if (!boot_load && result && add_notify) { 45327c478bd9Sstevel@tonic-gate tnf_add_notifyunload(tnf_unsplice_probes); 45337c478bd9Sstevel@tonic-gate add_notify = 0; 45347c478bd9Sstevel@tonic-gate } 45357c478bd9Sstevel@tonic-gate return (result); 45367c478bd9Sstevel@tonic-gate } 45377c478bd9Sstevel@tonic-gate 4538986fd29aSsetje char *kobj_file_buf; 4539986fd29aSsetje int kobj_file_bufsize; 4540986fd29aSsetje 45417c478bd9Sstevel@tonic-gate /* 45427c478bd9Sstevel@tonic-gate * This code is for the purpose of manually recording which files 45437c478bd9Sstevel@tonic-gate * needs to go into the boot archive on any given system. 45447c478bd9Sstevel@tonic-gate * 45457c478bd9Sstevel@tonic-gate * To enable the code, set kobj_file_bufsize in /etc/system 45467c478bd9Sstevel@tonic-gate * and reboot the system, then use mdb to look at kobj_file_buf. 45477c478bd9Sstevel@tonic-gate */ 45487c478bd9Sstevel@tonic-gate static void 45497c478bd9Sstevel@tonic-gate kobj_record_file(char *filename) 45507c478bd9Sstevel@tonic-gate { 45517c478bd9Sstevel@tonic-gate static char *buf; 45527c478bd9Sstevel@tonic-gate static int size = 0; 45537c478bd9Sstevel@tonic-gate int n; 45547c478bd9Sstevel@tonic-gate 45557c478bd9Sstevel@tonic-gate if (kobj_file_bufsize == 0) /* don't bother */ 45567c478bd9Sstevel@tonic-gate return; 45577c478bd9Sstevel@tonic-gate 45587c478bd9Sstevel@tonic-gate if (kobj_file_buf == NULL) { /* allocate buffer */ 45597c478bd9Sstevel@tonic-gate size = kobj_file_bufsize; 45607c478bd9Sstevel@tonic-gate buf = kobj_file_buf = kobj_alloc(size, KM_WAIT|KM_TMP); 45617c478bd9Sstevel@tonic-gate } 45627c478bd9Sstevel@tonic-gate 45637c478bd9Sstevel@tonic-gate n = snprintf(buf, size, "%s\n", filename); 45647c478bd9Sstevel@tonic-gate if (n > size) 45657c478bd9Sstevel@tonic-gate n = size; 45667c478bd9Sstevel@tonic-gate size -= n; 45677c478bd9Sstevel@tonic-gate buf += n; 45687c478bd9Sstevel@tonic-gate } 45697c478bd9Sstevel@tonic-gate 4570ea8dc4b6Seschrock static int 4571ea8dc4b6Seschrock kobj_boot_fstat(int fd, struct bootstat *stp) 4572ea8dc4b6Seschrock { 4573986fd29aSsetje #if defined(_OBP) 4574ea8dc4b6Seschrock if (!standalone && _ioquiesced) 4575ea8dc4b6Seschrock return (-1); 4576ea8dc4b6Seschrock return (BOP_FSTAT(ops, fd, stp)); 4577ea8dc4b6Seschrock #else 4578ea8dc4b6Seschrock return (BRD_FSTAT(bfs_ops, fd, stp)); 4579ea8dc4b6Seschrock #endif 4580ea8dc4b6Seschrock } 4581ea8dc4b6Seschrock 45827c478bd9Sstevel@tonic-gate static int 45837c478bd9Sstevel@tonic-gate kobj_boot_open(char *filename, int flags) 45847c478bd9Sstevel@tonic-gate { 4585986fd29aSsetje #if defined(_OBP) 4586986fd29aSsetje 45877c478bd9Sstevel@tonic-gate /* 45887c478bd9Sstevel@tonic-gate * If io via bootops is quiesced, it means boot is no longer 45897c478bd9Sstevel@tonic-gate * available to us. We make it look as if we can't open the 45907c478bd9Sstevel@tonic-gate * named file - which is reasonably accurate. 45917c478bd9Sstevel@tonic-gate */ 45927c478bd9Sstevel@tonic-gate if (!standalone && _ioquiesced) 45937c478bd9Sstevel@tonic-gate return (-1); 45947c478bd9Sstevel@tonic-gate 4595986fd29aSsetje kobj_record_file(filename); 4596986fd29aSsetje return (BOP_OPEN(filename, flags)); 45977c478bd9Sstevel@tonic-gate #else /* x86 */ 45987c478bd9Sstevel@tonic-gate kobj_record_file(filename); 45997c478bd9Sstevel@tonic-gate return (BRD_OPEN(bfs_ops, filename, flags)); 46007c478bd9Sstevel@tonic-gate #endif 46017c478bd9Sstevel@tonic-gate } 46027c478bd9Sstevel@tonic-gate 46037c478bd9Sstevel@tonic-gate static int 46047c478bd9Sstevel@tonic-gate kobj_boot_close(int fd) 46057c478bd9Sstevel@tonic-gate { 4606986fd29aSsetje #if defined(_OBP) 46077c478bd9Sstevel@tonic-gate if (!standalone && _ioquiesced) 46087c478bd9Sstevel@tonic-gate return (-1); 46097c478bd9Sstevel@tonic-gate 4610986fd29aSsetje return (BOP_CLOSE(fd)); 46117c478bd9Sstevel@tonic-gate #else /* x86 */ 46127c478bd9Sstevel@tonic-gate return (BRD_CLOSE(bfs_ops, fd)); 46137c478bd9Sstevel@tonic-gate #endif 46147c478bd9Sstevel@tonic-gate } 46157c478bd9Sstevel@tonic-gate 46167c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 46177c478bd9Sstevel@tonic-gate static int 46187c478bd9Sstevel@tonic-gate kobj_boot_seek(int fd, off_t hi, off_t lo) 46197c478bd9Sstevel@tonic-gate { 4620986fd29aSsetje #if defined(_OBP) 4621986fd29aSsetje return (BOP_SEEK(fd, lo) == -1 ? -1 : 0); 46227c478bd9Sstevel@tonic-gate #else 46237c478bd9Sstevel@tonic-gate return (BRD_SEEK(bfs_ops, fd, lo, SEEK_SET)); 46247c478bd9Sstevel@tonic-gate #endif 46257c478bd9Sstevel@tonic-gate } 46267c478bd9Sstevel@tonic-gate 46277c478bd9Sstevel@tonic-gate static int 46287c478bd9Sstevel@tonic-gate kobj_boot_read(int fd, caddr_t buf, size_t size) 46297c478bd9Sstevel@tonic-gate { 4630986fd29aSsetje #if defined(_OBP) 4631986fd29aSsetje return (BOP_READ(fd, buf, size)); 46327c478bd9Sstevel@tonic-gate #else 46337c478bd9Sstevel@tonic-gate return (BRD_READ(bfs_ops, fd, buf, size)); 46347c478bd9Sstevel@tonic-gate #endif 46357c478bd9Sstevel@tonic-gate } 4636986fd29aSsetje 4637986fd29aSsetje static int 4638986fd29aSsetje kobj_boot_compinfo(int fd, struct compinfo *cb) 4639986fd29aSsetje { 4640986fd29aSsetje return (boot_compinfo(fd, cb)); 4641986fd29aSsetje } 46421d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 46431d7f3fadSKrishnendu Sadhukhan - Sun Microsystems /* 46441d7f3fadSKrishnendu Sadhukhan - Sun Microsystems * Check if the file is compressed (for now we handle only gzip). 4645215280f2SKrishnendu Sadhukhan - Sun Microsystems * It returns CH_MAGIC_GZIP if the file is compressed and 0 otherwise. 46461d7f3fadSKrishnendu Sadhukhan - Sun Microsystems */ 46471d7f3fadSKrishnendu Sadhukhan - Sun Microsystems static int 46481d7f3fadSKrishnendu Sadhukhan - Sun Microsystems kobj_is_compressed(intptr_t fd) 46491d7f3fadSKrishnendu Sadhukhan - Sun Microsystems { 46501d7f3fadSKrishnendu Sadhukhan - Sun Microsystems struct vnode *vp = (struct vnode *)fd; 46511d7f3fadSKrishnendu Sadhukhan - Sun Microsystems ssize_t resid; 46521d7f3fadSKrishnendu Sadhukhan - Sun Microsystems uint16_t magic_buf; 46531d7f3fadSKrishnendu Sadhukhan - Sun Microsystems int err = 0; 46541d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 46551d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if ((err = vn_rdwr(UIO_READ, vp, (caddr_t)((intptr_t)&magic_buf), 46561d7f3fadSKrishnendu Sadhukhan - Sun Microsystems sizeof (magic_buf), (offset_t)(0), 46571d7f3fadSKrishnendu Sadhukhan - Sun Microsystems UIO_SYSSPACE, 0, (rlim64_t)0, CRED(), &resid)) != 0) { 46581d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 46591d7f3fadSKrishnendu Sadhukhan - Sun Microsystems _kobj_printf(ops, "kobj_is_compressed: vn_rdwr() failed, " 46601d7f3fadSKrishnendu Sadhukhan - Sun Microsystems "error code 0x%x\n", err); 46611d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (0); 46621d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 46631d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 46641d7f3fadSKrishnendu Sadhukhan - Sun Microsystems if (magic_buf == CH_MAGIC_GZIP) 4665215280f2SKrishnendu Sadhukhan - Sun Microsystems return (CH_MAGIC_GZIP); 46661d7f3fadSKrishnendu Sadhukhan - Sun Microsystems 46671d7f3fadSKrishnendu Sadhukhan - Sun Microsystems return (0); 46681d7f3fadSKrishnendu Sadhukhan - Sun Microsystems } 4669