VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.h@ 6290

Last change on this file since 6290 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.2 KB
Line 
1/** @file
2 *
3 * VBoxGuestLib - A support library for VirtualBox guest additions:
4 * Central calls header
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef __VBOXCALLS__H
20#define __VBOXCALLS__H
21
22#include <VBox/VBoxGuestLib.h>
23#ifndef _NTIFS_
24# ifdef RT_OS_WINDOWS
25# if (_MSC_VER >= 1400) && !defined(VBOX_WITH_PATCHED_DDK)
26# include <iprt/asm.h>
27# define _InterlockedExchange _InterlockedExchange_StupidDDKvsCompilerCrap
28# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKvsCompilerCrap
29# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKvsCompilerCrap
30# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKvsCompilerCrap
31 __BEGIN_DECLS
32# include <ntddk.h>
33 __END_DECLS
34# undef _InterlockedExchange
35# undef _InterlockedExchangeAdd
36# undef _InterlockedCompareExchange
37# undef _InterlockedAddLargeStatistic
38# else
39 __BEGIN_DECLS
40# include <ntddk.h>
41 __END_DECLS
42# endif
43# endif
44#endif
45
46#ifdef DEBUG
47# define LOG_ENABLED
48#endif
49#include "VBoxGuestLog.h"
50
51#include <iprt/assert.h>
52#define ASSERTVBSF AssertRelease
53
54#include <VBox/shflsvc.h>
55
56typedef struct _VBSFCLIENT
57{
58 uint32_t ulClientID;
59 VBGLHGCMHANDLE handle;
60} VBSFCLIENT;
61typedef VBSFCLIENT *PVBSFCLIENT;
62
63typedef struct _VBSFMAP
64{
65 SHFLROOT root;
66} VBSFMAP, *PVBSFMAP;
67
68
69#define VBSF_DRIVE_LETTER_FIRST L'A'
70#define VBSF_DRIVE_LETTER_LAST L'Z'
71
72#define VBSF_MAX_DRIVES (VBSF_DRIVE_LETTER_LAST - VBSF_DRIVE_LETTER_FIRST)
73
74/* Poller thread flags. */
75#define VBSF_TF_NONE (0x0000)
76#define VBSF_TF_STARTED (0x0001)
77#define VBSF_TF_TERMINATE (0x0002)
78#define VBSF_TF_START_PROCESSING (0x0004)
79
80#define DRIVE_FLAG_WORKING (0x1)
81#define DRIVE_FLAG_LOCKED (0x2)
82#define DRIVE_FLAG_WRITE_PROTECTED (0x4)
83
84#ifdef RT_OS_WINDOWS
85/** Device extension structure for each drive letter we created. */
86typedef struct _VBSFDRIVE
87{
88 /* A pointer to the Driver object we created for the drive. */
89 PDEVICE_OBJECT pDeviceObject;
90
91 /** Root handle to access the drive. */
92 SHFLROOT root;
93
94 /** Informational string - the resource name on host. */
95 WCHAR awcNameHost[256];
96
97 /** Guest drive letter. */
98 WCHAR wcDriveLetter;
99
100 /** DRIVE_FLAG_* */
101 uint32_t u32DriveFlags;
102
103 /** Head of FCB list. */
104 LIST_ENTRY FCBHead;
105
106 /* Synchronise requests directed to the drive. */
107 ERESOURCE DriveResource;
108} VBSFDRIVE;
109typedef VBSFDRIVE *PVBSFDRIVE;
110#endif /* RT_OS_WINDOWS */
111
112/* forward decl */
113struct _MRX_VBOX_DEVICE_EXTENSION;
114typedef struct _MRX_VBOX_DEVICE_EXTENSION *PMRX_VBOX_DEVICE_EXTENSION;
115
116DECLVBGL(int) vboxInit (void);
117DECLVBGL(void) vboxUninit (void);
118DECLVBGL(int) vboxConnect (PVBSFCLIENT pClient);
119DECLVBGL(void) vboxDisconnect (PVBSFCLIENT pClient);
120
121DECLVBGL(int) vboxCallQueryMappings (PVBSFCLIENT pClient, SHFLMAPPING paMappings[], uint32_t *pcMappings);
122
123DECLVBGL(int) vboxCallQueryMapName (PVBSFCLIENT pClient, SHFLROOT root, SHFLSTRING *pString, uint32_t size);
124
125/**
126 * Create a new file or folder or open an existing one in a shared folder. Proxies
127 * to vbsfCreate in the host shared folder service.
128 *
129 * @returns IPRT status code, but see note below
130 * @param pClient Host-guest communication connection
131 * @param pMap The mapping for the shared folder in which the file
132 * or folder is to be created
133 * @param pParsedPath The path of the file or folder relative to the shared
134 * folder
135 * @param pCreateParms Parameters for file/folder creation. See the
136 * structure description in shflsvc.h
137 * @retval pCreateParms See the structure description in shflsvc.h
138 *
139 * @note This function reports errors as follows. The return value is always
140 * VINF_SUCCESS unless an exceptional condition occurrs - out of
141 * memory, invalid arguments, etc. If the file or folder could not be
142 * opened or created, pCreateParms->Handle will be set to
143 * SHFL_HANDLE_NIL on return. In this case the value in
144 * pCreateParms->Result provides information as to why (e.g.
145 * SHFL_FILE_EXISTS). pCreateParms->Result is also set on success
146 * as additional information.
147 */
148DECLVBGL(int) vboxCallCreate (PVBSFCLIENT pClient, PVBSFMAP pMap, PSHFLSTRING pParsedPath, PSHFLCREATEPARMS pCreateParms);
149
150DECLVBGL(int) vboxCallClose (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE Handle);
151DECLVBGL(int) vboxCallRemove (PVBSFCLIENT pClient, PVBSFMAP pMap, PSHFLSTRING pParsedPath, uint32_t flags);
152DECLVBGL(int) vboxCallRename (PVBSFCLIENT pClient, PVBSFMAP pMap, PSHFLSTRING pSrcPath, PSHFLSTRING pDestPath, uint32_t flags);
153DECLVBGL(int) vboxCallFlush (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile);
154
155DECLVBGL(int) vboxCallRead (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint32_t *pcbBuffer, uint8_t *pBuffer, bool fLocked);
156DECLVBGL(int) vboxCallWrite (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint32_t *pcbBuffer, uint8_t *pBuffer, bool fLocked);
157
158DECLVBGL(int) vboxCallLock (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile, uint64_t offset, uint64_t cbSize, uint32_t fLock);
159
160DECLVBGL(int) vboxCallDirInfo (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile,PSHFLSTRING ParsedPath, uint32_t flags,
161 uint32_t index, uint32_t *pcbBuffer, PSHFLDIRINFO pBuffer, uint32_t *pcFiles);
162DECLVBGL(int) vboxCallFSInfo (PVBSFCLIENT pClient, PVBSFMAP pMap, SHFLHANDLE hFile, uint32_t flags, uint32_t *pcbBuffer, PSHFLDIRINFO pBuffer);
163
164DECLVBGL(int) vboxCallMapFolder (PVBSFCLIENT pClient, PSHFLSTRING szFolderName, PVBSFMAP pMap);
165DECLVBGL(int) vboxCallUnmapFolder (PVBSFCLIENT pClient, PVBSFMAP pMap);
166DECLVBGL(int) vboxCallSetUtf8 (PVBSFCLIENT pClient);
167
168#endif /* __VBOXCALLS__H */
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