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