1 /* Return raw section content.
2 Copyright (C) 1998, 1999, 2000, 2002 Red Hat, Inc.
3 This file is part of elfutils.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 1998.
6 This file is free software; you can redistribute it and/or modify
7 it under the terms of either
9 * the GNU Lesser General Public License as published by the Free
10 Software Foundation; either version 3 of the License, or (at
11 your option) any later version
15 * the GNU General Public License as published by the Free
16 Software Foundation; either version 2 of the License, or (at
17 your option) any later version
19 or both in parallel, as here.
21 elfutils is distributed in the hope that it will be useful, but
22 WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 General Public License for more details.
26 You should have received copies of the GNU General Public License and
27 the GNU Lesser General Public License along with this program. If
28 not, see <http://www.gnu.org/licenses/>. */
40 elf_rawdata (scn, data)
44 if (scn == NULL || scn->elf->kind != ELF_K_ELF)
46 __libelf_seterrno (ELF_E_INVALID_HANDLE);
50 /* If `data' is not NULL this means we are not addressing the initial
51 data in the file. But this also means this data is already read
52 (since otherwise it is not possible to have a valid `data' pointer)
53 and all the data structures are initialized as well. In this case
54 we can simply walk the list of data records. */
56 || (scn->data_read != 0 && (scn->flags & ELF_F_FILEDATA) == 0))
58 /* We don't allow accessing any but the data read from the file
60 __libelf_seterrno (ELF_E_DATA_MISMATCH);
64 /* If the data for this section was not yet initialized do it now. */
65 if (scn->data_read == 0)
67 /* First thing we do is to read the data from the file. There is
68 always a file (or memory region) associated with this descriptor
69 since otherwise the `data_read' flag would be set. */
70 if (__libelf_set_rawdata (scn) != 0)
71 /* Something went wrong. The error value is already set. */
75 /* Return the first data element in the list. */
76 return &scn->rawdata.d;