Steve French | 929be90 | 2021-06-18 00:31:49 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: LGPL-2.1 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 4 | * Copyright (c) International Business Machines Corp., 2002, 2007 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _CIFSFS_H |
| 10 | #define _CIFSFS_H |
| 11 | |
Jeff Layton | 02323db | 2014-05-02 13:50:02 -0400 | [diff] [blame] | 12 | #include <linux/hash.h> |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #define ROOT_I 2 |
| 15 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 16 | /* |
| 17 | * ino_t is 32-bits on 32-bit arch. We have to squash the 64-bit value down |
Jeff Layton | 02323db | 2014-05-02 13:50:02 -0400 | [diff] [blame] | 18 | * so that it will fit. We use hash_64 to convert the value to 31 bits, and |
| 19 | * then add 1, to ensure that we don't end up with a 0 as the value. |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 20 | */ |
| 21 | static inline ino_t |
| 22 | cifs_uniqueid_to_ino_t(u64 fileid) |
| 23 | { |
Yadan Fan | 1ee9f4b | 2016-02-29 14:44:57 +0800 | [diff] [blame] | 24 | if ((sizeof(ino_t)) < (sizeof(u64))) |
| 25 | return (ino_t)hash_64(fileid, (sizeof(ino_t) * 8) - 1) + 1; |
| 26 | |
Jeff Layton | 02323db | 2014-05-02 13:50:02 -0400 | [diff] [blame] | 27 | return (ino_t)fileid; |
Yadan Fan | 1ee9f4b | 2016-02-29 14:44:57 +0800 | [diff] [blame] | 28 | |
Jeff Layton | cc0bad7 | 2009-06-25 00:56:52 -0400 | [diff] [blame] | 29 | } |
| 30 | |
Miklos Szeredi | a00be0e | 2016-09-16 12:44:21 +0200 | [diff] [blame] | 31 | static inline void cifs_set_time(struct dentry *dentry, unsigned long time) |
| 32 | { |
| 33 | dentry->d_fsdata = (void *) time; |
| 34 | } |
| 35 | |
| 36 | static inline unsigned long cifs_get_time(struct dentry *dentry) |
| 37 | { |
| 38 | return (unsigned long) dentry->d_fsdata; |
| 39 | } |
| 40 | |
Igor Mammedov | e6ab158 | 2008-01-11 01:49:48 +0000 | [diff] [blame] | 41 | extern struct file_system_type cifs_fs_type; |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 42 | extern const struct address_space_operations cifs_addr_ops; |
| 43 | extern const struct address_space_operations cifs_addr_ops_smallbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Mateusz Guzik | 24261fc | 2013-03-08 16:30:03 +0100 | [diff] [blame] | 45 | /* Functions related to super block operations */ |
| 46 | extern void cifs_sb_active(struct super_block *sb); |
| 47 | extern void cifs_sb_deactive(struct super_block *sb); |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* Functions related to inodes */ |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 50 | extern const struct inode_operations cifs_dir_inode_ops; |
Shirish Pargaonkar | 9b6763e | 2011-02-21 23:56:59 -0600 | [diff] [blame] | 51 | extern struct inode *cifs_root_iget(struct super_block *); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 52 | extern int cifs_create(struct user_namespace *, struct inode *, |
| 53 | struct dentry *, umode_t, bool excl); |
Al Viro | d958527 | 2012-06-22 12:39:14 +0400 | [diff] [blame] | 54 | extern int cifs_atomic_open(struct inode *, struct dentry *, |
Al Viro | 44907d7 | 2018-06-08 13:32:02 -0400 | [diff] [blame] | 55 | struct file *, unsigned, umode_t); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 56 | extern struct dentry *cifs_lookup(struct inode *, struct dentry *, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 57 | unsigned int); |
Jeff Layton | 5f0319a | 2008-09-16 14:05:16 -0400 | [diff] [blame] | 58 | extern int cifs_unlink(struct inode *dir, struct dentry *dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | extern int cifs_hardlink(struct dentry *, struct inode *, struct dentry *); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 60 | extern int cifs_mknod(struct user_namespace *, struct inode *, struct dentry *, |
| 61 | umode_t, dev_t); |
| 62 | extern int cifs_mkdir(struct user_namespace *, struct inode *, struct dentry *, |
| 63 | umode_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | extern int cifs_rmdir(struct inode *, struct dentry *); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 65 | extern int cifs_rename2(struct user_namespace *, struct inode *, |
| 66 | struct dentry *, struct inode *, struct dentry *, |
| 67 | unsigned int); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 68 | extern int cifs_revalidate_file_attr(struct file *filp); |
| 69 | extern int cifs_revalidate_dentry_attr(struct dentry *); |
Jeff Layton | abab095 | 2010-02-12 07:44:18 -0500 | [diff] [blame] | 70 | extern int cifs_revalidate_file(struct file *filp); |
Jeff Layton | df2cf17 | 2010-02-12 07:44:16 -0500 | [diff] [blame] | 71 | extern int cifs_revalidate_dentry(struct dentry *); |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 72 | extern int cifs_invalidate_mapping(struct inode *inode); |
Jeff Layton | e284e53 | 2014-04-30 09:31:46 -0400 | [diff] [blame] | 73 | extern int cifs_revalidate_mapping(struct inode *inode); |
Jeff Layton | 4f73c7d | 2014-04-30 09:31:47 -0400 | [diff] [blame] | 74 | extern int cifs_zap_mapping(struct inode *inode); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 75 | extern int cifs_getattr(struct user_namespace *, const struct path *, |
| 76 | struct kstat *, u32, unsigned int); |
| 77 | extern int cifs_setattr(struct user_namespace *, struct dentry *, |
| 78 | struct iattr *); |
Ronnie Sahlberg | 2f3ebab | 2019-04-25 16:45:29 +1000 | [diff] [blame] | 79 | extern int cifs_fiemap(struct inode *, struct fiemap_extent_info *, u64 start, |
| 80 | u64 len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 82 | extern const struct inode_operations cifs_file_inode_ops; |
| 83 | extern const struct inode_operations cifs_symlink_inode_ops; |
Alexey Dobriyan | 6e1d5dc | 2009-09-21 17:01:11 -0700 | [diff] [blame] | 84 | extern const struct inode_operations cifs_dfs_referral_inode_operations; |
Igor Mammedov | 6d5ae0d | 2008-01-25 03:28:31 +0000 | [diff] [blame] | 85 | |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* Functions related to files and directories */ |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 88 | extern const struct file_operations cifs_file_ops; |
Steve French | d38d8c7 | 2007-06-28 19:44:13 +0000 | [diff] [blame] | 89 | extern const struct file_operations cifs_file_direct_ops; /* if directio mnt */ |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 90 | extern const struct file_operations cifs_file_strict_ops; /* if strictio mnt */ |
| 91 | extern const struct file_operations cifs_file_nobrl_ops; /* no brlocks */ |
| 92 | extern const struct file_operations cifs_file_direct_nobrl_ops; |
| 93 | extern const struct file_operations cifs_file_strict_nobrl_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | extern int cifs_open(struct inode *inode, struct file *file); |
| 95 | extern int cifs_close(struct inode *inode, struct file *file); |
| 96 | extern int cifs_closedir(struct inode *inode, struct file *file); |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 97 | extern ssize_t cifs_user_readv(struct kiocb *iocb, struct iov_iter *to); |
Long Li | 6e6e2b8 | 2018-10-31 22:13:09 +0000 | [diff] [blame] | 98 | extern ssize_t cifs_direct_readv(struct kiocb *iocb, struct iov_iter *to); |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 99 | extern ssize_t cifs_strict_readv(struct kiocb *iocb, struct iov_iter *to); |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 100 | extern ssize_t cifs_user_writev(struct kiocb *iocb, struct iov_iter *from); |
Long Li | 8c5f9c1 | 2018-10-31 22:13:10 +0000 | [diff] [blame] | 101 | extern ssize_t cifs_direct_writev(struct kiocb *iocb, struct iov_iter *from); |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 102 | extern ssize_t cifs_strict_writev(struct kiocb *iocb, struct iov_iter *from); |
Steve French | d067799 | 2019-07-16 18:55:38 -0500 | [diff] [blame] | 103 | extern int cifs_flock(struct file *pfile, int cmd, struct file_lock *plock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | extern int cifs_lock(struct file *, int, struct file_lock *); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 105 | extern int cifs_fsync(struct file *, loff_t, loff_t, int); |
| 106 | extern int cifs_strict_fsync(struct file *, loff_t, loff_t, int); |
Miklos Szeredi | 75e1fcc | 2006-06-23 02:05:12 -0700 | [diff] [blame] | 107 | extern int cifs_flush(struct file *, fl_owner_t id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | extern int cifs_file_mmap(struct file * , struct vm_area_struct *); |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 109 | extern int cifs_file_strict_mmap(struct file * , struct vm_area_struct *); |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 110 | extern const struct file_operations cifs_dir_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | extern int cifs_dir_open(struct inode *inode, struct file *file); |
Al Viro | be4ccdc | 2013-05-22 16:17:25 -0400 | [diff] [blame] | 112 | extern int cifs_readdir(struct file *file, struct dir_context *ctx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | /* Functions related to dir entries */ |
Al Viro | 4fd03e8 | 2009-02-20 05:57:07 +0000 | [diff] [blame] | 115 | extern const struct dentry_operations cifs_dentry_ops; |
| 116 | extern const struct dentry_operations cifs_ci_dentry_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
David Howells | 01c64fe | 2011-01-14 18:45:47 +0000 | [diff] [blame] | 118 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 119 | extern struct vfsmount *cifs_dfs_d_automount(struct path *path); |
| 120 | #else |
| 121 | #define cifs_dfs_d_automount NULL |
| 122 | #endif |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* Functions related to symlinks */ |
Al Viro | fceef39 | 2015-12-29 15:58:39 -0500 | [diff] [blame] | 125 | extern const char *cifs_get_link(struct dentry *, struct inode *, |
| 126 | struct delayed_call *); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 127 | extern int cifs_symlink(struct user_namespace *mnt_userns, struct inode *inode, |
| 128 | struct dentry *direntry, const char *symname); |
Andreas Gruenbacher | a9ae008 | 2016-04-22 12:11:38 +0200 | [diff] [blame] | 129 | |
| 130 | #ifdef CONFIG_CIFS_XATTR |
| 131 | extern const struct xattr_handler *cifs_xattr_handlers[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | extern ssize_t cifs_listxattr(struct dentry *, char *, size_t); |
Andreas Gruenbacher | a9ae008 | 2016-04-22 12:11:38 +0200 | [diff] [blame] | 133 | #else |
| 134 | # define cifs_xattr_handlers NULL |
| 135 | # define cifs_listxattr NULL |
| 136 | #endif |
| 137 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 138 | extern ssize_t cifs_file_copychunk_range(unsigned int xid, |
| 139 | struct file *src_file, loff_t off, |
| 140 | struct file *dst_file, loff_t destoff, |
| 141 | size_t len, unsigned int flags); |
| 142 | |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 143 | extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg); |
Ronnie Sahlberg | 8bd0d70 | 2020-01-17 11:45:02 +1000 | [diff] [blame] | 144 | extern void cifs_setsize(struct inode *inode, loff_t offset); |
| 145 | extern int cifs_truncate_page(struct address_space *mapping, loff_t from); |
| 146 | |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 147 | struct smb3_fs_context; |
| 148 | extern struct dentry *cifs_smb3_do_mount(struct file_system_type *fs_type, |
| 149 | int flags, struct smb3_fs_context *ctx); |
| 150 | |
Paul Bolle | f3a6a60 | 2011-10-12 14:14:04 +0200 | [diff] [blame] | 151 | #ifdef CONFIG_CIFS_NFSD_EXPORT |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 152 | extern const struct export_operations cifs_export_ops; |
Paul Bolle | f3a6a60 | 2011-10-12 14:14:04 +0200 | [diff] [blame] | 153 | #endif /* CONFIG_CIFS_NFSD_EXPORT */ |
Steve French | 297647c | 2007-10-12 04:11:59 +0000 | [diff] [blame] | 154 | |
Steve French | 5162015 | 2022-01-19 22:11:33 -0600 | [diff] [blame] | 155 | #define SMB3_PRODUCT_BUILD 35 |
| 156 | #define CIFS_VERSION "2.35" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | #endif /* _CIFSFS_H */ |