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