History log of /external/elfutils/libelf/elf_getarsym.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
7eff36d5daa6ebca5e6399638a7643af105ae5b0 07-Oct-2015 Chih-Hung Hsieh <chh@google.com> Do without union of variable length arrays.

Prepare to compile with clang.

A union like
{ T32 a32[n]; T64 a64[n]; } u;
is expanded to
size_t nbytes = n * MAX(sizeof(T32), sizeof(T64));
void *data = malloc(nbytes);
T32 (*a32)[n] = data;
T64 (*a64)[n] = data;

Signed-off-by: Chih-Hung Hsieh <chh@google.com>
/external/elfutils/libelf/elf_getarsym.c
1ccdfb683ad6c7e59793136c3a657ddf131cafd1 22-Sep-2015 Mark Wielaard <mjw@redhat.com> Remove old-style function definitions.

We already require -std=gnu99 and old-style function definitions might
hide some compiler warnings.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
f78e8640475ac1ea0b29bff79fbc77c0dfa47657 31-May-2015 Mark Wielaard <mjw@redhat.com> libelf: Fix unbounded stack usage in elf_getarsym for !ALLOW_UNALIGNED case.

The number of entries in the index can be large, don't use alloca to
read in temporary data, use malloc (which is freed after out).

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
bfb9a752c323b97bfcfb11f4f9dbf4ca25fe3c95 16-May-2015 Mark Wielaard <mjw@redhat.com> libelf: Fix possible unbounded stack usage in elf_getarsym.

The number of entries in the index can be large, don't use alloca to
read in temporary data, use malloc (and free after out).

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
4bb122a87608a1e0f7c27341fe1b3cd05c1462be 16-Dec-2014 Mark Wielaard <mjw@redhat.com> libelf: Check index_size doesn't overflow in elf_getarsym.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
16f08ebdb854296e78e6ae42f7f9de3858f19f6c 09-Dec-2014 Mark Wielaard <mjw@redhat.com> libelf: Make sure n * w doesn't overflow in elf_getarsym.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
720383c53b435de6647edd78060dd7d38ade25a5 17-Jan-2014 Jakub Jelinek <jakub@redhat.com> robustify: libelf.

Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
6722a667bbeb003258b35e0ee773fef9abcbdef0 07-Jan-2013 Roland McGrath <roland@hack.frob.com> elf_getarsym: Handle unaligned data in archive index.
/external/elfutils/libelf/elf_getarsym.c
99d9db00b886b29b961b63d94424321be3ddfca5 07-Jan-2013 Roland McGrath <roland@hack.frob.com> elf_getarsym: Use memcpy instead of pointer dereference so as not to assume the field is naturally aligned.

Signed-off-by: Roland McGrath <roland@hack.frob.com>
/external/elfutils/libelf/elf_getarsym.c
e1873141a517738d8c50923e40525bb2ae6db68a 01-Aug-2012 Petr Machata <pmachata@redhat.com> Implement support for archives with 64-bit symbol table

Signed-off-by: Petr Machata <pmachata@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
de2ed97f33139af5c7a0811e4ec66fc896a13cf2 05-Jun-2012 Mark Wielaard <mjw@redhat.com> Update name, license and contributor policy.

* Change name from "Red Hat elfutils" to "elfutils".
* Update license of standalone tools and test from GPLv2 to GPLv3+.
* Change license of libraries from GPLv2+exception to GPLv2/LGPLv3+.
* Add Developer Certificate of Origin based contributor policy.

top-level:

- COPYING: Upgraded from GPLv2 to GPLv3.
- CONTRIBUTING, COPYING-GPLv2, COPYING-LGPLv3: New files.
- NEWS: Added note about new contribution and license policy.
- Makefile.am: Updated to GPLv3, added new files to EXTRA_DIST.
- configure.ac: Update to GPLv3, changed AC_INIT name to 'elfutils'.

backends, lib, libasm, libcpu, libdw, libdwfl, libebl, libelf:

- All files updated to GPLv2/LGPLv3+. Except some very small files
(<5 lines) which didn't have any headers at all before, the linker
.maps files and the libcpu/defs files which only contain data and
libelf/elf.h which comes from glibc and is under LGPLv2+.

config:

- elfutils.spec.in: Add new License: headers and new %doc files.
- Update all license headers to GPLv2/LGPLv3+ for files used by libs.

src, tests:

- All files updated to GPLv3+. Except for the test bz2 data files, the
linker maps and script files and some very small files (<5 lines)
that don't have any headers.

Signed-off-by: Richard Fontana <rfontana@redhat.com>
Signed-off-by: Mark Wielaard <mjw@redhat.com>
/external/elfutils/libelf/elf_getarsym.c
b4d6f0f8064f2b706ea9035ef0393d8299671390 26-Aug-2008 Roland McGrath <roland@redhat.com> Fix up bogon and missing log entries from .pmachata.threads branch.
/external/elfutils/libelf/elf_getarsym.c
d56e232fb8f8cd97a336ed612c89145ec121f785 16-Aug-2008 Ulrich Drepper <drepper@redhat.com> propagate from branch 'com.redhat.elfutils.pmachata.threads' (head 8bd3bc10eb015c96f7bafcc6a22c973620b57dd8)
to branch 'com.redhat.elfutils' (head c5a11b6b3329382f1b5ffd0020f0d93c64176f20)
/external/elfutils/libelf/elf_getarsym.c
1e9ef50681e20ef14c2ba38aef37a71ff148be08 05-Apr-2006 Ulrich Drepper <drepper@redhat.com> Fix FSF address. No exception for libdwarf.
/external/elfutils/libelf/elf_getarsym.c
361df7da6dfecd817b27e62b91752ac316d7cdd4 04-Apr-2006 Ulrich Drepper <drepper@redhat.com> propagate from branch 'com.redhat.elfutils.roland.pending' (head 4f8fc821345feef58624f0aa5b470d4827577d8c)
to branch 'com.redhat.elfutils' (head 76e26cb54695fd3b21ee8fb5be3036bd68200633)
/external/elfutils/libelf/elf_getarsym.c
fbe998a0b1be1f006bc72e5138fb38c188cc0433 29-Aug-2005 Ulrich Drepper <drepper@redhat.com> merge of 333c187506c852455e9f7be44fa9adc360416217
and 79955b942e3f0ddc71117feea5754df61edcc42a
/external/elfutils/libelf/elf_getarsym.c
4c305da9de0ecfe9af64cb6787b2b4b8a6aa8dd5 25-Aug-2005 Roland McGrath <roland@redhat.com> 2005-08-24 Roland McGrath <roland@redhat.com>

* line2addr.c (print_address): Omit () for DSOs.
/external/elfutils/libelf/elf_getarsym.c
6abe27be7178a891326f29337a7aa31aa3e5482d 29-Aug-2005 Ulrich Drepper <drepper@redhat.com> Fix more EINTR handling problems. Add jump prediction.
/external/elfutils/libelf/elf_getarsym.c
e5294612b9ea64b36b9c5d41b497d371d05d5a11 16-Aug-2005 Ulrich Drepper <drepper@redhat.com> Correct build programs caused by commit from devel tree.
elf_begin robustification.
/external/elfutils/libelf/elf_getarsym.c
b08d5a8fb42f4586d756068065186b5af7e48dad 26-Jul-2005 Ulrich Drepper <drepper@redhat.com> Adjust for monotone.
/external/elfutils/libelf/elf_getarsym.c