VirtualBox

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

Last change on this file since 69107 was 69107, checked in by vboxsync, 7 years ago

include/VBox/: (C) year

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

© 2023 Oracle
ContactPrivacy policyTerms of Use