1 | /** @file
|
---|
2 | *
|
---|
3 | * vboxvfs -- VirtualBox Guest Additions for Linux
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef VFSMOD_H
|
---|
19 | #define VFSMOD_H
|
---|
20 |
|
---|
21 | #include "the-linux-kernel.h"
|
---|
22 | #include "version-generated.h"
|
---|
23 |
|
---|
24 | #include "VBoxCalls.h"
|
---|
25 | #include "vbsfmount.h"
|
---|
26 |
|
---|
27 | /* structs */
|
---|
28 | struct sf_glob_info {
|
---|
29 | VBSFMAP map;
|
---|
30 | struct nls_table *nls;
|
---|
31 | int ttl;
|
---|
32 | int uid;
|
---|
33 | int gid;
|
---|
34 | };
|
---|
35 |
|
---|
36 | struct sf_inode_info {
|
---|
37 | SHFLSTRING *path;
|
---|
38 | int force_restat;
|
---|
39 | };
|
---|
40 |
|
---|
41 | struct sf_dir_info {
|
---|
42 | struct list_head info_list;
|
---|
43 | };
|
---|
44 |
|
---|
45 | struct sf_dir_buf {
|
---|
46 | size_t nb_entries;
|
---|
47 | size_t free_bytes;
|
---|
48 | size_t used_bytes;
|
---|
49 | void *buf;
|
---|
50 | struct list_head head;
|
---|
51 | };
|
---|
52 |
|
---|
53 | struct sf_reg_info {
|
---|
54 | SHFLHANDLE handle;
|
---|
55 | };
|
---|
56 |
|
---|
57 | /* globals */
|
---|
58 | extern VBSFCLIENT client_handle;
|
---|
59 |
|
---|
60 | /* forward declarations */
|
---|
61 | extern struct inode_operations sf_dir_iops;
|
---|
62 | extern struct inode_operations sf_reg_iops;
|
---|
63 | extern struct file_operations sf_dir_fops;
|
---|
64 | extern struct file_operations sf_reg_fops;
|
---|
65 | extern struct dentry_operations sf_dentry_ops;
|
---|
66 |
|
---|
67 | extern int
|
---|
68 | sf_stat (const char *caller, struct sf_glob_info *sf_g,
|
---|
69 | SHFLSTRING *path, RTFSOBJINFO *result, int ok_to_fail);
|
---|
70 | extern void
|
---|
71 | sf_init_inode (struct sf_glob_info *sf_g, struct inode *inode,
|
---|
72 | RTFSOBJINFO *info);
|
---|
73 | #if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 0)
|
---|
74 | extern int
|
---|
75 | sf_getattr (struct vfsmount *mnt, struct dentry *dentry, struct kstat *kstat);
|
---|
76 | #endif
|
---|
77 | extern int
|
---|
78 | sf_path_from_dentry (const char *caller, struct sf_glob_info *sf_g,
|
---|
79 | struct sf_inode_info *sf_i, struct dentry *dentry,
|
---|
80 | SHFLSTRING **result);
|
---|
81 | extern int
|
---|
82 | sf_nlscpy (struct sf_glob_info *sf_g,
|
---|
83 | char *name, size_t name_bound_len,
|
---|
84 | const unsigned char *utf8_name, size_t utf8_len);
|
---|
85 | extern void
|
---|
86 | sf_dir_info_free (struct sf_dir_info *p);
|
---|
87 | extern struct sf_dir_info *
|
---|
88 | sf_dir_info_alloc (void);
|
---|
89 | extern int
|
---|
90 | sf_dir_read_all (struct sf_glob_info *sf_g, struct sf_inode_info *sf_i,
|
---|
91 | struct sf_dir_info *sf_d, SHFLHANDLE handle);
|
---|
92 |
|
---|
93 | #ifdef ALIGN
|
---|
94 | #undef ALIGN
|
---|
95 | #endif
|
---|
96 |
|
---|
97 | #define CMC_API __attribute__ ((cdecl, regparm (0)))
|
---|
98 |
|
---|
99 | #define TRACE() LogFunc (("tracepoint\n"))
|
---|
100 |
|
---|
101 | /* Following casts are here to prevent assignment of void * to
|
---|
102 | pointers of arbitrary type */
|
---|
103 | #if LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 0)
|
---|
104 | #define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->u.generic_sbp)
|
---|
105 | #define SET_GLOB_INFO(sb, sf_g) (sb)->u.generic_sbp = sf_g
|
---|
106 | #else
|
---|
107 | #define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->s_fs_info)
|
---|
108 | #define SET_GLOB_INFO(sb, sf_g) (sb)->s_fs_info = sf_g
|
---|
109 | #endif
|
---|
110 |
|
---|
111 | #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19) || defined(KERNEL_FC6)
|
---|
112 | /* FC6 kernel 2.6.18, vanilla kernel 2.6.19+ */
|
---|
113 | #define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->i_private)
|
---|
114 | #define SET_INODE_INFO(i, sf_i) (i)->i_private = sf_i
|
---|
115 | #else
|
---|
116 | /* vanilla kernel up to 2.6.18 */
|
---|
117 | #define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->u.generic_ip)
|
---|
118 | #define SET_INODE_INFO(i, sf_i) (i)->u.generic_ip = sf_i
|
---|
119 | #endif
|
---|
120 |
|
---|
121 | #endif /* vfsmod.h */
|
---|