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 | * |
| 4 | * Copyright (c) International Business Machines Corp., 2002,2004 |
| 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | */ |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 8 | #include <linux/rbtree.h> |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #ifndef _CIFS_FS_SB_H |
| 11 | #define _CIFS_FS_SB_H |
| 12 | |
Jens Axboe | 8044f7f | 2010-04-22 12:09:48 +0200 | [diff] [blame] | 13 | #include <linux/backing-dev.h> |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #define CIFS_MOUNT_NO_PERM 1 /* do not do client vfs_perm check */ |
David Howells | a001e5b | 2008-11-14 10:38:47 +1100 | [diff] [blame] | 16 | #define CIFS_MOUNT_SET_UID 2 /* set current's euid in create etc. */ |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 17 | #define CIFS_MOUNT_SERVER_INUM 4 /* inode numbers from uniqueid from server */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #define CIFS_MOUNT_DIRECT_IO 8 /* do not write nor read through page cache */ |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 19 | #define CIFS_MOUNT_NO_XATTR 0x10 /* if set - disable xattr support */ |
| 20 | #define CIFS_MOUNT_MAP_SPECIAL_CHR 0x20 /* remap illegal chars in filenames */ |
| 21 | #define CIFS_MOUNT_POSIX_PATHS 0x40 /* Negotiate posix pathnames if possible*/ |
| 22 | #define CIFS_MOUNT_UNX_EMUL 0x80 /* Network compat with SFUnix emulation */ |
| 23 | #define CIFS_MOUNT_NO_BRL 0x100 /* No sending byte range locks to srv */ |
| 24 | #define CIFS_MOUNT_CIFS_ACL 0x200 /* send ACL requests to non-POSIX srv */ |
| 25 | #define CIFS_MOUNT_OVERR_UID 0x400 /* override uid returned from server */ |
| 26 | #define CIFS_MOUNT_OVERR_GID 0x800 /* override gid returned from server */ |
Steve French | 13a6e42 | 2008-12-02 17:24:33 +0000 | [diff] [blame] | 27 | #define CIFS_MOUNT_DYNPERM 0x1000 /* allow in-memory only mode setting */ |
| 28 | #define CIFS_MOUNT_NOPOSIXBRL 0x2000 /* mandatory not posix byte range lock */ |
Steve French | 4717bed | 2009-02-24 14:44:19 +0000 | [diff] [blame] | 29 | #define CIFS_MOUNT_NOSSYNC 0x4000 /* don't do slow SMBflush on every sync*/ |
Suresh Jayaraman | fa1df75 | 2010-07-05 18:13:36 +0530 | [diff] [blame] | 30 | #define CIFS_MOUNT_FSCACHE 0x8000 /* local caching enabled */ |
Stefan Metzmacher | 1b12b9c | 2010-08-05 21:19:56 +0200 | [diff] [blame] | 31 | #define CIFS_MOUNT_MF_SYMLINKS 0x10000 /* Minshall+French Symlinks enabled */ |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 32 | #define CIFS_MOUNT_MULTIUSER 0x20000 /* multiuser mount */ |
Pavel Shilovsky | 4f8ba8a | 2010-11-21 22:36:12 +0300 | [diff] [blame] | 33 | #define CIFS_MOUNT_STRICT_IO 0x40000 /* strict cache mode */ |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 34 | #define CIFS_MOUNT_RWPIDFORWARD 0x80000 /* use pid forwarding for rw */ |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 35 | #define CIFS_MOUNT_POSIXACL 0x100000 /* mirror of SB_POSIXACL in mnt_cifs_flags */ |
Shirish Pargaonkar | 3d3ea8e | 2011-09-26 09:56:44 -0500 | [diff] [blame] | 36 | #define CIFS_MOUNT_CIFS_BACKUPUID 0x200000 /* backup intent bit for a user */ |
| 37 | #define CIFS_MOUNT_CIFS_BACKUPGID 0x400000 /* backup intent bit for a group */ |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame] | 38 | #define CIFS_MOUNT_MAP_SFM_CHR 0x800000 /* SFM/MAC mapping for illegal chars */ |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 39 | #define CIFS_MOUNT_USE_PREFIX_PATH 0x1000000 /* make subpath with unaccessible |
| 40 | * root mountable |
| 41 | */ |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 42 | #define CIFS_MOUNT_UID_FROM_ACL 0x2000000 /* try to get UID via special SID */ |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 43 | #define CIFS_MOUNT_NO_HANDLE_CACHE 0x4000000 /* disable caching dir handles */ |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 44 | #define CIFS_MOUNT_NO_DFS 0x8000000 /* disable DFS resolving */ |
Steve French | 412094a | 2019-06-24 02:01:42 -0500 | [diff] [blame] | 45 | #define CIFS_MOUNT_MODE_FROM_SID 0x10000000 /* retrieve mode from special ACE */ |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 46 | #define CIFS_MOUNT_RO_CACHE 0x20000000 /* assumes share will not change */ |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 47 | #define CIFS_MOUNT_RW_CACHE 0x40000000 /* assumes only client accessing */ |
Steve French | 087f757 | 2021-04-29 00:18:43 -0500 | [diff] [blame] | 48 | #define CIFS_MOUNT_SHUTDOWN 0x80000000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | struct cifs_sb_info { |
Jeff Layton | b647c35 | 2010-10-28 11:16:44 -0400 | [diff] [blame] | 51 | struct rb_root tlink_tree; |
Jeff Layton | 9d002df | 2010-10-06 19:51:11 -0400 | [diff] [blame] | 52 | spinlock_t tlink_tree_lock; |
Jeff Layton | 413e661 | 2010-10-28 13:33:38 -0400 | [diff] [blame] | 53 | struct tcon_link *master_tlink; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | struct nls_table *local_nls; |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 55 | struct smb3_fs_context *ctx; |
Jeff Layton | d7c86ff | 2010-10-11 15:07:19 -0400 | [diff] [blame] | 56 | atomic_t active; |
Jeff Layton | 6508d90 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 57 | unsigned int mnt_cifs_flags; |
Jeff Layton | 2de970f | 2010-10-06 19:51:12 -0400 | [diff] [blame] | 58 | struct delayed_work prune_tlinks; |
Al Viro | 2e32cf5 | 2013-10-03 12:53:37 -0400 | [diff] [blame] | 59 | struct rcu_head rcu; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 60 | |
| 61 | /* only used when CIFS_MOUNT_USE_PREFIX_PATH is set */ |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 62 | char *prepath; |
Paulo Alcantara | 93d5cb5 | 2018-11-14 17:13:25 -0200 | [diff] [blame] | 63 | |
Paulo Alcantara | c9f7110 | 2021-06-04 19:25:29 -0300 | [diff] [blame] | 64 | /* randomly generated 128-bit number for indexing dfs mount groups in referral cache */ |
| 65 | uuid_t dfs_mount_id; |
Paulo Alcantara (SUSE) | 29fbeb7 | 2019-06-18 16:16:02 -0300 | [diff] [blame] | 66 | /* |
| 67 | * Indicate whether serverino option was turned off later |
| 68 | * (cifs_autodisable_serverino) in order to match new mounts. |
| 69 | */ |
| 70 | bool mnt_cifs_serverino_autodisabled; |
Ronnie Sahlberg | 269f67e | 2021-03-09 09:07:30 +1000 | [diff] [blame] | 71 | /* |
| 72 | * Available once the mount has completed. |
| 73 | */ |
| 74 | struct dentry *root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | }; |
| 76 | #endif /* _CIFS_FS_SB_H */ |