1 | /* $Id: vboxvfs.h 11982 2008-09-02 13:09:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox File System Driver for Solaris Guests, Internal Header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ___VBoxVFS_Solaris_h
|
---|
23 | #define ___VBoxVFS_Solaris_h
|
---|
24 |
|
---|
25 | #ifdef __cplusplus
|
---|
26 | extern "C" {
|
---|
27 | #endif
|
---|
28 |
|
---|
29 | #define MAX_HOST_NAME 256
|
---|
30 | #define MAX_NLS_NAME 32
|
---|
31 |
|
---|
32 | /** The module name. */
|
---|
33 | #define DEVICE_NAME "vboxvfs"
|
---|
34 | /** The module description as seen in 'modinfo'. */
|
---|
35 | #define DEVICE_DESC "filesystem for VirtualBox Shared Folders"
|
---|
36 |
|
---|
37 | /* Not sure if we need this; it seems only necessary for kernel mounts. */
|
---|
38 | #if 0
|
---|
39 | typedef struct vboxvfs_mountinfo
|
---|
40 | {
|
---|
41 | char name[MAX_HOST_NAME];
|
---|
42 | char nls_name[MAX_NLS_NAME];
|
---|
43 | int uid;
|
---|
44 | int gid;
|
---|
45 | int ttl;
|
---|
46 | } vboxvfs_mountinfo_t;
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | #ifdef _KERNEL
|
---|
50 |
|
---|
51 | #include "../../common/VBoxGuestLib/VBoxCalls.h"
|
---|
52 | #include <sys/vfs.h>
|
---|
53 | #include <sys/vfs_opreg.h>
|
---|
54 |
|
---|
55 | /** VNode for VBoxVFS */
|
---|
56 | typedef struct vboxvfs_vnode
|
---|
57 | {
|
---|
58 | vnode_t *pVNode;
|
---|
59 | vattr_t Attr;
|
---|
60 | SHFLSTRING *pPath;
|
---|
61 | kmutex_t MtxContents;
|
---|
62 | } vboxvfs_vnode_t;
|
---|
63 |
|
---|
64 |
|
---|
65 | /** Per-file system mount instance data. */
|
---|
66 | typedef struct vboxvfs_globinfo
|
---|
67 | {
|
---|
68 | VBSFMAP Map;
|
---|
69 | int Ttl;
|
---|
70 | int Uid;
|
---|
71 | int Gid;
|
---|
72 | vfs_t *pVFS;
|
---|
73 | vboxvfs_vnode_t *pVNodeRoot;
|
---|
74 | kmutex_t MtxFS;
|
---|
75 | } vboxvfs_globinfo_t;
|
---|
76 |
|
---|
77 | extern struct vnodeops *g_pVBoxVFS_vnodeops;
|
---|
78 | extern const fs_operation_def_t g_VBoxVFS_vnodeops_template[];
|
---|
79 | extern VBSFCLIENT g_VBoxVFSClient;
|
---|
80 |
|
---|
81 | /** Helper functions */
|
---|
82 | extern int vboxvfs_Stat(const char *pszCaller, vboxvfs_globinfo_t *pVBoxVFSGlobalInfo, SHFLSTRING *pPath,
|
---|
83 | RTFSOBJINFO *pResult, boolean_t fAllowFailure);
|
---|
84 | extern void vboxvfs_InitVNode(vboxvfs_globinfo_t *pVBoxVFSGlobalInfo, vboxvfs_vnode_t *pVBoxVNode,
|
---|
85 | RTFSOBJINFO *pFSInfo);
|
---|
86 |
|
---|
87 |
|
---|
88 | /** Helper macros */
|
---|
89 | #define VFS_TO_VBOXVFS(vfs) ((vboxvfs_globinfo_t *)((vfs)->vfs_data))
|
---|
90 | #define VBOXVFS_TO_VFS(vboxvfs) ((vboxvfs)->pVFS)
|
---|
91 | #define VN_TO_VBOXVN(vnode) ((vboxvfs_vnode_t *)((vnode)->v_data))
|
---|
92 | #define VBOXVN_TO_VN(vboxvnode) ((vboxvnode)->pVNode)
|
---|
93 |
|
---|
94 | #endif /* _KERNEL */
|
---|
95 |
|
---|
96 | #ifdef __cplusplus
|
---|
97 | }
|
---|
98 | #endif
|
---|
99 |
|
---|
100 | #endif /* ___VBoxVFS_Solaris_h */
|
---|
101 |
|
---|