VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/testcase/tstSupLoadModule.cpp@ 40810

Last change on this file since 40810 was 40810, checked in by vboxsync, 13 years ago

tstSupLoadModule: new trick

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 KB
Line 
1/* $Id: tstSupLoadModule.cpp 40810 2012-04-06 23:04:11Z vboxsync $ */
2/** @file
3 * SUP Testcase - Test SUPR3LoadModule.
4 */
5
6/*
7 * Copyright (C) 2006-2009 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <VBox/sup.h>
32#include <VBox/err.h>
33
34#include <iprt/getopt.h>
35#include <iprt/initterm.h>
36#include <iprt/mem.h>
37#include <iprt/message.h>
38#include <iprt/path.h>
39#include <iprt/stream.h>
40
41
42int main(int argc, char **argv)
43{
44 /*
45 * Init.
46 */
47 int rc = RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB);
48 if (RT_FAILURE(rc))
49 return RTMsgInitFailure(rc);
50
51 /*
52 * Process arguments.
53 */
54 static const RTGETOPTDEF s_aOptions[] =
55 {
56 { "--keep", 'k', RTGETOPT_REQ_NOTHING }
57 };
58
59 bool fKeepLoaded = false;
60
61 int ch;
62 RTGETOPTUNION ValueUnion;
63 RTGETOPTSTATE GetState;
64 RTGetOptInit(&GetState, argc, argv, s_aOptions, RT_ELEMENTS(s_aOptions), 1, 0);
65 while ((ch = RTGetOpt(&GetState, &ValueUnion)))
66 {
67 switch (ch)
68 {
69 case VINF_GETOPT_NOT_OPTION:
70 {
71 void *pvImageBase;
72 RTERRINFOSTATIC ErrInfo;
73 RTErrInfoInitStatic(&ErrInfo);
74 rc = SUPR3LoadModule(ValueUnion.psz, RTPathFilename(ValueUnion.psz), &pvImageBase, &ErrInfo.Core);
75 if (RT_FAILURE(rc))
76 {
77 RTMsgError("%Rrc when attempting to load '%s': %s\n", rc, ValueUnion.psz, ErrInfo.Core.pszMsg);
78 return 1;
79 }
80 RTPrintf("Loaded '%s' at %p\n", ValueUnion.psz, pvImageBase);
81
82 if (!fKeepLoaded)
83 {
84 rc = SUPR3FreeModule(pvImageBase);
85 if (RT_FAILURE(rc))
86 {
87 RTMsgError("%Rrc when attempting to load '%s'\n", rc, ValueUnion.psz);
88 return 1;
89 }
90 }
91 break;
92 }
93
94 case 'k':
95 fKeepLoaded = true;
96 break;
97
98 case 'h':
99 RTPrintf("%s [mod1 [mod2...]]\n");
100 return 1;
101
102 case 'V':
103 RTPrintf("$Revision: 40810 $\n");
104 return 0;
105
106 default:
107 return RTGetOptPrintError(ch, &ValueUnion);
108 }
109 }
110
111 return 0;
112}
113
Note: See TracBrowser for help on using the repository browser.

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