VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h@ 27309

Last change on this file since 27309 was 27114, checked in by vboxsync, 15 years ago

(void)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1/* $Id: VBoxServiceInternal.h 27114 2010-03-05 16:38:12Z vboxsync $ */
2/** @file
3 * VBoxService - Guest Additions Services.
4 */
5
6/*
7 * Copyright (C) 2007-2010 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___VBoxServiceInternal_h
23#define ___VBoxServiceInternal_h
24
25#include <stdio.h>
26#ifdef RT_OS_WINDOWS
27# include <Windows.h>
28# include <process.h> /* Needed for file version information. */
29#endif
30
31/**
32 * A service descriptor.
33 */
34typedef struct
35{
36 /** The short service name. */
37 const char *pszName;
38 /** The longer service name. */
39 const char *pszDescription;
40 /** The usage options stuff for the --help screen. */
41 const char *pszUsage;
42 /** The option descriptions for the --help screen. */
43 const char *pszOptions;
44
45 /**
46 * Called before parsing arguments.
47 * @returns VBox status code.
48 */
49 DECLCALLBACKMEMBER(int, pfnPreInit)(void);
50
51 /**
52 * Tries to parse the given command line option.
53 *
54 * @returns 0 if we parsed, -1 if it didn't and anything else means exit.
55 * @param ppszShort If not NULL it points to the short option iterator. a short argument.
56 * If NULL examine argv[*pi].
57 * @param argc The argument count.
58 * @param argv The argument vector.
59 * @param pi The argument vector index. Update if any value(s) are eaten.
60 */
61 DECLCALLBACKMEMBER(int, pfnOption)(const char **ppszShort, int argc, char **argv, int *pi);
62
63 /**
64 * Called before parsing arguments.
65 * @returns VBox status code.
66 */
67 DECLCALLBACKMEMBER(int, pfnInit)(void);
68
69 /** Called from the worker thread.
70 *
71 * @returns VBox status code.
72 * @retval VINF_SUCCESS if exitting because *pfTerminate was set.
73 * @param pfTerminate Pointer to a per service termination flag to check
74 * before and after blocking.
75 */
76 DECLCALLBACKMEMBER(int, pfnWorker)(bool volatile *pfTerminate);
77
78 /**
79 * Stop an service.
80 */
81 DECLCALLBACKMEMBER(void, pfnStop)(void);
82
83 /**
84 * Does termination cleanups.
85 *
86 * @remarks This may be called even if pfnInit hasn't been called!
87 */
88 DECLCALLBACKMEMBER(void, pfnTerm)(void);
89} VBOXSERVICE;
90/** Pointer to a VBOXSERVICE. */
91typedef VBOXSERVICE *PVBOXSERVICE;
92/** Pointer to a const VBOXSERVICE. */
93typedef VBOXSERVICE const *PCVBOXSERVICE;
94
95#ifdef RT_OS_WINDOWS
96/** The service name (needed for mutex creation on Windows). */
97# define VBOXSERVICE_NAME "VBoxService"
98/** The friendly service name. */
99# define VBOXSERVICE_FRIENDLY_NAME "VirtualBox Guest Additions Service"
100/** The service description (only W2K+ atm) */
101# define VBOXSERVICE_DESCRIPTION "Manages VM runtime information, time synchronization, remote sysprep execution and miscellaneous utilities for guest operating systems."
102/** The following constant may be defined by including NtStatus.h. */
103# define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
104/** Structure for storing the looked up user information. */
105typedef struct
106{
107 WCHAR wszUser[_MAX_PATH];
108 WCHAR wszAuthenticationPackage[_MAX_PATH];
109 WCHAR wszLogonDomain[_MAX_PATH];
110} VBOXSERVICEVMINFOUSER, *PVBOXSERVICEVMINFOUSER;
111/** Structure for the file information lookup. */
112typedef struct
113{
114 char *pszFilePath;
115 char *pszFileName;
116} VBOXSERVICEVMINFOFILE, *PVBOXSERVICEVMINFOFILE;
117/** Structure for process information lookup. */
118typedef struct
119{
120 DWORD id;
121 LUID luid;
122} VBOXSERVICEVMINFOPROC, *PVBOXSERVICEVMINFOPROC;
123/** Function prototypes for dynamic loading. */
124typedef DWORD (WINAPI *PFNWTSGETACTIVECONSOLESESSIONID)(void);
125#endif /* RT_OS_WINDOWS */
126
127RT_C_DECLS_BEGIN
128
129extern char *g_pszProgName;
130extern int g_cVerbosity;
131extern uint32_t g_DefaultInterval;
132
133extern int VBoxServiceSyntax(const char *pszFormat, ...);
134extern int VBoxServiceError(const char *pszFormat, ...);
135extern void VBoxServiceVerbose(int iLevel, const char *pszFormat, ...);
136extern int VBoxServiceArgUInt32(int argc, char **argv, const char *psz, int *pi, uint32_t *pu32, uint32_t u32Min, uint32_t u32Max);
137extern unsigned VBoxServiceGetStartedServices(void);
138extern int VBoxServiceStartServices(unsigned iMain);
139extern int VBoxServiceStopServices(void);
140
141extern VBOXSERVICE g_TimeSync;
142extern VBOXSERVICE g_Clipboard;
143extern VBOXSERVICE g_Control;
144extern VBOXSERVICE g_VMInfo;
145extern VBOXSERVICE g_Exec;
146extern VBOXSERVICE g_CpuHotPlug;
147#ifdef VBOXSERVICE_MANAGEMENT
148extern VBOXSERVICE g_MemBalloon;
149extern VBOXSERVICE g_VMStatistics;
150#endif
151
152#ifdef RT_OS_WINDOWS
153extern DWORD g_rcWinService;
154extern SERVICE_TABLE_ENTRY const g_aServiceTable[]; /** @todo generate on the fly, see comment in main() from the enabled sub services. */
155extern PFNWTSGETACTIVECONSOLESESSIONID g_pfnWTSGetActiveConsoleSessionId; /* VBoxServiceVMInfo-win.cpp */
156
157extern int VBoxServiceWinInstall(void);
158extern int VBoxServiceWinUninstall(void);
159extern BOOL VBoxServiceWinSetStatus(DWORD dwStatus, DWORD dwCheckPoint);
160# ifdef VBOX_WITH_GUEST_PROPS
161extern bool VBoxServiceVMInfoWinSessionHasProcesses(PLUID pSession, VBOXSERVICEVMINFOPROC const *paProcs, DWORD cProcs);
162extern bool VBoxServiceVMInfoWinIsLoggedIn(PVBOXSERVICEVMINFOUSER a_pUserInfo, PLUID a_pSession);
163extern int VBoxServiceVMInfoWinProcessesEnumerate(PVBOXSERVICEVMINFOPROC *ppProc, DWORD *pdwCount);
164extern void VBoxServiceVMInfoWinProcessesFree(PVBOXSERVICEVMINFOPROC paProcs);
165extern int VBoxServiceWinGetComponentVersions(uint32_t uiClientID);
166# endif /* VBOX_WITH_GUEST_PROPS */
167#endif /* RT_OS_WINDOWS */
168
169#ifdef VBOXSERVICE_MANAGEMENT
170extern uint32_t VBoxServiceBalloonQueryChunks(void);
171#endif
172
173RT_C_DECLS_END
174
175#endif
176
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