ovl: factor out helper ovl_get_root()
[linux-2.6-block.git] / fs / overlayfs / super.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
e9be9d5e
MS
2/*
3 *
4 * Copyright (C) 2011 Novell Inc.
e9be9d5e
MS
5 */
6
5b825c3a 7#include <uapi/linux/magic.h>
e9be9d5e
MS
8#include <linux/fs.h>
9#include <linux/namei.h>
10#include <linux/xattr.h>
e9be9d5e 11#include <linux/mount.h>
e9be9d5e
MS
12#include <linux/parser.h>
13#include <linux/module.h>
cc259639 14#include <linux/statfs.h>
f45827e8 15#include <linux/seq_file.h>
d837a49b 16#include <linux/posix_acl_xattr.h>
e487d889 17#include <linux/exportfs.h>
e9be9d5e
MS
18#include "overlayfs.h"
19
20MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
21MODULE_DESCRIPTION("Overlay filesystem");
22MODULE_LICENSE("GPL");
23
e9be9d5e
MS
24
25struct ovl_dir_cache;
26
a78d9f0d
MS
27#define OVL_MAX_STACK 500
28
688ea0e5
MS
29static bool ovl_redirect_dir_def = IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR);
30module_param_named(redirect_dir, ovl_redirect_dir_def, bool, 0644);
253e7483 31MODULE_PARM_DESC(redirect_dir,
688ea0e5 32 "Default to on or off for the redirect_dir feature");
e9be9d5e 33
438c84c2
MS
34static bool ovl_redirect_always_follow =
35 IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW);
36module_param_named(redirect_always_follow, ovl_redirect_always_follow,
37 bool, 0644);
253e7483 38MODULE_PARM_DESC(redirect_always_follow,
438c84c2
MS
39 "Follow redirects even if redirect_dir feature is turned off");
40
02bcd157
AG
41static bool ovl_index_def = IS_ENABLED(CONFIG_OVERLAY_FS_INDEX);
42module_param_named(index, ovl_index_def, bool, 0644);
253e7483 43MODULE_PARM_DESC(index,
02bcd157
AG
44 "Default to on or off for the inodes index feature");
45
f168f109
AG
46static bool ovl_nfs_export_def = IS_ENABLED(CONFIG_OVERLAY_FS_NFS_EXPORT);
47module_param_named(nfs_export, ovl_nfs_export_def, bool, 0644);
253e7483 48MODULE_PARM_DESC(nfs_export,
f168f109
AG
49 "Default to on or off for the NFS export feature");
50
795939a9
AG
51static bool ovl_xino_auto_def = IS_ENABLED(CONFIG_OVERLAY_FS_XINO_AUTO);
52module_param_named(xino_auto, ovl_xino_auto_def, bool, 0644);
253e7483 53MODULE_PARM_DESC(xino_auto,
795939a9
AG
54 "Auto enable xino feature");
55
4155c10a
MS
56static void ovl_entry_stack_free(struct ovl_entry *oe)
57{
58 unsigned int i;
59
60 for (i = 0; i < oe->numlower; i++)
61 dput(oe->lowerstack[i].dentry);
62}
63
d5791044
VG
64static bool ovl_metacopy_def = IS_ENABLED(CONFIG_OVERLAY_FS_METACOPY);
65module_param_named(metacopy, ovl_metacopy_def, bool, 0644);
253e7483 66MODULE_PARM_DESC(metacopy,
d5791044
VG
67 "Default to on or off for the metadata only copy up feature");
68
e9be9d5e
MS
69static void ovl_dentry_release(struct dentry *dentry)
70{
71 struct ovl_entry *oe = dentry->d_fsdata;
72
73 if (oe) {
4155c10a 74 ovl_entry_stack_free(oe);
e9be9d5e
MS
75 kfree_rcu(oe, rcu);
76 }
77}
78
2d902671 79static struct dentry *ovl_d_real(struct dentry *dentry,
fb16043b 80 const struct inode *inode)
d101a125
MS
81{
82 struct dentry *real;
83
e8c985ba
MS
84 /* It's an overlay file */
85 if (inode && d_inode(dentry) == inode)
86 return dentry;
87
ca4c8a3a 88 if (!d_is_reg(dentry)) {
d101a125
MS
89 if (!inode || inode == d_inode(dentry))
90 return dentry;
91 goto bug;
92 }
93
94 real = ovl_dentry_upper(dentry);
2c3d7358 95 if (real && (inode == d_inode(real)))
d101a125
MS
96 return real;
97
2c3d7358
VG
98 if (real && !inode && ovl_has_upperdata(d_inode(dentry)))
99 return real;
100
101 real = ovl_dentry_lowerdata(dentry);
d101a125
MS
102 if (!real)
103 goto bug;
104
c4fcfc16 105 /* Handle recursion */
fb16043b 106 real = d_real(real, inode);
c4fcfc16 107
d101a125
MS
108 if (!inode || inode == d_inode(real))
109 return real;
d101a125 110bug:
656189d2 111 WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry,
d101a125
MS
112 inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);
113 return dentry;
114}
115
7c03b5d4
MS
116static int ovl_dentry_revalidate(struct dentry *dentry, unsigned int flags)
117{
118 struct ovl_entry *oe = dentry->d_fsdata;
119 unsigned int i;
120 int ret = 1;
121
122 for (i = 0; i < oe->numlower; i++) {
123 struct dentry *d = oe->lowerstack[i].dentry;
124
125 if (d->d_flags & DCACHE_OP_REVALIDATE) {
126 ret = d->d_op->d_revalidate(d, flags);
127 if (ret < 0)
128 return ret;
129 if (!ret) {
130 if (!(flags & LOOKUP_RCU))
131 d_invalidate(d);
132 return -ESTALE;
133 }
134 }
135 }
136 return 1;
137}
138
139static int ovl_dentry_weak_revalidate(struct dentry *dentry, unsigned int flags)
140{
141 struct ovl_entry *oe = dentry->d_fsdata;
142 unsigned int i;
143 int ret = 1;
144
145 for (i = 0; i < oe->numlower; i++) {
146 struct dentry *d = oe->lowerstack[i].dentry;
147
148 if (d->d_flags & DCACHE_OP_WEAK_REVALIDATE) {
149 ret = d->d_op->d_weak_revalidate(d, flags);
150 if (ret <= 0)
151 break;
152 }
153 }
154 return ret;
155}
156
e9be9d5e
MS
157static const struct dentry_operations ovl_dentry_operations = {
158 .d_release = ovl_dentry_release,
d101a125 159 .d_real = ovl_d_real,
e9be9d5e
MS
160};
161
7c03b5d4
MS
162static const struct dentry_operations ovl_reval_dentry_operations = {
163 .d_release = ovl_dentry_release,
d101a125 164 .d_real = ovl_d_real,
7c03b5d4
MS
165 .d_revalidate = ovl_dentry_revalidate,
166 .d_weak_revalidate = ovl_dentry_weak_revalidate,
167};
168
13cf199d
AG
169static struct kmem_cache *ovl_inode_cachep;
170
171static struct inode *ovl_alloc_inode(struct super_block *sb)
172{
173 struct ovl_inode *oi = kmem_cache_alloc(ovl_inode_cachep, GFP_KERNEL);
174
b3885bd6
HN
175 if (!oi)
176 return NULL;
177
04a01ac7 178 oi->cache = NULL;
cf31c463 179 oi->redirect = NULL;
04a01ac7 180 oi->version = 0;
13c72075 181 oi->flags = 0;
09d8b586 182 oi->__upperdentry = NULL;
25b7713a 183 oi->lower = NULL;
2664bd08 184 oi->lowerdata = NULL;
a015dafc 185 mutex_init(&oi->lock);
25b7713a 186
13cf199d
AG
187 return &oi->vfs_inode;
188}
189
0b269ded 190static void ovl_free_inode(struct inode *inode)
13cf199d 191{
0b269ded 192 struct ovl_inode *oi = OVL_I(inode);
13cf199d 193
0b269ded
AV
194 kfree(oi->redirect);
195 mutex_destroy(&oi->lock);
196 kmem_cache_free(ovl_inode_cachep, oi);
13cf199d
AG
197}
198
199static void ovl_destroy_inode(struct inode *inode)
200{
09d8b586
MS
201 struct ovl_inode *oi = OVL_I(inode);
202
203 dput(oi->__upperdentry);
31747eda 204 iput(oi->lower);
2664bd08
VG
205 if (S_ISDIR(inode->i_mode))
206 ovl_dir_cache_free(inode);
207 else
208 iput(oi->lowerdata);
13cf199d
AG
209}
210
ad204488 211static void ovl_free_fs(struct ovl_fs *ofs)
e9be9d5e 212{
dd662667 213 unsigned i;
e9be9d5e 214
0be0bfd2 215 iput(ofs->workbasedir_trap);
146d62e5
AG
216 iput(ofs->indexdir_trap);
217 iput(ofs->workdir_trap);
218 iput(ofs->upperdir_trap);
ad204488
MS
219 dput(ofs->indexdir);
220 dput(ofs->workdir);
221 if (ofs->workdir_locked)
222 ovl_inuse_unlock(ofs->workbasedir);
223 dput(ofs->workbasedir);
224 if (ofs->upperdir_locked)
225 ovl_inuse_unlock(ofs->upper_mnt->mnt_root);
226 mntput(ofs->upper_mnt);
94375f9d
AG
227 for (i = 1; i < ofs->numlayer; i++) {
228 iput(ofs->layers[i].trap);
229 mntput(ofs->layers[i].mnt);
146d62e5 230 }
94375f9d 231 kfree(ofs->layers);
b7bf9908 232 for (i = 0; i < ofs->numfs; i++)
07f1e596
AG
233 free_anon_bdev(ofs->fs[i].pseudo_dev);
234 kfree(ofs->fs);
ad204488
MS
235
236 kfree(ofs->config.lowerdir);
237 kfree(ofs->config.upperdir);
238 kfree(ofs->config.workdir);
438c84c2 239 kfree(ofs->config.redirect_mode);
ad204488
MS
240 if (ofs->creator_cred)
241 put_cred(ofs->creator_cred);
242 kfree(ofs);
e9be9d5e
MS
243}
244
a9075cdb
MS
245static void ovl_put_super(struct super_block *sb)
246{
247 struct ovl_fs *ofs = sb->s_fs_info;
248
249 ovl_free_fs(ofs);
250}
251
e8d4bfe3 252/* Sync real dirty inodes in upper filesystem (if it exists) */
e593b2bf
AG
253static int ovl_sync_fs(struct super_block *sb, int wait)
254{
ad204488 255 struct ovl_fs *ofs = sb->s_fs_info;
e593b2bf
AG
256 struct super_block *upper_sb;
257 int ret;
258
ad204488 259 if (!ofs->upper_mnt)
e593b2bf 260 return 0;
e8d4bfe3
CX
261
262 /*
263 * If this is a sync(2) call or an emergency sync, all the super blocks
264 * will be iterated, including upper_sb, so no need to do anything.
265 *
266 * If this is a syncfs(2) call, then we do need to call
267 * sync_filesystem() on upper_sb, but enough if we do it when being
268 * called with wait == 1.
269 */
270 if (!wait)
e593b2bf
AG
271 return 0;
272
e8d4bfe3
CX
273 upper_sb = ofs->upper_mnt->mnt_sb;
274
e593b2bf 275 down_read(&upper_sb->s_umount);
e8d4bfe3 276 ret = sync_filesystem(upper_sb);
e593b2bf 277 up_read(&upper_sb->s_umount);
e8d4bfe3 278
e593b2bf
AG
279 return ret;
280}
281
cc259639
AW
282/**
283 * ovl_statfs
284 * @sb: The overlayfs super block
285 * @buf: The struct kstatfs to fill in with stats
286 *
287 * Get the filesystem statistics. As writes always target the upper layer
4ebc5818 288 * filesystem pass the statfs to the upper filesystem (if it exists)
cc259639
AW
289 */
290static int ovl_statfs(struct dentry *dentry, struct kstatfs *buf)
291{
292 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
293 struct dentry *root_dentry = dentry->d_sb->s_root;
294 struct path path;
295 int err;
296
4ebc5818 297 ovl_path_real(root_dentry, &path);
cc259639
AW
298
299 err = vfs_statfs(&path, buf);
300 if (!err) {
6b2d5fe4 301 buf->f_namelen = ofs->namelen;
cc259639
AW
302 buf->f_type = OVERLAYFS_SUPER_MAGIC;
303 }
304
305 return err;
306}
307
02bcd157 308/* Will this overlay be forced to mount/remount ro? */
ad204488 309static bool ovl_force_readonly(struct ovl_fs *ofs)
02bcd157 310{
ad204488 311 return (!ofs->upper_mnt || !ofs->workdir);
02bcd157
AG
312}
313
438c84c2
MS
314static const char *ovl_redirect_mode_def(void)
315{
316 return ovl_redirect_dir_def ? "on" : "off";
317}
318
795939a9
AG
319enum {
320 OVL_XINO_OFF,
321 OVL_XINO_AUTO,
322 OVL_XINO_ON,
323};
324
325static const char * const ovl_xino_str[] = {
326 "off",
327 "auto",
328 "on",
329};
330
331static inline int ovl_xino_def(void)
332{
333 return ovl_xino_auto_def ? OVL_XINO_AUTO : OVL_XINO_OFF;
334}
335
f45827e8
EZ
336/**
337 * ovl_show_options
338 *
339 * Prints the mount options for a given superblock.
340 * Returns zero; does not fail.
341 */
342static int ovl_show_options(struct seq_file *m, struct dentry *dentry)
343{
344 struct super_block *sb = dentry->d_sb;
ad204488 345 struct ovl_fs *ofs = sb->s_fs_info;
f45827e8 346
ad204488
MS
347 seq_show_option(m, "lowerdir", ofs->config.lowerdir);
348 if (ofs->config.upperdir) {
349 seq_show_option(m, "upperdir", ofs->config.upperdir);
350 seq_show_option(m, "workdir", ofs->config.workdir);
53a08cb9 351 }
ad204488 352 if (ofs->config.default_permissions)
8d3095f4 353 seq_puts(m, ",default_permissions");
438c84c2
MS
354 if (strcmp(ofs->config.redirect_mode, ovl_redirect_mode_def()) != 0)
355 seq_printf(m, ",redirect_dir=%s", ofs->config.redirect_mode);
ad204488 356 if (ofs->config.index != ovl_index_def)
438c84c2 357 seq_printf(m, ",index=%s", ofs->config.index ? "on" : "off");
f168f109
AG
358 if (ofs->config.nfs_export != ovl_nfs_export_def)
359 seq_printf(m, ",nfs_export=%s", ofs->config.nfs_export ?
360 "on" : "off");
0f831ec8 361 if (ofs->config.xino != ovl_xino_def() && !ovl_same_fs(sb))
795939a9 362 seq_printf(m, ",xino=%s", ovl_xino_str[ofs->config.xino]);
d5791044
VG
363 if (ofs->config.metacopy != ovl_metacopy_def)
364 seq_printf(m, ",metacopy=%s",
365 ofs->config.metacopy ? "on" : "off");
f45827e8
EZ
366 return 0;
367}
368
3cdf6fe9
SL
369static int ovl_remount(struct super_block *sb, int *flags, char *data)
370{
ad204488 371 struct ovl_fs *ofs = sb->s_fs_info;
3cdf6fe9 372
1751e8a6 373 if (!(*flags & SB_RDONLY) && ovl_force_readonly(ofs))
3cdf6fe9
SL
374 return -EROFS;
375
376 return 0;
377}
378
e9be9d5e 379static const struct super_operations ovl_super_operations = {
13cf199d 380 .alloc_inode = ovl_alloc_inode,
0b269ded 381 .free_inode = ovl_free_inode,
13cf199d
AG
382 .destroy_inode = ovl_destroy_inode,
383 .drop_inode = generic_delete_inode,
e9be9d5e 384 .put_super = ovl_put_super,
e593b2bf 385 .sync_fs = ovl_sync_fs,
cc259639 386 .statfs = ovl_statfs,
f45827e8 387 .show_options = ovl_show_options,
3cdf6fe9 388 .remount_fs = ovl_remount,
e9be9d5e
MS
389};
390
391enum {
392 OPT_LOWERDIR,
393 OPT_UPPERDIR,
394 OPT_WORKDIR,
8d3095f4 395 OPT_DEFAULT_PERMISSIONS,
438c84c2 396 OPT_REDIRECT_DIR,
02bcd157
AG
397 OPT_INDEX_ON,
398 OPT_INDEX_OFF,
f168f109
AG
399 OPT_NFS_EXPORT_ON,
400 OPT_NFS_EXPORT_OFF,
795939a9
AG
401 OPT_XINO_ON,
402 OPT_XINO_OFF,
403 OPT_XINO_AUTO,
d5791044
VG
404 OPT_METACOPY_ON,
405 OPT_METACOPY_OFF,
e9be9d5e
MS
406 OPT_ERR,
407};
408
409static const match_table_t ovl_tokens = {
410 {OPT_LOWERDIR, "lowerdir=%s"},
411 {OPT_UPPERDIR, "upperdir=%s"},
412 {OPT_WORKDIR, "workdir=%s"},
8d3095f4 413 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
438c84c2 414 {OPT_REDIRECT_DIR, "redirect_dir=%s"},
02bcd157
AG
415 {OPT_INDEX_ON, "index=on"},
416 {OPT_INDEX_OFF, "index=off"},
f168f109
AG
417 {OPT_NFS_EXPORT_ON, "nfs_export=on"},
418 {OPT_NFS_EXPORT_OFF, "nfs_export=off"},
795939a9
AG
419 {OPT_XINO_ON, "xino=on"},
420 {OPT_XINO_OFF, "xino=off"},
421 {OPT_XINO_AUTO, "xino=auto"},
d5791044
VG
422 {OPT_METACOPY_ON, "metacopy=on"},
423 {OPT_METACOPY_OFF, "metacopy=off"},
e9be9d5e
MS
424 {OPT_ERR, NULL}
425};
426
91c77947
MS
427static char *ovl_next_opt(char **s)
428{
429 char *sbegin = *s;
430 char *p;
431
432 if (sbegin == NULL)
433 return NULL;
434
435 for (p = sbegin; *p; p++) {
436 if (*p == '\\') {
437 p++;
438 if (!*p)
439 break;
440 } else if (*p == ',') {
441 *p = '\0';
442 *s = p + 1;
443 return sbegin;
444 }
445 }
446 *s = NULL;
447 return sbegin;
448}
449
438c84c2
MS
450static int ovl_parse_redirect_mode(struct ovl_config *config, const char *mode)
451{
452 if (strcmp(mode, "on") == 0) {
453 config->redirect_dir = true;
454 /*
455 * Does not make sense to have redirect creation without
456 * redirect following.
457 */
458 config->redirect_follow = true;
459 } else if (strcmp(mode, "follow") == 0) {
460 config->redirect_follow = true;
461 } else if (strcmp(mode, "off") == 0) {
462 if (ovl_redirect_always_follow)
463 config->redirect_follow = true;
464 } else if (strcmp(mode, "nofollow") != 0) {
1bd0a3ae 465 pr_err("bad mount option \"redirect_dir=%s\"\n",
438c84c2
MS
466 mode);
467 return -EINVAL;
468 }
469
470 return 0;
471}
472
e9be9d5e
MS
473static int ovl_parse_opt(char *opt, struct ovl_config *config)
474{
475 char *p;
d5791044 476 int err;
d47748e5 477 bool metacopy_opt = false, redirect_opt = false;
e9be9d5e 478
438c84c2
MS
479 config->redirect_mode = kstrdup(ovl_redirect_mode_def(), GFP_KERNEL);
480 if (!config->redirect_mode)
481 return -ENOMEM;
482
91c77947 483 while ((p = ovl_next_opt(&opt)) != NULL) {
e9be9d5e
MS
484 int token;
485 substring_t args[MAX_OPT_ARGS];
486
487 if (!*p)
488 continue;
489
490 token = match_token(p, ovl_tokens, args);
491 switch (token) {
492 case OPT_UPPERDIR:
493 kfree(config->upperdir);
494 config->upperdir = match_strdup(&args[0]);
495 if (!config->upperdir)
496 return -ENOMEM;
497 break;
498
499 case OPT_LOWERDIR:
500 kfree(config->lowerdir);
501 config->lowerdir = match_strdup(&args[0]);
502 if (!config->lowerdir)
503 return -ENOMEM;
504 break;
505
506 case OPT_WORKDIR:
507 kfree(config->workdir);
508 config->workdir = match_strdup(&args[0]);
509 if (!config->workdir)
510 return -ENOMEM;
511 break;
512
8d3095f4
MS
513 case OPT_DEFAULT_PERMISSIONS:
514 config->default_permissions = true;
515 break;
516
438c84c2
MS
517 case OPT_REDIRECT_DIR:
518 kfree(config->redirect_mode);
519 config->redirect_mode = match_strdup(&args[0]);
520 if (!config->redirect_mode)
521 return -ENOMEM;
d47748e5 522 redirect_opt = true;
a6c60655
MS
523 break;
524
02bcd157
AG
525 case OPT_INDEX_ON:
526 config->index = true;
527 break;
528
529 case OPT_INDEX_OFF:
530 config->index = false;
531 break;
532
f168f109
AG
533 case OPT_NFS_EXPORT_ON:
534 config->nfs_export = true;
535 break;
536
537 case OPT_NFS_EXPORT_OFF:
538 config->nfs_export = false;
539 break;
540
795939a9
AG
541 case OPT_XINO_ON:
542 config->xino = OVL_XINO_ON;
543 break;
544
545 case OPT_XINO_OFF:
546 config->xino = OVL_XINO_OFF;
547 break;
548
549 case OPT_XINO_AUTO:
550 config->xino = OVL_XINO_AUTO;
551 break;
552
d5791044
VG
553 case OPT_METACOPY_ON:
554 config->metacopy = true;
d47748e5 555 metacopy_opt = true;
d5791044
VG
556 break;
557
558 case OPT_METACOPY_OFF:
559 config->metacopy = false;
560 break;
561
e9be9d5e 562 default:
1bd0a3ae 563 pr_err("unrecognized mount option \"%s\" or missing value\n",
564 p);
e9be9d5e
MS
565 return -EINVAL;
566 }
567 }
71cbad7e 568
569 /* Workdir is useless in non-upper mount */
570 if (!config->upperdir && config->workdir) {
1bd0a3ae 571 pr_info("option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
71cbad7e 572 config->workdir);
573 kfree(config->workdir);
574 config->workdir = NULL;
575 }
576
d5791044
VG
577 err = ovl_parse_redirect_mode(config, config->redirect_mode);
578 if (err)
579 return err;
580
d47748e5
MS
581 /*
582 * This is to make the logic below simpler. It doesn't make any other
583 * difference, since config->redirect_dir is only used for upper.
584 */
585 if (!config->upperdir && config->redirect_follow)
586 config->redirect_dir = true;
587
588 /* Resolve metacopy -> redirect_dir dependency */
589 if (config->metacopy && !config->redirect_dir) {
590 if (metacopy_opt && redirect_opt) {
1bd0a3ae 591 pr_err("conflicting options: metacopy=on,redirect_dir=%s\n",
d47748e5
MS
592 config->redirect_mode);
593 return -EINVAL;
594 }
595 if (redirect_opt) {
596 /*
597 * There was an explicit redirect_dir=... that resulted
598 * in this conflict.
599 */
1bd0a3ae 600 pr_info("disabling metacopy due to redirect_dir=%s\n",
d47748e5
MS
601 config->redirect_mode);
602 config->metacopy = false;
603 } else {
604 /* Automatically enable redirect otherwise. */
605 config->redirect_follow = config->redirect_dir = true;
606 }
d5791044
VG
607 }
608
609 return 0;
e9be9d5e
MS
610}
611
612#define OVL_WORKDIR_NAME "work"
02bcd157 613#define OVL_INDEXDIR_NAME "index"
e9be9d5e 614
ad204488 615static struct dentry *ovl_workdir_create(struct ovl_fs *ofs,
6b8aa129 616 const char *name, bool persist)
e9be9d5e 617{
ad204488
MS
618 struct inode *dir = ofs->workbasedir->d_inode;
619 struct vfsmount *mnt = ofs->upper_mnt;
e9be9d5e
MS
620 struct dentry *work;
621 int err;
622 bool retried = false;
6b8aa129 623 bool locked = false;
e9be9d5e 624
5955102c 625 inode_lock_nested(dir, I_MUTEX_PARENT);
6b8aa129
AG
626 locked = true;
627
e9be9d5e 628retry:
ad204488 629 work = lookup_one_len(name, ofs->workbasedir, strlen(name));
e9be9d5e
MS
630
631 if (!IS_ERR(work)) {
c11b9fdd
MS
632 struct iattr attr = {
633 .ia_valid = ATTR_MODE,
32a3d848 634 .ia_mode = S_IFDIR | 0,
c11b9fdd 635 };
e9be9d5e
MS
636
637 if (work->d_inode) {
638 err = -EEXIST;
639 if (retried)
640 goto out_dput;
641
6b8aa129
AG
642 if (persist)
643 goto out_unlock;
644
e9be9d5e 645 retried = true;
eea2fb48 646 ovl_workdir_cleanup(dir, mnt, work, 0);
e9be9d5e
MS
647 dput(work);
648 goto retry;
649 }
650
95a1c815
MS
651 work = ovl_create_real(dir, work, OVL_CATTR(attr.ia_mode));
652 err = PTR_ERR(work);
653 if (IS_ERR(work))
654 goto out_err;
c11b9fdd 655
cb348edb
MS
656 /*
657 * Try to remove POSIX ACL xattrs from workdir. We are good if:
658 *
659 * a) success (there was a POSIX ACL xattr and was removed)
660 * b) -ENODATA (there was no POSIX ACL xattr)
661 * c) -EOPNOTSUPP (POSIX ACL xattrs are not supported)
662 *
663 * There are various other error values that could effectively
664 * mean that the xattr doesn't exist (e.g. -ERANGE is returned
665 * if the xattr name is too long), but the set of filesystems
666 * allowed as upper are limited to "normal" ones, where checking
667 * for the above two errors is sufficient.
668 */
c11b9fdd 669 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_DEFAULT);
e1ff3dd1 670 if (err && err != -ENODATA && err != -EOPNOTSUPP)
c11b9fdd
MS
671 goto out_dput;
672
673 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_ACCESS);
e1ff3dd1 674 if (err && err != -ENODATA && err != -EOPNOTSUPP)
c11b9fdd
MS
675 goto out_dput;
676
677 /* Clear any inherited mode bits */
678 inode_lock(work->d_inode);
679 err = notify_change(work, &attr, NULL);
680 inode_unlock(work->d_inode);
681 if (err)
682 goto out_dput;
6b8aa129
AG
683 } else {
684 err = PTR_ERR(work);
685 goto out_err;
e9be9d5e
MS
686 }
687out_unlock:
6b8aa129
AG
688 if (locked)
689 inode_unlock(dir);
e9be9d5e
MS
690
691 return work;
692
693out_dput:
694 dput(work);
6b8aa129 695out_err:
1bd0a3ae 696 pr_warn("failed to create directory %s/%s (errno: %i); mounting read-only\n",
ad204488 697 ofs->config.workdir, name, -err);
6b8aa129 698 work = NULL;
e9be9d5e
MS
699 goto out_unlock;
700}
701
91c77947
MS
702static void ovl_unescape(char *s)
703{
704 char *d = s;
705
706 for (;; s++, d++) {
707 if (*s == '\\')
708 s++;
709 *d = *s;
710 if (!*s)
711 break;
712 }
713}
714
ab508822
MS
715static int ovl_mount_dir_noesc(const char *name, struct path *path)
716{
a78d9f0d 717 int err = -EINVAL;
ab508822 718
a78d9f0d 719 if (!*name) {
1bd0a3ae 720 pr_err("empty lowerdir\n");
a78d9f0d
MS
721 goto out;
722 }
ab508822
MS
723 err = kern_path(name, LOOKUP_FOLLOW, path);
724 if (err) {
1bd0a3ae 725 pr_err("failed to resolve '%s': %i\n", name, err);
ab508822
MS
726 goto out;
727 }
728 err = -EINVAL;
7c03b5d4 729 if (ovl_dentry_weird(path->dentry)) {
1bd0a3ae 730 pr_err("filesystem on '%s' not supported\n", name);
ab508822
MS
731 goto out_put;
732 }
2b8c30e9 733 if (!d_is_dir(path->dentry)) {
1bd0a3ae 734 pr_err("'%s' not a directory\n", name);
ab508822
MS
735 goto out_put;
736 }
737 return 0;
738
739out_put:
8aafcb59 740 path_put_init(path);
ab508822
MS
741out:
742 return err;
743}
744
745static int ovl_mount_dir(const char *name, struct path *path)
746{
747 int err = -ENOMEM;
748 char *tmp = kstrdup(name, GFP_KERNEL);
749
750 if (tmp) {
751 ovl_unescape(tmp);
752 err = ovl_mount_dir_noesc(tmp, path);
7c03b5d4
MS
753
754 if (!err)
755 if (ovl_dentry_remote(path->dentry)) {
1bd0a3ae 756 pr_err("filesystem on '%s' not supported as upperdir\n",
7c03b5d4 757 tmp);
8aafcb59 758 path_put_init(path);
7c03b5d4
MS
759 err = -EINVAL;
760 }
ab508822
MS
761 kfree(tmp);
762 }
763 return err;
764}
765
6b2d5fe4
MS
766static int ovl_check_namelen(struct path *path, struct ovl_fs *ofs,
767 const char *name)
ab508822 768{
ab508822 769 struct kstatfs statfs;
6b2d5fe4
MS
770 int err = vfs_statfs(path, &statfs);
771
772 if (err)
1bd0a3ae 773 pr_err("statfs failed on '%s'\n", name);
6b2d5fe4
MS
774 else
775 ofs->namelen = max(ofs->namelen, statfs.f_namelen);
776
777 return err;
778}
779
780static int ovl_lower_dir(const char *name, struct path *path,
781 struct ovl_fs *ofs, int *stack_depth, bool *remote)
782{
e487d889 783 int fh_type;
6b2d5fe4 784 int err;
ab508822 785
a78d9f0d 786 err = ovl_mount_dir_noesc(name, path);
ab508822
MS
787 if (err)
788 goto out;
789
6b2d5fe4
MS
790 err = ovl_check_namelen(path, ofs, name);
791 if (err)
ab508822 792 goto out_put;
6b2d5fe4 793
ab508822
MS
794 *stack_depth = max(*stack_depth, path->mnt->mnt_sb->s_stack_depth);
795
7c03b5d4
MS
796 if (ovl_dentry_remote(path->dentry))
797 *remote = true;
798
02bcd157 799 /*
f168f109
AG
800 * The inodes index feature and NFS export need to encode and decode
801 * file handles, so they require that all layers support them.
02bcd157 802 */
e487d889 803 fh_type = ovl_can_decode_fh(path->dentry->d_sb);
f168f109 804 if ((ofs->config.nfs_export ||
e487d889 805 (ofs->config.index && ofs->config.upperdir)) && !fh_type) {
02bcd157 806 ofs->config.index = false;
f168f109 807 ofs->config.nfs_export = false;
1bd0a3ae 808 pr_warn("fs on '%s' does not support file handles, falling back to index=off,nfs_export=off.\n",
f168f109 809 name);
02bcd157
AG
810 }
811
e487d889
AG
812 /* Check if lower fs has 32bit inode numbers */
813 if (fh_type != FILEID_INO32_GEN)
0f831ec8 814 ofs->xino_mode = -1;
e487d889 815
ab508822
MS
816 return 0;
817
818out_put:
8aafcb59 819 path_put_init(path);
ab508822
MS
820out:
821 return err;
822}
823
e9be9d5e
MS
824/* Workdir should not be subdir of upperdir and vice versa */
825static bool ovl_workdir_ok(struct dentry *workdir, struct dentry *upperdir)
826{
827 bool ok = false;
828
829 if (workdir != upperdir) {
830 ok = (lock_rename(workdir, upperdir) == NULL);
831 unlock_rename(workdir, upperdir);
832 }
833 return ok;
834}
835
a78d9f0d
MS
836static unsigned int ovl_split_lowerdirs(char *str)
837{
838 unsigned int ctr = 1;
839 char *s, *d;
840
841 for (s = d = str;; s++, d++) {
842 if (*s == '\\') {
843 s++;
844 } else if (*s == ':') {
845 *d = '\0';
846 ctr++;
847 continue;
848 }
849 *d = *s;
850 if (!*s)
851 break;
852 }
853 return ctr;
854}
855
0eb45fc3
AG
856static int __maybe_unused
857ovl_posix_acl_xattr_get(const struct xattr_handler *handler,
858 struct dentry *dentry, struct inode *inode,
859 const char *name, void *buffer, size_t size)
860{
1d88f183 861 return ovl_xattr_get(dentry, inode, handler->name, buffer, size);
0eb45fc3
AG
862}
863
0c97be22
AG
864static int __maybe_unused
865ovl_posix_acl_xattr_set(const struct xattr_handler *handler,
866 struct dentry *dentry, struct inode *inode,
867 const char *name, const void *value,
868 size_t size, int flags)
d837a49b
MS
869{
870 struct dentry *workdir = ovl_workdir(dentry);
09d8b586 871 struct inode *realinode = ovl_inode_real(inode);
d837a49b
MS
872 struct posix_acl *acl = NULL;
873 int err;
874
875 /* Check that everything is OK before copy-up */
876 if (value) {
877 acl = posix_acl_from_xattr(&init_user_ns, value, size);
878 if (IS_ERR(acl))
879 return PTR_ERR(acl);
880 }
881 err = -EOPNOTSUPP;
882 if (!IS_POSIXACL(d_inode(workdir)))
883 goto out_acl_release;
884 if (!realinode->i_op->set_acl)
885 goto out_acl_release;
886 if (handler->flags == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode)) {
887 err = acl ? -EACCES : 0;
888 goto out_acl_release;
889 }
890 err = -EPERM;
891 if (!inode_owner_or_capable(inode))
892 goto out_acl_release;
893
894 posix_acl_release(acl);
895
fd3220d3
MS
896 /*
897 * Check if sgid bit needs to be cleared (actual setacl operation will
898 * be done with mounter's capabilities and so that won't do it for us).
899 */
900 if (unlikely(inode->i_mode & S_ISGID) &&
901 handler->flags == ACL_TYPE_ACCESS &&
902 !in_group_p(inode->i_gid) &&
903 !capable_wrt_inode_uidgid(inode, CAP_FSETID)) {
904 struct iattr iattr = { .ia_valid = ATTR_KILL_SGID };
905
906 err = ovl_setattr(dentry, &iattr);
907 if (err)
908 return err;
909 }
910
1d88f183 911 err = ovl_xattr_set(dentry, inode, handler->name, value, size, flags);
ce31513a 912 if (!err)
09d8b586 913 ovl_copyattr(ovl_inode_real(inode), inode);
ce31513a
MS
914
915 return err;
d837a49b
MS
916
917out_acl_release:
918 posix_acl_release(acl);
919 return err;
920}
921
0eb45fc3
AG
922static int ovl_own_xattr_get(const struct xattr_handler *handler,
923 struct dentry *dentry, struct inode *inode,
924 const char *name, void *buffer, size_t size)
925{
48fab5d7 926 return -EOPNOTSUPP;
0eb45fc3
AG
927}
928
d837a49b
MS
929static int ovl_own_xattr_set(const struct xattr_handler *handler,
930 struct dentry *dentry, struct inode *inode,
931 const char *name, const void *value,
932 size_t size, int flags)
933{
48fab5d7 934 return -EOPNOTSUPP;
d837a49b
MS
935}
936
0eb45fc3
AG
937static int ovl_other_xattr_get(const struct xattr_handler *handler,
938 struct dentry *dentry, struct inode *inode,
939 const char *name, void *buffer, size_t size)
940{
1d88f183 941 return ovl_xattr_get(dentry, inode, name, buffer, size);
0eb45fc3
AG
942}
943
0e585ccc
AG
944static int ovl_other_xattr_set(const struct xattr_handler *handler,
945 struct dentry *dentry, struct inode *inode,
946 const char *name, const void *value,
947 size_t size, int flags)
948{
1d88f183 949 return ovl_xattr_set(dentry, inode, name, value, size, flags);
0e585ccc
AG
950}
951
0c97be22
AG
952static const struct xattr_handler __maybe_unused
953ovl_posix_acl_access_xattr_handler = {
d837a49b
MS
954 .name = XATTR_NAME_POSIX_ACL_ACCESS,
955 .flags = ACL_TYPE_ACCESS,
0eb45fc3 956 .get = ovl_posix_acl_xattr_get,
d837a49b
MS
957 .set = ovl_posix_acl_xattr_set,
958};
959
0c97be22
AG
960static const struct xattr_handler __maybe_unused
961ovl_posix_acl_default_xattr_handler = {
d837a49b
MS
962 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
963 .flags = ACL_TYPE_DEFAULT,
0eb45fc3 964 .get = ovl_posix_acl_xattr_get,
d837a49b
MS
965 .set = ovl_posix_acl_xattr_set,
966};
967
968static const struct xattr_handler ovl_own_xattr_handler = {
969 .prefix = OVL_XATTR_PREFIX,
0eb45fc3 970 .get = ovl_own_xattr_get,
d837a49b
MS
971 .set = ovl_own_xattr_set,
972};
973
974static const struct xattr_handler ovl_other_xattr_handler = {
975 .prefix = "", /* catch all */
0eb45fc3 976 .get = ovl_other_xattr_get,
d837a49b
MS
977 .set = ovl_other_xattr_set,
978};
979
980static const struct xattr_handler *ovl_xattr_handlers[] = {
0c97be22 981#ifdef CONFIG_FS_POSIX_ACL
d837a49b
MS
982 &ovl_posix_acl_access_xattr_handler,
983 &ovl_posix_acl_default_xattr_handler,
0c97be22 984#endif
d837a49b
MS
985 &ovl_own_xattr_handler,
986 &ovl_other_xattr_handler,
987 NULL
988};
989
146d62e5
AG
990static int ovl_setup_trap(struct super_block *sb, struct dentry *dir,
991 struct inode **ptrap, const char *name)
992{
993 struct inode *trap;
994 int err;
995
996 trap = ovl_get_trap_inode(sb, dir);
1dac6f5b
AB
997 err = PTR_ERR_OR_ZERO(trap);
998 if (err) {
146d62e5 999 if (err == -ELOOP)
1bd0a3ae 1000 pr_err("conflicting %s path\n", name);
146d62e5
AG
1001 return err;
1002 }
1003
1004 *ptrap = trap;
1005 return 0;
1006}
1007
0be0bfd2
AG
1008/*
1009 * Determine how we treat concurrent use of upperdir/workdir based on the
1010 * index feature. This is papering over mount leaks of container runtimes,
1011 * for example, an old overlay mount is leaked and now its upperdir is
1012 * attempted to be used as a lower layer in a new overlay mount.
1013 */
1014static int ovl_report_in_use(struct ovl_fs *ofs, const char *name)
1015{
1016 if (ofs->config.index) {
1bd0a3ae 1017 pr_err("%s is in-use as upperdir/workdir of another mount, mount with '-o index=off' to override exclusive upperdir protection.\n",
0be0bfd2
AG
1018 name);
1019 return -EBUSY;
1020 } else {
1bd0a3ae 1021 pr_warn("%s is in-use as upperdir/workdir of another mount, accessing files from both mounts will result in undefined behavior.\n",
0be0bfd2
AG
1022 name);
1023 return 0;
1024 }
1025}
1026
146d62e5
AG
1027static int ovl_get_upper(struct super_block *sb, struct ovl_fs *ofs,
1028 struct path *upperpath)
6ee8acf0 1029{
5064975e 1030 struct vfsmount *upper_mnt;
6ee8acf0
MS
1031 int err;
1032
ad204488 1033 err = ovl_mount_dir(ofs->config.upperdir, upperpath);
6ee8acf0
MS
1034 if (err)
1035 goto out;
1036
1037 /* Upper fs should not be r/o */
1038 if (sb_rdonly(upperpath->mnt->mnt_sb)) {
1bd0a3ae 1039 pr_err("upper fs is r/o, try multi-lower layers mount\n");
6ee8acf0
MS
1040 err = -EINVAL;
1041 goto out;
1042 }
1043
ad204488 1044 err = ovl_check_namelen(upperpath, ofs, ofs->config.upperdir);
6ee8acf0
MS
1045 if (err)
1046 goto out;
1047
146d62e5
AG
1048 err = ovl_setup_trap(sb, upperpath->dentry, &ofs->upperdir_trap,
1049 "upperdir");
1050 if (err)
1051 goto out;
1052
5064975e
MS
1053 upper_mnt = clone_private_mount(upperpath);
1054 err = PTR_ERR(upper_mnt);
1055 if (IS_ERR(upper_mnt)) {
1bd0a3ae 1056 pr_err("failed to clone upperpath\n");
5064975e
MS
1057 goto out;
1058 }
1059
1060 /* Don't inherit atime flags */
1061 upper_mnt->mnt_flags &= ~(MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME);
ad204488 1062 ofs->upper_mnt = upper_mnt;
8c25741a 1063
8c25741a
MS
1064 if (ovl_inuse_trylock(ofs->upper_mnt->mnt_root)) {
1065 ofs->upperdir_locked = true;
8c25741a 1066 } else {
0be0bfd2
AG
1067 err = ovl_report_in_use(ofs, "upperdir");
1068 if (err)
1069 goto out;
8c25741a
MS
1070 }
1071
6ee8acf0
MS
1072 err = 0;
1073out:
1074 return err;
1075}
1076
146d62e5
AG
1077static int ovl_make_workdir(struct super_block *sb, struct ovl_fs *ofs,
1078 struct path *workpath)
8ed61dc3 1079{
2ba9d57e 1080 struct vfsmount *mnt = ofs->upper_mnt;
8ed61dc3 1081 struct dentry *temp;
e487d889 1082 int fh_type;
8ed61dc3
MS
1083 int err;
1084
2ba9d57e
AG
1085 err = mnt_want_write(mnt);
1086 if (err)
1087 return err;
1088
ad204488
MS
1089 ofs->workdir = ovl_workdir_create(ofs, OVL_WORKDIR_NAME, false);
1090 if (!ofs->workdir)
2ba9d57e 1091 goto out;
8ed61dc3 1092
146d62e5
AG
1093 err = ovl_setup_trap(sb, ofs->workdir, &ofs->workdir_trap, "workdir");
1094 if (err)
1095 goto out;
1096
8ed61dc3
MS
1097 /*
1098 * Upper should support d_type, else whiteouts are visible. Given
1099 * workdir and upper are on same fs, we can do iterate_dir() on
1100 * workdir. This check requires successful creation of workdir in
1101 * previous step.
1102 */
1103 err = ovl_check_d_type_supported(workpath);
1104 if (err < 0)
2ba9d57e 1105 goto out;
8ed61dc3
MS
1106
1107 /*
1108 * We allowed this configuration and don't want to break users over
1109 * kernel upgrade. So warn instead of erroring out.
1110 */
1111 if (!err)
1bd0a3ae 1112 pr_warn("upper fs needs to support d_type.\n");
8ed61dc3
MS
1113
1114 /* Check if upper/work fs supports O_TMPFILE */
ad204488
MS
1115 temp = ovl_do_tmpfile(ofs->workdir, S_IFREG | 0);
1116 ofs->tmpfile = !IS_ERR(temp);
1117 if (ofs->tmpfile)
8ed61dc3
MS
1118 dput(temp);
1119 else
1bd0a3ae 1120 pr_warn("upper fs does not support tmpfile.\n");
8ed61dc3
MS
1121
1122 /*
1123 * Check if upper/work fs supports trusted.overlay.* xattr
1124 */
ad204488 1125 err = ovl_do_setxattr(ofs->workdir, OVL_XATTR_OPAQUE, "0", 1, 0);
8ed61dc3 1126 if (err) {
ad204488 1127 ofs->noxattr = true;
a683737b 1128 ofs->config.index = false;
d5791044 1129 ofs->config.metacopy = false;
1bd0a3ae 1130 pr_warn("upper fs does not support xattr, falling back to index=off and metacopy=off.\n");
2ba9d57e 1131 err = 0;
8ed61dc3 1132 } else {
ad204488 1133 vfs_removexattr(ofs->workdir, OVL_XATTR_OPAQUE);
8ed61dc3
MS
1134 }
1135
1136 /* Check if upper/work fs supports file handles */
e487d889
AG
1137 fh_type = ovl_can_decode_fh(ofs->workdir->d_sb);
1138 if (ofs->config.index && !fh_type) {
ad204488 1139 ofs->config.index = false;
1bd0a3ae 1140 pr_warn("upper fs does not support file handles, falling back to index=off.\n");
8ed61dc3
MS
1141 }
1142
e487d889
AG
1143 /* Check if upper fs has 32bit inode numbers */
1144 if (fh_type != FILEID_INO32_GEN)
0f831ec8 1145 ofs->xino_mode = -1;
e487d889 1146
f168f109
AG
1147 /* NFS export of r/w mount depends on index */
1148 if (ofs->config.nfs_export && !ofs->config.index) {
1bd0a3ae 1149 pr_warn("NFS export requires \"index=on\", falling back to nfs_export=off.\n");
f168f109
AG
1150 ofs->config.nfs_export = false;
1151 }
2ba9d57e
AG
1152out:
1153 mnt_drop_write(mnt);
1154 return err;
8ed61dc3
MS
1155}
1156
146d62e5
AG
1157static int ovl_get_workdir(struct super_block *sb, struct ovl_fs *ofs,
1158 struct path *upperpath)
520d7c86
MS
1159{
1160 int err;
bca44b52 1161 struct path workpath = { };
520d7c86 1162
ad204488 1163 err = ovl_mount_dir(ofs->config.workdir, &workpath);
520d7c86
MS
1164 if (err)
1165 goto out;
1166
1167 err = -EINVAL;
bca44b52 1168 if (upperpath->mnt != workpath.mnt) {
1bd0a3ae 1169 pr_err("workdir and upperdir must reside under the same mount\n");
520d7c86
MS
1170 goto out;
1171 }
bca44b52 1172 if (!ovl_workdir_ok(workpath.dentry, upperpath->dentry)) {
1bd0a3ae 1173 pr_err("workdir and upperdir must be separate subtrees\n");
520d7c86
MS
1174 goto out;
1175 }
1176
8c25741a
MS
1177 ofs->workbasedir = dget(workpath.dentry);
1178
8c25741a 1179 if (ovl_inuse_trylock(ofs->workbasedir)) {
ad204488 1180 ofs->workdir_locked = true;
520d7c86 1181 } else {
0be0bfd2
AG
1182 err = ovl_report_in_use(ofs, "workdir");
1183 if (err)
1184 goto out;
520d7c86
MS
1185 }
1186
0be0bfd2
AG
1187 err = ovl_setup_trap(sb, ofs->workbasedir, &ofs->workbasedir_trap,
1188 "workdir");
1189 if (err)
1190 goto out;
1191
146d62e5 1192 err = ovl_make_workdir(sb, ofs, &workpath);
bca44b52 1193
520d7c86 1194out:
bca44b52
MS
1195 path_put(&workpath);
1196
520d7c86
MS
1197 return err;
1198}
1199
146d62e5
AG
1200static int ovl_get_indexdir(struct super_block *sb, struct ovl_fs *ofs,
1201 struct ovl_entry *oe, struct path *upperpath)
f7e3a7d9 1202{
2ba9d57e 1203 struct vfsmount *mnt = ofs->upper_mnt;
f7e3a7d9
MS
1204 int err;
1205
2ba9d57e
AG
1206 err = mnt_want_write(mnt);
1207 if (err)
1208 return err;
1209
f7e3a7d9 1210 /* Verify lower root is upper root origin */
d9768076 1211 err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry,
05122443 1212 true);
f7e3a7d9 1213 if (err) {
1bd0a3ae 1214 pr_err("failed to verify upper root origin\n");
f7e3a7d9
MS
1215 goto out;
1216 }
1217
ad204488
MS
1218 ofs->indexdir = ovl_workdir_create(ofs, OVL_INDEXDIR_NAME, true);
1219 if (ofs->indexdir) {
146d62e5
AG
1220 err = ovl_setup_trap(sb, ofs->indexdir, &ofs->indexdir_trap,
1221 "indexdir");
1222 if (err)
1223 goto out;
1224
ad1d615c
AG
1225 /*
1226 * Verify upper root is exclusively associated with index dir.
1227 * Older kernels stored upper fh in "trusted.overlay.origin"
1228 * xattr. If that xattr exists, verify that it is a match to
1229 * upper dir file handle. In any case, verify or set xattr
1230 * "trusted.overlay.upper" to indicate that index may have
1231 * directory entries.
1232 */
1233 if (ovl_check_origin_xattr(ofs->indexdir)) {
1234 err = ovl_verify_set_fh(ofs->indexdir, OVL_XATTR_ORIGIN,
1235 upperpath->dentry, true, false);
1236 if (err)
1bd0a3ae 1237 pr_err("failed to verify index dir 'origin' xattr\n");
ad1d615c
AG
1238 }
1239 err = ovl_verify_upper(ofs->indexdir, upperpath->dentry, true);
f7e3a7d9 1240 if (err)
1bd0a3ae 1241 pr_err("failed to verify index dir 'upper' xattr\n");
f7e3a7d9
MS
1242
1243 /* Cleanup bad/stale/orphan index entries */
1244 if (!err)
1eff1a1d 1245 err = ovl_indexdir_cleanup(ofs);
f7e3a7d9 1246 }
ad204488 1247 if (err || !ofs->indexdir)
1bd0a3ae 1248 pr_warn("try deleting index dir or mounting with '-o index=off' to disable inodes index.\n");
f7e3a7d9
MS
1249
1250out:
2ba9d57e 1251 mnt_drop_write(mnt);
f7e3a7d9
MS
1252 return err;
1253}
1254
9df085f3
AG
1255static bool ovl_lower_uuid_ok(struct ovl_fs *ofs, const uuid_t *uuid)
1256{
1257 unsigned int i;
1258
7e63c87f 1259 if (!ofs->config.nfs_export && !ofs->upper_mnt)
9df085f3
AG
1260 return true;
1261
1b81dddd 1262 for (i = 0; i < ofs->numfs; i++) {
9df085f3
AG
1263 /*
1264 * We use uuid to associate an overlay lower file handle with a
1265 * lower layer, so we can accept lower fs with null uuid as long
1266 * as all lower layers with null uuid are on the same fs.
7e63c87f
AG
1267 * if we detect multiple lower fs with the same uuid, we
1268 * disable lower file handle decoding on all of them.
9df085f3 1269 */
1b81dddd
AG
1270 if (ofs->fs[i].is_lower &&
1271 uuid_equal(&ofs->fs[i].sb->s_uuid, uuid)) {
07f1e596 1272 ofs->fs[i].bad_uuid = true;
9df085f3 1273 return false;
7e63c87f 1274 }
9df085f3
AG
1275 }
1276 return true;
1277}
1278
5148626b 1279/* Get a unique fsid for the layer */
9df085f3 1280static int ovl_get_fsid(struct ovl_fs *ofs, const struct path *path)
5148626b 1281{
9df085f3 1282 struct super_block *sb = path->mnt->mnt_sb;
5148626b
AG
1283 unsigned int i;
1284 dev_t dev;
1285 int err;
7e63c87f 1286 bool bad_uuid = false;
5148626b 1287
07f1e596
AG
1288 for (i = 0; i < ofs->numfs; i++) {
1289 if (ofs->fs[i].sb == sb)
1290 return i;
5148626b
AG
1291 }
1292
9df085f3 1293 if (!ovl_lower_uuid_ok(ofs, &sb->s_uuid)) {
7e63c87f
AG
1294 bad_uuid = true;
1295 if (ofs->config.index || ofs->config.nfs_export) {
1296 ofs->config.index = false;
1297 ofs->config.nfs_export = false;
1bd0a3ae 1298 pr_warn("%s uuid detected in lower fs '%pd2', falling back to index=off,nfs_export=off.\n",
7e63c87f
AG
1299 uuid_is_null(&sb->s_uuid) ? "null" :
1300 "conflicting",
1301 path->dentry);
1302 }
9df085f3
AG
1303 }
1304
5148626b
AG
1305 err = get_anon_bdev(&dev);
1306 if (err) {
1bd0a3ae 1307 pr_err("failed to get anonymous bdev for lowerpath\n");
5148626b
AG
1308 return err;
1309 }
1310
07f1e596
AG
1311 ofs->fs[ofs->numfs].sb = sb;
1312 ofs->fs[ofs->numfs].pseudo_dev = dev;
1313 ofs->fs[ofs->numfs].bad_uuid = bad_uuid;
5148626b 1314
07f1e596 1315 return ofs->numfs++;
5148626b
AG
1316}
1317
94375f9d
AG
1318static int ovl_get_layers(struct super_block *sb, struct ovl_fs *ofs,
1319 struct path *stack, unsigned int numlower)
520d7c86
MS
1320{
1321 int err;
1322 unsigned int i;
13464165 1323 struct ovl_layer *layers;
520d7c86
MS
1324
1325 err = -ENOMEM;
13464165
MS
1326 layers = kcalloc(numlower + 1, sizeof(struct ovl_layer), GFP_KERNEL);
1327 if (!layers)
520d7c86 1328 goto out;
13464165 1329 ofs->layers = layers;
5148626b 1330
07f1e596
AG
1331 ofs->fs = kcalloc(numlower + 1, sizeof(struct ovl_sb), GFP_KERNEL);
1332 if (ofs->fs == NULL)
5148626b
AG
1333 goto out;
1334
07f1e596
AG
1335 /* idx/fsid 0 are reserved for upper fs even with lower only overlay */
1336 ofs->numfs++;
1337
13464165
MS
1338 layers[0].mnt = ofs->upper_mnt;
1339 layers[0].idx = 0;
1340 layers[0].fsid = 0;
94375f9d
AG
1341 ofs->numlayer = 1;
1342
07f1e596 1343 /*
b7bf9908
AG
1344 * All lower layers that share the same fs as upper layer, use the same
1345 * pseudo_dev as upper layer. Allocate fs[0].pseudo_dev even for lower
1346 * only overlay to simplify ovl_fs_free().
1b81dddd 1347 * is_lower will be set if upper fs is shared with a lower layer.
07f1e596 1348 */
b7bf9908
AG
1349 err = get_anon_bdev(&ofs->fs[0].pseudo_dev);
1350 if (err) {
1351 pr_err("failed to get anonymous bdev for upper fs\n");
1352 goto out;
1353 }
1354
07f1e596
AG
1355 if (ofs->upper_mnt) {
1356 ofs->fs[0].sb = ofs->upper_mnt->mnt_sb;
1b81dddd 1357 ofs->fs[0].is_lower = false;
07f1e596
AG
1358 }
1359
520d7c86
MS
1360 for (i = 0; i < numlower; i++) {
1361 struct vfsmount *mnt;
146d62e5 1362 struct inode *trap;
5148626b 1363 int fsid;
520d7c86 1364
9df085f3 1365 err = fsid = ovl_get_fsid(ofs, &stack[i]);
5148626b 1366 if (err < 0)
520d7c86 1367 goto out;
520d7c86 1368
146d62e5
AG
1369 err = ovl_setup_trap(sb, stack[i].dentry, &trap, "lowerdir");
1370 if (err)
1371 goto out;
1372
0be0bfd2
AG
1373 if (ovl_is_inuse(stack[i].dentry)) {
1374 err = ovl_report_in_use(ofs, "lowerdir");
1375 if (err)
1376 goto out;
1377 }
1378
520d7c86
MS
1379 mnt = clone_private_mount(&stack[i]);
1380 err = PTR_ERR(mnt);
1381 if (IS_ERR(mnt)) {
1bd0a3ae 1382 pr_err("failed to clone lowerpath\n");
146d62e5 1383 iput(trap);
520d7c86
MS
1384 goto out;
1385 }
5148626b 1386
520d7c86
MS
1387 /*
1388 * Make lower layers R/O. That way fchmod/fchown on lower file
1389 * will fail instead of modifying lower fs.
1390 */
1391 mnt->mnt_flags |= MNT_READONLY | MNT_NOATIME;
1392
13464165
MS
1393 layers[ofs->numlayer].trap = trap;
1394 layers[ofs->numlayer].mnt = mnt;
1395 layers[ofs->numlayer].idx = ofs->numlayer;
1396 layers[ofs->numlayer].fsid = fsid;
1397 layers[ofs->numlayer].fs = &ofs->fs[fsid];
94375f9d 1398 ofs->numlayer++;
1b81dddd 1399 ofs->fs[fsid].is_lower = true;
520d7c86 1400 }
e487d889 1401
795939a9
AG
1402 /*
1403 * When all layers on same fs, overlay can use real inode numbers.
1404 * With mount option "xino=on", mounter declares that there are enough
1405 * free high bits in underlying fs to hold the unique fsid.
1406 * If overlayfs does encounter underlying inodes using the high xino
1407 * bits reserved for fsid, it emits a warning and uses the original
1408 * inode number.
1409 */
07f1e596 1410 if (ofs->numfs - !ofs->upper_mnt == 1) {
0f831ec8
AG
1411 if (ofs->config.xino == OVL_XINO_ON)
1412 pr_info("\"xino=on\" is useless with all layers on same fs, ignore.\n");
1413 ofs->xino_mode = 0;
53afcd31
AG
1414 } else if (ofs->config.xino == OVL_XINO_OFF) {
1415 ofs->xino_mode = -1;
0f831ec8 1416 } else if (ofs->config.xino == OVL_XINO_ON && ofs->xino_mode < 0) {
795939a9 1417 /*
07f1e596
AG
1418 * This is a roundup of number of bits needed for encoding
1419 * fsid, where fsid 0 is reserved for upper fs even with
1420 * lower only overlay.
795939a9
AG
1421 */
1422 BUILD_BUG_ON(ilog2(OVL_MAX_STACK) > 31);
07f1e596 1423 ofs->xino_mode = ilog2(ofs->numfs - 1) + 1;
795939a9
AG
1424 }
1425
0f831ec8 1426 if (ofs->xino_mode > 0) {
1bd0a3ae 1427 pr_info("\"xino\" feature enabled using %d upper inode bits.\n",
0f831ec8 1428 ofs->xino_mode);
795939a9 1429 }
e487d889 1430
520d7c86
MS
1431 err = 0;
1432out:
1433 return err;
1434}
1435
4155c10a 1436static struct ovl_entry *ovl_get_lowerstack(struct super_block *sb,
ad204488 1437 struct ovl_fs *ofs)
53dbb0b4
MS
1438{
1439 int err;
1440 char *lowertmp, *lower;
4155c10a
MS
1441 struct path *stack = NULL;
1442 unsigned int stacklen, numlower = 0, i;
53dbb0b4 1443 bool remote = false;
4155c10a 1444 struct ovl_entry *oe;
53dbb0b4
MS
1445
1446 err = -ENOMEM;
ad204488 1447 lowertmp = kstrdup(ofs->config.lowerdir, GFP_KERNEL);
53dbb0b4 1448 if (!lowertmp)
4155c10a 1449 goto out_err;
53dbb0b4
MS
1450
1451 err = -EINVAL;
1452 stacklen = ovl_split_lowerdirs(lowertmp);
1453 if (stacklen > OVL_MAX_STACK) {
1bd0a3ae 1454 pr_err("too many lower directories, limit is %d\n",
53dbb0b4 1455 OVL_MAX_STACK);
4155c10a 1456 goto out_err;
ad204488 1457 } else if (!ofs->config.upperdir && stacklen == 1) {
1bd0a3ae 1458 pr_err("at least 2 lowerdir are needed while upperdir nonexistent\n");
4155c10a 1459 goto out_err;
f168f109
AG
1460 } else if (!ofs->config.upperdir && ofs->config.nfs_export &&
1461 ofs->config.redirect_follow) {
1bd0a3ae 1462 pr_warn("NFS export requires \"redirect_dir=nofollow\" on non-upper mount, falling back to nfs_export=off.\n");
f168f109 1463 ofs->config.nfs_export = false;
53dbb0b4
MS
1464 }
1465
1466 err = -ENOMEM;
1467 stack = kcalloc(stacklen, sizeof(struct path), GFP_KERNEL);
1468 if (!stack)
4155c10a 1469 goto out_err;
53dbb0b4
MS
1470
1471 err = -EINVAL;
1472 lower = lowertmp;
1473 for (numlower = 0; numlower < stacklen; numlower++) {
ad204488 1474 err = ovl_lower_dir(lower, &stack[numlower], ofs,
53dbb0b4
MS
1475 &sb->s_stack_depth, &remote);
1476 if (err)
4155c10a 1477 goto out_err;
53dbb0b4
MS
1478
1479 lower = strchr(lower, '\0') + 1;
1480 }
1481
1482 err = -EINVAL;
1483 sb->s_stack_depth++;
1484 if (sb->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
1bd0a3ae 1485 pr_err("maximum fs stacking depth exceeded\n");
4155c10a 1486 goto out_err;
53dbb0b4
MS
1487 }
1488
94375f9d 1489 err = ovl_get_layers(sb, ofs, stack, numlower);
4155c10a
MS
1490 if (err)
1491 goto out_err;
1492
1493 err = -ENOMEM;
1494 oe = ovl_alloc_entry(numlower);
1495 if (!oe)
1496 goto out_err;
1497
1498 for (i = 0; i < numlower; i++) {
1499 oe->lowerstack[i].dentry = dget(stack[i].dentry);
94375f9d 1500 oe->lowerstack[i].layer = &ofs->layers[i+1];
4155c10a 1501 }
53dbb0b4
MS
1502
1503 if (remote)
1504 sb->s_d_op = &ovl_reval_dentry_operations;
1505 else
1506 sb->s_d_op = &ovl_dentry_operations;
1507
53dbb0b4 1508out:
53dbb0b4
MS
1509 for (i = 0; i < numlower; i++)
1510 path_put(&stack[i]);
1511 kfree(stack);
4155c10a
MS
1512 kfree(lowertmp);
1513
1514 return oe;
1515
1516out_err:
1517 oe = ERR_PTR(err);
53dbb0b4
MS
1518 goto out;
1519}
1520
146d62e5
AG
1521/*
1522 * Check if this layer root is a descendant of:
1523 * - another layer of this overlayfs instance
1524 * - upper/work dir of any overlayfs instance
146d62e5 1525 */
0be0bfd2
AG
1526static int ovl_check_layer(struct super_block *sb, struct ovl_fs *ofs,
1527 struct dentry *dentry, const char *name)
146d62e5 1528{
9179c21d 1529 struct dentry *next = dentry, *parent;
146d62e5
AG
1530 int err = 0;
1531
9179c21d 1532 if (!dentry)
146d62e5
AG
1533 return 0;
1534
9179c21d
MS
1535 parent = dget_parent(next);
1536
1537 /* Walk back ancestors to root (inclusive) looking for traps */
1538 while (!err && parent != next) {
0be0bfd2 1539 if (ovl_lookup_trap_inode(sb, parent)) {
146d62e5 1540 err = -ELOOP;
1bd0a3ae 1541 pr_err("overlapping %s path\n", name);
0be0bfd2
AG
1542 } else if (ovl_is_inuse(parent)) {
1543 err = ovl_report_in_use(ofs, name);
146d62e5 1544 }
146d62e5 1545 next = parent;
9179c21d
MS
1546 parent = dget_parent(next);
1547 dput(next);
146d62e5
AG
1548 }
1549
9179c21d 1550 dput(parent);
146d62e5
AG
1551
1552 return err;
1553}
1554
1555/*
1556 * Check if any of the layers or work dirs overlap.
1557 */
1558static int ovl_check_overlapping_layers(struct super_block *sb,
1559 struct ovl_fs *ofs)
1560{
1561 int i, err;
1562
1563 if (ofs->upper_mnt) {
0be0bfd2
AG
1564 err = ovl_check_layer(sb, ofs, ofs->upper_mnt->mnt_root,
1565 "upperdir");
146d62e5
AG
1566 if (err)
1567 return err;
1568
1569 /*
1570 * Checking workbasedir avoids hitting ovl_is_inuse(parent) of
1571 * this instance and covers overlapping work and index dirs,
1572 * unless work or index dir have been moved since created inside
1573 * workbasedir. In that case, we already have their traps in
1574 * inode cache and we will catch that case on lookup.
1575 */
0be0bfd2 1576 err = ovl_check_layer(sb, ofs, ofs->workbasedir, "workdir");
146d62e5
AG
1577 if (err)
1578 return err;
1579 }
1580
94375f9d 1581 for (i = 1; i < ofs->numlayer; i++) {
0be0bfd2 1582 err = ovl_check_layer(sb, ofs,
94375f9d 1583 ofs->layers[i].mnt->mnt_root,
146d62e5
AG
1584 "lowerdir");
1585 if (err)
1586 return err;
1587 }
1588
1589 return 0;
1590}
1591
2effc5c2
AG
1592static struct dentry *ovl_get_root(struct super_block *sb,
1593 struct dentry *upperdentry,
1594 struct ovl_entry *oe)
1595{
1596 struct dentry *root;
1597
1598 root = d_make_root(ovl_new_inode(sb, S_IFDIR, 0));
1599 if (!root)
1600 return NULL;
1601
1602 root->d_fsdata = oe;
1603
1604 if (upperdentry) {
1605 ovl_dentry_set_upper_alias(root);
1606 if (ovl_is_impuredir(upperdentry))
1607 ovl_set_flag(OVL_IMPURE, d_inode(root));
1608 }
1609
1610 /* Root is always merge -> can have whiteouts */
1611 ovl_set_flag(OVL_WHITEOUTS, d_inode(root));
1612 ovl_dentry_set_flag(OVL_E_CONNECTED, root);
1613 ovl_set_upperdata(d_inode(root));
1614 ovl_inode_init(d_inode(root), upperdentry, ovl_dentry_lower(root),
1615 NULL);
1616
1617 return root;
1618}
1619
e9be9d5e
MS
1620static int ovl_fill_super(struct super_block *sb, void *data, int silent)
1621{
33006cdf 1622 struct path upperpath = { };
e9be9d5e 1623 struct dentry *root_dentry;
4155c10a 1624 struct ovl_entry *oe;
ad204488 1625 struct ovl_fs *ofs;
51f8f3c4 1626 struct cred *cred;
e9be9d5e
MS
1627 int err;
1628
f45827e8 1629 err = -ENOMEM;
ad204488
MS
1630 ofs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
1631 if (!ofs)
e9be9d5e
MS
1632 goto out;
1633
ad204488 1634 ofs->creator_cred = cred = prepare_creds();
c6fe6254
MS
1635 if (!cred)
1636 goto out_err;
1637
ad204488 1638 ofs->config.index = ovl_index_def;
f168f109 1639 ofs->config.nfs_export = ovl_nfs_export_def;
795939a9 1640 ofs->config.xino = ovl_xino_def();
d5791044 1641 ofs->config.metacopy = ovl_metacopy_def;
ad204488 1642 err = ovl_parse_opt((char *) data, &ofs->config);
f45827e8 1643 if (err)
a9075cdb 1644 goto out_err;
f45827e8 1645
e9be9d5e 1646 err = -EINVAL;
ad204488 1647 if (!ofs->config.lowerdir) {
07f2af7b 1648 if (!silent)
1bd0a3ae 1649 pr_err("missing 'lowerdir'\n");
a9075cdb 1650 goto out_err;
e9be9d5e
MS
1651 }
1652
53a08cb9 1653 sb->s_stack_depth = 0;
cf9a6784 1654 sb->s_maxbytes = MAX_LFS_FILESIZE;
e487d889 1655 /* Assume underlaying fs uses 32bit inodes unless proven otherwise */
53afcd31 1656 if (ofs->config.xino != OVL_XINO_OFF) {
0f831ec8 1657 ofs->xino_mode = BITS_PER_LONG - 32;
53afcd31
AG
1658 if (!ofs->xino_mode) {
1659 pr_warn("xino not supported on 32bit kernel, falling back to xino=off.\n");
1660 ofs->config.xino = OVL_XINO_OFF;
1661 }
1662 }
795939a9 1663
146d62e5
AG
1664 /* alloc/destroy_inode needed for setting up traps in inode cache */
1665 sb->s_op = &ovl_super_operations;
1666
ad204488
MS
1667 if (ofs->config.upperdir) {
1668 if (!ofs->config.workdir) {
1bd0a3ae 1669 pr_err("missing 'workdir'\n");
a9075cdb 1670 goto out_err;
53a08cb9 1671 }
e9be9d5e 1672
146d62e5 1673 err = ovl_get_upper(sb, ofs, &upperpath);
53a08cb9 1674 if (err)
a9075cdb 1675 goto out_err;
2cac0c00 1676
146d62e5 1677 err = ovl_get_workdir(sb, ofs, &upperpath);
8ed61dc3 1678 if (err)
a9075cdb 1679 goto out_err;
c6fe6254 1680
ad204488 1681 if (!ofs->workdir)
1751e8a6 1682 sb->s_flags |= SB_RDONLY;
6e88256e 1683
ad204488
MS
1684 sb->s_stack_depth = ofs->upper_mnt->mnt_sb->s_stack_depth;
1685 sb->s_time_gran = ofs->upper_mnt->mnt_sb->s_time_gran;
c6fe6254 1686
e9be9d5e 1687 }
ad204488 1688 oe = ovl_get_lowerstack(sb, ofs);
4155c10a
MS
1689 err = PTR_ERR(oe);
1690 if (IS_ERR(oe))
a9075cdb 1691 goto out_err;
e9be9d5e 1692
71cbad7e 1693 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
ad204488 1694 if (!ofs->upper_mnt)
1751e8a6 1695 sb->s_flags |= SB_RDONLY;
e9be9d5e 1696
ad204488 1697 if (!(ovl_force_readonly(ofs)) && ofs->config.index) {
146d62e5 1698 err = ovl_get_indexdir(sb, ofs, oe, &upperpath);
54fb347e 1699 if (err)
4155c10a 1700 goto out_free_oe;
6e88256e 1701
972d0093
AG
1702 /* Force r/o mount with no index dir */
1703 if (!ofs->indexdir) {
1704 dput(ofs->workdir);
1705 ofs->workdir = NULL;
1751e8a6 1706 sb->s_flags |= SB_RDONLY;
972d0093
AG
1707 }
1708
02bcd157
AG
1709 }
1710
146d62e5
AG
1711 err = ovl_check_overlapping_layers(sb, ofs);
1712 if (err)
1713 goto out_free_oe;
1714
972d0093 1715 /* Show index=off in /proc/mounts for forced r/o mount */
f168f109 1716 if (!ofs->indexdir) {
ad204488 1717 ofs->config.index = false;
f168f109 1718 if (ofs->upper_mnt && ofs->config.nfs_export) {
1bd0a3ae 1719 pr_warn("NFS export requires an index dir, falling back to nfs_export=off.\n");
f168f109
AG
1720 ofs->config.nfs_export = false;
1721 }
1722 }
02bcd157 1723
d5791044 1724 if (ofs->config.metacopy && ofs->config.nfs_export) {
1bd0a3ae 1725 pr_warn("NFS export is not supported with metadata only copy up, falling back to nfs_export=off.\n");
d5791044
VG
1726 ofs->config.nfs_export = false;
1727 }
1728
8383f174
AG
1729 if (ofs->config.nfs_export)
1730 sb->s_export_op = &ovl_export_operations;
1731
51f8f3c4
KK
1732 /* Never override disk quota limits or use reserved space */
1733 cap_lower(cred->cap_effective, CAP_SYS_RESOURCE);
1734
655042cc 1735 sb->s_magic = OVERLAYFS_SUPER_MAGIC;
655042cc 1736 sb->s_xattr = ovl_xattr_handlers;
ad204488 1737 sb->s_fs_info = ofs;
de2a4a50 1738 sb->s_flags |= SB_POSIXACL;
655042cc 1739
c6fe6254 1740 err = -ENOMEM;
2effc5c2 1741 root_dentry = ovl_get_root(sb, upperpath.dentry, oe);
e9be9d5e 1742 if (!root_dentry)
4155c10a 1743 goto out_free_oe;
e9be9d5e
MS
1744
1745 mntput(upperpath.mnt);
ed06e069 1746
e9be9d5e 1747 sb->s_root = root_dentry;
e9be9d5e
MS
1748
1749 return 0;
1750
4155c10a
MS
1751out_free_oe:
1752 ovl_entry_stack_free(oe);
b9343632 1753 kfree(oe);
4155c10a 1754out_err:
e9be9d5e 1755 path_put(&upperpath);
ad204488 1756 ovl_free_fs(ofs);
e9be9d5e
MS
1757out:
1758 return err;
1759}
1760
1761static struct dentry *ovl_mount(struct file_system_type *fs_type, int flags,
1762 const char *dev_name, void *raw_data)
1763{
1764 return mount_nodev(fs_type, flags, raw_data, ovl_fill_super);
1765}
1766
1767static struct file_system_type ovl_fs_type = {
1768 .owner = THIS_MODULE,
ef94b186 1769 .name = "overlay",
e9be9d5e
MS
1770 .mount = ovl_mount,
1771 .kill_sb = kill_anon_super,
1772};
ef94b186 1773MODULE_ALIAS_FS("overlay");
e9be9d5e 1774
13cf199d
AG
1775static void ovl_inode_init_once(void *foo)
1776{
1777 struct ovl_inode *oi = foo;
1778
1779 inode_init_once(&oi->vfs_inode);
1780}
1781
e9be9d5e
MS
1782static int __init ovl_init(void)
1783{
13cf199d
AG
1784 int err;
1785
1786 ovl_inode_cachep = kmem_cache_create("ovl_inode",
1787 sizeof(struct ovl_inode), 0,
1788 (SLAB_RECLAIM_ACCOUNT|
1789 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
1790 ovl_inode_init_once);
1791 if (ovl_inode_cachep == NULL)
1792 return -ENOMEM;
1793
2406a307
JX
1794 err = ovl_aio_request_cache_init();
1795 if (!err) {
1796 err = register_filesystem(&ovl_fs_type);
1797 if (!err)
1798 return 0;
1799
1800 ovl_aio_request_cache_destroy();
1801 }
1802 kmem_cache_destroy(ovl_inode_cachep);
13cf199d
AG
1803
1804 return err;
e9be9d5e
MS
1805}
1806
1807static void __exit ovl_exit(void)
1808{
1809 unregister_filesystem(&ovl_fs_type);
13cf199d
AG
1810
1811 /*
1812 * Make sure all delayed rcu free inodes are flushed before we
1813 * destroy cache.
1814 */
1815 rcu_barrier();
1816 kmem_cache_destroy(ovl_inode_cachep);
2406a307 1817 ovl_aio_request_cache_destroy();
e9be9d5e
MS
1818}
1819
1820module_init(ovl_init);
1821module_exit(ovl_exit);