VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.h@ 76199

Last change on this file since 76199 was 75433, checked in by vboxsync, 6 years ago

linux/vboxsf,VBoxService: Added mount tag and implemented show_options so the tag (and more) is visible in /proc/mounts. Made use of the tag in VBoxService, also made it prefer /proc/mounts over /etc/mtab, and made it rmdir mountpoints during umount.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.7 KB
Line 
1/** @file
2 * vboxsf - VirtualBox Guest Additions for Linux.
3 */
4
5/*
6 * Copyright (C) 2006-2018 Oracle Corporation
7 *
8 * Permission is hereby granted, free of charge, to any person
9 * obtaining a copy of this software and associated documentation
10 * files (the "Software"), to deal in the Software without
11 * restriction, including without limitation the rights to use,
12 * copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following
15 * conditions:
16 *
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
22 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
24 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
25 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30#ifndef VFSMOD_H
31#define VFSMOD_H
32
33#define LOG_GROUP LOG_GROUP_SHARED_FOLDERS
34#include "the-linux-kernel.h"
35#include <VBox/log.h>
36
37#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
38#include <linux/backing-dev.h>
39#endif
40
41#include <VBox/VBoxGuestLibSharedFolders.h>
42#include "vbsfmount.h"
43
44#define DIR_BUFFER_SIZE (16*_1K)
45
46/* per-shared folder information */
47struct sf_glob_info {
48 VBGLSFMAP map;
49 struct nls_table *nls;
50 int ttl;
51 int uid;
52 int gid;
53 int dmode;
54 int fmode;
55 int dmask;
56 int fmask;
57#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
58 struct backing_dev_info bdi;
59#endif
60 char tag[32]; /**< Mount tag for VBoxService automounter. @since 6.0 */
61};
62
63/* per-inode information */
64struct sf_inode_info {
65 /* which file */
66 SHFLSTRING *path;
67 /* some information was changed, update data on next revalidate */
68 int force_restat;
69 /* directory content changed, update the whole directory on next sf_getdent */
70 int force_reread;
71 /* file structure, only valid between open() and release() */
72 struct file *file;
73 /* handle valid if a file was created with sf_create_aux until it will
74 * be opened with sf_reg_open() */
75 SHFLHANDLE handle;
76};
77
78struct sf_dir_info {
79 struct list_head info_list;
80};
81
82struct sf_dir_buf {
83 size_t cEntries;
84 size_t cbFree;
85 size_t cbUsed;
86 void *buf;
87 struct list_head head;
88};
89
90struct sf_reg_info {
91 SHFLHANDLE handle;
92};
93
94/* globals */
95extern VBGLSFCLIENT client_handle;
96
97/* forward declarations */
98extern struct inode_operations sf_dir_iops;
99extern struct inode_operations sf_lnk_iops;
100extern struct inode_operations sf_reg_iops;
101extern struct file_operations sf_dir_fops;
102extern struct file_operations sf_reg_fops;
103extern struct dentry_operations sf_dentry_ops;
104extern struct address_space_operations sf_reg_aops;
105
106extern void sf_init_inode(struct sf_glob_info *sf_g, struct inode *inode,
107 PSHFLFSOBJINFO info);
108extern int sf_stat(const char *caller, struct sf_glob_info *sf_g,
109 SHFLSTRING * path, PSHFLFSOBJINFO result, int ok_to_fail);
110extern int sf_inode_revalidate(struct dentry *dentry);
111#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0)
112#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
113extern int sf_getattr(const struct path *path, struct kstat *kstat,
114 u32 request_mask, unsigned int query_flags);
115#else
116extern int sf_getattr(struct vfsmount *mnt, struct dentry *dentry,
117 struct kstat *kstat);
118#endif
119extern int sf_setattr(struct dentry *dentry, struct iattr *iattr);
120#endif
121extern int sf_path_from_dentry(const char *caller, struct sf_glob_info *sf_g,
122 struct sf_inode_info *sf_i,
123 struct dentry *dentry, SHFLSTRING ** result);
124extern int sf_nlscpy(struct sf_glob_info *sf_g, char *name,
125 size_t name_bound_len, const unsigned char *utf8_name,
126 size_t utf8_len);
127extern void sf_dir_info_free(struct sf_dir_info *p);
128extern void sf_dir_info_empty(struct sf_dir_info *p);
129extern struct sf_dir_info *sf_dir_info_alloc(void);
130extern int sf_dir_read_all(struct sf_glob_info *sf_g,
131 struct sf_inode_info *sf_i, struct sf_dir_info *sf_d,
132 SHFLHANDLE handle);
133extern int sf_init_backing_dev(struct sf_glob_info *sf_g);
134extern void sf_done_backing_dev(struct sf_glob_info *sf_g);
135
136#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
137#define STRUCT_STATFS struct statfs
138#else
139#define STRUCT_STATFS struct kstatfs
140#endif
141int sf_get_volume_info(struct super_block *sb, STRUCT_STATFS * stat);
142
143#ifdef __cplusplus
144#define CMC_API __attribute__ ((cdecl, regparm (0)))
145#else
146#define CMC_API __attribute__ ((regparm (0)))
147#endif
148
149#define TRACE() LogFunc(("tracepoint\n"))
150
151/* Following casts are here to prevent assignment of void * to
152 pointers of arbitrary type */
153#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0)
154#define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->u.generic_sbp)
155#define SET_GLOB_INFO(sb, sf_g) (sb)->u.generic_sbp = sf_g
156#else
157#define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->s_fs_info)
158#define SET_GLOB_INFO(sb, sf_g) (sb)->s_fs_info = sf_g
159#endif
160
161#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) || defined(KERNEL_FC6)
162/* FC6 kernel 2.6.18, vanilla kernel 2.6.19+ */
163#define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->i_private)
164#define SET_INODE_INFO(i, sf_i) (i)->i_private = sf_i
165#else
166/* vanilla kernel up to 2.6.18 */
167#define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->u.generic_ip)
168#define SET_INODE_INFO(i, sf_i) (i)->u.generic_ip = sf_i
169#endif
170
171#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)
172#define GET_F_DENTRY(f) (f->f_path.dentry)
173#else
174#define GET_F_DENTRY(f) (f->f_dentry)
175#endif
176
177#endif
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