VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedFolders/shflsvc.h@ 3729

Last change on this file since 3729 was 3338, checked in by vboxsync, 18 years ago

Export HostServices

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 21.1 KB
Line 
1/** @file
2 *
3 * Shared Folders:
4 * Common header for host service and guest clients.
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 as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * If you received this file as part of a commercial VirtualBox
19 * distribution, then only the terms of your commercial VirtualBox
20 * license agreement apply instead of the previous paragraph.
21 */
22
23#ifndef __SHFLSVC__H
24#define __SHFLSVC__H
25
26#include <VBox/types.h>
27#include <VBox/VBoxGuest.h>
28#include <iprt/fs.h>
29
30
31/** Some bit flag manipulation macros. to be moved to VBox/cdefs.h? */
32#ifndef BIT_FLAG
33#define BIT_FLAG(__Field,__Flag) ((__Field) & (__Flag))
34#endif
35
36#ifndef BIT_FLAG_SET
37#define BIT_FLAG_SET(__Field,__Flag) ((__Field) |= (__Flag))
38#endif
39
40#ifndef BIT_FLAG_CLEAR
41#define BIT_FLAG_CLEAR(__Field,__Flag) ((__Field) &= ~(__Flag))
42#endif
43
44
45/**
46 * Structures shared between guest and the service
47 * can be relocated and use offsets to point to variable
48 * length parts.
49 */
50
51/**
52 * Shared folders protocol works with handles.
53 * Before doing any action on a file system object,
54 * one have to obtain the object handle via a SHFL_FN_CREATE
55 * request. A handle must be closed with SHFL_FN_CLOSE.
56 */
57
58/** Shared Folders service functions. (guest)
59 * @{
60 */
61
62/** Query mappings changes. */
63#define SHFL_FN_QUERY_MAPPINGS (1)
64/** Query mappings changes. */
65#define SHFL_FN_QUERY_MAP_NAME (2)
66/** Open/create object. */
67#define SHFL_FN_CREATE (3)
68/** Close object handle. */
69#define SHFL_FN_CLOSE (4)
70/** Read object content. */
71#define SHFL_FN_READ (5)
72/** Write new object content. */
73#define SHFL_FN_WRITE (6)
74/** Lock/unlock a range in the object. */
75#define SHFL_FN_LOCK (7)
76/** List object content. */
77#define SHFL_FN_LIST (8)
78/** Query/set object information. */
79#define SHFL_FN_INFORMATION (9)
80/** Remove object */
81#define SHFL_FN_REMOVE (11)
82/** Map folder */
83#define SHFL_FN_MAP_FOLDER (12)
84/** Unmap folder */
85#define SHFL_FN_UNMAP_FOLDER (13)
86/** Rename object (possibly moving it to another directory) */
87#define SHFL_FN_RENAME (14)
88/** Flush file */
89#define SHFL_FN_FLUSH (15)
90
91/** @} */
92
93/** Shared Folders service functions. (host)
94 * @{
95 */
96
97/** Add shared folder mapping. */
98#define SHFL_FN_ADD_MAPPING (1)
99/** Remove shared folder mapping. */
100#define SHFL_FN_REMOVE_MAPPING (2)
101
102/** @} */
103
104/** Root handle for a mapping. Root handles are unique.
105 * @note
106 * Function parameters structures consider
107 * the root handle as 32 bit value. If the typedef
108 * will be changed, then function parameters must be
109 * changed accordingly. All those parameters are marked
110 * with SHFLROOT in comments.
111 */
112typedef uint32_t SHFLROOT;
113
114
115/** A shared folders handle for an opened object. */
116typedef uint64_t SHFLHANDLE;
117
118#define SHFL_HANDLE_NIL ((SHFLHANDLE)~0LL)
119#define SHFL_HANDLE_ROOT ((SHFLHANDLE)0LL)
120
121/** Hardcoded maximum number of shared folder mapping available to the guest. */
122#define SHFL_MAX_MAPPINGS (64)
123
124/** Shared Folders strings. They can be either UTF8 or Unicode.
125 * @{
126 */
127
128typedef struct _SHFLSTRING
129{
130 /** Size of string String buffer in bytes. */
131 uint16_t u16Size;
132
133 /** Length of string without trailing nul in bytes. */
134 uint16_t u16Length;
135
136 /** UTF8 or Unicode16 string. Nul terminated. */
137 union
138 {
139 uint8_t utf8[1];
140 uint16_t ucs2[1];
141 } String;
142} SHFLSTRING;
143
144typedef SHFLSTRING *PSHFLSTRING;
145
146/** Calculate size of the string. */
147DECLINLINE(uint32_t) ShflStringSizeOfBuffer (PSHFLSTRING pString)
148{
149 return pString? sizeof (SHFLSTRING) - sizeof (pString->String) + pString->u16Size: 0;
150}
151
152DECLINLINE(uint32_t) ShflStringLength (PSHFLSTRING pString)
153{
154 return pString? pString->u16Length: 0;
155}
156
157DECLINLINE(PSHFLSTRING) ShflStringInitBuffer(void *pvBuffer, uint32_t u32Size)
158{
159 PSHFLSTRING pString = NULL;
160
161 uint32_t u32HeaderSize = sizeof (SHFLSTRING) - sizeof (pString->String);
162
163 /* Check that the buffer size is big enough to hold a zero sized string
164 * and is not too big to fit into 16 bit variables.
165 */
166 if (u32Size >= u32HeaderSize && u32Size - u32HeaderSize <= 0xFFFF)
167 {
168 pString = (PSHFLSTRING)pvBuffer;
169 pString->u16Size = u32Size - u32HeaderSize;
170 pString->u16Length = 0;
171 }
172
173 return pString;
174}
175
176/** @} */
177
178
179/** Result of an open/create request.
180 * Along with handle value the result code
181 * identifies what has happened while
182 * trying to open the object.
183 */
184typedef enum _SHFLCREATERESULT
185{
186 SHFL_NO_RESULT,
187 /** Specified path does not exist. */
188 SHFL_PATH_NOT_FOUND,
189 /** Path to file exists, but the last component does not. */
190 SHFL_FILE_NOT_FOUND,
191 /** File already exists and either has been opened or not. */
192 SHFL_FILE_EXISTS,
193 /** New file was created. */
194 SHFL_FILE_CREATED,
195 /** Existing file was replaced or overwritten. */
196 SHFL_FILE_REPLACED
197} SHFLCREATERESULT;
198
199
200/** Open/create flags.
201 * @{
202 */
203
204/** No flags. Initialization value. */
205#define SHFL_CF_NONE (0x00000000)
206
207/** Lookup only the object, do not return a handle. All other flags are ignored. */
208#define SHFL_CF_LOOKUP (0x00000001)
209
210/** Open parent directory of specified object.
211 * Useful for the corresponding Windows FSD flag
212 * and for opening paths like \dir\*.* to search the 'dir'.
213 * @todo possibly not needed???
214 */
215#define SHFL_CF_OPEN_TARGET_DIRECTORY (0x00000002)
216
217/** Create/open a directory. */
218#define SHFL_CF_DIRECTORY (0x00000004)
219
220/** Open/create action to do if object exists
221 * and if the object does not exists.
222 * REPLACE file means atomically DELETE and CREATE.
223 * OVERWRITE file means truncating the file to 0 and
224 * setting new size.
225 * When opening an existing directory REPLACE and OVERWRITE
226 * actions are considered invalid, and cause returning
227 * FILE_EXISTS with NIL handle.
228 */
229#define SHFL_CF_ACT_MASK_IF_EXISTS (0x000000F0)
230#define SHFL_CF_ACT_MASK_IF_NEW (0x00000F00)
231
232/** What to do if object exists. */
233#define SHFL_CF_ACT_OPEN_IF_EXISTS (0x00000000)
234#define SHFL_CF_ACT_FAIL_IF_EXISTS (0x00000010)
235#define SHFL_CF_ACT_REPLACE_IF_EXISTS (0x00000020)
236#define SHFL_CF_ACT_OVERWRITE_IF_EXISTS (0x00000030)
237
238/** What to do if object does not exist. */
239#define SHFL_CF_ACT_CREATE_IF_NEW (0x00000000)
240#define SHFL_CF_ACT_FAIL_IF_NEW (0x00000100)
241
242/** Read/write requested access for the object. */
243#define SHFL_CF_ACCESS_MASK_RW (0x00003000)
244
245/** No access requested. */
246#define SHFL_CF_ACCESS_NONE (0x00000000)
247/** Read access requested. */
248#define SHFL_CF_ACCESS_READ (0x00001000)
249/** Write access requested. */
250#define SHFL_CF_ACCESS_WRITE (0x00002000)
251/** Read/Write access requested. */
252#define SHFL_CF_ACCESS_READWRITE (SHFL_CF_ACCESS_READ | SHFL_CF_ACCESS_WRITE)
253
254/** Requested share access for the object. */
255#define SHFL_CF_ACCESS_MASK_DENY (0x0000C000)
256
257/** Allow any access. */
258#define SHFL_CF_ACCESS_DENYNONE (0x00000000)
259/** Do not allow read. */
260#define SHFL_CF_ACCESS_DENYREAD (0x00004000)
261/** Do not allow write. */
262#define SHFL_CF_ACCESS_DENYWRITE (0x00008000)
263/** Do not allow access. */
264#define SHFL_CF_ACCESS_DENYALL (SHFL_CF_ACCESS_DENYREAD | SHFL_CF_ACCESS_DENYWRITE)
265
266
267/** @} */
268
269typedef struct _SHFLCREATEPARMS
270{
271 /* Returned handle of opened object. */
272 SHFLHANDLE Handle;
273
274 /* Returned result of the operation */
275 SHFLCREATERESULT Result;
276
277 /* SHFL_CF_* */
278 uint32_t CreateFlags;
279
280 /* Attributes of object to create and
281 * returned actual attributes of opened/created object.
282 */
283 RTFSOBJINFO Info;
284
285} SHFLCREATEPARMS;
286
287typedef SHFLCREATEPARMS *PSHFLCREATEPARMS;
288
289
290/** Shared Folders mappings.
291 * @{
292 */
293
294/** The mapping has been added since last query. */
295#define SHFL_MS_NEW (1)
296/** The mapping has been deleted since last query. */
297#define SHFL_MS_DELETED (2)
298
299typedef struct _SHFLMAPPING
300{
301 /** Mapping status. */
302 uint32_t u32Status;
303 /** Root handle. */
304 SHFLROOT root;
305} SHFLMAPPING;
306
307typedef SHFLMAPPING *PSHFLMAPPING;
308
309/** @} */
310
311/** Shared Folder directory information
312 * @{
313 */
314
315typedef struct _SHFLDIRINFO
316{
317 /** Full information about the object. */
318 RTFSOBJINFO Info;
319 /** The length of the short field (number of RTUCS2 chars).
320 * It is 16-bit for reasons of alignment. */
321 uint16_t cucShortName;
322 /** The short name for 8.3 compatability.
323 * Empty string if not available.
324 */
325 RTUCS2 uszShortName[14];
326 /** The length of the filename. */
327 uint16_t cbName;
328 /** The filename. (no path) */
329 RTUCS2 szName[1];
330} SHFLDIRINFO, *PSHFLDIRINFO;
331
332typedef struct _SHFLVOLINFO
333{
334 RTFOFF ullTotalAllocationBytes;
335 RTFOFF ullAvailableAllocationBytes;
336 uint32_t ulBytesPerAllocationUnit;
337 uint32_t ulBytesPerSector;
338 uint32_t ulSerial;
339 RTFSPROPERTIES fsProperties;
340} SHFLVOLINFO, *PSHFLVOLINFO;
341
342/** @} */
343
344/** Function parameter structures.
345 * @{
346 */
347
348/**
349 * SHFL_FN_QUERY_MAPPINGS
350 */
351
352#define SHFL_MF_UCS2 (0x00000000)
353/** Guest uses UTF8 strings, if not set then the strings are unicode (UCS2). */
354#define SHFL_MF_UTF8 (0x00000001)
355
356/** Type of guest system. For future system dependent features. */
357#define SHFL_MF_SYSTEM_MASK (0x0000FF00)
358#define SHFL_MF_SYSTEM_NONE (0x00000000)
359#define SHFL_MF_SYSTEM_WINDOWS (0x00000100)
360#define SHFL_MF_SYSTEM_LINUX (0x00000200)
361
362/** Parameters structure. */
363typedef struct _VBoxSFQueryMappings
364{
365 VBoxGuestHGCMCallInfo callInfo;
366
367 /** 32bit, in:
368 * Flags describing various client needs.
369 */
370 HGCMFunctionParameter flags;
371
372 /** 32bit, in/out:
373 * Number of mappings the client expects.
374 * This is the number of elements in the
375 * mappings array.
376 */
377 HGCMFunctionParameter numberOfMappings;
378
379 /** pointer, in/out:
380 * Points to array of SHFLMAPPING structures.
381 */
382 HGCMFunctionParameter mappings;
383
384} VBoxSFQueryMappings;
385
386/** Number of parameters */
387#define SHFL_CPARMS_QUERY_MAPPINGS (3)
388
389
390
391/**
392 * SHFL_FN_QUERY_MAP_NAME
393 */
394
395/** Name types. @{ */
396
397/** None of names queried. Just check the root. */
398#define SHFL_NAME_NONE (0)
399/** Where the guest should represent host files. */
400#define SHFL_NAME_GUEST (1)
401/** Name or host resource. */
402#define SHFL_NAME_HOST (2)
403
404/** @} */
405
406/** Parameters structure. */
407typedef struct _VBoxSFQueryMapName
408{
409 VBoxGuestHGCMCallInfo callInfo;
410
411 /** 32bit, in: SHFLROOT
412 * Root handle of the mapping which name is queried.
413 */
414 HGCMFunctionParameter root;
415
416 /** 32bit, in:
417 * Type of name to query (SHFL_NAME_*).
418 */
419 HGCMFunctionParameter type;
420
421 /** pointer, in/out:
422 * Points to SHFLSTRING buffer.
423 */
424 HGCMFunctionParameter name;
425
426} VBoxSFQueryMapName;
427
428/** Number of parameters */
429#define SHFL_CPARMS_QUERY_MAP_NAME (3)
430
431/**
432 * SHFL_FN_MAP_FOLDER
433 */
434
435/** Parameters structure. */
436typedef struct _VBoxSFMapFolder
437{
438 VBoxGuestHGCMCallInfo callInfo;
439
440 /** pointer, in:
441 * Points to SHFLSTRING buffer.
442 */
443 HGCMFunctionParameter path;
444
445 /** pointer, out: SHFLROOT
446 * Root handle of the mapping which name is queried.
447 */
448 HGCMFunctionParameter root;
449
450 /** pointer, in: RTUCS2
451 * Path delimiter
452 */
453 HGCMFunctionParameter delimiter;
454
455} VBoxSFMapFolder;
456
457/** Number of parameters */
458#define SHFL_CPARMS_MAP_FOLDER (3)
459
460/**
461 * SHFL_FN_UNMAP_FOLDER
462 */
463
464/** Parameters structure. */
465typedef struct _VBoxSFUnmapFolder
466{
467 VBoxGuestHGCMCallInfo callInfo;
468
469 /** pointer, in: SHFLROOT
470 * Root handle of the mapping which name is queried.
471 */
472 HGCMFunctionParameter root;
473
474} VBoxSFUnmapFolder;
475
476/** Number of parameters */
477#define SHFL_CPARMS_UNMAP_FOLDER (1)
478
479
480/**
481 * SHFL_FN_CREATE
482 */
483
484/** Parameters structure. */
485typedef struct _VBoxSFCreate
486{
487 VBoxGuestHGCMCallInfo callInfo;
488
489 /** pointer, in: SHFLROOT
490 * Root handle of the mapping which name is queried.
491 */
492 HGCMFunctionParameter root;
493
494 /** pointer, in:
495 * Points to SHFLSTRING buffer.
496 */
497 HGCMFunctionParameter path;
498
499 /** pointer, in/out:
500 * Points to SHFLCREATEPARMS buffer.
501 */
502 HGCMFunctionParameter parms;
503
504} VBoxSFCreate;
505
506/** Number of parameters */
507#define SHFL_CPARMS_CREATE (3)
508
509
510/**
511 * SHFL_FN_CLOSE
512 */
513
514/** Parameters structure. */
515typedef struct _VBoxSFClose
516{
517 VBoxGuestHGCMCallInfo callInfo;
518
519 /** pointer, in: SHFLROOT
520 * Root handle of the mapping which name is queried.
521 */
522 HGCMFunctionParameter root;
523
524
525 /** value64, in:
526 * SHFLHANDLE of object to close.
527 */
528 HGCMFunctionParameter handle;
529
530} VBoxSFClose;
531
532/** Number of parameters */
533#define SHFL_CPARMS_CLOSE (2)
534
535
536/**
537 * SHFL_FN_READ
538 */
539
540/** Parameters structure. */
541typedef struct _VBoxSFRead
542{
543 VBoxGuestHGCMCallInfo callInfo;
544
545 /** pointer, in: SHFLROOT
546 * Root handle of the mapping which name is queried.
547 */
548 HGCMFunctionParameter root;
549
550 /** value64, in:
551 * SHFLHANDLE of object to read from.
552 */
553 HGCMFunctionParameter handle;
554
555 /** value64, in:
556 * Offset to read from.
557 */
558 HGCMFunctionParameter offset;
559
560 /** value64, in/out:
561 * Bytes to read/How many were read.
562 */
563 HGCMFunctionParameter cb;
564
565 /** pointer, out:
566 * Buffer to place data to.
567 */
568 HGCMFunctionParameter buffer;
569
570} VBoxSFRead;
571
572/** Number of parameters */
573#define SHFL_CPARMS_READ (5)
574
575
576
577/**
578 * SHFL_FN_WRITE
579 */
580
581/** Parameters structure. */
582typedef struct _VBoxSFWrite
583{
584 VBoxGuestHGCMCallInfo callInfo;
585
586 /** pointer, in: SHFLROOT
587 * Root handle of the mapping which name is queried.
588 */
589 HGCMFunctionParameter root;
590
591 /** value64, in:
592 * SHFLHANDLE of object to write to.
593 */
594 HGCMFunctionParameter handle;
595
596 /** value64, in:
597 * Offset to write to.
598 */
599 HGCMFunctionParameter offset;
600
601 /** value64, in/out:
602 * Bytes to write/How many were written.
603 */
604 HGCMFunctionParameter cb;
605
606 /** pointer, in:
607 * Data to write.
608 */
609 HGCMFunctionParameter buffer;
610
611} VBoxSFWrite;
612
613/** Number of parameters */
614#define SHFL_CPARMS_WRITE (5)
615
616
617
618/**
619 * SHFL_FN_LOCK
620 */
621
622/** Lock owner is the HGCM client. */
623
624/** Lock mode bit mask. */
625#define SHFL_LOCK_MODE_MASK (0x3)
626/** Cancel lock on the given range. */
627#define SHFL_LOCK_CANCEL (0x0)
628/** Aquire read only lock. Prevent write to the range. */
629#define SHFL_LOCK_SHARED (0x1)
630/** Aquire write lock. Prevent both write and read to the range. */
631#define SHFL_LOCK_EXCLUSIVE (0x2)
632
633/** Do not wait for lock if it can not be acquired at the time. */
634#define SHFL_LOCK_NOWAIT (0x0)
635/** Wait and acquire lock. */
636#define SHFL_LOCK_WAIT (0x4)
637
638/** Lock the specified range. */
639#define SHFL_LOCK_PARTIAL (0x0)
640/** Lock entire object. */
641#define SHFL_LOCK_ENTIRE (0x8)
642
643/** Parameters structure. */
644typedef struct _VBoxSFLock
645{
646 VBoxGuestHGCMCallInfo callInfo;
647
648 /** pointer, in: SHFLROOT
649 * Root handle of the mapping which name is queried.
650 */
651 HGCMFunctionParameter root;
652
653 /** value64, in:
654 * SHFLHANDLE of object to be locked.
655 */
656 HGCMFunctionParameter handle;
657
658 /** value64, in:
659 * Starting offset of lock range.
660 */
661 HGCMFunctionParameter offset;
662
663 /** value64, in:
664 * Length of range.
665 */
666 HGCMFunctionParameter length;
667
668 /** value32, in:
669 * Lock flags SHFL_LOCK_*.
670 */
671 HGCMFunctionParameter flags;
672
673} VBoxSFLock;
674
675/** Number of parameters */
676#define SHFL_CPARMS_LOCK (5)
677
678
679
680/**
681 * SHFL_FN_FLUSH
682 */
683
684/** Parameters structure. */
685typedef struct _VBoxSFFlush
686{
687 VBoxGuestHGCMCallInfo callInfo;
688
689 /** pointer, in: SHFLROOT
690 * Root handle of the mapping which name is queried.
691 */
692 HGCMFunctionParameter root;
693
694 /** value64, in:
695 * SHFLHANDLE of object to be locked.
696 */
697 HGCMFunctionParameter handle;
698
699} VBoxSFFlush;
700
701/** Number of parameters */
702#define SHFL_CPARMS_FLUSH (2)
703
704/**
705 * SHFL_FN_LIST
706 */
707
708/** Listing information includes variable length RTDIRENTRY[EX] structures. */
709
710/** @todo might be necessary for future. */
711#define SHFL_LIST_NONE 0
712#define SHFL_LIST_RETURN_ONE 1
713
714/** Parameters structure. */
715typedef struct _VBoxSFList
716{
717 VBoxGuestHGCMCallInfo callInfo;
718
719 /** pointer, in: SHFLROOT
720 * Root handle of the mapping which name is queried.
721 */
722 HGCMFunctionParameter root;
723
724 /** value64, in:
725 * SHFLHANDLE of object to be listed.
726 */
727 HGCMFunctionParameter handle;
728
729 /** value32, in:
730 * List flags SHFL_LIST_*.
731 */
732 HGCMFunctionParameter flags;
733
734 /** value32, in/out:
735 * Bytes to be used for listing information/How many bytes were used.
736 */
737 HGCMFunctionParameter cb;
738
739 /** pointer, in/optional
740 * Points to SHFLSTRING buffer that specifies a search path.
741 */
742 HGCMFunctionParameter path;
743
744 /** pointer, out:
745 * Buffer to place listing information to. (SHFLDIRINFO)
746 */
747 HGCMFunctionParameter buffer;
748
749 /** value32, in/out:
750 * Indicates a key where the listing must be resumed.
751 * in: 0 means start from begin of object.
752 * out: 0 means listing completed.
753 */
754 HGCMFunctionParameter resumePoint;
755
756 /** pointer, out:
757 * Number of files returned
758 */
759 HGCMFunctionParameter cFiles;
760
761} VBoxSFList;
762
763/** Number of parameters */
764#define SHFL_CPARMS_LIST (8)
765
766
767
768/**
769 * SHFL_FN_INFORMATION
770 */
771
772/** Mask of Set/Get bit. */
773#define SHFL_INFO_MODE_MASK (0x1)
774/** Get information */
775#define SHFL_INFO_GET (0x0)
776/** Set information */
777#define SHFL_INFO_SET (0x1)
778
779/** Get name of the object. */
780#define SHFL_INFO_NAME (0x2)
781/** Set size of object (extend/trucate); only applies to file objects */
782#define SHFL_INFO_SIZE (0x4)
783/** Get/Set file object info. */
784#define SHFL_INFO_FILE (0x8)
785/** Get volume information. */
786#define SHFL_INFO_VOLUME (0x10)
787
788/** @todo different file info structures */
789
790
791/** Parameters structure. */
792typedef struct _VBoxSFInformation
793{
794 VBoxGuestHGCMCallInfo callInfo;
795
796 /** pointer, in: SHFLROOT
797 * Root handle of the mapping which name is queried.
798 */
799 HGCMFunctionParameter root;
800
801 /** value64, in:
802 * SHFLHANDLE of object to be listed.
803 */
804 HGCMFunctionParameter handle;
805
806 /** value32, in:
807 * SHFL_INFO_*
808 */
809 HGCMFunctionParameter flags;
810
811 /** value32, in/out:
812 * Bytes to be used for information/How many bytes were used.
813 */
814 HGCMFunctionParameter cb;
815
816 /** pointer, in/out:
817 * Information to be set/get (RTFSOBJINFO or SHFLSTRING).
818 * Do not forget to set the RTFSOBJINFO::Attr::enmAdditional for Get operation as well.
819 */
820 HGCMFunctionParameter info;
821
822} VBoxSFInformation;
823
824/** Number of parameters */
825#define SHFL_CPARMS_INFORMATION (5)
826
827
828/**
829 * SHFL_FN_REMOVE
830 */
831
832#define SHFL_REMOVE_FILE (0x1)
833#define SHFL_REMOVE_DIR (0x2)
834
835/** Parameters structure. */
836typedef struct _VBoxSFRemove
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 /** pointer, in:
846 * Points to SHFLSTRING buffer.
847 */
848 HGCMFunctionParameter path;
849
850 /** value32, in:
851 * remove flags (file/directory)
852 */
853 HGCMFunctionParameter flags;
854
855} VBoxSFRemove;
856
857#define SHFL_CPARMS_REMOVE (3)
858
859
860/**
861 * SHFL_FN_RENAME
862 */
863
864#define SHFL_RENAME_FILE (0x1)
865#define SHFL_RENAME_DIR (0x2)
866#define SHFL_RENAME_REPLACE_IF_EXISTS (0x4)
867
868/** Parameters structure. */
869typedef struct _VBoxSFRename
870{
871 VBoxGuestHGCMCallInfo callInfo;
872
873 /** pointer, in: SHFLROOT
874 * Root handle of the mapping which name is queried.
875 */
876 HGCMFunctionParameter root;
877
878 /** pointer, in:
879 * Points to SHFLSTRING src.
880 */
881 HGCMFunctionParameter src;
882
883 /** pointer, in:
884 * Points to SHFLSTRING dest.
885 */
886 HGCMFunctionParameter dest;
887
888 /** value32, in:
889 * rename flags (file/directory)
890 */
891 HGCMFunctionParameter flags;
892
893} VBoxSFRename;
894
895#define SHFL_CPARMS_RENAME (4)
896
897/**
898 * SHFL_FN_ADD_MAPPING
899 */
900
901/** Parameters structure. */
902typedef struct _VBoxSFAddMapping
903{
904 VBoxGuestHGCMCallInfo callInfo;
905
906 /** pointer, in: Folder name
907 * Points to SHFLSTRING buffer.
908 */
909 HGCMFunctionParameter folder;
910
911 /** pointer, in: Mapping name
912 * Points to SHFLSTRING buffer.
913 */
914 HGCMFunctionParameter mapping;
915
916} VBoxSFAddMapping;
917
918#define SHFL_CPARMS_ADD_MAPPING (2)
919
920
921/**
922 * SHFL_FN_REMOVE_MAPPING
923 */
924
925/** Parameters structure. */
926typedef struct _VBoxSFRemoveMapping
927{
928 VBoxGuestHGCMCallInfo callInfo;
929
930 /** pointer, in: Guest name
931 * Points to SHFLSTRING buffer.
932 */
933 HGCMFunctionParameter path;
934
935} VBoxSFRemoveMapping;
936
937#define SHFL_CPARMS_REMOVE_MAPPING (1)
938
939/** @} */
940
941#endif /* __SHFLSVC__H */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette