blob: fff45fdb9024450a3dc95f3bf98cabd4fa2fe225 [file] [log] [blame]
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00001/* Update symbol information in symbol table at the given index.
2 Copyright (C) 2000, 2001, 2002 Red Hat, Inc.
Ulrich Drepper361df7d2006-04-04 21:38:57 +00003 This file is part of Red Hat elfutils.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00004 Written by Ulrich Drepper <drepper@redhat.com>, 2000.
5
Ulrich Drepper361df7d2006-04-04 21:38:57 +00006 Red Hat elfutils is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by the
8 Free Software Foundation; version 2 of the License.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +00009
Ulrich Drepper361df7d2006-04-04 21:38:57 +000010 Red Hat elfutils is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000014
Ulrich Drepper361df7d2006-04-04 21:38:57 +000015 You should have received a copy of the GNU General Public License along
16 with Red Hat elfutils; if not, write to the Free Software Foundation,
Ulrich Drepper1e9ef502006-04-04 22:29:06 +000017 Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA.
Ulrich Drepper361df7d2006-04-04 21:38:57 +000018
19 In addition, as a special exception, Red Hat, Inc. gives You the
20 additional right to link the code of Red Hat elfutils with code licensed
21 under any Open Source Initiative certified open source license
22 (http://www.opensource.org/licenses/index.php) which requires the
23 distribution of source code with any binary distribution and to
24 distribute linked combinations of the two. Non-GPL Code permitted under
25 this exception must only link to the code of Red Hat elfutils through
26 those well defined interfaces identified in the file named EXCEPTION
27 found in the source code files (the "Approved Interfaces"). The files
28 of Non-GPL Code may instantiate templates or use macros or inline
29 functions from the Approved Interfaces without causing the resulting
30 work to be covered by the GNU General Public License. Only Red Hat,
31 Inc. may make changes or additions to the list of Approved Interfaces.
32 Red Hat's grant of this exception is conditioned upon your not adding
33 any new exceptions. If you wish to add a new Approved Interface or
34 exception, please contact Red Hat. You must obey the GNU General Public
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
37 covered by this exception. If you modify this file, you may extend this
38 exception to your version of the file, but you are not obligated to do
39 so. If you do not wish to provide this exception without modification,
40 you must delete this exception statement from your version and license
41 this file solely under the GPL without exception.
42
43 Red Hat elfutils is an included package of the Open Invention Network.
44 An included package of the Open Invention Network is a package for which
45 Open Invention Network licensees cross-license their patents. No patent
46 license is granted, either expressly or impliedly, by designation as an
47 included package. Should you wish to participate in the Open Invention
48 Network licensing program, please visit www.openinventionnetwork.com
49 <http://www.openinventionnetwork.com>. */
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000050
51#ifdef HAVE_CONFIG_H
52# include <config.h>
53#endif
54
55#include <gelf.h>
56#include <stdlib.h>
57#include <string.h>
58
59#include "libelfP.h"
60
61
62int
63gelf_update_sym (data, ndx, src)
64 Elf_Data *data;
65 int ndx;
66 GElf_Sym *src;
67{
68 Elf_Data_Scn *data_scn = (Elf_Data_Scn *) data;
69 Elf_Scn *scn;
70 int result = 0;
71
72 if (data == NULL)
73 return 0;
74
75 if (unlikely (ndx < 0))
76 {
77 __libelf_seterrno (ELF_E_INVALID_INDEX);
78 return 0;
79 }
80
81 if (unlikely (data_scn->d.d_type != ELF_T_SYM))
82 {
83 /* The type of the data better should match. */
84 __libelf_seterrno (ELF_E_DATA_MISMATCH);
85 return 0;
86 }
87
88 scn = data_scn->s;
Roland McGrathb4d6f0f2008-08-25 22:55:17 +000089 rwlock_wrlock (scn->elf->lock);
Ulrich Drepperb08d5a82005-07-26 05:00:05 +000090
91 if (scn->elf->class == ELFCLASS32)
92 {
93 Elf32_Sym *sym;
94
95 /* There is the possibility that the values in the input are
96 too large. */
97 if (unlikely (src->st_value > 0xffffffffull)
98 || unlikely (src->st_size > 0xffffffffull))
99 {
100 __libelf_seterrno (ELF_E_INVALID_DATA);
101 goto out;
102 }
103
104 /* Check whether we have to resize the data buffer. */
105 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data_scn->d.d_size))
106 {
107 __libelf_seterrno (ELF_E_INVALID_INDEX);
108 goto out;
109 }
110
111 sym = &((Elf32_Sym *) data_scn->d.d_buf)[ndx];
112
113#define COPY(name) \
114 sym->name = src->name
115 COPY (st_name);
116 COPY (st_value);
117 COPY (st_size);
118 /* Please note that we can simply copy the `st_info' element since
119 the definitions of ELFxx_ST_BIND and ELFxx_ST_TYPE are the same
120 for the 64 bit variant. */
121 COPY (st_info);
122 COPY (st_other);
123 COPY (st_shndx);
124 }
125 else
126 {
127 /* Check whether we have to resize the data buffer. */
128 if (unlikely ((ndx + 1) * sizeof (Elf64_Sym) > data_scn->d.d_size))
129 {
130 __libelf_seterrno (ELF_E_INVALID_INDEX);
131 goto out;
132 }
133
134 ((Elf64_Sym *) data_scn->d.d_buf)[ndx] = *src;
135 }
136
137 result = 1;
138
139 /* Mark the section as modified. */
140 scn->flags |= ELF_F_DIRTY;
141
142 out:
Roland McGrathb4d6f0f2008-08-25 22:55:17 +0000143 rwlock_unlock (scn->elf->lock);
Ulrich Drepperb08d5a82005-07-26 05:00:05 +0000144
145 return result;
146}