VirtualBox

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

Last change on this file since 22586 was 22503, checked in by vboxsync, 15 years ago

VBoxService: Added command execution thread (only used for sysprep spawning used by the VDI guys yet).

  • 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 22503 2009-08-27 10:13:42Z 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 <tchar.h> /**@todo just drop this, this will be compiled as UTF-8/ANSI. */
29# include <process.h> /**@todo what's this here for? */
30#endif
31
32/**
33 * A service descriptor.
34 */
35typedef struct
36{
37 /** The short service name. */
38 const char *pszName;
39 /** The longer service name. */
40 const char *pszDescription;
41 /** The usage options stuff for the --help screen. */
42 const char *pszUsage;
43 /** The option descriptions for the --help screen. */
44 const char *pszOptions;
45
46 /**
47 * Called before parsing arguments.
48 * @returns VBox status code.
49 */
50 DECLCALLBACKMEMBER(int, pfnPreInit)(void);
51
52 /**
53 * Tries to parse the given command line option.
54 *
55 * @returns 0 if we parsed, -1 if it didn't and anything else means exit.
56 * @param ppszShort If not NULL it points to the short option iterator. a short argument.
57 * If NULL examine argv[*pi].
58 * @param argc The argument count.
59 * @param argv The argument vector.
60 * @param pi The argument vector index. Update if any value(s) are eaten.
61 */
62 DECLCALLBACKMEMBER(int, pfnOption)(const char **ppszShort, int argc, char **argv, int *pi);
63
64 /**
65 * Called before parsing arguments.
66 * @returns VBox status code.
67 */
68 DECLCALLBACKMEMBER(int, pfnInit)(void);
69
70 /** Called from the worker thread.
71 *
72 * @returns VBox status code.
73 * @retval VINF_SUCCESS if exitting because *pfTerminate was set.
74 * @param pfTerminate Pointer to a per service termination flag to check
75 * before and after blocking.
76 */
77 DECLCALLBACKMEMBER(int, pfnWorker)(bool volatile *pfTerminate);
78
79 /**
80 * Stop an service.
81 */
82 DECLCALLBACKMEMBER(void, pfnStop)(void);
83
84 /**
85 * Does termination cleanups.
86 *
87 * @remarks This may be called even if pfnInit hasn't been called!
88 */
89 DECLCALLBACKMEMBER(void, pfnTerm)(void);
90} VBOXSERVICE;
91/** Pointer to a VBOXSERVICE. */
92typedef VBOXSERVICE *PVBOXSERVICE;
93/** Pointer to a const VBOXSERVICE. */
94typedef VBOXSERVICE const *PCVBOXSERVICE;
95
96#ifdef RT_OS_WINDOWS
97/** The service name (needed for mutex creation on Windows). */
98#define VBOXSERVICE_NAME L"VBoxService"
99/** The friendly service name. */
100#define VBOXSERVICE_FRIENDLY_NAME L"VBoxService"
101/** The following constant may be defined by including NtStatus.h. */
102#define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
103/** Structure for storing the looked up user information. */
104typedef struct
105{
106 TCHAR szUser [_MAX_PATH];
107 TCHAR szAuthenticationPackage [_MAX_PATH];
108 TCHAR szLogonDomain [_MAX_PATH];
109} VBOXSERVICEVMINFOUSER, *PVBOXSERVICEVMINFOUSER;
110/** Structure for the file information lookup. */
111typedef struct
112{
113 TCHAR* pszFilePath;
114 TCHAR* pszFileName;
115} VBOXSERVICEVMINFOFILE, *PVBOXSERVICEVMINFOFILE;
116/** Function prototypes for dynamic loading. */
117typedef DWORD (WINAPI* fnWTSGetActiveConsoleSessionId)();
118#endif
119
120RT_C_DECLS_BEGIN
121
122extern char *g_pszProgName;
123extern int g_cVerbosity;
124extern uint32_t g_DefaultInterval;
125
126extern int VBoxServiceSyntax(const char *pszFormat, ...);
127extern int VBoxServiceError(const char *pszFormat, ...);
128extern void VBoxServiceVerbose(int iLevel, const char *pszFormat, ...);
129extern int VBoxServiceArgUInt32(int argc, char **argv, const char *psz, int *pi, uint32_t *pu32, uint32_t u32Min, uint32_t u32Max);
130extern unsigned VBoxServiceGetStartedServices(void);
131extern int VBoxServiceStartServices(unsigned iMain);
132extern int VBoxServiceStopServices(void);
133
134extern VBOXSERVICE g_TimeSync;
135extern VBOXSERVICE g_Clipboard;
136extern VBOXSERVICE g_Control;
137extern VBOXSERVICE g_VMInfo;
138extern VBOXSERVICE g_VMExec;
139
140#ifdef RT_OS_WINDOWS
141extern DWORD g_rcWinService;
142extern SERVICE_STATUS_HANDLE g_hWinServiceStatus;
143extern SERVICE_TABLE_ENTRY const g_aServiceTable[]; /** @todo generate on the fly, see comment in main() from the enabled sub services. */
144
145/** Installs the service into the registry. */
146extern int VBoxServiceWinInstall(void);
147/** Uninstalls the service from the registry. */
148extern int VBoxServiceWinUninstall(void);
149#ifdef VBOX_WITH_GUEST_PROPS
150/** Detects wheter a user is logged on based on the enumerated processes. */
151extern BOOL VboxServiceVMInfoWinIsLoggedIn(VBOXSERVICEVMINFOUSER* a_pUserInfo,
152 PLUID a_pSession,
153 PLUID a_pLuid,
154 DWORD a_dwNumOfProcLUIDs);
155/** Gets logon user IDs from enumerated processes. */
156extern DWORD VboxServiceVMInfoWinGetLUIDsFromProcesses(PLUID *ppLuid);
157#endif /* VBOX_WITH_GUEST_PROPS */
158#endif /* RT_OS_WINDOWS */
159
160RT_C_DECLS_END
161
162#endif
163
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