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 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
|
/*====================================================================*
*
* Copyright (c) 2013 Qualcomm Atheros, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted (subject to the limitations
* in the disclaimer below) provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* * Neither the name of Qualcomm Atheros nor the names of
* its contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
* GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE
* COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*--------------------------------------------------------------------*/
/*====================================================================*"
*
* chknvm.c
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
/*====================================================================*
* system header files;
*--------------------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <memory.h>
#include <fcntl.h>
#include <errno.h>
/*====================================================================*
* custom header files;
*--------------------------------------------------------------------*/
#include "../tools/getoptv.h"
#include "../tools/memory.h"
#include "../tools/flags.h"
#include "../tools/error.h"
#include "../tools/files.h"
#include "../ram/sdram.h"
#include "../nvm/nvm.h"
/*====================================================================*
* custom source files;
*--------------------------------------------------------------------*/
#ifndef MAKEFILE
#include "../tools/getoptv.c"
#include "../tools/putoptv.c"
#include "../tools/version.c"
#include "../tools/checksum32.c"
#include "../tools/fdchecksum32.c"
#include "../tools/strfbits.c"
#include "../tools/error.c"
#endif
#ifndef MAKEFILE
#include "../ram/sdrampeek.c"
#endif
#ifndef MAKEFILE
#include "../nvm/nvm.c"
#include "../nvm/nvmpeek.c"
#include "../nvm/nvmpeek1.c"
#include "../nvm/nvmpeek2.c"
#include "../nvm/manifest.c"
#include "../nvm/fdmanifest.c"
#endif
/*====================================================================*
* program constants;
*--------------------------------------------------------------------*/
#define HARDWARE 0
#define SOFTWARE 1
#define VER 2
#define REV 3
#define BUILD 6
#define DATE 7
/*====================================================================*
*
* unsigned string2vector (char ** vector, length, char * string, char c);
*
* convert string to a vector and return vector count; split string
* on characer (c);
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
static unsigned string2vector (char ** vector, char * string, char c)
{
char ** origin = vector;
for (*vector++ = string; *string; string++)
{
if (*string == c)
{
*string++ = (char)(0);
*vector++ = string--;
}
}
*vector = (char *)(0);
return ((unsigned)(vector - origin));
}
/*====================================================================*
*
* void firmware (signed fd, char const * filename, unsigned module, unsigned offset, flag_t flags);
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
static void firmware (signed fd, char const * filename, unsigned module, unsigned offset, flag_t flags)
{
char memory [512];
read (fd, memory, sizeof (memory));
lseek (fd, (off_t)(0) - sizeof (memory), SEEK_CUR);
if (_anyset (flags, NVM_FIRMWARE))
{
if ((*memory > 0x20) && (*memory < 0x7F))
{
printf ("%s (%d) %s\n", filename, module, memory);
}
else
{
printf ("%s (%d) %s\n", filename, module, memory + offset);
}
}
if (_anyset (flags, NVM_IDENTITY))
{
char * vector [16];
char buffer [256];
if ((* memory > 0x20) && (* memory < 0x7f))
{
strncpy (buffer, memory, sizeof (buffer));
}
else
{
strncpy (buffer, memory + offset, sizeof (buffer));
}
string2vector (vector, buffer, '-');
printf ("%s ", vector [HARDWARE]);
printf ("%04d ", atoi (vector [BUILD]));
printf ("%s ", vector [DATE]);
printf ("%s.", vector [VER]);
printf ("%s ", vector [REV]);
printf ("%s (%d)\n", filename, module);
return;
}
return;
}
/*====================================================================*
*
* signed nvmchain1 (signed fd, char const * filename, flag_t flags);
*
* validate a legcy PLC firmware file; return 0 on success or -1 on
* error;
*
* keep as little information as possible in memory; this slows
* validation but minimizes the resources needed at runtime so
* that resource requirements do not grow with file size;
*
* the checksum of the entire header, including header checksum, is
* always 0 for valid headers; similarly, the checksum of the module
* and module checksum is always 0 for valid modules;
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
static signed nvmchain1 (signed fd, char const * filename, flag_t flags)
{
struct nvm_header1 nvm_header;
struct config_ram config_ram;
unsigned module = 0;
do
{
if (read (fd, &nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_CANTREAD, filename, module);
}
return (-1);
}
if (LE32TOH (nvm_header.HEADERVERSION) != 0x60000000)
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_VERSION, filename, module);
}
return (-1);
}
if (checksum32 (&nvm_header, sizeof (nvm_header), 0))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_CHECKSUM, filename, module);
}
return (-1);
}
if (_anyset (flags, NVM_VERBOSE))
{
printf ("------- %s (%d) -------\n", filename, module);
nvmpeek1 (&nvm_header);
}
if (nvm_header.HEADERMINORVERSION)
{
if (LE32TOH (nvm_header.IMAGETYPE) == NVM_IMAGE_CONFIG_SYNOPSIS)
{
if (_anyset (flags, NVM_SDRAM))
{
printf ("------- %s (%d) -------\n", filename, module);
read (fd, &config_ram, sizeof (config_ram));
lseek (fd, (off_t)(0) - sizeof (config_ram), SEEK_CUR);
sdrampeek (&config_ram);
}
}
else if (LE32TOH (nvm_header.IMAGETYPE) == NVM_IMAGE_FIRMWARE)
{
firmware (fd, filename, module, 0x70, flags);
}
}
else if (!module)
{
if (_anyset (flags, NVM_SDRAM))
{
printf ("------- %s (%d) -------\n", filename, module);
read (fd, &config_ram, sizeof (config_ram));
lseek (fd, (off_t)(0) - sizeof (config_ram), SEEK_CUR);
sdrampeek (&config_ram);
}
}
else if (!nvm_header.NEXTHEADER)
{
firmware (fd, filename, module, 0x70, flags);
}
if (fdchecksum32 (fd, LE32TOH (nvm_header.IMAGELENGTH), nvm_header.IMAGECHECKSUM))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_IMG_CHECKSUM, filename, module);
}
return (-1);
}
module++;
}
while (nvm_header.NEXTHEADER);
if (lseek (fd, 0, SEEK_CUR) != lseek (fd, 0, SEEK_END))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_LINK, filename, module);
}
return (-1);
}
return (0);
}
/*====================================================================*
*
* signed nvmchain2 (signed fd, char const * filename, flag_t flags);
*
* validate a PLC image file; return 0 on success or -1 on error;
*
* keep as little information as possible in memory; this slows
* validation but minimizes the resources needed at runtime so
* that resource requirements do not grow with file size;
*
* the checksum of the entire header, including header checksum, is
* always 0 for valid headers; similarly, the checksum of the module
* and module checksum is always 0 for valid modules;
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
static signed nvmchain2 (signed fd, char const * filename, flag_t flags)
{
struct nvm_header2 nvm_header;
unsigned module = 0;
uint32_t origin = ~0;
uint32_t offset = 0;
do
{
if (read (fd, &nvm_header, sizeof (nvm_header)) != sizeof (nvm_header))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_CANTREAD, filename, module);
}
return (-1);
}
if (LE16TOH (nvm_header.MajorVersion) != 1)
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_VERSION, filename, module);
}
return (-1);
}
if (LE16TOH (nvm_header.MinorVersion) != 1)
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_VERSION, filename, module);
}
return (-1);
}
if (checksum32 (&nvm_header, sizeof (nvm_header), 0))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_CHECKSUM, filename, module);
}
return (-1);
}
if (LE32TOH (nvm_header.PrevHeader) != origin)
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_LINK, filename, module);
}
return (-1);
}
if (_anyset (flags, NVM_VERBOSE))
{
printf ("------- %s (%d) -------\n", filename, module);
nvmpeek2 (&nvm_header);
}
if (LE32TOH (nvm_header.ImageType) == NVM_IMAGE_MANIFEST)
{
if (_anyset (flags, NVM_MANIFEST))
{
fdmanifest (fd, filename, &nvm_header, module);
return (0);
}
}
if (fdchecksum32 (fd, LE32TOH (nvm_header.ImageLength), nvm_header.ImageChecksum))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_IMG_CHECKSUM, filename, module);
}
return (-1);
}
origin = offset;
offset = LE32TOH (nvm_header.NextHeader);
module++;
}
while (~nvm_header.NextHeader);
if (lseek (fd, 0, SEEK_CUR) != lseek (fd, 0, SEEK_END))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, NVM_HDR_LINK, filename, module);
}
return (-1);
}
return (0);
}
/*====================================================================*
*
* signed chknvm (char const * filename, flag_t flags);
*
* validate a PLC firmware module file; keep as little information
* as possible in memory; this slows validation but minimizes the
* resources needed at runtime; resource requirements do not grow
* with file size;
*
* determine file format based on module header version then rewind
* the file and call the appropriate chknvm;
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
static signed chknvm (char const * filename, flag_t flags)
{
uint32_t version;
signed status;
signed fd;
if ((fd = open (filename, O_BINARY|O_RDONLY)) == -1)
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, FILE_CANTOPEN, filename);
}
return (-1);
}
if (read (fd, &version, sizeof (version)) != sizeof (version))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, FILE_CANTREAD, filename);
}
return (-1);
}
if (lseek (fd, 0, SEEK_SET))
{
if (_allclr (flags, NVM_SILENCE))
{
error (0, errno, FILE_CANTHOME, filename);
}
return (-1);
}
if (LE32TOH (version) == 0x60000000)
{
status = nvmchain1 (fd, filename, flags);
}
else
{
status = nvmchain2 (fd, filename, flags);
}
close (fd);
return (status);
}
/*====================================================================*
*
* int main (int argc, char const * argv []);
*
* validate a PLC firmware image file; keep as little information
* as possible in memory; this slows validation but minimizes the
* resources needed at runtime; resource requirements do not grow
* with file size;
*
*
* Contributor(s):
* Charles Maier
*
*--------------------------------------------------------------------*/
int main (int argc, char const * argv [])
{
static char const * optv [] =
{
"imqrsv",
"file [file] [...]",
"Qualcomm Atheros PLC Image File Validator",
"i\tprint firmware identity string",
"m\tdisplay manifest",
"q\tsuppress messages",
"r\tprint firmware revision string",
"s\tprint SDRAM configuration blocks",
"v\tverbose messages",
(char const *) (0)
};
signed state = 0;
flag_t flags = (flag_t)(0);
signed c;
optind = 1;
while ((c = getoptv (argc, argv, optv)) != -1)
{
switch ((char) (c))
{
case 'i':
_setbits (flags, NVM_IDENTITY);
break;
case 'r':
_setbits (flags, NVM_FIRMWARE);
break;
case 'm':
_setbits (flags, NVM_MANIFEST);
break;
case 's':
_setbits (flags, NVM_SDRAM);
break;
case 'q':
_setbits (flags, NVM_SILENCE);
break;
case 'v':
_setbits (flags, NVM_VERBOSE);
break;
default:
break;
}
}
argc -= optind;
argv += optind;
while ((argc) && (* argv))
{
if (chknvm (* argv, flags))
{
state = 1;
}
else if (_allclr (flags, (NVM_VERBOSE|NVM_SILENCE|NVM_MANIFEST|NVM_FIRMWARE|NVM_IDENTITY|NVM_SDRAM)))
{
printf ("file %s looks good\n", * argv);
}
argc--;
argv++;
}
return (state);
}
|