3 * Copyright (C) 2011 Novell Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
11 #include <linux/namei.h>
12 #include <linux/pagemap.h>
13 #include <linux/xattr.h>
14 #include <linux/security.h>
15 #include <linux/mount.h>
16 #include <linux/slab.h>
17 #include <linux/parser.h>
18 #include <linux/module.h>
19 #include <linux/sched.h>
20 #include <linux/statfs.h>
21 #include <linux/seq_file.h>
22 #include "overlayfs.h"
24 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
25 MODULE_DESCRIPTION("Overlay filesystem");
26 MODULE_LICENSE("GPL");
28 #define OVERLAYFS_SUPER_MAGIC 0x794c7630
36 /* private information held for overlayfs's superblock */
38 struct vfsmount
*upper_mnt
;
40 struct vfsmount
**lower_mnt
;
41 struct dentry
*workdir
;
43 /* pathnames of lower and upper dirs, for show_options */
44 struct ovl_config config
;
49 /* private information held for every overlayfs dentry */
51 struct dentry
*__upperdentry
;
52 struct ovl_dir_cache
*cache
;
61 struct path lowerstack
[];
64 #define OVL_MAX_STACK 500
66 static struct dentry
*__ovl_dentry_lower(struct ovl_entry
*oe
)
68 return oe
->numlower
? oe
->lowerstack
[0].dentry
: NULL
;
71 enum ovl_path_type
ovl_path_type(struct dentry
*dentry
)
73 struct ovl_entry
*oe
= dentry
->d_fsdata
;
74 enum ovl_path_type type
= 0;
76 if (oe
->__upperdentry
) {
77 type
= __OVL_PATH_UPPER
;
80 * Non-dir dentry can hold lower dentry from previous
81 * location. Its purity depends only on opaque flag.
83 if (oe
->numlower
&& S_ISDIR(dentry
->d_inode
->i_mode
))
84 type
|= __OVL_PATH_MERGE
;
86 type
|= __OVL_PATH_PURE
;
89 type
|= __OVL_PATH_MERGE
;
94 static struct dentry
*ovl_upperdentry_dereference(struct ovl_entry
*oe
)
96 return lockless_dereference(oe
->__upperdentry
);
99 void ovl_path_upper(struct dentry
*dentry
, struct path
*path
)
101 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
102 struct ovl_entry
*oe
= dentry
->d_fsdata
;
104 path
->mnt
= ofs
->upper_mnt
;
105 path
->dentry
= ovl_upperdentry_dereference(oe
);
108 enum ovl_path_type
ovl_path_real(struct dentry
*dentry
, struct path
*path
)
110 enum ovl_path_type type
= ovl_path_type(dentry
);
112 if (!OVL_TYPE_UPPER(type
))
113 ovl_path_lower(dentry
, path
);
115 ovl_path_upper(dentry
, path
);
120 struct dentry
*ovl_dentry_upper(struct dentry
*dentry
)
122 struct ovl_entry
*oe
= dentry
->d_fsdata
;
124 return ovl_upperdentry_dereference(oe
);
127 struct dentry
*ovl_dentry_lower(struct dentry
*dentry
)
129 struct ovl_entry
*oe
= dentry
->d_fsdata
;
131 return __ovl_dentry_lower(oe
);
134 struct dentry
*ovl_dentry_real(struct dentry
*dentry
)
136 struct ovl_entry
*oe
= dentry
->d_fsdata
;
137 struct dentry
*realdentry
;
139 realdentry
= ovl_upperdentry_dereference(oe
);
141 realdentry
= __ovl_dentry_lower(oe
);
146 struct dentry
*ovl_entry_real(struct ovl_entry
*oe
, bool *is_upper
)
148 struct dentry
*realdentry
;
150 realdentry
= ovl_upperdentry_dereference(oe
);
154 realdentry
= __ovl_dentry_lower(oe
);
160 struct ovl_dir_cache
*ovl_dir_cache(struct dentry
*dentry
)
162 struct ovl_entry
*oe
= dentry
->d_fsdata
;
167 void ovl_set_dir_cache(struct dentry
*dentry
, struct ovl_dir_cache
*cache
)
169 struct ovl_entry
*oe
= dentry
->d_fsdata
;
174 void ovl_path_lower(struct dentry
*dentry
, struct path
*path
)
176 struct ovl_entry
*oe
= dentry
->d_fsdata
;
178 *path
= oe
->numlower
? oe
->lowerstack
[0] : (struct path
) { NULL
, NULL
};
181 int ovl_want_write(struct dentry
*dentry
)
183 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
184 return mnt_want_write(ofs
->upper_mnt
);
187 void ovl_drop_write(struct dentry
*dentry
)
189 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
190 mnt_drop_write(ofs
->upper_mnt
);
193 struct dentry
*ovl_workdir(struct dentry
*dentry
)
195 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
199 bool ovl_dentry_is_opaque(struct dentry
*dentry
)
201 struct ovl_entry
*oe
= dentry
->d_fsdata
;
205 void ovl_dentry_set_opaque(struct dentry
*dentry
, bool opaque
)
207 struct ovl_entry
*oe
= dentry
->d_fsdata
;
211 void ovl_dentry_update(struct dentry
*dentry
, struct dentry
*upperdentry
)
213 struct ovl_entry
*oe
= dentry
->d_fsdata
;
215 WARN_ON(!mutex_is_locked(&upperdentry
->d_parent
->d_inode
->i_mutex
));
216 WARN_ON(oe
->__upperdentry
);
217 BUG_ON(!upperdentry
->d_inode
);
219 * Make sure upperdentry is consistent before making it visible to
220 * ovl_upperdentry_dereference().
223 oe
->__upperdentry
= upperdentry
;
226 void ovl_dentry_version_inc(struct dentry
*dentry
)
228 struct ovl_entry
*oe
= dentry
->d_fsdata
;
230 WARN_ON(!mutex_is_locked(&dentry
->d_inode
->i_mutex
));
234 u64
ovl_dentry_version_get(struct dentry
*dentry
)
236 struct ovl_entry
*oe
= dentry
->d_fsdata
;
238 WARN_ON(!mutex_is_locked(&dentry
->d_inode
->i_mutex
));
242 bool ovl_is_whiteout(struct dentry
*dentry
)
244 struct inode
*inode
= dentry
->d_inode
;
246 return inode
&& IS_WHITEOUT(inode
);
249 static bool ovl_is_opaquedir(struct dentry
*dentry
)
253 struct inode
*inode
= dentry
->d_inode
;
255 if (!S_ISDIR(inode
->i_mode
) || !inode
->i_op
->getxattr
)
258 res
= inode
->i_op
->getxattr(dentry
, OVL_XATTR_OPAQUE
, &val
, 1);
259 if (res
== 1 && val
== 'y')
265 static void ovl_dentry_release(struct dentry
*dentry
)
267 struct ovl_entry
*oe
= dentry
->d_fsdata
;
272 dput(oe
->__upperdentry
);
273 for (i
= 0; i
< oe
->numlower
; i
++)
274 dput(oe
->lowerstack
[i
].dentry
);
279 static const struct dentry_operations ovl_dentry_operations
= {
280 .d_release
= ovl_dentry_release
,
281 .d_select_inode
= ovl_d_select_inode
,
284 static struct ovl_entry
*ovl_alloc_entry(unsigned int numlower
)
286 size_t size
= offsetof(struct ovl_entry
, lowerstack
[numlower
]);
287 struct ovl_entry
*oe
= kzalloc(size
, GFP_KERNEL
);
290 oe
->numlower
= numlower
;
295 static inline struct dentry
*ovl_lookup_real(struct dentry
*dir
,
298 struct dentry
*dentry
;
300 mutex_lock(&dir
->d_inode
->i_mutex
);
301 dentry
= lookup_one_len(name
->name
, dir
, name
->len
);
302 mutex_unlock(&dir
->d_inode
->i_mutex
);
304 if (IS_ERR(dentry
)) {
305 if (PTR_ERR(dentry
) == -ENOENT
)
307 } else if (!dentry
->d_inode
) {
315 * Returns next layer in stack starting from top.
316 * Returns -1 if this is the last layer.
318 int ovl_path_next(int idx
, struct dentry
*dentry
, struct path
*path
)
320 struct ovl_entry
*oe
= dentry
->d_fsdata
;
324 ovl_path_upper(dentry
, path
);
326 return oe
->numlower
? 1 : -1;
329 BUG_ON(idx
> oe
->numlower
);
330 *path
= oe
->lowerstack
[idx
- 1];
332 return (idx
< oe
->numlower
) ? idx
+ 1 : -1;
335 struct dentry
*ovl_lookup(struct inode
*dir
, struct dentry
*dentry
,
338 struct ovl_entry
*oe
;
339 struct ovl_entry
*poe
= dentry
->d_parent
->d_fsdata
;
340 struct path
*stack
= NULL
;
341 struct dentry
*upperdir
, *upperdentry
= NULL
;
342 unsigned int ctr
= 0;
343 struct inode
*inode
= NULL
;
344 bool upperopaque
= false;
345 struct dentry
*this, *prev
= NULL
;
349 upperdir
= ovl_upperdentry_dereference(poe
);
351 this = ovl_lookup_real(upperdir
, &dentry
->d_name
);
357 if (ovl_is_whiteout(this)) {
361 } else if (poe
->numlower
&& ovl_is_opaquedir(this)) {
365 upperdentry
= prev
= this;
368 if (!upperopaque
&& poe
->numlower
) {
370 stack
= kcalloc(poe
->numlower
, sizeof(struct path
), GFP_KERNEL
);
375 for (i
= 0; !upperopaque
&& i
< poe
->numlower
; i
++) {
377 struct path lowerpath
= poe
->lowerstack
[i
];
379 this = ovl_lookup_real(lowerpath
.dentry
, &dentry
->d_name
);
383 * If it's positive, then treat ENAMETOOLONG as ENOENT.
385 if (err
== -ENAMETOOLONG
&& (upperdentry
|| ctr
))
391 if (ovl_is_whiteout(this)) {
396 * Only makes sense to check opaque dir if this is not the
399 if (i
< poe
->numlower
- 1 && ovl_is_opaquedir(this))
402 if (prev
&& (!S_ISDIR(prev
->d_inode
->i_mode
) ||
403 !S_ISDIR(this->d_inode
->i_mode
))) {
405 * FIXME: check for upper-opaqueness maybe better done
408 if (prev
== upperdentry
)
414 * If this is a non-directory then stop here.
416 if (!S_ISDIR(this->d_inode
->i_mode
))
419 stack
[ctr
].dentry
= this;
420 stack
[ctr
].mnt
= lowerpath
.mnt
;
427 oe
= ovl_alloc_entry(ctr
);
432 if (upperdentry
|| ctr
) {
433 struct dentry
*realdentry
;
435 realdentry
= upperdentry
? upperdentry
: stack
[0].dentry
;
438 inode
= ovl_new_inode(dentry
->d_sb
, realdentry
->d_inode
->i_mode
,
442 ovl_copyattr(realdentry
->d_inode
, inode
);
445 oe
->opaque
= upperopaque
;
446 oe
->__upperdentry
= upperdentry
;
447 memcpy(oe
->lowerstack
, stack
, sizeof(struct path
) * ctr
);
449 dentry
->d_fsdata
= oe
;
450 d_add(dentry
, inode
);
457 for (i
= 0; i
< ctr
; i
++)
458 dput(stack
[i
].dentry
);
466 struct file
*ovl_path_open(struct path
*path
, int flags
)
468 return dentry_open(path
, flags
, current_cred());
471 static void ovl_put_super(struct super_block
*sb
)
473 struct ovl_fs
*ufs
= sb
->s_fs_info
;
477 mntput(ufs
->upper_mnt
);
478 for (i
= 0; i
< ufs
->numlower
; i
++)
479 mntput(ufs
->lower_mnt
[i
]);
480 kfree(ufs
->lower_mnt
);
482 kfree(ufs
->config
.lowerdir
);
483 kfree(ufs
->config
.upperdir
);
484 kfree(ufs
->config
.workdir
);
490 * @sb: The overlayfs super block
491 * @buf: The struct kstatfs to fill in with stats
493 * Get the filesystem statistics. As writes always target the upper layer
494 * filesystem pass the statfs to the upper filesystem (if it exists)
496 static int ovl_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
498 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
499 struct dentry
*root_dentry
= dentry
->d_sb
->s_root
;
503 ovl_path_real(root_dentry
, &path
);
505 err
= vfs_statfs(&path
, buf
);
507 buf
->f_namelen
= max(buf
->f_namelen
, ofs
->lower_namelen
);
508 buf
->f_type
= OVERLAYFS_SUPER_MAGIC
;
517 * Prints the mount options for a given superblock.
518 * Returns zero; does not fail.
520 static int ovl_show_options(struct seq_file
*m
, struct dentry
*dentry
)
522 struct super_block
*sb
= dentry
->d_sb
;
523 struct ovl_fs
*ufs
= sb
->s_fs_info
;
525 seq_show_option(m
, "lowerdir", ufs
->config
.lowerdir
);
526 if (ufs
->config
.upperdir
) {
527 seq_show_option(m
, "upperdir", ufs
->config
.upperdir
);
528 seq_show_option(m
, "workdir", ufs
->config
.workdir
);
533 static int ovl_remount(struct super_block
*sb
, int *flags
, char *data
)
535 struct ovl_fs
*ufs
= sb
->s_fs_info
;
537 if (!(*flags
& MS_RDONLY
) && (!ufs
->upper_mnt
|| !ufs
->workdir
))
543 static const struct super_operations ovl_super_operations
= {
544 .put_super
= ovl_put_super
,
545 .statfs
= ovl_statfs
,
546 .show_options
= ovl_show_options
,
547 .remount_fs
= ovl_remount
,
557 static const match_table_t ovl_tokens
= {
558 {OPT_LOWERDIR
, "lowerdir=%s"},
559 {OPT_UPPERDIR
, "upperdir=%s"},
560 {OPT_WORKDIR
, "workdir=%s"},
564 static char *ovl_next_opt(char **s
)
572 for (p
= sbegin
; *p
; p
++) {
577 } else if (*p
== ',') {
587 static int ovl_parse_opt(char *opt
, struct ovl_config
*config
)
591 while ((p
= ovl_next_opt(&opt
)) != NULL
) {
593 substring_t args
[MAX_OPT_ARGS
];
598 token
= match_token(p
, ovl_tokens
, args
);
601 kfree(config
->upperdir
);
602 config
->upperdir
= match_strdup(&args
[0]);
603 if (!config
->upperdir
)
608 kfree(config
->lowerdir
);
609 config
->lowerdir
= match_strdup(&args
[0]);
610 if (!config
->lowerdir
)
615 kfree(config
->workdir
);
616 config
->workdir
= match_strdup(&args
[0]);
617 if (!config
->workdir
)
622 pr_err("overlayfs: unrecognized mount option \"%s\" or missing value\n", p
);
627 /* Workdir is useless in non-upper mount */
628 if (!config
->upperdir
&& config
->workdir
) {
629 pr_info("overlayfs: option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
631 kfree(config
->workdir
);
632 config
->workdir
= NULL
;
638 #define OVL_WORKDIR_NAME "work"
640 static struct dentry
*ovl_workdir_create(struct vfsmount
*mnt
,
641 struct dentry
*dentry
)
643 struct inode
*dir
= dentry
->d_inode
;
646 bool retried
= false;
648 err
= mnt_want_write(mnt
);
652 mutex_lock_nested(&dir
->i_mutex
, I_MUTEX_PARENT
);
654 work
= lookup_one_len(OVL_WORKDIR_NAME
, dentry
,
655 strlen(OVL_WORKDIR_NAME
));
658 struct kstat stat
= {
668 ovl_cleanup(dir
, work
);
673 err
= ovl_create_real(dir
, work
, &stat
, NULL
, NULL
, true);
678 mutex_unlock(&dir
->i_mutex
);
689 static void ovl_unescape(char *s
)
702 static bool ovl_is_allowed_fs_type(struct dentry
*root
)
704 const struct dentry_operations
*dop
= root
->d_op
;
708 * - automount filesystems
709 * - filesystems with revalidate (FIXME for lower layer)
710 * - filesystems with case insensitive names
713 (dop
->d_manage
|| dop
->d_automount
||
714 dop
->d_revalidate
|| dop
->d_weak_revalidate
||
715 dop
->d_compare
|| dop
->d_hash
)) {
721 static int ovl_mount_dir_noesc(const char *name
, struct path
*path
)
726 pr_err("overlayfs: empty lowerdir\n");
729 err
= kern_path(name
, LOOKUP_FOLLOW
, path
);
731 pr_err("overlayfs: failed to resolve '%s': %i\n", name
, err
);
735 if (!ovl_is_allowed_fs_type(path
->dentry
)) {
736 pr_err("overlayfs: filesystem on '%s' not supported\n", name
);
739 if (!S_ISDIR(path
->dentry
->d_inode
->i_mode
)) {
740 pr_err("overlayfs: '%s' not a directory\n", name
);
751 static int ovl_mount_dir(const char *name
, struct path
*path
)
754 char *tmp
= kstrdup(name
, GFP_KERNEL
);
758 err
= ovl_mount_dir_noesc(tmp
, path
);
764 static int ovl_lower_dir(const char *name
, struct path
*path
, long *namelen
,
768 struct kstatfs statfs
;
770 err
= ovl_mount_dir_noesc(name
, path
);
774 err
= vfs_statfs(path
, &statfs
);
776 pr_err("overlayfs: statfs failed on '%s'\n", name
);
779 *namelen
= max(*namelen
, statfs
.f_namelen
);
780 *stack_depth
= max(*stack_depth
, path
->mnt
->mnt_sb
->s_stack_depth
);
790 /* Workdir should not be subdir of upperdir and vice versa */
791 static bool ovl_workdir_ok(struct dentry
*workdir
, struct dentry
*upperdir
)
795 if (workdir
!= upperdir
) {
796 ok
= (lock_rename(workdir
, upperdir
) == NULL
);
797 unlock_rename(workdir
, upperdir
);
802 static unsigned int ovl_split_lowerdirs(char *str
)
804 unsigned int ctr
= 1;
807 for (s
= d
= str
;; s
++, d
++) {
810 } else if (*s
== ':') {
822 static int ovl_fill_super(struct super_block
*sb
, void *data
, int silent
)
824 struct path upperpath
= { NULL
, NULL
};
825 struct path workpath
= { NULL
, NULL
};
826 struct dentry
*root_dentry
;
827 struct ovl_entry
*oe
;
829 struct path
*stack
= NULL
;
832 unsigned int numlower
;
833 unsigned int stacklen
= 0;
838 ufs
= kzalloc(sizeof(struct ovl_fs
), GFP_KERNEL
);
842 err
= ovl_parse_opt((char *) data
, &ufs
->config
);
844 goto out_free_config
;
847 if (!ufs
->config
.lowerdir
) {
848 pr_err("overlayfs: missing 'lowerdir'\n");
849 goto out_free_config
;
852 sb
->s_stack_depth
= 0;
853 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
854 if (ufs
->config
.upperdir
) {
855 if (!ufs
->config
.workdir
) {
856 pr_err("overlayfs: missing 'workdir'\n");
857 goto out_free_config
;
860 err
= ovl_mount_dir(ufs
->config
.upperdir
, &upperpath
);
862 goto out_free_config
;
864 /* Upper fs should not be r/o */
865 if (upperpath
.mnt
->mnt_sb
->s_flags
& MS_RDONLY
) {
866 pr_err("overlayfs: upper fs is r/o, try multi-lower layers mount\n");
868 goto out_put_upperpath
;
871 err
= ovl_mount_dir(ufs
->config
.workdir
, &workpath
);
873 goto out_put_upperpath
;
876 if (upperpath
.mnt
!= workpath
.mnt
) {
877 pr_err("overlayfs: workdir and upperdir must reside under the same mount\n");
878 goto out_put_workpath
;
880 if (!ovl_workdir_ok(workpath
.dentry
, upperpath
.dentry
)) {
881 pr_err("overlayfs: workdir and upperdir must be separate subtrees\n");
882 goto out_put_workpath
;
884 sb
->s_stack_depth
= upperpath
.mnt
->mnt_sb
->s_stack_depth
;
887 lowertmp
= kstrdup(ufs
->config
.lowerdir
, GFP_KERNEL
);
889 goto out_put_workpath
;
892 stacklen
= ovl_split_lowerdirs(lowertmp
);
893 if (stacklen
> OVL_MAX_STACK
) {
894 pr_err("overlayfs: too many lower directries, limit is %d\n",
896 goto out_free_lowertmp
;
897 } else if (!ufs
->config
.upperdir
&& stacklen
== 1) {
898 pr_err("overlayfs: at least 2 lowerdir are needed while upperdir nonexistent\n");
899 goto out_free_lowertmp
;
902 stack
= kcalloc(stacklen
, sizeof(struct path
), GFP_KERNEL
);
904 goto out_free_lowertmp
;
907 for (numlower
= 0; numlower
< stacklen
; numlower
++) {
908 err
= ovl_lower_dir(lower
, &stack
[numlower
],
909 &ufs
->lower_namelen
, &sb
->s_stack_depth
);
911 goto out_put_lowerpath
;
913 lower
= strchr(lower
, '\0') + 1;
918 if (sb
->s_stack_depth
> FILESYSTEM_MAX_STACK_DEPTH
) {
919 pr_err("overlayfs: maximum fs stacking depth exceeded\n");
920 goto out_put_lowerpath
;
923 if (ufs
->config
.upperdir
) {
924 ufs
->upper_mnt
= clone_private_mount(&upperpath
);
925 err
= PTR_ERR(ufs
->upper_mnt
);
926 if (IS_ERR(ufs
->upper_mnt
)) {
927 pr_err("overlayfs: failed to clone upperpath\n");
928 goto out_put_lowerpath
;
931 ufs
->workdir
= ovl_workdir_create(ufs
->upper_mnt
, workpath
.dentry
);
932 err
= PTR_ERR(ufs
->workdir
);
933 if (IS_ERR(ufs
->workdir
)) {
934 pr_warn("overlayfs: failed to create directory %s/%s (errno: %i); mounting read-only\n",
935 ufs
->config
.workdir
, OVL_WORKDIR_NAME
, -err
);
936 sb
->s_flags
|= MS_RDONLY
;
942 ufs
->lower_mnt
= kcalloc(numlower
, sizeof(struct vfsmount
*), GFP_KERNEL
);
943 if (ufs
->lower_mnt
== NULL
)
944 goto out_put_workdir
;
945 for (i
= 0; i
< numlower
; i
++) {
946 struct vfsmount
*mnt
= clone_private_mount(&stack
[i
]);
950 pr_err("overlayfs: failed to clone lowerpath\n");
951 goto out_put_lower_mnt
;
954 * Make lower_mnt R/O. That way fchmod/fchown on lower file
955 * will fail instead of modifying lower fs.
957 mnt
->mnt_flags
|= MNT_READONLY
;
959 ufs
->lower_mnt
[ufs
->numlower
] = mnt
;
963 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
965 sb
->s_flags
|= MS_RDONLY
;
967 sb
->s_d_op
= &ovl_dentry_operations
;
970 oe
= ovl_alloc_entry(numlower
);
972 goto out_put_lower_mnt
;
974 root_dentry
= d_make_root(ovl_new_inode(sb
, S_IFDIR
, oe
));
978 mntput(upperpath
.mnt
);
979 for (i
= 0; i
< numlower
; i
++)
980 mntput(stack
[i
].mnt
);
984 oe
->__upperdentry
= upperpath
.dentry
;
985 for (i
= 0; i
< numlower
; i
++) {
986 oe
->lowerstack
[i
].dentry
= stack
[i
].dentry
;
987 oe
->lowerstack
[i
].mnt
= ufs
->lower_mnt
[i
];
991 root_dentry
->d_fsdata
= oe
;
993 ovl_copyattr(ovl_dentry_real(root_dentry
)->d_inode
,
994 root_dentry
->d_inode
);
996 sb
->s_magic
= OVERLAYFS_SUPER_MAGIC
;
997 sb
->s_op
= &ovl_super_operations
;
998 sb
->s_root
= root_dentry
;
1006 for (i
= 0; i
< ufs
->numlower
; i
++)
1007 mntput(ufs
->lower_mnt
[i
]);
1008 kfree(ufs
->lower_mnt
);
1011 mntput(ufs
->upper_mnt
);
1013 for (i
= 0; i
< numlower
; i
++)
1014 path_put(&stack
[i
]);
1019 path_put(&workpath
);
1021 path_put(&upperpath
);
1023 kfree(ufs
->config
.lowerdir
);
1024 kfree(ufs
->config
.upperdir
);
1025 kfree(ufs
->config
.workdir
);
1031 static struct dentry
*ovl_mount(struct file_system_type
*fs_type
, int flags
,
1032 const char *dev_name
, void *raw_data
)
1034 return mount_nodev(fs_type
, flags
, raw_data
, ovl_fill_super
);
1037 static struct file_system_type ovl_fs_type
= {
1038 .owner
= THIS_MODULE
,
1041 .kill_sb
= kill_anon_super
,
1043 MODULE_ALIAS_FS("overlay");
1045 static int __init
ovl_init(void)
1047 return register_filesystem(&ovl_fs_type
);
1050 static void __exit
ovl_exit(void)
1052 unregister_filesystem(&ovl_fs_type
);
1055 module_init(ovl_init
);
1056 module_exit(ovl_exit
);