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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
|
/*
Copyright (C) 2000,2004 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright 2011-2020 David Anderson. All Rights Reserved.
This program is free software; you can redistribute it
and/or modify it under the terms of version 2.1 of the
GNU Lesser General Public License as published by the Free
Software Foundation.
This program is distributed in the hope that it would be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
Further, this software is distributed without any warranty
that it is free of the rightful claim of any third person
regarding infringement or the like. Any license provided
herein, whether implied or otherwise, applies only to this
software file. Patent licenses, if any, provided herein
do not apply to combinations of this program with other
software, or any other product whatsoever.
You should have received a copy of the GNU Lesser General
Public License along with this program; if not, write the
Free Software Foundation, Inc., 51 Franklin Street - Fifth
Floor, Boston MA 02110-1301, USA.
*/
#include "config.h"
#include <stdio.h>
#include "dwarf_incl.h"
#include "dwarf_error.h"
#include "dwarf_util.h"
#include "pro_encode_nm.h"
static void
printinteresting(void)
{
return;
}
static Dwarf_Signed stest[] = {
0,0xff,
0x800000000000002f,
0x800000000000003f,
0x800000000000004f,
0x8000000000000070,
0x800000000000007f,
0x8000000000000080,
0x8000000000000000,
0x800000ffffffffff,
0x80000000ffffffff,
0x800000ffffffffff,
0x8000ffffffffffff,
0xffffffffffffffff,
-1703944 /*18446744073707847672 as signed*/,
562949951588368,
-1,
-127,
-100000,
-2000000000,
-4000000000,
-8000000000,
-800000000000,
};
static Dwarf_Unsigned utest[] = {
0,0xff,0x7f,0x80,
0x800000000000002f,
0x800000000000003f,
0x800000000000004f,
0x8000000000000070,
0x800000000000007f,
0x8000000000000080,
0x800000ffffffffff,
0x80000000ffffffff,
0x800000ffffffffff,
0x8000ffffffffffff,
9223372036854775808ULL,
-1703944 /*18446744073707847672 as signed*/,
562949951588368,
0xffff,
0xffffff,
0xffffffff,
0xffffffffff,
0xffffffffffff,
0xffffffffffffff,
0xffffffffffffffff
};
#if 0 /* FOR DEBUGGING */
static void
dump_encoded(char *space,int len)
{
int t;
printf("encode len %d: ",len);
for ( t = 0; t < len; ++t) {
printf("%02x",space[t] & 0xff);
}
printf("\n");
}
#endif
#define BUFFERLEN 100
static unsigned
signedtest(unsigned len)
{
unsigned errcnt = 0;
unsigned t = 0;
char bufferspace[BUFFERLEN];
for ( ; t < len; ++t) {
int res = 0;
int encodelen = 0;
Dwarf_Unsigned decodelen = 0;
Dwarf_Signed decodeval = 0;
res = _dwarf_pro_encode_signed_leb128_nm(
stest[t],&encodelen,bufferspace,BUFFERLEN);
if (res != DW_DLV_OK) {
printf("FAIL signed encode index %u val 0x%llx\n",
t,stest[t]);
++errcnt;
}
res = _dwarf_decode_s_leb128_chk(
(Dwarf_Small *)bufferspace,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&bufferspace[BUFFERLEN-1]));
if (res != DW_DLV_OK) {
printf("FAIL signed decode index %u val 0x%llx\n",
t,stest[t]);
++errcnt;
}
if (stest[t] != decodeval) {
printf("FAIL signed decode val index %u val 0x%llx vs 0x%llx\n",
t,stest[t],decodeval);
++errcnt;
}
if ((Dwarf_Unsigned)encodelen != decodelen) {
printf("FAIL signed decodelen val index %u val 0x%llx\n",
t,stest[t]);
++errcnt;
}
}
return errcnt;
}
static unsigned
unsignedtest(unsigned len)
{
unsigned errcnt = 0;
unsigned t = 0;
char bufferspace[BUFFERLEN];
for ( ; t < len; ++t) {
int res = 0;
int encodelen = 0;
Dwarf_Unsigned decodelen = 0;
Dwarf_Unsigned decodeval = 0;
res = _dwarf_pro_encode_leb128_nm(
utest[t],&encodelen,bufferspace,BUFFERLEN);
if (res != DW_DLV_OK) {
printf("FAIL signed encode index %u val 0x%llx",
t,utest[t]);
++errcnt;
}
res = _dwarf_decode_u_leb128_chk(
(Dwarf_Small *)bufferspace,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&bufferspace[BUFFERLEN-1]));
if (res != DW_DLV_OK) {
printf("FAIL signed decode index %u val 0x%llx\n",
t,utest[t]);
++errcnt;
}
if (utest[t] != decodeval) {
printf("FAIL signed decode val index %u val 0x%llx vs 0x%llx\n",
t,utest[t],decodeval);
++errcnt;
}
if ((Dwarf_Unsigned)encodelen != decodelen) {
printf("FAIL signed decodelen val index %u val 0x%llx\n",
t,utest[t]);
++errcnt;
}
}
return errcnt;
}
static unsigned char v1[] = {
0x90, 0x90, 0x90,
0x90, 0x90, 0x90,
0x90, 0x90, 0x90,
0x90, 0x90, 0x90,
0x90 };
static unsigned char v2[] = {
0xf4,0xff,
0xff,
0xff,
0x0f,
0x4c,
0x00,
0x00,
0x00};
/* 9223372036854775808 == -9223372036854775808 */
static unsigned char v3[] = {
0x80, 0x80, 0x80,
0x80, 0x80, 0x80,
0x80, 0x80, 0x80,
0x41 };
/* This warning with --enable-sanitize is fixed
as of November 11, 2016 when decoding test v4.
dwarf_leb.c: runtime error: negation of -9223372036854775808 cannot be
represented in type 'Dwarf_Signed' (aka 'long long');
cast to an unsigned type to negate this value to itself.
The actual value here is -4611686018427387904 0xc000000000000000 */
static unsigned char v4[] = {
0x80, 0x80, 0x80,
0x80, 0x80, 0x80,
0x80, 0x80, 0x40 };
static unsigned
specialtests(void)
{
unsigned errcnt = 0;
unsigned vlen = 0;
Dwarf_Unsigned decodelen = 0;
Dwarf_Signed decodeval = 0;
Dwarf_Unsigned udecodeval = 0;
int res;
vlen = sizeof(v1)/sizeof(char);
res = _dwarf_decode_s_leb128_chk(
(Dwarf_Small *)v1,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&v1[vlen]));
if (res != DW_DLV_ERROR) {
printf("FAIL unsigned decode special v1 \n");
++errcnt;
}
res = _dwarf_decode_u_leb128_chk(
(Dwarf_Small *)v1,
&decodelen,
&udecodeval,
(Dwarf_Byte_Ptr)(&v1[vlen]));
if (res != DW_DLV_ERROR) {
printf("FAIL unsigned decode special v1 \n");
++errcnt;
}
vlen = sizeof(v2)/sizeof(char);
res = _dwarf_decode_s_leb128_chk(
(Dwarf_Small *)v2,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&v2[vlen]));
if (res != DW_DLV_OK) {
printf("FAIL signed decode special v2 \n");
++errcnt;
}
/* If you just do (byte & 0x7f) << shift
and byte is (or is promoted to) a signed type
on the following decode you get the wrong value.
Undefined effect in C leads to error. */
res = _dwarf_decode_u_leb128_chk(
(Dwarf_Small *)v2,
&decodelen,
&udecodeval,
(Dwarf_Byte_Ptr)(&v2[vlen]));
if (res != DW_DLV_OK) {
printf("FAIL unsigned decode special v2 \n");
++errcnt;
}
vlen = sizeof(v3)/sizeof(char);
res = _dwarf_decode_s_leb128_chk(
(Dwarf_Small *)v3,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&v3[vlen]));
if (res != DW_DLV_OK) {
printf("FAIL signed decode special v3 \n");
++errcnt;
}
if ((Dwarf_Unsigned)decodeval !=
(Dwarf_Unsigned)0x8000000000000000) {
printf("FAIL signed decode special v3 value check %lld vs %lld \n",
decodeval,(Dwarf_Signed)0x8000000000000000);
++errcnt;
}
vlen = sizeof(v4)/sizeof(char);
res = _dwarf_decode_s_leb128_chk(
(Dwarf_Small *)v4,
&decodelen,
&decodeval,
(Dwarf_Byte_Ptr)(&v4[vlen]));
if (res != DW_DLV_OK) {
printf("FAIL signed decode special v4 \n");
++errcnt;
}
if (decodeval != -4611686018427387904) {
printf("FAIL signed decode special v4 value check %lld vs %lld \n",
decodeval,-4611686018427387904LL);
printf("FAIL signed decode special v4 value check 0x%llx vs 0x%llx \n",
decodeval,-4611686018427387904LL);
++errcnt;
}
return errcnt;
return errcnt;
}
int main(void)
{
unsigned slen = sizeof(stest)/sizeof(Dwarf_Signed);
unsigned ulen = sizeof(utest)/sizeof(Dwarf_Unsigned);
int errs = 0;
printinteresting();
errs += signedtest(slen);
errs += unsignedtest(ulen);
errs += specialtests();
if (errs) {
printf("FAIL. leb encode/decode errors\n");
return 1;
}
printf("PASS leb tests\n");
return 0;
}
|