blob: bab89763119b0cf27954ac007a15bbdd28002136 [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);
41static const struct fs_parameter_description 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,
47 .parameters = &afs_fs_parameters,
48 .kill_sb = afs_kill_super,
49 .fs_flags = 0,
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,
wangleibec5eb62010-08-11 09:38:04 +010058 .drop_inode = afs_drop_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .destroy_inode = afs_destroy_inode,
Al Viro51b9fe42019-04-10 15:05:06 -040060 .free_inode = afs_free_inode,
Al Virob57922d2010-06-07 14:34:48 -040061 .evict_inode = afs_evict_inode,
David Howells677018a2017-07-05 16:25:23 +010062 .show_devname = afs_show_devname,
63 .show_options = afs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Christoph Lametere18b8902006-12-06 20:33:20 -080066static struct kmem_cache *afs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static atomic_t afs_count_active_inodes;
68
David Howells13fcc682018-11-01 23:07:27 +000069enum afs_param {
70 Opt_autocell,
David Howells13fcc682018-11-01 23:07:27 +000071 Opt_dyn,
David Howells13fcc682018-11-01 23:07:27 +000072 Opt_source,
David Howells80c72fe2007-05-03 03:11:29 -070073};
74
David Howells13fcc682018-11-01 23:07:27 +000075static const struct fs_parameter_spec afs_param_specs[] = {
76 fsparam_flag ("autocell", Opt_autocell),
David Howells13fcc682018-11-01 23:07:27 +000077 fsparam_flag ("dyn", Opt_dyn),
David Howells13fcc682018-11-01 23:07:27 +000078 fsparam_string("source", Opt_source),
David Howells13fcc682018-11-01 23:07:27 +000079 {}
80};
81
82static const struct fs_parameter_description afs_fs_parameters = {
83 .name = "kAFS",
84 .specs = afs_param_specs,
David Howells80c72fe2007-05-03 03:11:29 -070085};
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * initialise the filesystem
89 */
90int __init afs_fs_init(void)
91{
92 int ret;
93
94 _enter("");
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* create ourselves an inode cache */
97 atomic_set(&afs_count_active_inodes, 0);
98
99 ret = -ENOMEM;
100 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
101 sizeof(struct afs_vnode),
102 0,
Vladimir Davydov5d097052016-01-14 15:18:21 -0800103 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
Paul Mundt20c2df82007-07-20 10:11:58 +0900104 afs_i_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!afs_inode_cachep) {
106 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
107 return ret;
108 }
109
110 /* now export our filesystem to lesser mortals */
111 ret = register_filesystem(&afs_fs_type);
112 if (ret < 0) {
113 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700114 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return ret;
116 }
117
David Howells08e0e7c2007-04-26 15:55:03 -0700118 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return 0;
David Howellsec268152007-04-26 15:49:28 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * clean up the filesystem
124 */
David Howells5b86d4f2018-05-18 11:46:15 +0100125void afs_fs_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
David Howells08e0e7c2007-04-26 15:55:03 -0700127 _enter("");
128
129 afs_mntpt_kill_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 unregister_filesystem(&afs_fs_type);
131
132 if (atomic_read(&afs_count_active_inodes) != 0) {
133 printk("kAFS: %d active inode objects still present\n",
134 atomic_read(&afs_count_active_inodes));
135 BUG();
136 }
137
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000138 /*
139 * Make sure all delayed rcu free inodes are flushed before we
140 * destroy cache.
141 */
142 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700144 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
David Howells677018a2017-07-05 16:25:23 +0100148 * Display the mount device name in /proc/mounts.
149 */
150static int afs_show_devname(struct seq_file *m, struct dentry *root)
151{
David Howellsd2ddc772017-11-02 15:27:50 +0000152 struct afs_super_info *as = AFS_FS_S(root->d_sb);
David Howells677018a2017-07-05 16:25:23 +0100153 struct afs_volume *volume = as->volume;
David Howellsd2ddc772017-11-02 15:27:50 +0000154 struct afs_cell *cell = as->cell;
David Howells677018a2017-07-05 16:25:23 +0100155 const char *suf = "";
156 char pref = '%';
157
David Howells4d673da2018-02-06 06:26:30 +0000158 if (as->dyn_root) {
159 seq_puts(m, "none");
160 return 0;
161 }
David Howells66c7e1d2018-04-06 14:17:25 +0100162
David Howells677018a2017-07-05 16:25:23 +0100163 switch (volume->type) {
164 case AFSVL_RWVOL:
165 break;
166 case AFSVL_ROVOL:
167 pref = '#';
168 if (volume->type_force)
169 suf = ".readonly";
170 break;
171 case AFSVL_BACKVOL:
172 pref = '#';
173 suf = ".backup";
174 break;
175 }
176
David Howellsd2ddc772017-11-02 15:27:50 +0000177 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
David Howells677018a2017-07-05 16:25:23 +0100178 return 0;
179}
180
181/*
182 * Display the mount options in /proc/mounts.
183 */
184static int afs_show_options(struct seq_file *m, struct dentry *root)
185{
David Howells4d673da2018-02-06 06:26:30 +0000186 struct afs_super_info *as = AFS_FS_S(root->d_sb);
187
188 if (as->dyn_root)
189 seq_puts(m, ",dyn");
David Howells677018a2017-07-05 16:25:23 +0100190 if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
David Howells4d673da2018-02-06 06:26:30 +0000191 seq_puts(m, ",autocell");
David Howells677018a2017-07-05 16:25:23 +0100192 return 0;
193}
194
195/*
David Howells13fcc682018-11-01 23:07:27 +0000196 * Parse the source name to get cell name, volume name, volume type and R/W
197 * selector.
198 *
199 * This can be one of the following:
David Howells00d3b7a2007-04-26 15:57:07 -0700200 * "%[cell:]volume[.]" R/W volume
David Howellsc99c2172018-11-01 23:07:27 +0000201 * "#[cell:]volume[.]" R/O or R/W volume (R/O parent),
202 * or R/W (R/W parent) volume
David Howells00d3b7a2007-04-26 15:57:07 -0700203 * "%[cell:]volume.readonly" R/O volume
204 * "#[cell:]volume.readonly" R/O volume
205 * "%[cell:]volume.backup" Backup volume
206 * "#[cell:]volume.backup" Backup volume
207 */
David Howells13fcc682018-11-01 23:07:27 +0000208static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
David Howells00d3b7a2007-04-26 15:57:07 -0700209{
David Howells13fcc682018-11-01 23:07:27 +0000210 struct afs_fs_context *ctx = fc->fs_private;
David Howells00d3b7a2007-04-26 15:57:07 -0700211 struct afs_cell *cell;
David Howells13fcc682018-11-01 23:07:27 +0000212 const char *cellname, *suffix, *name = param->string;
David Howells00d3b7a2007-04-26 15:57:07 -0700213 int cellnamesz;
214
215 _enter(",%s", name);
David Howells66c7e1d2018-04-06 14:17:25 +0100216
David Howells00d3b7a2007-04-26 15:57:07 -0700217 if (!name) {
218 printk(KERN_ERR "kAFS: no volume name specified\n");
219 return -EINVAL;
220 }
221
222 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
David Howells13fcc682018-11-01 23:07:27 +0000223 /* To use dynroot, we don't want to have to provide a source */
224 if (strcmp(name, "none") == 0) {
225 ctx->no_cell = true;
226 return 0;
227 }
David Howells00d3b7a2007-04-26 15:57:07 -0700228 printk(KERN_ERR "kAFS: unparsable volume name\n");
229 return -EINVAL;
230 }
231
232 /* determine the type of volume we're looking for */
David Howellsc99c2172018-11-01 23:07:27 +0000233 if (name[0] == '%') {
David Howells13fcc682018-11-01 23:07:27 +0000234 ctx->type = AFSVL_RWVOL;
235 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700236 }
237 name++;
238
239 /* split the cell name out if there is one */
David Howells13fcc682018-11-01 23:07:27 +0000240 ctx->volname = strchr(name, ':');
241 if (ctx->volname) {
David Howells00d3b7a2007-04-26 15:57:07 -0700242 cellname = name;
David Howells13fcc682018-11-01 23:07:27 +0000243 cellnamesz = ctx->volname - name;
244 ctx->volname++;
David Howells00d3b7a2007-04-26 15:57:07 -0700245 } else {
David Howells13fcc682018-11-01 23:07:27 +0000246 ctx->volname = name;
David Howells00d3b7a2007-04-26 15:57:07 -0700247 cellname = NULL;
248 cellnamesz = 0;
249 }
250
251 /* the volume type is further affected by a possible suffix */
David Howells13fcc682018-11-01 23:07:27 +0000252 suffix = strrchr(ctx->volname, '.');
David Howells00d3b7a2007-04-26 15:57:07 -0700253 if (suffix) {
254 if (strcmp(suffix, ".readonly") == 0) {
David Howells13fcc682018-11-01 23:07:27 +0000255 ctx->type = AFSVL_ROVOL;
256 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700257 } else if (strcmp(suffix, ".backup") == 0) {
David Howells13fcc682018-11-01 23:07:27 +0000258 ctx->type = AFSVL_BACKVOL;
259 ctx->force = true;
David Howells00d3b7a2007-04-26 15:57:07 -0700260 } else if (suffix[1] == 0) {
261 } else {
262 suffix = NULL;
263 }
264 }
265
David Howells13fcc682018-11-01 23:07:27 +0000266 ctx->volnamesz = suffix ?
267 suffix - ctx->volname : strlen(ctx->volname);
David Howells00d3b7a2007-04-26 15:57:07 -0700268
269 _debug("cell %*.*s [%p]",
David Howells13fcc682018-11-01 23:07:27 +0000270 cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700271
272 /* lookup the cell record */
David Howells13fcc682018-11-01 23:07:27 +0000273 if (cellname) {
274 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
David Howells989782d2017-11-02 15:27:50 +0000275 NULL, false);
David Howells00d3b7a2007-04-26 15:57:07 -0700276 if (IS_ERR(cell)) {
David Howells13fcc682018-11-01 23:07:27 +0000277 pr_err("kAFS: unable to lookup cell '%*.*s'\n",
wangleibec5eb62010-08-11 09:38:04 +0100278 cellnamesz, cellnamesz, cellname ?: "");
David Howells00d3b7a2007-04-26 15:57:07 -0700279 return PTR_ERR(cell);
280 }
David Howells13fcc682018-11-01 23:07:27 +0000281 afs_put_cell(ctx->net, ctx->cell);
282 ctx->cell = cell;
David Howells00d3b7a2007-04-26 15:57:07 -0700283 }
284
285 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
David Howells13fcc682018-11-01 23:07:27 +0000286 ctx->cell->name, ctx->cell,
287 ctx->volnamesz, ctx->volnamesz, ctx->volname,
288 suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
289
290 fc->source = param->string;
291 param->string = NULL;
292 return 0;
293}
294
295/*
296 * Parse a single mount parameter.
297 */
298static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
299{
300 struct fs_parse_result result;
301 struct afs_fs_context *ctx = fc->fs_private;
David Howells13fcc682018-11-01 23:07:27 +0000302 int opt;
303
304 opt = fs_parse(fc, &afs_fs_parameters, param, &result);
305 if (opt < 0)
306 return opt;
307
308 switch (opt) {
David Howells13fcc682018-11-01 23:07:27 +0000309 case Opt_source:
310 return afs_parse_source(fc, param);
311
312 case Opt_autocell:
313 ctx->autocell = true;
314 break;
315
316 case Opt_dyn:
317 ctx->dyn_root = true;
318 break;
319
David Howells13fcc682018-11-01 23:07:27 +0000320 default:
321 return -EINVAL;
322 }
323
324 _leave(" = 0");
325 return 0;
326}
327
328/*
329 * Validate the options, get the cell key and look up the volume.
330 */
331static int afs_validate_fc(struct fs_context *fc)
332{
333 struct afs_fs_context *ctx = fc->fs_private;
334 struct afs_volume *volume;
335 struct key *key;
336
337 if (!ctx->dyn_root) {
338 if (ctx->no_cell) {
339 pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
340 return -EINVAL;
341 }
342
343 if (!ctx->cell) {
344 pr_warn("kAFS: No cell specified\n");
345 return -EDESTADDRREQ;
346 }
347
348 /* We try to do the mount securely. */
349 key = afs_request_key(ctx->cell);
350 if (IS_ERR(key))
351 return PTR_ERR(key);
352
353 ctx->key = key;
354
355 if (ctx->volume) {
356 afs_put_volume(ctx->cell, ctx->volume);
357 ctx->volume = NULL;
358 }
359
360 volume = afs_create_volume(ctx);
361 if (IS_ERR(volume))
362 return PTR_ERR(volume);
363
364 ctx->volume = volume;
365 }
David Howells00d3b7a2007-04-26 15:57:07 -0700366
367 return 0;
368}
369
370/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 * check a superblock to see if it's the one we're looking for
372 */
David Howells13fcc682018-11-01 23:07:27 +0000373static int afs_test_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
David Howells13fcc682018-11-01 23:07:27 +0000375 struct afs_fs_context *ctx = fc->fs_private;
David Howellsd2ddc772017-11-02 15:27:50 +0000376 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
David Howells13fcc682018-11-01 23:07:27 +0000378 return (as->net_ns == fc->net_ns &&
David Howells4d673da2018-02-06 06:26:30 +0000379 as->volume &&
David Howells13fcc682018-11-01 23:07:27 +0000380 as->volume->vid == ctx->volume->vid &&
David Howells0da0b7f2018-06-15 15:19:22 +0100381 !as->dyn_root);
David Howells4d673da2018-02-06 06:26:30 +0000382}
383
David Howells13fcc682018-11-01 23:07:27 +0000384static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
David Howells4d673da2018-02-06 06:26:30 +0000385{
David Howells0da0b7f2018-06-15 15:19:22 +0100386 struct afs_super_info *as = AFS_FS_S(sb);
387
David Howells13fcc682018-11-01 23:07:27 +0000388 return (as->net_ns == fc->net_ns &&
David Howells0da0b7f2018-06-15 15:19:22 +0100389 as->dyn_root);
Al Virodde194a2011-06-12 16:01:21 -0400390}
391
David Howells13fcc682018-11-01 23:07:27 +0000392static int afs_set_super(struct super_block *sb, struct fs_context *fc)
Al Virodde194a2011-06-12 16:01:21 -0400393{
Al Virodde194a2011-06-12 16:01:21 -0400394 return set_anon_super(sb, NULL);
David Howellsec268152007-04-26 15:49:28 -0700395}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/*
398 * fill in the superblock
399 */
David Howells13fcc682018-11-01 23:07:27 +0000400static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
David Howellsd2ddc772017-11-02 15:27:50 +0000402 struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct afs_fid fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct inode *inode = NULL;
405 int ret;
406
David Howells08e0e7c2007-04-26 15:55:03 -0700407 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /* fill in the superblock */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300410 sb->s_blocksize = PAGE_SIZE;
411 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 sb->s_magic = AFS_FS_MAGIC;
413 sb->s_op = &afs_super_ops;
David Howells4d673da2018-02-06 06:26:30 +0000414 if (!as->dyn_root)
415 sb->s_xattr = afs_xattr_handlers;
Jan Karaedd3ba92017-04-12 12:24:36 +0200416 ret = super_setup_bdi(sb);
417 if (ret)
418 return ret;
Nikolay Borisovb5420232019-03-11 23:28:13 -0700419 sb->s_bdi->ra_pages = VM_READAHEAD_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /* allocate the root inode and dentry */
David Howells4d673da2018-02-06 06:26:30 +0000422 if (as->dyn_root) {
423 inode = afs_iget_pseudo_dir(sb, true);
424 sb->s_flags |= SB_RDONLY;
425 } else {
David Howells3b6492d2018-10-20 00:57:57 +0100426 sprintf(sb->s_id, "%llu", as->volume->vid);
David Howells4d673da2018-02-06 06:26:30 +0000427 afs_activate_volume(as->volume);
428 fid.vid = as->volume->vid;
429 fid.vnode = 1;
David Howells3b6492d2018-10-20 00:57:57 +0100430 fid.vnode_hi = 0;
David Howells4d673da2018-02-06 06:26:30 +0000431 fid.unique = 1;
David Howells13fcc682018-11-01 23:07:27 +0000432 inode = afs_iget(sb, ctx->key, &fid, NULL, NULL, NULL);
David Howells4d673da2018-02-06 06:26:30 +0000433 }
434
David Howells08e0e7c2007-04-26 15:55:03 -0700435 if (IS_ERR(inode))
Al Virodde194a2011-06-12 16:01:21 -0400436 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
David Howells13fcc682018-11-01 23:07:27 +0000438 if (ctx->autocell || as->dyn_root)
wangleibec5eb62010-08-11 09:38:04 +0100439 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -0500442 sb->s_root = d_make_root(inode);
443 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto error;
445
David Howells0da0b7f2018-06-15 15:19:22 +0100446 if (as->dyn_root) {
David Howells66c7e1d2018-04-06 14:17:25 +0100447 sb->s_d_op = &afs_dynroot_dentry_operations;
David Howells0da0b7f2018-06-15 15:19:22 +0100448 ret = afs_dynroot_populate(sb);
449 if (ret < 0)
450 goto error;
451 } else {
David Howells66c7e1d2018-04-06 14:17:25 +0100452 sb->s_d_op = &afs_fs_dentry_operations;
David Howells0da0b7f2018-06-15 15:19:22 +0100453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
David Howells08e0e7c2007-04-26 15:55:03 -0700455 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457
David Howellsec268152007-04-26 15:49:28 -0700458error:
David Howells08e0e7c2007-04-26 15:55:03 -0700459 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return ret;
David Howellsec268152007-04-26 15:49:28 -0700461}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
David Howells13fcc682018-11-01 23:07:27 +0000463static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
David Howells49566f62017-11-02 15:27:46 +0000464{
David Howells13fcc682018-11-01 23:07:27 +0000465 struct afs_fs_context *ctx = fc->fs_private;
David Howells49566f62017-11-02 15:27:46 +0000466 struct afs_super_info *as;
467
468 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
469 if (as) {
David Howells13fcc682018-11-01 23:07:27 +0000470 as->net_ns = get_net(fc->net_ns);
471 if (ctx->dyn_root) {
David Howells4d673da2018-02-06 06:26:30 +0000472 as->dyn_root = true;
David Howells13fcc682018-11-01 23:07:27 +0000473 } else {
474 as->cell = afs_get_cell(ctx->cell);
475 as->volume = __afs_get_volume(ctx->volume);
476 }
David Howells49566f62017-11-02 15:27:46 +0000477 }
478 return as;
479}
480
481static void afs_destroy_sbi(struct afs_super_info *as)
482{
483 if (as) {
David Howells9ed900b2017-11-02 15:27:46 +0000484 afs_put_volume(as->cell, as->volume);
David Howells5b86d4f2018-05-18 11:46:15 +0100485 afs_put_cell(afs_net(as->net_ns), as->cell);
486 put_net(as->net_ns);
David Howells49566f62017-11-02 15:27:46 +0000487 kfree(as);
488 }
489}
490
David Howells0da0b7f2018-06-15 15:19:22 +0100491static void afs_kill_super(struct super_block *sb)
492{
493 struct afs_super_info *as = AFS_FS_S(sb);
494 struct afs_net *net = afs_net(as->net_ns);
495
496 if (as->dyn_root)
497 afs_dynroot_depopulate(sb);
David Howells13fcc682018-11-01 23:07:27 +0000498
David Howells0da0b7f2018-06-15 15:19:22 +0100499 /* Clear the callback interests (which will do ilookup5) before
500 * deactivating the superblock.
501 */
502 if (as->volume)
503 afs_clear_callback_interests(net, as->volume->servers);
504 kill_anon_super(sb);
505 if (as->volume)
506 afs_deactivate_volume(as->volume);
507 afs_destroy_sbi(as);
508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*
David Howells13fcc682018-11-01 23:07:27 +0000511 * Get an AFS superblock and root directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
David Howells13fcc682018-11-01 23:07:27 +0000513static int afs_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
David Howells13fcc682018-11-01 23:07:27 +0000515 struct afs_fs_context *ctx = fc->fs_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct super_block *sb;
Al Virodde194a2011-06-12 16:01:21 -0400517 struct afs_super_info *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int ret;
519
David Howells13fcc682018-11-01 23:07:27 +0000520 ret = afs_validate_fc(fc);
521 if (ret)
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -0800522 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
David Howells13fcc682018-11-01 23:07:27 +0000524 _enter("");
David Howells00d3b7a2007-04-26 15:57:07 -0700525
David Howells49566f62017-11-02 15:27:46 +0000526 /* allocate a superblock info record */
527 ret = -ENOMEM;
David Howells13fcc682018-11-01 23:07:27 +0000528 as = afs_alloc_sbi(fc);
David Howells49566f62017-11-02 15:27:46 +0000529 if (!as)
David Howells13fcc682018-11-01 23:07:27 +0000530 goto error;
531 fc->s_fs_info = as;
David Howellsd2ddc772017-11-02 15:27:50 +0000532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* allocate a deviceless superblock */
David Howells13fcc682018-11-01 23:07:27 +0000534 sb = sget_fc(fc,
535 as->dyn_root ? afs_dynroot_test_super : afs_test_super,
536 afs_set_super);
David Howells08e0e7c2007-04-26 15:55:03 -0700537 if (IS_ERR(sb)) {
538 ret = PTR_ERR(sb);
David Howells13fcc682018-11-01 23:07:27 +0000539 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
David Howells436058a2007-04-26 15:56:24 -0700542 if (!sb->s_root) {
543 /* initial superblock/root creation */
544 _debug("create");
David Howells13fcc682018-11-01 23:07:27 +0000545 ret = afs_fill_super(sb, ctx);
David Howellsf044c882017-11-02 15:27:45 +0000546 if (ret < 0)
547 goto error_sb;
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800548 sb->s_flags |= SB_ACTIVE;
David Howells436058a2007-04-26 15:56:24 -0700549 } else {
550 _debug("reuse");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800551 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
David Howells13fcc682018-11-01 23:07:27 +0000554 fc->root = dget(sb->s_root);
David Howells08e0e7c2007-04-26 15:55:03 -0700555 _leave(" = 0 [%p]", sb);
David Howells13fcc682018-11-01 23:07:27 +0000556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
David Howellsf044c882017-11-02 15:27:45 +0000558error_sb:
559 deactivate_locked_super(sb);
David Howellsec268152007-04-26 15:49:28 -0700560error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 _leave(" = %d", ret);
David Howells13fcc682018-11-01 23:07:27 +0000562 return ret;
563}
564
565static void afs_free_fc(struct fs_context *fc)
566{
567 struct afs_fs_context *ctx = fc->fs_private;
568
569 afs_destroy_sbi(fc->s_fs_info);
570 afs_put_volume(ctx->cell, ctx->volume);
571 afs_put_cell(ctx->net, ctx->cell);
572 key_put(ctx->key);
573 kfree(ctx);
574}
575
576static const struct fs_context_operations afs_context_ops = {
577 .free = afs_free_fc,
578 .parse_param = afs_parse_param,
579 .get_tree = afs_get_tree,
580};
581
582/*
583 * Set up the filesystem mount context.
584 */
585static int afs_init_fs_context(struct fs_context *fc)
586{
587 struct afs_fs_context *ctx;
588 struct afs_cell *cell;
589
David Howells13fcc682018-11-01 23:07:27 +0000590 ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
591 if (!ctx)
592 return -ENOMEM;
593
594 ctx->type = AFSVL_ROVOL;
595 ctx->net = afs_net(fc->net_ns);
596
597 /* Default to the workstation cell. */
598 rcu_read_lock();
599 cell = afs_lookup_cell_rcu(ctx->net, NULL, 0);
600 rcu_read_unlock();
601 if (IS_ERR(cell))
602 cell = NULL;
603 ctx->cell = cell;
604
605 fc->fs_private = ctx;
606 fc->ops = &afs_context_ops;
607 return 0;
David Howellsec268152007-04-26 15:49:28 -0700608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610/*
David Howellsf8de4832017-12-01 11:40:43 +0000611 * Initialise an inode cache slab element prior to any use. Note that
612 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
613 * inode to another.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700615static void afs_i_init_once(void *_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
David Howellsec268152007-04-26 15:49:28 -0700617 struct afs_vnode *vnode = _vnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Christoph Lametera35afb82007-05-16 22:10:57 -0700619 memset(vnode, 0, sizeof(*vnode));
620 inode_init_once(&vnode->vfs_inode);
David Howellsd2ddc772017-11-02 15:27:50 +0000621 mutex_init(&vnode->io_lock);
David Howellsb61f7dc2018-04-27 20:46:22 +0100622 init_rwsem(&vnode->validate_lock);
David Howells4343d002017-11-02 15:27:52 +0000623 spin_lock_init(&vnode->wb_lock);
Christoph Lametera35afb82007-05-16 22:10:57 -0700624 spin_lock_init(&vnode->lock);
David Howells4343d002017-11-02 15:27:52 +0000625 INIT_LIST_HEAD(&vnode->wb_keys);
David Howellse8d6c552007-07-15 23:40:12 -0700626 INIT_LIST_HEAD(&vnode->pending_locks);
627 INIT_LIST_HEAD(&vnode->granted_locks);
628 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
David Howellsc435ee32017-11-02 15:27:49 +0000629 seqlock_init(&vnode->cb_lock);
David Howellsec268152007-04-26 15:49:28 -0700630}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/*
633 * allocate an AFS inode struct from our slab cache
634 */
635static struct inode *afs_alloc_inode(struct super_block *sb)
636{
637 struct afs_vnode *vnode;
638
David Howellsec268152007-04-26 15:49:28 -0700639 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (!vnode)
641 return NULL;
642
643 atomic_inc(&afs_count_active_inodes);
644
David Howellsf8de4832017-12-01 11:40:43 +0000645 /* Reset anything that shouldn't leak from one inode to the next. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 memset(&vnode->fid, 0, sizeof(vnode->fid));
647 memset(&vnode->status, 0, sizeof(vnode->status));
648
649 vnode->volume = NULL;
David Howellsf8de4832017-12-01 11:40:43 +0000650 vnode->lock_key = NULL;
651 vnode->permit_cache = NULL;
652 vnode->cb_interest = NULL;
653#ifdef CONFIG_AFS_FSCACHE
654 vnode->cache = NULL;
655#endif
656
David Howells260a9802007-04-26 15:59:35 -0700657 vnode->flags = 1 << AFS_VNODE_UNSET;
David Howellsf8de4832017-12-01 11:40:43 +0000658 vnode->cb_type = 0;
659 vnode->lock_state = AFS_VNODE_LOCK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David Howells0f300ca2007-05-10 22:22:20 -0700661 _leave(" = %p", &vnode->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return &vnode->vfs_inode;
David Howellsec268152007-04-26 15:49:28 -0700663}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Al Viro51b9fe42019-04-10 15:05:06 -0400665static void afs_free_inode(struct inode *inode)
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100666{
Al Viro51b9fe42019-04-10 15:05:06 -0400667 kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/*
671 * destroy an AFS inode struct
672 */
673static void afs_destroy_inode(struct inode *inode)
674{
David Howells08e0e7c2007-04-26 15:55:03 -0700675 struct afs_vnode *vnode = AFS_FS_I(inode);
676
David Howells3b6492d2018-10-20 00:57:57 +0100677 _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
David Howells08e0e7c2007-04-26 15:55:03 -0700679 _debug("DESTROY INODE %p", inode);
680
David Howellsc435ee32017-11-02 15:27:49 +0000681 ASSERTCMP(vnode->cb_interest, ==, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 atomic_dec(&afs_count_active_inodes);
David Howellsec268152007-04-26 15:49:28 -0700684}
David Howells45222b92007-05-10 22:22:20 -0700685
686/*
687 * return information about an AFS volume
688 */
689static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
690{
David Howells4d673da2018-02-06 06:26:30 +0000691 struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
David Howellsd2ddc772017-11-02 15:27:50 +0000692 struct afs_fs_cursor fc;
David Howells45222b92007-05-10 22:22:20 -0700693 struct afs_volume_status vs;
David Howells2b0143b2015-03-17 22:25:59 +0000694 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells45222b92007-05-10 22:22:20 -0700695 struct key *key;
696 int ret;
697
David Howells4d673da2018-02-06 06:26:30 +0000698 buf->f_type = dentry->d_sb->s_magic;
699 buf->f_bsize = AFS_BLOCK_SIZE;
700 buf->f_namelen = AFSNAMEMAX - 1;
701
702 if (as->dyn_root) {
703 buf->f_blocks = 1;
704 buf->f_bavail = 0;
705 buf->f_bfree = 0;
706 return 0;
707 }
David Howells66c7e1d2018-04-06 14:17:25 +0100708
David Howells45222b92007-05-10 22:22:20 -0700709 key = afs_request_key(vnode->volume->cell);
710 if (IS_ERR(key))
711 return PTR_ERR(key);
712
David Howellsd2ddc772017-11-02 15:27:50 +0000713 ret = -ERESTARTSYS;
714 if (afs_begin_vnode_operation(&fc, vnode, key)) {
715 fc.flags |= AFS_FS_CURSOR_NO_VSLEEP;
716 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100717 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000718 afs_fs_get_volume_status(&fc, &vs);
719 }
720
721 afs_check_for_remote_deletion(&fc, fc.vnode);
722 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
723 ret = afs_end_vnode_operation(&fc);
David Howells45222b92007-05-10 22:22:20 -0700724 }
725
David Howellsd2ddc772017-11-02 15:27:50 +0000726 key_put(key);
David Howells45222b92007-05-10 22:22:20 -0700727
David Howellsd2ddc772017-11-02 15:27:50 +0000728 if (ret == 0) {
David Howellsd2ddc772017-11-02 15:27:50 +0000729 if (vs.max_quota == 0)
730 buf->f_blocks = vs.part_max_blocks;
731 else
732 buf->f_blocks = vs.max_quota;
733 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
734 }
735
736 return ret;
David Howells45222b92007-05-10 22:22:20 -0700737}