VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstGlobalConfig.cpp@ 43667

Last change on this file since 43667 was 41965, checked in by vboxsync, 12 years ago

VMM: ran scm. Mostly svn:keywords changes (adding Revision).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.5 KB
Line 
1/* $Id: tstGlobalConfig.cpp 41965 2012-06-29 02:52:49Z vboxsync $ */
2/** @file
3 * Ring-3 Management program for the GCFGM mock-up.
4 */
5
6/*
7 * Copyright (C) 2007 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/vmm.h>
23#include <VBox/err.h>
24#include <iprt/assert.h>
25#include <iprt/initterm.h>
26#include <iprt/stream.h>
27#include <iprt/string.h>
28
29
30/**
31 * Prints the usage and returns 1.
32 * @return 1
33 */
34static int Usage(void)
35{
36 RTPrintf("usage: tstGlobalConfig <value-name> [new value]\n");
37 return 1;
38}
39
40
41int main(int argc, char **argv)
42{
43 RTR3InitExe(argc, &argv, 0);
44
45 /*
46 * Parse args, building the request as we do so.
47 */
48 if (argc <= 1)
49 return Usage();
50 if (argc > 3)
51 {
52 RTPrintf("syntax error: too many arguments\n");
53 Usage();
54 return 1;
55 }
56
57 VMMR0OPERATION enmOp = VMMR0_DO_GCFGM_QUERY_VALUE;
58 GCFGMVALUEREQ Req;
59 memset(&Req, 0, sizeof(Req));
60 Req.Hdr.u32Magic = SUPVMMR0REQHDR_MAGIC;
61 Req.Hdr.cbReq = sizeof(Req);
62
63 /* arg[1] = szName */
64 size_t cch = strlen(argv[1]);
65 if (cch < 2 || argv[1][0] != '/')
66 {
67 RTPrintf("syntax error: malformed name '%s'\n", argv[1]);
68 return 1;
69 }
70 if (cch >= sizeof(Req.szName))
71 {
72 RTPrintf("syntax error: the name is too long. (max %zu chars)\n", argv[1], sizeof(Req.szName) - 1);
73 return 1;
74 }
75 memcpy(&Req.szName[0], argv[1], cch + 1);
76
77 /* argv[2] = u64SetValue; optional */
78 if (argc == 3)
79 {
80 char *pszNext = NULL;
81 int rc = RTStrToUInt64Ex(argv[2], &pszNext, 0, &Req.u64Value);
82 if (RT_FAILURE(rc) || *pszNext)
83 {
84 RTPrintf("syntax error: '%s' didn't convert successfully to a number. (%Rrc,'%s')\n", argv[2], rc, pszNext);
85 return 1;
86 }
87 enmOp = VMMR0_DO_GCFGM_SET_VALUE;
88 }
89
90 /*
91 * Open the session, load ring-0 and issue the request.
92 */
93 PSUPDRVSESSION pSession;
94 int rc = SUPR3Init(&pSession);
95 if (RT_FAILURE(rc))
96 {
97 RTPrintf("tstGlobalConfig: SUPR3Init -> %Rrc\n", rc);
98 return 1;
99 }
100
101 rc = SUPR3LoadVMM("./VMMR0.r0");
102 if (RT_SUCCESS(rc))
103 {
104 Req.pSession = pSession;
105 rc = SUPR3CallVMMR0Ex(NIL_RTR0PTR, NIL_VMCPUID, enmOp, 0, &Req.Hdr);
106 if (RT_SUCCESS(rc))
107 {
108 if (enmOp == VMMR0_DO_GCFGM_QUERY_VALUE)
109 RTPrintf("%s = %RU64 (%#RX64)\n", Req.szName, Req.u64Value, Req.u64Value);
110 else
111 RTPrintf("Successfully set %s = %RU64 (%#RX64)\n", Req.szName, Req.u64Value, Req.u64Value);
112 }
113 else if (enmOp == VMMR0_DO_GCFGM_QUERY_VALUE)
114 RTPrintf("error: Failed to query '%s', rc=%Rrc\n", Req.szName, rc);
115 else
116 RTPrintf("error: Failed to set '%s' to %RU64, rc=%Rrc\n", Req.szName, Req.u64Value, rc);
117
118 }
119 SUPR3Term(false /*fForced*/);
120
121 return RT_FAILURE(rc) ? 1 : 0;
122}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use