ldso.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214
  1. /* Run an ELF binary on a linux system.
  2. Copyright (C) 1993-1996, Eric Youngdale.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  14. /* Program to load an ELF binary on a linux system, and run it.
  15. * References to symbols in sharable libraries can be resolved by
  16. * an ELF sharable library. */
  17. /* Disclaimer: I have never seen any AT&T source code for SVr4, nor have
  18. I ever taken any courses on internals. This program was developed using
  19. information available through the book "UNIX SYSTEM V RELEASE 4,
  20. Programmers guide: Ansi C and Programming Support Tools", which did
  21. a more than adequate job of explaining everything required to get this
  22. working. */
  23. /*
  24. * The main trick with this program is that initially, we ourselves are not
  25. * dynamicly linked. This means that we cannot access any global variables
  26. * since the GOT is initialized by the linker assuming a virtual address of 0,
  27. * and we cannot call any functions since the PLT is not initialized at all
  28. * (it will tend to want to call the dynamic linker
  29. *
  30. * There are further restrictions - we cannot use large switch statements,
  31. * since the compiler generates tables of addresses and jumps through them.
  32. * We can use inline functions, because these do not transfer control to
  33. * a new address, but they must be static so that they are not exported
  34. * from the modules. We cannot use normal syscall stubs, because these
  35. * all reference the errno global variable which is not yet initialized.
  36. * We can use all of the local stack variables that we want, since these
  37. * are all referenced to %ebp or %esp.
  38. *
  39. * Life is further complicated by the fact that initially we do not want
  40. * to do a complete dynamic linking. We want to allow the user to supply
  41. * new functions replacing some of the library versions, and until we have
  42. * the list of modules that we should search set up, we do not want to do
  43. * any of this. Thus I have chosen to only perform the relocations for
  44. * variables that start with "_dl_" since ANSI specifies that the user is
  45. * not supposed to redefine any of these variables.
  46. *
  47. * Fortunately, the linker itself leaves a few clues lying around, and
  48. * when the kernel starts the image, there are a few further clues.
  49. * First of all, there is information buried on the stack that the kernel
  50. * leaves, which includes information about the load address that the
  51. * program interpreter was loaded at, the number of sections, the address
  52. * the application was loaded at and so forth. Here this information
  53. * is stored in the array dl_info, and the indicies are taken from the
  54. * file /usr/include/sys/auxv.h on any SVr4 system.
  55. *
  56. * The linker itself leaves a pointer to the .dynamic section in the first
  57. * slot of the GOT, and as it turns out, %ebx points to ghe GOT when
  58. * you are using PIC code, so we just dereference this to get the address
  59. * of the dynamic sections.
  60. *
  61. * Typically you must load all text pages as writable so that dynamic linking
  62. * can succeed. The kernel under SVr4 loads these as R/O, so we must call
  63. * mprotect to change the protections. Once we are done, we should set these
  64. * back again, so the desired behavior is achieved. Under linux there is
  65. * currently no mprotect function in the distribution kernel (although
  66. * someone has alpha patches), so for now everything is loaded writable.
  67. *
  68. * We do not have access to malloc and friends at the initial stages of dynamic
  69. * linking, and it would be handy to have some scratchpad memory available for
  70. * use as we set things up. We mmap one page of scratch space, and have a
  71. * simple _dl_malloc that uses this memory. This is a good thing, since we do
  72. * not want to use the same memory pool as malloc anyway - esp if the user
  73. * redefines malloc to do something funky.
  74. *
  75. * Our first task is to perform a minimal linking so that we can call other
  76. * portions of the dynamic linker. Once we have done this, we then build
  77. * the list of modules that the application requires, using LD_LIBRARY_PATH
  78. * if this is not a suid program (/usr/lib otherwise). Once this is done,
  79. * we can do the dynamic linking as required (and we must omit the things
  80. * we did to get the dynamic linker up and running in the first place.
  81. * After we have done this, we just have a few housekeeping chores and we
  82. * can transfer control to the user's application.
  83. */
  84. #include <stdarg.h>
  85. #include "linuxelf.h"
  86. #include "ld_hash.h"
  87. #include "ld_syscall.h"
  88. #include "ld_string.h"
  89. #include "dlfcn.h"
  90. #include "../config.h"
  91. #define ALLOW_ZERO_PLTGOT
  92. /* Some arches may need to override this in boot1_arch.h */
  93. #define ELFMAGIC ELFMAG
  94. /* This is a poor man's malloc, used prior to resolving our internal poor man's malloc */
  95. #define DL_MALLOC(SIZE) ((void *) (malloc_buffer += SIZE, malloc_buffer - SIZE)) ; REALIGN();
  96. /*
  97. * Make sure that the malloc buffer is aligned on 4 byte boundary. For 64 bit
  98. * platforms we may need to increase this to 8, but this is good enough for
  99. * now. This is typically called after DL_MALLOC.
  100. */
  101. #define REALIGN() malloc_buffer = (char *) (((unsigned long) malloc_buffer + 3) & ~(3))
  102. static char *_dl_malloc_addr, *_dl_mmap_zero;
  103. char *_dl_library_path = 0; /* Where we look for libraries */
  104. char *_dl_preload = 0; /* Things to be loaded before the libs. */
  105. static char *_dl_not_lazy = 0;
  106. #ifdef DL_TRACE
  107. static char *_dl_trace_loaded_objects = 0;
  108. #endif
  109. static int (*_dl_elf_main) (int, char **, char **);
  110. static int (*_dl_elf_init) (void);
  111. void *(*_dl_malloc_function) (int size) = NULL;
  112. struct r_debug *_dl_debug_addr = NULL;
  113. unsigned long *_dl_brkp;
  114. unsigned long *_dl_envp;
  115. char *_dl_getenv(char *symbol, char **envp);
  116. void _dl_unsetenv(char *symbol, char **envp);
  117. int _dl_fixup(struct elf_resolve *tpnt);
  118. void _dl_debug_state(void);
  119. char *_dl_get_last_path_component(char *path);
  120. #include "boot1_arch.h"
  121. #include "ldso.h" /* Pull in the name of ld.so */
  122. /* When we enter this piece of code, the program stack looks like this:
  123. argc argument counter (integer)
  124. argv[0] program name (pointer)
  125. argv[1...N] program args (pointers)
  126. argv[argc-1] end of args (integer)
  127. NULL
  128. env[0...N] environment variables (pointers)
  129. NULL
  130. auxv_t[0...N] Auxiliary Vector Table elements (mixed types)
  131. */
  132. #ifdef DL_DEBUG
  133. /* Debugging is especially tricky on PowerPC, since string literals
  134. * require relocations. Thus, you can't use _dl_dprintf() for
  135. * anything until the bootstrap relocations are finished. */
  136. static inline void hexprint(unsigned long x)
  137. {
  138. int i;
  139. char c;
  140. for(i=0;i<8;i++){
  141. c=((x>>28)+'0');
  142. if(c>'9')c+='a'-'9'-1;
  143. _dl_write(1,&c,1);
  144. x<<=4;
  145. }
  146. c='\n';
  147. _dl_write(1,&c,1);
  148. }
  149. #endif
  150. DL_BOOT(unsigned long args)
  151. {
  152. unsigned int argc;
  153. char **argv, **envp;
  154. unsigned long load_addr;
  155. unsigned long *got;
  156. unsigned long *aux_dat;
  157. int goof = 0;
  158. elfhdr *header;
  159. struct elf_resolve *tpnt;
  160. struct dyn_elf *rpnt;
  161. struct elf_resolve *app_tpnt;
  162. unsigned long brk_addr;
  163. Elf32_auxv_t auxv_t[AT_EGID + 1];
  164. unsigned char *malloc_buffer, *mmap_zero;
  165. int (*_dl_atexit) (void *);
  166. unsigned long *lpnt;
  167. Elf32_Dyn *dpnt;
  168. unsigned long *hash_addr;
  169. struct r_debug *debug_addr;
  170. unsigned long *chains;
  171. int indx;
  172. int _dl_secure;
  173. int status;
  174. /* WARNING! -- we cannot make _any_ funtion calls until we have
  175. * taken care of fixing up our own relocations. Making static
  176. * lnline calls is ok, but _no_ function calls. Not yet
  177. * anyways. */
  178. /* First obtain the information on the stack that tells us more about
  179. what binary is loaded, where it is loaded, etc, etc */
  180. GET_ARGV(aux_dat,args);
  181. #if defined(__arm__)
  182. aux_dat+=1;
  183. #endif
  184. argc = *(aux_dat - 1);
  185. argv = (char **) aux_dat;
  186. aux_dat += argc; /* Skip over the argv pointers */
  187. aux_dat++; /* Skip over NULL at end of argv */
  188. envp = (char **) aux_dat;
  189. while (*aux_dat)
  190. aux_dat++; /* Skip over the envp pointers */
  191. aux_dat++; /* Skip over NULL at end of envp */
  192. /* Place -1 here as a checkpoint. We later check if it was changed
  193. * when we read in the auxv_t */
  194. auxv_t[AT_UID].a_type = -1;
  195. /* The junk on the stack immediately following the environment is
  196. * the Auxiliary Vector Table. Read out the elements of the auxv_t,
  197. * sort and store them in auxv_t for later use. */
  198. while (*aux_dat)
  199. {
  200. Elf32_auxv_t *auxv_entry = (Elf32_auxv_t*) aux_dat;
  201. if (auxv_entry->a_type <= AT_EGID) {
  202. _dl_memcpy(&(auxv_t[auxv_entry->a_type]),
  203. auxv_entry, sizeof(Elf32_auxv_t));
  204. }
  205. aux_dat += 2;
  206. }
  207. /* locate the ELF header. We need this done as soon as possible
  208. * (esp since SEND_STDERR() needs this on some platforms... */
  209. load_addr = auxv_t[AT_BASE].a_un.a_val;
  210. header = (elfhdr *) auxv_t[AT_BASE].a_un.a_ptr;
  211. /* Check the ELF header to make sure everything looks ok. */
  212. if (! header || header->e_ident[EI_CLASS] != ELFCLASS32 ||
  213. header->e_ident[EI_VERSION] != EV_CURRENT
  214. #ifndef __powerpc__
  215. || _dl_strncmp((void *)header, ELFMAGIC, SELFMAG) != 0
  216. #endif
  217. )
  218. {
  219. SEND_STDERR("Invalid ELF header\n");
  220. _dl_exit(0);
  221. }
  222. #ifdef DL_DEBUG
  223. SEND_STDERR("ELF header =");
  224. SEND_ADDRESS_STDERR(load_addr, 1);
  225. #endif
  226. /* Locate the global offset table. Since this code must be PIC
  227. * we can take advantage of the magic offset register, if we
  228. * happen to know what that is for this architecture. If not,
  229. * we can always read stuff out of the ELF file to find it... */
  230. #if defined(__i386__)
  231. __asm__("\tmovl %%ebx,%0\n\t" : "=a" (got));
  232. #elif defined(__m68k__)
  233. __asm__ ("movel %%a5,%0" : "=g" (got))
  234. #elif defined(__sparc__)
  235. __asm__("\tmov %%l7,%0\n\t" : "=r" (got))
  236. #elif defined(__arm__)
  237. __asm__("\tmov %0, r10\n\t" : "=r"(got));
  238. #elif defined(__powerpc__)
  239. __asm__("\tbl _GLOBAL_OFFSET_TABLE_-4@local\n\t" : "=l"(got));
  240. #else
  241. /* Do things the slow way in C */
  242. {
  243. unsigned long tx_reloc;
  244. Elf32_Dyn *dynamic=NULL;
  245. Elf32_Shdr *shdr;
  246. Elf32_Phdr *pt_load;
  247. #ifdef DL_DEBUG
  248. SEND_STDERR("Finding the got using C code to read the ELF file\n");
  249. #endif
  250. /* Find where the dynamic linking information section is hiding */
  251. shdr = (Elf32_Shdr *)(header->e_shoff + (char *)header);
  252. for (indx = header->e_shnum; --indx>=0; ++shdr) {
  253. if (shdr->sh_type == SHT_DYNAMIC) {
  254. goto found_dynamic;
  255. }
  256. }
  257. SEND_STDERR("missing dynamic linking information section \n");
  258. _dl_exit(0);
  259. found_dynamic:
  260. dynamic = (Elf32_Dyn*)(shdr->sh_offset + (char *)header);
  261. /* Find where PT_LOAD is hiding */
  262. pt_load = (Elf32_Phdr *)(header->e_phoff + (char *)header);
  263. for (indx = header->e_phnum; --indx>=0; ++pt_load) {
  264. if (pt_load->p_type == PT_LOAD) {
  265. goto found_pt_load;
  266. }
  267. }
  268. SEND_STDERR("missing loadable program segment\n");
  269. _dl_exit(0);
  270. found_pt_load:
  271. /* Now (finally) find where DT_PLTGOT is hiding */
  272. tx_reloc = pt_load->p_vaddr - pt_load->p_offset;
  273. for (; DT_NULL!=dynamic->d_tag; ++dynamic) {
  274. if (dynamic->d_tag == DT_PLTGOT) {
  275. goto found_got;
  276. }
  277. }
  278. SEND_STDERR("missing global offset table\n");
  279. _dl_exit(0);
  280. found_got:
  281. got = (unsigned long *)(dynamic->d_un.d_val - tx_reloc + (char *)header );
  282. }
  283. #endif
  284. /* Now, finally, fix up the location of the dynamic stuff */
  285. dpnt = (Elf32_Dyn *) (*got + load_addr);
  286. #ifdef DL_DEBUG
  287. SEND_STDERR("First Dynamic section entry=");
  288. SEND_ADDRESS_STDERR(dpnt, 1);
  289. #endif
  290. /* Call mmap to get a page of writable memory that can be used
  291. * for _dl_malloc throughout the shared lib loader. */
  292. mmap_zero = malloc_buffer = _dl_mmap((void *) 0, 4096,
  293. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
  294. if (_dl_mmap_check_error(mmap_zero)) {
  295. SEND_STDERR("dl_boot: mmap of a spare page failed!\n");
  296. _dl_exit(13);
  297. }
  298. tpnt = DL_MALLOC(sizeof(struct elf_resolve));
  299. _dl_memset(tpnt, 0, sizeof(*tpnt));
  300. app_tpnt = DL_MALLOC(sizeof(struct elf_resolve));
  301. _dl_memset(app_tpnt, 0, sizeof(*app_tpnt));
  302. /*
  303. * This is used by gdb to locate the chain of shared libraries that are currently loaded.
  304. */
  305. debug_addr = DL_MALLOC(sizeof(struct r_debug));
  306. _dl_memset(debug_addr, 0, sizeof(*debug_addr));
  307. /* OK, that was easy. Next scan the DYNAMIC section of the image.
  308. We are only doing ourself right now - we will have to do the rest later */
  309. while (dpnt->d_tag) {
  310. if(dpnt->d_tag<24) {
  311. tpnt->dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
  312. if (dpnt->d_tag == DT_TEXTREL || SVR4_BUGCOMPAT) {
  313. tpnt->dynamic_info[DT_TEXTREL] = 1;
  314. }
  315. }
  316. dpnt++;
  317. }
  318. {
  319. elf_phdr *ppnt;
  320. int i;
  321. ppnt = (elf_phdr *) auxv_t[AT_PHDR].a_un.a_ptr;
  322. for (i = 0; i < auxv_t[AT_PHNUM].a_un.a_val; i++, ppnt++)
  323. if (ppnt->p_type == PT_DYNAMIC) {
  324. dpnt = (Elf32_Dyn *) ppnt->p_vaddr;
  325. while (dpnt->d_tag) {
  326. if (dpnt->d_tag > DT_JMPREL) {
  327. dpnt++;
  328. continue;
  329. }
  330. app_tpnt->dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
  331. if (dpnt->d_tag == DT_DEBUG)
  332. dpnt->d_un.d_val = (unsigned long) debug_addr;
  333. if (dpnt->d_tag == DT_TEXTREL || SVR4_BUGCOMPAT)
  334. app_tpnt->dynamic_info[DT_TEXTREL] = 1;
  335. dpnt++;
  336. }
  337. }
  338. }
  339. /* Get some more of the information that we will need to dynamicly link
  340. this module to itself */
  341. hash_addr = (unsigned long *) (tpnt->dynamic_info[DT_HASH] + load_addr);
  342. tpnt->nbucket = *hash_addr++;
  343. tpnt->nchain = *hash_addr++;
  344. tpnt->elf_buckets = hash_addr;
  345. hash_addr += tpnt->nbucket;
  346. chains = hash_addr;
  347. /* Ugly, ugly. We need to call mprotect to change the protection of
  348. the text pages so that we can do the dynamic linking. We can set the
  349. protection back again once we are done */
  350. {
  351. elf_phdr *ppnt;
  352. int i;
  353. /* First cover the shared library/dynamic linker. */
  354. if (tpnt->dynamic_info[DT_TEXTREL]) {
  355. header = (elfhdr *) auxv_t[AT_BASE].a_un.a_ptr;
  356. ppnt = (elf_phdr *) (auxv_t[AT_BASE].a_un.a_ptr + header->e_phoff);
  357. for (i = 0; i < header->e_phnum; i++, ppnt++) {
  358. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
  359. _dl_mprotect((void *) (load_addr + (ppnt->p_vaddr & 0xfffff000)),
  360. (ppnt->p_vaddr & 0xfff) + (unsigned long) ppnt->p_filesz,
  361. PROT_READ | PROT_WRITE | PROT_EXEC);
  362. }
  363. }
  364. /* Now cover the application program. */
  365. if (app_tpnt->dynamic_info[DT_TEXTREL]) {
  366. ppnt = (elf_phdr *) auxv_t[AT_PHDR].a_un.a_ptr;
  367. for (i = 0; i < auxv_t[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  368. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
  369. _dl_mprotect((void *) (ppnt->p_vaddr & 0xfffff000),
  370. (ppnt->p_vaddr & 0xfff) +
  371. (unsigned long) ppnt->p_filesz,
  372. PROT_READ | PROT_WRITE | PROT_EXEC);
  373. }
  374. }
  375. }
  376. /* OK, now do the relocations. We do not do a lazy binding here, so
  377. that once we are done, we have considerably more flexibility. */
  378. goof = 0;
  379. for (indx = 0; indx < 2; indx++) {
  380. int i;
  381. ELF_RELOC *rpnt;
  382. unsigned long *reloc_addr;
  383. unsigned long symbol_addr;
  384. int symtab_index;
  385. unsigned long rel_addr, rel_size;
  386. #ifdef ELF_USES_RELOCA
  387. rel_addr =
  388. (indx ? tpnt->dynamic_info[DT_JMPREL] : tpnt->
  389. dynamic_info[DT_RELA]);
  390. rel_size =
  391. (indx ? tpnt->dynamic_info[DT_PLTRELSZ] : tpnt->
  392. dynamic_info[DT_RELASZ]);
  393. #else
  394. rel_addr =
  395. (indx ? tpnt->dynamic_info[DT_JMPREL] : tpnt->
  396. dynamic_info[DT_REL]);
  397. rel_size =
  398. (indx ? tpnt->dynamic_info[DT_PLTRELSZ] : tpnt->
  399. dynamic_info[DT_RELSZ]);
  400. #endif
  401. if (!rel_addr)
  402. continue;
  403. /* Now parse the relocation information */
  404. rpnt = (ELF_RELOC *) (rel_addr + load_addr);
  405. for (i = 0; i < rel_size; i += sizeof(ELF_RELOC), rpnt++) {
  406. reloc_addr = (unsigned long *) (load_addr + (unsigned long) rpnt->r_offset);
  407. symtab_index = ELF32_R_SYM(rpnt->r_info);
  408. symbol_addr = 0;
  409. if (symtab_index) {
  410. char *strtab;
  411. Elf32_Sym *symtab;
  412. symtab = (Elf32_Sym *) (tpnt->dynamic_info[DT_SYMTAB] + load_addr);
  413. strtab = (char *) (tpnt->dynamic_info[DT_STRTAB] + load_addr);
  414. /* We only do a partial dynamic linking right now. The user
  415. is not supposed to redefine any symbols that start with
  416. a '_', so we can do this with confidence. */
  417. if (!_dl_symbol(strtab + symtab[symtab_index].st_name))
  418. continue;
  419. symbol_addr = load_addr + symtab[symtab_index].st_value;
  420. if (!symbol_addr) {
  421. /*
  422. * This will segfault - you cannot call a function until
  423. * we have finished the relocations.
  424. */
  425. SEND_STDERR("ELF dynamic loader - unable to "
  426. "self-bootstrap - symbol ");
  427. SEND_STDERR(strtab + symtab[symtab_index].st_name);
  428. SEND_STDERR(" undefined.\n");
  429. goof++;
  430. }
  431. }
  432. /*
  433. * Use this machine-specific macro to perform the actual relocation.
  434. */
  435. PERFORM_BOOTSTRAP_RELOC(rpnt, reloc_addr, symbol_addr, load_addr);
  436. }
  437. }
  438. if (goof) {
  439. _dl_exit(14);
  440. }
  441. /* OK, at this point we have a crude malloc capability. Start to build
  442. the tables of the modules that are required for this beast to run.
  443. We start with the basic executable, and then go from there. Eventually
  444. we will run across ourself, and we will need to properly deal with that
  445. as well. */
  446. _dl_malloc_addr = malloc_buffer;
  447. _dl_mmap_zero = mmap_zero;
  448. /* Now we have done the mandatory linking of some things. We are now
  449. free to start using global variables, since these things have all been
  450. fixed up by now. Still no function calls outside of this library ,
  451. since the dynamic resolver is not yet ready. */
  452. lpnt = (unsigned long *) (tpnt->dynamic_info[DT_PLTGOT] + load_addr);
  453. INIT_GOT(lpnt, tpnt);
  454. /* OK, this was a big step, now we need to scan all of the user images
  455. and load them properly. */
  456. tpnt->next = 0;
  457. tpnt->libname = 0;
  458. tpnt->libtype = program_interpreter;
  459. {
  460. elfhdr *epnt;
  461. elf_phdr *ppnt;
  462. int i;
  463. epnt = (elfhdr *) auxv_t[AT_BASE].a_un.a_ptr;
  464. tpnt->n_phent = epnt->e_phnum;
  465. tpnt->ppnt = ppnt = (elf_phdr *) (load_addr + epnt->e_phoff);
  466. for (i = 0; i < epnt->e_phnum; i++, ppnt++) {
  467. if (ppnt->p_type == PT_DYNAMIC) {
  468. tpnt->dynamic_addr = ppnt->p_vaddr + load_addr;
  469. tpnt->dynamic_size = ppnt->p_filesz;
  470. }
  471. }
  472. }
  473. tpnt->chains = chains;
  474. tpnt->loadaddr = (char *) load_addr;
  475. brk_addr = 0;
  476. rpnt = NULL;
  477. /* At this point we are now free to examine the user application,
  478. and figure out which libraries are supposed to be called. Until
  479. we have this list, we will not be completely ready for dynamic linking */
  480. {
  481. elf_phdr *ppnt;
  482. int i;
  483. ppnt = (elf_phdr *) auxv_t[AT_PHDR].a_un.a_ptr;
  484. for (i = 0; i < auxv_t[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  485. if (ppnt->p_type == PT_LOAD) {
  486. if (ppnt->p_vaddr + ppnt->p_memsz > brk_addr)
  487. brk_addr = ppnt->p_vaddr + ppnt->p_memsz;
  488. }
  489. if (ppnt->p_type == PT_DYNAMIC) {
  490. #ifndef ALLOW_ZERO_PLTGOT
  491. /* make sure it's really there. */
  492. if (app_tpnt->dynamic_info[DT_PLTGOT] == 0)
  493. continue;
  494. #endif
  495. /* OK, we have what we need - slip this one into the list. */
  496. app_tpnt = _dl_add_elf_hash_table("", 0,
  497. app_tpnt->dynamic_info, ppnt->p_vaddr, ppnt->p_filesz);
  498. _dl_loaded_modules->libtype = elf_executable;
  499. _dl_loaded_modules->ppnt = (elf_phdr *) auxv_t[AT_PHDR].a_un.a_ptr;
  500. _dl_loaded_modules->n_phent = auxv_t[AT_PHNUM].a_un.a_val;
  501. _dl_symbol_tables = rpnt = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  502. _dl_memset(rpnt, 0, sizeof(*rpnt));
  503. rpnt->dyn = _dl_loaded_modules;
  504. app_tpnt->usage_count++;
  505. app_tpnt->symbol_scope = _dl_symbol_tables;
  506. lpnt = (unsigned long *) (app_tpnt->dynamic_info[DT_PLTGOT]);
  507. #ifdef ALLOW_ZERO_PLTGOT
  508. if (lpnt)
  509. #endif
  510. INIT_GOT(lpnt, _dl_loaded_modules);
  511. }
  512. if (ppnt->p_type == PT_INTERP) { /* OK, fill this in - we did not
  513. have this before */
  514. tpnt->libname = _dl_strdup((char *) ppnt->p_offset +
  515. (auxv_t[AT_PHDR].a_un.a_val & 0xfffff000));
  516. }
  517. }
  518. }
  519. if (argv[0]) {
  520. _dl_progname = argv[0];
  521. }
  522. /* Now we need to figure out what kind of options are selected.
  523. Note that for SUID programs we ignore the settings in LD_LIBRARY_PATH */
  524. {
  525. _dl_not_lazy = _dl_getenv("LD_BIND_NOW", envp);
  526. if ((auxv_t[AT_UID].a_un.a_val == -1 && _dl_suid_ok()) ||
  527. (auxv_t[AT_UID].a_un.a_val != -1 &&
  528. auxv_t[AT_UID].a_un.a_val == auxv_t[AT_EUID].a_un.a_val
  529. && auxv_t[AT_GID].a_un.a_val== auxv_t[AT_EGID].a_un.a_val)) {
  530. _dl_secure = 0;
  531. _dl_preload = _dl_getenv("LD_PRELOAD", envp);
  532. _dl_library_path = _dl_getenv("LD_LIBRARY_PATH", envp);
  533. } else {
  534. _dl_secure = 1;
  535. _dl_preload = _dl_getenv("LD_PRELOAD", envp);
  536. _dl_unsetenv("LD_AOUT_PRELOAD", envp);
  537. _dl_unsetenv("LD_LIBRARY_PATH", envp);
  538. _dl_unsetenv("LD_AOUT_LIBRARY_PATH", envp);
  539. _dl_library_path = NULL;
  540. }
  541. }
  542. #ifdef DL_TRACE
  543. _dl_trace_loaded_objects = _dl_getenv("LD_TRACE_LOADED_OBJECTS", envp);
  544. #endif
  545. /* OK, we now have the application in the list, and we have some
  546. basic stuff in place. Now search through the list for other shared
  547. libraries that should be loaded, and insert them on the list in the
  548. correct order. */
  549. #ifdef USE_CACHE
  550. _dl_map_cache();
  551. #endif
  552. {
  553. struct elf_resolve *tcurr;
  554. struct elf_resolve *tpnt1;
  555. char *lpnt;
  556. if (_dl_preload)
  557. {
  558. char c, *str, *str2;
  559. str = _dl_preload;
  560. while (*str == ':' || *str == ' ' || *str == '\t')
  561. str++;
  562. while (*str)
  563. {
  564. str2 = str;
  565. while (*str2 && *str2 != ':' && *str2 != ' ' && *str2 != '\t')
  566. str2++;
  567. c = *str2;
  568. *str2 = '\0';
  569. if (!_dl_secure || _dl_strchr(str, '/') == NULL)
  570. {
  571. tpnt1 = _dl_load_shared_library(_dl_secure, NULL, str);
  572. if (!tpnt1) {
  573. #ifdef DL_TRACE
  574. if (_dl_trace_loaded_objects)
  575. _dl_dprintf(1, "\t%s => not found\n", str);
  576. else {
  577. #endif
  578. _dl_dprintf(2, "%s: can't load "
  579. "library '%s'\n", _dl_progname, str);
  580. _dl_exit(15);
  581. #ifdef DL_TRACE
  582. }
  583. #endif
  584. } else {
  585. #ifdef DL_TRACE
  586. if (_dl_trace_loaded_objects
  587. && !tpnt1->usage_count) {
  588. /* this is a real hack to make ldd not print
  589. * the library itself when run on a library. */
  590. if (_dl_strcmp(_dl_progname, str) != 0)
  591. _dl_dprintf(1, "\t%s => %s (0x%x)\n", str, tpnt1->libname,
  592. (unsigned) tpnt1->loadaddr);
  593. }
  594. #endif
  595. rpnt->next = (struct dyn_elf *)
  596. _dl_malloc(sizeof(struct dyn_elf));
  597. _dl_memset(rpnt->next, 0, sizeof(*(rpnt->next)));
  598. rpnt = rpnt->next;
  599. tpnt1->usage_count++;
  600. tpnt1->symbol_scope = _dl_symbol_tables;
  601. tpnt1->libtype = elf_lib;
  602. rpnt->dyn = tpnt1;
  603. }
  604. }
  605. *str2 = c;
  606. str = str2;
  607. while (*str == ':' || *str == ' ' || *str == '\t')
  608. str++;
  609. }
  610. }
  611. {
  612. int fd;
  613. struct stat st;
  614. char *preload;
  615. if (!_dl_stat(LDSO_PRELOAD, &st) && st.st_size > 0) {
  616. if ((fd = _dl_open(LDSO_PRELOAD, O_RDONLY)) < 0) {
  617. _dl_dprintf(2, "%s: can't open file '%s'\n",
  618. _dl_progname, LDSO_PRELOAD);
  619. } else {
  620. preload = (caddr_t) _dl_mmap(0, st.st_size + 1,
  621. PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
  622. _dl_close(fd);
  623. if (preload == (caddr_t) - 1) {
  624. _dl_dprintf(2, "%s: can't map file '%s'\n",
  625. _dl_progname, LDSO_PRELOAD);
  626. } else {
  627. char c, *cp, *cp2;
  628. /* convert all separators and comments to spaces */
  629. for (cp = preload; *cp; /*nada */ ) {
  630. if (*cp == ':' || *cp == '\t' || *cp == '\n') {
  631. *cp++ = ' ';
  632. } else if (*cp == '#') {
  633. do
  634. *cp++ = ' ';
  635. while (*cp != '\n' && *cp != '\0');
  636. } else {
  637. cp++;
  638. }
  639. }
  640. /* find start of first library */
  641. for (cp = preload; *cp && *cp == ' '; cp++)
  642. /*nada */ ;
  643. while (*cp) {
  644. /* find end of library */
  645. for (cp2 = cp; *cp && *cp != ' '; cp++)
  646. /*nada */ ;
  647. c = *cp;
  648. *cp = '\0';
  649. tpnt1 = _dl_load_shared_library(0, NULL, cp2);
  650. if (!tpnt1) {
  651. #ifdef DL_TRACE
  652. if (_dl_trace_loaded_objects)
  653. _dl_dprintf(1, "\t%s => not found\n", cp2);
  654. else {
  655. #endif
  656. _dl_dprintf(2, "%s: can't load library '%s'\n",
  657. _dl_progname, cp2);
  658. _dl_exit(15);
  659. #ifdef DL_TRACE
  660. }
  661. #endif
  662. } else {
  663. #ifdef DL_TRACE
  664. if (_dl_trace_loaded_objects
  665. && !tpnt1->usage_count) {
  666. _dl_dprintf(1, "\t%s => %s (0x%x)\n", cp2,
  667. tpnt1->libname, (unsigned) tpnt1->loadaddr);
  668. }
  669. #endif
  670. rpnt->next = (struct dyn_elf *)
  671. _dl_malloc(sizeof(struct dyn_elf));
  672. _dl_memset(rpnt->next, 0,
  673. sizeof(*(rpnt->next)));
  674. rpnt = rpnt->next;
  675. tpnt1->usage_count++;
  676. tpnt1->symbol_scope = _dl_symbol_tables;
  677. tpnt1->libtype = elf_lib;
  678. rpnt->dyn = tpnt1;
  679. }
  680. /* find start of next library */
  681. *cp = c;
  682. for ( /*nada */ ; *cp && *cp == ' '; cp++)
  683. /*nada */ ;
  684. }
  685. _dl_munmap(preload, st.st_size + 1);
  686. }
  687. }
  688. }
  689. }
  690. for (tcurr = _dl_loaded_modules; tcurr; tcurr = tcurr->next) {
  691. for (dpnt = (Elf32_Dyn *) tcurr->dynamic_addr; dpnt->d_tag;
  692. dpnt++) {
  693. if (dpnt->d_tag == DT_NEEDED) {
  694. lpnt = tcurr->loadaddr + tcurr->dynamic_info[DT_STRTAB] +
  695. dpnt->d_un.d_val;
  696. if (tpnt && _dl_strcmp(lpnt,
  697. _dl_get_last_path_component(tpnt->libname)) == 0) {
  698. struct elf_resolve *ttmp;
  699. #ifdef DL_TRACE
  700. if (_dl_trace_loaded_objects && !tpnt->usage_count) {
  701. _dl_dprintf(1, "\t%s => %s (0x%x)\n",
  702. lpnt, tpnt->libname, (unsigned) tpnt->loadaddr);
  703. }
  704. #endif
  705. ttmp = _dl_loaded_modules;
  706. while (ttmp->next)
  707. ttmp = ttmp->next;
  708. ttmp->next = tpnt;
  709. tpnt->prev = ttmp;
  710. tpnt->next = NULL;
  711. rpnt->next = (struct dyn_elf *)
  712. _dl_malloc(sizeof(struct dyn_elf));
  713. _dl_memset(rpnt->next, 0, sizeof(*(rpnt->next)));
  714. rpnt = rpnt->next;
  715. rpnt->dyn = tpnt;
  716. tpnt->usage_count++;
  717. tpnt->symbol_scope = _dl_symbol_tables;
  718. tpnt = NULL;
  719. continue;
  720. }
  721. if (!(tpnt1 = _dl_load_shared_library(0, tcurr, lpnt))) {
  722. #ifdef DL_TRACE
  723. if (_dl_trace_loaded_objects)
  724. _dl_dprintf(1, "\t%s => not found\n", lpnt);
  725. else {
  726. #endif
  727. _dl_dprintf(2, "%s: can't load library '%s'\n",
  728. _dl_progname, lpnt);
  729. _dl_exit(16);
  730. #ifdef DL_TRACE
  731. }
  732. #endif
  733. } else {
  734. #ifdef DL_TRACE
  735. if (_dl_trace_loaded_objects && !tpnt1->usage_count)
  736. _dl_dprintf(1, "\t%s => %s (0x%x)\n", lpnt, tpnt1->libname,
  737. (unsigned) tpnt1->loadaddr);
  738. #endif
  739. rpnt->next = (struct dyn_elf *)
  740. _dl_malloc(sizeof(struct dyn_elf));
  741. _dl_memset(rpnt->next, 0, sizeof(*(rpnt->next)));
  742. rpnt = rpnt->next;
  743. tpnt1->usage_count++;
  744. tpnt1->symbol_scope = _dl_symbol_tables;
  745. tpnt1->libtype = elf_lib;
  746. rpnt->dyn = tpnt1;
  747. }
  748. }
  749. }
  750. }
  751. }
  752. #ifdef USE_CACHE
  753. _dl_unmap_cache();
  754. #endif
  755. /* ldd uses uses this. I am not sure how you pick up the other flags */
  756. #ifdef DL_TRACE
  757. if (_dl_trace_loaded_objects) {
  758. char *_dl_warn = 0;
  759. _dl_warn = _dl_getenv("LD_WARN", envp);
  760. if (!_dl_warn)
  761. _dl_exit(0);
  762. }
  763. #endif
  764. /*
  765. * If the program interpreter is not in the module chain, add it. This will
  766. * be required for dlopen to be able to access the internal functions in the
  767. * dynamic linker.
  768. */
  769. if (tpnt) {
  770. struct elf_resolve *tcurr;
  771. tcurr = _dl_loaded_modules;
  772. if (tcurr)
  773. while (tcurr->next)
  774. tcurr = tcurr->next;
  775. tpnt->next = NULL;
  776. tpnt->usage_count++;
  777. if (tcurr) {
  778. tcurr->next = tpnt;
  779. tpnt->prev = tcurr;
  780. } else {
  781. _dl_loaded_modules = tpnt;
  782. tpnt->prev = NULL;
  783. }
  784. if (rpnt) {
  785. rpnt->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  786. _dl_memset(rpnt->next, 0, sizeof(*(rpnt->next)));
  787. rpnt = rpnt->next;
  788. } else {
  789. rpnt = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  790. _dl_memset(rpnt, 0, sizeof(*(rpnt->next)));
  791. }
  792. rpnt->dyn = tpnt;
  793. tpnt = NULL;
  794. }
  795. /*
  796. * OK, now all of the kids are tucked into bed in their proper addresses.
  797. * Now we go through and look for REL and RELA records that indicate fixups
  798. * to the GOT tables. We need to do this in reverse order so that COPY
  799. * directives work correctly */
  800. goof = _dl_loaded_modules ? _dl_fixup(_dl_loaded_modules) : 0;
  801. /* Some flavors of SVr4 do not generate the R_*_COPY directive,
  802. and we have to manually search for entries that require fixups.
  803. Solaris gets this one right, from what I understand. */
  804. if (_dl_symbol_tables)
  805. goof += _dl_copy_fixups(_dl_symbol_tables);
  806. #ifdef DL_TRACE
  807. if (goof || _dl_trace_loaded_objects)
  808. _dl_exit(0);
  809. #endif
  810. /* OK, at this point things are pretty much ready to run. Now we
  811. need to touch up a few items that are required, and then
  812. we can let the user application have at it. Note that
  813. the dynamic linker itself is not guaranteed to be fully
  814. dynamicly linked if we are using ld.so.1, so we have to look
  815. up each symbol individually. */
  816. _dl_brkp = (unsigned long *) _dl_find_hash("___brk_addr", NULL, 1, NULL, 0);
  817. if (_dl_brkp)
  818. *_dl_brkp = brk_addr;
  819. _dl_envp =
  820. (unsigned long *) _dl_find_hash("__environ", NULL, 1, NULL, 0);
  821. if (_dl_envp)
  822. *_dl_envp = (unsigned long) envp;
  823. {
  824. int i;
  825. elf_phdr *ppnt;
  826. /* We had to set the protections of all pages to R/W for dynamic linking.
  827. Set text pages back to R/O */
  828. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next)
  829. for (ppnt = tpnt->ppnt, i = 0; i < tpnt->n_phent; i++, ppnt++)
  830. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W) &&
  831. tpnt->dynamic_info[DT_TEXTREL])
  832. _dl_mprotect((void *) (tpnt->loadaddr + (ppnt->p_vaddr & 0xfffff000)),
  833. (ppnt->p_vaddr & 0xfff) + (unsigned long) ppnt->p_filesz,
  834. LXFLAGS(ppnt->p_flags));
  835. }
  836. _dl_atexit = (int (*)(void *)) _dl_find_hash("atexit", NULL, 1, NULL, 0);
  837. /*
  838. * OK, fix one more thing - set up the debug_addr structure to point
  839. * to our chain. Later we may need to fill in more fields, but this
  840. * should be enough for now.
  841. */
  842. debug_addr->r_map = (struct link_map *) _dl_loaded_modules;
  843. debug_addr->r_version = 1;
  844. debug_addr->r_ldbase = load_addr;
  845. debug_addr->r_brk = (unsigned long) &_dl_debug_state;
  846. _dl_debug_addr = debug_addr;
  847. debug_addr->r_state = RT_CONSISTENT;
  848. /* This is written in this funny way to keep gcc from inlining the
  849. function call. */
  850. ((void (*)(void)) debug_addr->r_brk) ();
  851. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
  852. /* Apparently crt1 for the application is responsible for handling this.
  853. * We only need to run the init/fini for shared libraries
  854. */
  855. if (tpnt->libtype == program_interpreter ||
  856. tpnt->libtype == elf_executable)
  857. continue;
  858. if (tpnt->init_flag & INIT_FUNCS_CALLED)
  859. continue;
  860. tpnt->init_flag |= INIT_FUNCS_CALLED;
  861. if (tpnt->dynamic_info[DT_INIT]) {
  862. _dl_elf_init = (int (*)(void)) (tpnt->loadaddr +
  863. tpnt->dynamic_info[DT_INIT]);
  864. (*_dl_elf_init) ();
  865. }
  866. if (_dl_atexit && tpnt->dynamic_info[DT_FINI]) {
  867. (*_dl_atexit) (tpnt->loadaddr + tpnt->dynamic_info[DT_FINI]);
  868. }
  869. #undef DL_DEBUG
  870. #ifdef DL_DEBUG
  871. else {
  872. _dl_dprintf(2, tpnt->libname);
  873. _dl_dprintf(2, ": ");
  874. if (!_dl_atexit)
  875. _dl_dprintf(2, "The address is atexit () is 0x0.");
  876. if (!tpnt->dynamic_info[DT_FINI])
  877. _dl_dprintf(2, "Invalid .fini section.");
  878. _dl_dprintf(2, "\n");
  879. }
  880. #endif
  881. #undef DL_DEBUG
  882. }
  883. /* OK we are done here. Turn out the lights, and lock up. */
  884. _dl_elf_main = (int (*)(int, char **, char **)) auxv_t[AT_ENTRY].a_un.a_fcn;
  885. /*
  886. * Transfer control to the application.
  887. */
  888. status = 0; /* Used on x86, but not on other arches */
  889. START();
  890. }
  891. /*
  892. * This stub function is used by some debuggers. The idea is that they
  893. * can set an internal breakpoint on it, so that we are notified when the
  894. * address mapping is changed in some way.
  895. */
  896. void _dl_debug_state()
  897. {
  898. return;
  899. }
  900. int _dl_fixup(struct elf_resolve *tpnt)
  901. {
  902. int goof = 0;
  903. if (tpnt->next)
  904. goof += _dl_fixup(tpnt->next);
  905. if (tpnt->dynamic_info[DT_REL]) {
  906. #ifdef ELF_USES_RELOCA
  907. _dl_dprintf(2, "%s: can't handle REL relocation records\n",
  908. _dl_progname);
  909. _dl_exit(17);
  910. #else
  911. if (tpnt->init_flag & RELOCS_DONE)
  912. return goof;
  913. tpnt->init_flag |= RELOCS_DONE;
  914. goof += _dl_parse_relocation_information(tpnt,
  915. tpnt->dynamic_info[DT_REL], tpnt->dynamic_info[DT_RELSZ], 0);
  916. #endif
  917. }
  918. if (tpnt->dynamic_info[DT_RELA]) {
  919. #ifdef ELF_USES_RELOCA
  920. if (tpnt->init_flag & RELOCS_DONE)
  921. return goof;
  922. tpnt->init_flag |= RELOCS_DONE;
  923. goof += _dl_parse_relocation_information(tpnt,
  924. tpnt->dynamic_info[DT_RELA], tpnt->dynamic_info[DT_RELASZ], 0);
  925. #else
  926. _dl_dprintf(2, "%s: can't handle RELA relocation records\n",
  927. _dl_progname);
  928. _dl_exit(18);
  929. #endif
  930. }
  931. if (tpnt->dynamic_info[DT_JMPREL]) {
  932. if (tpnt->init_flag & JMP_RELOCS_DONE)
  933. return goof;
  934. tpnt->init_flag |= JMP_RELOCS_DONE;
  935. if (!_dl_not_lazy || *_dl_not_lazy == 0)
  936. _dl_parse_lazy_relocation_information(tpnt,
  937. tpnt->dynamic_info[DT_JMPREL], tpnt->dynamic_info[DT_PLTRELSZ], 0);
  938. else
  939. goof += _dl_parse_relocation_information(tpnt,
  940. tpnt->dynamic_info[DT_JMPREL], tpnt->dynamic_info[DT_PLTRELSZ], 0);
  941. }
  942. return goof;
  943. }
  944. void *_dl_malloc(int size)
  945. {
  946. void *retval;
  947. #ifdef DL_DEBUG
  948. SEND_STDERR("malloc: request for ");
  949. SEND_NUMBER_STDERR(size, 0);
  950. SEND_STDERR(" bytes\n");
  951. #endif
  952. if (_dl_malloc_function)
  953. return (*_dl_malloc_function) (size);
  954. if (_dl_malloc_addr - _dl_mmap_zero + size > 4096) {
  955. #ifdef DL_DEBUG
  956. SEND_STDERR("malloc: mmapping more memory\n");
  957. #endif
  958. _dl_mmap_zero = _dl_malloc_addr = _dl_mmap((void *) 0, size,
  959. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
  960. if (_dl_mmap_check_error(_dl_mmap_zero)) {
  961. _dl_dprintf(2, "%s: mmap of a spare page failed!\n", _dl_progname);
  962. _dl_exit(20);
  963. }
  964. }
  965. retval = _dl_malloc_addr;
  966. _dl_malloc_addr += size;
  967. /*
  968. * Align memory to 4 byte boundary. Some platforms require this, others
  969. * simply get better performance.
  970. */
  971. _dl_malloc_addr = (char *) (((unsigned long) _dl_malloc_addr + 3) & ~(3));
  972. return retval;
  973. }
  974. char *_dl_getenv(char *symbol, char **envp)
  975. {
  976. char *pnt;
  977. char *pnt1;
  978. while ((pnt = *envp++)) {
  979. pnt1 = symbol;
  980. while (*pnt && *pnt == *pnt1)
  981. pnt1++, pnt++;
  982. if (!*pnt || *pnt != '=' || *pnt1)
  983. continue;
  984. return pnt + 1;
  985. }
  986. return 0;
  987. }
  988. void _dl_unsetenv(char *symbol, char **envp)
  989. {
  990. char *pnt;
  991. char *pnt1;
  992. char **newenvp = envp;
  993. for (pnt = *envp; pnt; pnt = *++envp) {
  994. pnt1 = symbol;
  995. while (*pnt && *pnt == *pnt1)
  996. pnt1++, pnt++;
  997. if (!*pnt || *pnt != '=' || *pnt1)
  998. *newenvp++ = *envp;
  999. }
  1000. *newenvp++ = *envp;
  1001. return;
  1002. }
  1003. char *_dl_strdup(const char *string)
  1004. {
  1005. char *retval;
  1006. int len;
  1007. len = _dl_strlen(string);
  1008. retval = _dl_malloc(len + 1);
  1009. _dl_strcpy(retval, string);
  1010. return retval;
  1011. }
  1012. /* Minimum printf which handles only characters, %d's and %s's */
  1013. void _dl_dprintf(int fd, const char *fmt, ...)
  1014. {
  1015. int num;
  1016. va_list args;
  1017. char *start, *ptr, *string;
  1018. char buf[2048];
  1019. start = ptr = buf;
  1020. if (!fmt)
  1021. return;
  1022. if (_dl_strlen(fmt) >= (sizeof(buf)-1))
  1023. _dl_write(fd, "(overflow)\n", 10);
  1024. _dl_strcpy(buf, fmt);
  1025. va_start(args, fmt);
  1026. while(start)
  1027. {
  1028. while(*ptr != '%' && *ptr) {
  1029. ptr++;
  1030. }
  1031. if(*ptr == '%')
  1032. {
  1033. *ptr++ = '\0';
  1034. _dl_write(fd, start, _dl_strlen(start));
  1035. switch(*ptr++)
  1036. {
  1037. case 's':
  1038. string = va_arg(args, char *);
  1039. if (!string)
  1040. _dl_write(fd, "(null)", 6);
  1041. else
  1042. _dl_write(fd, string, _dl_strlen(string));
  1043. break;
  1044. case 'i':
  1045. case 'd':
  1046. {
  1047. char tmp[22];
  1048. num = va_arg(args, int);
  1049. string = _dl_simple_ltoa(tmp, num);
  1050. _dl_write(fd, string, _dl_strlen(string));
  1051. break;
  1052. }
  1053. case 'x':
  1054. case 'X':
  1055. {
  1056. char tmp[22];
  1057. num = va_arg(args, int);
  1058. string = _dl_simple_ltoahex(tmp, num);
  1059. _dl_write(fd, string, _dl_strlen(string));
  1060. break;
  1061. }
  1062. default:
  1063. _dl_write(fd, "(null)", 6);
  1064. break;
  1065. }
  1066. start = ptr;
  1067. }
  1068. else
  1069. {
  1070. _dl_write(fd, start, _dl_strlen(start));
  1071. start = NULL;
  1072. }
  1073. }
  1074. return;
  1075. }
  1076. #include "hash.c"
  1077. #include "readelflib1.c"