VirtualBox

source: vbox/trunk/src/VBox/Devices/BiosCommonCode/MakeAlternativeSource.cpp@ 62406

Last change on this file since 62406 was 62406, checked in by vboxsync, 8 years ago

5.1.2 (and convert two LogRel() statements back to Log() in VBoxSeamless.cpp)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 61.5 KB
Line 
1/* $Id: MakeAlternativeSource.cpp 62406 2016-07-21 15:34:39Z vboxsync $ */
2/** @file
3 * MakeAlternative - Generate an Alternative BIOS Source that requires less tools.
4 */
5
6/*
7 * Copyright (C) 2012-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#include <iprt/asm.h>
23#include <iprt/buildconfig.h>
24#include <iprt/ctype.h>
25#include <iprt/dbg.h>
26#include <iprt/file.h>
27#include <iprt/getopt.h>
28#include <iprt/initterm.h>
29#include <iprt/list.h>
30#include <iprt/mem.h>
31#include <iprt/message.h>
32#include <iprt/string.h>
33#include <iprt/stream.h>
34#include <iprt/x86.h>
35
36#include <VBox/dis.h>
37
38
39/*********************************************************************************************************************************
40* Structures and Typedefs *
41*********************************************************************************************************************************/
42/**
43 * A BIOS segment.
44 */
45typedef struct BIOSSEG
46{
47 char szName[32];
48 char szClass[32];
49 char szGroup[32];
50 RTFAR16 Address;
51 uint32_t uFlatAddr;
52 uint32_t cb;
53} BIOSSEG;
54/** Pointer to a BIOS segment. */
55typedef BIOSSEG *PBIOSSEG;
56
57
58/**
59 * A BIOS object file.
60 */
61typedef struct BIOSOBJFILE
62{
63 RTLISTNODE Node;
64 char *pszSource;
65 char *pszObject;
66} BIOSOBJFILE;
67/** A BIOS object file. */
68typedef BIOSOBJFILE *PBIOSOBJFILE;
69
70
71/**
72 * Pointer to a BIOS map parser handle.
73 */
74typedef struct BIOSMAP
75{
76 /** The stream pointer. */
77 PRTSTREAM hStrm;
78 /** The file name. */
79 const char *pszMapFile;
80 /** Set when EOF has been reached. */
81 bool fEof;
82 /** The current line number (0 based).*/
83 uint32_t iLine;
84 /** The length of the current line. */
85 uint32_t cch;
86 /** The offset of the first non-white character on the line. */
87 uint32_t offNW;
88 /** The line buffer. */
89 char szLine[16384];
90} BIOSMAP;
91/** Pointer to a BIOS map parser handle. */
92typedef BIOSMAP *PBIOSMAP;
93
94
95/*********************************************************************************************************************************
96* Global Variables *
97*********************************************************************************************************************************/
98/** The verbosity level.*/
99static unsigned g_cVerbose = 1 /*0*/;
100/** Pointer to the BIOS image. */
101static uint8_t const *g_pbImg;
102/** The size of the BIOS image. */
103static size_t g_cbImg;
104
105/** Debug module for the map file. */
106static RTDBGMOD g_hMapMod = NIL_RTDBGMOD;
107/** The number of BIOS segments found in the map file. */
108static uint32_t g_cSegs = 0;
109/** Array of BIOS segments from the map file. */
110static BIOSSEG g_aSegs[32];
111/** List of BIOSOBJFILE. */
112static RTLISTANCHOR g_ObjList;
113
114/** The output stream. */
115static PRTSTREAM g_hStrmOutput = NULL;
116
117/** The type of BIOS we're working on. */
118static enum BIOSTYPE
119{
120 kBiosType_System = 0,
121 kBiosType_Vga
122} g_enmBiosType = kBiosType_System;
123/** The flat ROM base address. */
124static uint32_t g_uBiosFlatBase = 0xf0000;
125
126
127static bool outputPrintfV(const char *pszFormat, va_list va)
128{
129 int rc = RTStrmPrintfV(g_hStrmOutput, pszFormat, va);
130 if (RT_FAILURE(rc))
131 {
132 RTMsgError("Output error: %Rrc\n", rc);
133 return false;
134 }
135 return true;
136}
137
138
139static bool outputPrintf(const char *pszFormat, ...)
140{
141 va_list va;
142 va_start(va, pszFormat);
143 bool fRc = outputPrintfV(pszFormat, va);
144 va_end(va);
145 return fRc;
146}
147
148
149/**
150 * Opens the output file for writing.
151 *
152 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE+msg.
153 * @param pszOutput Path to the output file.
154 */
155static RTEXITCODE OpenOutputFile(const char *pszOutput)
156{
157 if (!pszOutput)
158 g_hStrmOutput = g_pStdOut;
159 else
160 {
161 int rc = RTStrmOpen(pszOutput, "w", &g_hStrmOutput);
162 if (RT_FAILURE(rc))
163 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to open output file '%s': %Rrc", pszOutput, rc);
164 }
165 return RTEXITCODE_SUCCESS;
166}
167
168
169/**
170 * Displays a disassembly error and returns @c false.
171 *
172 * @returns @c false.
173 * @param pszFormat The error format string.
174 * @param ... Format argument.
175 */
176static bool disError(const char *pszFormat, ...)
177{
178 va_list va;
179 va_start(va, pszFormat);
180 RTMsgErrorV(pszFormat, va);
181 va_end(va);
182 return false;
183}
184
185
186/**
187 * Output the disassembly file header.
188 *
189 * @returns @c true on success,
190 */
191static bool disFileHeader(void)
192{
193 bool fRc;
194 fRc = outputPrintf("; $Id: MakeAlternativeSource.cpp 62406 2016-07-21 15:34:39Z vboxsync $ \n"
195 ";; @file\n"
196 "; Auto Generated source file. Do not edit.\n"
197 ";\n"
198 );
199 if (!fRc)
200 return fRc;
201
202 /*
203 * List the header of each source file, up to and including the
204 * copyright notice.
205 */
206 bool fNeedLgplDisclaimer = false;
207 PBIOSOBJFILE pObjFile;
208 RTListForEach(&g_ObjList, pObjFile, BIOSOBJFILE, Node)
209 {
210 PRTSTREAM hStrm;
211 int rc = RTStrmOpen(pObjFile->pszSource, "r", &hStrm);
212 if (RT_SUCCESS(rc))
213 {
214 fRc = outputPrintf("\n"
215 ";\n"
216 "; Source file: %Rbn\n"
217 ";\n"
218 , pObjFile->pszSource);
219 uint32_t iLine = 0;
220 bool fSeenCopyright = false;
221 char szLine[4096];
222 while ((rc = RTStrmGetLine(hStrm, szLine, sizeof(szLine))) == VINF_SUCCESS)
223 {
224 iLine++;
225
226 /* Check if we're done. */
227 char *psz = RTStrStrip(szLine);
228 if ( fSeenCopyright
229 && ( (psz[0] == '*' && psz[1] == '/')
230 || psz[0] == '\0') )
231 break;
232
233 /* Strip comment suffix. */
234 size_t cch = strlen(psz);
235 if (cch >= 2 && psz[cch - 1] == '/' && psz[cch - 2] == '*')
236 {
237 psz[cch - 2] = '\0';
238 RTStrStripR(psz);
239 }
240
241 /* Skip line prefix. */
242 if (psz[0] == '/' && psz[1] == '*')
243 psz += 2;
244 else if (psz[0] == '*')
245 psz += 1;
246 else
247 while (*psz == ';')
248 psz++;
249 if (RT_C_IS_SPACE(*psz))
250 psz++;
251
252 /* Skip the doxygen file tag line. */
253 if (!strcmp(psz, "* @file") || !strcmp(psz, "@file"))
254 continue;
255
256 /* Detect copyright section. */
257 if ( !fSeenCopyright
258 && ( strstr(psz, "Copyright")
259 || strstr(psz, "copyright")) )
260 fSeenCopyright = true;
261
262 /* Detect LGPL. */
263 if (strstr(psz, "LGPL"))
264 fNeedLgplDisclaimer = true;
265
266 fRc = outputPrintf("; %s\n", psz) && fRc;
267 }
268
269 RTStrmClose(hStrm);
270 if (rc != VINF_SUCCESS)
271 return disError("Error reading '%s': rc=%Rrc iLine=%u", pObjFile->pszSource, rc, iLine);
272 }
273 }
274
275 /*
276 * Add Oracle LGPL disclaimer.
277 */
278 if (fNeedLgplDisclaimer)
279 outputPrintf("\n"
280 ";\n"
281 "; Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice\n"
282 "; other than GPL or LGPL is available it will apply instead, Oracle elects to use only\n"
283 "; the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where\n"
284 "; a choice of LGPL license versions is made available with the language indicating\n"
285 "; that LGPLv2 or any later version may be used, or where a choice of which version\n"
286 "; of the LGPL is applied is otherwise unspecified.\n"
287 ";\n"
288 "\n");
289
290 /*
291 * Set the org.
292 */
293 fRc = outputPrintf("\n"
294 "\n"
295 "\n"
296 ) && fRc;
297 return fRc;
298}
299
300
301/**
302 * Checks if a byte sequence could be a string litteral.
303 *
304 * @returns @c true if it is, @c false if it isn't.
305 * @param uFlatAddr The address of the byte sequence.
306 * @param cb The length of the sequence.
307 */
308static bool disIsString(uint32_t uFlatAddr, uint32_t cb)
309{
310 if (cb < 6)
311 return false;
312
313 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
314 while (cb > 0)
315 {
316 if ( !RT_C_IS_PRINT(*pb)
317 && *pb != '\r'
318 && *pb != '\n'
319 && *pb != '\t')
320 {
321 if (*pb == '\0')
322 {
323 do
324 {
325 pb++;
326 cb--;
327 } while (cb > 0 && *pb == '\0');
328 return cb == 0;
329 }
330 return false;
331 }
332 pb++;
333 cb--;
334 }
335
336 return true;
337}
338
339
340/**
341 * Checks if a dword could be a far 16:16 BIOS address.
342 *
343 * @returns @c true if it is, @c false if it isn't.
344 * @param uFlatAddr The address of the dword.
345 */
346static bool disIsFarBiosAddr(uint32_t uFlatAddr)
347{
348 uint16_t const *pu16 = (uint16_t const *)&g_pbImg[uFlatAddr - g_uBiosFlatBase];
349 if (pu16[1] < 0xf000)
350 return false;
351 if (pu16[1] > 0xfff0)
352 return false;
353 uint32_t uFlatAddr2 = (uint32_t)(pu16[1] << 4) | pu16[0];
354 if (uFlatAddr2 >= g_uBiosFlatBase + g_cbImg)
355 return false;
356 return true;
357}
358
359
360static bool disByteData(uint32_t uFlatAddr, uint32_t cb)
361{
362 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
363 size_t cbOnLine = 0;
364 while (cb-- > 0)
365 {
366 bool fRc;
367 if (cbOnLine >= 16)
368 {
369 fRc = outputPrintf("\n"
370 " db 0%02xh", *pb);
371 cbOnLine = 1;
372 }
373 else if (!cbOnLine)
374 {
375 fRc = outputPrintf(" db 0%02xh", *pb);
376 cbOnLine = 1;
377 }
378 else
379 {
380 fRc = outputPrintf(", 0%02xh", *pb);
381 cbOnLine++;
382 }
383 if (!fRc)
384 return false;
385 pb++;
386 }
387 return outputPrintf("\n");
388}
389
390
391static bool disWordData(uint32_t uFlatAddr, uint32_t cb)
392{
393 if (cb & 1)
394 return disError("disWordData expects word aligned size: cb=%#x uFlatAddr=%#x", uFlatAddr, cb);
395
396 uint16_t const *pu16 = (uint16_t const *)&g_pbImg[uFlatAddr - g_uBiosFlatBase];
397 size_t cbOnLine = 0;
398 while (cb > 0)
399 {
400 bool fRc;
401 if (cbOnLine >= 16)
402 {
403 fRc = outputPrintf("\n"
404 " dw 0%04xh", *pu16);
405 cbOnLine = 2;
406 }
407 else if (!cbOnLine)
408 {
409 fRc = outputPrintf(" dw 0%04xh", *pu16);
410 cbOnLine = 2;
411 }
412 else
413 {
414 fRc = outputPrintf(", 0%04xh", *pu16);
415 cbOnLine += 2;
416 }
417 if (!fRc)
418 return false;
419 pu16++;
420 cb -= 2;
421 }
422 return outputPrintf("\n");
423}
424
425
426static bool disDWordData(uint32_t uFlatAddr, uint32_t cb)
427{
428 if (cb & 3)
429 return disError("disWordData expects dword aligned size: cb=%#x uFlatAddr=%#x", uFlatAddr, cb);
430
431 uint32_t const *pu32 = (uint32_t const *)&g_pbImg[uFlatAddr - g_uBiosFlatBase];
432 size_t cbOnLine = 0;
433 while (cb > 0)
434 {
435 bool fRc;
436 if (cbOnLine >= 16)
437 {
438 fRc = outputPrintf("\n"
439 " dd 0%08xh", *pu32);
440 cbOnLine = 4;
441 }
442 else if (!cbOnLine)
443 {
444 fRc = outputPrintf(" dd 0%08xh", *pu32);
445 cbOnLine = 4;
446 }
447 else
448 {
449 fRc = outputPrintf(", 0%08xh", *pu32);
450 cbOnLine += 4;
451 }
452 if (!fRc)
453 return false;
454 pu32++;
455 cb -= 4;
456 }
457 return outputPrintf("\n");
458}
459
460
461static bool disStringData(uint32_t uFlatAddr, uint32_t cb)
462{
463 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
464 uint32_t cchOnLine = 0;
465 while (cb > 0)
466 {
467 /* Line endings and beginnings. */
468 if (cchOnLine >= 72)
469 {
470 if (!outputPrintf("\n"))
471 return false;
472 cchOnLine = 0;
473 }
474 if ( !cchOnLine
475 && !outputPrintf(" db "))
476 return false;
477
478 /* See how many printable character we've got. */
479 uint32_t cchPrintable = 0;
480 while ( cchPrintable < cb
481 && RT_C_IS_PRINT(pb[cchPrintable])
482 && pb[cchPrintable] != '\'')
483 cchPrintable++;
484
485 bool fRc = true;
486 if (cchPrintable)
487 {
488 if (cchPrintable + cchOnLine > 72)
489 cchPrintable = 72 - cchOnLine;
490 if (cchOnLine)
491 {
492 fRc = outputPrintf(", '%.*s'", cchPrintable, pb);
493 cchOnLine += 4 + cchPrintable;
494 }
495 else
496 {
497 fRc = outputPrintf("'%.*s'", cchPrintable, pb);
498 cchOnLine += 2 + cchPrintable;
499 }
500 pb += cchPrintable;
501 cb -= cchPrintable;
502 }
503 else
504 {
505 if (cchOnLine)
506 {
507 fRc = outputPrintf(", 0%02xh", *pb);
508 cchOnLine += 6;
509 }
510 else
511 {
512 fRc = outputPrintf("0%02xh", *pb);
513 cchOnLine += 4;
514 }
515 pb++;
516 cb--;
517 }
518 if (!fRc)
519 return false;
520 }
521 return outputPrintf("\n");
522}
523
524
525/**
526 * For dumping a portion of a string table.
527 *
528 * @returns @c true on success, @c false on failure.
529 * @param uFlatAddr The start address.
530 * @param cb The size of the string table.
531 */
532static bool disStringsData(uint32_t uFlatAddr, uint32_t cb)
533{
534 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
535 uint32_t cchOnLine = 0;
536 uint8_t bPrev = 255;
537 while (cb > 0)
538 {
539 /* Line endings and beginnings. */
540 if ( cchOnLine >= 72
541 || (bPrev == '\0' && *pb != '\0'))
542 {
543 if (!outputPrintf("\n"))
544 return false;
545 cchOnLine = 0;
546 }
547 if ( !cchOnLine
548 && !outputPrintf(" db "))
549 return false;
550
551 /* See how many printable character we've got. */
552 uint32_t cchPrintable = 0;
553 while ( cchPrintable < cb
554 && RT_C_IS_PRINT(pb[cchPrintable])
555 && pb[cchPrintable] != '\'')
556 cchPrintable++;
557
558 bool fRc = true;
559 if (cchPrintable)
560 {
561 if (cchPrintable + cchOnLine > 72)
562 cchPrintable = 72 - cchOnLine;
563 if (cchOnLine)
564 {
565 fRc = outputPrintf(", '%.*s'", cchPrintable, pb);
566 cchOnLine += 4 + cchPrintable;
567 }
568 else
569 {
570 fRc = outputPrintf("'%.*s'", cchPrintable, pb);
571 cchOnLine += 2 + cchPrintable;
572 }
573 pb += cchPrintable;
574 cb -= cchPrintable;
575 }
576 else
577 {
578 if (cchOnLine)
579 {
580 fRc = outputPrintf(", 0%02xh", *pb);
581 cchOnLine += 6;
582 }
583 else
584 {
585 fRc = outputPrintf("0%02xh", *pb);
586 cchOnLine += 4;
587 }
588 pb++;
589 cb--;
590 }
591 if (!fRc)
592 return false;
593 bPrev = pb[-1];
594 }
595 return outputPrintf("\n");
596}
597
598
599/**
600 * Minds the gap between two segments.
601 *
602 * Gaps should generally be zero filled.
603 *
604 * @returns @c true on success, @c false on failure.
605 * @param uFlatAddr The address of the gap.
606 * @param cbPadding The size of the gap.
607 */
608static bool disCopySegmentGap(uint32_t uFlatAddr, uint32_t cbPadding)
609{
610 if (g_cVerbose > 0)
611 outputPrintf("\n"
612 " ; Padding %#x bytes at %#x\n", cbPadding, uFlatAddr);
613 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
614 if (ASMMemIsZero(pb, cbPadding))
615 return outputPrintf(" times %u db 0\n", cbPadding);
616
617 return disByteData(uFlatAddr, cbPadding);
618}
619
620
621/**
622 * Worker for disGetNextSymbol that only does the looking up, no RTDBSYMBOL::cb
623 * calc.
624 *
625 * @param uFlatAddr The address to start searching at.
626 * @param cbMax The size of the search range.
627 * @param poff Where to return the offset between the symbol
628 * and @a uFlatAddr.
629 * @param pSym Where to return the symbol data.
630 */
631static void disGetNextSymbolWorker(uint32_t uFlatAddr, uint32_t cbMax, uint32_t *poff, PRTDBGSYMBOL pSym)
632{
633 RTINTPTR off = 0;
634 int rc = RTDbgModSymbolByAddr(g_hMapMod, RTDBGSEGIDX_RVA, uFlatAddr, RTDBGSYMADDR_FLAGS_GREATER_OR_EQUAL, &off, pSym);
635 if (RT_SUCCESS(rc))
636 {
637 /* negative offset, indicates beyond. */
638 if (off <= 0)
639 {
640 *poff = (uint32_t)-off;
641 return;
642 }
643
644 outputPrintf(" ; !! RTDbgModSymbolByAddr(,,%#x,,) -> off=%RTptr cb=%RTptr uValue=%RTptr '%s'\n",
645 uFlatAddr, off, pSym->cb, pSym->Value, pSym->szName);
646 }
647 else if (rc != VERR_SYMBOL_NOT_FOUND)
648 outputPrintf(" ; !! RTDbgModSymbolByAddr(,,%#x,,) -> %Rrc\n", uFlatAddr, rc);
649
650 RTStrPrintf(pSym->szName, sizeof(pSym->szName), "_dummy_addr_%#x", uFlatAddr + cbMax);
651 pSym->Value = uFlatAddr + cbMax;
652 pSym->cb = 0;
653 pSym->offSeg = uFlatAddr + cbMax;
654 pSym->iSeg = RTDBGSEGIDX_RVA;
655 pSym->iOrdinal = 0;
656 pSym->fFlags = 0;
657 *poff = cbMax;
658}
659
660
661/**
662 * Gets the symbol at or after the given address.
663 *
664 * If there are no symbols in the specified range, @a pSym and @a poff will be
665 * set up to indicate a symbol at the first byte after the range.
666 *
667 * @param uFlatAddr The address to start searching at.
668 * @param cbMax The size of the search range.
669 * @param poff Where to return the offset between the symbol
670 * and @a uFlatAddr.
671 * @param pSym Where to return the symbol data.
672 */
673static void disGetNextSymbol(uint32_t uFlatAddr, uint32_t cbMax, uint32_t *poff, PRTDBGSYMBOL pSym)
674{
675 disGetNextSymbolWorker(uFlatAddr, cbMax, poff, pSym);
676 if ( *poff < cbMax
677 && pSym->cb == 0)
678 {
679 if (*poff + 1 < cbMax)
680 {
681 uint32_t off2;
682 RTDBGSYMBOL Sym2;
683 disGetNextSymbolWorker(uFlatAddr + *poff + 1, cbMax - *poff - 1, &off2, &Sym2);
684 pSym->cb = off2 + 1;
685 }
686 else
687 pSym->cb = 1;
688 }
689 if (pSym->cb > cbMax - *poff)
690 pSym->cb = cbMax - *poff;
691
692 if (g_cVerbose > 1)
693 outputPrintf(" ; disGetNextSymbol %#x LB %#x -> off=%#x cb=%RTptr uValue=%RTptr '%s'\n",
694 uFlatAddr, cbMax, *poff, pSym->cb, pSym->Value, pSym->szName);
695
696}
697
698
699/**
700 * For dealing with the const segment (string constants).
701 *
702 * @returns @c true on success, @c false on failure.
703 * @param iSeg The segment.
704 */
705static bool disConstSegment(uint32_t iSeg)
706{
707 uint32_t uFlatAddr = g_aSegs[iSeg].uFlatAddr;
708 uint32_t cb = g_aSegs[iSeg].cb;
709
710 while (cb > 0)
711 {
712 uint32_t off;
713 RTDBGSYMBOL Sym;
714 disGetNextSymbol(uFlatAddr, cb, &off, &Sym);
715
716 if (off > 0)
717 {
718 if (!disStringsData(uFlatAddr, off))
719 return false;
720 cb -= off;
721 uFlatAddr += off;
722 off = 0;
723 if (!cb)
724 break;
725 }
726
727 bool fRc;
728 if (off == 0)
729 {
730 size_t cchName = strlen(Sym.szName);
731 fRc = outputPrintf("%s: %*s; %#x LB %#x\n", Sym.szName, cchName < 41 - 2 ? cchName - 41 - 2 : 0, "", uFlatAddr, Sym.cb);
732 if (!fRc)
733 return false;
734 fRc = disStringsData(uFlatAddr, Sym.cb);
735 uFlatAddr += Sym.cb;
736 cb -= Sym.cb;
737 }
738 else
739 {
740 fRc = disStringsData(uFlatAddr, Sym.cb);
741 uFlatAddr += cb;
742 cb = 0;
743 }
744 if (!fRc)
745 return false;
746 }
747
748 return true;
749}
750
751
752
753static bool disDataSegment(uint32_t iSeg)
754{
755 uint32_t uFlatAddr = g_aSegs[iSeg].uFlatAddr;
756 uint32_t cb = g_aSegs[iSeg].cb;
757
758 while (cb > 0)
759 {
760 uint32_t off;
761 RTDBGSYMBOL Sym;
762 disGetNextSymbol(uFlatAddr, cb, &off, &Sym);
763
764 if (off > 0)
765 {
766 if (!disByteData(uFlatAddr, off))
767 return false;
768 cb -= off;
769 uFlatAddr += off;
770 off = 0;
771 if (!cb)
772 break;
773 }
774
775 bool fRc;
776 if (off == 0)
777 {
778 size_t cchName = strlen(Sym.szName);
779 fRc = outputPrintf("%s: %*s; %#x LB %#x\n", Sym.szName, cchName < 41 - 2 ? cchName - 41 - 2 : 0, "", uFlatAddr, Sym.cb);
780 if (!fRc)
781 return false;
782
783 if (Sym.cb == 2)
784 fRc = disWordData(uFlatAddr, 2);
785 //else if (Sym.cb == 4 && disIsFarBiosAddr(uFlatAddr))
786 // fRc = disDWordData(uFlatAddr, 4);
787 else if (Sym.cb == 4)
788 fRc = disDWordData(uFlatAddr, 4);
789 else if (disIsString(uFlatAddr, Sym.cb))
790 fRc = disStringData(uFlatAddr, Sym.cb);
791 else
792 fRc = disByteData(uFlatAddr, Sym.cb);
793
794 uFlatAddr += Sym.cb;
795 cb -= Sym.cb;
796 }
797 else
798 {
799 fRc = disByteData(uFlatAddr, cb);
800 uFlatAddr += cb;
801 cb = 0;
802 }
803 if (!fRc)
804 return false;
805 }
806
807 return true;
808}
809
810
811static bool disIsCodeAndAdjustSize(uint32_t uFlatAddr, PRTDBGSYMBOL pSym, PBIOSSEG pSeg)
812{
813 switch (g_enmBiosType)
814 {
815 /*
816 * This is for the PC BIOS.
817 */
818 case kBiosType_System:
819 if (!strcmp(pSeg->szName, "BIOSSEG"))
820 {
821 if ( !strcmp(pSym->szName, "rom_fdpt")
822 || !strcmp(pSym->szName, "pmbios_gdt")
823 || !strcmp(pSym->szName, "pmbios_gdt_desc")
824 || !strcmp(pSym->szName, "_pmode_IDT")
825 || !strcmp(pSym->szName, "_rmode_IDT")
826 || !strncmp(pSym->szName, RT_STR_TUPLE("font"))
827 || !strcmp(pSym->szName, "bios_string")
828 || !strcmp(pSym->szName, "vector_table")
829 || !strcmp(pSym->szName, "pci_routing_table_structure")
830 || !strcmp(pSym->szName, "_pci_routing_table")
831 )
832 return false;
833 }
834
835 if (!strcmp(pSym->szName, "cpu_reset"))
836 pSym->cb = RT_MIN(pSym->cb, 5);
837 else if (!strcmp(pSym->szName, "pci_init_end"))
838 pSym->cb = RT_MIN(pSym->cb, 3);
839 break;
840
841 /*
842 * This is for the VGA BIOS.
843 */
844 case kBiosType_Vga:
845 break;
846 }
847
848 return true;
849}
850
851
852static bool disIs16BitCode(const char *pszSymbol)
853{
854 return true;
855}
856
857
858/**
859 * Deals with instructions that YASM will assemble differently than WASM/WCC.
860 */
861static size_t disHandleYasmDifferences(PDISCPUSTATE pCpuState, uint32_t uFlatAddr, uint32_t cbInstr,
862 char *pszBuf, size_t cbBuf, size_t cchUsed)
863{
864 bool fDifferent = DISFormatYasmIsOddEncoding(pCpuState);
865 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
866
867 /*
868 * Disassembler bugs.
869 */
870 /** @todo Group 1a and 11 seems to be disassembled incorrectly when
871 * modrm.reg != 0. Those encodings should be invalid AFAICT. */
872
873 if ( ( pCpuState->bOpCode == 0x8f /* group 1a */
874 || pCpuState->bOpCode == 0xc7 /* group 11 */
875 || pCpuState->bOpCode == 0xc6 /* group 11 - not verified */
876 )
877 && pCpuState->ModRM.Bits.Reg != 0)
878 fDifferent = true;
879 /*
880 * Check these out and consider adding them to DISFormatYasmIsOddEncoding.
881 */
882 else if ( pb[0] == 0xf3
883 && pb[1] == 0x66
884 && pb[2] == 0x6d)
885 fDifferent = true; /* rep insd - prefix switched. */
886 else if ( pb[0] == 0xc6
887 && pb[1] == 0xc5
888 && pb[2] == 0xba)
889 fDifferent = true; /* mov ch, 0bah - yasm uses a short sequence: 0xb5 0xba. */
890
891 /*
892 * 32-bit retf.
893 */
894 else if ( pb[0] == 0x66
895 && pb[1] == 0xcb)
896 fDifferent = true;
897
898 /*
899 * Handle different stuff.
900 */
901 if (fDifferent)
902 {
903 disByteData(uFlatAddr, cbInstr); /* lazy bird. */
904
905 if (cchUsed + 2 < cbBuf)
906 {
907 memmove(pszBuf + 2, pszBuf, cchUsed + 1); /* include terminating \0 */
908 cchUsed += 2;
909 }
910
911 pszBuf[0] = ';';
912 pszBuf[1] = ' ';
913 }
914
915 return cchUsed;
916}
917
918
919/**
920 * @callback_method_impl{FNDISREADBYTES}
921 *
922 * @remarks @a uSrcAddr is the flat address.
923 */
924static DECLCALLBACK(int) disReadOpcodeBytes(PDISCPUSTATE pDis, uint8_t offInstr, uint8_t cbMinRead, uint8_t cbMaxRead)
925{
926 RTUINTPTR offBios = pDis->uInstrAddr + offInstr - g_uBiosFlatBase;
927 size_t cbToRead = cbMaxRead;
928 if (offBios + cbToRead > g_cbImg)
929 {
930 if (offBios >= g_cbImg)
931 cbToRead = 0;
932 else
933 cbToRead = g_cbImg - offBios;
934 }
935 memcpy(&pDis->abInstr[offInstr], &g_pbImg[offBios], cbToRead);
936 pDis->cbCachedInstr = (uint8_t)(offInstr + cbToRead);
937 return VINF_SUCCESS;
938}
939
940
941/**
942 * Disassembles code.
943 *
944 * @returns @c true on success, @c false on failure.
945 * @param uFlatAddr The address where the code starts.
946 * @param cb The amount of code to disassemble.
947 * @param fIs16Bit Is is 16-bit (@c true) or 32-bit (@c false).
948 */
949static bool disCode(uint32_t uFlatAddr, uint32_t cb, bool fIs16Bit)
950{
951 uint8_t const *pb = &g_pbImg[uFlatAddr - g_uBiosFlatBase];
952
953 while (cb > 0)
954 {
955 /* Trailing zero padding detection. */
956 if ( *pb == '\0'
957 && ASMMemIsZero(pb, RT_MIN(cb, 8)))
958 {
959 void *pv = ASMMemFirstNonZero(pb, cb);
960 uint32_t cbZeros = pv ? (uint32_t)((uint8_t const *)pv - pb) : cb;
961 if (!outputPrintf(" times %#x db 0\n", cbZeros))
962 return false;
963 cb -= cbZeros;
964 pb += cbZeros;
965 uFlatAddr += cbZeros;
966 if ( cb == 2
967 && pb[0] == 'X'
968 && pb[1] == 'M')
969 return disStringData(uFlatAddr, cb);
970 }
971 /* Work arounds for switch tables and such (disas assertions). */
972 else if ( 0
973 || ( pb[0] == 0x50 /* int13_cdemu switch */
974 && pb[1] == 0x4e
975 && pb[2] == 0x49
976 && pb[3] == 0x48
977 && pb[4] == 0x47
978 )
979 || ( pb[0] == 0x67 /* _pci16_function switch */
980 && pb[1] == 0x92
981 && pb[2] == 0x81
982 && pb[3] == 0x92
983 && pb[4] == 0x94
984 && pb[5] == 0x92
985 )
986 || ( pb[0] == 0xa3 /* _int1a_function switch */
987 && pb[1] == 0x67
988 && pb[2] == 0xca
989 && pb[3] == 0x67
990 && pb[4] == 0xef
991 && pb[5] == 0x67
992 )
993 || ( pb[0] == 0x0b /* _ahci_init byte table */
994 && pb[1] == 0x05
995 && pb[2] == 0x04
996 && pb[3] == 0x03
997 && pb[4] == 0x02
998 && pb[5] == 0x01
999 )
1000 || ( pb[0] == 0x00 /* bytes after apm_out_str_ */
1001 && pb[1] == 0x00
1002 && pb[2] == 0x00
1003 && pb[3] == 0x00
1004 && pb[4] == 0x00
1005 && pb[5] == 0x00
1006 && pb[6] == 0xe0
1007 && pb[7] == 0xa0
1008 && pb[8] == 0xe2
1009 && pb[9] == 0xa0)
1010 || ( pb[0] == 0xd4
1011 && pb[1] == 0xc6
1012 && pb[2] == 0xc5
1013 && pb[3] == 0xba
1014 && pb[4] == 0xb8
1015 && pb[5] == 0xb6)
1016 || ( pb[0] == 0xec /* _int15_function switch */
1017 && pb[1] == 0xe9
1018 && pb[2] == 0xd8
1019 && pb[3] == 0xc1
1020 && pb[4] == 0xc0
1021 && pb[5] == 0xbf)
1022 || ( pb[0] == 0x21 /* _int15_function32 switch */
1023 && pb[1] == 0x66
1024 && pb[2] == 0x43
1025 && pb[3] == 0x66
1026 && pb[4] == 0x66
1027 && pb[5] == 0x66)
1028 || 0
1029 )
1030 return disByteData(uFlatAddr, cb);
1031 else
1032 {
1033 unsigned cbInstr;
1034 DISCPUSTATE CpuState;
1035 int rc = DISInstrWithReader(uFlatAddr, fIs16Bit ? DISCPUMODE_16BIT : DISCPUMODE_32BIT,
1036 disReadOpcodeBytes, NULL, &CpuState, &cbInstr);
1037 if ( RT_SUCCESS(rc)
1038 && cbInstr <= cb
1039 && CpuState.pCurInstr
1040 && CpuState.pCurInstr->uOpcode != OP_INVALID)
1041 {
1042 char szTmp[4096];
1043 size_t cch = DISFormatYasmEx(&CpuState, szTmp, sizeof(szTmp),
1044 DIS_FMT_FLAGS_STRICT
1045 | DIS_FMT_FLAGS_BYTES_RIGHT | DIS_FMT_FLAGS_BYTES_COMMENT | DIS_FMT_FLAGS_BYTES_SPACED,
1046 NULL, NULL);
1047 cch = disHandleYasmDifferences(&CpuState, uFlatAddr, cbInstr, szTmp, sizeof(szTmp), cch);
1048 Assert(cch < sizeof(szTmp));
1049
1050 if (g_cVerbose > 1)
1051 {
1052 while (cch < 72)
1053 szTmp[cch++] = ' ';
1054 RTStrPrintf(&szTmp[cch], sizeof(szTmp) - cch, "; %#x", uFlatAddr);
1055 }
1056
1057 if (!outputPrintf(" %s\n", szTmp))
1058 return false;
1059 cb -= cbInstr;
1060 pb += cbInstr;
1061 uFlatAddr += cbInstr;
1062 }
1063 else
1064 {
1065 if (!disByteData(uFlatAddr, 1))
1066 return false;
1067 cb--;
1068 pb++;
1069 uFlatAddr++;
1070 }
1071 }
1072 }
1073 return true;
1074}
1075
1076
1077static bool disCodeSegment(uint32_t iSeg)
1078{
1079 uint32_t uFlatAddr = g_aSegs[iSeg].uFlatAddr;
1080 uint32_t cb = g_aSegs[iSeg].cb;
1081
1082 while (cb > 0)
1083 {
1084 uint32_t off;
1085 RTDBGSYMBOL Sym;
1086 disGetNextSymbol(uFlatAddr, cb, &off, &Sym);
1087
1088 if (off > 0)
1089 {
1090 if (!disByteData(uFlatAddr, off))
1091 return false;
1092 cb -= off;
1093 uFlatAddr += off;
1094 off = 0;
1095 if (!cb)
1096 break;
1097 }
1098
1099 bool fRc;
1100 if (off == 0)
1101 {
1102 size_t cchName = strlen(Sym.szName);
1103 fRc = outputPrintf("%s: %*s; %#x LB %#x\n", Sym.szName, cchName < 41 - 2 ? cchName - 41 - 2 : 0, "", uFlatAddr, Sym.cb);
1104 if (!fRc)
1105 return false;
1106
1107 if (disIsCodeAndAdjustSize(uFlatAddr, &Sym, &g_aSegs[iSeg]))
1108 fRc = disCode(uFlatAddr, Sym.cb, disIs16BitCode(Sym.szName));
1109 else
1110 fRc = disByteData(uFlatAddr, Sym.cb);
1111
1112 uFlatAddr += Sym.cb;
1113 cb -= Sym.cb;
1114 }
1115 else
1116 {
1117 fRc = disByteData(uFlatAddr, cb);
1118 uFlatAddr += cb;
1119 cb = 0;
1120 }
1121 if (!fRc)
1122 return false;
1123 }
1124
1125 return true;
1126}
1127
1128
1129static RTEXITCODE DisassembleBiosImage(void)
1130{
1131 if (!disFileHeader())
1132 return RTEXITCODE_FAILURE;
1133
1134 /*
1135 * Work the image segment by segment.
1136 */
1137 bool fRc = true;
1138 uint32_t uFlatAddr = g_uBiosFlatBase;
1139 for (uint32_t iSeg = 0; iSeg < g_cSegs && fRc; iSeg++)
1140 {
1141 /* Is there a gap between the segments? */
1142 if (uFlatAddr < g_aSegs[iSeg].uFlatAddr)
1143 {
1144 fRc = disCopySegmentGap(uFlatAddr, g_aSegs[iSeg].uFlatAddr - uFlatAddr);
1145 if (!fRc)
1146 break;
1147 uFlatAddr = g_aSegs[iSeg].uFlatAddr;
1148 }
1149 else if (uFlatAddr > g_aSegs[iSeg].uFlatAddr)
1150 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Overlapping segments: %u and %u; uFlatAddr=%#x\n", iSeg - 1, iSeg, uFlatAddr);
1151
1152 /* Disassemble the segment. */
1153 fRc = outputPrintf("\n"
1154 "section %s progbits vstart=%#x align=1 ; size=%#x class=%s group=%s\n",
1155 g_aSegs[iSeg].szName, g_aSegs[iSeg].uFlatAddr - g_uBiosFlatBase,
1156 g_aSegs[iSeg].cb, g_aSegs[iSeg].szClass, g_aSegs[iSeg].szGroup);
1157 if (!fRc)
1158 return RTEXITCODE_FAILURE;
1159 if (!strcmp(g_aSegs[iSeg].szName, "CONST"))
1160 fRc = disConstSegment(iSeg);
1161 else if (!strcmp(g_aSegs[iSeg].szClass, "DATA"))
1162 fRc = disDataSegment(iSeg);
1163 else
1164 fRc = disCodeSegment(iSeg);
1165
1166 /* Advance. */
1167 uFlatAddr += g_aSegs[iSeg].cb;
1168 }
1169
1170 /* Final gap. */
1171 if (uFlatAddr < g_uBiosFlatBase + g_cbImg)
1172 fRc = disCopySegmentGap(uFlatAddr, (uint32_t)(g_uBiosFlatBase + g_cbImg - uFlatAddr));
1173 else if (uFlatAddr > g_uBiosFlatBase + g_cbImg)
1174 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Last segment spills beyond 1MB; uFlatAddr=%#x\n", uFlatAddr);
1175
1176 if (!fRc)
1177 return RTEXITCODE_FAILURE;
1178 return RTEXITCODE_SUCCESS;
1179}
1180
1181
1182
1183/**
1184 * Parses the symbol file for the BIOS.
1185 *
1186 * This is in ELF/DWARF format.
1187 *
1188 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE+msg.
1189 * @param pszBiosSym Path to the sym file.
1190 */
1191static RTEXITCODE ParseSymFile(const char *pszBiosSym)
1192{
1193#if 1
1194 /** @todo use RTDbg* later. (Just checking for existance currently.) */
1195 PRTSTREAM hStrm;
1196 int rc = RTStrmOpen(pszBiosSym, "rb", &hStrm);
1197 if (RT_FAILURE(rc))
1198 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening '%s': %Rrc", pszBiosSym, rc);
1199 RTStrmClose(hStrm);
1200#else
1201 RTDBGMOD hDbgMod;
1202 int rc = RTDbgModCreateFromImage(&hDbgMod, pszBiosSym, "VBoxBios", 0 /*fFlags*/);
1203 RTMsgInfo("RTDbgModCreateFromImage -> %Rrc\n", rc);
1204#endif
1205 return RTEXITCODE_SUCCESS;
1206}
1207
1208
1209/**
1210 * Display an error with the mapfile name and current line, return false.
1211 *
1212 * @returns @c false.
1213 * @param pMap The map file handle.
1214 * @param pszFormat The format string.
1215 * @param ... Format arguments.
1216 */
1217static bool mapError(PBIOSMAP pMap, const char *pszFormat, ...)
1218{
1219 va_list va;
1220 va_start(va, pszFormat);
1221 RTMsgError("%s:%d: %N", pMap->pszMapFile, pMap->iLine, pszFormat, va);
1222 va_end(va);
1223 return false;
1224}
1225
1226
1227/**
1228 * Reads a line from the file.
1229 *
1230 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1231 * @param pMap The map file handle.
1232 */
1233static bool mapReadLine(PBIOSMAP pMap)
1234{
1235 int rc = RTStrmGetLine(pMap->hStrm, pMap->szLine, sizeof(pMap->szLine));
1236 if (RT_FAILURE(rc))
1237 {
1238 if (rc == VERR_EOF)
1239 {
1240 pMap->fEof = true;
1241 pMap->cch = 0;
1242 pMap->offNW = 0;
1243 pMap->szLine[0] = '\0';
1244 }
1245 else
1246 RTMsgError("%s:%d: Read error %Rrc", pMap->pszMapFile, pMap->iLine + 1, rc);
1247 return false;
1248 }
1249 pMap->iLine++;
1250 pMap->cch = (uint32_t)strlen(pMap->szLine);
1251
1252 /* Check out leading white space. */
1253 if (!RT_C_IS_SPACE(pMap->szLine[0]))
1254 pMap->offNW = 0;
1255 else
1256 {
1257 uint32_t off = 1;
1258 while (RT_C_IS_SPACE(pMap->szLine[off]))
1259 off++;
1260 pMap->offNW = off;
1261 }
1262
1263 return true;
1264}
1265
1266
1267/**
1268 * Checks if it is an empty line.
1269 * @returns @c true if empty, @c false if not.
1270 * @param pMap The map file handle.
1271 */
1272static bool mapIsEmptyLine(PBIOSMAP pMap)
1273{
1274 Assert(pMap->offNW <= pMap->cch);
1275 return pMap->offNW == pMap->cch;
1276}
1277
1278
1279/**
1280 * Reads ahead in the map file until a non-empty line or EOF is encountered.
1281 *
1282 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1283 * @param pMap The map file handle.
1284 */
1285static bool mapSkipEmptyLines(PBIOSMAP pMap)
1286{
1287 for (;;)
1288 {
1289 if (!mapReadLine(pMap))
1290 return false;
1291 if (pMap->offNW < pMap->cch)
1292 return true;
1293 }
1294}
1295
1296
1297/**
1298 * Reads ahead in the map file until an empty line or EOF is encountered.
1299 *
1300 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1301 * @param pMap The map file handle.
1302 */
1303static bool mapSkipNonEmptyLines(PBIOSMAP pMap)
1304{
1305 for (;;)
1306 {
1307 if (!mapReadLine(pMap))
1308 return false;
1309 if (pMap->offNW == pMap->cch)
1310 return true;
1311 }
1312}
1313
1314
1315/**
1316 * Strips the current line.
1317 *
1318 * The string length may change.
1319 *
1320 * @returns Pointer to the first non-space character.
1321 * @param pMap The map file handle.
1322 * @param pcch Where to return the length of the unstripped
1323 * part. Optional.
1324 */
1325static char *mapStripCurrentLine(PBIOSMAP pMap, size_t *pcch)
1326{
1327 char *psz = &pMap->szLine[pMap->offNW];
1328 char *pszEnd = &pMap->szLine[pMap->cch];
1329 while ( (uintptr_t)pszEnd > (uintptr_t)psz
1330 && RT_C_IS_SPACE(pszEnd[-1]))
1331 {
1332 *--pszEnd = '\0';
1333 pMap->cch--;
1334 }
1335 if (pcch)
1336 *pcch = pszEnd - psz;
1337 return psz;
1338}
1339
1340
1341/**
1342 * Reads a line from the file and right strips it.
1343 *
1344 * @returns Pointer to szLine on success, @c NULL + msg on failure, @c NULL on
1345 * EOF.
1346 * @param pMap The map file handle.
1347 * @param pcch Where to return the length of the unstripped
1348 * part. Optional.
1349 */
1350static char *mapReadLineStripRight(PBIOSMAP pMap, size_t *pcch)
1351{
1352 if (!mapReadLine(pMap))
1353 return NULL;
1354 mapStripCurrentLine(pMap, NULL);
1355 if (pcch)
1356 *pcch = pMap->cch;
1357 return pMap->szLine;
1358}
1359
1360
1361/**
1362 * mapReadLine() + mapStripCurrentLine().
1363 *
1364 * @returns Pointer to the first non-space character in the new line. NULL on
1365 * read error (bitched already) or end of file.
1366 * @param pMap The map file handle.
1367 * @param pcch Where to return the length of the unstripped
1368 * part. Optional.
1369 */
1370static char *mapReadLineStrip(PBIOSMAP pMap, size_t *pcch)
1371{
1372 if (!mapReadLine(pMap))
1373 return NULL;
1374 return mapStripCurrentLine(pMap, pcch);
1375}
1376
1377
1378/**
1379 * Parses a word, copying it into the supplied buffer, and skipping any spaces
1380 * following it.
1381 *
1382 * @returns @c true on success, @c false on failure.
1383 * @param ppszCursor Pointer to the cursor variable.
1384 * @param pszBuf The output buffer.
1385 * @param cbBuf The size of the output buffer.
1386 */
1387static bool mapParseWord(char **ppszCursor, char *pszBuf, size_t cbBuf)
1388{
1389 /* Check that we start on a non-blank. */
1390 char *pszStart = *ppszCursor;
1391 if (!*pszStart || RT_C_IS_SPACE(*pszStart))
1392 return false;
1393
1394 /* Find the end of the word. */
1395 char *psz = pszStart + 1;
1396 while (*psz && !RT_C_IS_SPACE(*psz))
1397 psz++;
1398
1399 /* Copy it. */
1400 size_t cchWord = (uintptr_t)psz - (uintptr_t)pszStart;
1401 if (cchWord >= cbBuf)
1402 return false;
1403 memcpy(pszBuf, pszStart, cchWord);
1404 pszBuf[cchWord] = '\0';
1405
1406 /* Skip blanks following it. */
1407 while (RT_C_IS_SPACE(*psz))
1408 psz++;
1409 *ppszCursor = psz;
1410 return true;
1411}
1412
1413
1414/**
1415 * Parses an 16:16 address.
1416 *
1417 * @returns @c true on success, @c false on failure.
1418 * @param ppszCursor Pointer to the cursor variable.
1419 * @param pAddr Where to return the address.
1420 */
1421static bool mapParseAddress(char **ppszCursor, PRTFAR16 pAddr)
1422{
1423 char szWord[32];
1424 if (!mapParseWord(ppszCursor, szWord, sizeof(szWord)))
1425 return false;
1426 size_t cchWord = strlen(szWord);
1427
1428 /* An address is at least 16:16 format. It may be 16:32. It may also be flagged. */
1429 size_t cchAddr = 4 + 1 + 4;
1430 if (cchWord < cchAddr)
1431 return false;
1432 if ( !RT_C_IS_XDIGIT(szWord[0])
1433 || !RT_C_IS_XDIGIT(szWord[1])
1434 || !RT_C_IS_XDIGIT(szWord[2])
1435 || !RT_C_IS_XDIGIT(szWord[3])
1436 || szWord[4] != ':'
1437 || !RT_C_IS_XDIGIT(szWord[5])
1438 || !RT_C_IS_XDIGIT(szWord[6])
1439 || !RT_C_IS_XDIGIT(szWord[7])
1440 || !RT_C_IS_XDIGIT(szWord[8])
1441 )
1442 return false;
1443 if ( cchWord > cchAddr
1444 && RT_C_IS_XDIGIT(szWord[9])
1445 && RT_C_IS_XDIGIT(szWord[10])
1446 && RT_C_IS_XDIGIT(szWord[11])
1447 && RT_C_IS_XDIGIT(szWord[12]))
1448 cchAddr += 4;
1449
1450 /* Drop flag if present. */
1451 if (cchWord > cchAddr)
1452 {
1453 if (RT_C_IS_XDIGIT(szWord[cchAddr]))
1454 return false;
1455 szWord[cchAddr] = '\0';
1456 cchWord = cchAddr;
1457 }
1458
1459 /* Convert it. */
1460 szWord[4] = '\0';
1461 int rc1 = RTStrToUInt16Full(szWord, 16, &pAddr->sel);
1462 if (rc1 != VINF_SUCCESS)
1463 return false;
1464
1465 int rc2 = RTStrToUInt16Full(szWord + 5, 16, &pAddr->off);
1466 if (rc2 != VINF_SUCCESS)
1467 return false;
1468 return true;
1469}
1470
1471
1472/**
1473 * Parses a size.
1474 *
1475 * @returns @c true on success, @c false on failure.
1476 * @param ppszCursor Pointer to the cursor variable.
1477 * @param pcb Where to return the size.
1478 */
1479static bool mapParseSize(char **ppszCursor, uint32_t *pcb)
1480{
1481 char szWord[32];
1482 if (!mapParseWord(ppszCursor, szWord, sizeof(szWord)))
1483 return false;
1484 size_t cchWord = strlen(szWord);
1485 if (cchWord != 8)
1486 return false;
1487
1488 int rc = RTStrToUInt32Full(szWord, 16, pcb);
1489 if (rc != VINF_SUCCESS)
1490 return false;
1491 return true;
1492}
1493
1494
1495/**
1496 * Parses a section box and the following column header.
1497 *
1498 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1499 * @param pMap Map file handle.
1500 * @param pszSectionNm The expected section name.
1501 * @param cColumns The number of columns.
1502 * @param ... The column names.
1503 */
1504static bool mapSkipThruColumnHeadings(PBIOSMAP pMap, const char *pszSectionNm, uint32_t cColumns, ...)
1505{
1506 if ( mapIsEmptyLine(pMap)
1507 && !mapSkipEmptyLines(pMap))
1508 return false;
1509
1510 /* +------------+ */
1511 size_t cch;
1512 char *psz = mapStripCurrentLine(pMap, &cch);
1513 if (!psz)
1514 return false;
1515
1516 if ( psz[0] != '+'
1517 || psz[1] != '-'
1518 || psz[2] != '-'
1519 || psz[3] != '-'
1520 || psz[cch - 4] != '-'
1521 || psz[cch - 3] != '-'
1522 || psz[cch - 2] != '-'
1523 || psz[cch - 1] != '+'
1524 )
1525 {
1526 RTMsgError("%s:%d: Expected section box: +-----...", pMap->pszMapFile, pMap->iLine);
1527 return false;
1528 }
1529
1530 /* | pszSectionNm | */
1531 psz = mapReadLineStrip(pMap, &cch);
1532 if (!psz)
1533 return false;
1534
1535 size_t cchSectionNm = strlen(pszSectionNm);
1536 if ( psz[0] != '|'
1537 || psz[1] != ' '
1538 || psz[2] != ' '
1539 || psz[3] != ' '
1540 || psz[cch - 4] != ' '
1541 || psz[cch - 3] != ' '
1542 || psz[cch - 2] != ' '
1543 || psz[cch - 1] != '|'
1544 || cch != 1 + 3 + cchSectionNm + 3 + 1
1545 || strncmp(&psz[4], pszSectionNm, cchSectionNm)
1546 )
1547 {
1548 RTMsgError("%s:%d: Expected section box: | %s |", pMap->pszMapFile, pMap->iLine, pszSectionNm);
1549 return false;
1550 }
1551
1552 /* +------------+ */
1553 psz = mapReadLineStrip(pMap, &cch);
1554 if (!psz)
1555 return false;
1556 if ( psz[0] != '+'
1557 || psz[1] != '-'
1558 || psz[2] != '-'
1559 || psz[3] != '-'
1560 || psz[cch - 4] != '-'
1561 || psz[cch - 3] != '-'
1562 || psz[cch - 2] != '-'
1563 || psz[cch - 1] != '+'
1564 )
1565 {
1566 RTMsgError("%s:%d: Expected section box: +-----...", pMap->pszMapFile, pMap->iLine);
1567 return false;
1568 }
1569
1570 /* There may be a few lines describing the table notation now, surrounded by blank lines. */
1571 do
1572 {
1573 psz = mapReadLineStripRight(pMap, &cch);
1574 if (!psz)
1575 return false;
1576 } while ( *psz == '\0'
1577 || ( !RT_C_IS_SPACE(psz[0])
1578 && RT_C_IS_SPACE(psz[1])
1579 && psz[2] == '='
1580 && RT_C_IS_SPACE(psz[3]))
1581 );
1582
1583 /* Should have the column heading now. */
1584 va_list va;
1585 va_start(va, cColumns);
1586 for (uint32_t i = 0; i < cColumns; i++)
1587 {
1588 const char *pszColumn = va_arg(va, const char *);
1589 size_t cchColumn = strlen(pszColumn);
1590 if ( strncmp(psz, pszColumn, cchColumn)
1591 || ( psz[cchColumn] != '\0'
1592 && !RT_C_IS_SPACE(psz[cchColumn])))
1593 {
1594 va_end(va);
1595 RTMsgError("%s:%d: Expected column '%s' found '%s'", pMap->pszMapFile, pMap->iLine, pszColumn, psz);
1596 return false;
1597 }
1598 psz += cchColumn;
1599 while (RT_C_IS_SPACE(*psz))
1600 psz++;
1601 }
1602 va_end(va);
1603
1604 /* The next line is the underlining. */
1605 psz = mapReadLineStripRight(pMap, &cch);
1606 if (!psz)
1607 return false;
1608 if (*psz != '=' || psz[cch - 1] != '=')
1609 {
1610 RTMsgError("%s:%d: Expected column header underlining", pMap->pszMapFile, pMap->iLine);
1611 return false;
1612 }
1613
1614 /* Skip one blank line. */
1615 psz = mapReadLineStripRight(pMap, &cch);
1616 if (!psz)
1617 return false;
1618 if (*psz)
1619 {
1620 RTMsgError("%s:%d: Expected blank line beneath the column headers", pMap->pszMapFile, pMap->iLine);
1621 return false;
1622 }
1623
1624 return true;
1625}
1626
1627
1628/**
1629 * Parses a segment list.
1630 *
1631 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1632 * @param pMap The map file handle.
1633 */
1634static bool mapParseSegments(PBIOSMAP pMap)
1635{
1636 for (;;)
1637 {
1638 if (!mapReadLineStripRight(pMap, NULL))
1639 return false;
1640
1641 /* The end? The line should be empty. Expectes segment name to not
1642 start with a space. */
1643 if (!pMap->szLine[0] || RT_C_IS_SPACE(pMap->szLine[0]))
1644 {
1645 if (!pMap->szLine[0])
1646 return true;
1647 RTMsgError("%s:%u: Malformed segment line", pMap->pszMapFile, pMap->iLine);
1648 return false;
1649 }
1650
1651 /* Parse the segment line. */
1652 uint32_t iSeg = g_cSegs;
1653 if (iSeg >= RT_ELEMENTS(g_aSegs))
1654 {
1655 RTMsgError("%s:%u: Too many segments", pMap->pszMapFile, pMap->iLine);
1656 return false;
1657 }
1658
1659 char *psz = pMap->szLine;
1660 if (!mapParseWord(&psz, g_aSegs[iSeg].szName, sizeof(g_aSegs[iSeg].szName)))
1661 RTMsgError("%s:%u: Segment name parser error", pMap->pszMapFile, pMap->iLine);
1662 else if (!mapParseWord(&psz, g_aSegs[iSeg].szClass, sizeof(g_aSegs[iSeg].szClass)))
1663 RTMsgError("%s:%u: Segment class parser error", pMap->pszMapFile, pMap->iLine);
1664 else if (!mapParseWord(&psz, g_aSegs[iSeg].szGroup, sizeof(g_aSegs[iSeg].szGroup)))
1665 RTMsgError("%s:%u: Segment group parser error", pMap->pszMapFile, pMap->iLine);
1666 else if (!mapParseAddress(&psz, &g_aSegs[iSeg].Address))
1667 RTMsgError("%s:%u: Segment address parser error", pMap->pszMapFile, pMap->iLine);
1668 else if (!mapParseSize(&psz, &g_aSegs[iSeg].cb))
1669 RTMsgError("%s:%u: Segment size parser error", pMap->pszMapFile, pMap->iLine);
1670 else
1671 {
1672 g_aSegs[iSeg].uFlatAddr = ((uint32_t)g_aSegs[iSeg].Address.sel << 4) + g_aSegs[iSeg].Address.off;
1673 g_cSegs++;
1674 if (g_cVerbose > 2)
1675 RTStrmPrintf(g_pStdErr, "read segment at %08x / %04x:%04x LB %04x %s / %s / %s\n",
1676 g_aSegs[iSeg].uFlatAddr,
1677 g_aSegs[iSeg].Address.sel,
1678 g_aSegs[iSeg].Address.off,
1679 g_aSegs[iSeg].cb,
1680 g_aSegs[iSeg].szName,
1681 g_aSegs[iSeg].szClass,
1682 g_aSegs[iSeg].szGroup);
1683
1684 while (RT_C_IS_SPACE(*psz))
1685 psz++;
1686 if (!*psz)
1687 continue;
1688 RTMsgError("%s:%u: Junk at end of line", pMap->pszMapFile, pMap->iLine);
1689 }
1690 return false;
1691 }
1692}
1693
1694
1695/**
1696 * Sorts the segment array by flat address and adds them to the debug module.
1697 *
1698 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1699 */
1700static bool mapSortAndAddSegments(void)
1701{
1702 for (uint32_t i = 0; i < g_cSegs; i++)
1703 {
1704 for (uint32_t j = i + 1; j < g_cSegs; j++)
1705 if (g_aSegs[j].uFlatAddr < g_aSegs[i].uFlatAddr)
1706 {
1707 BIOSSEG Tmp = g_aSegs[i];
1708 g_aSegs[i] = g_aSegs[j];
1709 g_aSegs[j] = Tmp;
1710 }
1711 if (g_cVerbose > 0)
1712 RTStrmPrintf(g_pStdErr, "segment at %08x / %04x:%04x LB %04x %s / %s / %s\n",
1713 g_aSegs[i].uFlatAddr,
1714 g_aSegs[i].Address.sel,
1715 g_aSegs[i].Address.off,
1716 g_aSegs[i].cb,
1717 g_aSegs[i].szName,
1718 g_aSegs[i].szClass,
1719 g_aSegs[i].szGroup);
1720
1721 RTDBGSEGIDX idx = i;
1722 int rc = RTDbgModSegmentAdd(g_hMapMod, g_aSegs[i].uFlatAddr, g_aSegs[i].cb, g_aSegs[i].szName, 0 /*fFlags*/, &idx);
1723 if (RT_FAILURE(rc))
1724 {
1725 RTMsgError("RTDbgModSegmentAdd failed on %s: %Rrc", g_aSegs[i].szName);
1726 return false;
1727 }
1728 }
1729 return true;
1730}
1731
1732
1733/**
1734 * Parses a segment list.
1735 *
1736 * @returns @c true on success, @c false + msg on failure, @c false on eof.
1737 * @param pMap The map file handle.
1738 */
1739static bool mapParseSymbols(PBIOSMAP pMap)
1740{
1741 for (;;)
1742 {
1743 if (!mapReadLineStripRight(pMap, NULL))
1744 return false;
1745
1746 /* The end? The line should be empty. Expectes segment name to not
1747 start with a space. */
1748 if (!pMap->szLine[0] || RT_C_IS_SPACE(pMap->szLine[0]))
1749 {
1750 if (!pMap->szLine[0])
1751 return true;
1752 return mapError(pMap, "Malformed symbol line");
1753 }
1754
1755 if (!strncmp(pMap->szLine, RT_STR_TUPLE("Module: ")))
1756 {
1757 /* Parse the module line. */
1758 size_t offObj = sizeof("Module: ") - 1;
1759 while (RT_C_IS_SPACE(pMap->szLine[offObj]))
1760 offObj++;
1761 size_t offSrc = offObj;
1762 char ch;
1763 while ((ch = pMap->szLine[offSrc]) != '(' && ch != '\0')
1764 offSrc++;
1765 size_t cchObj = offSrc - offObj;
1766
1767 offSrc++;
1768 size_t cchSrc = offSrc;
1769 while ((ch = pMap->szLine[cchSrc]) != ')' && ch != '\0')
1770 cchSrc++;
1771 cchSrc -= offSrc;
1772 if (ch != ')')
1773 return mapError(pMap, "Symbol/Module line parse error");
1774
1775 PBIOSOBJFILE pObjFile = (PBIOSOBJFILE)RTMemAllocZ(sizeof(*pObjFile) + cchSrc + cchObj + 2);
1776 if (!pObjFile)
1777 return mapError(pMap, "Out of memory");
1778 char *psz = (char *)(pObjFile + 1);
1779 pObjFile->pszObject = psz;
1780 memcpy(psz, &pMap->szLine[offObj], cchObj);
1781 psz += cchObj;
1782 *psz++ = '\0';
1783 pObjFile->pszSource = psz;
1784 memcpy(psz, &pMap->szLine[offSrc], cchSrc);
1785 psz[cchSrc] = '\0';
1786 RTListAppend(&g_ObjList, &pObjFile->Node);
1787 }
1788 else
1789 {
1790 /* Parse the segment line. */
1791 RTFAR16 Addr;
1792 char *psz = pMap->szLine;
1793 if (!mapParseAddress(&psz, &Addr))
1794 return mapError(pMap, "Symbol address parser error");
1795
1796 char szName[4096];
1797 if (!mapParseWord(&psz, szName, sizeof(szName)))
1798 return mapError(pMap, "Symbol name parser error");
1799
1800 uint32_t uFlatAddr = ((uint32_t)Addr.sel << 4) + Addr.off;
1801 if (uFlatAddr != 0)
1802 {
1803 int rc = RTDbgModSymbolAdd(g_hMapMod, szName, RTDBGSEGIDX_RVA, uFlatAddr, 0 /*cb*/, 0 /*fFlags*/, NULL);
1804 if (RT_FAILURE(rc) && rc != VERR_DBG_ADDRESS_CONFLICT)
1805 {
1806 /* HACK ALERT! For dealing with lables at segment size. */ /** @todo fix end labels. */
1807 rc = RTDbgModSymbolAdd(g_hMapMod, szName, RTDBGSEGIDX_RVA, uFlatAddr - 1, 0 /*cb*/, 0 /*fFlags*/, NULL);
1808 if (RT_FAILURE(rc) && rc != VERR_DBG_ADDRESS_CONFLICT)
1809 return mapError(pMap, "RTDbgModSymbolAdd failed: %Rrc", rc);
1810 }
1811
1812 if (g_cVerbose > 2)
1813 RTStrmPrintf(g_pStdErr, "read symbol - %08x %s\n", uFlatAddr, szName);
1814 while (RT_C_IS_SPACE(*psz))
1815 psz++;
1816 if (*psz)
1817 return mapError(pMap, "Junk at end of line");
1818 }
1819
1820 }
1821 }
1822}
1823
1824
1825/**
1826 * Parses the given map file.
1827 *
1828 * @returns RTEXITCODE_SUCCESS and lots of globals, or RTEXITCODE_FAILURE and a
1829 * error message.
1830 * @param pMap The map file handle.
1831 */
1832static RTEXITCODE mapParseFile(PBIOSMAP pMap)
1833{
1834 int rc = RTDbgModCreate(&g_hMapMod, "VBoxBios", 0 /*cbSeg*/, 0 /*fFlags*/);
1835 if (RT_FAILURE(rc))
1836 return RTMsgErrorExit(RTEXITCODE_FAILURE, "RTDbgModCreate failed: %Rrc", rc);
1837
1838 /*
1839 * Read the header.
1840 */
1841 if (!mapReadLine(pMap))
1842 return RTEXITCODE_FAILURE;
1843 if (strncmp(pMap->szLine, RT_STR_TUPLE("Open Watcom Linker Version")))
1844 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Unexpected map-file header: '%s'", pMap->szLine);
1845 if ( !mapSkipNonEmptyLines(pMap)
1846 || !mapSkipEmptyLines(pMap))
1847 return RTEXITCODE_FAILURE;
1848
1849 /*
1850 * Skip groups.
1851 */
1852 if (!mapSkipThruColumnHeadings(pMap, "Groups", 3, "Group", "Address", "Size", NULL))
1853 return RTEXITCODE_FAILURE;
1854 if (!mapSkipNonEmptyLines(pMap))
1855 return RTEXITCODE_FAILURE;
1856
1857 /*
1858 * Parse segments.
1859 */
1860 if (!mapSkipThruColumnHeadings(pMap, "Segments", 5, "Segment", "Class", "Group", "Address", "Size"))
1861 return RTEXITCODE_FAILURE;
1862 if (!mapParseSegments(pMap))
1863 return RTEXITCODE_FAILURE;
1864 if (!mapSortAndAddSegments())
1865 return RTEXITCODE_FAILURE;
1866
1867 /*
1868 * Parse symbols.
1869 */
1870 if (!mapSkipThruColumnHeadings(pMap, "Memory Map", 2, "Address", "Symbol"))
1871 return RTEXITCODE_FAILURE;
1872 if (!mapParseSymbols(pMap))
1873 return RTEXITCODE_FAILURE;
1874
1875 /* Ignore the rest of the file. */
1876 return RTEXITCODE_SUCCESS;
1877}
1878
1879
1880/**
1881 * Parses the linker map file for the BIOS.
1882 *
1883 * This is generated by the Watcom linker.
1884 *
1885 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE+msg.
1886 * @param pszBiosMap Path to the map file.
1887 */
1888static RTEXITCODE ParseMapFile(const char *pszBiosMap)
1889{
1890 BIOSMAP Map;
1891 Map.pszMapFile = pszBiosMap;
1892 Map.hStrm = NULL;
1893 Map.iLine = 0;
1894 Map.fEof = false;
1895 Map.cch = 0;
1896 Map.offNW = 0;
1897 int rc = RTStrmOpen(pszBiosMap, "r", &Map.hStrm);
1898 if (RT_FAILURE(rc))
1899 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening '%s': %Rrc", pszBiosMap, rc);
1900 RTEXITCODE rcExit = mapParseFile(&Map);
1901 RTStrmClose(Map.hStrm);
1902 return rcExit;
1903}
1904
1905
1906/**
1907 * Reads the BIOS image into memory (g_pbImg and g_cbImg).
1908 *
1909 * @returns RTEXITCODE_SUCCESS or RTEXITCODE_FAILURE+msg.
1910 * @param pszBiosImg Path to the image file.
1911 */
1912static RTEXITCODE ReadBiosImage(const char *pszBiosImg)
1913{
1914 void *pvImg;
1915 size_t cbImg;
1916 int rc = RTFileReadAll(pszBiosImg, &pvImg, &cbImg);
1917 if (RT_FAILURE(rc))
1918 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error reading '%s': %Rrc", pszBiosImg, rc);
1919
1920 size_t cbImgExpect;
1921 switch (g_enmBiosType)
1922 {
1923 case kBiosType_System: cbImgExpect = _64K; break;
1924 case kBiosType_Vga: cbImgExpect = _32K; break;
1925 default: cbImgExpect = 0; break;
1926 }
1927 if (cbImg != cbImgExpect)
1928 {
1929 RTFileReadAllFree(pvImg, cbImg);
1930 return RTMsgErrorExit(RTEXITCODE_FAILURE, "The BIOS image %u bytes intead of %u bytes", cbImg, cbImgExpect);
1931 }
1932
1933 g_pbImg = (uint8_t *)pvImg;
1934 g_cbImg = cbImg;
1935 return RTEXITCODE_SUCCESS;
1936}
1937
1938
1939int main(int argc, char **argv)
1940{
1941 int rc = RTR3InitExe(argc, &argv, 0);
1942 if (RT_FAILURE(rc))
1943 return RTMsgInitFailure(rc);
1944
1945 RTListInit(&g_ObjList);
1946
1947 /*
1948 * Option config.
1949 */
1950 static RTGETOPTDEF const s_aOpts[] =
1951 {
1952 { "--bios-image", 'i', RTGETOPT_REQ_STRING },
1953 { "--bios-map", 'm', RTGETOPT_REQ_STRING },
1954 { "--bios-sym", 's', RTGETOPT_REQ_STRING },
1955 { "--bios-type", 't', RTGETOPT_REQ_STRING },
1956 { "--output", 'o', RTGETOPT_REQ_STRING },
1957 { "--verbose", 'v', RTGETOPT_REQ_NOTHING },
1958 { "--quiet", 'q', RTGETOPT_REQ_NOTHING },
1959 };
1960
1961 const char *pszBiosMap = NULL;
1962 const char *pszBiosSym = NULL;
1963 const char *pszBiosImg = NULL;
1964 const char *pszOutput = NULL;
1965
1966 RTGETOPTUNION ValueUnion;
1967 RTGETOPTSTATE GetOptState;
1968 rc = RTGetOptInit(&GetOptState, argc, argv, &s_aOpts[0], RT_ELEMENTS(s_aOpts), 1, RTGETOPTINIT_FLAGS_OPTS_FIRST);
1969 AssertReleaseRCReturn(rc, RTEXITCODE_FAILURE);
1970
1971 /*
1972 * Process the options.
1973 */
1974 while ((rc = RTGetOpt(&GetOptState, &ValueUnion)) != 0)
1975 {
1976 switch (rc)
1977 {
1978 case 'i':
1979 if (pszBiosImg)
1980 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-image is given more than once");
1981 pszBiosImg = ValueUnion.psz;
1982 break;
1983
1984 case 'm':
1985 if (pszBiosMap)
1986 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-map is given more than once");
1987 pszBiosMap = ValueUnion.psz;
1988 break;
1989
1990 case 's':
1991 if (pszBiosSym)
1992 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-sym is given more than once");
1993 pszBiosSym = ValueUnion.psz;
1994 break;
1995
1996 case 'o':
1997 if (pszOutput)
1998 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--output is given more than once");
1999 pszOutput = ValueUnion.psz;
2000 break;
2001
2002 case 't':
2003 if (!strcmp(ValueUnion.psz, "system"))
2004 {
2005 g_enmBiosType = kBiosType_System;
2006 g_uBiosFlatBase = 0xf0000;
2007 }
2008 else if (!strcmp(ValueUnion.psz, "vga"))
2009 {
2010 g_enmBiosType = kBiosType_Vga;
2011 g_uBiosFlatBase = 0xc0000;
2012 }
2013 else
2014 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "Unknown bios type '%s'", ValueUnion.psz);
2015 break;
2016
2017 case 'v':
2018 g_cVerbose++;
2019 break;
2020
2021 case 'q':
2022 g_cVerbose = 0;
2023 break;
2024
2025 case 'H':
2026 RTPrintf("usage: %Rbn --bios-image <file.img> --bios-map <file.map> [--output <file.asm>]\n",
2027 argv[0]);
2028 return RTEXITCODE_SUCCESS;
2029
2030 case 'V':
2031 {
2032 /* The following is assuming that svn does it's job here. */
2033 char szRev[] = "$Revision: 62406 $";
2034 char *psz = szRev;
2035 while (*psz && !RT_C_IS_DIGIT(*psz))
2036 psz++;
2037 size_t i = strlen(psz);
2038 while (i > 0 && !RT_C_IS_DIGIT(psz[i - 1]))
2039 psz[--i] = '\0';
2040
2041 RTPrintf("r%s\n", psz);
2042 return RTEXITCODE_SUCCESS;
2043 }
2044
2045 default:
2046 return RTGetOptPrintError(rc, &ValueUnion);
2047 }
2048 }
2049
2050 /*
2051 * Got it all?
2052 */
2053 if (!pszBiosImg)
2054 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-image is required");
2055 if (!pszBiosMap)
2056 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-map is required");
2057 if (!pszBiosSym)
2058 return RTMsgErrorExit(RTEXITCODE_SYNTAX, "--bios-sym is required");
2059
2060 /*
2061 * Do the job.
2062 */
2063 RTEXITCODE rcExit;
2064 rcExit = ReadBiosImage(pszBiosImg);
2065 if (rcExit == RTEXITCODE_SUCCESS)
2066 rcExit = ParseMapFile(pszBiosMap);
2067 if (rcExit == RTEXITCODE_SUCCESS)
2068 rcExit = ParseSymFile(pszBiosSym);
2069 if (rcExit == RTEXITCODE_SUCCESS)
2070 rcExit = OpenOutputFile(pszOutput);
2071 if (rcExit == RTEXITCODE_SUCCESS)
2072 rcExit = DisassembleBiosImage();
2073
2074 return rcExit;
2075}
2076
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette