1993-11-03 23:41:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 Paul Kranenburg
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Paul Kranenburg.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
1994-02-13 20:43:13 +00:00
|
|
|
* derived from this software without specific prior written permission
|
1993-11-03 23:41:59 +00:00
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
1996-10-01 01:22:51 +00:00
|
|
|
* $Id: rrs.c,v 1.16 1996/07/12 19:08:27 jkh Exp $
|
1993-11-03 23:41:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
1996-10-01 01:22:51 +00:00
|
|
|
#include <limits.h>
|
1994-06-15 22:41:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <err.h>
|
1993-11-03 23:41:59 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ar.h>
|
|
|
|
#include <ranlib.h>
|
|
|
|
#include <a.out.h>
|
|
|
|
#include <stab.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "ld.h"
|
1996-10-01 01:22:51 +00:00
|
|
|
#include "dynamic.h"
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
static struct _dynamic rrs_dyn; /* defined in link.h */
|
|
|
|
static struct so_debug rrs_so_debug; /* defined in link.h */
|
|
|
|
static struct section_dispatch_table rrs_sdt; /* defined in link.h */
|
1993-11-03 23:41:59 +00:00
|
|
|
static got_t *rrs_got;
|
|
|
|
static jmpslot_t *rrs_plt; /* defined in md.h */
|
|
|
|
static struct relocation_info *rrs_reloc;
|
|
|
|
static struct nzlist *rrs_symbols; /* RRS symbol table */
|
|
|
|
static char *rrs_strtab; /* RRS strings */
|
|
|
|
static struct rrs_hash *rrs_hashtab; /* RT hash table */
|
|
|
|
static struct shobj *rrs_shobjs;
|
1996-10-01 01:22:51 +00:00
|
|
|
char *rrs_search_paths; /* `-L' RT search */
|
|
|
|
static int rrs_search_paths_size;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
static int reserved_rrs_relocs;
|
|
|
|
static int claimed_rrs_relocs;
|
1994-12-23 22:31:35 +00:00
|
|
|
static int discarded_rrs_relocs;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
static int number_of_gotslots = 1;
|
|
|
|
static int number_of_jmpslots = 1;
|
1993-11-03 23:41:59 +00:00
|
|
|
static int number_of_rrs_hash_entries;
|
|
|
|
static int number_of_rrs_symbols;
|
|
|
|
static int rrs_strtab_size;
|
|
|
|
static int rrs_symbol_size;
|
|
|
|
|
|
|
|
static int current_jmpslot_offset;
|
|
|
|
static int current_got_offset;
|
1996-10-01 01:22:51 +00:00
|
|
|
static int max_got_offset;
|
|
|
|
static int min_got_offset;
|
1995-03-04 17:49:20 +00:00
|
|
|
static int got_origin;
|
1996-10-01 01:22:51 +00:00
|
|
|
static int current_reloc_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
static int current_hash_index;
|
1994-02-13 20:43:13 +00:00
|
|
|
int number_of_shobjs;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
/* Convert a GOT offset into a table entry */
|
|
|
|
#define GOTP(off) ((got_t *)((long)rrs_got + got_origin + (off)))
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
struct shobj {
|
|
|
|
struct shobj *next;
|
|
|
|
struct file_entry *entry;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
RRS text segment:
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- sdt_rel (rrs_text_start)
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| relocation |
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- <sdt>.sdt_hash
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| hash buckets |
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- <sdt>.sdt_nzlist
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| symbols |
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- <sdt>.sdt_strings
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| strings |
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- <sdt>.sdt_sods
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| shobjs |
|
|
|
|
| |
|
|
|
|
+-------------------+
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
| shobjs strings | <-- <shobj>.sod_name
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
+-------------------+
|
|
|
|
|
|
|
|
|
|
|
|
RRS data segment:
|
|
|
|
|
|
|
|
+-------------------+ <-- __DYNAMIC (rrs_data_start)
|
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
| _dymamic |
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- __DYNAMIC.d_debug
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
| so_debug |
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- __DYNAMIC.d_un.d_sdt
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
| sdt |
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1995-03-04 17:49:20 +00:00
|
|
|
+-------------------+ <-- sdt_got
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1995-03-04 17:49:20 +00:00
|
|
|
| _GOT_ | <-- _GLOBAL_OFFSET_TABLE_
|
|
|
|
| | ( == sdt_got + got_origin)
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
1994-02-13 20:43:13 +00:00
|
|
|
+-------------------+ <-- sdt_plt
|
1993-11-03 23:41:59 +00:00
|
|
|
| |
|
|
|
|
| PLT |
|
|
|
|
| |
|
|
|
|
+-------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add NAME to the list of needed run-time objects.
|
1993-11-22 19:05:31 +00:00
|
|
|
* Return 1 if ENTRY was added to the list.
|
1993-11-03 23:41:59 +00:00
|
|
|
*/
|
1993-11-22 19:05:31 +00:00
|
|
|
int
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_add_shobj(entry)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct shobj **p;
|
|
|
|
|
1993-11-22 19:05:31 +00:00
|
|
|
for (p = &rrs_shobjs; *p != NULL; p = &(*p)->next)
|
|
|
|
if (strcmp((*p)->entry->filename, entry->filename) == 0)
|
|
|
|
return 0;
|
1993-11-03 23:41:59 +00:00
|
|
|
*p = (struct shobj *)xmalloc(sizeof(struct shobj));
|
|
|
|
(*p)->next = NULL;
|
|
|
|
(*p)->entry = entry;
|
|
|
|
|
|
|
|
number_of_shobjs++;
|
1993-11-22 19:05:31 +00:00
|
|
|
return 1;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
alloc_rrs_reloc(entry, sp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
symbol *sp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("alloc_rrs_reloc: %s in %s\n", sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
reserved_rrs_relocs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
alloc_rrs_segment_reloc(entry, r)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *r;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("alloc_rrs_segment_reloc at %#x in %s\n",
|
|
|
|
r->r_address, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
reserved_rrs_relocs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
alloc_rrs_jmpslot(entry, sp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
symbol *sp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
1995-03-04 17:49:20 +00:00
|
|
|
if (sp->flags & GS_HASJMPSLOT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sp->flags |= GS_HASJMPSLOT;
|
|
|
|
number_of_jmpslots++;
|
|
|
|
reserved_rrs_relocs++;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
alloc_rrs_gotslot(entry, r, lsp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *r;
|
|
|
|
struct localsymbol *lsp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
symbol *sp = lsp->symbol;
|
|
|
|
|
|
|
|
if (!RELOC_EXTERN_P(r)) {
|
|
|
|
|
1993-11-30 20:47:54 +00:00
|
|
|
if (sp != NULL) {
|
1995-03-04 17:49:20 +00:00
|
|
|
warnx("%s: relocation for internal symbol "
|
|
|
|
"expected at %#x",
|
|
|
|
get_file_name(entry), RELOC_ADDRESS(r));
|
1993-11-30 20:47:54 +00:00
|
|
|
return;
|
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (!RELOC_STATICS_THROUGH_GOT_P(r))
|
|
|
|
/* No need for a GOT slot */
|
|
|
|
return;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (lsp->flags & LS_HASGOTSLOT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
lsp->flags |= LS_HASGOTSLOT;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1993-11-30 20:47:54 +00:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if (sp == NULL) {
|
1995-03-04 17:49:20 +00:00
|
|
|
warnx("%s: relocation must refer "
|
|
|
|
"to global symbol at %#x",
|
|
|
|
get_file_name(entry), RELOC_ADDRESS(r));
|
1993-11-30 20:47:54 +00:00
|
|
|
return;
|
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (sp->alias)
|
|
|
|
sp = sp->alias;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (sp->flags & GS_HASGOTSLOT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sp->flags |= GS_HASGOTSLOT;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
number_of_gotslots++;
|
|
|
|
reserved_rrs_relocs++;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
alloc_rrs_cpy_reloc(entry, sp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
symbol *sp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
1994-02-13 20:43:13 +00:00
|
|
|
if (sp->flags & GS_CPYRELOCRESERVED)
|
1993-11-03 23:41:59 +00:00
|
|
|
return;
|
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("alloc_rrs_copy: %s in %s\n", sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
1994-02-13 20:43:13 +00:00
|
|
|
sp->flags |= GS_CPYRELOCRESERVED;
|
1993-11-03 23:41:59 +00:00
|
|
|
reserved_rrs_relocs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct relocation_info *
|
|
|
|
rrs_next_reloc()
|
|
|
|
{
|
|
|
|
struct relocation_info *r;
|
|
|
|
|
|
|
|
r = rrs_reloc + claimed_rrs_relocs++;
|
|
|
|
if (claimed_rrs_relocs > reserved_rrs_relocs)
|
1994-06-15 22:41:19 +00:00
|
|
|
errx(1, "internal error: RRS relocs exceed allocation %d",
|
1993-11-03 23:41:59 +00:00
|
|
|
reserved_rrs_relocs);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim a RRS relocation as a result of a regular (ie. non-PIC)
|
|
|
|
* relocation record in a rel file.
|
|
|
|
*
|
|
|
|
* Return 1 if the output file needs no further updating.
|
|
|
|
* Return 0 if the relocation value pointed to by RELOCATION must
|
|
|
|
* written to a.out.
|
|
|
|
*/
|
|
|
|
int
|
1993-11-30 20:47:54 +00:00
|
|
|
claim_rrs_reloc(entry, rp, sp, relocation)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
|
|
|
symbol *sp;
|
|
|
|
long *relocation;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r = rrs_next_reloc();
|
1993-11-22 19:05:31 +00:00
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
if (rp->r_address < text_start + text_size)
|
1994-06-15 22:41:19 +00:00
|
|
|
warnx("%s: RRS text relocation at %#x for \"%s\"",
|
1993-11-30 20:47:54 +00:00
|
|
|
get_file_name(entry), rp->r_address, sp->name);
|
1993-11-22 19:05:31 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("claim_rrs_reloc: %s in %s\n", sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
r->r_address = rp->r_address;
|
|
|
|
r->r_symbolnum = sp->rrs_symbolnum;
|
|
|
|
|
|
|
|
if (link_mode & SYMBOLIC) {
|
|
|
|
if (!sp->defined)
|
1994-06-15 22:41:19 +00:00
|
|
|
warnx("Cannot reduce symbol \"%s\" in %s",
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
RELOC_EXTERN_P(r) = 0;
|
|
|
|
*relocation += sp->value;
|
|
|
|
(void) md_make_reloc(rp, r, RELTYPE_RELATIVE);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
RELOC_EXTERN_P(r) = 1;
|
|
|
|
return md_make_reloc(rp, r, RELTYPE_EXTERN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim a jmpslot. Setup RRS relocation if claimed for the first time.
|
|
|
|
*/
|
|
|
|
long
|
1993-11-30 20:47:54 +00:00
|
|
|
claim_rrs_jmpslot(entry, rp, sp, addend)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
|
|
|
symbol *sp;
|
|
|
|
long addend;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (!(sp->flags & GS_HASJMPSLOT))
|
|
|
|
errx(1, "internal error: "
|
|
|
|
"%s: claim_rrs_jmpslot: %s: no reservation",
|
|
|
|
get_file_name(entry),
|
|
|
|
sp->name);
|
|
|
|
|
|
|
|
if (sp->jmpslot_offset != -1)
|
1994-02-13 20:43:13 +00:00
|
|
|
return rrs_sdt.sdt_plt + sp->jmpslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->jmpslot_offset = current_jmpslot_offset;
|
|
|
|
current_jmpslot_offset += sizeof(jmpslot_t);
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
#ifdef DEBUG
|
1994-06-15 22:41:19 +00:00
|
|
|
printf("claim_rrs_jmpslot: %s: %s(%d) -> offset %x\n",
|
1993-11-30 20:47:54 +00:00
|
|
|
get_file_name(entry),
|
1994-06-15 22:41:19 +00:00
|
|
|
sp->name, sp->rrs_symbolnum, sp->jmpslot_offset);
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if ((link_mode & SYMBOLIC) || rrs_section_type == RRS_PARTIAL) {
|
|
|
|
if (!sp->defined)
|
1994-06-15 22:41:19 +00:00
|
|
|
warnx("Cannot reduce symbol \"%s\" in %s",
|
1993-11-30 20:47:54 +00:00
|
|
|
sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
md_fix_jmpslot( rrs_plt + sp->jmpslot_offset/sizeof(jmpslot_t),
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_plt + sp->jmpslot_offset,
|
1993-11-03 23:41:59 +00:00
|
|
|
sp->value);
|
1994-12-23 22:31:35 +00:00
|
|
|
if (rrs_section_type == RRS_PARTIAL || !JMPSLOT_NEEDS_RELOC) {
|
|
|
|
/* PLT is self-contained */
|
|
|
|
discarded_rrs_relocs++;
|
1994-02-13 20:43:13 +00:00
|
|
|
return rrs_sdt.sdt_plt + sp->jmpslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
} else {
|
1994-02-13 20:43:13 +00:00
|
|
|
md_make_jmpslot(rrs_plt + sp->jmpslot_offset/sizeof(jmpslot_t),
|
1993-11-03 23:41:59 +00:00
|
|
|
sp->jmpslot_offset,
|
|
|
|
claimed_rrs_relocs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Install a run-time relocation for this PLT entry.
|
|
|
|
*/
|
|
|
|
r = rrs_next_reloc();
|
|
|
|
|
|
|
|
RELOC_SYMBOL(r) = sp->rrs_symbolnum;
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
r->r_address = (long)rrs_sdt.sdt_plt + sp->jmpslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (link_mode & SYMBOLIC) {
|
|
|
|
RELOC_EXTERN_P(r) = 0;
|
|
|
|
md_make_jmpreloc(rp, r, RELTYPE_RELATIVE);
|
|
|
|
} else {
|
|
|
|
RELOC_EXTERN_P(r) = 1;
|
|
|
|
md_make_jmpreloc(rp, r, 0);
|
|
|
|
}
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
return rrs_sdt.sdt_plt + sp->jmpslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim GOT entry for a global symbol. If this is the first relocation
|
|
|
|
* claiming the entry, setup a RRS relocation for it.
|
|
|
|
* Return offset into the GOT allocated to this symbol.
|
|
|
|
*/
|
|
|
|
long
|
1993-11-30 20:47:54 +00:00
|
|
|
claim_rrs_gotslot(entry, rp, lsp, addend)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
|
|
|
struct localsymbol *lsp;
|
|
|
|
long addend;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r;
|
|
|
|
symbol *sp = lsp->symbol;
|
|
|
|
int reloc_type = 0;
|
|
|
|
|
1993-11-30 20:47:54 +00:00
|
|
|
if (sp == NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
if (sp->alias)
|
|
|
|
sp = sp->alias;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (!(sp->flags & GS_HASGOTSLOT))
|
|
|
|
errx(1, "internal error: "
|
|
|
|
"%s: claim_rrs_gotslot: %s: no reservation",
|
1993-11-30 20:47:54 +00:00
|
|
|
get_file_name(entry), sp->name);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (sp->gotslot_offset != -1) {
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (*GOTP(sp->gotslot_offset) != addend +
|
|
|
|
((!(link_mode & SHAREABLE) || (link_mode & SYMBOLIC))
|
|
|
|
? sp->value : 0))
|
|
|
|
errx(1, "%s: %s: gotslot at %#x is multiple valued, "
|
|
|
|
"*got = %#x, addend = %#x, sp->value = %#x",
|
1994-12-23 22:31:35 +00:00
|
|
|
get_file_name(entry), sp->name,
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->gotslot_offset,
|
|
|
|
*GOTP(sp->gotslot_offset), addend, sp->value);
|
1994-12-23 22:31:35 +00:00
|
|
|
#endif
|
1993-11-03 23:41:59 +00:00
|
|
|
/* This symbol already passed here before. */
|
|
|
|
return sp->gotslot_offset;
|
1994-12-23 22:31:35 +00:00
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (current_got_offset == 0)
|
|
|
|
/* GOT offset 0 is reserved */
|
|
|
|
current_got_offset += sizeof(got_t);
|
|
|
|
|
1996-10-01 01:22:51 +00:00
|
|
|
if (current_got_offset > max_got_offset)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "%s: GOT overflow on symbol `%s' at %#x",
|
|
|
|
get_file_name(entry), sp->name, RELOC_ADDRESS(rp));
|
|
|
|
|
|
|
|
sp->gotslot_offset = current_got_offset;
|
|
|
|
current_got_offset += sizeof(got_t);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("claim_rrs_gotslot: %s(%d,%#x) slot offset %#x, addend %#x\n",
|
|
|
|
sp->name, sp->rrs_symbolnum, sp->value, sp->gotslot_offset, addend);
|
|
|
|
#endif
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
if (sp->defined &&
|
1994-12-23 22:31:35 +00:00
|
|
|
(!(link_mode & SHAREABLE) || (link_mode & SYMBOLIC))) {
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reduce to just a base-relative translation.
|
|
|
|
*/
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
*GOTP(sp->gotslot_offset) = sp->value + addend;
|
1993-11-03 23:41:59 +00:00
|
|
|
reloc_type = RELTYPE_RELATIVE;
|
|
|
|
|
|
|
|
} else if ((link_mode & SYMBOLIC) || rrs_section_type == RRS_PARTIAL) {
|
|
|
|
/*
|
|
|
|
* SYMBOLIC: all symbols must be known.
|
|
|
|
* RRS_PARTIAL: we don't link against shared objects,
|
|
|
|
* so again all symbols must be known.
|
|
|
|
*/
|
1994-06-15 22:41:19 +00:00
|
|
|
warnx("Cannot reduce symbol \"%s\" in %s",
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->name, get_file_name(entry));
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/*
|
1994-12-23 22:31:35 +00:00
|
|
|
* This gotslot will be updated with symbol value at run-time.
|
1993-11-03 23:41:59 +00:00
|
|
|
*/
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
*GOTP(sp->gotslot_offset) = addend;
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rrs_section_type == RRS_PARTIAL) {
|
|
|
|
/*
|
|
|
|
* Base address is known, gotslot should be fully
|
|
|
|
* relocated by now.
|
|
|
|
* NOTE: RRS_PARTIAL implies !SHAREABLE.
|
|
|
|
*/
|
|
|
|
if (!sp->defined)
|
1994-06-15 22:41:19 +00:00
|
|
|
warnx("Cannot reduce symbol \"%s\" in %s",
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->name, get_file_name(entry));
|
1994-12-23 22:31:35 +00:00
|
|
|
discarded_rrs_relocs++;
|
1993-11-03 23:41:59 +00:00
|
|
|
return sp->gotslot_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim a relocation entry.
|
|
|
|
* If symbol is defined and in "main" (!SHAREABLE)
|
|
|
|
* we still put out a relocation as we cannot easily
|
|
|
|
* undo the allocation.
|
|
|
|
* `RELTYPE_RELATIVE' relocations have the external bit off
|
|
|
|
* as no symbol need be looked up at run-time.
|
|
|
|
*/
|
|
|
|
r = rrs_next_reloc();
|
1995-03-04 17:49:20 +00:00
|
|
|
r->r_address = got_symbol->value + sp->gotslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
RELOC_SYMBOL(r) = sp->rrs_symbolnum;
|
|
|
|
RELOC_EXTERN_P(r) = !(reloc_type == RELTYPE_RELATIVE);
|
|
|
|
md_make_gotreloc(rp, r, reloc_type);
|
|
|
|
|
|
|
|
return sp->gotslot_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Claim a GOT entry for a static symbol. Return offset of the
|
1994-12-23 22:31:35 +00:00
|
|
|
* allocated GOT entry. If RELOC_STATICS_THROUGH_GOT_P is in effect,
|
1993-11-03 23:41:59 +00:00
|
|
|
* return the offset of the symbol with respect to the *location* of
|
|
|
|
* the GOT.
|
|
|
|
*/
|
|
|
|
long
|
|
|
|
claim_rrs_internal_gotslot(entry, rp, lsp, addend)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
|
|
|
struct localsymbol *lsp;
|
|
|
|
long addend;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r;
|
|
|
|
|
|
|
|
addend += lsp->nzlist.nz_value;
|
|
|
|
|
|
|
|
if (!RELOC_STATICS_THROUGH_GOT_P(r))
|
1995-03-04 17:49:20 +00:00
|
|
|
return addend - got_symbol->value;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (!(lsp->flags & LS_HASGOTSLOT))
|
|
|
|
errx(1, "internal error: "
|
|
|
|
"%s: claim_rrs_internal_gotslot at %#x: no reservation",
|
1993-11-30 20:47:54 +00:00
|
|
|
get_file_name(entry), RELOC_ADDRESS(rp));
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (lsp->gotslot_offset != -1) {
|
|
|
|
/* Already claimed */
|
|
|
|
if (*GOTP(lsp->gotslot_offset) != addend)
|
|
|
|
errx(1, "%s: gotslot at %#x is multiple valued",
|
1994-12-23 22:31:35 +00:00
|
|
|
get_file_name(entry), lsp->gotslot_offset);
|
1993-11-03 23:41:59 +00:00
|
|
|
return lsp->gotslot_offset;
|
1994-12-23 22:31:35 +00:00
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
if (current_got_offset == 0)
|
|
|
|
/* GOT offset 0 is reserved */
|
|
|
|
current_got_offset += sizeof(got_t);
|
|
|
|
|
1996-10-01 01:22:51 +00:00
|
|
|
if (current_got_offset > max_got_offset)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "%s: GOT overflow for relocation at %#x",
|
|
|
|
get_file_name(entry), RELOC_ADDRESS(rp));
|
|
|
|
|
|
|
|
lsp->gotslot_offset = current_got_offset;
|
|
|
|
current_got_offset += sizeof(got_t);
|
|
|
|
|
|
|
|
*GOTP(lsp->gotslot_offset) = addend;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("claim_rrs_internal_gotslot: %s: slot offset %#x, addend = %#x\n",
|
|
|
|
get_file_name(entry), lsp->gotslot_offset, addend);
|
|
|
|
#endif
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-12-23 22:31:35 +00:00
|
|
|
if (rrs_section_type == RRS_PARTIAL) {
|
|
|
|
discarded_rrs_relocs++;
|
1993-11-03 23:41:59 +00:00
|
|
|
return lsp->gotslot_offset;
|
1994-12-23 22:31:35 +00:00
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Relocation entry needed for this static GOT entry.
|
|
|
|
*/
|
|
|
|
r = rrs_next_reloc();
|
1995-03-04 17:49:20 +00:00
|
|
|
r->r_address = got_symbol->value + lsp->gotslot_offset;
|
1993-11-03 23:41:59 +00:00
|
|
|
RELOC_EXTERN_P(r) = 0;
|
|
|
|
md_make_gotreloc(rp, r, RELTYPE_RELATIVE);
|
|
|
|
return lsp->gotslot_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
claim_rrs_cpy_reloc(entry, rp, sp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
|
|
|
symbol *sp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r;
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
if (sp->flags & GS_CPYRELOCCLAIMED)
|
1993-11-03 23:41:59 +00:00
|
|
|
return;
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
if (!(sp->flags & GS_CPYRELOCRESERVED))
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"%s: claim_cpy_reloc: %s: no reservation",
|
1993-11-30 20:47:54 +00:00
|
|
|
get_file_name(entry), sp->name);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("claim_rrs_copy: %s: %s -> %x\n",
|
|
|
|
get_file_name(entry), sp->name, sp->so_defined);
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
r = rrs_next_reloc();
|
1994-02-13 20:43:13 +00:00
|
|
|
sp->flags |= GS_CPYRELOCCLAIMED;
|
1993-11-03 23:41:59 +00:00
|
|
|
r->r_address = rp->r_address;
|
|
|
|
RELOC_SYMBOL(r) = sp->rrs_symbolnum;
|
|
|
|
RELOC_EXTERN_P(r) = RELOC_EXTERN_P(rp);
|
|
|
|
md_make_cpyreloc(rp, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1993-11-30 20:47:54 +00:00
|
|
|
claim_rrs_segment_reloc(entry, rp)
|
1995-03-04 17:49:20 +00:00
|
|
|
struct file_entry *entry;
|
|
|
|
struct relocation_info *rp;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
struct relocation_info *r = rrs_next_reloc();
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
1993-11-30 20:47:54 +00:00
|
|
|
printf("claim_rrs_segment_reloc: %s at %#x\n",
|
|
|
|
get_file_name(entry), rp->r_address);
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
1994-12-23 22:31:35 +00:00
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
r->r_address = rp->r_address;
|
|
|
|
RELOC_TYPE(r) = RELOC_TYPE(rp);
|
|
|
|
RELOC_EXTERN_P(r) = 0;
|
|
|
|
md_make_reloc(rp, r, RELTYPE_RELATIVE);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill the RRS hash table for the given symbol name.
|
|
|
|
* NOTE: the hash value computation must match the one in rtld.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
rrs_insert_hash(cp, index)
|
1995-03-04 17:49:20 +00:00
|
|
|
char *cp;
|
|
|
|
int index;
|
1993-11-03 23:41:59 +00:00
|
|
|
{
|
|
|
|
int hashval = 0;
|
|
|
|
struct rrs_hash *hp;
|
|
|
|
|
|
|
|
for (; *cp; cp++)
|
|
|
|
hashval = (hashval << 1) + *cp;
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
hashval = (hashval & 0x7fffffff) % rrs_sdt.sdt_buckets;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Get to the bucket */
|
|
|
|
hp = rrs_hashtab + hashval;
|
|
|
|
if (hp->rh_symbolnum == -1) {
|
|
|
|
/* Empty bucket, use it */
|
|
|
|
hp->rh_symbolnum = index;
|
|
|
|
hp->rh_next = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (hp->rh_next != 0)
|
|
|
|
hp = rrs_hashtab + hp->rh_next;
|
|
|
|
|
|
|
|
hp->rh_next = current_hash_index++;
|
|
|
|
hp = rrs_hashtab + hp->rh_next;
|
|
|
|
hp->rh_symbolnum = index;
|
|
|
|
hp->rh_next = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There are two interesting cases to consider here.
|
|
|
|
*
|
|
|
|
* 1) No shared objects were loaded, but there were PIC input rel files.
|
|
|
|
* In this case we must output a _GLOBAL_OFFSET_TABLE_ but no other
|
|
|
|
* RRS data. Also, the entries in the GOT must be fully resolved.
|
|
|
|
*
|
|
|
|
* 2) It's a genuine dynamically linked program, so the whole RRS scoop
|
|
|
|
* goes into a.out.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
consider_rrs_section_lengths()
|
|
|
|
{
|
|
|
|
int n;
|
1996-07-12 19:08:36 +00:00
|
|
|
struct shobj *shp;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
#ifdef notyet
|
1996-07-12 19:08:36 +00:00
|
|
|
struct shobj **shpp;
|
1994-02-13 20:43:13 +00:00
|
|
|
/* We run into trouble with this as long as shared object symbols
|
|
|
|
are not checked for definitions */
|
|
|
|
/*
|
|
|
|
* First, determine the real number of shared objects we need.
|
|
|
|
*/
|
|
|
|
for (shpp = &rrs_shobjs; *shpp; shpp = &(*shpp)->next) {
|
|
|
|
while (*shpp && !((*shpp)->entry->flags & E_SYMBOLS_USED)) {
|
|
|
|
if (--number_of_shobjs < 0)
|
1994-06-15 22:41:19 +00:00
|
|
|
errx(1, "internal error: number_of_shobjs < 0");
|
1994-02-13 20:43:13 +00:00
|
|
|
*shpp = (*shpp)->next;
|
|
|
|
}
|
|
|
|
if (*shpp == NULL)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
/* First, determine what of the RRS we want */
|
1993-11-03 23:41:59 +00:00
|
|
|
if (relocatable_output)
|
|
|
|
rrs_section_type = RRS_NONE;
|
|
|
|
else if (link_mode & SHAREABLE)
|
|
|
|
rrs_section_type = RRS_FULL;
|
|
|
|
else if (number_of_shobjs == 0 /*&& !(link_mode & DYNAMIC)*/) {
|
|
|
|
/*
|
|
|
|
* First slots in both tables are reserved
|
|
|
|
* hence the "> 1" condition
|
|
|
|
*/
|
|
|
|
if (number_of_gotslots > 1 || number_of_jmpslots > 1)
|
|
|
|
rrs_section_type = RRS_PARTIAL;
|
|
|
|
else
|
|
|
|
rrs_section_type = RRS_NONE;
|
|
|
|
} else
|
|
|
|
rrs_section_type = RRS_FULL;
|
|
|
|
|
|
|
|
if (rrs_section_type == RRS_NONE) {
|
|
|
|
got_symbol->defined = 0;
|
1995-03-04 17:49:20 +00:00
|
|
|
if (reserved_rrs_relocs > 0)
|
|
|
|
errx(1, "internal error: empty RRS has reservations");
|
1993-11-03 23:41:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rrs_symbol_size = LD_VERSION_NZLIST_P(soversion) ?
|
|
|
|
sizeof(struct nzlist) : sizeof(struct nlist);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is an entry point, __DYNAMIC must be referenced (usually
|
|
|
|
* from crt0), as this is the method used to determine whether the
|
|
|
|
* run-time linker must be called.
|
|
|
|
*/
|
1994-12-23 22:31:35 +00:00
|
|
|
if (!(link_mode & SHAREABLE) && !(dynamic_symbol->flags & GS_REFERENCED))
|
1994-06-15 22:41:19 +00:00
|
|
|
errx(1, "No reference to __DYNAMIC");
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
dynamic_symbol->flags |= GS_REFERENCED;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (number_of_gotslots > 1)
|
1994-02-13 20:43:13 +00:00
|
|
|
got_symbol->flags |= GS_REFERENCED;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Next, allocate relocs, got and plt */
|
|
|
|
n = reserved_rrs_relocs * sizeof(struct relocation_info);
|
|
|
|
rrs_reloc = (struct relocation_info *)xmalloc(n);
|
|
|
|
bzero(rrs_reloc, n);
|
|
|
|
|
|
|
|
n = number_of_gotslots * sizeof(got_t);
|
|
|
|
rrs_got = (got_t *)xmalloc(n);
|
|
|
|
bzero(rrs_got, n);
|
|
|
|
|
|
|
|
n = number_of_jmpslots * sizeof(jmpslot_t);
|
|
|
|
rrs_plt = (jmpslot_t *)xmalloc(n);
|
|
|
|
bzero(rrs_plt, n);
|
|
|
|
|
|
|
|
/* Initialize first jmpslot */
|
|
|
|
md_fix_jmpslot(rrs_plt, 0, 0);
|
|
|
|
|
|
|
|
if (rrs_section_type == RRS_PARTIAL) {
|
|
|
|
rrs_data_size = number_of_gotslots * sizeof(got_t);
|
|
|
|
rrs_data_size += number_of_jmpslots * sizeof(jmpslot_t);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Walk the symbol table, assign RRS symbol numbers
|
1994-12-23 22:31:35 +00:00
|
|
|
* and calculate string space.
|
1993-11-03 23:41:59 +00:00
|
|
|
* Assign number 0 to __DYNAMIC (!! Sun compatibility)
|
|
|
|
*/
|
|
|
|
dynamic_symbol->rrs_symbolnum = number_of_rrs_symbols++;
|
|
|
|
FOR_EACH_SYMBOL(i ,sp) {
|
1994-12-23 22:31:35 +00:00
|
|
|
if ((link_mode & SHAREABLE) && sp->warning) {
|
|
|
|
/* Allocate N_WARNING & co */
|
|
|
|
rrs_strtab_size +=
|
|
|
|
2 + strlen(sp->name) + strlen(sp->warning);
|
|
|
|
number_of_rrs_symbols += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(sp->flags & GS_REFERENCED))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
rrs_strtab_size += 1 + strlen(sp->name);
|
|
|
|
if (sp != dynamic_symbol)
|
|
|
|
sp->rrs_symbolnum = number_of_rrs_symbols++;
|
|
|
|
if (sp->alias) {
|
|
|
|
/*
|
|
|
|
* (sigh) Always allocate space to hold the
|
|
|
|
* indirection. At this point there's not
|
|
|
|
* enough information to decide whether it's
|
|
|
|
* actually needed or not.
|
|
|
|
*/
|
|
|
|
number_of_rrs_symbols++;
|
|
|
|
rrs_strtab_size += 1 + strlen(sp->alias->name);
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
} END_EACH_SYMBOL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now that we know how many RRS symbols there are going to be,
|
|
|
|
* allocate and initialize the RRS symbol hash table.
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_buckets = number_of_rrs_symbols/4;
|
|
|
|
if (rrs_sdt.sdt_buckets < 4)
|
|
|
|
rrs_sdt.sdt_buckets = 4;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
number_of_rrs_hash_entries = rrs_sdt.sdt_buckets +
|
|
|
|
number_of_rrs_symbols;
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_hashtab = (struct rrs_hash *)xmalloc(
|
|
|
|
number_of_rrs_hash_entries * sizeof(struct rrs_hash));
|
1994-02-13 20:43:13 +00:00
|
|
|
for (n = 0; n < rrs_sdt.sdt_buckets; n++)
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_hashtab[n].rh_symbolnum = -1;
|
1994-02-13 20:43:13 +00:00
|
|
|
current_hash_index = rrs_sdt.sdt_buckets;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get symbols into hash table now, so we can fine tune the size
|
|
|
|
* of the latter. We adjust the value of `number_of_rrs_hash_entries'
|
|
|
|
* to the number of hash link slots actually used.
|
|
|
|
*/
|
|
|
|
FOR_EACH_SYMBOL(i ,sp) {
|
1994-02-13 20:43:13 +00:00
|
|
|
if (sp->flags & GS_REFERENCED)
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_insert_hash(sp->name, sp->rrs_symbolnum);
|
|
|
|
} END_EACH_SYMBOL;
|
|
|
|
number_of_rrs_hash_entries = current_hash_index;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate RRS section sizes.
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_data_size = sizeof(struct _dynamic);
|
|
|
|
rrs_data_size += sizeof(struct so_debug);
|
|
|
|
rrs_data_size += sizeof(struct section_dispatch_table);
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_data_size += number_of_gotslots * sizeof(got_t);
|
|
|
|
rrs_data_size += number_of_jmpslots * sizeof(jmpslot_t);
|
|
|
|
rrs_data_size = MALIGN(rrs_data_size);
|
|
|
|
|
|
|
|
rrs_text_size = reserved_rrs_relocs * sizeof(struct relocation_info);
|
|
|
|
rrs_text_size += number_of_rrs_hash_entries * sizeof(struct rrs_hash);
|
|
|
|
rrs_text_size += number_of_rrs_symbols * rrs_symbol_size;
|
1996-10-01 01:22:51 +00:00
|
|
|
rrs_search_paths_size = rrs_search_paths
|
|
|
|
? strlen(rrs_search_paths) + 1
|
|
|
|
: 0;
|
|
|
|
rrs_search_paths_size = MALIGN(rrs_search_paths_size);
|
|
|
|
rrs_text_size += rrs_search_paths_size;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Align strings size */
|
|
|
|
rrs_strtab_size = MALIGN(rrs_strtab_size);
|
|
|
|
rrs_text_size += rrs_strtab_size;
|
|
|
|
|
|
|
|
/* Process needed shared objects */
|
|
|
|
for (shp = rrs_shobjs; shp; shp = shp->next) {
|
|
|
|
char *name = shp->entry->local_sym_name;
|
|
|
|
|
|
|
|
if (*name == '-' && *(name+1) == 'l')
|
|
|
|
name += 2;
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_text_size += sizeof(struct sod);
|
1993-11-03 23:41:59 +00:00
|
|
|
rrs_text_size += 1 + strlen(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally, align size */
|
|
|
|
rrs_text_size = MALIGN(rrs_text_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
relocate_rrs_addresses()
|
|
|
|
{
|
1996-10-01 01:22:51 +00:00
|
|
|
int gotsize;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
dynamic_symbol->value = 0;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
/*
|
|
|
|
* Get ready to allocate linkage table offsets.
|
|
|
|
* First jmpslot is reserved for the run-time binder
|
|
|
|
* GOT entry at offset 0 is reserved for `__DYNAMIC'.
|
|
|
|
*/
|
|
|
|
current_jmpslot_offset = sizeof(jmpslot_t);
|
|
|
|
current_got_offset = 0;
|
1996-10-01 01:22:51 +00:00
|
|
|
max_got_offset = MAX_GOTOFF(pic_type);
|
|
|
|
min_got_offset = MIN_GOTOFF(pic_type);
|
|
|
|
gotsize = number_of_gotslots * sizeof(got_t);
|
1995-03-04 17:49:20 +00:00
|
|
|
|
1996-10-01 01:22:51 +00:00
|
|
|
if (gotsize + min_got_offset - (int)sizeof(got_t) > max_got_offset)
|
|
|
|
warnx("Global Offset Table overflow (use `-fPIC')");
|
1995-03-04 17:49:20 +00:00
|
|
|
|
1996-10-01 01:22:51 +00:00
|
|
|
if (gotsize > max_got_offset)
|
|
|
|
/* Position at "two-complements" origin */
|
|
|
|
current_got_offset += min_got_offset;
|
1995-03-04 17:49:20 +00:00
|
|
|
|
|
|
|
got_origin = -current_got_offset;
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
if (rrs_section_type == RRS_NONE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (rrs_section_type == RRS_PARTIAL) {
|
1995-03-04 17:49:20 +00:00
|
|
|
rrs_sdt.sdt_got = rrs_data_start;
|
|
|
|
got_symbol->value = rrs_sdt.sdt_got + got_origin;
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_plt = rrs_sdt.sdt_got +
|
1994-12-23 22:31:35 +00:00
|
|
|
number_of_gotslots * sizeof(got_t);
|
1993-11-03 23:41:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RRS data relocations.
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_dyn.d_version = soversion;
|
|
|
|
rrs_dyn.d_debug = (struct so_debug *)
|
1994-12-23 22:31:35 +00:00
|
|
|
(rrs_data_start + sizeof(struct _dynamic));
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_dyn.d_un.d_sdt = (struct section_dispatch_table *)
|
1994-12-23 22:31:35 +00:00
|
|
|
((long)rrs_dyn.d_debug + sizeof(struct so_debug));
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_got = (long)rrs_dyn.d_un.d_sdt +
|
1994-12-23 22:31:35 +00:00
|
|
|
sizeof(struct section_dispatch_table);
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_plt = rrs_sdt.sdt_got + number_of_gotslots*sizeof(got_t);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* RRS text relocations.
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_rel = rrs_text_start;
|
1993-11-03 23:41:59 +00:00
|
|
|
/*
|
|
|
|
* Sun BUG compatibility alert.
|
|
|
|
* Main program's RRS text values are relative to TXTADDR? WHY??
|
|
|
|
*/
|
|
|
|
#ifdef SUN_COMPAT
|
|
|
|
if (soversion == LD_VERSION_SUN && !(link_mode & SHAREABLE))
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_rel -= N_TXTADDR(outheader);
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_hash = rrs_sdt.sdt_rel +
|
1993-11-03 23:41:59 +00:00
|
|
|
reserved_rrs_relocs * sizeof(struct relocation_info);
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_nzlist = rrs_sdt.sdt_hash +
|
1993-11-03 23:41:59 +00:00
|
|
|
number_of_rrs_hash_entries * sizeof(struct rrs_hash);
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_strings = rrs_sdt.sdt_nzlist +
|
1993-11-03 23:41:59 +00:00
|
|
|
number_of_rrs_symbols * rrs_symbol_size;
|
1996-10-01 01:22:51 +00:00
|
|
|
rrs_sdt.sdt_paths = rrs_search_paths
|
|
|
|
? rrs_sdt.sdt_strings + rrs_strtab_size
|
|
|
|
: 0;
|
|
|
|
rrs_sdt.sdt_sods = rrs_shobjs
|
|
|
|
? rrs_sdt.sdt_strings + rrs_strtab_size +
|
|
|
|
rrs_search_paths_size
|
|
|
|
: 0;
|
|
|
|
rrs_sdt.sdt_filler2 = 0;
|
1994-02-13 20:43:13 +00:00
|
|
|
rrs_sdt.sdt_str_sz = rrs_strtab_size;
|
|
|
|
rrs_sdt.sdt_text_sz = text_size;
|
|
|
|
rrs_sdt.sdt_plt_sz = number_of_jmpslots * sizeof(jmpslot_t);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
1995-03-04 17:49:20 +00:00
|
|
|
* Assign addresses to _GLOBAL_OFFSET_TABLE_ and __DYNAMIC.
|
|
|
|
* The value `&__DYNAMIC' is in the GOT table at offset 0.
|
1993-11-03 23:41:59 +00:00
|
|
|
*/
|
1995-03-04 17:49:20 +00:00
|
|
|
got_symbol->value = rrs_sdt.sdt_got + got_origin;
|
|
|
|
*GOTP(0) = dynamic_symbol->value = rrs_data_start;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
write_rrs_data()
|
|
|
|
{
|
|
|
|
long pos;
|
|
|
|
|
|
|
|
if (rrs_section_type == RRS_NONE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pos = rrs_data_start + (N_DATOFF(outheader) - DATA_START(outheader));
|
1995-03-04 17:49:20 +00:00
|
|
|
if (fseek(outstream, pos, SEEK_SET) != 0)
|
|
|
|
err(1, "write_rrs_data: fseek");
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (rrs_section_type == RRS_PARTIAL) {
|
|
|
|
/*
|
|
|
|
* Only a GOT and PLT are needed.
|
|
|
|
*/
|
|
|
|
md_swapout_got(rrs_got, number_of_gotslots);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_got, number_of_gotslots, sizeof(got_t), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
md_swapout_jmpslot(rrs_plt, number_of_jmpslots);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_plt, number_of_jmpslots,
|
|
|
|
sizeof(jmpslot_t), outstream);
|
1994-12-23 22:31:35 +00:00
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
md_swapout__dynamic(&rrs_dyn);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(&rrs_dyn, 1, sizeof(struct _dynamic), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
md_swapout_so_debug(&rrs_so_debug);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(&rrs_so_debug, 1, sizeof(struct so_debug), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
md_swapout_section_dispatch_table(&rrs_sdt);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(&rrs_sdt, 1, sizeof(struct section_dispatch_table), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
md_swapout_got(rrs_got, number_of_gotslots);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_got, number_of_gotslots, sizeof(got_t), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
md_swapout_jmpslot(rrs_plt, number_of_jmpslots);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_plt, number_of_jmpslots, sizeof(jmpslot_t), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
write_rrs_text()
|
|
|
|
{
|
|
|
|
long pos;
|
|
|
|
int i;
|
|
|
|
int symsize;
|
|
|
|
struct nzlist *nlp;
|
|
|
|
int offset = 0;
|
|
|
|
struct shobj *shp;
|
1994-02-13 20:43:13 +00:00
|
|
|
struct sod *sodp;
|
1995-03-04 17:49:20 +00:00
|
|
|
int bind;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (rrs_section_type == RRS_PARTIAL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pos = rrs_text_start + (N_TXTOFF(outheader) - TEXT_START(outheader));
|
1995-03-04 17:49:20 +00:00
|
|
|
if (fseek(outstream, pos, SEEK_SET) != 0)
|
|
|
|
err(1, "write_rrs_text: fseek");
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Write relocation records */
|
|
|
|
md_swapout_reloc(rrs_reloc, reserved_rrs_relocs);
|
|
|
|
mywrite(rrs_reloc, reserved_rrs_relocs,
|
1995-03-04 17:49:20 +00:00
|
|
|
sizeof(struct relocation_info), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Write the RRS symbol hash tables */
|
|
|
|
md_swapout_rrs_hash(rrs_hashtab, number_of_rrs_hash_entries);
|
1994-12-23 22:31:35 +00:00
|
|
|
mywrite(rrs_hashtab, number_of_rrs_hash_entries,
|
1995-03-04 17:49:20 +00:00
|
|
|
sizeof(struct rrs_hash), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine size of an RRS symbol entry, allocate space
|
|
|
|
* to collect them in.
|
|
|
|
*/
|
|
|
|
symsize = number_of_rrs_symbols * rrs_symbol_size;
|
|
|
|
nlp = rrs_symbols = (struct nzlist *)alloca(symsize);
|
|
|
|
rrs_strtab = (char *)alloca(rrs_strtab_size);
|
|
|
|
|
|
|
|
#define INCR_NLP(p) ((p) = (struct nzlist *)((long)(p) + rrs_symbol_size))
|
|
|
|
|
|
|
|
/* __DYNAMIC symbol *must* be first for Sun compatibility */
|
|
|
|
nlp->nz_desc = nlp->nz_other = 0;
|
|
|
|
if (LD_VERSION_NZLIST_P(soversion))
|
|
|
|
nlp->nz_size = 0;
|
|
|
|
nlp->nz_type = dynamic_symbol->defined;
|
|
|
|
nlp->nz_value = dynamic_symbol->value;
|
|
|
|
nlp->nz_value = dynamic_symbol->value;
|
|
|
|
nlp->nz_strx = offset;
|
|
|
|
strcpy(rrs_strtab + offset, dynamic_symbol->name);
|
|
|
|
offset += 1 + strlen(dynamic_symbol->name);
|
|
|
|
INCR_NLP(nlp);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, for each global symbol, construct a nzlist element
|
|
|
|
* for inclusion in the RRS symbol table.
|
|
|
|
*/
|
|
|
|
FOR_EACH_SYMBOL(i, sp) {
|
|
|
|
|
1994-12-23 22:31:35 +00:00
|
|
|
if (sp == dynamic_symbol)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((link_mode & SHAREABLE) && sp->warning) {
|
|
|
|
/*
|
|
|
|
* Write a N_WARNING duo.
|
|
|
|
*/
|
|
|
|
nlp->nz_type = N_WARNING;
|
|
|
|
nlp->nz_un.n_strx = offset;
|
|
|
|
nlp->nz_value = 0;
|
|
|
|
nlp->nz_other = 0;
|
|
|
|
nlp->nz_desc = 0;
|
|
|
|
nlp->nz_size = 0;
|
|
|
|
strcpy(rrs_strtab + offset, sp->warning);
|
|
|
|
offset += 1 + strlen(sp->warning);
|
|
|
|
INCR_NLP(nlp);
|
|
|
|
|
|
|
|
nlp->nz_type = N_UNDF + N_EXT;
|
|
|
|
nlp->nz_un.n_strx = offset;
|
|
|
|
nlp->nz_value = 0;
|
|
|
|
nlp->nz_other = 0;
|
|
|
|
nlp->nz_desc = 0;
|
|
|
|
nlp->nz_size = 0;
|
|
|
|
strcpy(rrs_strtab + offset, sp->name);
|
|
|
|
offset += 1 + strlen(sp->name);
|
|
|
|
INCR_NLP(nlp);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(sp->flags & GS_REFERENCED))
|
1993-11-03 23:41:59 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((long)nlp - (long)rrs_symbols >=
|
1994-12-23 22:31:35 +00:00
|
|
|
number_of_rrs_symbols * rrs_symbol_size)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"rrs symbols exceed allocation %d",
|
1993-11-03 23:41:59 +00:00
|
|
|
number_of_rrs_symbols);
|
|
|
|
|
|
|
|
nlp->nz_desc = 0;
|
|
|
|
nlp->nz_other = 0;
|
|
|
|
if (LD_VERSION_NZLIST_P(soversion))
|
|
|
|
nlp->nz_size = 0;
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
bind = (sp->flags & GS_WEAK) ? BIND_WEAK : 0;
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
if (sp->defined > 1) {
|
|
|
|
/* defined with known type */
|
1993-12-11 12:02:10 +00:00
|
|
|
if (!(link_mode & SHAREABLE) &&
|
1994-12-23 22:31:35 +00:00
|
|
|
sp->alias && sp->alias->defined > 1) {
|
1993-12-11 12:02:10 +00:00
|
|
|
/*
|
|
|
|
* If the target of an indirect symbol has
|
|
|
|
* been defined and we are outputting an
|
|
|
|
* executable, resolve the indirection; it's
|
|
|
|
* no longer needed.
|
|
|
|
*/
|
|
|
|
nlp->nz_type = sp->alias->defined;
|
|
|
|
nlp->nz_value = sp->alias->value;
|
1995-03-04 17:49:20 +00:00
|
|
|
nlp->nz_other = N_OTHER(bind, sp->alias->aux);
|
1993-12-11 12:02:10 +00:00
|
|
|
} else if (sp->defined == N_SIZE) {
|
1993-11-03 23:41:59 +00:00
|
|
|
/*
|
|
|
|
* Make sure this symbol isn't going
|
|
|
|
* to define anything.
|
|
|
|
*/
|
|
|
|
nlp->nz_type = N_UNDF;
|
|
|
|
nlp->nz_value = 0;
|
|
|
|
} else {
|
|
|
|
nlp->nz_type = sp->defined;
|
|
|
|
nlp->nz_value = sp->value;
|
1995-03-04 17:49:20 +00:00
|
|
|
nlp->nz_other = N_OTHER(bind, sp->aux);
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
if (LD_VERSION_NZLIST_P(soversion))
|
|
|
|
nlp->nz_size = sp->size;
|
1994-02-13 20:43:13 +00:00
|
|
|
} else if (sp->common_size) {
|
1993-11-03 23:41:59 +00:00
|
|
|
/*
|
1995-03-04 17:49:20 +00:00
|
|
|
* A common definition.
|
1993-11-03 23:41:59 +00:00
|
|
|
*/
|
|
|
|
nlp->nz_type = N_UNDF | N_EXT;
|
1994-02-13 20:43:13 +00:00
|
|
|
nlp->nz_value = sp->common_size;
|
1995-03-04 17:49:20 +00:00
|
|
|
nlp->nz_other = N_OTHER(bind, 0);
|
1993-11-03 23:41:59 +00:00
|
|
|
} else if (!sp->defined) {
|
|
|
|
/* undefined */
|
|
|
|
nlp->nz_type = N_UNDF | N_EXT;
|
|
|
|
nlp->nz_value = 0;
|
1994-02-13 20:43:13 +00:00
|
|
|
if (sp->so_defined && sp->jmpslot_offset != -1) {
|
|
|
|
/*
|
1995-03-04 17:49:20 +00:00
|
|
|
* A PLT entry. The auxiliary type -- which
|
|
|
|
* must be AUX_FUNC -- is used by the run-time
|
|
|
|
* linker to unambiguously resolve function
|
|
|
|
* address references.
|
1994-02-13 20:43:13 +00:00
|
|
|
*/
|
|
|
|
if (sp->aux != AUX_FUNC)
|
1994-06-15 22:41:19 +00:00
|
|
|
errx(1, "%s: non-function jmpslot",
|
1995-03-04 17:49:20 +00:00
|
|
|
sp->name);
|
|
|
|
nlp->nz_other = N_OTHER(bind, sp->aux);
|
1994-02-13 20:43:13 +00:00
|
|
|
nlp->nz_value =
|
|
|
|
rrs_sdt.sdt_plt + sp->jmpslot_offset;
|
|
|
|
}
|
1993-11-03 23:41:59 +00:00
|
|
|
} else
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: %s defined in mysterious way",
|
|
|
|
sp->name);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1993-11-22 19:05:31 +00:00
|
|
|
/* Set symbol's name */
|
1993-11-03 23:41:59 +00:00
|
|
|
nlp->nz_strx = offset;
|
|
|
|
strcpy(rrs_strtab + offset, sp->name);
|
|
|
|
offset += 1 + strlen(sp->name);
|
|
|
|
|
1993-12-11 12:02:10 +00:00
|
|
|
if (sp->alias) {
|
|
|
|
/*
|
|
|
|
* Write an extra symbol for indirections (possibly
|
|
|
|
* just a dummy).
|
|
|
|
*/
|
|
|
|
int t = (nlp->nz_type == N_INDR + N_EXT);
|
|
|
|
|
|
|
|
INCR_NLP(nlp);
|
1995-03-04 17:49:20 +00:00
|
|
|
nlp->nz_type = N_UNDF + (t ? N_EXT : 0);
|
1993-12-11 12:02:10 +00:00
|
|
|
nlp->nz_un.n_strx = offset;
|
|
|
|
nlp->nz_value = 0;
|
|
|
|
nlp->nz_other = 0;
|
|
|
|
nlp->nz_desc = 0;
|
|
|
|
nlp->nz_size = 0;
|
|
|
|
strcpy(rrs_strtab + offset, sp->alias->name);
|
|
|
|
offset += 1 + strlen(sp->alias->name);
|
|
|
|
}
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
INCR_NLP(nlp);
|
|
|
|
|
|
|
|
} END_EACH_SYMBOL;
|
|
|
|
|
|
|
|
if (MALIGN(offset) != rrs_strtab_size)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"inconsistent RRS string table length: %d, expected %d",
|
1993-12-11 12:02:10 +00:00
|
|
|
offset, rrs_strtab_size);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Write the symbol table */
|
|
|
|
if (rrs_symbol_size == sizeof(struct nlist))
|
|
|
|
md_swapout_symbols(rrs_symbols, number_of_rrs_symbols);
|
|
|
|
else
|
|
|
|
md_swapout_zsymbols(rrs_symbols, number_of_rrs_symbols);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_symbols, symsize, 1, outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
/* Write the strings */
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(rrs_strtab, rrs_strtab_size, 1, outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1996-10-01 01:22:51 +00:00
|
|
|
/* Write RT search path */
|
|
|
|
mywrite(rrs_search_paths, rrs_search_paths_size, 1, outstream);
|
|
|
|
|
1993-11-03 23:41:59 +00:00
|
|
|
/*
|
|
|
|
* Write the names of the shared objects needed at run-time
|
|
|
|
*/
|
1994-02-13 20:43:13 +00:00
|
|
|
pos = rrs_sdt.sdt_sods + number_of_shobjs * sizeof(struct sod);
|
|
|
|
sodp = (struct sod *)alloca( number_of_shobjs * sizeof(struct sod));
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
for (i = 0, shp = rrs_shobjs; shp; i++, shp = shp->next) {
|
|
|
|
char *name = shp->entry->local_sym_name;
|
|
|
|
|
1993-12-11 12:02:10 +00:00
|
|
|
if (i >= number_of_shobjs)
|
1994-06-15 22:41:19 +00:00
|
|
|
errx(1, "internal error: # of link objects exceeds %d",
|
1993-12-11 12:02:10 +00:00
|
|
|
number_of_shobjs);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
sodp[i].sod_name = pos;
|
|
|
|
sodp[i].sod_major = shp->entry->lib_major;
|
|
|
|
sodp[i].sod_minor = shp->entry->lib_minor;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
if (*name == '-' && *(name+1) == 'l') {
|
|
|
|
name += 2;
|
1994-02-13 20:43:13 +00:00
|
|
|
sodp[i].sod_library = 1;
|
1993-11-03 23:41:59 +00:00
|
|
|
} else
|
1994-02-13 20:43:13 +00:00
|
|
|
sodp[i].sod_library = 0;
|
1996-05-27 18:06:02 +00:00
|
|
|
sodp[i].sod_reserved = 0;
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
pos += 1 + strlen(name);
|
1994-02-13 20:43:13 +00:00
|
|
|
sodp[i].sod_next = (i == number_of_shobjs - 1) ? 0 :
|
|
|
|
(rrs_sdt.sdt_sods + (i+1)*sizeof(struct sod));
|
1993-12-04 00:53:02 +00:00
|
|
|
}
|
1993-12-11 12:02:10 +00:00
|
|
|
|
|
|
|
if (i < number_of_shobjs)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"# of link objects less then expected %d",
|
1994-12-23 22:31:35 +00:00
|
|
|
number_of_shobjs);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
1994-02-13 20:43:13 +00:00
|
|
|
md_swapout_sod(sodp, number_of_shobjs);
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(sodp, number_of_shobjs, sizeof(struct sod), outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
|
|
|
|
for (i = 0, shp = rrs_shobjs; shp; i++, shp = shp->next) {
|
|
|
|
char *name = shp->entry->local_sym_name;
|
|
|
|
|
|
|
|
if (*name == '-' && *(name+1) == 'l') {
|
|
|
|
name += 2;
|
|
|
|
}
|
|
|
|
|
1995-03-04 17:49:20 +00:00
|
|
|
mywrite(name, strlen(name) + 1, 1, outstream);
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
write_rrs()
|
|
|
|
{
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, do some consistency checks on the RRS segment.
|
|
|
|
*/
|
|
|
|
if (rrs_section_type == RRS_NONE) {
|
|
|
|
if (reserved_rrs_relocs > 1)
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"RRS relocs in static program: %d",
|
1993-11-03 23:41:59 +00:00
|
|
|
reserved_rrs_relocs-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
1994-12-23 22:31:35 +00:00
|
|
|
printf("rrs_relocs: reserved %d claimed %d discarded %d, gotslots %d jmpslots %d\n",
|
|
|
|
reserved_rrs_relocs, claimed_rrs_relocs, discarded_rrs_relocs,
|
|
|
|
number_of_gotslots-1, number_of_jmpslots-1);
|
1993-11-03 23:41:59 +00:00
|
|
|
#endif
|
|
|
|
|
1994-12-23 22:31:35 +00:00
|
|
|
/* Final consistency check */
|
|
|
|
if (claimed_rrs_relocs + discarded_rrs_relocs != reserved_rrs_relocs) {
|
1995-03-04 17:49:20 +00:00
|
|
|
errx(1, "internal error: "
|
|
|
|
"reserved relocs(%d) != claimed(%d) + discarded(%d)",
|
1994-12-23 22:31:35 +00:00
|
|
|
reserved_rrs_relocs,
|
|
|
|
claimed_rrs_relocs,
|
|
|
|
discarded_rrs_relocs);
|
1993-11-03 23:41:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the RRS segments. */
|
|
|
|
write_rrs_text ();
|
|
|
|
write_rrs_data ();
|
|
|
|
}
|