annotate dynodump/i386/_relocate.c @ 66:cc4664d4732c r19-16-pre8

Import from CVS: tag r19-16-pre8
author cvs
date Mon, 13 Aug 2007 08:59:44 +0200
parents 376386a54a3c
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 * Copyright (c) 1995 by Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 * All rights reserved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 * This source code is a product of Sun Microsystems, Inc. and is provided
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 * for unrestricted use provided that this legend is included on all tape
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 * media and as a part of the software program in whole or part. Users
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 * may copy or modify this source code without charge, but are not authorized
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 * to license or distribute it to anyone else except as part of a product or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 * program developed by the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 * THIS PROGRAM CONTAINS SOURCE CODE COPYRIGHTED BY SUN MICROSYSTEMS, INC.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 * SUN MICROSYSTEMS, INC., MAKES NO REPRESENTATIONS ABOUT THE SUITABLITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 * OF SUCH SOURCE CODE FOR ANY PURPOSE. IT IS PROVIDED "AS IS" WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 * EXPRESS OR IMPLIED WARRANTY OF ANY KIND. SUN MICROSYSTEMS, INC. DISCLAIMS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 * ALL WARRANTIES WITH REGARD TO SUCH SOURCE CODE, INCLUDING ALL IMPLIED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 * NO EVENT SHALL SUN MICROSYSTEMS, INC. BE LIABLE FOR ANY SPECIAL, INDIRECT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 * INCIDENTAL, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 * FROM USE OF SUCH SOURCE CODE, REGARDLESS OF THE THEORY OF LIABILITY.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 * This source code is provided with no support and without any obligation on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 * the part of Sun Microsystems, Inc. to assist in its use, correction,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * modification or enhancement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 * SOURCE CODE OR ANY PART THEREOF.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 * Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 * 2550 Garcia Avenue
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Mountain View, California 94043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #pragma ident "@(#) $Id: _relocate.c,v 1.1.1.1 1996/12/18 03:37:22 steve Exp $ - SMI"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 /* LINTLIBRARY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include <libelf.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <string.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include <machdep.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 #include "_dynodump.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 update_reloc(Cache *ocache, Cache *_ocache,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Cache *icache, Cache *_icache,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 Half shnum)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Shdr *shdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 Rel *rels;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 int reln, cnt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Cache *orcache, *ircache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 * Set up to readh the output relocation table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 shdr = _ocache->c_shdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 rels = (Rel *) _ocache->c_data->d_buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 reln = shdr->sh_size / shdr->sh_entsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 * Determine the section that is being relocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 orcache = &ocache[shdr->sh_info];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 shdr = _icache->c_shdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ircache = &icache[shdr->sh_info];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 * Determine the section that is being relocated. Note that for this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 * stupid architecture the .rel.plt actually contains offsets into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 * .got.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 if (strcmp(_ocache->c_name, ".rel.plt")) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 orcache = &ocache[shdr->sh_info];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 shdr = _icache->c_shdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ircache = &icache[shdr->sh_info];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 } else {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 Half ndx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Cache * __ocache = ocache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 for (__ocache++, ndx = 1; ndx != shnum; ndx++, __ocache++) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 if (strcmp(__ocache->c_name, ".got") == 0) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 orcache = __ocache;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ircache = &icache[ndx];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 * Loop through the relocation table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 for (cnt = 0; cnt < reln; cnt++, rels++) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 unsigned char *iaddr, *oaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Addr off;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 unsigned char type = ELF_R_TYPE(rels->r_info);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 * Ignore some relocations as these can be safely carried out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 * twice (they simply override any existing data). In fact,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 * some relocations like __iob's copy relocation must be carried
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 * out each time the process restarts, otherwise stdio blows up.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 if ((type == R_386_COPY) || (type == R_386_NONE))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 * If we are required to restore the relocation location
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 * to its value prior to relocation, then read the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 * location's original contents from the input image and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 * copy it to the output image.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 off = rels->r_offset - ircache->c_shdr->sh_addr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 iaddr = (unsigned char *) ircache->c_data->d_buf + off;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 oaddr = (unsigned char *) orcache->c_data->d_buf + off;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 *(unsigned long *) oaddr = *(unsigned long *) iaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 }