blob: 5ec9fd97eccc8994387abba86b64bf34ba53f7eb [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS superblock handling
2 *
David Howells13fcc682018-11-01 23:07:27 +00003 * Copyright (c) 2002, 2007, 2018 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 Howells13fcc682018-11-01 23:07:27 +000024#include <linux/fs_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 Virodde194a2011-06-12 16:01:21 -040033static void afs_kill_super(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static struct inode *afs_alloc_inode(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static void afs_destroy_inode(struct inode *inode);
Al Viro51b9fe42019-04-10 15:05:06 -040036static void afs_free_inode(struct inode *inode);
David Howells45222b92007-05-10 22:22:20 -070037static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
David Howells677018a2017-07-05 16:25:23 +010038static int afs_show_devname(struct seq_file *m, struct dentry *root);
39static int afs_show_options(struct seq_file *m, struct dentry *root);
David Howells13fcc682018-11-01 23:07:27 +000040static int afs_init_fs_context(struct fs_context *fc);
Al Virod7167b12019-09-07 07:23:15 -040041static const struct fs_parameter_spec afs_fs_parameters[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -040043struct file_system_type afs_fs_type = {
David Howells13fcc682018-11-01 23:07:27 +000044 .owner = THIS_MODULE,
45 .name = "afs",
46 .init_fs_context = afs_init_fs_context,
Al Virod7167b12019-09-07 07:23:15 -040047 .parameters = afs_fs_parameters,
David Howells13fcc682018-11-01 23:07:27 +000048 .kill_sb = afs_kill_super,
David Howells79ddbfa2019-04-25 14:26:51 +010049 .fs_flags = FS_RENAME_DOES_D_MOVE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
Eric W. Biederman7f78e032013-03-02 19:39:14 -080051MODULE_ALIAS_FS("afs");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Howells5b86d4f2018-05-18 11:46:15 +010053int afs_net_id;
54
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080055static const struct super_operations afs_super_ops = {
David Howells45222b92007-05-10 22:22:20 -070056 .statfs = afs_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .alloc_inode = afs_alloc_inode,
David Howellsc7f75ef2020-02-06 14:22:30 +000058 .write_inode = afs_write_inode,
wangleibec5eb62010-08-11 09:38:04 +010059 .drop_inode = afs_drop_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .destroy_inode = afs_destroy_inode,
Al Viro51b9fe42019-04-10 15:05:06 -040061 .free_inode = afs_free_inode,
Al Virob57922d2010-06-07 14:34:48 -040062 .evict_inode = afs_evict_inode,
David Howells677018a2017-07-05 16:25:23 +010063 .show_devname = afs_show_devname,
64 .show_options = afs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
Christoph Lametere18b8902006-12-06 20:33:20 -080067static struct kmem_cache *afs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static atomic_t afs_count_active_inodes;
69
David Howells13fcc682018-11-01 23:07:27 +000070enum afs_param {
71 Opt_autocell,
David Howells13fcc682018-11-01 23:07:27 +000072 Opt_dyn,
David Howells6c6c1d62019-04-25 14:26:52 +010073 Opt_flock,
David Howells13fcc682018-11-01 23:07:27 +000074 Opt_source,
David Howells80c72fe2007-05-03 03:11:29 -070075};
76
Al Viro5eede622019-12-16 13:33:32 -050077static const struct constant_table afs_param_flock[] = {
Al Viro2710c957a2019-09-06 22:12:08 -040078 {"local", afs_flock_mode_local },
79 {"openafs", afs_flock_mode_openafs },
80 {"strict", afs_flock_mode_strict },
81 {"write", afs_flock_mode_write },
David Howells13fcc682018-11-01 23:07:27 +000082 {}
83};
84
Al Virod7167b12019-09-07 07:23:15 -040085static const struct fs_parameter_spec afs_fs_parameters[] = {
Al Viro2710c957a2019-09-06 22:12:08 -040086 fsparam_flag ("autocell", Opt_autocell),
87 fsparam_flag ("dyn", Opt_dyn),
88 fsparam_enum ("flock", Opt_flock, afs_param_flock),
89 fsparam_string("source", Opt_source),
David Howells6c6c1d62019-04-25 14:26:52 +010090 {}
91};
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
94 * initialise the filesystem
95 */
96int __init afs_fs_init(void)
97{
98 int ret;
99
100 _enter("");
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 /* create ourselves an inode cache */
103 atomic_set(&afs_count_active_inodes, 0);
104
105 ret = -ENOMEM;
106 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
107 sizeof(struct afs_vnode),
108 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -0800109 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
Paul Mundt20c2df82007-07-20 10:11:58 +0900110 afs_i_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (!afs_inode_cachep) {
112 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
113 return ret;
114 }
115
116 /* now export our filesystem to lesser mortals */
117 ret = register_filesystem(&afs_fs_type);
118 if (ret < 0) {
119 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700120 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return ret;
122 }
123
David Howells08e0e7c2007-04-26 15:55:03 -0700124 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 0;
David Howellsec268152007-04-26 15:49:28 -0700126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * clean up the filesystem
130 */
David Howells5b86d4f2018-05-18 11:46:15 +0100131void afs_fs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
David Howells08e0e7c2007-04-26 15:55:03 -0700133 _enter("");
134
135 afs_mntpt_kill_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 unregister_filesystem(&afs_fs_type);
137
138 if (atomic_read(&afs_count_active_inodes) != 0) {
139 printk("kAFS: %d active inode objects still present\n",
140 atomic_read(&afs_count_active_inodes));
141 BUG();
142 }
143
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000144 /*
145 * Make sure all delayed rcu free inodes are flushed before we
146 * destroy cache.
147 */
148 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700150 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700151}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/*
David Howells677018a2017-07-05 16:25:23 +0100154 * Display the mount device name in /proc/mounts.
155 */
156static int afs_show_devname(struct seq_file *m, struct dentry *root)
157{
David Howellsd2ddc772017-11-02 15:27:50 +0000158 struct afs_super_info *as = AFS_FS_S(root->d_sb);
David Howells677018a2017-07-05 16:25:23 +0100159 struct afs_volume *volume = as->volume;
David Howellsd2ddc772017-11-02 15:27:50 +0000160 struct afs_cell *cell = as->cell;
David Howells677018a2017-07-05 16:25:23 +0100161 const char *suf = "";
162 char pref = '%';
163
David Howells4d673da2018-02-06 06:26:30 +0000164 if (as->dyn_root) {
165 seq_puts(m, "none");
166 return 0;
167 }
David Howells66c7e1d2018-04-06 14:17:25 +0100168
David Howells677018a2017-07-05 16:25:23 +0100169 switch (volume->type) {
170 case AFSVL_RWVOL:
171 break;
172 case AFSVL_ROVOL:
173 pref = '#';
174 if (volume->type_force)
175 suf = ".readonly";
176 break;
177 case AFSVL_BACKVOL:
178 pref = '#';
179 suf = ".backup";
180 break;
181 }
182
David Howellsd2ddc772017-11-02 15:27:50 +0000183 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
David Howells677018a2017-07-05 16:25:23 +0100184 return 0;
185}
186
187/*
188 * Display the mount options in /proc/mounts.
189 */
190static int afs_show_options(struct seq_file *m, struct dentry *root)
191{
David Howells4d673da2018-02-06 06:26:30 +0000192 struct afs_super_info *as = AFS_FS_S(root->d_sb);
David Howells6c6c1d62019-04-25 14:26:52 +0100193 const char *p = NULL;
David Howells4d673da2018-02-06 06:26:30 +0000194
195 if (as->dyn_root)
196 seq_puts(m, ",dyn");
David Howells677018a2017-07-05 16:25:23 +0100197 if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
David Howells4d673da2018-02-06 06:26:30 +0000198 seq_puts(m, ",autocell");
David Howells6c6c1d62019-04-25 14:26:52 +0100199 switch (as->flock_mode) {
200 case afs_flock_mode_unset: break;
201 case afs_flock_mode_local: p = "local"; break;
202 case afs_flock_mode_openafs: p = "openafs"; break;
203 case afs_flock_mode_strict: p = "strict"; break;
204 case afs_flock_mode_write: p = "write"; break;
205 }
206 if (p)
207 seq_printf(m, ",flock=%s", p);
208
David Howells677018a2017-07-05 16:25:23 +0100209 return 0;
210}
211
212/*
David Howells13fcc682018-11-01 23:07:27 +0000213 * Parse the source name to get cell name, volume name, volume type and R/W
214 * selector.
215 *
216 * This can be one of the following:
David Howells00d3b7a2007-04-26 15:57:07 -0700217 * "%[cell:]volume[.]" R/W volume
David Howellsc99c2172018-11-01 23:07:27 +0000218 * "#[cell:]volume[.]" R/O or R/W volume (R/O parent),
219 * or R/W (R/W parent) volume
David Howells00d3b7a2007-04-26 15:57:07 -0700220 * "%[cell:]volume.readonly" R/O volume
221 * "#[cell:]volume.readonly" R/O volume
222 * "%[cell:]volume.backup" Backup volume
223 * "#[cell:]volume.backup" Backup volume
224 */
David Howells13fcc682018-11-01 23:07:27 +0000225static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
David Howells00d3b7a2007-04-26 15:57:07 -0700226{
David Howells13fcc682018-11-01 23:07:27 +0000227 struct afs_fs_context *ctx = fc->fs_private;
David Howells00d3b7a2007-04-26 15:57:07 -0700228 struct afs_cell *cell;
David Howells13fcc682018-11-01 23:07:27 +0000229 const char *cellname, *suffix, *name = param->string;
David Howells00d3b7a2007-04-26 15:57:07 -0700230 int cellnamesz;
231
232 _enter(",%s", name);
David Howells66c7e1d2018-04-06 14:17:25 +0100233
David Howells4cb68292020-12-08 23:52:03 +0000234 if (fc->source)
235 return invalf(fc, "kAFS: Multiple sources not supported");
236
David Howells00d3b7a2007-04-26 15:57:07 -0700237 if (!name) {
238 printk(KERN_ERR "kAFS: no volume name specified\n");
239 return -EINVAL;
240 }
241
242 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
David Howells13fcc682018-11-01 23:07:27 +0000243 /* To use dynroot, we don't want to have to provide a source */
244 if (strcmp(name, "none") == 0) {
245 ctx->no_cell = true;
246 return 0;
247 }
David Howells00d3b7a2007-04-26 15:57:07 -0700248 printk(KERN_ERR "kAFS: unparsable volume name\n");
249 return -EINVAL;
250 }
251
252 /* determine the type of volume we're looking for */
David Howellsc99c2172018-11-01 23:07:27 +0000253 if (name[0] == '%') {
David Howells13fcc682018-11-01 23:07:27 +0000254 ctx->type = AFSVL_RWVOL;
255 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700256 }
257 name++;
258
259 /* split the cell name out if there is one */
David Howells13fcc682018-11-01 23:07:27 +0000260 ctx->volname = strchr(name, ':');
261 if (ctx->volname) {
David Howells00d3b7a2007-04-26 15:57:07 -0700262 cellname = name;
David Howells13fcc682018-11-01 23:07:27 +0000263 cellnamesz = ctx->volname - name;
264 ctx->volname++;
David Howells00d3b7a2007-04-26 15:57:07 -0700265 } else {
David Howells13fcc682018-11-01 23:07:27 +0000266 ctx->volname = name;
David Howells00d3b7a2007-04-26 15:57:07 -0700267 cellname = NULL;
268 cellnamesz = 0;
269 }
270
271 /* the volume type is further affected by a possible suffix */
David Howells13fcc682018-11-01 23:07:27 +0000272 suffix = strrchr(ctx->volname, '.');
David Howells00d3b7a2007-04-26 15:57:07 -0700273 if (suffix) {
274 if (strcmp(suffix, ".readonly") == 0) {
David Howells13fcc682018-11-01 23:07:27 +0000275 ctx->type = AFSVL_ROVOL;
276 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700277 } else if (strcmp(suffix, ".backup") == 0) {
David Howells13fcc682018-11-01 23:07:27 +0000278 ctx->type = AFSVL_BACKVOL;
279 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700280 } else if (suffix[1] == 0) {
281 } else {
282 suffix = NULL;
283 }
284 }
285
David Howells13fcc682018-11-01 23:07:27 +0000286 ctx->volnamesz = suffix ?
287 suffix - ctx->volname : strlen(ctx->volname);
David Howells00d3b7a2007-04-26 15:57:07 -0700288
289 _debug("cell %*.*s [%p]",
David Howells13fcc682018-11-01 23:07:27 +0000290 cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700291
292 /* lookup the cell record */
David Howells13fcc682018-11-01 23:07:27 +0000293 if (cellname) {
294 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
David Howells989782d2017-11-02 15:27:50 +0000295 NULL, false);
David Howells00d3b7a2007-04-26 15:57:07 -0700296 if (IS_ERR(cell)) {
David Howells13fcc682018-11-01 23:07:27 +0000297 pr_err("kAFS: unable to lookup cell '%*.*s'\n",
wangleibec5eb62010-08-11 09:38:04 +0100298 cellnamesz, cellnamesz, cellname ?: "");
David Howells00d3b7a2007-04-26 15:57:07 -0700299 return PTR_ERR(cell);
300 }
David Howellsdca54a72020-10-13 20:51:59 +0100301 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_parse);
302 afs_see_cell(cell, afs_cell_trace_see_source);
David Howells13fcc682018-11-01 23:07:27 +0000303 ctx->cell = cell;
David Howells00d3b7a2007-04-26 15:57:07 -0700304 }
305
306 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
David Howells13fcc682018-11-01 23:07:27 +0000307 ctx->cell->name, ctx->cell,
308 ctx->volnamesz, ctx->volnamesz, ctx->volname,
309 suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
310
311 fc->source = param->string;
312 param->string = NULL;
313 return 0;
314}
315
316/*
317 * Parse a single mount parameter.
318 */
319static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
320{
321 struct fs_parse_result result;
322 struct afs_fs_context *ctx = fc->fs_private;
David Howells13fcc682018-11-01 23:07:27 +0000323 int opt;
324
Al Virod7167b12019-09-07 07:23:15 -0400325 opt = fs_parse(fc, afs_fs_parameters, param, &result);
David Howells13fcc682018-11-01 23:07:27 +0000326 if (opt < 0)
327 return opt;
328
329 switch (opt) {
David Howells13fcc682018-11-01 23:07:27 +0000330 case Opt_source:
331 return afs_parse_source(fc, param);
332
333 case Opt_autocell:
334 ctx->autocell = true;
335 break;
336
337 case Opt_dyn:
338 ctx->dyn_root = true;
339 break;
340
David Howells6c6c1d62019-04-25 14:26:52 +0100341 case Opt_flock:
342 ctx->flock_mode = result.uint_32;
343 break;
344
David Howells13fcc682018-11-01 23:07:27 +0000345 default:
346 return -EINVAL;
347 }
348
349 _leave(" = 0");
350 return 0;
351}
352
353/*
354 * Validate the options, get the cell key and look up the volume.
355 */
356static int afs_validate_fc(struct fs_context *fc)
357{
358 struct afs_fs_context *ctx = fc->fs_private;
359 struct afs_volume *volume;
David Howells8a070a92020-04-25 10:26:02 +0100360 struct afs_cell *cell;
David Howells13fcc682018-11-01 23:07:27 +0000361 struct key *key;
David Howells8a070a92020-04-25 10:26:02 +0100362 int ret;
David Howells13fcc682018-11-01 23:07:27 +0000363
364 if (!ctx->dyn_root) {
365 if (ctx->no_cell) {
366 pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
367 return -EINVAL;
368 }
369
370 if (!ctx->cell) {
371 pr_warn("kAFS: No cell specified\n");
372 return -EDESTADDRREQ;
373 }
374
David Howells8a070a92020-04-25 10:26:02 +0100375 reget_key:
David Howells13fcc682018-11-01 23:07:27 +0000376 /* We try to do the mount securely. */
377 key = afs_request_key(ctx->cell);
378 if (IS_ERR(key))
379 return PTR_ERR(key);
380
381 ctx->key = key;
382
383 if (ctx->volume) {
David Howellscca37d42020-04-29 17:02:04 +0100384 afs_put_volume(ctx->net, ctx->volume,
385 afs_volume_trace_put_validate_fc);
David Howells13fcc682018-11-01 23:07:27 +0000386 ctx->volume = NULL;
387 }
388
David Howells8a070a92020-04-25 10:26:02 +0100389 if (test_bit(AFS_CELL_FL_CHECK_ALIAS, &ctx->cell->flags)) {
390 ret = afs_cell_detect_alias(ctx->cell, key);
391 if (ret < 0)
392 return ret;
393 if (ret == 1) {
394 _debug("switch to alias");
395 key_put(ctx->key);
396 ctx->key = NULL;
David Howellsdca54a72020-10-13 20:51:59 +0100397 cell = afs_use_cell(ctx->cell->alias_of,
398 afs_cell_trace_use_fc_alias);
399 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc);
David Howells8a070a92020-04-25 10:26:02 +0100400 ctx->cell = cell;
401 goto reget_key;
402 }
403 }
404
David Howells13fcc682018-11-01 23:07:27 +0000405 volume = afs_create_volume(ctx);
406 if (IS_ERR(volume))
407 return PTR_ERR(volume);
408
409 ctx->volume = volume;
410 }
David Howells00d3b7a2007-04-26 15:57:07 -0700411
412 return 0;
413}
414
415/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * check a superblock to see if it's the one we're looking for
417 */
David Howells13fcc682018-11-01 23:07:27 +0000418static int afs_test_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
David Howells13fcc682018-11-01 23:07:27 +0000420 struct afs_fs_context *ctx = fc->fs_private;
David Howellsd2ddc772017-11-02 15:27:50 +0000421 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
David Howells13fcc682018-11-01 23:07:27 +0000423 return (as->net_ns == fc->net_ns &&
David Howells4d673da2018-02-06 06:26:30 +0000424 as->volume &&
David Howells13fcc682018-11-01 23:07:27 +0000425 as->volume->vid == ctx->volume->vid &&
David Howells106bc792019-12-11 08:06:08 +0000426 as->cell == ctx->cell &&
David Howells0da0b7f2018-06-15 15:19:22 +0100427 !as->dyn_root);
David Howells4d673da2018-02-06 06:26:30 +0000428}
429
David Howells13fcc682018-11-01 23:07:27 +0000430static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
David Howells4d673da2018-02-06 06:26:30 +0000431{
David Howells0da0b7f2018-06-15 15:19:22 +0100432 struct afs_super_info *as = AFS_FS_S(sb);
433
David Howells13fcc682018-11-01 23:07:27 +0000434 return (as->net_ns == fc->net_ns &&
David Howells0da0b7f2018-06-15 15:19:22 +0100435 as->dyn_root);
Al Virodde194a2011-06-12 16:01:21 -0400436}
437
David Howells13fcc682018-11-01 23:07:27 +0000438static int afs_set_super(struct super_block *sb, struct fs_context *fc)
Al Virodde194a2011-06-12 16:01:21 -0400439{
Al Virodde194a2011-06-12 16:01:21 -0400440 return set_anon_super(sb, NULL);
David Howellsec268152007-04-26 15:49:28 -0700441}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*
444 * fill in the superblock
445 */
David Howells13fcc682018-11-01 23:07:27 +0000446static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
David Howellsd2ddc772017-11-02 15:27:50 +0000448 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct inode *inode = NULL;
450 int ret;
451
David Howells08e0e7c2007-04-26 15:55:03 -0700452 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* fill in the superblock */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300455 sb->s_blocksize = PAGE_SIZE;
456 sb->s_blocksize_bits = PAGE_SHIFT;
Marc Dionneb4852752019-11-21 15:37:26 +0000457 sb->s_maxbytes = MAX_LFS_FILESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 sb->s_magic = AFS_FS_MAGIC;
459 sb->s_op = &afs_super_ops;
David Howells4d673da2018-02-06 06:26:30 +0000460 if (!as->dyn_root)
461 sb->s_xattr = afs_xattr_handlers;
Jan Karaedd3ba92017-04-12 12:24:36 +0200462 ret = super_setup_bdi(sb);
463 if (ret)
464 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /* allocate the root inode and dentry */
David Howells4d673da2018-02-06 06:26:30 +0000467 if (as->dyn_root) {
468 inode = afs_iget_pseudo_dir(sb, true);
David Howells4d673da2018-02-06 06:26:30 +0000469 } else {
David Howells3b6492d2018-10-20 00:57:57 +0100470 sprintf(sb->s_id, "%llu", as->volume->vid);
David Howells4d673da2018-02-06 06:26:30 +0000471 afs_activate_volume(as->volume);
David Howellse49c7b22020-04-10 20:51:51 +0100472 inode = afs_root_iget(sb, ctx->key);
David Howells4d673da2018-02-06 06:26:30 +0000473 }
474
David Howells08e0e7c2007-04-26 15:55:03 -0700475 if (IS_ERR(inode))
Al Virodde194a2011-06-12 16:01:21 -0400476 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
David Howells13fcc682018-11-01 23:07:27 +0000478 if (ctx->autocell || as->dyn_root)
wangleibec5eb62010-08-11 09:38:04 +0100479 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -0500482 sb->s_root = d_make_root(inode);
483 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto error;
485
David Howells0da0b7f2018-06-15 15:19:22 +0100486 if (as->dyn_root) {
David Howells66c7e1d2018-04-06 14:17:25 +0100487 sb->s_d_op = &afs_dynroot_dentry_operations;
David Howells0da0b7f2018-06-15 15:19:22 +0100488 ret = afs_dynroot_populate(sb);
489 if (ret < 0)
490 goto error;
491 } else {
David Howells66c7e1d2018-04-06 14:17:25 +0100492 sb->s_d_op = &afs_fs_dentry_operations;
David Howells20325962020-04-30 01:03:49 +0100493 rcu_assign_pointer(as->volume->sb, sb);
David Howells0da0b7f2018-06-15 15:19:22 +0100494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
David Howells08e0e7c2007-04-26 15:55:03 -0700496 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return 0;
498
David Howellsec268152007-04-26 15:49:28 -0700499error:
David Howells08e0e7c2007-04-26 15:55:03 -0700500 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return ret;
David Howellsec268152007-04-26 15:49:28 -0700502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
David Howells13fcc682018-11-01 23:07:27 +0000504static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
David Howells49566f62017-11-02 15:27:46 +0000505{
David Howells13fcc682018-11-01 23:07:27 +0000506 struct afs_fs_context *ctx = fc->fs_private;
David Howells49566f62017-11-02 15:27:46 +0000507 struct afs_super_info *as;
508
509 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
510 if (as) {
David Howells13fcc682018-11-01 23:07:27 +0000511 as->net_ns = get_net(fc->net_ns);
David Howells6c6c1d62019-04-25 14:26:52 +0100512 as->flock_mode = ctx->flock_mode;
David Howells13fcc682018-11-01 23:07:27 +0000513 if (ctx->dyn_root) {
David Howells4d673da2018-02-06 06:26:30 +0000514 as->dyn_root = true;
David Howells13fcc682018-11-01 23:07:27 +0000515 } else {
David Howellsdca54a72020-10-13 20:51:59 +0100516 as->cell = afs_use_cell(ctx->cell, afs_cell_trace_use_sbi);
David Howellscca37d42020-04-29 17:02:04 +0100517 as->volume = afs_get_volume(ctx->volume,
518 afs_volume_trace_get_alloc_sbi);
David Howells13fcc682018-11-01 23:07:27 +0000519 }
David Howells49566f62017-11-02 15:27:46 +0000520 }
521 return as;
522}
523
524static void afs_destroy_sbi(struct afs_super_info *as)
525{
526 if (as) {
David Howellse49c7b22020-04-10 20:51:51 +0100527 struct afs_net *net = afs_net(as->net_ns);
David Howellscca37d42020-04-29 17:02:04 +0100528 afs_put_volume(net, as->volume, afs_volume_trace_put_destroy_sbi);
David Howellsdca54a72020-10-13 20:51:59 +0100529 afs_unuse_cell(net, as->cell, afs_cell_trace_unuse_sbi);
David Howells5b86d4f2018-05-18 11:46:15 +0100530 put_net(as->net_ns);
David Howells49566f62017-11-02 15:27:46 +0000531 kfree(as);
532 }
533}
534
David Howells0da0b7f2018-06-15 15:19:22 +0100535static void afs_kill_super(struct super_block *sb)
536{
537 struct afs_super_info *as = AFS_FS_S(sb);
David Howells0da0b7f2018-06-15 15:19:22 +0100538
539 if (as->dyn_root)
540 afs_dynroot_depopulate(sb);
David Howells13fcc682018-11-01 23:07:27 +0000541
David Howells0da0b7f2018-06-15 15:19:22 +0100542 /* Clear the callback interests (which will do ilookup5) before
543 * deactivating the superblock.
544 */
545 if (as->volume)
David Howells20325962020-04-30 01:03:49 +0100546 rcu_assign_pointer(as->volume->sb, NULL);
David Howells0da0b7f2018-06-15 15:19:22 +0100547 kill_anon_super(sb);
548 if (as->volume)
549 afs_deactivate_volume(as->volume);
550 afs_destroy_sbi(as);
551}
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/*
David Howells13fcc682018-11-01 23:07:27 +0000554 * Get an AFS superblock and root directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 */
David Howells13fcc682018-11-01 23:07:27 +0000556static int afs_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
David Howells13fcc682018-11-01 23:07:27 +0000558 struct afs_fs_context *ctx = fc->fs_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct super_block *sb;
Al Virodde194a2011-06-12 16:01:21 -0400560 struct afs_super_info *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 int ret;
562
David Howells13fcc682018-11-01 23:07:27 +0000563 ret = afs_validate_fc(fc);
564 if (ret)
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -0800565 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
David Howells13fcc682018-11-01 23:07:27 +0000567 _enter("");
David Howells00d3b7a2007-04-26 15:57:07 -0700568
David Howells49566f62017-11-02 15:27:46 +0000569 /* allocate a superblock info record */
570 ret = -ENOMEM;
David Howells13fcc682018-11-01 23:07:27 +0000571 as = afs_alloc_sbi(fc);
David Howells49566f62017-11-02 15:27:46 +0000572 if (!as)
David Howells13fcc682018-11-01 23:07:27 +0000573 goto error;
574 fc->s_fs_info = as;
David Howellsd2ddc772017-11-02 15:27:50 +0000575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /* allocate a deviceless superblock */
David Howells13fcc682018-11-01 23:07:27 +0000577 sb = sget_fc(fc,
578 as->dyn_root ? afs_dynroot_test_super : afs_test_super,
579 afs_set_super);
David Howells08e0e7c2007-04-26 15:55:03 -0700580 if (IS_ERR(sb)) {
581 ret = PTR_ERR(sb);
David Howells13fcc682018-11-01 23:07:27 +0000582 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
David Howells436058a2007-04-26 15:56:24 -0700585 if (!sb->s_root) {
586 /* initial superblock/root creation */
587 _debug("create");
David Howells13fcc682018-11-01 23:07:27 +0000588 ret = afs_fill_super(sb, ctx);
David Howellsf044c882017-11-02 15:27:45 +0000589 if (ret < 0)
590 goto error_sb;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800591 sb->s_flags |= SB_ACTIVE;
David Howells436058a2007-04-26 15:56:24 -0700592 } else {
593 _debug("reuse");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800594 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
David Howells13fcc682018-11-01 23:07:27 +0000597 fc->root = dget(sb->s_root);
David Howells80548b02019-04-25 14:26:51 +0100598 trace_afs_get_tree(as->cell, as->volume);
David Howells08e0e7c2007-04-26 15:55:03 -0700599 _leave(" = 0 [%p]", sb);
David Howells13fcc682018-11-01 23:07:27 +0000600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
David Howellsf044c882017-11-02 15:27:45 +0000602error_sb:
603 deactivate_locked_super(sb);
David Howellsec268152007-04-26 15:49:28 -0700604error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 _leave(" = %d", ret);
David Howells13fcc682018-11-01 23:07:27 +0000606 return ret;
607}
608
609static void afs_free_fc(struct fs_context *fc)
610{
611 struct afs_fs_context *ctx = fc->fs_private;
612
613 afs_destroy_sbi(fc->s_fs_info);
David Howellscca37d42020-04-29 17:02:04 +0100614 afs_put_volume(ctx->net, ctx->volume, afs_volume_trace_put_free_fc);
David Howellsdca54a72020-10-13 20:51:59 +0100615 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc);
David Howells13fcc682018-11-01 23:07:27 +0000616 key_put(ctx->key);
617 kfree(ctx);
618}
619
620static const struct fs_context_operations afs_context_ops = {
621 .free = afs_free_fc,
622 .parse_param = afs_parse_param,
623 .get_tree = afs_get_tree,
624};
625
626/*
627 * Set up the filesystem mount context.
628 */
629static int afs_init_fs_context(struct fs_context *fc)
630{
631 struct afs_fs_context *ctx;
632 struct afs_cell *cell;
633
David Howells13fcc682018-11-01 23:07:27 +0000634 ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
635 if (!ctx)
636 return -ENOMEM;
637
638 ctx->type = AFSVL_ROVOL;
639 ctx->net = afs_net(fc->net_ns);
640
641 /* Default to the workstation cell. */
David Howellsdca54a72020-10-13 20:51:59 +0100642 cell = afs_find_cell(ctx->net, NULL, 0, afs_cell_trace_use_fc);
David Howells13fcc682018-11-01 23:07:27 +0000643 if (IS_ERR(cell))
644 cell = NULL;
645 ctx->cell = cell;
646
647 fc->fs_private = ctx;
648 fc->ops = &afs_context_ops;
649 return 0;
David Howellsec268152007-04-26 15:49:28 -0700650}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652/*
David Howellsf8de4832017-12-01 11:40:43 +0000653 * Initialise an inode cache slab element prior to any use. Note that
654 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
655 * inode to another.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700657static void afs_i_init_once(void *_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
David Howellsec268152007-04-26 15:49:28 -0700659 struct afs_vnode *vnode = _vnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Christoph Lametera35afb82007-05-16 22:10:57 -0700661 memset(vnode, 0, sizeof(*vnode));
662 inode_init_once(&vnode->vfs_inode);
David Howellsd2ddc772017-11-02 15:27:50 +0000663 mutex_init(&vnode->io_lock);
David Howellsb61f7dc2018-04-27 20:46:22 +0100664 init_rwsem(&vnode->validate_lock);
David Howells4343d002017-11-02 15:27:52 +0000665 spin_lock_init(&vnode->wb_lock);
Christoph Lametera35afb82007-05-16 22:10:57 -0700666 spin_lock_init(&vnode->lock);
David Howells4343d002017-11-02 15:27:52 +0000667 INIT_LIST_HEAD(&vnode->wb_keys);
David Howellse8d6c552007-07-15 23:40:12 -0700668 INIT_LIST_HEAD(&vnode->pending_locks);
669 INIT_LIST_HEAD(&vnode->granted_locks);
670 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
David Howells1744a222021-12-14 09:22:12 +0000671 INIT_LIST_HEAD(&vnode->cb_mmap_link);
David Howellsc435ee32017-11-02 15:27:49 +0000672 seqlock_init(&vnode->cb_lock);
David Howellsec268152007-04-26 15:49:28 -0700673}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/*
676 * allocate an AFS inode struct from our slab cache
677 */
678static struct inode *afs_alloc_inode(struct super_block *sb)
679{
680 struct afs_vnode *vnode;
681
David Howellsec268152007-04-26 15:49:28 -0700682 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 if (!vnode)
684 return NULL;
685
686 atomic_inc(&afs_count_active_inodes);
687
David Howellsf8de4832017-12-01 11:40:43 +0000688 /* Reset anything that shouldn't leak from one inode to the next. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 memset(&vnode->fid, 0, sizeof(vnode->fid));
690 memset(&vnode->status, 0, sizeof(vnode->status));
691
692 vnode->volume = NULL;
David Howellsf8de4832017-12-01 11:40:43 +0000693 vnode->lock_key = NULL;
694 vnode->permit_cache = NULL;
David Howellsf8de4832017-12-01 11:40:43 +0000695#ifdef CONFIG_AFS_FSCACHE
696 vnode->cache = NULL;
697#endif
698
David Howells260a9802007-04-26 15:59:35 -0700699 vnode->flags = 1 << AFS_VNODE_UNSET;
David Howellsf8de4832017-12-01 11:40:43 +0000700 vnode->lock_state = AFS_VNODE_LOCK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
David Howells79ddbfa2019-04-25 14:26:51 +0100702 init_rwsem(&vnode->rmdir_lock);
David Howells6e0e99d2021-09-02 16:43:10 +0100703 INIT_WORK(&vnode->cb_work, afs_invalidate_mmap_work);
David Howells79ddbfa2019-04-25 14:26:51 +0100704
David Howells0f300ca2007-05-10 22:22:20 -0700705 _leave(" = %p", &vnode->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return &vnode->vfs_inode;
David Howellsec268152007-04-26 15:49:28 -0700707}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Al Viro51b9fe42019-04-10 15:05:06 -0400709static void afs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100710{
Al Viro51b9fe42019-04-10 15:05:06 -0400711 kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
715 * destroy an AFS inode struct
716 */
717static void afs_destroy_inode(struct inode *inode)
718{
David Howells08e0e7c2007-04-26 15:55:03 -0700719 struct afs_vnode *vnode = AFS_FS_I(inode);
720
David Howells3b6492d2018-10-20 00:57:57 +0100721 _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
David Howells08e0e7c2007-04-26 15:55:03 -0700723 _debug("DESTROY INODE %p", inode);
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 atomic_dec(&afs_count_active_inodes);
David Howellsec268152007-04-26 15:49:28 -0700726}
David Howells45222b92007-05-10 22:22:20 -0700727
David Howellse49c7b22020-04-10 20:51:51 +0100728static void afs_get_volume_status_success(struct afs_operation *op)
729{
730 struct afs_volume_status *vs = &op->volstatus.vs;
731 struct kstatfs *buf = op->volstatus.buf;
732
733 if (vs->max_quota == 0)
734 buf->f_blocks = vs->part_max_blocks;
735 else
736 buf->f_blocks = vs->max_quota;
David Howellsf11a0162020-05-01 22:06:02 +0100737
738 if (buf->f_blocks > vs->blocks_in_use)
739 buf->f_bavail = buf->f_bfree =
740 buf->f_blocks - vs->blocks_in_use;
David Howellse49c7b22020-04-10 20:51:51 +0100741}
742
743static const struct afs_operation_ops afs_get_volume_status_operation = {
744 .issue_afs_rpc = afs_fs_get_volume_status,
745 .issue_yfs_rpc = yfs_fs_get_volume_status,
746 .success = afs_get_volume_status_success,
747};
748
David Howells45222b92007-05-10 22:22:20 -0700749/*
750 * return information about an AFS volume
751 */
752static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
753{
David Howells4d673da2018-02-06 06:26:30 +0000754 struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
David Howellse49c7b22020-04-10 20:51:51 +0100755 struct afs_operation *op;
David Howells2b0143b2015-03-17 22:25:59 +0000756 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells45222b92007-05-10 22:22:20 -0700757
David Howells4d673da2018-02-06 06:26:30 +0000758 buf->f_type = dentry->d_sb->s_magic;
759 buf->f_bsize = AFS_BLOCK_SIZE;
760 buf->f_namelen = AFSNAMEMAX - 1;
761
762 if (as->dyn_root) {
763 buf->f_blocks = 1;
764 buf->f_bavail = 0;
765 buf->f_bfree = 0;
766 return 0;
767 }
David Howells66c7e1d2018-04-06 14:17:25 +0100768
David Howellse49c7b22020-04-10 20:51:51 +0100769 op = afs_alloc_operation(NULL, as->volume);
770 if (IS_ERR(op))
771 return PTR_ERR(op);
David Howells45222b92007-05-10 22:22:20 -0700772
David Howellse49c7b22020-04-10 20:51:51 +0100773 afs_op_set_vnode(op, 0, vnode);
774 op->nr_files = 1;
775 op->volstatus.buf = buf;
776 op->ops = &afs_get_volume_status_operation;
777 return afs_do_sync_operation(op);
David Howells45222b92007-05-10 22:22:20 -0700778}