Home | History | Annotate | Download | only in libelf
      1 /* Update symbol information in symbol table at the given index.
      2    Copyright (C) 2000, 2001, 2002 Red Hat, Inc.
      3    This file is part of Red Hat elfutils.
      4    Written by Ulrich Drepper <drepper (at) redhat.com>, 2000.
      5 
      6    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.
      9 
     10    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.
     14 
     15    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,
     17    Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA.
     18 
     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>.  */
     50 
     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 
     62 int
     63 gelf_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;
     89   rwlock_wrlock (scn->elf->lock);
     90 
     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:
    143   rwlock_unlock (scn->elf->lock);
    144 
    145   return result;
    146 }
    147