VirtualBox

source: vbox/trunk/src/VBox/Additions/darwin/VBoxSF/VBoxSFInternal.h@ 75679

Last change on this file since 75679 was 75678, checked in by vboxsync, 6 years ago

darwin/VBoxSF: Updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1/* $Id: VBoxSFInternal.h 75678 2018-11-22 21:39:48Z vboxsync $ */
2/** @file
3 * VBoxSF - Darwin Shared Folders, internal header.
4 */
5
6/*
7 * Copyright (C) 2013-2018 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___VBoxSFInternal_h___
19#define ___VBoxSFInternal_h___
20
21
22/*********************************************************************************************************************************
23* Header Files *
24*********************************************************************************************************************************/
25#include "VBoxSFMount.h"
26
27#include <libkern/libkern.h>
28#include <iprt/types.h>
29#include <IOKit/IOLib.h>
30#include <IOKit/IOService.h>
31#include <mach/mach_port.h>
32#include <mach/kmod.h>
33#include <mach/mach_types.h>
34#include <sys/errno.h>
35#include <sys/dirent.h>
36#include <sys/lock.h>
37#include <sys/fcntl.h>
38#include <sys/mount.h>
39#include <sys/param.h>
40#include <sys/vnode.h>
41#include <vfs/vfs_support.h>
42#undef PVM
43
44#include <iprt/mem.h>
45#include <VBox/VBoxGuest.h>
46#include <VBox/VBoxGuestLibSharedFolders.h>
47
48
49/*********************************************************************************************************************************
50* Structures and Typedefs *
51*********************************************************************************************************************************/
52/**
53 * Private data we associate with a mount.
54 */
55typedef struct VBOXSFMNTDATA
56{
57 /** The shared folder mapping */
58 VBGLSFMAP hHostFolder;
59 /** The root VNode. */
60 vnode_t pVnRoot;
61 /** User that mounted shared folder (anyone but root?). */
62 uid_t uidMounter;
63 /** The mount info from the mount() call. */
64 VBOXSFDRWNMOUNTINFO MntInfo;
65} VBOXSFMNTDATA;
66/** Pointer to private mount data. */
67typedef VBOXSFMNTDATA *PVBOXSFMNTDATA;
68
69/**
70 * Private data we associate with a VNode.
71 */
72typedef struct VBOXSFDWNVNDATA
73{
74 /** The handle to the host object. */
75 SHFLHANDLE hHandle;
76 ///PSHFLSTRING pPath; /** Path within shared folder */
77 ///lck_attr_t *pLockAttr; /** BSD locking stuff */
78 ///lck_rw_t *pLock; /** BSD locking stuff */
79} VBOXSFDWNVNDATA;
80/** Pointer to private vnode data. */
81typedef VBOXSFDWNVNDATA *PVBOXSFDWNVNDATA;
82
83
84
85/*********************************************************************************************************************************
86* Global Variables *
87*********************************************************************************************************************************/
88extern VBGLSFCLIENT g_SfClientDarwin;
89extern uint32_t volatile g_cVBoxSfMounts;
90extern struct vfsops g_VBoxSfVfsOps;
91extern struct vnodeopv_desc g_VBoxSfVnodeOpvDesc;
92extern int (**g_papfnVBoxSfDwnVnDirOpsVector)(void *);
93
94
95
96/*********************************************************************************************************************************
97* Functions *
98*********************************************************************************************************************************/
99bool vboxSfDwnConnect(void);
100vnode_t vboxSfDwnVnAlloc(mount_t pMount, enum vtype enmType, vnode_t pParent, uint64_t cbFile);
101
102
103#endif
104
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