1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun * fs/cifs/cifsfs.h
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Copyright (c) International Business Machines Corp., 2002, 2007
5*4882a593Smuzhiyun * Author(s): Steve French (sfrench@us.ibm.com)
6*4882a593Smuzhiyun *
7*4882a593Smuzhiyun * This library is free software; you can redistribute it and/or modify
8*4882a593Smuzhiyun * it under the terms of the GNU Lesser General Public License as published
9*4882a593Smuzhiyun * by the Free Software Foundation; either version 2.1 of the License, or
10*4882a593Smuzhiyun * (at your option) any later version.
11*4882a593Smuzhiyun *
12*4882a593Smuzhiyun * This library is distributed in the hope that it will be useful,
13*4882a593Smuzhiyun * but WITHOUT ANY WARRANTY; without even the implied warranty of
14*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15*4882a593Smuzhiyun * the GNU Lesser General Public License for more details.
16*4882a593Smuzhiyun *
17*4882a593Smuzhiyun * You should have received a copy of the GNU Lesser General Public License
18*4882a593Smuzhiyun * along with this library; if not, write to the Free Software
19*4882a593Smuzhiyun * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*4882a593Smuzhiyun */
21*4882a593Smuzhiyun
22*4882a593Smuzhiyun #ifndef _CIFSFS_H
23*4882a593Smuzhiyun #define _CIFSFS_H
24*4882a593Smuzhiyun
25*4882a593Smuzhiyun #include <linux/hash.h>
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun #define ROOT_I 2
28*4882a593Smuzhiyun
29*4882a593Smuzhiyun /*
30*4882a593Smuzhiyun * ino_t is 32-bits on 32-bit arch. We have to squash the 64-bit value down
31*4882a593Smuzhiyun * so that it will fit. We use hash_64 to convert the value to 31 bits, and
32*4882a593Smuzhiyun * then add 1, to ensure that we don't end up with a 0 as the value.
33*4882a593Smuzhiyun */
34*4882a593Smuzhiyun static inline ino_t
cifs_uniqueid_to_ino_t(u64 fileid)35*4882a593Smuzhiyun cifs_uniqueid_to_ino_t(u64 fileid)
36*4882a593Smuzhiyun {
37*4882a593Smuzhiyun if ((sizeof(ino_t)) < (sizeof(u64)))
38*4882a593Smuzhiyun return (ino_t)hash_64(fileid, (sizeof(ino_t) * 8) - 1) + 1;
39*4882a593Smuzhiyun
40*4882a593Smuzhiyun return (ino_t)fileid;
41*4882a593Smuzhiyun
42*4882a593Smuzhiyun }
43*4882a593Smuzhiyun
cifs_set_time(struct dentry * dentry,unsigned long time)44*4882a593Smuzhiyun static inline void cifs_set_time(struct dentry *dentry, unsigned long time)
45*4882a593Smuzhiyun {
46*4882a593Smuzhiyun dentry->d_fsdata = (void *) time;
47*4882a593Smuzhiyun }
48*4882a593Smuzhiyun
cifs_get_time(struct dentry * dentry)49*4882a593Smuzhiyun static inline unsigned long cifs_get_time(struct dentry *dentry)
50*4882a593Smuzhiyun {
51*4882a593Smuzhiyun return (unsigned long) dentry->d_fsdata;
52*4882a593Smuzhiyun }
53*4882a593Smuzhiyun
54*4882a593Smuzhiyun extern struct file_system_type cifs_fs_type, smb3_fs_type;
55*4882a593Smuzhiyun extern const struct address_space_operations cifs_addr_ops;
56*4882a593Smuzhiyun extern const struct address_space_operations cifs_addr_ops_smallbuf;
57*4882a593Smuzhiyun
58*4882a593Smuzhiyun /* Functions related to super block operations */
59*4882a593Smuzhiyun extern void cifs_sb_active(struct super_block *sb);
60*4882a593Smuzhiyun extern void cifs_sb_deactive(struct super_block *sb);
61*4882a593Smuzhiyun
62*4882a593Smuzhiyun /* Functions related to inodes */
63*4882a593Smuzhiyun extern const struct inode_operations cifs_dir_inode_ops;
64*4882a593Smuzhiyun extern struct inode *cifs_root_iget(struct super_block *);
65*4882a593Smuzhiyun extern int cifs_create(struct inode *, struct dentry *, umode_t,
66*4882a593Smuzhiyun bool excl);
67*4882a593Smuzhiyun extern int cifs_atomic_open(struct inode *, struct dentry *,
68*4882a593Smuzhiyun struct file *, unsigned, umode_t);
69*4882a593Smuzhiyun extern struct dentry *cifs_lookup(struct inode *, struct dentry *,
70*4882a593Smuzhiyun unsigned int);
71*4882a593Smuzhiyun extern int cifs_unlink(struct inode *dir, struct dentry *dentry);
72*4882a593Smuzhiyun extern int cifs_hardlink(struct dentry *, struct inode *, struct dentry *);
73*4882a593Smuzhiyun extern int cifs_mknod(struct inode *, struct dentry *, umode_t, dev_t);
74*4882a593Smuzhiyun extern int cifs_mkdir(struct inode *, struct dentry *, umode_t);
75*4882a593Smuzhiyun extern int cifs_rmdir(struct inode *, struct dentry *);
76*4882a593Smuzhiyun extern int cifs_rename2(struct inode *, struct dentry *, struct inode *,
77*4882a593Smuzhiyun struct dentry *, unsigned int);
78*4882a593Smuzhiyun extern int cifs_revalidate_file_attr(struct file *filp);
79*4882a593Smuzhiyun extern int cifs_revalidate_dentry_attr(struct dentry *);
80*4882a593Smuzhiyun extern int cifs_revalidate_file(struct file *filp);
81*4882a593Smuzhiyun extern int cifs_revalidate_dentry(struct dentry *);
82*4882a593Smuzhiyun extern int cifs_invalidate_mapping(struct inode *inode);
83*4882a593Smuzhiyun extern int cifs_revalidate_mapping(struct inode *inode);
84*4882a593Smuzhiyun extern int cifs_zap_mapping(struct inode *inode);
85*4882a593Smuzhiyun extern int cifs_getattr(const struct path *, struct kstat *, u32, unsigned int);
86*4882a593Smuzhiyun extern int cifs_setattr(struct dentry *, struct iattr *);
87*4882a593Smuzhiyun extern int cifs_fiemap(struct inode *, struct fiemap_extent_info *, u64 start,
88*4882a593Smuzhiyun u64 len);
89*4882a593Smuzhiyun
90*4882a593Smuzhiyun extern const struct inode_operations cifs_file_inode_ops;
91*4882a593Smuzhiyun extern const struct inode_operations cifs_symlink_inode_ops;
92*4882a593Smuzhiyun extern const struct inode_operations cifs_dfs_referral_inode_operations;
93*4882a593Smuzhiyun
94*4882a593Smuzhiyun
95*4882a593Smuzhiyun /* Functions related to files and directories */
96*4882a593Smuzhiyun extern const struct file_operations cifs_file_ops;
97*4882a593Smuzhiyun extern const struct file_operations cifs_file_direct_ops; /* if directio mnt */
98*4882a593Smuzhiyun extern const struct file_operations cifs_file_strict_ops; /* if strictio mnt */
99*4882a593Smuzhiyun extern const struct file_operations cifs_file_nobrl_ops; /* no brlocks */
100*4882a593Smuzhiyun extern const struct file_operations cifs_file_direct_nobrl_ops;
101*4882a593Smuzhiyun extern const struct file_operations cifs_file_strict_nobrl_ops;
102*4882a593Smuzhiyun extern int cifs_open(struct inode *inode, struct file *file);
103*4882a593Smuzhiyun extern int cifs_close(struct inode *inode, struct file *file);
104*4882a593Smuzhiyun extern int cifs_closedir(struct inode *inode, struct file *file);
105*4882a593Smuzhiyun extern ssize_t cifs_user_readv(struct kiocb *iocb, struct iov_iter *to);
106*4882a593Smuzhiyun extern ssize_t cifs_direct_readv(struct kiocb *iocb, struct iov_iter *to);
107*4882a593Smuzhiyun extern ssize_t cifs_strict_readv(struct kiocb *iocb, struct iov_iter *to);
108*4882a593Smuzhiyun extern ssize_t cifs_user_writev(struct kiocb *iocb, struct iov_iter *from);
109*4882a593Smuzhiyun extern ssize_t cifs_direct_writev(struct kiocb *iocb, struct iov_iter *from);
110*4882a593Smuzhiyun extern ssize_t cifs_strict_writev(struct kiocb *iocb, struct iov_iter *from);
111*4882a593Smuzhiyun extern int cifs_flock(struct file *pfile, int cmd, struct file_lock *plock);
112*4882a593Smuzhiyun extern int cifs_lock(struct file *, int, struct file_lock *);
113*4882a593Smuzhiyun extern int cifs_fsync(struct file *, loff_t, loff_t, int);
114*4882a593Smuzhiyun extern int cifs_strict_fsync(struct file *, loff_t, loff_t, int);
115*4882a593Smuzhiyun extern int cifs_flush(struct file *, fl_owner_t id);
116*4882a593Smuzhiyun extern int cifs_file_mmap(struct file * , struct vm_area_struct *);
117*4882a593Smuzhiyun extern int cifs_file_strict_mmap(struct file * , struct vm_area_struct *);
118*4882a593Smuzhiyun extern const struct file_operations cifs_dir_ops;
119*4882a593Smuzhiyun extern int cifs_dir_open(struct inode *inode, struct file *file);
120*4882a593Smuzhiyun extern int cifs_readdir(struct file *file, struct dir_context *ctx);
121*4882a593Smuzhiyun
122*4882a593Smuzhiyun /* Functions related to dir entries */
123*4882a593Smuzhiyun extern const struct dentry_operations cifs_dentry_ops;
124*4882a593Smuzhiyun extern const struct dentry_operations cifs_ci_dentry_ops;
125*4882a593Smuzhiyun
126*4882a593Smuzhiyun #ifdef CONFIG_CIFS_DFS_UPCALL
127*4882a593Smuzhiyun extern struct vfsmount *cifs_dfs_d_automount(struct path *path);
128*4882a593Smuzhiyun #else
129*4882a593Smuzhiyun #define cifs_dfs_d_automount NULL
130*4882a593Smuzhiyun #endif
131*4882a593Smuzhiyun
132*4882a593Smuzhiyun /* Functions related to symlinks */
133*4882a593Smuzhiyun extern const char *cifs_get_link(struct dentry *, struct inode *,
134*4882a593Smuzhiyun struct delayed_call *);
135*4882a593Smuzhiyun extern int cifs_symlink(struct inode *inode, struct dentry *direntry,
136*4882a593Smuzhiyun const char *symname);
137*4882a593Smuzhiyun
138*4882a593Smuzhiyun #ifdef CONFIG_CIFS_XATTR
139*4882a593Smuzhiyun extern const struct xattr_handler *cifs_xattr_handlers[];
140*4882a593Smuzhiyun extern ssize_t cifs_listxattr(struct dentry *, char *, size_t);
141*4882a593Smuzhiyun #else
142*4882a593Smuzhiyun # define cifs_xattr_handlers NULL
143*4882a593Smuzhiyun # define cifs_listxattr NULL
144*4882a593Smuzhiyun #endif
145*4882a593Smuzhiyun
146*4882a593Smuzhiyun extern ssize_t cifs_file_copychunk_range(unsigned int xid,
147*4882a593Smuzhiyun struct file *src_file, loff_t off,
148*4882a593Smuzhiyun struct file *dst_file, loff_t destoff,
149*4882a593Smuzhiyun size_t len, unsigned int flags);
150*4882a593Smuzhiyun
151*4882a593Smuzhiyun extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg);
152*4882a593Smuzhiyun extern void cifs_setsize(struct inode *inode, loff_t offset);
153*4882a593Smuzhiyun extern int cifs_truncate_page(struct address_space *mapping, loff_t from);
154*4882a593Smuzhiyun
155*4882a593Smuzhiyun #ifdef CONFIG_CIFS_NFSD_EXPORT
156*4882a593Smuzhiyun extern const struct export_operations cifs_export_ops;
157*4882a593Smuzhiyun #endif /* CONFIG_CIFS_NFSD_EXPORT */
158*4882a593Smuzhiyun
159*4882a593Smuzhiyun #define CIFS_VERSION "2.29"
160*4882a593Smuzhiyun #endif /* _CIFSFS_H */
161