VirtualBox

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

Last change on this file since 23655 was 23575, checked in by vboxsync, 15 years ago

VBoxService: Fixed GEN_IO_FAILURE, naming cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1/* $Id: VBoxServiceInternal.h 23575 2009-10-06 08:23:38Z vboxsync $ */
2/** @file
3 * VBoxService - Guest Additions Services.
4 */
5
6/*
7 * Copyright (C) 2007-2009 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 "VBoxService"
100/** The following constant may be defined by including NtStatus.h. */
101#define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
102/** Structure for storing the looked up user information. */
103typedef struct
104{
105 WCHAR szUser [_MAX_PATH];
106 WCHAR szAuthenticationPackage [_MAX_PATH];
107 WCHAR szLogonDomain [_MAX_PATH];
108} VBOXSERVICEVMINFOUSER, *PVBOXSERVICEVMINFOUSER;
109/** Structure for the file information lookup. */
110typedef struct
111{
112 char* pszFilePath;
113 char* pszFileName;
114} VBOXSERVICEVMINFOFILE, *PVBOXSERVICEVMINFOFILE;
115/** Function prototypes for dynamic loading. */
116typedef DWORD (WINAPI* fnWTSGetActiveConsoleSessionId)();
117#endif
118
119RT_C_DECLS_BEGIN
120
121extern char *g_pszProgName;
122extern int g_cVerbosity;
123extern uint32_t g_DefaultInterval;
124
125extern int VBoxServiceSyntax(const char *pszFormat, ...);
126extern int VBoxServiceError(const char *pszFormat, ...);
127extern void VBoxServiceVerbose(int iLevel, const char *pszFormat, ...);
128extern int VBoxServiceArgUInt32(int argc, char **argv, const char *psz, int *pi, uint32_t *pu32, uint32_t u32Min, uint32_t u32Max);
129extern unsigned VBoxServiceGetStartedServices(void);
130extern int VBoxServiceStartServices(unsigned iMain);
131extern int VBoxServiceStopServices(void);
132
133extern VBOXSERVICE g_TimeSync;
134extern VBOXSERVICE g_Clipboard;
135extern VBOXSERVICE g_Control;
136extern VBOXSERVICE g_VMInfo;
137extern VBOXSERVICE g_Exec;
138
139#ifdef RT_OS_WINDOWS
140extern DWORD g_rcWinService;
141extern SERVICE_STATUS_HANDLE g_hWinServiceStatus;
142extern SERVICE_TABLE_ENTRY const g_aServiceTable[]; /** @todo generate on the fly, see comment in main() from the enabled sub services. */
143
144/** Installs the service into the registry. */
145extern int VBoxServiceWinInstall(void);
146/** Uninstalls the service from the registry. */
147extern int VBoxServiceWinUninstall(void);
148#ifdef VBOX_WITH_GUEST_PROPS
149/** Detects wheter a user is logged on based on the enumerated processes. */
150extern BOOL VBoxServiceVMInfoWinIsLoggedIn(VBOXSERVICEVMINFOUSER* a_pUserInfo,
151 PLUID a_pSession,
152 PLUID a_pLuid,
153 DWORD a_dwNumOfProcLUIDs);
154/** Gets logon user IDs from enumerated processes. */
155extern DWORD VBoxServiceVMInfoWinGetLUIDsFromProcesses(PLUID *ppLuid);
156#endif /* VBOX_WITH_GUEST_PROPS */
157#endif /* RT_OS_WINDOWS */
158
159RT_C_DECLS_END
160
161#endif
162
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