VirtualBox

source: vbox/trunk/src/VBox/ExtPacks/Skeleton/VBoxSkeletonMain.cpp@ 68828

Last change on this file since 68828 was 68828, checked in by vboxsync, 7 years ago

ExtPack: Split up main module of extension pack, have a mandatory one for VBoxSVC and an optional one for the VM process. This finally eliminates the need to drag VBoxVMM into VBoxSVC on some platforms. Many other small cleanups, including reliably calling the unload hook from within a VM process, copy/paste with forgotten adjustments (e.g. extpacks still talking about skeleton) and spelling fixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/* $Id: VBoxSkeletonMain.cpp 68828 2017-09-22 14:15:57Z vboxsync $ */
2/** @file
3 * Skeleton main module.
4 */
5
6/*
7 * Copyright (C) 2010-2017 Oracle Corporation
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
32/*********************************************************************************************************************************
33* Header Files *
34*********************************************************************************************************************************/
35#include <VBox/ExtPack/ExtPack.h>
36
37#include <VBox/err.h>
38#include <VBox/version.h>
39#include <iprt/string.h>
40#include <iprt/param.h>
41#include <iprt/path.h>
42
43
44/*********************************************************************************************************************************
45* Global Variables *
46*********************************************************************************************************************************/
47/** Pointer to the extension pack helpers. */
48static PCVBOXEXTPACKHLP g_pHlp;
49
50
51// /**
52// * @interface_method_impl{VBOXEXTPACKREG,pfnInstalled}
53// */
54// static DECLCALLBACK(void) vboxSkeletonExtPack_Installed(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, PRTERRINFO pErrInfo);
55//
56// /**
57// * @interface_method_impl{VBOXEXTPACKREG,pfnUninstall}
58// */
59// static DECLCALLBACK(int) vboxSkeletonExtPack_Uninstall(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox);
60//
61// /**
62// * @interface_method_impl{VBOXEXTPACKREG,pfnVirtualBoxReady}
63// */
64// static DECLCALLBACK(void) vboxSkeletonExtPack_VirtualBoxReady(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox);
65//
66// /**
67// * @interface_method_impl{VBOXEXTPACKREG,pfnUnload}
68// */
69// static DECLCALLBACK(void) vboxSkeletonExtPack_Unload(PCVBOXEXTPACKREG pThis);
70//
71// /**
72// * @interface_method_impl{VBOXEXTPACKREG,pfnVMCreated}
73// */
74// static DECLCALLBACK(int) vboxSkeletonExtPack_VMCreated(PCVBOXEXTPACKREG pThis, VBOXEXTPACK_IF_CS(IVirtualBox) *pVirtualBox, VBOXEXTPACK_IF_CS(IMachine) *pMachine);
75//
76// /**
77// * @interface_method_impl{VBOXEXTPACKREG,pfnQueryObject}
78// */
79// static DECLCALLBACK(int) vboxSkeletonExtPack_QueryObject(PCVBOXEXTPACKREG pThis, PCRTUUID pObjectId);
80
81
82static const VBOXEXTPACKREG g_vboxSkeletonExtPackReg =
83{
84 VBOXEXTPACKREG_VERSION,
85 /* .uVBoxFullVersion = */ VBOX_FULL_VERSION,
86 /* .pfnInstalled = */ NULL,
87 /* .pfnUninstall = */ NULL,
88 /* .pfnVirtualBoxReady =*/ NULL,
89 /* .pfnUnload = */ NULL,
90 /* .pfnVMCreated = */ NULL,
91 /* .pfnQueryObject = */ NULL,
92 /* .pfnReserved1 = */ NULL,
93 /* .pfnReserved2 = */ NULL,
94 /* .pfnReserved3 = */ NULL,
95 /* .pfnReserved4 = */ NULL,
96 /* .pfnReserved5 = */ NULL,
97 /* .pfnReserved6 = */ NULL,
98 /* .u32Reserved7 = */ 0,
99 VBOXEXTPACKREG_VERSION
100};
101
102
103/** @callback_method_impl{FNVBOXEXTPACKREGISTER} */
104extern "C" DECLEXPORT(int) VBoxExtPackRegister(PCVBOXEXTPACKHLP pHlp, PCVBOXEXTPACKREG *ppReg, PRTERRINFO pErrInfo)
105{
106 /*
107 * Check the VirtualBox version.
108 */
109 if (!VBOXEXTPACK_IS_VER_COMPAT(pHlp->u32Version, VBOXEXTPACKHLP_VERSION))
110 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
111 "Helper version mismatch - expected %#x got %#x",
112 VBOXEXTPACKHLP_VERSION, pHlp->u32Version);
113 if ( VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MAJOR
114 || VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MINOR)
115 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
116 "VirtualBox version mismatch - expected %u.%u got %u.%u",
117 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR,
118 VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion),
119 VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion));
120
121 /*
122 * We're good, save input and return the registration structure.
123 */
124 g_pHlp = pHlp;
125 *ppReg = &g_vboxSkeletonExtPackReg;
126
127 return VINF_SUCCESS;
128}
129
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