blob: 65081ec3c36e572c5822d756b86abb52ed757f90 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS superblock handling
2 *
David Howells08e0e7c2007-04-26 15:55:03 -07003 * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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 Woodhouse44d1b982008-06-05 22:46:18 -070013 * David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
wangleibec5eb62010-08-11 09:38:04 +010019#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/pagemap.h>
David Howells80c72fe2007-05-03 03:11:29 -070024#include <linux/parser.h>
David Howells45222b92007-05-10 22:22:20 -070025#include <linux/statfs.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -080027#include <linux/nsproxy.h>
David Howellsf044c882017-11-02 15:27:45 +000028#include <linux/magic.h>
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -080029#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "internal.h"
31
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070032static void afs_i_init_once(void *foo);
Al Virof7442b32010-07-26 14:16:21 +040033static struct dentry *afs_mount(struct file_system_type *fs_type,
34 int flags, const char *dev_name, void *data);
Al Virodde194a2011-06-12 16:01:21 -040035static void afs_kill_super(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static struct inode *afs_alloc_inode(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static void afs_destroy_inode(struct inode *inode);
David Howells45222b92007-05-10 22:22:20 -070038static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
David Howells677018a2017-07-05 16:25:23 +010039static int afs_show_devname(struct seq_file *m, struct dentry *root);
40static int afs_show_options(struct seq_file *m, struct dentry *root);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -040042struct file_system_type afs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .owner = THIS_MODULE,
44 .name = "afs",
Al Virof7442b32010-07-26 14:16:21 +040045 .mount = afs_mount,
Al Virodde194a2011-06-12 16:01:21 -040046 .kill_sb = afs_kill_super,
David Howells80c72fe2007-05-03 03:11:29 -070047 .fs_flags = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
Eric W. Biederman7f78e032013-03-02 19:39:14 -080049MODULE_ALIAS_FS("afs");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080051static const struct super_operations afs_super_ops = {
David Howells45222b92007-05-10 22:22:20 -070052 .statfs = afs_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .alloc_inode = afs_alloc_inode,
wangleibec5eb62010-08-11 09:38:04 +010054 .drop_inode = afs_drop_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .destroy_inode = afs_destroy_inode,
Al Virob57922d2010-06-07 14:34:48 -040056 .evict_inode = afs_evict_inode,
David Howells677018a2017-07-05 16:25:23 +010057 .show_devname = afs_show_devname,
58 .show_options = afs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Christoph Lametere18b8902006-12-06 20:33:20 -080061static struct kmem_cache *afs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static atomic_t afs_count_active_inodes;
63
David Howells80c72fe2007-05-03 03:11:29 -070064enum {
65 afs_no_opt,
66 afs_opt_cell,
David Howells4d673da2018-02-06 06:26:30 +000067 afs_opt_dyn,
David Howells80c72fe2007-05-03 03:11:29 -070068 afs_opt_rwpath,
69 afs_opt_vol,
wangleibec5eb62010-08-11 09:38:04 +010070 afs_opt_autocell,
David Howells80c72fe2007-05-03 03:11:29 -070071};
72
Steven Whitehousea447c092008-10-13 10:46:57 +010073static const match_table_t afs_options_list = {
David Howells80c72fe2007-05-03 03:11:29 -070074 { afs_opt_cell, "cell=%s" },
David Howells4d673da2018-02-06 06:26:30 +000075 { afs_opt_dyn, "dyn" },
David Howells80c72fe2007-05-03 03:11:29 -070076 { afs_opt_rwpath, "rwpath" },
77 { afs_opt_vol, "vol=%s" },
wangleibec5eb62010-08-11 09:38:04 +010078 { afs_opt_autocell, "autocell" },
David Howells80c72fe2007-05-03 03:11:29 -070079 { afs_no_opt, NULL },
80};
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
83 * initialise the filesystem
84 */
85int __init afs_fs_init(void)
86{
87 int ret;
88
89 _enter("");
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /* create ourselves an inode cache */
92 atomic_set(&afs_count_active_inodes, 0);
93
94 ret = -ENOMEM;
95 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
96 sizeof(struct afs_vnode),
97 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -080098 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
Paul Mundt20c2df82007-07-20 10:11:58 +090099 afs_i_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (!afs_inode_cachep) {
101 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
102 return ret;
103 }
104
105 /* now export our filesystem to lesser mortals */
106 ret = register_filesystem(&afs_fs_type);
107 if (ret < 0) {
108 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700109 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return ret;
111 }
112
David Howells08e0e7c2007-04-26 15:55:03 -0700113 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
David Howellsec268152007-04-26 15:49:28 -0700115}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
118 * clean up the filesystem
119 */
120void __exit afs_fs_exit(void)
121{
David Howells08e0e7c2007-04-26 15:55:03 -0700122 _enter("");
123
124 afs_mntpt_kill_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 unregister_filesystem(&afs_fs_type);
126
127 if (atomic_read(&afs_count_active_inodes) != 0) {
128 printk("kAFS: %d active inode objects still present\n",
129 atomic_read(&afs_count_active_inodes));
130 BUG();
131 }
132
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000133 /*
134 * Make sure all delayed rcu free inodes are flushed before we
135 * destroy cache.
136 */
137 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700139 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700140}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
David Howells677018a2017-07-05 16:25:23 +0100143 * Display the mount device name in /proc/mounts.
144 */
145static int afs_show_devname(struct seq_file *m, struct dentry *root)
146{
David Howellsd2ddc772017-11-02 15:27:50 +0000147 struct afs_super_info *as = AFS_FS_S(root->d_sb);
David Howells677018a2017-07-05 16:25:23 +0100148 struct afs_volume *volume = as->volume;
David Howellsd2ddc772017-11-02 15:27:50 +0000149 struct afs_cell *cell = as->cell;
David Howells677018a2017-07-05 16:25:23 +0100150 const char *suf = "";
151 char pref = '%';
152
David Howells4d673da2018-02-06 06:26:30 +0000153 if (as->dyn_root) {
154 seq_puts(m, "none");
155 return 0;
156 }
David Howells66c7e1d2018-04-06 14:17:25 +0100157
David Howells677018a2017-07-05 16:25:23 +0100158 switch (volume->type) {
159 case AFSVL_RWVOL:
160 break;
161 case AFSVL_ROVOL:
162 pref = '#';
163 if (volume->type_force)
164 suf = ".readonly";
165 break;
166 case AFSVL_BACKVOL:
167 pref = '#';
168 suf = ".backup";
169 break;
170 }
171
David Howellsd2ddc772017-11-02 15:27:50 +0000172 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
David Howells677018a2017-07-05 16:25:23 +0100173 return 0;
174}
175
176/*
177 * Display the mount options in /proc/mounts.
178 */
179static int afs_show_options(struct seq_file *m, struct dentry *root)
180{
David Howells4d673da2018-02-06 06:26:30 +0000181 struct afs_super_info *as = AFS_FS_S(root->d_sb);
182
183 if (as->dyn_root)
184 seq_puts(m, ",dyn");
David Howells677018a2017-07-05 16:25:23 +0100185 if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
David Howells4d673da2018-02-06 06:26:30 +0000186 seq_puts(m, ",autocell");
David Howells677018a2017-07-05 16:25:23 +0100187 return 0;
188}
189
190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * parse the mount options
192 * - this function has been shamelessly adapted from the ext3 fs which
193 * shamelessly adapted it from the msdos fs
194 */
David Howells00d3b7a2007-04-26 15:57:07 -0700195static int afs_parse_options(struct afs_mount_params *params,
196 char *options, const char **devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
David Howells08e0e7c2007-04-26 15:55:03 -0700198 struct afs_cell *cell;
David Howells80c72fe2007-05-03 03:11:29 -0700199 substring_t args[MAX_OPT_ARGS];
200 char *p;
201 int token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 _enter("%s", options);
204
205 options[PAGE_SIZE - 1] = 0;
206
David Howells80c72fe2007-05-03 03:11:29 -0700207 while ((p = strsep(&options, ","))) {
208 if (!*p)
209 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
David Howells80c72fe2007-05-03 03:11:29 -0700211 token = match_token(p, afs_options_list, args);
212 switch (token) {
213 case afs_opt_cell:
David Howells989782d2017-11-02 15:27:50 +0000214 rcu_read_lock();
215 cell = afs_lookup_cell_rcu(params->net,
216 args[0].from,
217 args[0].to - args[0].from);
218 rcu_read_unlock();
David Howells08e0e7c2007-04-26 15:55:03 -0700219 if (IS_ERR(cell))
220 return PTR_ERR(cell);
David Howells9ed900b2017-11-02 15:27:46 +0000221 afs_put_cell(params->net, params->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700222 params->cell = cell;
David Howells80c72fe2007-05-03 03:11:29 -0700223 break;
224
225 case afs_opt_rwpath:
David Howells4d673da2018-02-06 06:26:30 +0000226 params->rwpath = true;
David Howells80c72fe2007-05-03 03:11:29 -0700227 break;
228
229 case afs_opt_vol:
230 *devname = args[0].from;
231 break;
232
wangleibec5eb62010-08-11 09:38:04 +0100233 case afs_opt_autocell:
David Howells4d673da2018-02-06 06:26:30 +0000234 params->autocell = true;
235 break;
236
237 case afs_opt_dyn:
238 params->dyn_root = true;
wangleibec5eb62010-08-11 09:38:04 +0100239 break;
240
David Howells80c72fe2007-05-03 03:11:29 -0700241 default:
242 printk(KERN_ERR "kAFS:"
243 " Unknown or invalid mount option: '%s'\n", p);
244 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
David Howells80c72fe2007-05-03 03:11:29 -0700248 _leave(" = 0");
249 return 0;
David Howellsec268152007-04-26 15:49:28 -0700250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/*
David Howells00d3b7a2007-04-26 15:57:07 -0700253 * parse a device name to get cell name, volume name, volume type and R/W
254 * selector
255 * - this can be one of the following:
256 * "%[cell:]volume[.]" R/W volume
257 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
258 * or R/W (rwpath=1) volume
259 * "%[cell:]volume.readonly" R/O volume
260 * "#[cell:]volume.readonly" R/O volume
261 * "%[cell:]volume.backup" Backup volume
262 * "#[cell:]volume.backup" Backup volume
263 */
264static int afs_parse_device_name(struct afs_mount_params *params,
265 const char *name)
266{
267 struct afs_cell *cell;
268 const char *cellname, *suffix;
269 int cellnamesz;
270
271 _enter(",%s", name);
David Howells66c7e1d2018-04-06 14:17:25 +0100272
David Howells00d3b7a2007-04-26 15:57:07 -0700273 if (!name) {
274 printk(KERN_ERR "kAFS: no volume name specified\n");
275 return -EINVAL;
276 }
277
278 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
279 printk(KERN_ERR "kAFS: unparsable volume name\n");
280 return -EINVAL;
281 }
282
283 /* determine the type of volume we're looking for */
284 params->type = AFSVL_ROVOL;
285 params->force = false;
286 if (params->rwpath || name[0] == '%') {
287 params->type = AFSVL_RWVOL;
288 params->force = true;
289 }
290 name++;
291
292 /* split the cell name out if there is one */
293 params->volname = strchr(name, ':');
294 if (params->volname) {
295 cellname = name;
296 cellnamesz = params->volname - name;
297 params->volname++;
298 } else {
299 params->volname = name;
300 cellname = NULL;
301 cellnamesz = 0;
302 }
303
304 /* the volume type is further affected by a possible suffix */
305 suffix = strrchr(params->volname, '.');
306 if (suffix) {
307 if (strcmp(suffix, ".readonly") == 0) {
308 params->type = AFSVL_ROVOL;
309 params->force = true;
310 } else if (strcmp(suffix, ".backup") == 0) {
311 params->type = AFSVL_BACKVOL;
312 params->force = true;
313 } else if (suffix[1] == 0) {
314 } else {
315 suffix = NULL;
316 }
317 }
318
319 params->volnamesz = suffix ?
320 suffix - params->volname : strlen(params->volname);
321
322 _debug("cell %*.*s [%p]",
323 cellnamesz, cellnamesz, cellname ?: "", params->cell);
324
325 /* lookup the cell record */
326 if (cellname || !params->cell) {
David Howells989782d2017-11-02 15:27:50 +0000327 cell = afs_lookup_cell(params->net, cellname, cellnamesz,
328 NULL, false);
David Howells00d3b7a2007-04-26 15:57:07 -0700329 if (IS_ERR(cell)) {
wangleibec5eb62010-08-11 09:38:04 +0100330 printk(KERN_ERR "kAFS: unable to lookup cell '%*.*s'\n",
331 cellnamesz, cellnamesz, cellname ?: "");
David Howells00d3b7a2007-04-26 15:57:07 -0700332 return PTR_ERR(cell);
333 }
David Howells9ed900b2017-11-02 15:27:46 +0000334 afs_put_cell(params->net, params->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700335 params->cell = cell;
336 }
337
338 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
339 params->cell->name, params->cell,
340 params->volnamesz, params->volnamesz, params->volname,
341 suffix ?: "-", params->type, params->force ? " FORCE" : "");
342
343 return 0;
344}
345
346/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * check a superblock to see if it's the one we're looking for
348 */
349static int afs_test_super(struct super_block *sb, void *data)
350{
Al Virodde194a2011-06-12 16:01:21 -0400351 struct afs_super_info *as1 = data;
David Howellsd2ddc772017-11-02 15:27:50 +0000352 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
David Howells4d673da2018-02-06 06:26:30 +0000354 return (as->net == as1->net &&
355 as->volume &&
356 as->volume->vid == as1->volume->vid);
357}
358
359static int afs_dynroot_test_super(struct super_block *sb, void *data)
360{
361 return false;
Al Virodde194a2011-06-12 16:01:21 -0400362}
363
364static int afs_set_super(struct super_block *sb, void *data)
365{
David Howellsd2ddc772017-11-02 15:27:50 +0000366 struct afs_super_info *as = data;
367
368 sb->s_fs_info = as;
Al Virodde194a2011-06-12 16:01:21 -0400369 return set_anon_super(sb, NULL);
David Howellsec268152007-04-26 15:49:28 -0700370}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372/*
373 * fill in the superblock
374 */
Al Virodde194a2011-06-12 16:01:21 -0400375static int afs_fill_super(struct super_block *sb,
376 struct afs_mount_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
David Howellsd2ddc772017-11-02 15:27:50 +0000378 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct afs_fid fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct inode *inode = NULL;
381 int ret;
382
David Howells08e0e7c2007-04-26 15:55:03 -0700383 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* fill in the superblock */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300386 sb->s_blocksize = PAGE_SIZE;
387 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 sb->s_magic = AFS_FS_MAGIC;
389 sb->s_op = &afs_super_ops;
David Howells4d673da2018-02-06 06:26:30 +0000390 if (!as->dyn_root)
391 sb->s_xattr = afs_xattr_handlers;
Jan Karaedd3ba92017-04-12 12:24:36 +0200392 ret = super_setup_bdi(sb);
393 if (ret)
394 return ret;
395 sb->s_bdi->ra_pages = VM_MAX_READAHEAD * 1024 / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 /* allocate the root inode and dentry */
David Howells4d673da2018-02-06 06:26:30 +0000398 if (as->dyn_root) {
399 inode = afs_iget_pseudo_dir(sb, true);
400 sb->s_flags |= SB_RDONLY;
401 } else {
402 sprintf(sb->s_id, "%u", as->volume->vid);
403 afs_activate_volume(as->volume);
404 fid.vid = as->volume->vid;
405 fid.vnode = 1;
406 fid.unique = 1;
407 inode = afs_iget(sb, params->key, &fid, NULL, NULL, NULL);
408 }
409
David Howells08e0e7c2007-04-26 15:55:03 -0700410 if (IS_ERR(inode))
Al Virodde194a2011-06-12 16:01:21 -0400411 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
David Howells4d673da2018-02-06 06:26:30 +0000413 if (params->autocell || params->dyn_root)
wangleibec5eb62010-08-11 09:38:04 +0100414 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -0500417 sb->s_root = d_make_root(inode);
418 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 goto error;
420
David Howells66c7e1d2018-04-06 14:17:25 +0100421 if (params->dyn_root)
422 sb->s_d_op = &afs_dynroot_dentry_operations;
423 else
424 sb->s_d_op = &afs_fs_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
David Howells08e0e7c2007-04-26 15:55:03 -0700426 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428
David Howellsec268152007-04-26 15:49:28 -0700429error:
David Howells08e0e7c2007-04-26 15:55:03 -0700430 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return ret;
David Howellsec268152007-04-26 15:49:28 -0700432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
David Howells49566f62017-11-02 15:27:46 +0000434static struct afs_super_info *afs_alloc_sbi(struct afs_mount_params *params)
435{
436 struct afs_super_info *as;
437
438 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
439 if (as) {
440 as->net = afs_get_net(params->net);
David Howells4d673da2018-02-06 06:26:30 +0000441 if (params->dyn_root)
442 as->dyn_root = true;
443 else
444 as->cell = afs_get_cell(params->cell);
David Howells49566f62017-11-02 15:27:46 +0000445 }
446 return as;
447}
448
449static void afs_destroy_sbi(struct afs_super_info *as)
450{
451 if (as) {
David Howells9ed900b2017-11-02 15:27:46 +0000452 afs_put_volume(as->cell, as->volume);
453 afs_put_cell(as->net, as->cell);
David Howells49566f62017-11-02 15:27:46 +0000454 afs_put_net(as->net);
455 kfree(as);
456 }
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/*
460 * get an AFS superblock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 */
Al Virof7442b32010-07-26 14:16:21 +0400462static struct dentry *afs_mount(struct file_system_type *fs_type,
David Howells49566f62017-11-02 15:27:46 +0000463 int flags, const char *dev_name, void *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 struct afs_mount_params params;
466 struct super_block *sb;
David Howellsd2ddc772017-11-02 15:27:50 +0000467 struct afs_volume *candidate;
David Howells00d3b7a2007-04-26 15:57:07 -0700468 struct key *key;
Al Virodde194a2011-06-12 16:01:21 -0400469 struct afs_super_info *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 int ret;
471
472 _enter(",,%s,%p", dev_name, options);
473
474 memset(&params, 0, sizeof(params));
David Howellsf044c882017-11-02 15:27:45 +0000475 params.net = &__afs_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -0800477 ret = -EINVAL;
478 if (current->nsproxy->net_ns != &init_net)
479 goto error;
480
David Howells00d3b7a2007-04-26 15:57:07 -0700481 /* parse the options and device name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (options) {
David Howells00d3b7a2007-04-26 15:57:07 -0700483 ret = afs_parse_options(&params, options, &dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (ret < 0)
485 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
David Howells4d673da2018-02-06 06:26:30 +0000488 if (!params.dyn_root) {
489 ret = afs_parse_device_name(&params, dev_name);
490 if (ret < 0)
491 goto error;
David Howells00d3b7a2007-04-26 15:57:07 -0700492
David Howells4d673da2018-02-06 06:26:30 +0000493 /* try and do the mount securely */
494 key = afs_request_key(params.cell);
495 if (IS_ERR(key)) {
496 _leave(" = %ld [key]", PTR_ERR(key));
497 ret = PTR_ERR(key);
498 goto error;
499 }
500 params.key = key;
David Howells00d3b7a2007-04-26 15:57:07 -0700501 }
David Howells00d3b7a2007-04-26 15:57:07 -0700502
David Howells49566f62017-11-02 15:27:46 +0000503 /* allocate a superblock info record */
504 ret = -ENOMEM;
505 as = afs_alloc_sbi(&params);
506 if (!as)
David Howellsd2ddc772017-11-02 15:27:50 +0000507 goto error_key;
David Howells49566f62017-11-02 15:27:46 +0000508
David Howells4d673da2018-02-06 06:26:30 +0000509 if (!params.dyn_root) {
510 /* Assume we're going to need a volume record; at the very
511 * least we can use it to update the volume record if we have
512 * one already. This checks that the volume exists within the
513 * cell.
514 */
515 candidate = afs_create_volume(&params);
516 if (IS_ERR(candidate)) {
517 ret = PTR_ERR(candidate);
518 goto error_as;
519 }
520
521 as->volume = candidate;
David Howells08e0e7c2007-04-26 15:55:03 -0700522 }
David Howellsd2ddc772017-11-02 15:27:50 +0000523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* allocate a deviceless superblock */
David Howells4d673da2018-02-06 06:26:30 +0000525 sb = sget(fs_type,
526 as->dyn_root ? afs_dynroot_test_super : afs_test_super,
527 afs_set_super, flags, as);
David Howells08e0e7c2007-04-26 15:55:03 -0700528 if (IS_ERR(sb)) {
529 ret = PTR_ERR(sb);
David Howellsf044c882017-11-02 15:27:45 +0000530 goto error_as;
David Howells08e0e7c2007-04-26 15:55:03 -0700531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
David Howells436058a2007-04-26 15:56:24 -0700533 if (!sb->s_root) {
534 /* initial superblock/root creation */
535 _debug("create");
David Howells436058a2007-04-26 15:56:24 -0700536 ret = afs_fill_super(sb, &params);
David Howellsf044c882017-11-02 15:27:45 +0000537 if (ret < 0)
538 goto error_sb;
David Howells49566f62017-11-02 15:27:46 +0000539 as = NULL;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800540 sb->s_flags |= SB_ACTIVE;
David Howells436058a2007-04-26 15:56:24 -0700541 } else {
542 _debug("reuse");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800543 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
David Howells49566f62017-11-02 15:27:46 +0000544 afs_destroy_sbi(as);
545 as = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
David Howells9ed900b2017-11-02 15:27:46 +0000548 afs_put_cell(params.net, params.cell);
David Howells49566f62017-11-02 15:27:46 +0000549 key_put(params.key);
David Howells08e0e7c2007-04-26 15:55:03 -0700550 _leave(" = 0 [%p]", sb);
Al Virof7442b32010-07-26 14:16:21 +0400551 return dget(sb->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David Howellsf044c882017-11-02 15:27:45 +0000553error_sb:
554 deactivate_locked_super(sb);
David Howellsd2ddc772017-11-02 15:27:50 +0000555 goto error_key;
David Howellsf044c882017-11-02 15:27:45 +0000556error_as:
David Howells49566f62017-11-02 15:27:46 +0000557 afs_destroy_sbi(as);
David Howellsd2ddc772017-11-02 15:27:50 +0000558error_key:
559 key_put(params.key);
David Howellsec268152007-04-26 15:49:28 -0700560error:
David Howells9ed900b2017-11-02 15:27:46 +0000561 afs_put_cell(params.net, params.cell);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 _leave(" = %d", ret);
Al Virof7442b32010-07-26 14:16:21 +0400563 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700564}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Al Virodde194a2011-06-12 16:01:21 -0400566static void afs_kill_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
David Howellsc435ee32017-11-02 15:27:49 +0000568 struct afs_super_info *as = AFS_FS_S(sb);
David Howellsf044c882017-11-02 15:27:45 +0000569
David Howellsc435ee32017-11-02 15:27:49 +0000570 /* Clear the callback interests (which will do ilookup5) before
571 * deactivating the superblock.
572 */
David Howells4d673da2018-02-06 06:26:30 +0000573 if (as->volume)
574 afs_clear_callback_interests(as->net, as->volume->servers);
Al Virodde194a2011-06-12 16:01:21 -0400575 kill_anon_super(sb);
David Howells4d673da2018-02-06 06:26:30 +0000576 if (as->volume)
577 afs_deactivate_volume(as->volume);
David Howells49566f62017-11-02 15:27:46 +0000578 afs_destroy_sbi(as);
David Howellsec268152007-04-26 15:49:28 -0700579}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
David Howellsf8de4832017-12-01 11:40:43 +0000582 * Initialise an inode cache slab element prior to any use. Note that
583 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
584 * inode to another.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700586static void afs_i_init_once(void *_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
David Howellsec268152007-04-26 15:49:28 -0700588 struct afs_vnode *vnode = _vnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christoph Lametera35afb82007-05-16 22:10:57 -0700590 memset(vnode, 0, sizeof(*vnode));
591 inode_init_once(&vnode->vfs_inode);
David Howellsd2ddc772017-11-02 15:27:50 +0000592 mutex_init(&vnode->io_lock);
Christoph Lametera35afb82007-05-16 22:10:57 -0700593 mutex_init(&vnode->validate_lock);
David Howells4343d002017-11-02 15:27:52 +0000594 spin_lock_init(&vnode->wb_lock);
Christoph Lametera35afb82007-05-16 22:10:57 -0700595 spin_lock_init(&vnode->lock);
David Howells4343d002017-11-02 15:27:52 +0000596 INIT_LIST_HEAD(&vnode->wb_keys);
David Howellse8d6c552007-07-15 23:40:12 -0700597 INIT_LIST_HEAD(&vnode->pending_locks);
598 INIT_LIST_HEAD(&vnode->granted_locks);
599 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
David Howellsc435ee32017-11-02 15:27:49 +0000600 seqlock_init(&vnode->cb_lock);
David Howellsec268152007-04-26 15:49:28 -0700601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/*
604 * allocate an AFS inode struct from our slab cache
605 */
606static struct inode *afs_alloc_inode(struct super_block *sb)
607{
608 struct afs_vnode *vnode;
609
David Howellsec268152007-04-26 15:49:28 -0700610 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!vnode)
612 return NULL;
613
614 atomic_inc(&afs_count_active_inodes);
615
David Howellsf8de4832017-12-01 11:40:43 +0000616 /* Reset anything that shouldn't leak from one inode to the next. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 memset(&vnode->fid, 0, sizeof(vnode->fid));
618 memset(&vnode->status, 0, sizeof(vnode->status));
619
620 vnode->volume = NULL;
David Howellsf8de4832017-12-01 11:40:43 +0000621 vnode->lock_key = NULL;
622 vnode->permit_cache = NULL;
623 vnode->cb_interest = NULL;
624#ifdef CONFIG_AFS_FSCACHE
625 vnode->cache = NULL;
626#endif
627
David Howells260a9802007-04-26 15:59:35 -0700628 vnode->flags = 1 << AFS_VNODE_UNSET;
David Howellsf8de4832017-12-01 11:40:43 +0000629 vnode->cb_type = 0;
630 vnode->lock_state = AFS_VNODE_LOCK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
David Howells0f300ca2007-05-10 22:22:20 -0700632 _leave(" = %p", &vnode->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return &vnode->vfs_inode;
David Howellsec268152007-04-26 15:49:28 -0700634}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100636static void afs_i_callback(struct rcu_head *head)
637{
638 struct inode *inode = container_of(head, struct inode, i_rcu);
639 struct afs_vnode *vnode = AFS_FS_I(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100640 kmem_cache_free(afs_inode_cachep, vnode);
641}
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643/*
644 * destroy an AFS inode struct
645 */
646static void afs_destroy_inode(struct inode *inode)
647{
David Howells08e0e7c2007-04-26 15:55:03 -0700648 struct afs_vnode *vnode = AFS_FS_I(inode);
649
David Howells0f300ca2007-05-10 22:22:20 -0700650 _enter("%p{%x:%u}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
David Howells08e0e7c2007-04-26 15:55:03 -0700652 _debug("DESTROY INODE %p", inode);
653
David Howellsc435ee32017-11-02 15:27:49 +0000654 ASSERTCMP(vnode->cb_interest, ==, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700655
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100656 call_rcu(&inode->i_rcu, afs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 atomic_dec(&afs_count_active_inodes);
David Howellsec268152007-04-26 15:49:28 -0700658}
David Howells45222b92007-05-10 22:22:20 -0700659
660/*
661 * return information about an AFS volume
662 */
663static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
664{
David Howells4d673da2018-02-06 06:26:30 +0000665 struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
David Howellsd2ddc772017-11-02 15:27:50 +0000666 struct afs_fs_cursor fc;
David Howells45222b92007-05-10 22:22:20 -0700667 struct afs_volume_status vs;
David Howells2b0143b2015-03-17 22:25:59 +0000668 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells45222b92007-05-10 22:22:20 -0700669 struct key *key;
670 int ret;
671
David Howells4d673da2018-02-06 06:26:30 +0000672 buf->f_type = dentry->d_sb->s_magic;
673 buf->f_bsize = AFS_BLOCK_SIZE;
674 buf->f_namelen = AFSNAMEMAX - 1;
675
676 if (as->dyn_root) {
677 buf->f_blocks = 1;
678 buf->f_bavail = 0;
679 buf->f_bfree = 0;
680 return 0;
681 }
David Howells66c7e1d2018-04-06 14:17:25 +0100682
David Howells45222b92007-05-10 22:22:20 -0700683 key = afs_request_key(vnode->volume->cell);
684 if (IS_ERR(key))
685 return PTR_ERR(key);
686
David Howellsd2ddc772017-11-02 15:27:50 +0000687 ret = -ERESTARTSYS;
688 if (afs_begin_vnode_operation(&fc, vnode, key)) {
689 fc.flags |= AFS_FS_CURSOR_NO_VSLEEP;
690 while (afs_select_fileserver(&fc)) {
691 fc.cb_break = vnode->cb_break + vnode->cb_s_break;
692 afs_fs_get_volume_status(&fc, &vs);
693 }
694
695 afs_check_for_remote_deletion(&fc, fc.vnode);
696 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
697 ret = afs_end_vnode_operation(&fc);
David Howells45222b92007-05-10 22:22:20 -0700698 }
699
David Howellsd2ddc772017-11-02 15:27:50 +0000700 key_put(key);
David Howells45222b92007-05-10 22:22:20 -0700701
David Howellsd2ddc772017-11-02 15:27:50 +0000702 if (ret == 0) {
David Howellsd2ddc772017-11-02 15:27:50 +0000703 if (vs.max_quota == 0)
704 buf->f_blocks = vs.part_max_blocks;
705 else
706 buf->f_blocks = vs.max_quota;
707 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
708 }
709
710 return ret;
David Howells45222b92007-05-10 22:22:20 -0700711}