1 | /* $Id: tstSupLoadModule.cpp 28800 2010-04-27 08:22:32Z 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.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 | * 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 |
|
---|
42 | int main(int argc, char **argv)
|
---|
43 | {
|
---|
44 | /*
|
---|
45 | * Init.
|
---|
46 | */
|
---|
47 | int rc = RTR3InitAndSUPLib();
|
---|
48 | if (RT_FAILURE(rc))
|
---|
49 | {
|
---|
50 | RTMsgError("RTR3InitAndSUPLib failed with rc=%Rrc\n", rc);
|
---|
51 | return 1;
|
---|
52 | }
|
---|
53 |
|
---|
54 | /*
|
---|
55 | * Process arguments.
|
---|
56 | */
|
---|
57 | static const RTGETOPTDEF s_aOptions[] =
|
---|
58 | {
|
---|
59 | { "--help", 'h', RTGETOPT_REQ_NOTHING } /* (dummy entry) */
|
---|
60 | };
|
---|
61 |
|
---|
62 | int ch;
|
---|
63 | RTGETOPTUNION ValueUnion;
|
---|
64 | RTGETOPTSTATE GetState;
|
---|
65 | RTGetOptInit(&GetState, argc, argv, s_aOptions, RT_ELEMENTS(s_aOptions), 1, 0);
|
---|
66 | while ((ch = RTGetOpt(&GetState, &ValueUnion)))
|
---|
67 | {
|
---|
68 | switch (ch)
|
---|
69 | {
|
---|
70 | case VINF_GETOPT_NOT_OPTION:
|
---|
71 | {
|
---|
72 | void *pvImageBase;
|
---|
73 | rc = SUPR3LoadModule(ValueUnion.psz, RTPathFilename(ValueUnion.psz), &pvImageBase);
|
---|
74 | if (RT_FAILURE(rc))
|
---|
75 | {
|
---|
76 | RTMsgError("%Rrc when attempting to load '%s'\n", rc, ValueUnion.psz);
|
---|
77 | return 1;
|
---|
78 | }
|
---|
79 | RTPrintf("Loaded '%s' at %p\n", ValueUnion.psz, pvImageBase);
|
---|
80 |
|
---|
81 | rc = SUPR3FreeModule(pvImageBase);
|
---|
82 | if (RT_FAILURE(rc))
|
---|
83 | {
|
---|
84 | RTMsgError("%Rrc when attempting to load '%s'\n", rc, ValueUnion.psz);
|
---|
85 | return 1;
|
---|
86 | }
|
---|
87 | break;
|
---|
88 | }
|
---|
89 |
|
---|
90 | case 'h':
|
---|
91 | RTPrintf("%s [mod1 [mod2...]]\n");
|
---|
92 | return 1;
|
---|
93 |
|
---|
94 | case 'V':
|
---|
95 | RTPrintf("$Revision: 28800 $\n");
|
---|
96 | return 0;
|
---|
97 |
|
---|
98 | default:
|
---|
99 | return RTGetOptPrintError(ch, &ValueUnion);
|
---|
100 | }
|
---|
101 | }
|
---|
102 |
|
---|
103 | return 0;
|
---|
104 | }
|
---|
105 |
|
---|