David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 1 | /* AFS superblock handling |
| 2 | * |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 3 | * Copyright (c) 2002, 2007, 2018 Red Hat, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software may be freely redistributed under the terms of the |
| 6 | * GNU General Public License. |
| 7 | * |
| 8 | * You should have received a copy of the GNU General Public License |
| 9 | * along with this program; if not, write to the Free Software |
| 10 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 11 | * |
| 12 | * Authors: David Howells <dhowells@redhat.com> |
David Woodhouse | 44d1b98 | 2008-06-05 22:46:18 -0700 | [diff] [blame] | 13 | * David Woodhouse <dwmw2@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
wanglei | bec5eb6 | 2010-08-11 09:38:04 +0100 | [diff] [blame] | 19 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/pagemap.h> |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 24 | #include <linux/fs_parser.h> |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 25 | #include <linux/statfs.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 26 | #include <linux/sched.h> |
Eric W. Biederman | f74f70f | 2013-01-31 04:23:54 -0800 | [diff] [blame] | 27 | #include <linux/nsproxy.h> |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 28 | #include <linux/magic.h> |
Eric W. Biederman | f74f70f | 2013-01-31 04:23:54 -0800 | [diff] [blame] | 29 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "internal.h" |
| 31 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 32 | static void afs_i_init_once(void *foo); |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 33 | static void afs_kill_super(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | static struct inode *afs_alloc_inode(struct super_block *sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static void afs_destroy_inode(struct inode *inode); |
Al Viro | 51b9fe4 | 2019-04-10 15:05:06 -0400 | [diff] [blame] | 36 | static void afs_free_inode(struct inode *inode); |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 37 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf); |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 38 | static int afs_show_devname(struct seq_file *m, struct dentry *root); |
| 39 | static int afs_show_options(struct seq_file *m, struct dentry *root); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 40 | static int afs_init_fs_context(struct fs_context *fc); |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 41 | static const struct fs_parameter_spec afs_fs_parameters[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Trond Myklebust | 1f5ce9e | 2006-06-09 09:34:16 -0400 | [diff] [blame] | 43 | struct file_system_type afs_fs_type = { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 44 | .owner = THIS_MODULE, |
| 45 | .name = "afs", |
| 46 | .init_fs_context = afs_init_fs_context, |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 47 | .parameters = afs_fs_parameters, |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 48 | .kill_sb = afs_kill_super, |
David Howells | 79ddbfa | 2019-04-25 14:26:51 +0100 | [diff] [blame] | 49 | .fs_flags = FS_RENAME_DOES_D_MOVE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | }; |
Eric W. Biederman | 7f78e03 | 2013-03-02 19:39:14 -0800 | [diff] [blame] | 51 | MODULE_ALIAS_FS("afs"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
David Howells | 5b86d4f | 2018-05-18 11:46:15 +0100 | [diff] [blame] | 53 | int afs_net_id; |
| 54 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 55 | static const struct super_operations afs_super_ops = { |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 56 | .statfs = afs_statfs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | .alloc_inode = afs_alloc_inode, |
wanglei | bec5eb6 | 2010-08-11 09:38:04 +0100 | [diff] [blame] | 58 | .drop_inode = afs_drop_inode, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | .destroy_inode = afs_destroy_inode, |
Al Viro | 51b9fe4 | 2019-04-10 15:05:06 -0400 | [diff] [blame] | 60 | .free_inode = afs_free_inode, |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 61 | .evict_inode = afs_evict_inode, |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 62 | .show_devname = afs_show_devname, |
| 63 | .show_options = afs_show_options, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | }; |
| 65 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 66 | static struct kmem_cache *afs_inode_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | static atomic_t afs_count_active_inodes; |
| 68 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 69 | enum afs_param { |
| 70 | Opt_autocell, |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 71 | Opt_dyn, |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 72 | Opt_flock, |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 73 | Opt_source, |
David Howells | 80c72fe | 2007-05-03 03:11:29 -0700 | [diff] [blame] | 74 | }; |
| 75 | |
Al Viro | 5eede62 | 2019-12-16 13:33:32 -0500 | [diff] [blame] | 76 | static const struct constant_table afs_param_flock[] = { |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 77 | {"local", afs_flock_mode_local }, |
| 78 | {"openafs", afs_flock_mode_openafs }, |
| 79 | {"strict", afs_flock_mode_strict }, |
| 80 | {"write", afs_flock_mode_write }, |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 81 | {} |
| 82 | }; |
| 83 | |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 84 | static const struct fs_parameter_spec afs_fs_parameters[] = { |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 85 | fsparam_flag ("autocell", Opt_autocell), |
| 86 | fsparam_flag ("dyn", Opt_dyn), |
| 87 | fsparam_enum ("flock", Opt_flock, afs_param_flock), |
| 88 | fsparam_string("source", Opt_source), |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 89 | {} |
| 90 | }; |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* |
| 93 | * initialise the filesystem |
| 94 | */ |
| 95 | int __init afs_fs_init(void) |
| 96 | { |
| 97 | int ret; |
| 98 | |
| 99 | _enter(""); |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /* create ourselves an inode cache */ |
| 102 | atomic_set(&afs_count_active_inodes, 0); |
| 103 | |
| 104 | ret = -ENOMEM; |
| 105 | afs_inode_cachep = kmem_cache_create("afs_inode_cache", |
| 106 | sizeof(struct afs_vnode), |
| 107 | 0, |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 108 | SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 109 | afs_i_init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | if (!afs_inode_cachep) { |
| 111 | printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n"); |
| 112 | return ret; |
| 113 | } |
| 114 | |
| 115 | /* now export our filesystem to lesser mortals */ |
| 116 | ret = register_filesystem(&afs_fs_type); |
| 117 | if (ret < 0) { |
| 118 | kmem_cache_destroy(afs_inode_cachep); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 119 | _leave(" = %d", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return ret; |
| 121 | } |
| 122 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 123 | _leave(" = 0"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | /* |
| 128 | * clean up the filesystem |
| 129 | */ |
David Howells | 5b86d4f | 2018-05-18 11:46:15 +0100 | [diff] [blame] | 130 | void afs_fs_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 132 | _enter(""); |
| 133 | |
| 134 | afs_mntpt_kill_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | unregister_filesystem(&afs_fs_type); |
| 136 | |
| 137 | if (atomic_read(&afs_count_active_inodes) != 0) { |
| 138 | printk("kAFS: %d active inode objects still present\n", |
| 139 | atomic_read(&afs_count_active_inodes)); |
| 140 | BUG(); |
| 141 | } |
| 142 | |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 143 | /* |
| 144 | * Make sure all delayed rcu free inodes are flushed before we |
| 145 | * destroy cache. |
| 146 | */ |
| 147 | rcu_barrier(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | kmem_cache_destroy(afs_inode_cachep); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 149 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 153 | * Display the mount device name in /proc/mounts. |
| 154 | */ |
| 155 | static int afs_show_devname(struct seq_file *m, struct dentry *root) |
| 156 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 157 | struct afs_super_info *as = AFS_FS_S(root->d_sb); |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 158 | struct afs_volume *volume = as->volume; |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 159 | struct afs_cell *cell = as->cell; |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 160 | const char *suf = ""; |
| 161 | char pref = '%'; |
| 162 | |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 163 | if (as->dyn_root) { |
| 164 | seq_puts(m, "none"); |
| 165 | return 0; |
| 166 | } |
David Howells | 66c7e1d | 2018-04-06 14:17:25 +0100 | [diff] [blame] | 167 | |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 168 | switch (volume->type) { |
| 169 | case AFSVL_RWVOL: |
| 170 | break; |
| 171 | case AFSVL_ROVOL: |
| 172 | pref = '#'; |
| 173 | if (volume->type_force) |
| 174 | suf = ".readonly"; |
| 175 | break; |
| 176 | case AFSVL_BACKVOL: |
| 177 | pref = '#'; |
| 178 | suf = ".backup"; |
| 179 | break; |
| 180 | } |
| 181 | |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 182 | seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf); |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | /* |
| 187 | * Display the mount options in /proc/mounts. |
| 188 | */ |
| 189 | static int afs_show_options(struct seq_file *m, struct dentry *root) |
| 190 | { |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 191 | struct afs_super_info *as = AFS_FS_S(root->d_sb); |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 192 | const char *p = NULL; |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 193 | |
| 194 | if (as->dyn_root) |
| 195 | seq_puts(m, ",dyn"); |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 196 | if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags)) |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 197 | seq_puts(m, ",autocell"); |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 198 | switch (as->flock_mode) { |
| 199 | case afs_flock_mode_unset: break; |
| 200 | case afs_flock_mode_local: p = "local"; break; |
| 201 | case afs_flock_mode_openafs: p = "openafs"; break; |
| 202 | case afs_flock_mode_strict: p = "strict"; break; |
| 203 | case afs_flock_mode_write: p = "write"; break; |
| 204 | } |
| 205 | if (p) |
| 206 | seq_printf(m, ",flock=%s", p); |
| 207 | |
David Howells | 677018a | 2017-07-05 16:25:23 +0100 | [diff] [blame] | 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | /* |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 212 | * Parse the source name to get cell name, volume name, volume type and R/W |
| 213 | * selector. |
| 214 | * |
| 215 | * This can be one of the following: |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 216 | * "%[cell:]volume[.]" R/W volume |
David Howells | c99c217 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 217 | * "#[cell:]volume[.]" R/O or R/W volume (R/O parent), |
| 218 | * or R/W (R/W parent) volume |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 219 | * "%[cell:]volume.readonly" R/O volume |
| 220 | * "#[cell:]volume.readonly" R/O volume |
| 221 | * "%[cell:]volume.backup" Backup volume |
| 222 | * "#[cell:]volume.backup" Backup volume |
| 223 | */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 224 | static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param) |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 225 | { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 226 | struct afs_fs_context *ctx = fc->fs_private; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 227 | struct afs_cell *cell; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 228 | const char *cellname, *suffix, *name = param->string; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 229 | int cellnamesz; |
| 230 | |
| 231 | _enter(",%s", name); |
David Howells | 66c7e1d | 2018-04-06 14:17:25 +0100 | [diff] [blame] | 232 | |
David Howells | 4cb6829 | 2020-12-08 23:52:03 +0000 | [diff] [blame] | 233 | if (fc->source) |
| 234 | return invalf(fc, "kAFS: Multiple sources not supported"); |
| 235 | |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 236 | if (!name) { |
| 237 | printk(KERN_ERR "kAFS: no volume name specified\n"); |
| 238 | return -EINVAL; |
| 239 | } |
| 240 | |
| 241 | if ((name[0] != '%' && name[0] != '#') || !name[1]) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 242 | /* To use dynroot, we don't want to have to provide a source */ |
| 243 | if (strcmp(name, "none") == 0) { |
| 244 | ctx->no_cell = true; |
| 245 | return 0; |
| 246 | } |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 247 | printk(KERN_ERR "kAFS: unparsable volume name\n"); |
| 248 | return -EINVAL; |
| 249 | } |
| 250 | |
| 251 | /* determine the type of volume we're looking for */ |
David Howells | c99c217 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 252 | if (name[0] == '%') { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 253 | ctx->type = AFSVL_RWVOL; |
| 254 | ctx->force = true; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 255 | } |
| 256 | name++; |
| 257 | |
| 258 | /* split the cell name out if there is one */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 259 | ctx->volname = strchr(name, ':'); |
| 260 | if (ctx->volname) { |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 261 | cellname = name; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 262 | cellnamesz = ctx->volname - name; |
| 263 | ctx->volname++; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 264 | } else { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 265 | ctx->volname = name; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 266 | cellname = NULL; |
| 267 | cellnamesz = 0; |
| 268 | } |
| 269 | |
| 270 | /* the volume type is further affected by a possible suffix */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 271 | suffix = strrchr(ctx->volname, '.'); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 272 | if (suffix) { |
| 273 | if (strcmp(suffix, ".readonly") == 0) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 274 | ctx->type = AFSVL_ROVOL; |
| 275 | ctx->force = true; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 276 | } else if (strcmp(suffix, ".backup") == 0) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 277 | ctx->type = AFSVL_BACKVOL; |
| 278 | ctx->force = true; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 279 | } else if (suffix[1] == 0) { |
| 280 | } else { |
| 281 | suffix = NULL; |
| 282 | } |
| 283 | } |
| 284 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 285 | ctx->volnamesz = suffix ? |
| 286 | suffix - ctx->volname : strlen(ctx->volname); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 287 | |
| 288 | _debug("cell %*.*s [%p]", |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 289 | cellnamesz, cellnamesz, cellname ?: "", ctx->cell); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 290 | |
| 291 | /* lookup the cell record */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 292 | if (cellname) { |
| 293 | cell = afs_lookup_cell(ctx->net, cellname, cellnamesz, |
David Howells | 989782d | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 294 | NULL, false); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 295 | if (IS_ERR(cell)) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 296 | pr_err("kAFS: unable to lookup cell '%*.*s'\n", |
wanglei | bec5eb6 | 2010-08-11 09:38:04 +0100 | [diff] [blame] | 297 | cellnamesz, cellnamesz, cellname ?: ""); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 298 | return PTR_ERR(cell); |
| 299 | } |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 300 | afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_parse); |
| 301 | afs_see_cell(cell, afs_cell_trace_see_source); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 302 | ctx->cell = cell; |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s", |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 306 | ctx->cell->name, ctx->cell, |
| 307 | ctx->volnamesz, ctx->volnamesz, ctx->volname, |
| 308 | suffix ?: "-", ctx->type, ctx->force ? " FORCE" : ""); |
| 309 | |
| 310 | fc->source = param->string; |
| 311 | param->string = NULL; |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | /* |
| 316 | * Parse a single mount parameter. |
| 317 | */ |
| 318 | static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param) |
| 319 | { |
| 320 | struct fs_parse_result result; |
| 321 | struct afs_fs_context *ctx = fc->fs_private; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 322 | int opt; |
| 323 | |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 324 | opt = fs_parse(fc, afs_fs_parameters, param, &result); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 325 | if (opt < 0) |
| 326 | return opt; |
| 327 | |
| 328 | switch (opt) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 329 | case Opt_source: |
| 330 | return afs_parse_source(fc, param); |
| 331 | |
| 332 | case Opt_autocell: |
| 333 | ctx->autocell = true; |
| 334 | break; |
| 335 | |
| 336 | case Opt_dyn: |
| 337 | ctx->dyn_root = true; |
| 338 | break; |
| 339 | |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 340 | case Opt_flock: |
| 341 | ctx->flock_mode = result.uint_32; |
| 342 | break; |
| 343 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 344 | default: |
| 345 | return -EINVAL; |
| 346 | } |
| 347 | |
| 348 | _leave(" = 0"); |
| 349 | return 0; |
| 350 | } |
| 351 | |
| 352 | /* |
| 353 | * Validate the options, get the cell key and look up the volume. |
| 354 | */ |
| 355 | static int afs_validate_fc(struct fs_context *fc) |
| 356 | { |
| 357 | struct afs_fs_context *ctx = fc->fs_private; |
| 358 | struct afs_volume *volume; |
David Howells | 8a070a9 | 2020-04-25 10:26:02 +0100 | [diff] [blame] | 359 | struct afs_cell *cell; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 360 | struct key *key; |
David Howells | 8a070a9 | 2020-04-25 10:26:02 +0100 | [diff] [blame] | 361 | int ret; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 362 | |
| 363 | if (!ctx->dyn_root) { |
| 364 | if (ctx->no_cell) { |
| 365 | pr_warn("kAFS: Can only specify source 'none' with -o dyn\n"); |
| 366 | return -EINVAL; |
| 367 | } |
| 368 | |
| 369 | if (!ctx->cell) { |
| 370 | pr_warn("kAFS: No cell specified\n"); |
| 371 | return -EDESTADDRREQ; |
| 372 | } |
| 373 | |
David Howells | 8a070a9 | 2020-04-25 10:26:02 +0100 | [diff] [blame] | 374 | reget_key: |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 375 | /* We try to do the mount securely. */ |
| 376 | key = afs_request_key(ctx->cell); |
| 377 | if (IS_ERR(key)) |
| 378 | return PTR_ERR(key); |
| 379 | |
| 380 | ctx->key = key; |
| 381 | |
| 382 | if (ctx->volume) { |
David Howells | cca37d4 | 2020-04-29 17:02:04 +0100 | [diff] [blame] | 383 | afs_put_volume(ctx->net, ctx->volume, |
| 384 | afs_volume_trace_put_validate_fc); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 385 | ctx->volume = NULL; |
| 386 | } |
| 387 | |
David Howells | 8a070a9 | 2020-04-25 10:26:02 +0100 | [diff] [blame] | 388 | if (test_bit(AFS_CELL_FL_CHECK_ALIAS, &ctx->cell->flags)) { |
| 389 | ret = afs_cell_detect_alias(ctx->cell, key); |
| 390 | if (ret < 0) |
| 391 | return ret; |
| 392 | if (ret == 1) { |
| 393 | _debug("switch to alias"); |
| 394 | key_put(ctx->key); |
| 395 | ctx->key = NULL; |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 396 | cell = afs_use_cell(ctx->cell->alias_of, |
| 397 | afs_cell_trace_use_fc_alias); |
| 398 | afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc); |
David Howells | 8a070a9 | 2020-04-25 10:26:02 +0100 | [diff] [blame] | 399 | ctx->cell = cell; |
| 400 | goto reget_key; |
| 401 | } |
| 402 | } |
| 403 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 404 | volume = afs_create_volume(ctx); |
| 405 | if (IS_ERR(volume)) |
| 406 | return PTR_ERR(volume); |
| 407 | |
| 408 | ctx->volume = volume; |
| 409 | } |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
| 414 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | * check a superblock to see if it's the one we're looking for |
| 416 | */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 417 | static int afs_test_super(struct super_block *sb, struct fs_context *fc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 419 | struct afs_fs_context *ctx = fc->fs_private; |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 420 | struct afs_super_info *as = AFS_FS_S(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 422 | return (as->net_ns == fc->net_ns && |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 423 | as->volume && |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 424 | as->volume->vid == ctx->volume->vid && |
David Howells | 106bc79 | 2019-12-11 08:06:08 +0000 | [diff] [blame] | 425 | as->cell == ctx->cell && |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 426 | !as->dyn_root); |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 427 | } |
| 428 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 429 | static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc) |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 430 | { |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 431 | struct afs_super_info *as = AFS_FS_S(sb); |
| 432 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 433 | return (as->net_ns == fc->net_ns && |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 434 | as->dyn_root); |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 435 | } |
| 436 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 437 | static int afs_set_super(struct super_block *sb, struct fs_context *fc) |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 438 | { |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 439 | return set_anon_super(sb, NULL); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 440 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | /* |
| 443 | * fill in the superblock |
| 444 | */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 445 | static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 447 | struct afs_super_info *as = AFS_FS_S(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | struct inode *inode = NULL; |
| 449 | int ret; |
| 450 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 451 | _enter(""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | /* fill in the superblock */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 454 | sb->s_blocksize = PAGE_SIZE; |
| 455 | sb->s_blocksize_bits = PAGE_SHIFT; |
Marc Dionne | b485275 | 2019-11-21 15:37:26 +0000 | [diff] [blame] | 456 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | sb->s_magic = AFS_FS_MAGIC; |
| 458 | sb->s_op = &afs_super_ops; |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 459 | if (!as->dyn_root) |
| 460 | sb->s_xattr = afs_xattr_handlers; |
Jan Kara | edd3ba9 | 2017-04-12 12:24:36 +0200 | [diff] [blame] | 461 | ret = super_setup_bdi(sb); |
| 462 | if (ret) |
| 463 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | /* allocate the root inode and dentry */ |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 466 | if (as->dyn_root) { |
| 467 | inode = afs_iget_pseudo_dir(sb, true); |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 468 | } else { |
David Howells | 3b6492d | 2018-10-20 00:57:57 +0100 | [diff] [blame] | 469 | sprintf(sb->s_id, "%llu", as->volume->vid); |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 470 | afs_activate_volume(as->volume); |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 471 | inode = afs_root_iget(sb, ctx->key); |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 472 | } |
| 473 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 474 | if (IS_ERR(inode)) |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 475 | return PTR_ERR(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 477 | if (ctx->autocell || as->dyn_root) |
wanglei | bec5eb6 | 2010-08-11 09:38:04 +0100 | [diff] [blame] | 478 | set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags); |
| 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | ret = -ENOMEM; |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 481 | sb->s_root = d_make_root(inode); |
| 482 | if (!sb->s_root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | goto error; |
| 484 | |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 485 | if (as->dyn_root) { |
David Howells | 66c7e1d | 2018-04-06 14:17:25 +0100 | [diff] [blame] | 486 | sb->s_d_op = &afs_dynroot_dentry_operations; |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 487 | ret = afs_dynroot_populate(sb); |
| 488 | if (ret < 0) |
| 489 | goto error; |
| 490 | } else { |
David Howells | 66c7e1d | 2018-04-06 14:17:25 +0100 | [diff] [blame] | 491 | sb->s_d_op = &afs_fs_dentry_operations; |
David Howells | 2032596 | 2020-04-30 01:03:49 +0100 | [diff] [blame] | 492 | rcu_assign_pointer(as->volume->sb, sb); |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 495 | _leave(" = 0"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | return 0; |
| 497 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 498 | error: |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 499 | _leave(" = %d", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | return ret; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 501 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 503 | static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc) |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 504 | { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 505 | struct afs_fs_context *ctx = fc->fs_private; |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 506 | struct afs_super_info *as; |
| 507 | |
| 508 | as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); |
| 509 | if (as) { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 510 | as->net_ns = get_net(fc->net_ns); |
David Howells | 6c6c1d6 | 2019-04-25 14:26:52 +0100 | [diff] [blame] | 511 | as->flock_mode = ctx->flock_mode; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 512 | if (ctx->dyn_root) { |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 513 | as->dyn_root = true; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 514 | } else { |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 515 | as->cell = afs_use_cell(ctx->cell, afs_cell_trace_use_sbi); |
David Howells | cca37d4 | 2020-04-29 17:02:04 +0100 | [diff] [blame] | 516 | as->volume = afs_get_volume(ctx->volume, |
| 517 | afs_volume_trace_get_alloc_sbi); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 518 | } |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 519 | } |
| 520 | return as; |
| 521 | } |
| 522 | |
| 523 | static void afs_destroy_sbi(struct afs_super_info *as) |
| 524 | { |
| 525 | if (as) { |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 526 | struct afs_net *net = afs_net(as->net_ns); |
David Howells | cca37d4 | 2020-04-29 17:02:04 +0100 | [diff] [blame] | 527 | afs_put_volume(net, as->volume, afs_volume_trace_put_destroy_sbi); |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 528 | afs_unuse_cell(net, as->cell, afs_cell_trace_unuse_sbi); |
David Howells | 5b86d4f | 2018-05-18 11:46:15 +0100 | [diff] [blame] | 529 | put_net(as->net_ns); |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 530 | kfree(as); |
| 531 | } |
| 532 | } |
| 533 | |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 534 | static void afs_kill_super(struct super_block *sb) |
| 535 | { |
| 536 | struct afs_super_info *as = AFS_FS_S(sb); |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 537 | |
| 538 | if (as->dyn_root) |
| 539 | afs_dynroot_depopulate(sb); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 540 | |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 541 | /* Clear the callback interests (which will do ilookup5) before |
| 542 | * deactivating the superblock. |
| 543 | */ |
| 544 | if (as->volume) |
David Howells | 2032596 | 2020-04-30 01:03:49 +0100 | [diff] [blame] | 545 | rcu_assign_pointer(as->volume->sb, NULL); |
David Howells | 0da0b7f | 2018-06-15 15:19:22 +0100 | [diff] [blame] | 546 | kill_anon_super(sb); |
| 547 | if (as->volume) |
| 548 | afs_deactivate_volume(as->volume); |
| 549 | afs_destroy_sbi(as); |
| 550 | } |
| 551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | /* |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 553 | * Get an AFS superblock and root directory. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 555 | static int afs_get_tree(struct fs_context *fc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 557 | struct afs_fs_context *ctx = fc->fs_private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | struct super_block *sb; |
Al Viro | dde194a | 2011-06-12 16:01:21 -0400 | [diff] [blame] | 559 | struct afs_super_info *as; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | int ret; |
| 561 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 562 | ret = afs_validate_fc(fc); |
| 563 | if (ret) |
Eric W. Biederman | f74f70f | 2013-01-31 04:23:54 -0800 | [diff] [blame] | 564 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 566 | _enter(""); |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 567 | |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 568 | /* allocate a superblock info record */ |
| 569 | ret = -ENOMEM; |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 570 | as = afs_alloc_sbi(fc); |
David Howells | 49566f6 | 2017-11-02 15:27:46 +0000 | [diff] [blame] | 571 | if (!as) |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 572 | goto error; |
| 573 | fc->s_fs_info = as; |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | /* allocate a deviceless superblock */ |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 576 | sb = sget_fc(fc, |
| 577 | as->dyn_root ? afs_dynroot_test_super : afs_test_super, |
| 578 | afs_set_super); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 579 | if (IS_ERR(sb)) { |
| 580 | ret = PTR_ERR(sb); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 581 | goto error; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 582 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
David Howells | 436058a | 2007-04-26 15:56:24 -0700 | [diff] [blame] | 584 | if (!sb->s_root) { |
| 585 | /* initial superblock/root creation */ |
| 586 | _debug("create"); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 587 | ret = afs_fill_super(sb, ctx); |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 588 | if (ret < 0) |
| 589 | goto error_sb; |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 590 | sb->s_flags |= SB_ACTIVE; |
David Howells | 436058a | 2007-04-26 15:56:24 -0700 | [diff] [blame] | 591 | } else { |
| 592 | _debug("reuse"); |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 593 | ASSERTCMP(sb->s_flags, &, SB_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 596 | fc->root = dget(sb->s_root); |
David Howells | 80548b0 | 2019-04-25 14:26:51 +0100 | [diff] [blame] | 597 | trace_afs_get_tree(as->cell, as->volume); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 598 | _leave(" = 0 [%p]", sb); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 599 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
David Howells | f044c88 | 2017-11-02 15:27:45 +0000 | [diff] [blame] | 601 | error_sb: |
| 602 | deactivate_locked_super(sb); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 603 | error: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | _leave(" = %d", ret); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 605 | return ret; |
| 606 | } |
| 607 | |
| 608 | static void afs_free_fc(struct fs_context *fc) |
| 609 | { |
| 610 | struct afs_fs_context *ctx = fc->fs_private; |
| 611 | |
| 612 | afs_destroy_sbi(fc->s_fs_info); |
David Howells | cca37d4 | 2020-04-29 17:02:04 +0100 | [diff] [blame] | 613 | afs_put_volume(ctx->net, ctx->volume, afs_volume_trace_put_free_fc); |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 614 | afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 615 | key_put(ctx->key); |
| 616 | kfree(ctx); |
| 617 | } |
| 618 | |
| 619 | static const struct fs_context_operations afs_context_ops = { |
| 620 | .free = afs_free_fc, |
| 621 | .parse_param = afs_parse_param, |
| 622 | .get_tree = afs_get_tree, |
| 623 | }; |
| 624 | |
| 625 | /* |
| 626 | * Set up the filesystem mount context. |
| 627 | */ |
| 628 | static int afs_init_fs_context(struct fs_context *fc) |
| 629 | { |
| 630 | struct afs_fs_context *ctx; |
| 631 | struct afs_cell *cell; |
| 632 | |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 633 | ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL); |
| 634 | if (!ctx) |
| 635 | return -ENOMEM; |
| 636 | |
| 637 | ctx->type = AFSVL_ROVOL; |
| 638 | ctx->net = afs_net(fc->net_ns); |
| 639 | |
| 640 | /* Default to the workstation cell. */ |
David Howells | dca54a7 | 2020-10-13 20:51:59 +0100 | [diff] [blame] | 641 | cell = afs_find_cell(ctx->net, NULL, 0, afs_cell_trace_use_fc); |
David Howells | 13fcc68 | 2018-11-01 23:07:27 +0000 | [diff] [blame] | 642 | if (IS_ERR(cell)) |
| 643 | cell = NULL; |
| 644 | ctx->cell = cell; |
| 645 | |
| 646 | fc->fs_private = ctx; |
| 647 | fc->ops = &afs_context_ops; |
| 648 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 649 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | /* |
David Howells | f8de483 | 2017-12-01 11:40:43 +0000 | [diff] [blame] | 652 | * Initialise an inode cache slab element prior to any use. Note that |
| 653 | * afs_alloc_inode() *must* reset anything that could incorrectly leak from one |
| 654 | * inode to another. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | */ |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 656 | static void afs_i_init_once(void *_vnode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | { |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 658 | struct afs_vnode *vnode = _vnode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 660 | memset(vnode, 0, sizeof(*vnode)); |
| 661 | inode_init_once(&vnode->vfs_inode); |
David Howells | d2ddc77 | 2017-11-02 15:27:50 +0000 | [diff] [blame] | 662 | mutex_init(&vnode->io_lock); |
David Howells | b61f7dc | 2018-04-27 20:46:22 +0100 | [diff] [blame] | 663 | init_rwsem(&vnode->validate_lock); |
David Howells | 4343d00 | 2017-11-02 15:27:52 +0000 | [diff] [blame] | 664 | spin_lock_init(&vnode->wb_lock); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 665 | spin_lock_init(&vnode->lock); |
David Howells | 4343d00 | 2017-11-02 15:27:52 +0000 | [diff] [blame] | 666 | INIT_LIST_HEAD(&vnode->wb_keys); |
David Howells | e8d6c55 | 2007-07-15 23:40:12 -0700 | [diff] [blame] | 667 | INIT_LIST_HEAD(&vnode->pending_locks); |
| 668 | INIT_LIST_HEAD(&vnode->granted_locks); |
| 669 | INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work); |
David Howells | c435ee3 | 2017-11-02 15:27:49 +0000 | [diff] [blame] | 670 | seqlock_init(&vnode->cb_lock); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 671 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | /* |
| 674 | * allocate an AFS inode struct from our slab cache |
| 675 | */ |
| 676 | static struct inode *afs_alloc_inode(struct super_block *sb) |
| 677 | { |
| 678 | struct afs_vnode *vnode; |
| 679 | |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 680 | vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | if (!vnode) |
| 682 | return NULL; |
| 683 | |
| 684 | atomic_inc(&afs_count_active_inodes); |
| 685 | |
David Howells | f8de483 | 2017-12-01 11:40:43 +0000 | [diff] [blame] | 686 | /* Reset anything that shouldn't leak from one inode to the next. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | memset(&vnode->fid, 0, sizeof(vnode->fid)); |
| 688 | memset(&vnode->status, 0, sizeof(vnode->status)); |
| 689 | |
| 690 | vnode->volume = NULL; |
David Howells | f8de483 | 2017-12-01 11:40:43 +0000 | [diff] [blame] | 691 | vnode->lock_key = NULL; |
| 692 | vnode->permit_cache = NULL; |
David Howells | f8de483 | 2017-12-01 11:40:43 +0000 | [diff] [blame] | 693 | #ifdef CONFIG_AFS_FSCACHE |
| 694 | vnode->cache = NULL; |
| 695 | #endif |
| 696 | |
David Howells | 260a980 | 2007-04-26 15:59:35 -0700 | [diff] [blame] | 697 | vnode->flags = 1 << AFS_VNODE_UNSET; |
David Howells | f8de483 | 2017-12-01 11:40:43 +0000 | [diff] [blame] | 698 | vnode->lock_state = AFS_VNODE_LOCK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | |
David Howells | 79ddbfa | 2019-04-25 14:26:51 +0100 | [diff] [blame] | 700 | init_rwsem(&vnode->rmdir_lock); |
| 701 | |
David Howells | 0f300ca | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 702 | _leave(" = %p", &vnode->vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | return &vnode->vfs_inode; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 704 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | |
Al Viro | 51b9fe4 | 2019-04-10 15:05:06 -0400 | [diff] [blame] | 706 | static void afs_free_inode(struct inode *inode) |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 707 | { |
Al Viro | 51b9fe4 | 2019-04-10 15:05:06 -0400 | [diff] [blame] | 708 | kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode)); |
Nick Piggin | fa0d7e3d | 2011-01-07 17:49:49 +1100 | [diff] [blame] | 709 | } |
| 710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | /* |
| 712 | * destroy an AFS inode struct |
| 713 | */ |
| 714 | static void afs_destroy_inode(struct inode *inode) |
| 715 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 716 | struct afs_vnode *vnode = AFS_FS_I(inode); |
| 717 | |
David Howells | 3b6492d | 2018-10-20 00:57:57 +0100 | [diff] [blame] | 718 | _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 720 | _debug("DESTROY INODE %p", inode); |
| 721 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | atomic_dec(&afs_count_active_inodes); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 723 | } |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 724 | |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 725 | static void afs_get_volume_status_success(struct afs_operation *op) |
| 726 | { |
| 727 | struct afs_volume_status *vs = &op->volstatus.vs; |
| 728 | struct kstatfs *buf = op->volstatus.buf; |
| 729 | |
| 730 | if (vs->max_quota == 0) |
| 731 | buf->f_blocks = vs->part_max_blocks; |
| 732 | else |
| 733 | buf->f_blocks = vs->max_quota; |
David Howells | f11a016 | 2020-05-01 22:06:02 +0100 | [diff] [blame] | 734 | |
| 735 | if (buf->f_blocks > vs->blocks_in_use) |
| 736 | buf->f_bavail = buf->f_bfree = |
| 737 | buf->f_blocks - vs->blocks_in_use; |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | static const struct afs_operation_ops afs_get_volume_status_operation = { |
| 741 | .issue_afs_rpc = afs_fs_get_volume_status, |
| 742 | .issue_yfs_rpc = yfs_fs_get_volume_status, |
| 743 | .success = afs_get_volume_status_success, |
| 744 | }; |
| 745 | |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 746 | /* |
| 747 | * return information about an AFS volume |
| 748 | */ |
| 749 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf) |
| 750 | { |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 751 | struct afs_super_info *as = AFS_FS_S(dentry->d_sb); |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 752 | struct afs_operation *op; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 753 | struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry)); |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 754 | |
David Howells | 4d673da | 2018-02-06 06:26:30 +0000 | [diff] [blame] | 755 | buf->f_type = dentry->d_sb->s_magic; |
| 756 | buf->f_bsize = AFS_BLOCK_SIZE; |
| 757 | buf->f_namelen = AFSNAMEMAX - 1; |
| 758 | |
| 759 | if (as->dyn_root) { |
| 760 | buf->f_blocks = 1; |
| 761 | buf->f_bavail = 0; |
| 762 | buf->f_bfree = 0; |
| 763 | return 0; |
| 764 | } |
David Howells | 66c7e1d | 2018-04-06 14:17:25 +0100 | [diff] [blame] | 765 | |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 766 | op = afs_alloc_operation(NULL, as->volume); |
| 767 | if (IS_ERR(op)) |
| 768 | return PTR_ERR(op); |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 769 | |
David Howells | e49c7b2 | 2020-04-10 20:51:51 +0100 | [diff] [blame] | 770 | afs_op_set_vnode(op, 0, vnode); |
| 771 | op->nr_files = 1; |
| 772 | op->volstatus.buf = buf; |
| 773 | op->ops = &afs_get_volume_status_operation; |
| 774 | return afs_do_sync_operation(op); |
David Howells | 45222b9 | 2007-05-10 22:22:20 -0700 | [diff] [blame] | 775 | } |