Merge from vendor branch BINUTILS:
[dragonfly.git] / sys / kern / link_aout.c
1 /*-
2  * Copyright (c) 1997 Doug Rabson
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/kern/link_aout.c,v 1.26 1999/12/24 15:33:36 bde Exp $
27  * $DragonFly: src/sys/kern/link_aout.c,v 1.9 2003/11/13 22:02:42 dillon Exp $
28  */
29
30 #ifndef __alpha__
31
32 #define FREEBSD_AOUT    1
33
34 #include <sys/param.h>
35 #include <sys/kernel.h>
36 #include <sys/systm.h>
37 #include <sys/types.h>
38 #include <sys/malloc.h>
39 #include <sys/proc.h>
40 #include <sys/namei.h>
41 #include <sys/fcntl.h>
42 #include <sys/vnode.h>
43 #include <sys/linker.h>
44
45 #include <vm/vm_zone.h>
46
47 #ifndef __ELF__
48 #include <vm/vm.h>
49 #include <vm/pmap.h>
50 #include <machine/vmparam.h>
51 #endif
52
53 #include <machine/exec.h>
54 #include <sys/imgact_aout.h>
55 #include <machine/reloc.h>
56 #define _AOUT_INCLUDE_
57 #include <sys/nlist_aout.h>
58 #include <sys/link_aout.h>
59
60 static int              link_aout_load_module(const char*, linker_file_t*);
61
62 static int              link_aout_load_file(const char*, linker_file_t*);
63
64 static int              link_aout_lookup_symbol(linker_file_t, const char*,
65                                                 c_linker_sym_t*);
66 static int              link_aout_symbol_values(linker_file_t file, c_linker_sym_t sym,
67                                                 linker_symval_t* symval);
68 static int              link_aout_search_symbol(linker_file_t lf, caddr_t value,
69                                                 c_linker_sym_t* sym, long* diffp);
70 static void             link_aout_unload_file(linker_file_t);
71 static void             link_aout_unload_module(linker_file_t);
72 static int              link_aout_lookup_set(linker_file_t lf, const char *name,
73                                 void ***startp, void ***stopp, int *countp);
74
75 static struct linker_class_ops link_aout_class_ops = {
76     link_aout_load_module,
77 };
78
79 static struct linker_file_ops link_aout_file_ops = {
80     link_aout_lookup_symbol,
81     link_aout_symbol_values,
82     link_aout_search_symbol,
83     link_aout_unload_file,
84     link_aout_lookup_set
85 };
86 static struct linker_file_ops link_aout_module_ops = {
87     link_aout_lookup_symbol,
88     link_aout_symbol_values,
89     link_aout_search_symbol,
90     link_aout_unload_module,
91     link_aout_lookup_set
92 };
93
94 typedef struct aout_file {
95     char*               address;        /* Load address */
96     struct _dynamic*    dynamic;        /* Symbol table etc. */
97 } *aout_file_t;
98
99 static int              load_dependancies(linker_file_t lf);
100 static int              relocate_file(linker_file_t lf);
101
102 /*
103  * The kernel symbol table starts here.
104  */
105 extern struct _dynamic _DYNAMIC;
106
107 static void
108 link_aout_init(void* arg)
109 {
110 #ifndef __ELF__
111     struct _dynamic* dp = &_DYNAMIC;
112 #endif
113
114     linker_add_class("a.out", NULL, &link_aout_class_ops);
115
116 #ifndef __ELF__
117     if (dp) {
118         aout_file_t af;
119
120         af = malloc(sizeof(struct aout_file), M_LINKER, M_NOWAIT);
121         if (af == NULL)
122             panic("link_aout_init: Can't create linker structures for kernel");
123         bzero(af, sizeof(*af));
124
125         af->address = 0;
126         af->dynamic = dp;
127         linker_kernel_file =
128             linker_make_file(kernelname, af, &link_aout_file_ops);
129         if (linker_kernel_file == NULL)
130             panic("link_aout_init: Can't create linker structures for kernel");
131         linker_kernel_file->address = (caddr_t) KERNBASE;
132         linker_kernel_file->size = -(long)linker_kernel_file->address;
133         linker_current_file = linker_kernel_file;
134         linker_kernel_file->flags |= LINKER_FILE_LINKED;
135     }
136 #endif
137 }
138
139 SYSINIT(link_aout, SI_SUB_KLD, SI_ORDER_THIRD, link_aout_init, 0);
140
141 static int
142 link_aout_load_module(const char* filename, linker_file_t* result)
143 {
144     caddr_t             modptr, baseptr;
145     char                *type;
146     struct exec         *ehdr;
147     aout_file_t         af;
148     linker_file_t       lf;
149     int                 error;
150     
151     /* Look to see if we have the module preloaded. */
152     if ((modptr = preload_search_by_name(filename)) == NULL)
153         return(link_aout_load_file(filename, result));
154
155     /* It's preloaded, check we can handle it and collect information. */
156     if (((type = (char *)preload_search_info(modptr, MODINFO_TYPE)) == NULL) ||
157         strcmp(type, "a.out module") ||
158         ((baseptr = preload_search_info(modptr, MODINFO_ADDR)) == NULL) ||
159         ((ehdr = (struct exec *)preload_search_info(modptr, MODINFO_METADATA | MODINFOMD_AOUTEXEC)) == NULL))
160         return(0);                      /* we can't handle this */
161
162     /* Looks like we can handle this one */
163     af = malloc(sizeof(struct aout_file), M_LINKER, M_WAITOK);
164     bzero(af, sizeof(*af));
165     af->address = baseptr;
166
167     /* Assume _DYNAMIC is the first data item. */
168     af->dynamic = (struct _dynamic*)(af->address + ehdr->a_text);
169     if (af->dynamic->d_version != LD_VERSION_BSD) {
170         free(af, M_LINKER);
171         return(0);                      /* we can't handle this */
172     }
173     af->dynamic->d_un.d_sdt = (struct section_dispatch_table *)
174         ((char *)af->dynamic->d_un.d_sdt + (vm_offset_t)af->address);
175
176     /* Register with kld */
177     lf = linker_make_file(filename, af, &link_aout_module_ops);
178     if (lf == NULL) {
179         free(af, M_LINKER);
180         return(ENOMEM);
181     }
182     lf->address = af->address;
183     lf->size = ehdr->a_text + ehdr->a_data + ehdr->a_bss;
184
185     /* Try to load dependancies */
186     if (((error = load_dependancies(lf)) != 0) ||
187         ((error = relocate_file(lf)) != 0)) {
188         linker_file_unload(lf);
189         return(error);
190     }
191     lf->flags |= LINKER_FILE_LINKED;
192     *result = lf;
193     return(0);
194 }
195
196 static int
197 link_aout_load_file(const char* filename, linker_file_t* result)
198 {
199     struct nameidata nd;
200     struct thread *td = curthread;
201     struct proc *p = td->td_proc;
202     int error = 0;
203     int resid;
204     struct exec header;
205     aout_file_t af;
206     linker_file_t lf;
207     char *pathname;
208
209     KKASSERT(p != NULL);
210
211     if (p->p_ucred == NULL) {
212         printf("link_aout_load_file: cannot load '%s' from filesystem"
213                 " this early\n", filename);
214         return ENOENT;
215     }
216
217     pathname = linker_search_path(filename);
218     if (pathname == NULL)
219         return ENOENT;
220     NDINIT(&nd, NAMEI_LOOKUP, CNP_FOLLOW, UIO_SYSSPACE, pathname, td);
221     error = vn_open(&nd, FREAD, 0);
222     free(pathname, M_LINKER);
223     if (error)
224         return error;
225     NDFREE(&nd, NDF_ONLY_PNBUF);
226
227     /*
228      * Read the a.out header from the file.
229      */
230     error = vn_rdwr(UIO_READ, nd.ni_vp, (void*) &header, sizeof header, 0,
231                     UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, td);
232     if (error)
233         goto out;
234
235     if (N_BADMAG(header) || !(N_GETFLAG(header) & EX_DYNAMIC))
236         goto out;
237
238     /*
239      * We have an a.out file, so make some space to read it in.
240      */
241     af = malloc(sizeof(struct aout_file), M_LINKER, M_WAITOK);
242     bzero(af, sizeof(*af));
243     af->address = malloc(header.a_text + header.a_data + header.a_bss,
244                          M_LINKER, M_WAITOK);
245     
246     /*
247      * Read the text and data sections and zero the bss.
248      */
249     error = vn_rdwr(UIO_READ, nd.ni_vp, (void*) af->address,
250                     header.a_text + header.a_data, 0,
251                     UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred, &resid, td);
252     if (error)
253         goto out;
254     bzero(af->address + header.a_text + header.a_data, header.a_bss);
255
256     /*
257      * Assume _DYNAMIC is the first data item.
258      */
259     af->dynamic = (struct _dynamic*) (af->address + header.a_text);
260     if (af->dynamic->d_version != LD_VERSION_BSD) {
261         free(af->address, M_LINKER);
262         free(af, M_LINKER);
263         goto out;
264     }
265     af->dynamic->d_un.d_sdt = (struct section_dispatch_table *)
266         ((char *)af->dynamic->d_un.d_sdt + (vm_offset_t)af->address);
267
268     lf = linker_make_file(filename, af, &link_aout_file_ops);
269     if (lf == NULL) {
270         free(af->address, M_LINKER);
271         free(af, M_LINKER);
272         error = ENOMEM;
273         goto out;
274     }
275     lf->address = af->address;
276     lf->size = header.a_text + header.a_data + header.a_bss;
277
278     if ((error = load_dependancies(lf)) != 0
279         || (error = relocate_file(lf)) != 0) {
280         linker_file_unload(lf);
281         goto out;
282     }
283
284     lf->flags |= LINKER_FILE_LINKED;
285     *result = lf;
286
287 out:
288     VOP_UNLOCK(nd.ni_vp, 0, td);
289     vn_close(nd.ni_vp, FREAD, td);
290
291     return error;
292 }
293
294 static void
295 link_aout_unload_file(linker_file_t file)
296 {
297     aout_file_t af = file->priv;
298
299     if (af) {
300         if (af->address)
301             free(af->address, M_LINKER);
302         free(af, M_LINKER);
303     }
304 }
305
306 static void
307 link_aout_unload_module(linker_file_t file)
308 {
309     aout_file_t af = file->priv;
310
311     if (af)
312         free(af, M_LINKER);
313     if (file->filename)
314         preload_delete_name(file->filename);
315 }
316
317 #define AOUT_RELOC(af, type, off) (type*) ((af)->address + (off))
318
319 static int
320 load_dependancies(linker_file_t lf)
321 {
322     aout_file_t af = lf->priv;
323     linker_file_t lfdep;
324     long off;
325     struct sod* sodp;
326     char* name;
327     char* filename = 0;
328     int error = 0;
329
330     /*
331      * All files are dependant on /kernel.
332      */
333     if (linker_kernel_file) {
334         linker_kernel_file->refs++;
335         linker_file_add_dependancy(lf, linker_kernel_file);
336     }
337
338     off = LD_NEED(af->dynamic);
339
340     /*
341      * Load the dependancies.
342      */
343     while (off != 0) {
344         sodp = AOUT_RELOC(af, struct sod, off);
345         name = AOUT_RELOC(af, char, sodp->sod_name);
346
347         error = linker_load_file(name, &lfdep);
348         if (error)
349             goto out;
350         error = linker_file_add_dependancy(lf, lfdep);
351         if (error)
352             goto out;
353         off = sodp->sod_next;
354     }
355
356 out:
357     if (filename)
358         free(filename, M_TEMP);
359     return error;
360 }
361
362 /*
363  * XXX i386 dependant.
364  */
365 static long
366 read_relocation(struct relocation_info* r, char* addr)
367 {
368     int length = r->r_length;
369     if (length == 0)
370         return *(u_char*) addr;
371     else if (length == 1)
372         return *(u_short*) addr;
373     else if (length == 2)
374         return *(u_int*) addr;
375     else
376         printf("link_aout: unsupported relocation size %d\n", r->r_length);
377     return 0;
378 }
379
380 static void
381 write_relocation(struct relocation_info* r, char* addr, long value)
382 {
383     int length = r->r_length;
384     if (length == 0)
385         *(u_char*) addr = value;
386     else if (length == 1)
387         *(u_short*) addr = value;
388     else if (length == 2)
389         *(u_int*) addr = value;
390     else
391         printf("link_aout: unsupported relocation size %d\n", r->r_length);
392 }
393
394 static int
395 relocate_file(linker_file_t lf)
396 {
397     aout_file_t af = lf->priv;
398     struct relocation_info* rel;
399     struct relocation_info* erel;
400     struct relocation_info* r;
401     struct nzlist* symbolbase;
402     char* stringbase;
403     struct nzlist* np;
404     char* sym;
405     long relocation;
406
407     rel = AOUT_RELOC(af, struct relocation_info, LD_REL(af->dynamic));
408     erel = AOUT_RELOC(af, struct relocation_info,
409                       LD_REL(af->dynamic) + LD_RELSZ(af->dynamic));
410     symbolbase = AOUT_RELOC(af, struct nzlist, LD_SYMBOL(af->dynamic));
411     stringbase = AOUT_RELOC(af, char, LD_STRINGS(af->dynamic));
412
413     for (r = rel; r < erel; r++) {
414         char* addr;
415
416         if (r->r_address == 0)
417             break;
418
419         addr = AOUT_RELOC(af, char, r->r_address);
420         if (r->r_extern) {
421             np = &symbolbase[r->r_symbolnum];
422             sym = &stringbase[np->nz_strx];
423
424             if (sym[0] != '_') {
425                 printf("link_aout: bad symbol name %s\n", sym);
426                 printf("link_aout: symbol %s not found\n", sym);
427                 return ENOENT;
428             } else {
429                 if (linker_file_lookup_symbol(lf, sym + 1,
430                     (np->nz_type != (N_SETV+N_EXT)), (caddr_t *)&relocation)) {
431                         printf("link_aout: symbol %s not found\n", sym);
432                         return ENOENT;
433                 }
434             }
435             
436             relocation += read_relocation(r, addr);
437
438             if (r->r_jmptable) {
439                 printf("link_aout: can't cope with jump table relocations\n");
440                 continue;
441             }
442
443             if (r->r_pcrel)
444                 relocation -= (intptr_t) af->address;
445
446             if (r->r_copy) {
447                 printf("link_aout: can't cope with copy relocations\n");
448                 continue;
449             }
450             
451             write_relocation(r, addr, relocation);
452         } else {
453             write_relocation(r, addr,
454                              (intptr_t)(read_relocation(r, addr) + af->address));
455         }
456         
457     }
458
459     return 0;
460 }
461
462 static long
463 symbol_hash_value(aout_file_t af, const char* name)
464 {
465     long hashval;
466     const char* p;
467
468     hashval = '_';              /* fake a starting '_' for C symbols */
469     for (p = name; *p; p++)
470         hashval = (hashval << 1) + *p;
471
472     return (hashval & 0x7fffffff) % LD_BUCKETS(af->dynamic);
473 }
474
475 int
476 link_aout_lookup_symbol(linker_file_t file, const char* name,
477                         c_linker_sym_t* sym)
478 {
479     aout_file_t af = file->priv;
480     long hashval;
481     struct rrs_hash* hashbase;
482     struct nzlist* symbolbase;
483     char* stringbase;
484     struct rrs_hash* hp;
485     struct nzlist* np;
486     char* cp;
487
488     if (LD_BUCKETS(af->dynamic) == 0)
489         return 0;
490
491     hashbase = AOUT_RELOC(af, struct rrs_hash, LD_HASH(af->dynamic));
492     symbolbase = AOUT_RELOC(af, struct nzlist, LD_SYMBOL(af->dynamic));
493     stringbase = AOUT_RELOC(af, char, LD_STRINGS(af->dynamic));
494
495 restart:
496     hashval = symbol_hash_value(af, name);
497     hp = &hashbase[hashval];
498     if (hp->rh_symbolnum == -1)
499         return ENOENT;
500
501     while (hp) {
502         np = (struct nzlist *) &symbolbase[hp->rh_symbolnum];
503         cp = stringbase + np->nz_strx;
504         /*
505          * Note: we fake the leading '_' for C symbols.
506          */
507         if (cp[0] == '_' && !strcmp(cp + 1, name))
508             break;
509
510         if (hp->rh_next == 0)
511             hp = NULL;
512         else
513             hp = &hashbase[hp->rh_next];
514     }
515
516     if (hp == NULL)
517         /*
518          * Not found.
519          */
520         return ENOENT;
521
522     /*
523      * Check for an aliased symbol, whatever that is.
524      */
525     if (np->nz_type == N_INDR+N_EXT) {
526         name = stringbase + (++np)->nz_strx + 1; /* +1 for '_' */
527         goto restart;
528     }
529
530     /*
531      * Check this is an actual definition of the symbol.
532      */
533     if (np->nz_value == 0)
534         return ENOENT;
535
536     if (np->nz_type == N_UNDF+N_EXT && np->nz_value != 0) {
537         if (np->nz_other == AUX_FUNC)
538             /* weak function */
539             return ENOENT;
540     }
541
542     *sym = (linker_sym_t) np;
543
544     return 0;
545 }
546
547
548 static int
549 link_aout_symbol_values(linker_file_t file, c_linker_sym_t sym,
550                         linker_symval_t* symval)
551 {
552     aout_file_t af = file->priv;
553     const struct nzlist* np = (const struct nzlist*) sym;
554     char* stringbase;
555     long numsym = LD_STABSZ(af->dynamic) / sizeof(struct nzlist);
556     struct nzlist *symbase;
557
558     /* Is it one of ours?  It could be another module... */
559     symbase = AOUT_RELOC(af, struct nzlist, LD_SYMBOL(af->dynamic));
560     if (np < symbase)
561         return ENOENT;
562     if ((np - symbase) > numsym)
563         return ENOENT;
564
565     stringbase = AOUT_RELOC(af, char, LD_STRINGS(af->dynamic));
566
567     symval->name = stringbase + np->nz_strx + 1; /* +1 for '_' */
568     if (np->nz_type == N_UNDF+N_EXT && np->nz_value != 0) {
569         symval->value = 0;
570         symval->size = np->nz_value;
571     } else {
572         symval->value = AOUT_RELOC(af, char, np->nz_value);
573         symval->size = np->nz_size;
574     }
575     return 0;
576 }
577
578 static int
579 link_aout_search_symbol(linker_file_t lf, caddr_t value,
580                         c_linker_sym_t* sym, long* diffp)
581 {
582         aout_file_t af = lf->priv;
583         u_long off = (uintptr_t) (void *) value;
584         u_long diff = off;
585         u_long sp_nz_value;
586         struct nzlist* sp;
587         struct nzlist* ep;
588         struct nzlist* best = 0;
589
590         for (sp = AOUT_RELOC(af, struct nzlist, LD_SYMBOL(af->dynamic)),
591                  ep = (struct nzlist *) ((caddr_t) sp + LD_STABSZ(af->dynamic));
592              sp < ep; sp++) {
593                 if (sp->nz_name == 0)
594                         continue;
595                 sp_nz_value = sp->nz_value + (uintptr_t) (void *) af->address;
596                 if (off >= sp_nz_value) {
597                         if (off - sp_nz_value < diff) {
598                                 diff = off - sp_nz_value;
599                                 best = sp;
600                                 if (diff == 0)
601                                         break;
602                         } else if (off - sp_nz_value == diff) {
603                                 best = sp;
604                         }
605                 }
606         }
607         if (best == 0)
608                 *diffp = off;
609         else
610                 *diffp = diff;
611         *sym = (linker_sym_t) best;
612
613         return 0;
614 }
615
616 /*
617  * Look up a linker set on an a.out + gnu LD system.
618  */
619
620 struct generic_linker_set {
621         int     ls_length;
622         void    *ls_items[1];
623 };
624
625 static int
626 link_aout_lookup_set(linker_file_t lf, const char *name,
627                     void ***startp, void ***stopp, int *countp)
628 {
629         c_linker_sym_t sym;
630         linker_symval_t symval;
631         void **start, **stop;
632         int error, count;
633         struct generic_linker_set *setp;
634
635         error = link_aout_lookup_symbol(lf, name, &sym);
636         if (error)
637                return error;
638         link_aout_symbol_values(lf, sym, &symval);
639         if (symval.value == 0)
640                return ESRCH;
641         setp = (struct generic_linker_set *)symval.value;
642         count = setp->ls_length;
643         start = &setp->ls_items[0];
644         stop = &setp->ls_items[count];
645         if (startp)
646                *startp = start;
647         if (stopp)
648                *stopp = stop;
649         if (countp)
650                *countp = count;
651         return 0;
652 }
653
654 #endif /* !__alpha__ */
655