VirtualBox

source: vbox/trunk/include/VBox/shflsvc.h@ 43394

Last change on this file since 43394 was 39643, checked in by vboxsync, 13 years ago

SharedFolders: more fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.6 KB
Line 
1/** @file
2 * Shared Folders: Common header for host service and guest clients.
3 */
4
5/*
6 * Copyright (C) 2006-2010 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_shflsvc_h
27#define ___VBox_shflsvc_h
28
29#include <VBox/types.h>
30#include <VBox/VBoxGuest2.h>
31#include <VBox/VMMDev.h>
32#include <VBox/hgcmsvc.h>
33#include <iprt/fs.h>
34
35
36/** @name Some bit flag manipulation macros.
37 * @{ */
38#ifndef BIT_FLAG
39#define BIT_FLAG(__Field,__Flag) ((__Field) & (__Flag))
40#endif
41
42#ifndef BIT_FLAG_SET
43#define BIT_FLAG_SET(__Field,__Flag) ((__Field) |= (__Flag))
44#endif
45
46#ifndef BIT_FLAG_CLEAR
47#define BIT_FLAG_CLEAR(__Field,__Flag) ((__Field) &= ~(__Flag))
48#endif
49/** @} */
50
51
52/**
53 * Structures shared between guest and the service
54 * can be relocated and use offsets to point to variable
55 * length parts.
56 */
57
58/**
59 * Shared folders protocol works with handles.
60 * Before doing any action on a file system object,
61 * one have to obtain the object handle via a SHFL_FN_CREATE
62 * request. A handle must be closed with SHFL_FN_CLOSE.
63 */
64
65/** Shared Folders service functions. (guest)
66 * @{
67 */
68
69/** Query mappings changes. */
70#define SHFL_FN_QUERY_MAPPINGS (1)
71/** Query mappings changes. */
72#define SHFL_FN_QUERY_MAP_NAME (2)
73/** Open/create object. */
74#define SHFL_FN_CREATE (3)
75/** Close object handle. */
76#define SHFL_FN_CLOSE (4)
77/** Read object content. */
78#define SHFL_FN_READ (5)
79/** Write new object content. */
80#define SHFL_FN_WRITE (6)
81/** Lock/unlock a range in the object. */
82#define SHFL_FN_LOCK (7)
83/** List object content. */
84#define SHFL_FN_LIST (8)
85/** Query/set object information. */
86#define SHFL_FN_INFORMATION (9)
87/** Remove object */
88#define SHFL_FN_REMOVE (11)
89/** Map folder (legacy) */
90#define SHFL_FN_MAP_FOLDER_OLD (12)
91/** Unmap folder */
92#define SHFL_FN_UNMAP_FOLDER (13)
93/** Rename object (possibly moving it to another directory) */
94#define SHFL_FN_RENAME (14)
95/** Flush file */
96#define SHFL_FN_FLUSH (15)
97/** @todo macl, a description, please. */
98#define SHFL_FN_SET_UTF8 (16)
99/** Map folder */
100#define SHFL_FN_MAP_FOLDER (17)
101/** Read symlink destination (as of VBox 4.0) */
102#define SHFL_FN_READLINK (18)
103/** Create symlink (as of VBox 4.0) */
104#define SHFL_FN_SYMLINK (19)
105/** Ask host to show symlinks (as of VBox 4.0) */
106#define SHFL_FN_SET_SYMLINKS (20)
107
108/** @} */
109
110/** Shared Folders service functions. (host)
111 * @{
112 */
113
114/** Add shared folder mapping. */
115#define SHFL_FN_ADD_MAPPING (1)
116/** Remove shared folder mapping. */
117#define SHFL_FN_REMOVE_MAPPING (2)
118/** Set the led status light address. */
119#define SHFL_FN_SET_STATUS_LED (3)
120/** Allow the guest to create symbolic links (as of VBox 4.0) */
121#define SHFL_FN_ALLOW_SYMLINKS_CREATE (4)
122/** @} */
123
124/** Root handle for a mapping. Root handles are unique.
125 * @note
126 * Function parameters structures consider
127 * the root handle as 32 bit value. If the typedef
128 * will be changed, then function parameters must be
129 * changed accordingly. All those parameters are marked
130 * with SHFLROOT in comments.
131 */
132typedef uint32_t SHFLROOT;
133
134#define SHFL_ROOT_NIL ((SHFLROOT)~0)
135
136
137/** A shared folders handle for an opened object. */
138typedef uint64_t SHFLHANDLE;
139
140#define SHFL_HANDLE_NIL ((SHFLHANDLE)~0LL)
141#define SHFL_HANDLE_ROOT ((SHFLHANDLE)0LL)
142
143/** Hardcoded maximum length (in chars) of a shared folder name. */
144#define SHFL_MAX_LEN (256)
145/** Hardcoded maximum number of shared folder mapping available to the guest. */
146#define SHFL_MAX_MAPPINGS (64)
147
148/** @name Shared Folders strings. They can be either UTF-8 or UTF-16.
149 * @{
150 */
151
152/**
153 * Shared folder string buffer structure.
154 */
155typedef struct _SHFLSTRING
156{
157 /** Size of the String member in bytes. */
158 uint16_t u16Size;
159
160 /** Length of string without trailing nul in bytes. */
161 uint16_t u16Length;
162
163 /** UTF-8 or UTF-16 string. Nul terminated. */
164 union
165 {
166 uint8_t utf8[1];
167 uint16_t ucs2[1];
168 } String;
169} SHFLSTRING;
170
171/** Pointer to a shared folder string buffer. */
172typedef SHFLSTRING *PSHFLSTRING;
173/** Pointer to a const shared folder string buffer. */
174typedef const SHFLSTRING *PCSHFLSTRING;
175
176/** Calculate size of the string. */
177DECLINLINE(uint32_t) ShflStringSizeOfBuffer(PCSHFLSTRING pString)
178{
179 return pString? sizeof (SHFLSTRING) - sizeof (pString->String) + pString->u16Size: 0;
180}
181
182DECLINLINE(uint32_t) ShflStringLength(PCSHFLSTRING pString)
183{
184 return pString? pString->u16Length: 0;
185}
186
187DECLINLINE(PSHFLSTRING) ShflStringInitBuffer(void *pvBuffer, uint32_t u32Size)
188{
189 PSHFLSTRING pString = NULL;
190
191 uint32_t u32HeaderSize = sizeof (SHFLSTRING) - sizeof (pString->String);
192
193 /* Check that the buffer size is big enough to hold a zero sized string
194 * and is not too big to fit into 16 bit variables.
195 */
196 if (u32Size >= u32HeaderSize && u32Size - u32HeaderSize <= 0xFFFF)
197 {
198 pString = (PSHFLSTRING)pvBuffer;
199 pString->u16Size = u32Size - u32HeaderSize;
200 pString->u16Length = 0;
201 }
202
203 return pString;
204}
205
206/**
207 * Validates a HGCM string parameter.
208 *
209 * @returns true if valid, false if not.
210 *
211 * @param pString The string buffer pointer.
212 * @param cbBuf The buffer size from the parameter.
213 */
214DECLINLINE(bool) ShflStringIsValid(PCSHFLSTRING pString, uint32_t cbBuf)
215{
216 if (RT_UNLIKELY(cbBuf <= RT_UOFFSETOF(SHFLSTRING, String)))
217 return false;
218 if (RT_UNLIKELY((uint32_t)pString->u16Size + RT_UOFFSETOF(SHFLSTRING, String) > cbBuf))
219 return false;
220 if (RT_UNLIKELY(pString->u16Length >= pString->u16Size))
221 return false;
222 return true;
223}
224
225/**
226 * Validates an optional HGCM string parameter.
227 *
228 * @returns true if valid, false if not.
229 *
230 * @param pString The string buffer pointer. Can be NULL.
231 * @param cbBuf The buffer size from the parameter.
232 */
233DECLINLINE(bool) ShflStringIsValidOrNull(PCSHFLSTRING pString, uint32_t cbBuf)
234{
235 if (pString)
236 return ShflStringIsValid(pString, cbBuf);
237 if (RT_UNLIKELY(cbBuf > 0))
238 return false;
239 return true;
240}
241
242/** @} */
243
244
245/**
246 * The available additional information in a SHFLFSOBJATTR object.
247 */
248typedef enum SHFLFSOBJATTRADD
249{
250 /** No additional information is available / requested. */
251 SHFLFSOBJATTRADD_NOTHING = 1,
252 /** The additional unix attributes (SHFLFSOBJATTR::u::Unix) are
253 * available / requested. */
254 SHFLFSOBJATTRADD_UNIX,
255 /** The additional extended attribute size (SHFLFSOBJATTR::u::EASize) is
256 * available / requested. */
257 SHFLFSOBJATTRADD_EASIZE,
258 /** The last valid item (inclusive).
259 * The valid range is SHFLFSOBJATTRADD_NOTHING thru
260 * SHFLFSOBJATTRADD_LAST. */
261 SHFLFSOBJATTRADD_LAST = SHFLFSOBJATTRADD_EASIZE,
262
263 /** The usual 32-bit hack. */
264 SHFLFSOBJATTRADD_32BIT_SIZE_HACK = 0x7fffffff
265} SHFLFSOBJATTRADD;
266
267
268/* Assert sizes of the IRPT types we're using below. */
269AssertCompileSize(RTFMODE, 4);
270AssertCompileSize(RTFOFF, 8);
271AssertCompileSize(RTINODE, 8);
272AssertCompileSize(RTTIMESPEC, 8);
273AssertCompileSize(RTDEV, 4);
274AssertCompileSize(RTUID, 4);
275
276/**
277 * Shared folder filesystem object attributes.
278 */
279#pragma pack(1)
280typedef struct SHFLFSOBJATTR
281{
282 /** Mode flags (st_mode). RTFS_UNIX_*, RTFS_TYPE_*, and RTFS_DOS_*.
283 * @remarks We depend on a number of RTFS_ defines to remain unchanged.
284 * Fortuntately, these are depending on windows, dos and unix
285 * standard values, so this shouldn't be much of a pain. */
286 RTFMODE fMode;
287
288 /** The additional attributes available. */
289 SHFLFSOBJATTRADD enmAdditional;
290
291 /**
292 * Additional attributes.
293 *
294 * Unless explicitly specified to an API, the API can provide additional
295 * data as it is provided by the underlying OS.
296 */
297 union SHFLFSOBJATTRUNION
298 {
299 /** Additional Unix Attributes
300 * These are available when SHFLFSOBJATTRADD is set in fUnix.
301 */
302 struct SHFLFSOBJATTRUNIX
303 {
304 /** The user owning the filesystem object (st_uid).
305 * This field is ~0U if not supported. */
306 RTUID uid;
307
308 /** The group the filesystem object is assigned (st_gid).
309 * This field is ~0U if not supported. */
310 RTGID gid;
311
312 /** Number of hard links to this filesystem object (st_nlink).
313 * This field is 1 if the filesystem doesn't support hardlinking or
314 * the information isn't available.
315 */
316 uint32_t cHardlinks;
317
318 /** The device number of the device which this filesystem object resides on (st_dev).
319 * This field is 0 if this information is not available. */
320 RTDEV INodeIdDevice;
321
322 /** The unique identifier (within the filesystem) of this filesystem object (st_ino).
323 * Together with INodeIdDevice, this field can be used as a OS wide unique id
324 * when both their values are not 0.
325 * This field is 0 if the information is not available. */
326 RTINODE INodeId;
327
328 /** User flags (st_flags).
329 * This field is 0 if this information is not available. */
330 uint32_t fFlags;
331
332 /** The current generation number (st_gen).
333 * This field is 0 if this information is not available. */
334 uint32_t GenerationId;
335
336 /** The device number of a character or block device type object (st_rdev).
337 * This field is 0 if the file isn't of a character or block device type and
338 * when the OS doesn't subscribe to the major+minor device idenfication scheme. */
339 RTDEV Device;
340 } Unix;
341
342 /**
343 * Extended attribute size.
344 */
345 struct SHFLFSOBJATTREASIZE
346 {
347 /** Size of EAs. */
348 RTFOFF cb;
349 } EASize;
350 } u;
351} SHFLFSOBJATTR;
352#pragma pack()
353AssertCompileSize(SHFLFSOBJATTR, 44);
354/** Pointer to a shared folder filesystem object attributes structure. */
355typedef SHFLFSOBJATTR *PSHFLFSOBJATTR;
356/** Pointer to a const shared folder filesystem object attributes structure. */
357typedef const SHFLFSOBJATTR *PCSHFLFSOBJATTR;
358
359
360/**
361 * Filesystem object information structure.
362 */
363#pragma pack(1)
364typedef struct SHFLFSOBJINFO
365{
366 /** Logical size (st_size).
367 * For normal files this is the size of the file.
368 * For symbolic links, this is the length of the path name contained
369 * in the symbolic link.
370 * For other objects this fields needs to be specified.
371 */
372 RTFOFF cbObject;
373
374 /** Disk allocation size (st_blocks * DEV_BSIZE). */
375 RTFOFF cbAllocated;
376
377 /** Time of last access (st_atime).
378 * @remarks Here (and other places) we depend on the IPRT timespec to
379 * remain unchanged. */
380 RTTIMESPEC AccessTime;
381
382 /** Time of last data modification (st_mtime). */
383 RTTIMESPEC ModificationTime;
384
385 /** Time of last status change (st_ctime).
386 * If not available this is set to ModificationTime.
387 */
388 RTTIMESPEC ChangeTime;
389
390 /** Time of file birth (st_birthtime).
391 * If not available this is set to ChangeTime.
392 */
393 RTTIMESPEC BirthTime;
394
395 /** Attributes. */
396 SHFLFSOBJATTR Attr;
397
398} SHFLFSOBJINFO;
399#pragma pack()
400AssertCompileSize(SHFLFSOBJINFO, 92);
401/** Pointer to a shared folder filesystem object information structure. */
402typedef SHFLFSOBJINFO *PSHFLFSOBJINFO;
403/** Pointer to a const shared folder filesystem object information
404 * structure. */
405typedef const SHFLFSOBJINFO *PCSHFLFSOBJINFO;
406
407
408/**
409 * Copy file system objinfo from IPRT to shared folder format.
410 *
411 * @param pDst The shared folder structure.
412 * @param pSrc The IPRT structure.
413 */
414DECLINLINE(void) vbfsCopyFsObjInfoFromIprt(PSHFLFSOBJINFO pDst, PCRTFSOBJINFO pSrc)
415{
416 pDst->cbObject = pSrc->cbObject;
417 pDst->cbAllocated = pSrc->cbAllocated;
418 pDst->AccessTime = pSrc->AccessTime;
419 pDst->ModificationTime = pSrc->ModificationTime;
420 pDst->ChangeTime = pSrc->ChangeTime;
421 pDst->BirthTime = pSrc->BirthTime;
422 pDst->Attr.fMode = pSrc->Attr.fMode;
423 RT_ZERO(pDst->Attr.u);
424 switch (pSrc->Attr.enmAdditional)
425 {
426 default:
427 case RTFSOBJATTRADD_NOTHING:
428 pDst->Attr.enmAdditional = SHFLFSOBJATTRADD_NOTHING;
429 break;
430
431 case RTFSOBJATTRADD_UNIX:
432 pDst->Attr.enmAdditional = SHFLFSOBJATTRADD_UNIX;
433 pDst->Attr.u.Unix.uid = pSrc->Attr.u.Unix.uid;
434 pDst->Attr.u.Unix.gid = pSrc->Attr.u.Unix.gid;
435 pDst->Attr.u.Unix.cHardlinks = pSrc->Attr.u.Unix.cHardlinks;
436 pDst->Attr.u.Unix.INodeIdDevice = pSrc->Attr.u.Unix.INodeIdDevice;
437 pDst->Attr.u.Unix.INodeId = pSrc->Attr.u.Unix.INodeId;
438 pDst->Attr.u.Unix.fFlags = pSrc->Attr.u.Unix.fFlags;
439 pDst->Attr.u.Unix.GenerationId = pSrc->Attr.u.Unix.GenerationId;
440 pDst->Attr.u.Unix.Device = pSrc->Attr.u.Unix.Device;
441 break;
442
443 case RTFSOBJATTRADD_EASIZE:
444 pDst->Attr.enmAdditional = SHFLFSOBJATTRADD_EASIZE;
445 pDst->Attr.u.EASize.cb = pSrc->Attr.u.EASize.cb;
446 break;
447 }
448}
449
450
451/** Result of an open/create request.
452 * Along with handle value the result code
453 * identifies what has happened while
454 * trying to open the object.
455 */
456typedef enum _SHFLCREATERESULT
457{
458 SHFL_NO_RESULT,
459 /** Specified path does not exist. */
460 SHFL_PATH_NOT_FOUND,
461 /** Path to file exists, but the last component does not. */
462 SHFL_FILE_NOT_FOUND,
463 /** File already exists and either has been opened or not. */
464 SHFL_FILE_EXISTS,
465 /** New file was created. */
466 SHFL_FILE_CREATED,
467 /** Existing file was replaced or overwritten. */
468 SHFL_FILE_REPLACED
469} SHFLCREATERESULT;
470
471
472/** Open/create flags.
473 * @{
474 */
475
476/** No flags. Initialization value. */
477#define SHFL_CF_NONE (0x00000000)
478
479/** Lookup only the object, do not return a handle. All other flags are ignored. */
480#define SHFL_CF_LOOKUP (0x00000001)
481
482/** Open parent directory of specified object.
483 * Useful for the corresponding Windows FSD flag
484 * and for opening paths like \\dir\\*.* to search the 'dir'.
485 * @todo possibly not needed???
486 */
487#define SHFL_CF_OPEN_TARGET_DIRECTORY (0x00000002)
488
489/** Create/open a directory. */
490#define SHFL_CF_DIRECTORY (0x00000004)
491
492/** Open/create action to do if object exists
493 * and if the object does not exists.
494 * REPLACE file means atomically DELETE and CREATE.
495 * OVERWRITE file means truncating the file to 0 and
496 * setting new size.
497 * When opening an existing directory REPLACE and OVERWRITE
498 * actions are considered invalid, and cause returning
499 * FILE_EXISTS with NIL handle.
500 */
501#define SHFL_CF_ACT_MASK_IF_EXISTS (0x000000F0)
502#define SHFL_CF_ACT_MASK_IF_NEW (0x00000F00)
503
504/** What to do if object exists. */
505#define SHFL_CF_ACT_OPEN_IF_EXISTS (0x00000000)
506#define SHFL_CF_ACT_FAIL_IF_EXISTS (0x00000010)
507#define SHFL_CF_ACT_REPLACE_IF_EXISTS (0x00000020)
508#define SHFL_CF_ACT_OVERWRITE_IF_EXISTS (0x00000030)
509
510/** What to do if object does not exist. */
511#define SHFL_CF_ACT_CREATE_IF_NEW (0x00000000)
512#define SHFL_CF_ACT_FAIL_IF_NEW (0x00000100)
513
514/** Read/write requested access for the object. */
515#define SHFL_CF_ACCESS_MASK_RW (0x00003000)
516
517/** No access requested. */
518#define SHFL_CF_ACCESS_NONE (0x00000000)
519/** Read access requested. */
520#define SHFL_CF_ACCESS_READ (0x00001000)
521/** Write access requested. */
522#define SHFL_CF_ACCESS_WRITE (0x00002000)
523/** Read/Write access requested. */
524#define SHFL_CF_ACCESS_READWRITE (SHFL_CF_ACCESS_READ | SHFL_CF_ACCESS_WRITE)
525
526/** Requested share access for the object. */
527#define SHFL_CF_ACCESS_MASK_DENY (0x0000C000)
528
529/** Allow any access. */
530#define SHFL_CF_ACCESS_DENYNONE (0x00000000)
531/** Do not allow read. */
532#define SHFL_CF_ACCESS_DENYREAD (0x00004000)
533/** Do not allow write. */
534#define SHFL_CF_ACCESS_DENYWRITE (0x00008000)
535/** Do not allow access. */
536#define SHFL_CF_ACCESS_DENYALL (SHFL_CF_ACCESS_DENYREAD | SHFL_CF_ACCESS_DENYWRITE)
537
538/** Requested access to attributes of the object. */
539#define SHFL_CF_ACCESS_MASK_ATTR (0x00030000)
540
541/** No access requested. */
542#define SHFL_CF_ACCESS_ATTR_NONE (0x00000000)
543/** Read access requested. */
544#define SHFL_CF_ACCESS_ATTR_READ (0x00010000)
545/** Write access requested. */
546#define SHFL_CF_ACCESS_ATTR_WRITE (0x00020000)
547/** Read/Write access requested. */
548#define SHFL_CF_ACCESS_ATTR_READWRITE (SHFL_CF_ACCESS_READ | SHFL_CF_ACCESS_WRITE)
549
550/** The file is opened in append mode. Ignored if SHFL_CF_ACCESS_WRITE is not set. */
551#define SHFL_CF_ACCESS_APPEND (0x00040000)
552
553/** @} */
554
555#pragma pack(1)
556typedef struct _SHFLCREATEPARMS
557{
558 /* Returned handle of opened object. */
559 SHFLHANDLE Handle;
560
561 /* Returned result of the operation */
562 SHFLCREATERESULT Result;
563
564 /* SHFL_CF_* */
565 uint32_t CreateFlags;
566
567 /* Attributes of object to create and
568 * returned actual attributes of opened/created object.
569 */
570 SHFLFSOBJINFO Info;
571
572} SHFLCREATEPARMS;
573#pragma pack()
574
575typedef SHFLCREATEPARMS *PSHFLCREATEPARMS;
576
577
578/** Shared Folders mappings.
579 * @{
580 */
581
582/** The mapping has been added since last query. */
583#define SHFL_MS_NEW (1)
584/** The mapping has been deleted since last query. */
585#define SHFL_MS_DELETED (2)
586
587typedef struct _SHFLMAPPING
588{
589 /** Mapping status. */
590 uint32_t u32Status;
591 /** Root handle. */
592 SHFLROOT root;
593} SHFLMAPPING;
594/** Pointer to a SHFLMAPPING structure. */
595typedef SHFLMAPPING *PSHFLMAPPING;
596
597/** @} */
598
599/** Shared Folder directory information
600 * @{
601 */
602
603typedef struct _SHFLDIRINFO
604{
605 /** Full information about the object. */
606 SHFLFSOBJINFO Info;
607 /** The length of the short field (number of RTUTF16 chars).
608 * It is 16-bit for reasons of alignment. */
609 uint16_t cucShortName;
610 /** The short name for 8.3 compatibility.
611 * Empty string if not available.
612 */
613 RTUTF16 uszShortName[14];
614 /** @todo malc, a description, please. */
615 SHFLSTRING name;
616} SHFLDIRINFO, *PSHFLDIRINFO;
617
618
619/**
620 * Shared folder filesystem properties.
621 */
622typedef struct SHFLFSPROPERTIES
623{
624 /** The maximum size of a filesystem object name.
625 * This does not include the '\\0'. */
626 uint32_t cbMaxComponent;
627
628 /** True if the filesystem is remote.
629 * False if the filesystem is local. */
630 bool fRemote;
631
632 /** True if the filesystem is case sensitive.
633 * False if the filesystem is case insensitive. */
634 bool fCaseSensitive;
635
636 /** True if the filesystem is mounted read only.
637 * False if the filesystem is mounted read write. */
638 bool fReadOnly;
639
640 /** True if the filesystem can encode unicode object names.
641 * False if it can't. */
642 bool fSupportsUnicode;
643
644 /** True if the filesystem is compresses.
645 * False if it isn't or we don't know. */
646 bool fCompressed;
647
648 /** True if the filesystem compresses of individual files.
649 * False if it doesn't or we don't know. */
650 bool fFileCompression;
651
652 /** @todo more? */
653} SHFLFSPROPERTIES;
654AssertCompileSize(SHFLFSPROPERTIES, 12);
655/** Pointer to a shared folder filesystem properties structure. */
656typedef SHFLFSPROPERTIES *PSHFLFSPROPERTIES;
657/** Pointer to a const shared folder filesystem properties structure. */
658typedef SHFLFSPROPERTIES const *PCSHFLFSPROPERTIES;
659
660
661/**
662 * Copy file system properties from IPRT to shared folder format.
663 *
664 * @param pDst The shared folder structure.
665 * @param pSrc The IPRT structure.
666 */
667DECLINLINE(void) vbfsCopyFsPropertiesFromIprt(PSHFLFSPROPERTIES pDst, PCRTFSPROPERTIES pSrc)
668{
669 RT_ZERO(*pDst); /* zap the implicit padding. */
670 pDst->cbMaxComponent = pSrc->cbMaxComponent;
671 pDst->fRemote = pSrc->fRemote;
672 pDst->fCaseSensitive = pSrc->fCaseSensitive;
673 pDst->fReadOnly = pSrc->fReadOnly;
674 pDst->fSupportsUnicode = pSrc->fSupportsUnicode;
675 pDst->fCompressed = pSrc->fCompressed;
676 pDst->fFileCompression = pSrc->fFileCompression;
677}
678
679
680typedef struct _SHFLVOLINFO
681{
682 RTFOFF ullTotalAllocationBytes;
683 RTFOFF ullAvailableAllocationBytes;
684 uint32_t ulBytesPerAllocationUnit;
685 uint32_t ulBytesPerSector;
686 uint32_t ulSerial;
687 SHFLFSPROPERTIES fsProperties;
688} SHFLVOLINFO, *PSHFLVOLINFO;
689
690/** @} */
691
692/** Function parameter structures.
693 * @{
694 */
695
696/**
697 * SHFL_FN_QUERY_MAPPINGS
698 */
699/** Validation mask. Needs to be adjusted
700 * whenever a new SHFL_MF_ flag is added. */
701#define SHFL_MF_MASK (0x00000011)
702/** UC2 enconded strings. */
703#define SHFL_MF_UCS2 (0x00000000)
704/** Guest uses UTF8 strings, if not set then the strings are unicode (UCS2). */
705#define SHFL_MF_UTF8 (0x00000001)
706/** Just handle the auto-mounted folders. */
707#define SHFL_MF_AUTOMOUNT (0x00000010)
708
709/** Type of guest system. For future system dependent features. */
710#define SHFL_MF_SYSTEM_MASK (0x0000FF00)
711#define SHFL_MF_SYSTEM_NONE (0x00000000)
712#define SHFL_MF_SYSTEM_WINDOWS (0x00000100)
713#define SHFL_MF_SYSTEM_LINUX (0x00000200)
714
715/** Parameters structure. */
716typedef struct _VBoxSFQueryMappings
717{
718 VBoxGuestHGCMCallInfo callInfo;
719
720 /** 32bit, in:
721 * Flags describing various client needs.
722 */
723 HGCMFunctionParameter flags;
724
725 /** 32bit, in/out:
726 * Number of mappings the client expects.
727 * This is the number of elements in the
728 * mappings array.
729 */
730 HGCMFunctionParameter numberOfMappings;
731
732 /** pointer, in/out:
733 * Points to array of SHFLMAPPING structures.
734 */
735 HGCMFunctionParameter mappings;
736
737} VBoxSFQueryMappings;
738
739/** Number of parameters */
740#define SHFL_CPARMS_QUERY_MAPPINGS (3)
741
742
743
744/**
745 * SHFL_FN_QUERY_MAP_NAME
746 */
747
748/** Parameters structure. */
749typedef struct _VBoxSFQueryMapName
750{
751 VBoxGuestHGCMCallInfo callInfo;
752
753 /** 32bit, in: SHFLROOT
754 * Root handle of the mapping which name is queried.
755 */
756 HGCMFunctionParameter root;
757
758 /** pointer, in/out:
759 * Points to SHFLSTRING buffer.
760 */
761 HGCMFunctionParameter name;
762
763} VBoxSFQueryMapName;
764
765/** Number of parameters */
766#define SHFL_CPARMS_QUERY_MAP_NAME (2)
767
768/**
769 * SHFL_FN_MAP_FOLDER_OLD
770 */
771
772/** Parameters structure. */
773typedef struct _VBoxSFMapFolder_Old
774{
775 VBoxGuestHGCMCallInfo callInfo;
776
777 /** pointer, in:
778 * Points to SHFLSTRING buffer.
779 */
780 HGCMFunctionParameter path;
781
782 /** pointer, out: SHFLROOT
783 * Root handle of the mapping which name is queried.
784 */
785 HGCMFunctionParameter root;
786
787 /** pointer, in: RTUTF16
788 * Path delimiter
789 */
790 HGCMFunctionParameter delimiter;
791
792} VBoxSFMapFolder_Old;
793
794/** Number of parameters */
795#define SHFL_CPARMS_MAP_FOLDER_OLD (3)
796
797/**
798 * SHFL_FN_MAP_FOLDER
799 */
800
801/** Parameters structure. */
802typedef struct _VBoxSFMapFolder
803{
804 VBoxGuestHGCMCallInfo callInfo;
805
806 /** pointer, in:
807 * Points to SHFLSTRING buffer.
808 */
809 HGCMFunctionParameter path;
810
811 /** pointer, out: SHFLROOT
812 * Root handle of the mapping which name is queried.
813 */
814 HGCMFunctionParameter root;
815
816 /** pointer, in: RTUTF16
817 * Path delimiter
818 */
819 HGCMFunctionParameter delimiter;
820
821 /** pointer, in: SHFLROOT
822 * Case senstive flag
823 */
824 HGCMFunctionParameter fCaseSensitive;
825
826} VBoxSFMapFolder;
827
828/** Number of parameters */
829#define SHFL_CPARMS_MAP_FOLDER (4)
830
831/**
832 * SHFL_FN_UNMAP_FOLDER
833 */
834
835/** Parameters structure. */
836typedef struct _VBoxSFUnmapFolder
837{
838 VBoxGuestHGCMCallInfo callInfo;
839
840 /** pointer, in: SHFLROOT
841 * Root handle of the mapping which name is queried.
842 */
843 HGCMFunctionParameter root;
844
845} VBoxSFUnmapFolder;
846
847/** Number of parameters */
848#define SHFL_CPARMS_UNMAP_FOLDER (1)
849
850
851/**
852 * SHFL_FN_CREATE
853 */
854
855/** Parameters structure. */
856typedef struct _VBoxSFCreate
857{
858 VBoxGuestHGCMCallInfo callInfo;
859
860 /** pointer, in: SHFLROOT
861 * Root handle of the mapping which name is queried.
862 */
863 HGCMFunctionParameter root;
864
865 /** pointer, in:
866 * Points to SHFLSTRING buffer.
867 */
868 HGCMFunctionParameter path;
869
870 /** pointer, in/out:
871 * Points to SHFLCREATEPARMS buffer.
872 */
873 HGCMFunctionParameter parms;
874
875} VBoxSFCreate;
876
877/** Number of parameters */
878#define SHFL_CPARMS_CREATE (3)
879
880
881/**
882 * SHFL_FN_CLOSE
883 */
884
885/** Parameters structure. */
886typedef struct _VBoxSFClose
887{
888 VBoxGuestHGCMCallInfo callInfo;
889
890 /** pointer, in: SHFLROOT
891 * Root handle of the mapping which name is queried.
892 */
893 HGCMFunctionParameter root;
894
895
896 /** value64, in:
897 * SHFLHANDLE of object to close.
898 */
899 HGCMFunctionParameter handle;
900
901} VBoxSFClose;
902
903/** Number of parameters */
904#define SHFL_CPARMS_CLOSE (2)
905
906
907/**
908 * SHFL_FN_READ
909 */
910
911/** Parameters structure. */
912typedef struct _VBoxSFRead
913{
914 VBoxGuestHGCMCallInfo callInfo;
915
916 /** pointer, in: SHFLROOT
917 * Root handle of the mapping which name is queried.
918 */
919 HGCMFunctionParameter root;
920
921 /** value64, in:
922 * SHFLHANDLE of object to read from.
923 */
924 HGCMFunctionParameter handle;
925
926 /** value64, in:
927 * Offset to read from.
928 */
929 HGCMFunctionParameter offset;
930
931 /** value64, in/out:
932 * Bytes to read/How many were read.
933 */
934 HGCMFunctionParameter cb;
935
936 /** pointer, out:
937 * Buffer to place data to.
938 */
939 HGCMFunctionParameter buffer;
940
941} VBoxSFRead;
942
943/** Number of parameters */
944#define SHFL_CPARMS_READ (5)
945
946
947
948/**
949 * SHFL_FN_WRITE
950 */
951
952/** Parameters structure. */
953typedef struct _VBoxSFWrite
954{
955 VBoxGuestHGCMCallInfo callInfo;
956
957 /** pointer, in: SHFLROOT
958 * Root handle of the mapping which name is queried.
959 */
960 HGCMFunctionParameter root;
961
962 /** value64, in:
963 * SHFLHANDLE of object to write to.
964 */
965 HGCMFunctionParameter handle;
966
967 /** value64, in:
968 * Offset to write to.
969 */
970 HGCMFunctionParameter offset;
971
972 /** value64, in/out:
973 * Bytes to write/How many were written.
974 */
975 HGCMFunctionParameter cb;
976
977 /** pointer, in:
978 * Data to write.
979 */
980 HGCMFunctionParameter buffer;
981
982} VBoxSFWrite;
983
984/** Number of parameters */
985#define SHFL_CPARMS_WRITE (5)
986
987
988
989/**
990 * SHFL_FN_LOCK
991 */
992
993/** Lock owner is the HGCM client. */
994
995/** Lock mode bit mask. */
996#define SHFL_LOCK_MODE_MASK (0x3)
997/** Cancel lock on the given range. */
998#define SHFL_LOCK_CANCEL (0x0)
999/** Acquire read only lock. Prevent write to the range. */
1000#define SHFL_LOCK_SHARED (0x1)
1001/** Acquire write lock. Prevent both write and read to the range. */
1002#define SHFL_LOCK_EXCLUSIVE (0x2)
1003
1004/** Do not wait for lock if it can not be acquired at the time. */
1005#define SHFL_LOCK_NOWAIT (0x0)
1006/** Wait and acquire lock. */
1007#define SHFL_LOCK_WAIT (0x4)
1008
1009/** Lock the specified range. */
1010#define SHFL_LOCK_PARTIAL (0x0)
1011/** Lock entire object. */
1012#define SHFL_LOCK_ENTIRE (0x8)
1013
1014/** Parameters structure. */
1015typedef struct _VBoxSFLock
1016{
1017 VBoxGuestHGCMCallInfo callInfo;
1018
1019 /** pointer, in: SHFLROOT
1020 * Root handle of the mapping which name is queried.
1021 */
1022 HGCMFunctionParameter root;
1023
1024 /** value64, in:
1025 * SHFLHANDLE of object to be locked.
1026 */
1027 HGCMFunctionParameter handle;
1028
1029 /** value64, in:
1030 * Starting offset of lock range.
1031 */
1032 HGCMFunctionParameter offset;
1033
1034 /** value64, in:
1035 * Length of range.
1036 */
1037 HGCMFunctionParameter length;
1038
1039 /** value32, in:
1040 * Lock flags SHFL_LOCK_*.
1041 */
1042 HGCMFunctionParameter flags;
1043
1044} VBoxSFLock;
1045
1046/** Number of parameters */
1047#define SHFL_CPARMS_LOCK (5)
1048
1049
1050
1051/**
1052 * SHFL_FN_FLUSH
1053 */
1054
1055/** Parameters structure. */
1056typedef struct _VBoxSFFlush
1057{
1058 VBoxGuestHGCMCallInfo callInfo;
1059
1060 /** pointer, in: SHFLROOT
1061 * Root handle of the mapping which name is queried.
1062 */
1063 HGCMFunctionParameter root;
1064
1065 /** value64, in:
1066 * SHFLHANDLE of object to be locked.
1067 */
1068 HGCMFunctionParameter handle;
1069
1070} VBoxSFFlush;
1071
1072/** Number of parameters */
1073#define SHFL_CPARMS_FLUSH (2)
1074
1075/**
1076 * SHFL_FN_LIST
1077 */
1078
1079/** Listing information includes variable length RTDIRENTRY[EX] structures. */
1080
1081/** @todo might be necessary for future. */
1082#define SHFL_LIST_NONE 0
1083#define SHFL_LIST_RETURN_ONE 1
1084
1085/** Parameters structure. */
1086typedef struct _VBoxSFList
1087{
1088 VBoxGuestHGCMCallInfo callInfo;
1089
1090 /** pointer, in: SHFLROOT
1091 * Root handle of the mapping which name is queried.
1092 */
1093 HGCMFunctionParameter root;
1094
1095 /** value64, in:
1096 * SHFLHANDLE of object to be listed.
1097 */
1098 HGCMFunctionParameter handle;
1099
1100 /** value32, in:
1101 * List flags SHFL_LIST_*.
1102 */
1103 HGCMFunctionParameter flags;
1104
1105 /** value32, in/out:
1106 * Bytes to be used for listing information/How many bytes were used.
1107 */
1108 HGCMFunctionParameter cb;
1109
1110 /** pointer, in/optional
1111 * Points to SHFLSTRING buffer that specifies a search path.
1112 */
1113 HGCMFunctionParameter path;
1114
1115 /** pointer, out:
1116 * Buffer to place listing information to. (SHFLDIRINFO)
1117 */
1118 HGCMFunctionParameter buffer;
1119
1120 /** value32, in/out:
1121 * Indicates a key where the listing must be resumed.
1122 * in: 0 means start from begin of object.
1123 * out: 0 means listing completed.
1124 */
1125 HGCMFunctionParameter resumePoint;
1126
1127 /** pointer, out:
1128 * Number of files returned
1129 */
1130 HGCMFunctionParameter cFiles;
1131
1132} VBoxSFList;
1133
1134/** Number of parameters */
1135#define SHFL_CPARMS_LIST (8)
1136
1137
1138
1139/**
1140 * SHFL_FN_READLINK
1141 */
1142
1143/** Parameters structure. */
1144typedef struct _VBoxSFReadLink
1145{
1146 VBoxGuestHGCMCallInfo callInfo;
1147
1148 /** pointer, in: SHFLROOT
1149 * Root handle of the mapping which name is queried.
1150 */
1151 HGCMFunctionParameter root;
1152
1153 /** pointer, in:
1154 * Points to SHFLSTRING buffer.
1155 */
1156 HGCMFunctionParameter path;
1157
1158 /** pointer, out:
1159 * Buffer to place data to.
1160 */
1161 HGCMFunctionParameter buffer;
1162
1163} VBoxSFReadLink;
1164
1165/** Number of parameters */
1166#define SHFL_CPARMS_READLINK (3)
1167
1168
1169
1170/**
1171 * SHFL_FN_INFORMATION
1172 */
1173
1174/** Mask of Set/Get bit. */
1175#define SHFL_INFO_MODE_MASK (0x1)
1176/** Get information */
1177#define SHFL_INFO_GET (0x0)
1178/** Set information */
1179#define SHFL_INFO_SET (0x1)
1180
1181/** Get name of the object. */
1182#define SHFL_INFO_NAME (0x2)
1183/** Set size of object (extend/trucate); only applies to file objects */
1184#define SHFL_INFO_SIZE (0x4)
1185/** Get/Set file object info. */
1186#define SHFL_INFO_FILE (0x8)
1187/** Get volume information. */
1188#define SHFL_INFO_VOLUME (0x10)
1189
1190/** @todo different file info structures */
1191
1192
1193/** Parameters structure. */
1194typedef struct _VBoxSFInformation
1195{
1196 VBoxGuestHGCMCallInfo callInfo;
1197
1198 /** pointer, in: SHFLROOT
1199 * Root handle of the mapping which name is queried.
1200 */
1201 HGCMFunctionParameter root;
1202
1203 /** value64, in:
1204 * SHFLHANDLE of object to be listed.
1205 */
1206 HGCMFunctionParameter handle;
1207
1208 /** value32, in:
1209 * SHFL_INFO_*
1210 */
1211 HGCMFunctionParameter flags;
1212
1213 /** value32, in/out:
1214 * Bytes to be used for information/How many bytes were used.
1215 */
1216 HGCMFunctionParameter cb;
1217
1218 /** pointer, in/out:
1219 * Information to be set/get (SHFLFSOBJINFO or SHFLSTRING). Do not forget
1220 * to set the SHFLFSOBJINFO::Attr::enmAdditional for Get operation as well.
1221 */
1222 HGCMFunctionParameter info;
1223
1224} VBoxSFInformation;
1225
1226/** Number of parameters */
1227#define SHFL_CPARMS_INFORMATION (5)
1228
1229
1230/**
1231 * SHFL_FN_REMOVE
1232 */
1233
1234#define SHFL_REMOVE_FILE (0x1)
1235#define SHFL_REMOVE_DIR (0x2)
1236#define SHFL_REMOVE_SYMLINK (0x4)
1237
1238/** Parameters structure. */
1239typedef struct _VBoxSFRemove
1240{
1241 VBoxGuestHGCMCallInfo callInfo;
1242
1243 /** pointer, in: SHFLROOT
1244 * Root handle of the mapping which name is queried.
1245 */
1246 HGCMFunctionParameter root;
1247
1248 /** pointer, in:
1249 * Points to SHFLSTRING buffer.
1250 */
1251 HGCMFunctionParameter path;
1252
1253 /** value32, in:
1254 * remove flags (file/directory)
1255 */
1256 HGCMFunctionParameter flags;
1257
1258} VBoxSFRemove;
1259
1260#define SHFL_CPARMS_REMOVE (3)
1261
1262
1263/**
1264 * SHFL_FN_RENAME
1265 */
1266
1267#define SHFL_RENAME_FILE (0x1)
1268#define SHFL_RENAME_DIR (0x2)
1269#define SHFL_RENAME_REPLACE_IF_EXISTS (0x4)
1270
1271/** Parameters structure. */
1272typedef struct _VBoxSFRename
1273{
1274 VBoxGuestHGCMCallInfo callInfo;
1275
1276 /** pointer, in: SHFLROOT
1277 * Root handle of the mapping which name is queried.
1278 */
1279 HGCMFunctionParameter root;
1280
1281 /** pointer, in:
1282 * Points to SHFLSTRING src.
1283 */
1284 HGCMFunctionParameter src;
1285
1286 /** pointer, in:
1287 * Points to SHFLSTRING dest.
1288 */
1289 HGCMFunctionParameter dest;
1290
1291 /** value32, in:
1292 * rename flags (file/directory)
1293 */
1294 HGCMFunctionParameter flags;
1295
1296} VBoxSFRename;
1297
1298#define SHFL_CPARMS_RENAME (4)
1299
1300
1301/**
1302 * SHFL_FN_SYMLINK
1303 */
1304
1305/** Parameters structure. */
1306typedef struct _VBoxSFSymlink
1307{
1308 VBoxGuestHGCMCallInfo callInfo;
1309
1310 /** pointer, in: SHFLROOT
1311 * Root handle of the mapping which name is queried.
1312 */
1313 HGCMFunctionParameter root;
1314
1315 /** pointer, in:
1316 * Points to SHFLSTRING of path for the new symlink.
1317 */
1318 HGCMFunctionParameter newPath;
1319
1320 /** pointer, in:
1321 * Points to SHFLSTRING of destination for symlink.
1322 */
1323 HGCMFunctionParameter oldPath;
1324
1325 /** pointer, out:
1326 * Information about created symlink.
1327 */
1328 HGCMFunctionParameter info;
1329
1330} VBoxSFSymlink;
1331
1332#define SHFL_CPARMS_SYMLINK (4)
1333
1334
1335
1336/**
1337 * SHFL_FN_ADD_MAPPING
1338 * Host call, no guest structure is used.
1339 */
1340
1341#define SHFL_ADD_MAPPING_F_WRITABLE (RT_BIT_32(0))
1342#define SHFL_ADD_MAPPING_F_AUTOMOUNT (RT_BIT_32(1))
1343#define SHFL_ADD_MAPPING_F_CREATE_SYMLINKS (RT_BIT_32(2))
1344
1345#define SHFL_CPARMS_ADD_MAPPING (3)
1346
1347/**
1348 * SHFL_FN_REMOVE_MAPPING
1349 * Host call, no guest structure is used.
1350 */
1351
1352#define SHFL_CPARMS_REMOVE_MAPPING (1)
1353
1354
1355/**
1356 * SHFL_FN_SET_STATUS_LED
1357 * Host call, no guest structure is used.
1358 */
1359
1360#define SHFL_CPARMS_SET_STATUS_LED (1)
1361
1362/** @} */
1363
1364#endif
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