1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/* Copyright 2013-2017 IBM Corp. */
#include "hdif.h"
#include <stack.h>
const void *HDIF_get_idata(const struct HDIF_common_hdr *hdif, unsigned int di,
unsigned int *size)
{
const struct HDIF_common_hdr *hdr = hdif;
const struct HDIF_idata_ptr *iptr;
if (be16_to_cpu(hdr->d1f0) != 0xd1f0) {
prerror("HDIF: Bad header format !\n");
backtrace();
return NULL;
}
if (di >= be16_to_cpu(hdr->idptr_count)) {
prlog(PR_DEBUG, "HDIF: idata %d out of range for %.6s!\n",
di, hdr->id);
return NULL;
}
iptr = (void *)hdif + be32_to_cpu(hdr->idptr_off)
+ di * sizeof(struct HDIF_idata_ptr);
if (size)
*size = be32_to_cpu(iptr->size);
return (void *)hdif + be32_to_cpu(iptr->offset);
}
const void *HDIF_get_iarray_item(const struct HDIF_common_hdr *hdif,
unsigned int di, unsigned int ai,
unsigned int *size)
{
const struct HDIF_array_hdr *ahdr;
unsigned int asize;
const void *arr;
arr = HDIF_get_idata(hdif, di, &asize);
if (!arr)
return NULL;
if (asize < sizeof(struct HDIF_array_hdr)) {
prerror("HDIF: idata block too small for array !\n");
backtrace();
return NULL;
}
ahdr = arr;
if (ai >= be32_to_cpu(ahdr->ecnt)) {
prerror("HDIF: idata array index out of range !\n");
backtrace();
return NULL;
}
if (size)
*size = be32_to_cpu(ahdr->eactsz);
return arr + be32_to_cpu(ahdr->offset) + ai * be32_to_cpu(ahdr->esize);
}
int HDIF_get_iarray_size(const struct HDIF_common_hdr *hdif, unsigned int di)
{
const struct HDIF_array_hdr *ahdr;
unsigned int asize;
const void *arr;
arr = HDIF_get_idata(hdif, di, &asize);
if (!arr)
return -1;
if (asize < sizeof(struct HDIF_array_hdr)) {
prerror("HDIF: idata block too small for array !\n");
backtrace();
return -1;
}
ahdr = arr;
return be32_to_cpu(ahdr->ecnt);
}
/*
* Returns NULL and sets *items to zero when:
*
* a) Array extends beyond bounds (hard error)
* b) The array is empty (soft error)
* c) The item size is zero (soft error)
* d) The array is missing (soft error)
*
* b, c) are bugs in the input data so they generate backtraces.
*
* If you care about the soft error cases, retrive the array header manually
* with HDIF_get_idata().
*/
const struct HDIF_array_hdr *HDIF_get_iarray(const struct HDIF_common_hdr *hdif,
unsigned int di, unsigned int *items)
{
const struct HDIF_array_hdr *arr;
unsigned int req_size, size, elements;
unsigned int actual_sz, alloc_sz, offset;
arr = HDIF_get_idata(hdif, di, &size);
if(items)
*items = 0;
if (!arr || !size)
return NULL;
/* base size of an Idata array header */
offset = be32_to_cpu(arr->offset);
actual_sz = be32_to_cpu(arr->eactsz);
alloc_sz = be32_to_cpu(arr->esize);
elements = be32_to_cpu(arr->ecnt);
/* actual size should always be smaller than allocated */
if (alloc_sz < actual_sz) {
prerror("HDIF %.6s iarray %u has actsz (%u) < alloc_sz (%u)\n)",
hdif->id, di, actual_sz, alloc_sz);
backtrace();
return NULL;
}
req_size = elements * alloc_sz + offset;
if (req_size > size) {
prerror("HDIF: %.6s iarray %u requires %#x bytes, but only %#x are allocated!\n",
hdif->id, di, req_size, size);
backtrace();
return NULL;
}
if (!elements || !actual_sz)
return NULL;
if (items)
*items = elements;
return arr;
}
const void *HDIF_iarray_item(const struct HDIF_array_hdr *ahdr,
unsigned int index)
{
if (!ahdr || index >= be32_to_cpu(ahdr->ecnt))
return NULL;
return (const void * )ahdr + be32_to_cpu(ahdr->offset) +
index * be32_to_cpu(ahdr->esize);
}
struct HDIF_child_ptr *
HDIF_child_arr(const struct HDIF_common_hdr *hdif, unsigned int idx)
{
struct HDIF_child_ptr *children;
children = (void *)hdif + be32_to_cpu(hdif->child_off);
if (idx >= be16_to_cpu(hdif->child_count)) {
prerror("HDIF: child array idx out of range!\n");
backtrace();
return NULL;
}
return &children[idx];
}
struct HDIF_common_hdr *HDIF_child(const struct HDIF_common_hdr *hdif,
const struct HDIF_child_ptr *child,
unsigned int idx,
const char *eyecatcher)
{
void *base = (void *)hdif;
struct HDIF_common_hdr *ret;
long child_off;
/* child must be in hdif's child array */
child_off = (void *)child - (base + be32_to_cpu(hdif->child_off));
assert(child_off % sizeof(struct HDIF_child_ptr) == 0);
assert(child_off / sizeof(struct HDIF_child_ptr)
< be16_to_cpu(hdif->child_count));
assert(idx < be32_to_cpu(child->count));
if (be32_to_cpu(child->size) < sizeof(struct HDIF_common_hdr)) {
prerror("HDIF: %s child #%i too small: %u\n",
eyecatcher, idx, be32_to_cpu(child->size));
backtrace();
return NULL;
}
ret = base + be32_to_cpu(child->offset)
+ be32_to_cpu(child->size) * idx;
if (!HDIF_check(ret, eyecatcher)) {
prerror("HDIF: #%i bad type (wanted %6s, got %6s)\n",
idx, eyecatcher, ret->id);
backtrace();
return NULL;
}
return ret;
}
|