VirtualBox

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

Last change on this file since 4796 was 4735, checked in by vboxsync, 18 years ago

Linux shared folder module restructuring - try to fix a burning box

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
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 */
28struct sf_glob_info {
29 VBSFMAP map;
30 struct nls_table *nls;
31 int ttl;
32 int uid;
33 int gid;
34};
35
36struct sf_inode_info {
37 SHFLSTRING *path;
38 int force_restat;
39};
40
41struct sf_dir_info {
42 struct list_head info_list;
43};
44
45struct 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
53struct sf_reg_info {
54 SHFLHANDLE handle;
55};
56
57/* globals */
58extern VBSFCLIENT client_handle;
59
60/* forward declarations */
61extern struct inode_operations sf_dir_iops;
62extern struct inode_operations sf_reg_iops;
63extern struct file_operations sf_dir_fops;
64extern struct file_operations sf_reg_fops;
65extern struct dentry_operations sf_dentry_ops;
66
67extern void
68sf_init_inode (struct sf_glob_info *sf_g, struct inode *inode,
69 RTFSOBJINFO *info);
70extern int
71sf_stat (const char *caller, struct sf_glob_info *sf_g,
72 SHFLSTRING *path, RTFSOBJINFO *result, int ok_to_fail);
73extern int
74sf_inode_revalidate (struct dentry *dentry);
75#if LINUX_VERSION_CODE >= KERNEL_VERSION (2, 6, 0)
76extern int
77sf_getattr (struct vfsmount *mnt, struct dentry *dentry, struct kstat *kstat);
78#endif
79extern int
80sf_path_from_dentry (const char *caller, struct sf_glob_info *sf_g,
81 struct sf_inode_info *sf_i, struct dentry *dentry,
82 SHFLSTRING **result);
83extern int
84sf_nlscpy (struct sf_glob_info *sf_g,
85 char *name, size_t name_bound_len,
86 const unsigned char *utf8_name, size_t utf8_len);
87extern void
88sf_dir_info_free (struct sf_dir_info *p);
89extern struct sf_dir_info *
90sf_dir_info_alloc (void);
91extern int
92sf_dir_read_all (struct sf_glob_info *sf_g, struct sf_inode_info *sf_i,
93 struct sf_dir_info *sf_d, SHFLHANDLE handle);
94
95#ifdef ALIGN
96#undef ALIGN
97#endif
98
99#define CMC_API __attribute__ ((cdecl, regparm (0)))
100
101#define TRACE() LogFunc (("tracepoint\n"))
102
103/* Following casts are here to prevent assignment of void * to
104 pointers of arbitrary type */
105#if LINUX_VERSION_CODE < KERNEL_VERSION (2, 6, 0)
106#define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->u.generic_sbp)
107#define SET_GLOB_INFO(sb, sf_g) (sb)->u.generic_sbp = sf_g
108#else
109#define GET_GLOB_INFO(sb) ((struct sf_glob_info *) (sb)->s_fs_info)
110#define SET_GLOB_INFO(sb, sf_g) (sb)->s_fs_info = sf_g
111#endif
112
113#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19) || defined(KERNEL_FC6)
114/* FC6 kernel 2.6.18, vanilla kernel 2.6.19+ */
115#define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->i_private)
116#define SET_INODE_INFO(i, sf_i) (i)->i_private = sf_i
117#else
118/* vanilla kernel up to 2.6.18 */
119#define GET_INODE_INFO(i) ((struct sf_inode_info *) (i)->u.generic_ip)
120#define SET_INODE_INFO(i, sf_i) (i)->u.generic_ip = sf_i
121#endif
122
123#endif /* vfsmod.h */
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