VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstAnimate.cpp@ 50653

Last change on this file since 50653 was 44528, checked in by vboxsync, 11 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 32.0 KB
Line 
1/* $Id: tstAnimate.cpp 44528 2013-02-04 14:27:54Z vboxsync $ */
2/** @file
3 * VBox Animation Testcase / Tool.
4 */
5
6/*
7 * Copyright (C) 2006-2013 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 <VBox/vmm/vm.h>
23#include <VBox/vmm/vmm.h>
24#include <VBox/vmm/cpum.h>
25#include <VBox/vmm/cfgm.h>
26#include <VBox/vmm/em.h>
27#include <VBox/vmm/pgm.h>
28#ifdef VBOX_WITH_REM
29# include <VBox/vmm/rem.h>
30#endif
31#include <VBox/vmm/ssm.h>
32#include <VBox/vmm/dbgf.h>
33#include <VBox/err.h>
34#include <VBox/vmm/pdmifs.h>
35#include <VBox/param.h>
36#include <VBox/log.h>
37#include <iprt/assert.h>
38#include <iprt/alloc.h>
39#include <iprt/initterm.h>
40#include <iprt/semaphore.h>
41#include <iprt/string.h>
42#include <iprt/stream.h>
43#include <iprt/file.h>
44#include <iprt/thread.h>
45#include <iprt/ctype.h>
46#include <iprt/uuid.h>
47
48#include <signal.h>
49
50/*******************************************************************************
51* Global Variables *
52*******************************************************************************/
53static volatile bool g_fSignaled = false;
54
55
56static void SigInterrupt(int iSignal)
57{
58 NOREF(iSignal);
59 signal(SIGINT, SigInterrupt);
60 g_fSignaled = true;
61 RTPrintf("caught SIGINT\n");
62}
63
64typedef DECLCALLBACK(int) FNSETGUESTGPR(PVM, uint32_t);
65typedef FNSETGUESTGPR *PFNSETGUESTGPR;
66static int scriptGPReg(PVM pVM, char *pszVar, char *pszValue, void *pvUser)
67{
68 NOREF(pszVar);
69 uint32_t u32;
70 int rc = RTStrToUInt32Ex(pszValue, NULL, 16, &u32);
71 if (RT_FAILURE(rc))
72 return rc;
73 return ((PFNSETGUESTGPR)(uintptr_t)pvUser)(pVM, u32);
74}
75
76typedef DECLCALLBACK(int) FNSETGUESTSEL(PVM, uint16_t);
77typedef FNSETGUESTSEL *PFNSETGUESTSEL;
78static int scriptSelReg(PVM pVM, char *pszVar, char *pszValue, void *pvUser)
79{
80 NOREF(pszVar);
81 uint16_t u16;
82 int rc = RTStrToUInt16Ex(pszValue, NULL, 16, &u16);
83 if (RT_FAILURE(rc))
84 return rc;
85 return ((PFNSETGUESTSEL)(uintptr_t)pvUser)(pVM, u16);
86}
87
88typedef DECLCALLBACK(int) FNSETGUESTSYS(PVM, uint32_t);
89typedef FNSETGUESTSYS *PFNSETGUESTSYS;
90static int scriptSysReg(PVM pVM, char *pszVar, char *pszValue, void *pvUser)
91{
92 NOREF(pszVar);
93 uint32_t u32;
94 int rc = RTStrToUInt32Ex(pszValue, NULL, 16, &u32);
95 if (RT_FAILURE(rc))
96 return rc;
97 return ((PFNSETGUESTSYS)(uintptr_t)pvUser)(pVM, u32);
98}
99
100
101typedef DECLCALLBACK(int) FNSETGUESTDTR(PVM, uint32_t, uint16_t);
102typedef FNSETGUESTDTR *PFNSETGUESTDTR;
103static int scriptDtrReg(PVM pVM, char *pszVar, char *pszValue, void *pvUser)
104{
105 NOREF(pszVar);
106 char *pszPart2 = strchr(pszValue, ':');
107 if (!pszPart2)
108 return -1;
109 *pszPart2++ = '\0';
110 pszPart2 = RTStrStripL(pszPart2);
111 pszValue = RTStrStripR(pszValue);
112
113 uint32_t u32;
114 int rc = RTStrToUInt32Ex(pszValue, NULL, 16, &u32);
115 if (RT_FAILURE(rc))
116 return rc;
117
118 uint16_t u16;
119 rc = RTStrToUInt16Ex(pszPart2, NULL, 16, &u16);
120 if (RT_FAILURE(rc))
121 return rc;
122
123 return ((PFNSETGUESTDTR)(uintptr_t)pvUser)(pVM, u32, u16);
124}
125
126
127
128
129
130
131
132static int scriptCommand(PVM pVM, const char *pszIn, size_t cch)
133{
134 NOREF(cch);
135 int rc = VINF_SUCCESS;
136 char *psz = RTStrDup(pszIn);
137 char *pszEqual = strchr(psz, '=');
138 if (pszEqual)
139 {
140 /*
141 * var = value
142 */
143 *pszEqual = '\0';
144 RTStrStripR(psz);
145 char *pszValue = RTStrStrip(pszEqual + 1);
146
147 /* variables */
148 static struct
149 {
150 const char *pszVar;
151 int (*pfnHandler)(PVM pVM, char *pszVar, char *pszValue, void *pvUser);
152 PFNRT pvUser;
153 } aVars[] =
154 {
155 { "eax", scriptGPReg, (PFNRT)CPUMSetGuestEAX },
156 { "ebx", scriptGPReg, (PFNRT)CPUMSetGuestEBX },
157 { "ecx", scriptGPReg, (PFNRT)CPUMSetGuestECX },
158 { "edx", scriptGPReg, (PFNRT)CPUMSetGuestEDX },
159 { "esp", scriptGPReg, (PFNRT)CPUMSetGuestESP },
160 { "ebp", scriptGPReg, (PFNRT)CPUMSetGuestEBP },
161 { "esi", scriptGPReg, (PFNRT)CPUMSetGuestESI },
162 { "edi", scriptGPReg, (PFNRT)CPUMSetGuestEDI },
163 { "efl", scriptGPReg, (PFNRT)CPUMSetGuestEFlags },
164 { "eip", scriptGPReg, (PFNRT)CPUMSetGuestEIP },
165 { "ss", scriptSelReg, (PFNRT)CPUMSetGuestSS },
166 { "cs", scriptSelReg, (PFNRT)CPUMSetGuestCS },
167 { "ds", scriptSelReg, (PFNRT)CPUMSetGuestDS },
168 { "es", scriptSelReg, (PFNRT)CPUMSetGuestES },
169 { "fs", scriptSelReg, (PFNRT)CPUMSetGuestFS },
170 { "gs", scriptSelReg, (PFNRT)CPUMSetGuestGS },
171 { "cr0", scriptSysReg, (PFNRT)CPUMSetGuestCR0 },
172 { "cr2", scriptSysReg, (PFNRT)CPUMSetGuestCR2 },
173 { "cr3", scriptSysReg, (PFNRT)CPUMSetGuestCR3 },
174 { "cr4", scriptSysReg, (PFNRT)CPUMSetGuestCR4 },
175 { "ldtr",scriptSelReg, (PFNRT)CPUMSetGuestLDTR },
176 { "tr", scriptSelReg, (PFNRT)CPUMSetGuestTR },
177 { "idtr",scriptDtrReg, (PFNRT)CPUMSetGuestIDTR },
178 { "gdtr",scriptDtrReg, (PFNRT)CPUMSetGuestGDTR }
179 };
180
181 rc = -1;
182 for (unsigned i = 0; i < RT_ELEMENTS(aVars); i++)
183 {
184 if (!strcmp(psz, aVars[i].pszVar))
185 {
186 rc = aVars[i].pfnHandler(pVM, psz, pszValue, (void*)(uintptr_t)aVars[i].pvUser);
187 break;
188 }
189 }
190 }
191
192 RTStrFree(psz);
193 return rc;
194}
195
196static DECLCALLBACK(int) scriptRun(PVM pVM, RTFILE File)
197{
198 RTPrintf("info: running script...\n");
199 uint64_t cb;
200 int rc = RTFileGetSize(File, &cb);
201 if (RT_SUCCESS(rc))
202 {
203 if (cb == 0)
204 return VINF_SUCCESS;
205 if (cb < _1M)
206 {
207 char *pszBuf = (char *)RTMemAllocZ(cb + 1);
208 if (pszBuf)
209 {
210 rc = RTFileRead(File, pszBuf, cb, NULL);
211 if (RT_SUCCESS(rc))
212 {
213 pszBuf[cb] = '\0';
214
215 /*
216 * Now process what's in the buffer.
217 */
218 char *psz = pszBuf;
219 while (psz && *psz)
220 {
221 /* skip blanks. */
222 while (RT_C_IS_SPACE(*psz))
223 psz++;
224 if (!*psz)
225 break;
226
227 /* end of line */
228 char *pszNext;
229 char *pszEnd = strchr(psz, '\n');
230 if (!pszEnd)
231 pszEnd = strchr(psz, '\r');
232 if (!pszEnd)
233 pszNext = pszEnd = strchr(psz, '\0');
234 else
235 pszNext = pszEnd + 1;
236
237 if (*psz != ';' && *psz != '#' && *psz != '/')
238 {
239 /* strip end */
240 *pszEnd = '\0';
241 while (pszEnd > psz && RT_C_IS_SPACE(pszEnd[-1]))
242 *--pszEnd = '\0';
243
244 /* process the line */
245 RTPrintf("debug: executing script line '%s'\n", psz);
246 rc = scriptCommand(pVM, psz, pszEnd - psz);
247 if (RT_FAILURE(rc))
248 {
249 RTPrintf("error: '%s' failed: %Rrc\n", psz, rc);
250 break;
251 }
252 }
253 /* else comment line */
254
255 /* next */
256 psz = pszNext;
257 }
258
259 }
260 else
261 RTPrintf("error: failed to read script file: %Rrc\n", rc);
262 RTMemFree(pszBuf);
263 }
264 else
265 {
266 RTPrintf("error: Out of memory. (%d bytes)\n", cb + 1);
267 rc = VERR_NO_MEMORY;
268 }
269 }
270 else
271 RTPrintf("error: script file is too large (0x%llx bytes)\n", cb);
272 }
273 else
274 RTPrintf("error: couldn't get size of script file: %Rrc\n", rc);
275
276 return rc;
277}
278
279
280static DECLCALLBACK(int) loadMem(PVM pVM, RTFILE File, uint64_t *poff)
281{
282 uint64_t off = *poff;
283 RTPrintf("info: loading memory...\n");
284
285 int rc = RTFileSeek(File, off, RTFILE_SEEK_BEGIN, NULL);
286 if (RT_SUCCESS(rc))
287 {
288 RTGCPHYS GCPhys = 0;
289 for (;;)
290 {
291 if (!(GCPhys % (PAGE_SIZE * 0x1000)))
292 RTPrintf("info: %RGp...\n", GCPhys);
293
294 /* read a page from the file */
295 size_t cbRead = 0;
296 uint8_t au8Page[PAGE_SIZE * 16];
297 rc = RTFileRead(File, &au8Page, sizeof(au8Page), &cbRead);
298 if (RT_SUCCESS(rc) && !cbRead)
299 rc = RTFileRead(File, &au8Page, sizeof(au8Page), &cbRead);
300 if (RT_SUCCESS(rc) && !cbRead)
301 rc = VERR_EOF;
302 if (RT_FAILURE(rc) || rc == VINF_EOF)
303 {
304 if (rc == VERR_EOF)
305 rc = VINF_SUCCESS;
306 else
307 RTPrintf("error: Read error %Rrc while reading the raw memory file.\n", rc);
308 break;
309 }
310
311 /* Write that page to the guest - skip known rom areas for now. */
312 if (GCPhys < 0xa0000 || GCPhys >= 0x10000) /* ASSUME size of a8Page is a power of 2. */
313 PGMPhysWrite(pVM, GCPhys, &au8Page, cbRead);
314 GCPhys += cbRead;
315 }
316 }
317 else
318 RTPrintf("error: Failed to seek to 0x%llx in the raw memory file. rc=%Rrc\n", off, rc);
319
320 return rc;
321}
322
323
324/**
325 * Creates the default configuration.
326 * This assumes an empty tree.
327 *
328 * @returns VBox status code.
329 * @param pVM Pointer to the VM.
330 */
331static DECLCALLBACK(int) cfgmR3CreateDefault(PUVM pUVM, PVM pVM, void *pvUser)
332{
333 uint64_t cbMem = *(uint64_t *)pvUser;
334 int rc;
335 int rcAll = VINF_SUCCESS;
336 bool fIOAPIC = false;
337#define UPDATERC() do { if (RT_FAILURE(rc) && RT_SUCCESS(rcAll)) rcAll = rc; } while (0)
338
339 /*
340 * Create VM default values.
341 */
342 PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
343 rc = CFGMR3InsertString(pRoot, "Name", "Default VM");
344 UPDATERC();
345 rc = CFGMR3InsertInteger(pRoot, "RamSize", cbMem);
346 UPDATERC();
347 rc = CFGMR3InsertInteger(pRoot, "TimerMillies", 10);
348 UPDATERC();
349 rc = CFGMR3InsertInteger(pRoot, "RawR3Enabled", 0);
350 UPDATERC();
351 /** @todo CFGM Defaults: RawR0, PATMEnabled and CASMEnabled needs attention later. */
352 rc = CFGMR3InsertInteger(pRoot, "RawR0Enabled", 0);
353 UPDATERC();
354 rc = CFGMR3InsertInteger(pRoot, "PATMEnabled", 0);
355 UPDATERC();
356 rc = CFGMR3InsertInteger(pRoot, "CSAMEnabled", 0);
357 UPDATERC();
358
359 /*
360 * PDM.
361 */
362 PCFGMNODE pPdm;
363 rc = CFGMR3InsertNode(pRoot, "PDM", &pPdm);
364 UPDATERC();
365 PCFGMNODE pDevices = NULL;
366 rc = CFGMR3InsertNode(pPdm, "Devices", &pDevices);
367 UPDATERC();
368 rc = CFGMR3InsertInteger(pDevices, "LoadBuiltin", 1); /* boolean */
369 UPDATERC();
370 PCFGMNODE pDrivers = NULL;
371 rc = CFGMR3InsertNode(pPdm, "Drivers", &pDrivers);
372 UPDATERC();
373 rc = CFGMR3InsertInteger(pDrivers, "LoadBuiltin", 1); /* boolean */
374 UPDATERC();
375
376
377 /*
378 * Devices
379 */
380 pDevices = NULL;
381 rc = CFGMR3InsertNode(pRoot, "Devices", &pDevices);
382 UPDATERC();
383 /* device */
384 PCFGMNODE pDev = NULL;
385 PCFGMNODE pInst = NULL;
386 PCFGMNODE pCfg = NULL;
387#if 0
388 PCFGMNODE pLunL0 = NULL;
389 PCFGMNODE pLunL1 = NULL;
390#endif
391
392 /*
393 * PC Arch.
394 */
395 rc = CFGMR3InsertNode(pDevices, "pcarch", &pDev);
396 UPDATERC();
397 rc = CFGMR3InsertNode(pDev, "0", &pInst);
398 UPDATERC();
399 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */
400 UPDATERC();
401 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
402 UPDATERC();
403
404 /*
405 * PC Bios.
406 */
407 rc = CFGMR3InsertNode(pDevices, "pcbios", &pDev);
408 UPDATERC();
409 rc = CFGMR3InsertNode(pDev, "0", &pInst);
410 UPDATERC();
411 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */
412 UPDATERC();
413 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
414 UPDATERC();
415 rc = CFGMR3InsertInteger(pCfg, "RamSize", cbMem);
416 UPDATERC();
417 rc = CFGMR3InsertString(pCfg, "BootDevice0", "IDE");
418 UPDATERC();
419 rc = CFGMR3InsertString(pCfg, "BootDevice1", "NONE");
420 UPDATERC();
421 rc = CFGMR3InsertString(pCfg, "BootDevice2", "NONE");
422 UPDATERC();
423 rc = CFGMR3InsertString(pCfg, "BootDevice3", "NONE");
424 UPDATERC();
425 rc = CFGMR3InsertString(pCfg, "HardDiskDevice", "piix3ide");
426 UPDATERC();
427 rc = CFGMR3InsertString(pCfg, "FloppyDevice", "i82078");
428 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); UPDATERC();
429 RTUUID Uuid;
430 RTUuidClear(&Uuid);
431 rc = CFGMR3InsertBytes(pCfg, "UUID", &Uuid, sizeof(Uuid)); UPDATERC();
432 /* Bios logo. */
433 rc = CFGMR3InsertInteger(pCfg, "FadeIn", 0);
434 UPDATERC();
435 rc = CFGMR3InsertInteger(pCfg, "FadeOut", 0);
436 UPDATERC();
437 rc = CFGMR3InsertInteger(pCfg, "LogoTime", 0);
438 UPDATERC();
439 rc = CFGMR3InsertString(pCfg, "LogoFile", "");
440 UPDATERC();
441
442 /*
443 * ACPI
444 */
445 rc = CFGMR3InsertNode(pDevices, "acpi", &pDev); UPDATERC();
446 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
447 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
448 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
449 rc = CFGMR3InsertInteger(pCfg, "RamSize", cbMem); UPDATERC();
450 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); UPDATERC();
451 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 7); UPDATERC();
452 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATERC();
453
454 /*
455 * DMA
456 */
457 rc = CFGMR3InsertNode(pDevices, "8237A", &pDev); UPDATERC();
458 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
459 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
460
461 /*
462 * PCI bus.
463 */
464 rc = CFGMR3InsertNode(pDevices, "pci", &pDev); /* piix3 */
465 UPDATERC();
466 rc = CFGMR3InsertNode(pDev, "0", &pInst);
467 UPDATERC();
468 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */
469 UPDATERC();
470 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
471 UPDATERC();
472 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); UPDATERC();
473
474 /*
475 * PS/2 keyboard & mouse
476 */
477 rc = CFGMR3InsertNode(pDevices, "pckbd", &pDev);
478 UPDATERC();
479 rc = CFGMR3InsertNode(pDev, "0", &pInst);
480 UPDATERC();
481 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
482 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
483 UPDATERC();
484
485 /*
486 * Floppy
487 */
488 rc = CFGMR3InsertNode(pDevices, "i82078", &pDev); UPDATERC();
489 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
490 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); UPDATERC();
491 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
492 rc = CFGMR3InsertInteger(pCfg, "IRQ", 6); UPDATERC();
493 rc = CFGMR3InsertInteger(pCfg, "DMA", 2); UPDATERC();
494 rc = CFGMR3InsertInteger(pCfg, "MemMapped", 0 ); UPDATERC();
495 rc = CFGMR3InsertInteger(pCfg, "IOBase", 0x3f0); UPDATERC();
496
497 /*
498 * i8254 Programmable Interval Timer And Dummy Speaker
499 */
500 rc = CFGMR3InsertNode(pDevices, "i8254", &pDev);
501 UPDATERC();
502 rc = CFGMR3InsertNode(pDev, "0", &pInst);
503 UPDATERC();
504 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
505 UPDATERC();
506
507 /*
508 * i8259 Programmable Interrupt Controller.
509 */
510 rc = CFGMR3InsertNode(pDevices, "i8259", &pDev);
511 UPDATERC();
512 rc = CFGMR3InsertNode(pDev, "0", &pInst);
513 UPDATERC();
514 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */
515 UPDATERC();
516 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
517 UPDATERC();
518
519 /*
520 * APIC.
521 */
522 rc = CFGMR3InsertNode(pDevices, "apic", &pDev); UPDATERC();
523 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
524 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
525 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
526 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); UPDATERC();
527
528 if (fIOAPIC)
529 {
530 /*
531 * I/O Advanced Programmable Interrupt Controller.
532 */
533 rc = CFGMR3InsertNode(pDevices, "ioapic", &pDev); UPDATERC();
534 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
535 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
536 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
537 }
538
539
540 /*
541 * RTC MC146818.
542 */
543 rc = CFGMR3InsertNode(pDevices, "mc146818", &pDev); UPDATERC();
544 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
545 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
546
547 /*
548 * VGA.
549 */
550 rc = CFGMR3InsertNode(pDevices, "vga", &pDev); UPDATERC();
551 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
552 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
553 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 2); UPDATERC();
554 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATERC();
555 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
556 rc = CFGMR3InsertInteger(pCfg, "VRamSize", 8 * _1M); UPDATERC();
557 rc = CFGMR3InsertInteger(pCfg, "CustomVideoModes", 0);
558 rc = CFGMR3InsertInteger(pCfg, "HeightReduction", 0); UPDATERC();
559 //rc = CFGMR3InsertInteger(pCfg, "MonitorCount", 1); UPDATERC();
560
561 /*
562 * IDE controller.
563 */
564 rc = CFGMR3InsertNode(pDevices, "piix3ide", &pDev); /* piix3 */
565 UPDATERC();
566 rc = CFGMR3InsertNode(pDev, "0", &pInst);
567 UPDATERC();
568 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */
569 UPDATERC();
570 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
571 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 1); UPDATERC();
572 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 1); UPDATERC();
573
574 /*
575 * Network card.
576 */
577 rc = CFGMR3InsertNode(pDevices, "pcnet", &pDev); UPDATERC();
578 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
579 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
580 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 3); UPDATERC();
581 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATERC();
582 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
583 rc = CFGMR3InsertInteger(pCfg, "Am79C973", 1); UPDATERC();
584 RTMAC Mac;
585 Mac.au16[0] = 0x0080;
586 Mac.au16[2] = Mac.au16[1] = 0x8086;
587 rc = CFGMR3InsertBytes(pCfg, "MAC", &Mac, sizeof(Mac)); UPDATERC();
588
589 /*
590 * VMM Device
591 */
592 rc = CFGMR3InsertNode(pDevices, "VMMDev", &pDev); UPDATERC();
593 rc = CFGMR3InsertNode(pDev, "0", &pInst); UPDATERC();
594 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); UPDATERC();
595 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ UPDATERC();
596 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 4); UPDATERC();
597 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); UPDATERC();
598
599 /*
600 * ...
601 */
602
603#undef UPDATERC
604 return rcAll;
605}
606
607static void syntax(void)
608{
609 RTPrintf("Syntax: tstAnimate < -r <raw-mem-file> | -z <saved-state> > \n"
610 " [-o <rawmem offset>]\n"
611 " [-s <script file>]\n"
612 " [-m <memory size>]\n"
613 " [-w <warp drive percent>]\n"
614 " [-p]\n"
615 "\n"
616 "The script is on the form:\n"
617 "<reg>=<value>\n");
618}
619
620
621int main(int argc, char **argv)
622{
623 int rcRet = 1;
624 int rc;
625 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB);
626
627 /*
628 * Parse input.
629 */
630 if (argc <= 1)
631 {
632 syntax();
633 return 1;
634 }
635
636 bool fPowerOn = false;
637 uint32_t u32WarpDrive = 100; /* % */
638 uint64_t cbMem = ~0ULL;
639 const char *pszSavedState = NULL;
640 const char *pszRawMem = NULL;
641 uint64_t offRawMem = 0;
642 const char *pszScript = NULL;
643 for (int i = 1; i < argc; i++)
644 {
645 if (argv[i][0] == '-')
646 {
647 /* check that it's on short form */
648 if (argv[i][2])
649 {
650 if ( strcmp(argv[i], "--help")
651 && strcmp(argv[i], "-help"))
652 RTPrintf("tstAnimate: Syntax error: Unknown argument '%s'.\n", argv[i]);
653 else
654 syntax();
655 return 1;
656 }
657
658 /* check for 2nd argument */
659 switch (argv[i][1])
660 {
661 case 'r':
662 case 'o':
663 case 'c':
664 case 'm':
665 case 'w':
666 case 'z':
667 if (i + 1 < argc)
668 break;
669 RTPrintf("tstAnimate: Syntax error: '%s' takes a 2nd argument.\n", argv[i]);
670 return 1;
671 }
672
673 /* process argument */
674 switch (argv[i][1])
675 {
676 case 'r':
677 pszRawMem = argv[++i];
678 break;
679
680 case 'z':
681 pszSavedState = argv[++i];
682 break;
683
684 case 'o':
685 {
686 rc = RTStrToUInt64Ex(argv[++i], NULL, 0, &offRawMem);
687 if (RT_FAILURE(rc))
688 {
689 RTPrintf("tstAnimate: Syntax error: Invalid offset given to -o.\n");
690 return 1;
691 }
692 break;
693 }
694
695 case 'm':
696 {
697 char *pszNext;
698 rc = RTStrToUInt64Ex(argv[++i], &pszNext, 0, &cbMem);
699 if (RT_FAILURE(rc))
700 {
701 RTPrintf("tstAnimate: Syntax error: Invalid memory size given to -m.\n");
702 return 1;
703 }
704 switch (*pszNext)
705 {
706 case 'G': cbMem *= _1G; pszNext++; break;
707 case 'M': cbMem *= _1M; pszNext++; break;
708 case 'K': cbMem *= _1K; pszNext++; break;
709 case '\0': break;
710 default:
711 RTPrintf("tstAnimate: Syntax error: Invalid memory size given to -m.\n");
712 return 1;
713 }
714 if (*pszNext)
715 {
716 RTPrintf("tstAnimate: Syntax error: Invalid memory size given to -m.\n");
717 return 1;
718 }
719 break;
720 }
721
722 case 's':
723 pszScript = argv[++i];
724 break;
725
726 case 'p':
727 fPowerOn = true;
728 break;
729
730 case 'w':
731 {
732 rc = RTStrToUInt32Ex(argv[++i], NULL, 0, &u32WarpDrive);
733 if (RT_FAILURE(rc))
734 {
735 RTPrintf("tstAnimate: Syntax error: Invalid number given to -w.\n");
736 return 1;
737 }
738 break;
739 }
740
741 case 'h':
742 case 'H':
743 case '?':
744 syntax();
745 return 1;
746
747 default:
748 RTPrintf("tstAnimate: Syntax error: Unknown argument '%s'.\n", argv[i]);
749 return 1;
750 }
751 }
752 else
753 {
754 RTPrintf("tstAnimate: Syntax error at arg no. %d '%s'.\n", i, argv[i]);
755 syntax();
756 return 1;
757 }
758 }
759
760 /*
761 * Check that the basic requirements are met.
762 */
763 if (pszRawMem && pszSavedState)
764 {
765 RTPrintf("tstAnimate: Syntax error: Either -z or -r, not both.\n");
766 return 1;
767 }
768 if (!pszRawMem && !pszSavedState)
769 {
770 RTPrintf("tstAnimate: Syntax error: The -r argument is compulsory.\n");
771 return 1;
772 }
773
774 /*
775 * Open the files.
776 */
777 RTFILE FileRawMem = NIL_RTFILE;
778 if (pszRawMem)
779 {
780 rc = RTFileOpen(&FileRawMem, pszRawMem, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE);
781 if (RT_FAILURE(rc))
782 {
783 RTPrintf("tstAnimate: error: Failed to open '%s': %Rrc\n", pszRawMem, rc);
784 return 1;
785 }
786 }
787 RTFILE FileScript = NIL_RTFILE;
788 if (pszScript)
789 {
790 rc = RTFileOpen(&FileScript, pszScript, RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_WRITE);
791 if (RT_FAILURE(rc))
792 {
793 RTPrintf("tstAnimate: error: Failed to open '%s': %Rrc\n", pszScript, rc);
794 return 1;
795 }
796 }
797
798 /*
799 * Figure the memsize if not specified.
800 */
801 if (cbMem == ~0ULL)
802 {
803 if (FileRawMem != NIL_RTFILE)
804 {
805 rc = RTFileGetSize(FileRawMem, &cbMem);
806 AssertReleaseRC(rc);
807 cbMem -= offRawMem;
808 cbMem &= ~(PAGE_SIZE - 1);
809 }
810 else
811 {
812 RTPrintf("tstAnimate: error: too lazy to figure out the memsize in a saved state.\n");
813 return 1;
814 }
815 }
816 RTPrintf("tstAnimate: info: cbMem=0x%llx bytes\n", cbMem);
817
818 /*
819 * Open a release log.
820 */
821 static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES;
822 PRTLOGGER pRelLogger;
823 rc = RTLogCreate(&pRelLogger, RTLOGFLAGS_PREFIX_TIME_PROG, "all", "VBOX_RELEASE_LOG",
824 RT_ELEMENTS(s_apszGroups), s_apszGroups, RTLOGDEST_FILE, "./tstAnimate.log");
825 if (RT_SUCCESS(rc))
826 RTLogRelSetDefaultInstance(pRelLogger);
827 else
828 RTPrintf("tstAnimate: rtLogCreateEx failed - %Rrc\n", rc);
829
830 /*
831 * Create empty VM.
832 */
833 PVM pVM;
834 PUVM pUVM;
835 rc = VMR3Create(1, NULL, NULL, NULL, cfgmR3CreateDefault, &cbMem, &pVM, &pUVM);
836 if (RT_SUCCESS(rc))
837 {
838 /*
839 * Load memory.
840 */
841 if (FileRawMem != NIL_RTFILE)
842 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)loadMem, 3, pVM, FileRawMem, &offRawMem);
843 else
844 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)SSMR3Load,
845 7, pVM, pszSavedState, (uintptr_t)NULL /*pStreamOps*/, (uintptr_t)NULL /*pvUser*/,
846 SSMAFTER_DEBUG_IT, (uintptr_t)NULL /*pfnProgress*/, (uintptr_t)NULL /*pvProgressUser*/);
847 if (RT_SUCCESS(rc))
848 {
849 /*
850 * Load register script.
851 */
852 if (FileScript != NIL_RTFILE)
853 rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)scriptRun, 2, pVM, FileScript);
854 if (RT_SUCCESS(rc))
855 {
856 if (fPowerOn)
857 {
858 /*
859 * Adjust warpspeed?
860 */
861 if (u32WarpDrive != 100)
862 {
863 rc = TMR3SetWarpDrive(pUVM, u32WarpDrive);
864 if (RT_FAILURE(rc))
865 RTPrintf("warning: TMVirtualSetWarpDrive(,%u) -> %Rrc\n", u32WarpDrive, rc);
866 }
867
868 /*
869 * Start the thing with single stepping and stuff enabled.
870 * (Try make sure we don't execute anything in raw mode.)
871 */
872 RTPrintf("info: powering on the VM...\n");
873 RTLogGroupSettings(NULL, "+REM_DISAS.e.l.f");
874#ifdef VBOX_WITH_REM
875 rc = REMR3DisasEnableStepping(pVM, true);
876#else
877 rc = VERR_NOT_IMPLEMENTED; /** @todo need some EM single-step indicator */
878#endif
879 if (RT_SUCCESS(rc))
880 {
881 rc = EMR3SetExecutionPolicy(pUVM, EMEXECPOLICY_RECOMPILE_RING0, true); AssertReleaseRC(rc);
882 rc = EMR3SetExecutionPolicy(pUVM, EMEXECPOLICY_RECOMPILE_RING3, true); AssertReleaseRC(rc);
883 DBGFR3Info(pUVM, "cpumguest", "verbose", NULL);
884 if (fPowerOn)
885 rc = VMR3PowerOn(pUVM);
886 if (RT_SUCCESS(rc))
887 {
888 RTPrintf("info: VM is running\n");
889 signal(SIGINT, SigInterrupt);
890 while (!g_fSignaled)
891 RTThreadSleep(1000);
892 }
893 else
894 RTPrintf("error: Failed to power on the VM: %Rrc\n", rc);
895 }
896 else
897 RTPrintf("error: Failed to enabled singlestepping: %Rrc\n", rc);
898 }
899 else
900 {
901 /*
902 * Don't start it, just enter the debugger.
903 */
904 RTPrintf("info: entering debugger...\n");
905 DBGFR3Info(pUVM, "cpumguest", "verbose", NULL);
906 signal(SIGINT, SigInterrupt);
907 while (!g_fSignaled)
908 RTThreadSleep(1000);
909 }
910 RTPrintf("info: shutting down the VM...\n");
911 }
912 /* execScript complains */
913 }
914 else if (FileRawMem == NIL_RTFILE) /* loadMem complains, SSMR3Load doesn't */
915 RTPrintf("tstAnimate: error: SSMR3Load failed: rc=%Rrc\n", rc);
916 rcRet = RT_SUCCESS(rc) ? 0 : 1;
917
918 /*
919 * Cleanup.
920 */
921 rc = VMR3Destroy(pUVM);
922 if (!RT_SUCCESS(rc))
923 {
924 RTPrintf("tstAnimate: error: failed to destroy vm! rc=%Rrc\n", rc);
925 rcRet++;
926 }
927
928 VMR3ReleaseUVM(pUVM);
929 }
930 else
931 {
932 RTPrintf("tstAnimate: fatal error: failed to create vm! rc=%Rrc\n", rc);
933 rcRet++;
934 }
935
936 return rcRet;
937}
938
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use