Brian Silverman | 8649792 | 2018-02-10 19:28:39 -0500 | [diff] [blame^] | 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 | dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block) |
| 40 | { |
| 41 | if (attr == NULL) |
| 42 | return -1; |
| 43 | |
| 44 | const unsigned char *datap = attr->valp; |
| 45 | const unsigned char *endp = attr->cu->endp; |
| 46 | |
| 47 | switch (attr->form) |
| 48 | { |
| 49 | case DW_FORM_block1: |
| 50 | if (unlikely (endp - datap < 1)) |
| 51 | goto invalid; |
| 52 | return_block->length = *(uint8_t *) attr->valp; |
| 53 | return_block->data = attr->valp + 1; |
| 54 | break; |
| 55 | |
| 56 | case DW_FORM_block2: |
| 57 | if (unlikely (endp - datap < 2)) |
| 58 | goto invalid; |
| 59 | return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp); |
| 60 | return_block->data = attr->valp + 2; |
| 61 | break; |
| 62 | |
| 63 | case DW_FORM_block4: |
| 64 | if (unlikely (endp - datap < 4)) |
| 65 | goto invalid; |
| 66 | return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp); |
| 67 | return_block->data = attr->valp + 4; |
| 68 | break; |
| 69 | |
| 70 | case DW_FORM_block: |
| 71 | case DW_FORM_exprloc: |
| 72 | if (unlikely (endp - datap < 1)) |
| 73 | goto invalid; |
| 74 | get_uleb128 (return_block->length, datap, endp); |
| 75 | return_block->data = (unsigned char *) datap; |
| 76 | break; |
| 77 | |
| 78 | default: |
| 79 | __libdw_seterrno (DWARF_E_NO_BLOCK); |
| 80 | return -1; |
| 81 | } |
| 82 | |
| 83 | if (unlikely (return_block->length > (size_t) (endp - return_block->data))) |
| 84 | { |
| 85 | /* Block does not fit. */ |
| 86 | invalid: |
| 87 | __libdw_seterrno (DWARF_E_INVALID_DWARF); |
| 88 | return -1; |
| 89 | } |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | INTDEF(dwarf_formblock) |