Line data Source code
1 : /* Return block represented by attribute.
2 : Copyright (C) 2004-2010, 2014 Red Hat, Inc.
3 : This file is part of elfutils.
4 : Written by Ulrich Drepper <drepper@redhat.com>, 2004.
5 :
6 : This file is free software; you can redistribute it and/or modify
7 : it under the terms of either
8 :
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
12 :
13 : or
14 :
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
18 :
19 : or both in parallel, as here.
20 :
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.
25 :
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/>. */
29 :
30 : #ifdef HAVE_CONFIG_H
31 : # include <config.h>
32 : #endif
33 :
34 : #include <dwarf.h>
35 : #include "libdwP.h"
36 :
37 :
38 : int
39 88647 : dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block)
40 : {
41 88647 : if (attr == NULL)
42 : return -1;
43 :
44 88647 : const unsigned char *datap = attr->valp;
45 88647 : const unsigned char *endp = attr->cu->endp;
46 :
47 88647 : switch (attr->form)
48 : {
49 : case DW_FORM_block1:
50 86 : if (unlikely (endp - datap < 1))
51 : goto invalid;
52 86 : return_block->length = *(uint8_t *) attr->valp;
53 86 : return_block->data = attr->valp + 1;
54 86 : break;
55 :
56 : case DW_FORM_block2:
57 1 : if (unlikely (endp - datap < 2))
58 : goto invalid;
59 1 : return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
60 1 : return_block->data = attr->valp + 2;
61 1 : break;
62 :
63 : case DW_FORM_block4:
64 0 : if (unlikely (endp - datap < 4))
65 : goto invalid;
66 0 : return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
67 0 : return_block->data = attr->valp + 4;
68 0 : break;
69 :
70 : case DW_FORM_block:
71 : case DW_FORM_exprloc:
72 88506 : if (unlikely (endp - datap < 1))
73 : goto invalid;
74 88506 : get_uleb128 (return_block->length, datap, endp);
75 88506 : return_block->data = (unsigned char *) datap;
76 88506 : break;
77 :
78 : default:
79 54 : __libdw_seterrno (DWARF_E_NO_BLOCK);
80 54 : return -1;
81 : }
82 :
83 88593 : if (unlikely (return_block->length > (size_t) (endp - return_block->data)))
84 : {
85 : /* Block does not fit. */
86 : invalid:
87 0 : __libdw_seterrno (DWARF_E_INVALID_DWARF);
88 0 : return -1;
89 : }
90 :
91 : return 0;
92 : }
93 : INTDEF(dwarf_formblock)
|