blob: 94ca095b2a9eaa9e7e0e67cb49e626664156e166 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Miklos Szeredie9be9d52014-10-24 00:14:38 +02002/*
3 *
4 * Copyright (C) 2011 Novell Inc.
Miklos Szeredie9be9d52014-10-24 00:14:38 +02005 */
6
Ingo Molnar5b825c32017-02-02 17:54:15 +01007#include <uapi/linux/magic.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +02008#include <linux/fs.h>
9#include <linux/namei.h>
10#include <linux/xattr.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020011#include <linux/mount.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020012#include <linux/parser.h>
13#include <linux/module.h>
Andy Whitcroftcc259632014-10-24 00:14:38 +020014#include <linux/statfs.h>
Erez Zadokf45827e82014-10-24 00:14:38 +020015#include <linux/seq_file.h>
Miklos Szeredid837a492016-07-29 12:05:24 +020016#include <linux/posix_acl_xattr.h>
Amir Goldsteine487d882017-11-07 13:55:04 +020017#include <linux/exportfs.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020018#include "overlayfs.h"
19
20MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
21MODULE_DESCRIPTION("Overlay filesystem");
22MODULE_LICENSE("GPL");
23
Miklos Szeredie9be9d52014-10-24 00:14:38 +020024
25struct ovl_dir_cache;
26
Miklos Szeredia78d9f02014-12-13 00:59:52 +010027#define OVL_MAX_STACK 500
28
Miklos Szeredi688ea0e2016-12-16 11:02:57 +010029static bool ovl_redirect_dir_def = IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR);
30module_param_named(redirect_dir, ovl_redirect_dir_def, bool, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020031MODULE_PARM_DESC(redirect_dir,
Miklos Szeredi688ea0e2016-12-16 11:02:57 +010032 "Default to on or off for the redirect_dir feature");
Miklos Szeredie9be9d52014-10-24 00:14:38 +020033
Miklos Szeredi438c84c2017-12-11 11:28:10 +010034static 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);
Nicolas Schier253e7482019-06-17 09:39:00 +020038MODULE_PARM_DESC(redirect_always_follow,
Miklos Szeredi438c84c2017-12-11 11:28:10 +010039 "Follow redirects even if redirect_dir feature is turned off");
40
Amir Goldstein02bcd152017-06-21 15:28:36 +030041static bool ovl_index_def = IS_ENABLED(CONFIG_OVERLAY_FS_INDEX);
42module_param_named(index, ovl_index_def, bool, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020043MODULE_PARM_DESC(index,
Amir Goldstein02bcd152017-06-21 15:28:36 +030044 "Default to on or off for the inodes index feature");
45
Amir Goldsteinf168f102018-01-19 11:26:53 +020046static bool ovl_nfs_export_def = IS_ENABLED(CONFIG_OVERLAY_FS_NFS_EXPORT);
47module_param_named(nfs_export, ovl_nfs_export_def, bool, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020048MODULE_PARM_DESC(nfs_export,
Amir Goldsteinf168f102018-01-19 11:26:53 +020049 "Default to on or off for the NFS export feature");
50
Amir Goldstein795939a2018-03-29 09:08:18 +030051static bool ovl_xino_auto_def = IS_ENABLED(CONFIG_OVERLAY_FS_XINO_AUTO);
52module_param_named(xino_auto, ovl_xino_auto_def, bool, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020053MODULE_PARM_DESC(xino_auto,
Amir Goldstein795939a2018-03-29 09:08:18 +030054 "Auto enable xino feature");
55
Miklos Szeredi4155c102017-11-10 09:39:15 +010056static 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
Vivek Goyald5791042018-05-11 11:49:27 -040064static bool ovl_metacopy_def = IS_ENABLED(CONFIG_OVERLAY_FS_METACOPY);
65module_param_named(metacopy, ovl_metacopy_def, bool, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020066MODULE_PARM_DESC(metacopy,
Vivek Goyald5791042018-05-11 11:49:27 -040067 "Default to on or off for the metadata only copy up feature");
68
Miklos Szeredie9be9d52014-10-24 00:14:38 +020069static void ovl_dentry_release(struct dentry *dentry)
70{
71 struct ovl_entry *oe = dentry->d_fsdata;
72
73 if (oe) {
Miklos Szeredi4155c102017-11-10 09:39:15 +010074 ovl_entry_stack_free(oe);
Miklos Szeredie9be9d52014-10-24 00:14:38 +020075 kfree_rcu(oe, rcu);
76 }
77}
78
Miklos Szeredi2d902672016-06-30 08:53:27 +020079static struct dentry *ovl_d_real(struct dentry *dentry,
Miklos Szeredifb160432018-07-18 15:44:44 +020080 const struct inode *inode)
Miklos Szeredid101a122016-03-26 16:14:37 -040081{
82 struct dentry *real;
83
Miklos Szeredie8c985b2018-07-18 15:44:41 +020084 /* It's an overlay file */
85 if (inode && d_inode(dentry) == inode)
86 return dentry;
87
Miklos Szeredica4c8a32016-12-16 11:02:55 +010088 if (!d_is_reg(dentry)) {
Miklos Szeredid101a122016-03-26 16:14:37 -040089 if (!inode || inode == d_inode(dentry))
90 return dentry;
91 goto bug;
92 }
93
94 real = ovl_dentry_upper(dentry);
Vivek Goyal2c3d7352018-05-11 11:49:31 -040095 if (real && (inode == d_inode(real)))
Miklos Szeredid101a122016-03-26 16:14:37 -040096 return real;
97
Vivek Goyal2c3d7352018-05-11 11:49:31 -040098 if (real && !inode && ovl_has_upperdata(d_inode(dentry)))
99 return real;
100
101 real = ovl_dentry_lowerdata(dentry);
Miklos Szeredid101a122016-03-26 16:14:37 -0400102 if (!real)
103 goto bug;
104
Miklos Szeredic4fcfc12016-11-29 10:20:24 +0100105 /* Handle recursion */
Miklos Szeredifb160432018-07-18 15:44:44 +0200106 real = d_real(real, inode);
Miklos Szeredic4fcfc12016-11-29 10:20:24 +0100107
Miklos Szeredid101a122016-03-26 16:14:37 -0400108 if (!inode || inode == d_inode(real))
109 return real;
Miklos Szeredid101a122016-03-26 16:14:37 -0400110bug:
Miklos Szeredi656189d2016-07-29 12:05:24 +0200111 WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry,
Miklos Szeredid101a122016-03-26 16:14:37 -0400112 inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);
113 return dentry;
114}
115
Miklos Szeredi3bb7df92020-03-17 15:04:22 +0100116static int ovl_revalidate_real(struct dentry *d, unsigned int flags, bool weak)
117{
118 int ret = 1;
119
120 if (weak) {
121 if (d->d_flags & DCACHE_OP_WEAK_REVALIDATE)
122 ret = d->d_op->d_weak_revalidate(d, flags);
123 } else if (d->d_flags & DCACHE_OP_REVALIDATE) {
124 ret = d->d_op->d_revalidate(d, flags);
125 if (!ret) {
126 if (!(flags & LOOKUP_RCU))
127 d_invalidate(d);
128 ret = -ESTALE;
129 }
130 }
131 return ret;
132}
133
134static int ovl_dentry_revalidate_common(struct dentry *dentry,
135 unsigned int flags, bool weak)
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200136{
137 struct ovl_entry *oe = dentry->d_fsdata;
Miklos Szeredibccece12020-03-17 15:04:22 +0100138 struct dentry *upper;
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200139 unsigned int i;
140 int ret = 1;
141
Miklos Szeredibccece12020-03-17 15:04:22 +0100142 upper = ovl_dentry_upper(dentry);
143 if (upper)
144 ret = ovl_revalidate_real(upper, flags, weak);
145
Miklos Szeredi3bb7df92020-03-17 15:04:22 +0100146 for (i = 0; ret > 0 && i < oe->numlower; i++) {
147 ret = ovl_revalidate_real(oe->lowerstack[i].dentry, flags,
148 weak);
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200149 }
Miklos Szeredi3bb7df92020-03-17 15:04:22 +0100150 return ret;
151}
152
153static int ovl_dentry_revalidate(struct dentry *dentry, unsigned int flags)
154{
155 return ovl_dentry_revalidate_common(dentry, flags, false);
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200156}
157
158static int ovl_dentry_weak_revalidate(struct dentry *dentry, unsigned int flags)
159{
Miklos Szeredi3bb7df92020-03-17 15:04:22 +0100160 return ovl_dentry_revalidate_common(dentry, flags, true);
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200161}
162
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200163static const struct dentry_operations ovl_dentry_operations = {
164 .d_release = ovl_dentry_release,
Miklos Szeredid101a122016-03-26 16:14:37 -0400165 .d_real = ovl_d_real,
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200166 .d_revalidate = ovl_dentry_revalidate,
167 .d_weak_revalidate = ovl_dentry_weak_revalidate,
168};
169
Amir Goldstein13cf1992017-06-12 09:54:40 +0300170static struct kmem_cache *ovl_inode_cachep;
171
172static struct inode *ovl_alloc_inode(struct super_block *sb)
173{
174 struct ovl_inode *oi = kmem_cache_alloc(ovl_inode_cachep, GFP_KERNEL);
175
Hirofumi Nakagawab3885bd2017-09-26 03:09:53 +0900176 if (!oi)
177 return NULL;
178
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200179 oi->cache = NULL;
Miklos Szeredicf31c462017-07-04 22:03:16 +0200180 oi->redirect = NULL;
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200181 oi->version = 0;
Miklos Szeredi13c72072017-07-04 22:03:16 +0200182 oi->flags = 0;
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200183 oi->__upperdentry = NULL;
Miklos Szeredi25b77132017-07-04 22:03:16 +0200184 oi->lower = NULL;
Vivek Goyal2664bd02018-05-11 11:49:30 -0400185 oi->lowerdata = NULL;
Amir Goldsteina015daf2017-06-21 15:28:51 +0300186 mutex_init(&oi->lock);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200187
Amir Goldstein13cf1992017-06-12 09:54:40 +0300188 return &oi->vfs_inode;
189}
190
Al Viro0b269de2019-04-15 22:52:17 -0400191static void ovl_free_inode(struct inode *inode)
Amir Goldstein13cf1992017-06-12 09:54:40 +0300192{
Al Viro0b269de2019-04-15 22:52:17 -0400193 struct ovl_inode *oi = OVL_I(inode);
Amir Goldstein13cf1992017-06-12 09:54:40 +0300194
Al Viro0b269de2019-04-15 22:52:17 -0400195 kfree(oi->redirect);
196 mutex_destroy(&oi->lock);
197 kmem_cache_free(ovl_inode_cachep, oi);
Amir Goldstein13cf1992017-06-12 09:54:40 +0300198}
199
200static void ovl_destroy_inode(struct inode *inode)
201{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200202 struct ovl_inode *oi = OVL_I(inode);
203
204 dput(oi->__upperdentry);
Amir Goldstein31747ed2018-01-14 18:35:40 +0200205 iput(oi->lower);
Vivek Goyal2664bd02018-05-11 11:49:30 -0400206 if (S_ISDIR(inode->i_mode))
207 ovl_dir_cache_free(inode);
208 else
209 iput(oi->lowerdata);
Amir Goldstein13cf1992017-06-12 09:54:40 +0300210}
211
Miklos Szerediad204482017-11-10 09:39:16 +0100212static void ovl_free_fs(struct ovl_fs *ofs)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200213{
Miklos Szeredidf820f82020-06-04 10:48:19 +0200214 struct vfsmount **mounts;
Miklos Szeredidd662662014-12-13 00:59:43 +0100215 unsigned i;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200216
Amir Goldstein0be0bfd2019-07-12 15:24:34 +0300217 iput(ofs->workbasedir_trap);
Amir Goldstein146d62e2019-04-18 17:42:08 +0300218 iput(ofs->indexdir_trap);
219 iput(ofs->workdir_trap);
Chengguang Xuc21c8392020-04-24 10:55:17 +0800220 dput(ofs->whiteout);
Miklos Szerediad204482017-11-10 09:39:16 +0100221 dput(ofs->indexdir);
222 dput(ofs->workdir);
223 if (ofs->workdir_locked)
224 ovl_inuse_unlock(ofs->workbasedir);
225 dput(ofs->workbasedir);
226 if (ofs->upperdir_locked)
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200227 ovl_inuse_unlock(ovl_upper_mnt(ofs)->mnt_root);
Miklos Szeredidf820f82020-06-04 10:48:19 +0200228
229 /* Hack! Reuse ofs->layers as a vfsmount array before freeing it */
230 mounts = (struct vfsmount **) ofs->layers;
Miklos Szeredib8e42a62020-06-04 10:48:19 +0200231 for (i = 0; i < ofs->numlayer; i++) {
Amir Goldstein94375f92019-11-15 14:12:40 +0200232 iput(ofs->layers[i].trap);
Miklos Szeredidf820f82020-06-04 10:48:19 +0200233 mounts[i] = ofs->layers[i].mnt;
Amir Goldstein146d62e2019-04-18 17:42:08 +0300234 }
Miklos Szeredidf820f82020-06-04 10:48:19 +0200235 kern_unmount_array(mounts, ofs->numlayer);
Amir Goldstein94375f92019-11-15 14:12:40 +0200236 kfree(ofs->layers);
Amir Goldsteinb7bf9902020-01-14 22:17:25 +0200237 for (i = 0; i < ofs->numfs; i++)
Amir Goldstein07f1e592020-01-14 21:59:22 +0200238 free_anon_bdev(ofs->fs[i].pseudo_dev);
239 kfree(ofs->fs);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200240
Miklos Szerediad204482017-11-10 09:39:16 +0100241 kfree(ofs->config.lowerdir);
242 kfree(ofs->config.upperdir);
243 kfree(ofs->config.workdir);
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100244 kfree(ofs->config.redirect_mode);
Miklos Szerediad204482017-11-10 09:39:16 +0100245 if (ofs->creator_cred)
246 put_cred(ofs->creator_cred);
247 kfree(ofs);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200248}
249
Miklos Szeredia9075cd2017-11-10 09:39:15 +0100250static void ovl_put_super(struct super_block *sb)
251{
252 struct ovl_fs *ofs = sb->s_fs_info;
253
254 ovl_free_fs(ofs);
255}
256
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800257/* Sync real dirty inodes in upper filesystem (if it exists) */
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200258static int ovl_sync_fs(struct super_block *sb, int wait)
259{
Miklos Szerediad204482017-11-10 09:39:16 +0100260 struct ovl_fs *ofs = sb->s_fs_info;
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200261 struct super_block *upper_sb;
262 int ret;
263
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200264 if (!ovl_upper_mnt(ofs))
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200265 return 0;
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800266
267 /*
Konstantin Khlebnikov32b1924b22020-04-09 11:29:47 +0300268 * Not called for sync(2) call or an emergency sync (SB_I_SKIP_SYNC).
269 * All the super blocks will be iterated, including upper_sb.
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800270 *
271 * If this is a syncfs(2) call, then we do need to call
272 * sync_filesystem() on upper_sb, but enough if we do it when being
273 * called with wait == 1.
274 */
275 if (!wait)
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200276 return 0;
277
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200278 upper_sb = ovl_upper_mnt(ofs)->mnt_sb;
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800279
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200280 down_read(&upper_sb->s_umount);
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800281 ret = sync_filesystem(upper_sb);
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200282 up_read(&upper_sb->s_umount);
Chengguang Xue8d4bfe2017-11-29 10:01:32 +0800283
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200284 return ret;
285}
286
Andy Whitcroftcc259632014-10-24 00:14:38 +0200287/**
288 * ovl_statfs
289 * @sb: The overlayfs super block
290 * @buf: The struct kstatfs to fill in with stats
291 *
292 * Get the filesystem statistics. As writes always target the upper layer
Miklos Szeredi4ebc5812014-12-13 00:59:46 +0100293 * filesystem pass the statfs to the upper filesystem (if it exists)
Andy Whitcroftcc259632014-10-24 00:14:38 +0200294 */
295static int ovl_statfs(struct dentry *dentry, struct kstatfs *buf)
296{
297 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
298 struct dentry *root_dentry = dentry->d_sb->s_root;
299 struct path path;
300 int err;
301
Miklos Szeredi4ebc5812014-12-13 00:59:46 +0100302 ovl_path_real(root_dentry, &path);
Andy Whitcroftcc259632014-10-24 00:14:38 +0200303
304 err = vfs_statfs(&path, buf);
305 if (!err) {
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100306 buf->f_namelen = ofs->namelen;
Andy Whitcroftcc259632014-10-24 00:14:38 +0200307 buf->f_type = OVERLAYFS_SUPER_MAGIC;
308 }
309
310 return err;
311}
312
Amir Goldstein02bcd152017-06-21 15:28:36 +0300313/* Will this overlay be forced to mount/remount ro? */
Miklos Szerediad204482017-11-10 09:39:16 +0100314static bool ovl_force_readonly(struct ovl_fs *ofs)
Amir Goldstein02bcd152017-06-21 15:28:36 +0300315{
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200316 return (!ovl_upper_mnt(ofs) || !ofs->workdir);
Amir Goldstein02bcd152017-06-21 15:28:36 +0300317}
318
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100319static const char *ovl_redirect_mode_def(void)
320{
321 return ovl_redirect_dir_def ? "on" : "off";
322}
323
Amir Goldstein795939a2018-03-29 09:08:18 +0300324static const char * const ovl_xino_str[] = {
325 "off",
326 "auto",
327 "on",
328};
329
330static inline int ovl_xino_def(void)
331{
332 return ovl_xino_auto_def ? OVL_XINO_AUTO : OVL_XINO_OFF;
333}
334
Erez Zadokf45827e82014-10-24 00:14:38 +0200335/**
336 * ovl_show_options
337 *
338 * Prints the mount options for a given superblock.
339 * Returns zero; does not fail.
340 */
341static int ovl_show_options(struct seq_file *m, struct dentry *dentry)
342{
343 struct super_block *sb = dentry->d_sb;
Miklos Szerediad204482017-11-10 09:39:16 +0100344 struct ovl_fs *ofs = sb->s_fs_info;
Erez Zadokf45827e82014-10-24 00:14:38 +0200345
Miklos Szerediad204482017-11-10 09:39:16 +0100346 seq_show_option(m, "lowerdir", ofs->config.lowerdir);
347 if (ofs->config.upperdir) {
348 seq_show_option(m, "upperdir", ofs->config.upperdir);
349 seq_show_option(m, "workdir", ofs->config.workdir);
Miklos Szeredi53a08cb2014-12-13 00:59:51 +0100350 }
Miklos Szerediad204482017-11-10 09:39:16 +0100351 if (ofs->config.default_permissions)
Miklos Szeredi8d3095f2015-10-12 17:11:44 +0200352 seq_puts(m, ",default_permissions");
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100353 if (strcmp(ofs->config.redirect_mode, ovl_redirect_mode_def()) != 0)
354 seq_printf(m, ",redirect_dir=%s", ofs->config.redirect_mode);
Miklos Szerediad204482017-11-10 09:39:16 +0100355 if (ofs->config.index != ovl_index_def)
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100356 seq_printf(m, ",index=%s", ofs->config.index ? "on" : "off");
Amir Goldsteinf168f102018-01-19 11:26:53 +0200357 if (ofs->config.nfs_export != ovl_nfs_export_def)
358 seq_printf(m, ",nfs_export=%s", ofs->config.nfs_export ?
359 "on" : "off");
Amir Goldstein0f831ec2019-11-16 18:14:41 +0200360 if (ofs->config.xino != ovl_xino_def() && !ovl_same_fs(sb))
Amir Goldstein795939a2018-03-29 09:08:18 +0300361 seq_printf(m, ",xino=%s", ovl_xino_str[ofs->config.xino]);
Vivek Goyald5791042018-05-11 11:49:27 -0400362 if (ofs->config.metacopy != ovl_metacopy_def)
363 seq_printf(m, ",metacopy=%s",
364 ofs->config.metacopy ? "on" : "off");
Erez Zadokf45827e82014-10-24 00:14:38 +0200365 return 0;
366}
367
Seunghun Lee3cdf6fe2015-01-03 02:26:49 +0900368static int ovl_remount(struct super_block *sb, int *flags, char *data)
369{
Miklos Szerediad204482017-11-10 09:39:16 +0100370 struct ovl_fs *ofs = sb->s_fs_info;
Chengguang Xu399c1092020-04-22 12:28:43 +0800371 struct super_block *upper_sb;
372 int ret = 0;
Seunghun Lee3cdf6fe2015-01-03 02:26:49 +0900373
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800374 if (!(*flags & SB_RDONLY) && ovl_force_readonly(ofs))
Seunghun Lee3cdf6fe2015-01-03 02:26:49 +0900375 return -EROFS;
376
Chengguang Xu399c1092020-04-22 12:28:43 +0800377 if (*flags & SB_RDONLY && !sb_rdonly(sb)) {
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200378 upper_sb = ovl_upper_mnt(ofs)->mnt_sb;
Chengguang Xu399c1092020-04-22 12:28:43 +0800379 down_read(&upper_sb->s_umount);
380 ret = sync_filesystem(upper_sb);
381 up_read(&upper_sb->s_umount);
382 }
383
384 return ret;
Seunghun Lee3cdf6fe2015-01-03 02:26:49 +0900385}
386
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200387static const struct super_operations ovl_super_operations = {
Amir Goldstein13cf1992017-06-12 09:54:40 +0300388 .alloc_inode = ovl_alloc_inode,
Al Viro0b269de2019-04-15 22:52:17 -0400389 .free_inode = ovl_free_inode,
Amir Goldstein13cf1992017-06-12 09:54:40 +0300390 .destroy_inode = ovl_destroy_inode,
391 .drop_inode = generic_delete_inode,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200392 .put_super = ovl_put_super,
Amir Goldsteine593b2b2017-01-23 14:32:21 +0200393 .sync_fs = ovl_sync_fs,
Andy Whitcroftcc259632014-10-24 00:14:38 +0200394 .statfs = ovl_statfs,
Erez Zadokf45827e82014-10-24 00:14:38 +0200395 .show_options = ovl_show_options,
Seunghun Lee3cdf6fe2015-01-03 02:26:49 +0900396 .remount_fs = ovl_remount,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200397};
398
399enum {
400 OPT_LOWERDIR,
401 OPT_UPPERDIR,
402 OPT_WORKDIR,
Miklos Szeredi8d3095f2015-10-12 17:11:44 +0200403 OPT_DEFAULT_PERMISSIONS,
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100404 OPT_REDIRECT_DIR,
Amir Goldstein02bcd152017-06-21 15:28:36 +0300405 OPT_INDEX_ON,
406 OPT_INDEX_OFF,
Amir Goldsteinf168f102018-01-19 11:26:53 +0200407 OPT_NFS_EXPORT_ON,
408 OPT_NFS_EXPORT_OFF,
Amir Goldstein795939a2018-03-29 09:08:18 +0300409 OPT_XINO_ON,
410 OPT_XINO_OFF,
411 OPT_XINO_AUTO,
Vivek Goyald5791042018-05-11 11:49:27 -0400412 OPT_METACOPY_ON,
413 OPT_METACOPY_OFF,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200414 OPT_ERR,
415};
416
417static const match_table_t ovl_tokens = {
418 {OPT_LOWERDIR, "lowerdir=%s"},
419 {OPT_UPPERDIR, "upperdir=%s"},
420 {OPT_WORKDIR, "workdir=%s"},
Miklos Szeredi8d3095f2015-10-12 17:11:44 +0200421 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100422 {OPT_REDIRECT_DIR, "redirect_dir=%s"},
Amir Goldstein02bcd152017-06-21 15:28:36 +0300423 {OPT_INDEX_ON, "index=on"},
424 {OPT_INDEX_OFF, "index=off"},
Amir Goldsteinf168f102018-01-19 11:26:53 +0200425 {OPT_NFS_EXPORT_ON, "nfs_export=on"},
426 {OPT_NFS_EXPORT_OFF, "nfs_export=off"},
Amir Goldstein795939a2018-03-29 09:08:18 +0300427 {OPT_XINO_ON, "xino=on"},
428 {OPT_XINO_OFF, "xino=off"},
429 {OPT_XINO_AUTO, "xino=auto"},
Vivek Goyald5791042018-05-11 11:49:27 -0400430 {OPT_METACOPY_ON, "metacopy=on"},
431 {OPT_METACOPY_OFF, "metacopy=off"},
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200432 {OPT_ERR, NULL}
433};
434
Miklos Szeredi91c77942014-11-20 16:40:00 +0100435static char *ovl_next_opt(char **s)
436{
437 char *sbegin = *s;
438 char *p;
439
440 if (sbegin == NULL)
441 return NULL;
442
443 for (p = sbegin; *p; p++) {
444 if (*p == '\\') {
445 p++;
446 if (!*p)
447 break;
448 } else if (*p == ',') {
449 *p = '\0';
450 *s = p + 1;
451 return sbegin;
452 }
453 }
454 *s = NULL;
455 return sbegin;
456}
457
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100458static int ovl_parse_redirect_mode(struct ovl_config *config, const char *mode)
459{
460 if (strcmp(mode, "on") == 0) {
461 config->redirect_dir = true;
462 /*
463 * Does not make sense to have redirect creation without
464 * redirect following.
465 */
466 config->redirect_follow = true;
467 } else if (strcmp(mode, "follow") == 0) {
468 config->redirect_follow = true;
469 } else if (strcmp(mode, "off") == 0) {
470 if (ovl_redirect_always_follow)
471 config->redirect_follow = true;
472 } else if (strcmp(mode, "nofollow") != 0) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800473 pr_err("bad mount option \"redirect_dir=%s\"\n",
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100474 mode);
475 return -EINVAL;
476 }
477
478 return 0;
479}
480
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200481static int ovl_parse_opt(char *opt, struct ovl_config *config)
482{
483 char *p;
Vivek Goyald5791042018-05-11 11:49:27 -0400484 int err;
Miklos Szeredid47748e2018-11-01 21:31:39 +0100485 bool metacopy_opt = false, redirect_opt = false;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300486 bool nfs_export_opt = false, index_opt = false;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200487
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100488 config->redirect_mode = kstrdup(ovl_redirect_mode_def(), GFP_KERNEL);
489 if (!config->redirect_mode)
490 return -ENOMEM;
491
Miklos Szeredi91c77942014-11-20 16:40:00 +0100492 while ((p = ovl_next_opt(&opt)) != NULL) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200493 int token;
494 substring_t args[MAX_OPT_ARGS];
495
496 if (!*p)
497 continue;
498
499 token = match_token(p, ovl_tokens, args);
500 switch (token) {
501 case OPT_UPPERDIR:
502 kfree(config->upperdir);
503 config->upperdir = match_strdup(&args[0]);
504 if (!config->upperdir)
505 return -ENOMEM;
506 break;
507
508 case OPT_LOWERDIR:
509 kfree(config->lowerdir);
510 config->lowerdir = match_strdup(&args[0]);
511 if (!config->lowerdir)
512 return -ENOMEM;
513 break;
514
515 case OPT_WORKDIR:
516 kfree(config->workdir);
517 config->workdir = match_strdup(&args[0]);
518 if (!config->workdir)
519 return -ENOMEM;
520 break;
521
Miklos Szeredi8d3095f2015-10-12 17:11:44 +0200522 case OPT_DEFAULT_PERMISSIONS:
523 config->default_permissions = true;
524 break;
525
Miklos Szeredi438c84c2017-12-11 11:28:10 +0100526 case OPT_REDIRECT_DIR:
527 kfree(config->redirect_mode);
528 config->redirect_mode = match_strdup(&args[0]);
529 if (!config->redirect_mode)
530 return -ENOMEM;
Miklos Szeredid47748e2018-11-01 21:31:39 +0100531 redirect_opt = true;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100532 break;
533
Amir Goldstein02bcd152017-06-21 15:28:36 +0300534 case OPT_INDEX_ON:
535 config->index = true;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300536 index_opt = true;
Amir Goldstein02bcd152017-06-21 15:28:36 +0300537 break;
538
539 case OPT_INDEX_OFF:
540 config->index = false;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300541 index_opt = true;
Amir Goldstein02bcd152017-06-21 15:28:36 +0300542 break;
543
Amir Goldsteinf168f102018-01-19 11:26:53 +0200544 case OPT_NFS_EXPORT_ON:
545 config->nfs_export = true;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300546 nfs_export_opt = true;
Amir Goldsteinf168f102018-01-19 11:26:53 +0200547 break;
548
549 case OPT_NFS_EXPORT_OFF:
550 config->nfs_export = false;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300551 nfs_export_opt = true;
Amir Goldsteinf168f102018-01-19 11:26:53 +0200552 break;
553
Amir Goldstein795939a2018-03-29 09:08:18 +0300554 case OPT_XINO_ON:
555 config->xino = OVL_XINO_ON;
556 break;
557
558 case OPT_XINO_OFF:
559 config->xino = OVL_XINO_OFF;
560 break;
561
562 case OPT_XINO_AUTO:
563 config->xino = OVL_XINO_AUTO;
564 break;
565
Vivek Goyald5791042018-05-11 11:49:27 -0400566 case OPT_METACOPY_ON:
567 config->metacopy = true;
Miklos Szeredid47748e2018-11-01 21:31:39 +0100568 metacopy_opt = true;
Vivek Goyald5791042018-05-11 11:49:27 -0400569 break;
570
571 case OPT_METACOPY_OFF:
572 config->metacopy = false;
Amir Goldsteinb0def882020-04-09 18:58:34 +0300573 metacopy_opt = true;
Vivek Goyald5791042018-05-11 11:49:27 -0400574 break;
575
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200576 default:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800577 pr_err("unrecognized mount option \"%s\" or missing value\n",
578 p);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200579 return -EINVAL;
580 }
581 }
hujianyang71cbad72015-01-15 13:20:57 +0800582
583 /* Workdir is useless in non-upper mount */
584 if (!config->upperdir && config->workdir) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800585 pr_info("option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
hujianyang71cbad72015-01-15 13:20:57 +0800586 config->workdir);
587 kfree(config->workdir);
588 config->workdir = NULL;
589 }
590
Vivek Goyald5791042018-05-11 11:49:27 -0400591 err = ovl_parse_redirect_mode(config, config->redirect_mode);
592 if (err)
593 return err;
594
Miklos Szeredid47748e2018-11-01 21:31:39 +0100595 /*
596 * This is to make the logic below simpler. It doesn't make any other
597 * difference, since config->redirect_dir is only used for upper.
598 */
599 if (!config->upperdir && config->redirect_follow)
600 config->redirect_dir = true;
601
602 /* Resolve metacopy -> redirect_dir dependency */
603 if (config->metacopy && !config->redirect_dir) {
604 if (metacopy_opt && redirect_opt) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800605 pr_err("conflicting options: metacopy=on,redirect_dir=%s\n",
Miklos Szeredid47748e2018-11-01 21:31:39 +0100606 config->redirect_mode);
607 return -EINVAL;
608 }
609 if (redirect_opt) {
610 /*
611 * There was an explicit redirect_dir=... that resulted
612 * in this conflict.
613 */
lijiazi1bd0a3a2019-12-16 19:12:32 +0800614 pr_info("disabling metacopy due to redirect_dir=%s\n",
Miklos Szeredid47748e2018-11-01 21:31:39 +0100615 config->redirect_mode);
616 config->metacopy = false;
617 } else {
618 /* Automatically enable redirect otherwise. */
619 config->redirect_follow = config->redirect_dir = true;
620 }
Vivek Goyald5791042018-05-11 11:49:27 -0400621 }
622
Amir Goldsteinb0def882020-04-09 18:58:34 +0300623 /* Resolve nfs_export -> index dependency */
624 if (config->nfs_export && !config->index) {
625 if (nfs_export_opt && index_opt) {
626 pr_err("conflicting options: nfs_export=on,index=off\n");
627 return -EINVAL;
628 }
629 if (index_opt) {
630 /*
631 * There was an explicit index=off that resulted
632 * in this conflict.
633 */
634 pr_info("disabling nfs_export due to index=off\n");
635 config->nfs_export = false;
636 } else {
637 /* Automatically enable index otherwise. */
638 config->index = true;
639 }
640 }
641
642 /* Resolve nfs_export -> !metacopy dependency */
643 if (config->nfs_export && config->metacopy) {
644 if (nfs_export_opt && metacopy_opt) {
645 pr_err("conflicting options: nfs_export=on,metacopy=on\n");
646 return -EINVAL;
647 }
648 if (metacopy_opt) {
649 /*
650 * There was an explicit metacopy=on that resulted
651 * in this conflict.
652 */
653 pr_info("disabling nfs_export due to metacopy=on\n");
654 config->nfs_export = false;
655 } else {
656 /*
657 * There was an explicit nfs_export=on that resulted
658 * in this conflict.
659 */
660 pr_info("disabling metacopy due to nfs_export=on\n");
661 config->metacopy = false;
662 }
663 }
664
Vivek Goyald5791042018-05-11 11:49:27 -0400665 return 0;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200666}
667
668#define OVL_WORKDIR_NAME "work"
Amir Goldstein02bcd152017-06-21 15:28:36 +0300669#define OVL_INDEXDIR_NAME "index"
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200670
Miklos Szerediad204482017-11-10 09:39:16 +0100671static struct dentry *ovl_workdir_create(struct ovl_fs *ofs,
Amir Goldstein6b8aa122017-06-21 15:28:35 +0300672 const char *name, bool persist)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200673{
Miklos Szerediad204482017-11-10 09:39:16 +0100674 struct inode *dir = ofs->workbasedir->d_inode;
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200675 struct vfsmount *mnt = ovl_upper_mnt(ofs);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200676 struct dentry *work;
677 int err;
678 bool retried = false;
679
Al Viro59551022016-01-22 15:40:57 -0500680 inode_lock_nested(dir, I_MUTEX_PARENT);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200681retry:
Miklos Szerediad204482017-11-10 09:39:16 +0100682 work = lookup_one_len(name, ofs->workbasedir, strlen(name));
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200683
684 if (!IS_ERR(work)) {
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200685 struct iattr attr = {
686 .ia_valid = ATTR_MODE,
Al Viro32a3d842016-12-04 17:33:17 +0000687 .ia_mode = S_IFDIR | 0,
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200688 };
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200689
690 if (work->d_inode) {
691 err = -EEXIST;
692 if (retried)
693 goto out_dput;
694
Amir Goldstein6b8aa122017-06-21 15:28:35 +0300695 if (persist)
696 goto out_unlock;
697
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200698 retried = true;
Miklos Szeredieea2fb42016-09-01 11:11:59 +0200699 ovl_workdir_cleanup(dir, mnt, work, 0);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200700 dput(work);
701 goto retry;
702 }
703
Miklos Szeredi95a1c812018-05-16 17:51:25 +0300704 work = ovl_create_real(dir, work, OVL_CATTR(attr.ia_mode));
705 err = PTR_ERR(work);
706 if (IS_ERR(work))
707 goto out_err;
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200708
Miklos Szeredicb348ed2016-10-04 14:40:44 +0200709 /*
710 * Try to remove POSIX ACL xattrs from workdir. We are good if:
711 *
712 * a) success (there was a POSIX ACL xattr and was removed)
713 * b) -ENODATA (there was no POSIX ACL xattr)
714 * c) -EOPNOTSUPP (POSIX ACL xattrs are not supported)
715 *
716 * There are various other error values that could effectively
717 * mean that the xattr doesn't exist (e.g. -ERANGE is returned
718 * if the xattr name is too long), but the set of filesystems
719 * allowed as upper are limited to "normal" ones, where checking
720 * for the above two errors is sufficient.
721 */
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200722 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_DEFAULT);
Miklos Szeredie1ff3dd2016-09-05 13:55:20 +0200723 if (err && err != -ENODATA && err != -EOPNOTSUPP)
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200724 goto out_dput;
725
726 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_ACCESS);
Miklos Szeredie1ff3dd2016-09-05 13:55:20 +0200727 if (err && err != -ENODATA && err != -EOPNOTSUPP)
Miklos Szeredic11b9fd2016-09-01 11:11:59 +0200728 goto out_dput;
729
730 /* Clear any inherited mode bits */
731 inode_lock(work->d_inode);
732 err = notify_change(work, &attr, NULL);
733 inode_unlock(work->d_inode);
734 if (err)
735 goto out_dput;
Amir Goldstein6b8aa122017-06-21 15:28:35 +0300736 } else {
737 err = PTR_ERR(work);
738 goto out_err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200739 }
740out_unlock:
youngjun2068cf72020-06-07 02:04:06 -0700741 inode_unlock(dir);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200742 return work;
743
744out_dput:
745 dput(work);
Amir Goldstein6b8aa122017-06-21 15:28:35 +0300746out_err:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800747 pr_warn("failed to create directory %s/%s (errno: %i); mounting read-only\n",
Miklos Szerediad204482017-11-10 09:39:16 +0100748 ofs->config.workdir, name, -err);
Amir Goldstein6b8aa122017-06-21 15:28:35 +0300749 work = NULL;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200750 goto out_unlock;
751}
752
Miklos Szeredi91c77942014-11-20 16:40:00 +0100753static void ovl_unescape(char *s)
754{
755 char *d = s;
756
757 for (;; s++, d++) {
758 if (*s == '\\')
759 s++;
760 *d = *s;
761 if (!*s)
762 break;
763 }
764}
765
Miklos Szerediab508822014-12-13 00:59:49 +0100766static int ovl_mount_dir_noesc(const char *name, struct path *path)
767{
Miklos Szeredia78d9f02014-12-13 00:59:52 +0100768 int err = -EINVAL;
Miklos Szerediab508822014-12-13 00:59:49 +0100769
Miklos Szeredia78d9f02014-12-13 00:59:52 +0100770 if (!*name) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800771 pr_err("empty lowerdir\n");
Miklos Szeredia78d9f02014-12-13 00:59:52 +0100772 goto out;
773 }
Miklos Szerediab508822014-12-13 00:59:49 +0100774 err = kern_path(name, LOOKUP_FOLLOW, path);
775 if (err) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800776 pr_err("failed to resolve '%s': %i\n", name, err);
Miklos Szerediab508822014-12-13 00:59:49 +0100777 goto out;
778 }
779 err = -EINVAL;
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200780 if (ovl_dentry_weird(path->dentry)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800781 pr_err("filesystem on '%s' not supported\n", name);
Miklos Szerediab508822014-12-13 00:59:49 +0100782 goto out_put;
783 }
Miklos Szeredi2b8c30e2016-12-16 11:02:56 +0100784 if (!d_is_dir(path->dentry)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800785 pr_err("'%s' not a directory\n", name);
Miklos Szerediab508822014-12-13 00:59:49 +0100786 goto out_put;
787 }
788 return 0;
789
790out_put:
Miklos Szeredi8aafcb52017-11-09 10:23:28 +0100791 path_put_init(path);
Miklos Szerediab508822014-12-13 00:59:49 +0100792out:
793 return err;
794}
795
796static int ovl_mount_dir(const char *name, struct path *path)
797{
798 int err = -ENOMEM;
799 char *tmp = kstrdup(name, GFP_KERNEL);
800
801 if (tmp) {
802 ovl_unescape(tmp);
803 err = ovl_mount_dir_noesc(tmp, path);
Miklos Szeredi7c03b5d2015-06-22 13:53:48 +0200804
Miklos Szeredibccece12020-03-17 15:04:22 +0100805 if (!err && path->dentry->d_flags & DCACHE_OP_REAL) {
Miklos Szeredi7925dad2020-03-17 15:04:22 +0100806 pr_err("filesystem on '%s' not supported as upperdir\n",
807 tmp);
808 path_put_init(path);
809 err = -EINVAL;
810 }
Miklos Szerediab508822014-12-13 00:59:49 +0100811 kfree(tmp);
812 }
813 return err;
814}
815
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100816static int ovl_check_namelen(struct path *path, struct ovl_fs *ofs,
817 const char *name)
818{
819 struct kstatfs statfs;
820 int err = vfs_statfs(path, &statfs);
821
822 if (err)
lijiazi1bd0a3a2019-12-16 19:12:32 +0800823 pr_err("statfs failed on '%s'\n", name);
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100824 else
825 ofs->namelen = max(ofs->namelen, statfs.f_namelen);
826
827 return err;
828}
829
830static int ovl_lower_dir(const char *name, struct path *path,
Miklos Szeredif4288842020-03-17 15:04:22 +0100831 struct ovl_fs *ofs, int *stack_depth)
Miklos Szerediab508822014-12-13 00:59:49 +0100832{
Amir Goldsteine487d882017-11-07 13:55:04 +0200833 int fh_type;
Miklos Szerediab508822014-12-13 00:59:49 +0100834 int err;
Miklos Szerediab508822014-12-13 00:59:49 +0100835
Miklos Szeredia78d9f02014-12-13 00:59:52 +0100836 err = ovl_mount_dir_noesc(name, path);
Miklos Szerediab508822014-12-13 00:59:49 +0100837 if (err)
Miklos Szeredib8e42a62020-06-04 10:48:19 +0200838 return err;
Miklos Szerediab508822014-12-13 00:59:49 +0100839
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100840 err = ovl_check_namelen(path, ofs, name);
841 if (err)
Miklos Szeredib8e42a62020-06-04 10:48:19 +0200842 return err;
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100843
Miklos Szerediab508822014-12-13 00:59:49 +0100844 *stack_depth = max(*stack_depth, path->mnt->mnt_sb->s_stack_depth);
845
Amir Goldstein02bcd152017-06-21 15:28:36 +0300846 /*
Amir Goldsteinf168f102018-01-19 11:26:53 +0200847 * The inodes index feature and NFS export need to encode and decode
848 * file handles, so they require that all layers support them.
Amir Goldstein02bcd152017-06-21 15:28:36 +0300849 */
Amir Goldsteine487d882017-11-07 13:55:04 +0200850 fh_type = ovl_can_decode_fh(path->dentry->d_sb);
Amir Goldsteinf168f102018-01-19 11:26:53 +0200851 if ((ofs->config.nfs_export ||
Amir Goldsteine487d882017-11-07 13:55:04 +0200852 (ofs->config.index && ofs->config.upperdir)) && !fh_type) {
Amir Goldstein02bcd152017-06-21 15:28:36 +0300853 ofs->config.index = false;
Amir Goldsteinf168f102018-01-19 11:26:53 +0200854 ofs->config.nfs_export = false;
lijiazi1bd0a3a2019-12-16 19:12:32 +0800855 pr_warn("fs on '%s' does not support file handles, falling back to index=off,nfs_export=off.\n",
Amir Goldsteinf168f102018-01-19 11:26:53 +0200856 name);
Amir Goldstein02bcd152017-06-21 15:28:36 +0300857 }
858
Amir Goldsteine487d882017-11-07 13:55:04 +0200859 /* Check if lower fs has 32bit inode numbers */
860 if (fh_type != FILEID_INO32_GEN)
Amir Goldstein0f831ec2019-11-16 18:14:41 +0200861 ofs->xino_mode = -1;
Amir Goldsteine487d882017-11-07 13:55:04 +0200862
Miklos Szerediab508822014-12-13 00:59:49 +0100863 return 0;
Miklos Szerediab508822014-12-13 00:59:49 +0100864}
865
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200866/* Workdir should not be subdir of upperdir and vice versa */
867static bool ovl_workdir_ok(struct dentry *workdir, struct dentry *upperdir)
868{
869 bool ok = false;
870
871 if (workdir != upperdir) {
872 ok = (lock_rename(workdir, upperdir) == NULL);
873 unlock_rename(workdir, upperdir);
874 }
875 return ok;
876}
877
Miklos Szeredia78d9f02014-12-13 00:59:52 +0100878static unsigned int ovl_split_lowerdirs(char *str)
879{
880 unsigned int ctr = 1;
881 char *s, *d;
882
883 for (s = d = str;; s++, d++) {
884 if (*s == '\\') {
885 s++;
886 } else if (*s == ':') {
887 *d = '\0';
888 ctr++;
889 continue;
890 }
891 *d = *s;
892 if (!*s)
893 break;
894 }
895 return ctr;
896}
897
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +0200898static int __maybe_unused
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200899ovl_posix_acl_xattr_get(const struct xattr_handler *handler,
900 struct dentry *dentry, struct inode *inode,
901 const char *name, void *buffer, size_t size)
902{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200903 return ovl_xattr_get(dentry, inode, handler->name, buffer, size);
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200904}
905
906static int __maybe_unused
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +0200907ovl_posix_acl_xattr_set(const struct xattr_handler *handler,
908 struct dentry *dentry, struct inode *inode,
909 const char *name, const void *value,
910 size_t size, int flags)
Miklos Szeredid837a492016-07-29 12:05:24 +0200911{
912 struct dentry *workdir = ovl_workdir(dentry);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200913 struct inode *realinode = ovl_inode_real(inode);
Miklos Szeredid837a492016-07-29 12:05:24 +0200914 struct posix_acl *acl = NULL;
915 int err;
916
917 /* Check that everything is OK before copy-up */
918 if (value) {
919 acl = posix_acl_from_xattr(&init_user_ns, value, size);
920 if (IS_ERR(acl))
921 return PTR_ERR(acl);
922 }
923 err = -EOPNOTSUPP;
924 if (!IS_POSIXACL(d_inode(workdir)))
925 goto out_acl_release;
926 if (!realinode->i_op->set_acl)
927 goto out_acl_release;
928 if (handler->flags == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode)) {
929 err = acl ? -EACCES : 0;
930 goto out_acl_release;
931 }
932 err = -EPERM;
933 if (!inode_owner_or_capable(inode))
934 goto out_acl_release;
935
936 posix_acl_release(acl);
937
Miklos Szeredifd3220d2016-10-31 14:42:14 +0100938 /*
939 * Check if sgid bit needs to be cleared (actual setacl operation will
940 * be done with mounter's capabilities and so that won't do it for us).
941 */
942 if (unlikely(inode->i_mode & S_ISGID) &&
943 handler->flags == ACL_TYPE_ACCESS &&
944 !in_group_p(inode->i_gid) &&
945 !capable_wrt_inode_uidgid(inode, CAP_FSETID)) {
946 struct iattr iattr = { .ia_valid = ATTR_KILL_SGID };
947
948 err = ovl_setattr(dentry, &iattr);
949 if (err)
950 return err;
951 }
952
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200953 err = ovl_xattr_set(dentry, inode, handler->name, value, size, flags);
Miklos Szeredice315132016-09-01 11:12:00 +0200954 if (!err)
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200955 ovl_copyattr(ovl_inode_real(inode), inode);
Miklos Szeredice315132016-09-01 11:12:00 +0200956
957 return err;
Miklos Szeredid837a492016-07-29 12:05:24 +0200958
959out_acl_release:
960 posix_acl_release(acl);
961 return err;
962}
963
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200964static int ovl_own_xattr_get(const struct xattr_handler *handler,
965 struct dentry *dentry, struct inode *inode,
966 const char *name, void *buffer, size_t size)
967{
Amir Goldstein48fab5d2016-11-16 11:22:39 +0200968 return -EOPNOTSUPP;
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200969}
970
Miklos Szeredid837a492016-07-29 12:05:24 +0200971static int ovl_own_xattr_set(const struct xattr_handler *handler,
972 struct dentry *dentry, struct inode *inode,
973 const char *name, const void *value,
974 size_t size, int flags)
975{
Amir Goldstein48fab5d2016-11-16 11:22:39 +0200976 return -EOPNOTSUPP;
Miklos Szeredid837a492016-07-29 12:05:24 +0200977}
978
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200979static int ovl_other_xattr_get(const struct xattr_handler *handler,
980 struct dentry *dentry, struct inode *inode,
981 const char *name, void *buffer, size_t size)
982{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200983 return ovl_xattr_get(dentry, inode, name, buffer, size);
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200984}
985
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200986static int ovl_other_xattr_set(const struct xattr_handler *handler,
987 struct dentry *dentry, struct inode *inode,
988 const char *name, const void *value,
989 size_t size, int flags)
990{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200991 return ovl_xattr_set(dentry, inode, name, value, size, flags);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200992}
993
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +0200994static const struct xattr_handler __maybe_unused
995ovl_posix_acl_access_xattr_handler = {
Miklos Szeredid837a492016-07-29 12:05:24 +0200996 .name = XATTR_NAME_POSIX_ACL_ACCESS,
997 .flags = ACL_TYPE_ACCESS,
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200998 .get = ovl_posix_acl_xattr_get,
Miklos Szeredid837a492016-07-29 12:05:24 +0200999 .set = ovl_posix_acl_xattr_set,
1000};
1001
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +02001002static const struct xattr_handler __maybe_unused
1003ovl_posix_acl_default_xattr_handler = {
Miklos Szeredid837a492016-07-29 12:05:24 +02001004 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
1005 .flags = ACL_TYPE_DEFAULT,
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +02001006 .get = ovl_posix_acl_xattr_get,
Miklos Szeredid837a492016-07-29 12:05:24 +02001007 .set = ovl_posix_acl_xattr_set,
1008};
1009
1010static const struct xattr_handler ovl_own_xattr_handler = {
1011 .prefix = OVL_XATTR_PREFIX,
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +02001012 .get = ovl_own_xattr_get,
Miklos Szeredid837a492016-07-29 12:05:24 +02001013 .set = ovl_own_xattr_set,
1014};
1015
1016static const struct xattr_handler ovl_other_xattr_handler = {
1017 .prefix = "", /* catch all */
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +02001018 .get = ovl_other_xattr_get,
Miklos Szeredid837a492016-07-29 12:05:24 +02001019 .set = ovl_other_xattr_set,
1020};
1021
1022static const struct xattr_handler *ovl_xattr_handlers[] = {
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +02001023#ifdef CONFIG_FS_POSIX_ACL
Miklos Szeredid837a492016-07-29 12:05:24 +02001024 &ovl_posix_acl_access_xattr_handler,
1025 &ovl_posix_acl_default_xattr_handler,
Andreas Gruenbacher0c97be22016-08-22 16:36:49 +02001026#endif
Miklos Szeredid837a492016-07-29 12:05:24 +02001027 &ovl_own_xattr_handler,
1028 &ovl_other_xattr_handler,
1029 NULL
1030};
1031
Amir Goldstein146d62e2019-04-18 17:42:08 +03001032static int ovl_setup_trap(struct super_block *sb, struct dentry *dir,
1033 struct inode **ptrap, const char *name)
1034{
1035 struct inode *trap;
1036 int err;
1037
1038 trap = ovl_get_trap_inode(sb, dir);
Arnd Bergmann1dac6f5b2019-06-17 14:39:29 +02001039 err = PTR_ERR_OR_ZERO(trap);
1040 if (err) {
Amir Goldstein146d62e2019-04-18 17:42:08 +03001041 if (err == -ELOOP)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001042 pr_err("conflicting %s path\n", name);
Amir Goldstein146d62e2019-04-18 17:42:08 +03001043 return err;
1044 }
1045
1046 *ptrap = trap;
1047 return 0;
1048}
1049
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001050/*
1051 * Determine how we treat concurrent use of upperdir/workdir based on the
1052 * index feature. This is papering over mount leaks of container runtimes,
1053 * for example, an old overlay mount is leaked and now its upperdir is
1054 * attempted to be used as a lower layer in a new overlay mount.
1055 */
1056static int ovl_report_in_use(struct ovl_fs *ofs, const char *name)
1057{
1058 if (ofs->config.index) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001059 pr_err("%s is in-use as upperdir/workdir of another mount, mount with '-o index=off' to override exclusive upperdir protection.\n",
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001060 name);
1061 return -EBUSY;
1062 } else {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001063 pr_warn("%s is in-use as upperdir/workdir of another mount, accessing files from both mounts will result in undefined behavior.\n",
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001064 name);
1065 return 0;
1066 }
1067}
1068
Amir Goldstein146d62e2019-04-18 17:42:08 +03001069static int ovl_get_upper(struct super_block *sb, struct ovl_fs *ofs,
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001070 struct ovl_layer *upper_layer, struct path *upperpath)
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001071{
Miklos Szeredi50649752017-11-10 09:39:15 +01001072 struct vfsmount *upper_mnt;
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001073 int err;
1074
Miklos Szerediad204482017-11-10 09:39:16 +01001075 err = ovl_mount_dir(ofs->config.upperdir, upperpath);
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001076 if (err)
1077 goto out;
1078
1079 /* Upper fs should not be r/o */
1080 if (sb_rdonly(upperpath->mnt->mnt_sb)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001081 pr_err("upper fs is r/o, try multi-lower layers mount\n");
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001082 err = -EINVAL;
1083 goto out;
1084 }
1085
Miklos Szerediad204482017-11-10 09:39:16 +01001086 err = ovl_check_namelen(upperpath, ofs, ofs->config.upperdir);
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001087 if (err)
1088 goto out;
1089
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001090 err = ovl_setup_trap(sb, upperpath->dentry, &upper_layer->trap,
Amir Goldstein146d62e2019-04-18 17:42:08 +03001091 "upperdir");
1092 if (err)
1093 goto out;
1094
Miklos Szeredi50649752017-11-10 09:39:15 +01001095 upper_mnt = clone_private_mount(upperpath);
1096 err = PTR_ERR(upper_mnt);
1097 if (IS_ERR(upper_mnt)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001098 pr_err("failed to clone upperpath\n");
Miklos Szeredi50649752017-11-10 09:39:15 +01001099 goto out;
1100 }
1101
1102 /* Don't inherit atime flags */
1103 upper_mnt->mnt_flags &= ~(MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME);
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001104 upper_layer->mnt = upper_mnt;
1105 upper_layer->idx = 0;
1106 upper_layer->fsid = 0;
Miklos Szeredi8c257412018-09-10 11:43:29 +02001107
Jeffle Xu654255f2020-04-23 19:06:55 +08001108 /*
1109 * Inherit SB_NOSEC flag from upperdir.
1110 *
1111 * This optimization changes behavior when a security related attribute
1112 * (suid/sgid/security.*) is changed on an underlying layer. This is
1113 * okay because we don't yet have guarantees in that case, but it will
1114 * need careful treatment once we want to honour changes to underlying
1115 * filesystems.
1116 */
1117 if (upper_mnt->mnt_sb->s_flags & SB_NOSEC)
1118 sb->s_flags |= SB_NOSEC;
1119
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001120 if (ovl_inuse_trylock(ovl_upper_mnt(ofs)->mnt_root)) {
Miklos Szeredi8c257412018-09-10 11:43:29 +02001121 ofs->upperdir_locked = true;
Miklos Szeredi8c257412018-09-10 11:43:29 +02001122 } else {
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001123 err = ovl_report_in_use(ofs, "upperdir");
1124 if (err)
1125 goto out;
Miklos Szeredi8c257412018-09-10 11:43:29 +02001126 }
1127
Miklos Szeredi6ee8acf2017-11-09 10:23:28 +01001128 err = 0;
1129out:
1130 return err;
1131}
1132
Amir Goldsteincad218a2020-02-20 09:00:19 +02001133/*
1134 * Returns 1 if RENAME_WHITEOUT is supported, 0 if not supported and
1135 * negative values if error is encountered.
1136 */
1137static int ovl_check_rename_whiteout(struct dentry *workdir)
1138{
1139 struct inode *dir = d_inode(workdir);
1140 struct dentry *temp;
1141 struct dentry *dest;
1142 struct dentry *whiteout;
1143 struct name_snapshot name;
1144 int err;
1145
1146 inode_lock_nested(dir, I_MUTEX_PARENT);
1147
1148 temp = ovl_create_temp(workdir, OVL_CATTR(S_IFREG | 0));
1149 err = PTR_ERR(temp);
1150 if (IS_ERR(temp))
1151 goto out_unlock;
1152
1153 dest = ovl_lookup_temp(workdir);
1154 err = PTR_ERR(dest);
1155 if (IS_ERR(dest)) {
1156 dput(temp);
1157 goto out_unlock;
1158 }
1159
1160 /* Name is inline and stable - using snapshot as a copy helper */
1161 take_dentry_name_snapshot(&name, temp);
1162 err = ovl_do_rename(dir, temp, dir, dest, RENAME_WHITEOUT);
1163 if (err) {
1164 if (err == -EINVAL)
1165 err = 0;
1166 goto cleanup_temp;
1167 }
1168
1169 whiteout = lookup_one_len(name.name.name, workdir, name.name.len);
1170 err = PTR_ERR(whiteout);
1171 if (IS_ERR(whiteout))
1172 goto cleanup_temp;
1173
1174 err = ovl_is_whiteout(whiteout);
1175
1176 /* Best effort cleanup of whiteout and temp file */
1177 if (err)
1178 ovl_cleanup(dir, whiteout);
1179 dput(whiteout);
1180
1181cleanup_temp:
1182 ovl_cleanup(dir, temp);
1183 release_dentry_name_snapshot(&name);
1184 dput(temp);
1185 dput(dest);
1186
1187out_unlock:
1188 inode_unlock(dir);
1189
1190 return err;
1191}
1192
Amir Goldstein146d62e2019-04-18 17:42:08 +03001193static int ovl_make_workdir(struct super_block *sb, struct ovl_fs *ofs,
1194 struct path *workpath)
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001195{
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001196 struct vfsmount *mnt = ovl_upper_mnt(ofs);
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001197 struct dentry *temp;
Amir Goldsteind80172c2020-02-20 09:03:08 +02001198 bool rename_whiteout;
1199 bool d_type;
Amir Goldsteine487d882017-11-07 13:55:04 +02001200 int fh_type;
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001201 int err;
1202
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001203 err = mnt_want_write(mnt);
1204 if (err)
1205 return err;
1206
Miklos Szerediad204482017-11-10 09:39:16 +01001207 ofs->workdir = ovl_workdir_create(ofs, OVL_WORKDIR_NAME, false);
1208 if (!ofs->workdir)
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001209 goto out;
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001210
Amir Goldstein146d62e2019-04-18 17:42:08 +03001211 err = ovl_setup_trap(sb, ofs->workdir, &ofs->workdir_trap, "workdir");
1212 if (err)
1213 goto out;
1214
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001215 /*
1216 * Upper should support d_type, else whiteouts are visible. Given
1217 * workdir and upper are on same fs, we can do iterate_dir() on
1218 * workdir. This check requires successful creation of workdir in
1219 * previous step.
1220 */
1221 err = ovl_check_d_type_supported(workpath);
1222 if (err < 0)
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001223 goto out;
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001224
Amir Goldsteind80172c2020-02-20 09:03:08 +02001225 d_type = err;
1226 if (!d_type)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001227 pr_warn("upper fs needs to support d_type.\n");
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001228
1229 /* Check if upper/work fs supports O_TMPFILE */
Miklos Szerediad204482017-11-10 09:39:16 +01001230 temp = ovl_do_tmpfile(ofs->workdir, S_IFREG | 0);
1231 ofs->tmpfile = !IS_ERR(temp);
1232 if (ofs->tmpfile)
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001233 dput(temp);
1234 else
lijiazi1bd0a3a2019-12-16 19:12:32 +08001235 pr_warn("upper fs does not support tmpfile.\n");
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001236
Amir Goldsteincad218a2020-02-20 09:00:19 +02001237
1238 /* Check if upper/work fs supports RENAME_WHITEOUT */
1239 err = ovl_check_rename_whiteout(ofs->workdir);
1240 if (err < 0)
1241 goto out;
1242
Amir Goldsteind80172c2020-02-20 09:03:08 +02001243 rename_whiteout = err;
1244 if (!rename_whiteout)
Amir Goldsteincad218a2020-02-20 09:00:19 +02001245 pr_warn("upper fs does not support RENAME_WHITEOUT.\n");
1246
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001247 /*
1248 * Check if upper/work fs supports trusted.overlay.* xattr
1249 */
Miklos Szerediad204482017-11-10 09:39:16 +01001250 err = ovl_do_setxattr(ofs->workdir, OVL_XATTR_OPAQUE, "0", 1, 0);
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001251 if (err) {
Miklos Szerediad204482017-11-10 09:39:16 +01001252 ofs->noxattr = true;
Amir Goldsteina6837372017-09-19 12:14:18 +03001253 ofs->config.index = false;
Vivek Goyald5791042018-05-11 11:49:27 -04001254 ofs->config.metacopy = false;
lijiazi1bd0a3a2019-12-16 19:12:32 +08001255 pr_warn("upper fs does not support xattr, falling back to index=off and metacopy=off.\n");
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001256 err = 0;
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001257 } else {
Miklos Szerediad204482017-11-10 09:39:16 +01001258 vfs_removexattr(ofs->workdir, OVL_XATTR_OPAQUE);
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001259 }
1260
Amir Goldsteind80172c2020-02-20 09:03:08 +02001261 /*
1262 * We allowed sub-optimal upper fs configuration and don't want to break
1263 * users over kernel upgrade, but we never allowed remote upper fs, so
1264 * we can enforce strict requirements for remote upper fs.
1265 */
1266 if (ovl_dentry_remote(ofs->workdir) &&
1267 (!d_type || !rename_whiteout || ofs->noxattr)) {
1268 pr_err("upper fs missing required features.\n");
1269 err = -EINVAL;
1270 goto out;
1271 }
1272
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001273 /* Check if upper/work fs supports file handles */
Amir Goldsteine487d882017-11-07 13:55:04 +02001274 fh_type = ovl_can_decode_fh(ofs->workdir->d_sb);
1275 if (ofs->config.index && !fh_type) {
Miklos Szerediad204482017-11-10 09:39:16 +01001276 ofs->config.index = false;
lijiazi1bd0a3a2019-12-16 19:12:32 +08001277 pr_warn("upper fs does not support file handles, falling back to index=off.\n");
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001278 }
1279
Amir Goldsteine487d882017-11-07 13:55:04 +02001280 /* Check if upper fs has 32bit inode numbers */
1281 if (fh_type != FILEID_INO32_GEN)
Amir Goldstein0f831ec2019-11-16 18:14:41 +02001282 ofs->xino_mode = -1;
Amir Goldsteine487d882017-11-07 13:55:04 +02001283
Amir Goldsteinf168f102018-01-19 11:26:53 +02001284 /* NFS export of r/w mount depends on index */
1285 if (ofs->config.nfs_export && !ofs->config.index) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001286 pr_warn("NFS export requires \"index=on\", falling back to nfs_export=off.\n");
Amir Goldsteinf168f102018-01-19 11:26:53 +02001287 ofs->config.nfs_export = false;
1288 }
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001289out:
1290 mnt_drop_write(mnt);
1291 return err;
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001292}
1293
Amir Goldstein146d62e2019-04-18 17:42:08 +03001294static int ovl_get_workdir(struct super_block *sb, struct ovl_fs *ofs,
1295 struct path *upperpath)
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001296{
1297 int err;
Miklos Szeredibca44b52017-11-10 09:39:15 +01001298 struct path workpath = { };
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001299
Miklos Szerediad204482017-11-10 09:39:16 +01001300 err = ovl_mount_dir(ofs->config.workdir, &workpath);
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001301 if (err)
1302 goto out;
1303
1304 err = -EINVAL;
Miklos Szeredibca44b52017-11-10 09:39:15 +01001305 if (upperpath->mnt != workpath.mnt) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001306 pr_err("workdir and upperdir must reside under the same mount\n");
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001307 goto out;
1308 }
Miklos Szeredibca44b52017-11-10 09:39:15 +01001309 if (!ovl_workdir_ok(workpath.dentry, upperpath->dentry)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001310 pr_err("workdir and upperdir must be separate subtrees\n");
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001311 goto out;
1312 }
1313
Miklos Szeredi8c257412018-09-10 11:43:29 +02001314 ofs->workbasedir = dget(workpath.dentry);
1315
Miklos Szeredi8c257412018-09-10 11:43:29 +02001316 if (ovl_inuse_trylock(ofs->workbasedir)) {
Miklos Szerediad204482017-11-10 09:39:16 +01001317 ofs->workdir_locked = true;
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001318 } else {
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001319 err = ovl_report_in_use(ofs, "workdir");
1320 if (err)
1321 goto out;
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001322 }
1323
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001324 err = ovl_setup_trap(sb, ofs->workbasedir, &ofs->workbasedir_trap,
1325 "workdir");
1326 if (err)
1327 goto out;
1328
Amir Goldstein146d62e2019-04-18 17:42:08 +03001329 err = ovl_make_workdir(sb, ofs, &workpath);
Miklos Szeredibca44b52017-11-10 09:39:15 +01001330
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001331out:
Miklos Szeredibca44b52017-11-10 09:39:15 +01001332 path_put(&workpath);
1333
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001334 return err;
1335}
1336
Amir Goldstein146d62e2019-04-18 17:42:08 +03001337static int ovl_get_indexdir(struct super_block *sb, struct ovl_fs *ofs,
1338 struct ovl_entry *oe, struct path *upperpath)
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001339{
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001340 struct vfsmount *mnt = ovl_upper_mnt(ofs);
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001341 int err;
1342
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001343 err = mnt_want_write(mnt);
1344 if (err)
1345 return err;
1346
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001347 /* Verify lower root is upper root origin */
Amir Goldsteind9768072017-09-24 13:00:19 +03001348 err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry,
Amir Goldstein05122442018-01-11 08:25:32 +02001349 true);
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001350 if (err) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001351 pr_err("failed to verify upper root origin\n");
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001352 goto out;
1353 }
1354
Miklos Szerediad204482017-11-10 09:39:16 +01001355 ofs->indexdir = ovl_workdir_create(ofs, OVL_INDEXDIR_NAME, true);
1356 if (ofs->indexdir) {
Amir Goldstein20396362020-06-21 09:37:59 +03001357 /* index dir will act also as workdir */
1358 iput(ofs->workdir_trap);
1359 ofs->workdir_trap = NULL;
1360 dput(ofs->workdir);
1361 ofs->workdir = dget(ofs->indexdir);
1362
Amir Goldstein146d62e2019-04-18 17:42:08 +03001363 err = ovl_setup_trap(sb, ofs->indexdir, &ofs->indexdir_trap,
1364 "indexdir");
1365 if (err)
1366 goto out;
1367
Amir Goldsteinad1d6152018-01-11 10:47:03 +02001368 /*
1369 * Verify upper root is exclusively associated with index dir.
1370 * Older kernels stored upper fh in "trusted.overlay.origin"
1371 * xattr. If that xattr exists, verify that it is a match to
1372 * upper dir file handle. In any case, verify or set xattr
1373 * "trusted.overlay.upper" to indicate that index may have
1374 * directory entries.
1375 */
1376 if (ovl_check_origin_xattr(ofs->indexdir)) {
1377 err = ovl_verify_set_fh(ofs->indexdir, OVL_XATTR_ORIGIN,
1378 upperpath->dentry, true, false);
1379 if (err)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001380 pr_err("failed to verify index dir 'origin' xattr\n");
Amir Goldsteinad1d6152018-01-11 10:47:03 +02001381 }
1382 err = ovl_verify_upper(ofs->indexdir, upperpath->dentry, true);
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001383 if (err)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001384 pr_err("failed to verify index dir 'upper' xattr\n");
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001385
1386 /* Cleanup bad/stale/orphan index entries */
1387 if (!err)
Amir Goldstein1eff1a12017-12-12 22:40:46 +02001388 err = ovl_indexdir_cleanup(ofs);
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001389 }
Miklos Szerediad204482017-11-10 09:39:16 +01001390 if (err || !ofs->indexdir)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001391 pr_warn("try deleting index dir or mounting with '-o index=off' to disable inodes index.\n");
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001392
1393out:
Amir Goldstein2ba9d572018-01-03 18:54:41 +02001394 mnt_drop_write(mnt);
Miklos Szeredif7e3a7d2017-11-09 10:23:28 +01001395 return err;
1396}
1397
Amir Goldstein9df085f2018-09-03 09:12:09 +03001398static bool ovl_lower_uuid_ok(struct ovl_fs *ofs, const uuid_t *uuid)
Amir Goldstein51486262018-03-28 20:22:41 +03001399{
1400 unsigned int i;
Amir Goldstein9df085f2018-09-03 09:12:09 +03001401
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001402 if (!ofs->config.nfs_export && !ovl_upper_mnt(ofs))
Amir Goldstein9df085f2018-09-03 09:12:09 +03001403 return true;
1404
Amir Goldsteina888db32020-07-08 16:16:13 +03001405 /*
1406 * We allow using single lower with null uuid for index and nfs_export
1407 * for example to support those features with single lower squashfs.
1408 * To avoid regressions in setups of overlay with re-formatted lower
1409 * squashfs, do not allow decoding origin with lower null uuid unless
1410 * user opted-in to one of the new features that require following the
1411 * lower inode of non-dir upper.
1412 */
1413 if (!ofs->config.index && !ofs->config.metacopy && !ofs->config.xino &&
1414 uuid_is_null(uuid))
1415 return false;
1416
Amir Goldstein1b81ddd2019-11-16 18:52:20 +02001417 for (i = 0; i < ofs->numfs; i++) {
Amir Goldstein9df085f2018-09-03 09:12:09 +03001418 /*
1419 * We use uuid to associate an overlay lower file handle with a
1420 * lower layer, so we can accept lower fs with null uuid as long
1421 * as all lower layers with null uuid are on the same fs.
Amir Goldstein7e63c872019-11-14 22:28:41 +02001422 * if we detect multiple lower fs with the same uuid, we
1423 * disable lower file handle decoding on all of them.
Amir Goldstein9df085f2018-09-03 09:12:09 +03001424 */
Amir Goldstein1b81ddd2019-11-16 18:52:20 +02001425 if (ofs->fs[i].is_lower &&
1426 uuid_equal(&ofs->fs[i].sb->s_uuid, uuid)) {
Amir Goldstein07f1e592020-01-14 21:59:22 +02001427 ofs->fs[i].bad_uuid = true;
Amir Goldstein9df085f2018-09-03 09:12:09 +03001428 return false;
Amir Goldstein7e63c872019-11-14 22:28:41 +02001429 }
Amir Goldstein9df085f2018-09-03 09:12:09 +03001430 }
1431 return true;
1432}
1433
1434/* Get a unique fsid for the layer */
1435static int ovl_get_fsid(struct ovl_fs *ofs, const struct path *path)
1436{
1437 struct super_block *sb = path->mnt->mnt_sb;
1438 unsigned int i;
Amir Goldstein51486262018-03-28 20:22:41 +03001439 dev_t dev;
1440 int err;
Amir Goldstein7e63c872019-11-14 22:28:41 +02001441 bool bad_uuid = false;
Amir Goldstein51486262018-03-28 20:22:41 +03001442
Amir Goldstein07f1e592020-01-14 21:59:22 +02001443 for (i = 0; i < ofs->numfs; i++) {
1444 if (ofs->fs[i].sb == sb)
1445 return i;
Amir Goldstein51486262018-03-28 20:22:41 +03001446 }
1447
Amir Goldstein9df085f2018-09-03 09:12:09 +03001448 if (!ovl_lower_uuid_ok(ofs, &sb->s_uuid)) {
Amir Goldstein7e63c872019-11-14 22:28:41 +02001449 bad_uuid = true;
1450 if (ofs->config.index || ofs->config.nfs_export) {
1451 ofs->config.index = false;
1452 ofs->config.nfs_export = false;
lijiazi1bd0a3a2019-12-16 19:12:32 +08001453 pr_warn("%s uuid detected in lower fs '%pd2', falling back to index=off,nfs_export=off.\n",
Amir Goldstein7e63c872019-11-14 22:28:41 +02001454 uuid_is_null(&sb->s_uuid) ? "null" :
1455 "conflicting",
1456 path->dentry);
1457 }
Amir Goldstein9df085f2018-09-03 09:12:09 +03001458 }
1459
Amir Goldstein51486262018-03-28 20:22:41 +03001460 err = get_anon_bdev(&dev);
1461 if (err) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001462 pr_err("failed to get anonymous bdev for lowerpath\n");
Amir Goldstein51486262018-03-28 20:22:41 +03001463 return err;
1464 }
1465
Amir Goldstein07f1e592020-01-14 21:59:22 +02001466 ofs->fs[ofs->numfs].sb = sb;
1467 ofs->fs[ofs->numfs].pseudo_dev = dev;
1468 ofs->fs[ofs->numfs].bad_uuid = bad_uuid;
Amir Goldstein51486262018-03-28 20:22:41 +03001469
Amir Goldstein07f1e592020-01-14 21:59:22 +02001470 return ofs->numfs++;
Amir Goldstein51486262018-03-28 20:22:41 +03001471}
1472
Amir Goldstein94375f92019-11-15 14:12:40 +02001473static int ovl_get_layers(struct super_block *sb, struct ovl_fs *ofs,
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001474 struct path *stack, unsigned int numlower,
1475 struct ovl_layer *layers)
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001476{
1477 int err;
1478 unsigned int i;
1479
1480 err = -ENOMEM;
Amir Goldstein07f1e592020-01-14 21:59:22 +02001481 ofs->fs = kcalloc(numlower + 1, sizeof(struct ovl_sb), GFP_KERNEL);
1482 if (ofs->fs == NULL)
Amir Goldstein51486262018-03-28 20:22:41 +03001483 goto out;
1484
Amir Goldstein07f1e592020-01-14 21:59:22 +02001485 /* idx/fsid 0 are reserved for upper fs even with lower only overlay */
1486 ofs->numfs++;
1487
Amir Goldstein07f1e592020-01-14 21:59:22 +02001488 /*
Amir Goldsteinb7bf9902020-01-14 22:17:25 +02001489 * All lower layers that share the same fs as upper layer, use the same
1490 * pseudo_dev as upper layer. Allocate fs[0].pseudo_dev even for lower
1491 * only overlay to simplify ovl_fs_free().
Amir Goldstein1b81ddd2019-11-16 18:52:20 +02001492 * is_lower will be set if upper fs is shared with a lower layer.
Amir Goldstein07f1e592020-01-14 21:59:22 +02001493 */
Amir Goldsteinb7bf9902020-01-14 22:17:25 +02001494 err = get_anon_bdev(&ofs->fs[0].pseudo_dev);
1495 if (err) {
1496 pr_err("failed to get anonymous bdev for upper fs\n");
1497 goto out;
1498 }
1499
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001500 if (ovl_upper_mnt(ofs)) {
1501 ofs->fs[0].sb = ovl_upper_mnt(ofs)->mnt_sb;
Amir Goldstein1b81ddd2019-11-16 18:52:20 +02001502 ofs->fs[0].is_lower = false;
Amir Goldstein07f1e592020-01-14 21:59:22 +02001503 }
1504
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001505 for (i = 0; i < numlower; i++) {
1506 struct vfsmount *mnt;
Amir Goldstein146d62e2019-04-18 17:42:08 +03001507 struct inode *trap;
Amir Goldstein51486262018-03-28 20:22:41 +03001508 int fsid;
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001509
Amir Goldstein9df085f2018-09-03 09:12:09 +03001510 err = fsid = ovl_get_fsid(ofs, &stack[i]);
Amir Goldstein51486262018-03-28 20:22:41 +03001511 if (err < 0)
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001512 goto out;
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001513
youngjun24f14002020-06-16 17:30:43 +09001514 /*
1515 * Check if lower root conflicts with this overlay layers before
1516 * checking if it is in-use as upperdir/workdir of "another"
1517 * mount, because we do not bother to check in ovl_is_inuse() if
1518 * the upperdir/workdir is in fact in-use by our
1519 * upperdir/workdir.
1520 */
Amir Goldstein146d62e2019-04-18 17:42:08 +03001521 err = ovl_setup_trap(sb, stack[i].dentry, &trap, "lowerdir");
1522 if (err)
1523 goto out;
1524
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001525 if (ovl_is_inuse(stack[i].dentry)) {
1526 err = ovl_report_in_use(ofs, "lowerdir");
youngjun24f14002020-06-16 17:30:43 +09001527 if (err) {
1528 iput(trap);
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001529 goto out;
youngjun24f14002020-06-16 17:30:43 +09001530 }
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001531 }
1532
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001533 mnt = clone_private_mount(&stack[i]);
1534 err = PTR_ERR(mnt);
1535 if (IS_ERR(mnt)) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001536 pr_err("failed to clone lowerpath\n");
Amir Goldstein146d62e2019-04-18 17:42:08 +03001537 iput(trap);
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001538 goto out;
1539 }
Amir Goldstein51486262018-03-28 20:22:41 +03001540
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001541 /*
1542 * Make lower layers R/O. That way fchmod/fchown on lower file
1543 * will fail instead of modifying lower fs.
1544 */
1545 mnt->mnt_flags |= MNT_READONLY | MNT_NOATIME;
1546
Miklos Szeredi13464162020-01-24 09:46:45 +01001547 layers[ofs->numlayer].trap = trap;
1548 layers[ofs->numlayer].mnt = mnt;
1549 layers[ofs->numlayer].idx = ofs->numlayer;
1550 layers[ofs->numlayer].fsid = fsid;
1551 layers[ofs->numlayer].fs = &ofs->fs[fsid];
Amir Goldstein94375f92019-11-15 14:12:40 +02001552 ofs->numlayer++;
Amir Goldstein1b81ddd2019-11-16 18:52:20 +02001553 ofs->fs[fsid].is_lower = true;
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001554 }
Amir Goldsteine487d882017-11-07 13:55:04 +02001555
Amir Goldstein795939a2018-03-29 09:08:18 +03001556 /*
1557 * When all layers on same fs, overlay can use real inode numbers.
Amir Goldstein926e94d2020-02-21 16:34:45 +02001558 * With mount option "xino=<on|auto>", mounter declares that there are
1559 * enough free high bits in underlying fs to hold the unique fsid.
Amir Goldstein795939a2018-03-29 09:08:18 +03001560 * If overlayfs does encounter underlying inodes using the high xino
1561 * bits reserved for fsid, it emits a warning and uses the original
Amir Goldsteindfe51d42020-02-21 16:34:44 +02001562 * inode number or a non persistent inode number allocated from a
1563 * dedicated range.
Amir Goldstein795939a2018-03-29 09:08:18 +03001564 */
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001565 if (ofs->numfs - !ovl_upper_mnt(ofs) == 1) {
Amir Goldstein0f831ec2019-11-16 18:14:41 +02001566 if (ofs->config.xino == OVL_XINO_ON)
1567 pr_info("\"xino=on\" is useless with all layers on same fs, ignore.\n");
1568 ofs->xino_mode = 0;
Amir Goldstein53afcd32020-02-21 16:34:42 +02001569 } else if (ofs->config.xino == OVL_XINO_OFF) {
1570 ofs->xino_mode = -1;
Amir Goldstein926e94d2020-02-21 16:34:45 +02001571 } else if (ofs->xino_mode < 0) {
Amir Goldstein795939a2018-03-29 09:08:18 +03001572 /*
Amir Goldstein07f1e592020-01-14 21:59:22 +02001573 * This is a roundup of number of bits needed for encoding
Amir Goldsteindfe51d42020-02-21 16:34:44 +02001574 * fsid, where fsid 0 is reserved for upper fs (even with
1575 * lower only overlay) +1 extra bit is reserved for the non
1576 * persistent inode number range that is used for resolving
1577 * xino lower bits overflow.
Amir Goldstein795939a2018-03-29 09:08:18 +03001578 */
Amir Goldsteindfe51d42020-02-21 16:34:44 +02001579 BUILD_BUG_ON(ilog2(OVL_MAX_STACK) > 30);
1580 ofs->xino_mode = ilog2(ofs->numfs - 1) + 2;
Amir Goldstein795939a2018-03-29 09:08:18 +03001581 }
1582
Amir Goldstein0f831ec2019-11-16 18:14:41 +02001583 if (ofs->xino_mode > 0) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001584 pr_info("\"xino\" feature enabled using %d upper inode bits.\n",
Amir Goldstein0f831ec2019-11-16 18:14:41 +02001585 ofs->xino_mode);
Amir Goldstein795939a2018-03-29 09:08:18 +03001586 }
Amir Goldsteine487d882017-11-07 13:55:04 +02001587
Miklos Szeredi520d7c82017-11-10 09:39:15 +01001588 err = 0;
1589out:
1590 return err;
1591}
1592
Miklos Szeredi4155c102017-11-10 09:39:15 +01001593static struct ovl_entry *ovl_get_lowerstack(struct super_block *sb,
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001594 const char *lower, unsigned int numlower,
1595 struct ovl_fs *ofs, struct ovl_layer *layers)
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001596{
1597 int err;
Miklos Szeredi4155c102017-11-10 09:39:15 +01001598 struct path *stack = NULL;
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001599 unsigned int i;
Miklos Szeredi4155c102017-11-10 09:39:15 +01001600 struct ovl_entry *oe;
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001601
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001602 if (!ofs->config.upperdir && numlower == 1) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001603 pr_err("at least 2 lowerdir are needed while upperdir nonexistent\n");
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001604 return ERR_PTR(-EINVAL);
Amir Goldsteinf168f102018-01-19 11:26:53 +02001605 } else if (!ofs->config.upperdir && ofs->config.nfs_export &&
1606 ofs->config.redirect_follow) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001607 pr_warn("NFS export requires \"redirect_dir=nofollow\" on non-upper mount, falling back to nfs_export=off.\n");
Amir Goldsteinf168f102018-01-19 11:26:53 +02001608 ofs->config.nfs_export = false;
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001609 }
1610
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001611 stack = kcalloc(numlower, sizeof(struct path), GFP_KERNEL);
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001612 if (!stack)
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001613 return ERR_PTR(-ENOMEM);
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001614
1615 err = -EINVAL;
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001616 for (i = 0; i < numlower; i++) {
1617 err = ovl_lower_dir(lower, &stack[i], ofs, &sb->s_stack_depth);
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001618 if (err)
Miklos Szeredi4155c102017-11-10 09:39:15 +01001619 goto out_err;
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001620
1621 lower = strchr(lower, '\0') + 1;
1622 }
1623
1624 err = -EINVAL;
1625 sb->s_stack_depth++;
1626 if (sb->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001627 pr_err("maximum fs stacking depth exceeded\n");
Miklos Szeredi4155c102017-11-10 09:39:15 +01001628 goto out_err;
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001629 }
1630
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001631 err = ovl_get_layers(sb, ofs, stack, numlower, layers);
Miklos Szeredi4155c102017-11-10 09:39:15 +01001632 if (err)
1633 goto out_err;
1634
1635 err = -ENOMEM;
1636 oe = ovl_alloc_entry(numlower);
1637 if (!oe)
1638 goto out_err;
1639
1640 for (i = 0; i < numlower; i++) {
1641 oe->lowerstack[i].dentry = dget(stack[i].dentry);
Amir Goldstein94375f92019-11-15 14:12:40 +02001642 oe->lowerstack[i].layer = &ofs->layers[i+1];
Miklos Szeredi4155c102017-11-10 09:39:15 +01001643 }
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001644
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001645out:
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001646 for (i = 0; i < numlower; i++)
1647 path_put(&stack[i]);
1648 kfree(stack);
Miklos Szeredi4155c102017-11-10 09:39:15 +01001649
1650 return oe;
1651
1652out_err:
1653 oe = ERR_PTR(err);
Miklos Szeredi53dbb0b2017-11-09 10:23:28 +01001654 goto out;
1655}
1656
Amir Goldstein146d62e2019-04-18 17:42:08 +03001657/*
1658 * Check if this layer root is a descendant of:
1659 * - another layer of this overlayfs instance
1660 * - upper/work dir of any overlayfs instance
Amir Goldstein146d62e2019-04-18 17:42:08 +03001661 */
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001662static int ovl_check_layer(struct super_block *sb, struct ovl_fs *ofs,
1663 struct dentry *dentry, const char *name)
Amir Goldstein146d62e2019-04-18 17:42:08 +03001664{
Miklos Szeredi9179c21d2019-06-18 15:06:16 +02001665 struct dentry *next = dentry, *parent;
Amir Goldstein146d62e2019-04-18 17:42:08 +03001666 int err = 0;
1667
Miklos Szeredi9179c21d2019-06-18 15:06:16 +02001668 if (!dentry)
Amir Goldstein146d62e2019-04-18 17:42:08 +03001669 return 0;
1670
Miklos Szeredi9179c21d2019-06-18 15:06:16 +02001671 parent = dget_parent(next);
1672
1673 /* Walk back ancestors to root (inclusive) looking for traps */
1674 while (!err && parent != next) {
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001675 if (ovl_lookup_trap_inode(sb, parent)) {
Amir Goldstein146d62e2019-04-18 17:42:08 +03001676 err = -ELOOP;
lijiazi1bd0a3a2019-12-16 19:12:32 +08001677 pr_err("overlapping %s path\n", name);
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001678 } else if (ovl_is_inuse(parent)) {
1679 err = ovl_report_in_use(ofs, name);
Amir Goldstein146d62e2019-04-18 17:42:08 +03001680 }
Amir Goldstein146d62e2019-04-18 17:42:08 +03001681 next = parent;
Miklos Szeredi9179c21d2019-06-18 15:06:16 +02001682 parent = dget_parent(next);
1683 dput(next);
Amir Goldstein146d62e2019-04-18 17:42:08 +03001684 }
1685
Miklos Szeredi9179c21d2019-06-18 15:06:16 +02001686 dput(parent);
Amir Goldstein146d62e2019-04-18 17:42:08 +03001687
1688 return err;
1689}
1690
1691/*
1692 * Check if any of the layers or work dirs overlap.
1693 */
1694static int ovl_check_overlapping_layers(struct super_block *sb,
1695 struct ovl_fs *ofs)
1696{
1697 int i, err;
1698
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001699 if (ovl_upper_mnt(ofs)) {
1700 err = ovl_check_layer(sb, ofs, ovl_upper_mnt(ofs)->mnt_root,
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001701 "upperdir");
Amir Goldstein146d62e2019-04-18 17:42:08 +03001702 if (err)
1703 return err;
1704
1705 /*
1706 * Checking workbasedir avoids hitting ovl_is_inuse(parent) of
1707 * this instance and covers overlapping work and index dirs,
1708 * unless work or index dir have been moved since created inside
1709 * workbasedir. In that case, we already have their traps in
1710 * inode cache and we will catch that case on lookup.
1711 */
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001712 err = ovl_check_layer(sb, ofs, ofs->workbasedir, "workdir");
Amir Goldstein146d62e2019-04-18 17:42:08 +03001713 if (err)
1714 return err;
1715 }
1716
Amir Goldstein94375f92019-11-15 14:12:40 +02001717 for (i = 1; i < ofs->numlayer; i++) {
Amir Goldstein0be0bfd2019-07-12 15:24:34 +03001718 err = ovl_check_layer(sb, ofs,
Amir Goldstein94375f92019-11-15 14:12:40 +02001719 ofs->layers[i].mnt->mnt_root,
Amir Goldstein146d62e2019-04-18 17:42:08 +03001720 "lowerdir");
1721 if (err)
1722 return err;
1723 }
1724
1725 return 0;
1726}
1727
Amir Goldstein2effc5c2019-11-19 17:49:17 +02001728static struct dentry *ovl_get_root(struct super_block *sb,
1729 struct dentry *upperdentry,
1730 struct ovl_entry *oe)
1731{
1732 struct dentry *root;
Amir Goldstein62c832e2019-11-19 15:31:46 +02001733 struct ovl_path *lowerpath = &oe->lowerstack[0];
1734 unsigned long ino = d_inode(lowerpath->dentry)->i_ino;
1735 int fsid = lowerpath->layer->fsid;
1736 struct ovl_inode_params oip = {
1737 .upperdentry = upperdentry,
1738 .lowerpath = lowerpath,
1739 };
Amir Goldstein2effc5c2019-11-19 17:49:17 +02001740
1741 root = d_make_root(ovl_new_inode(sb, S_IFDIR, 0));
1742 if (!root)
1743 return NULL;
1744
1745 root->d_fsdata = oe;
1746
1747 if (upperdentry) {
Amir Goldstein62c832e2019-11-19 15:31:46 +02001748 /* Root inode uses upper st_ino/i_ino */
1749 ino = d_inode(upperdentry)->i_ino;
1750 fsid = 0;
Amir Goldstein2effc5c2019-11-19 17:49:17 +02001751 ovl_dentry_set_upper_alias(root);
1752 if (ovl_is_impuredir(upperdentry))
1753 ovl_set_flag(OVL_IMPURE, d_inode(root));
1754 }
1755
1756 /* Root is always merge -> can have whiteouts */
1757 ovl_set_flag(OVL_WHITEOUTS, d_inode(root));
1758 ovl_dentry_set_flag(OVL_E_CONNECTED, root);
1759 ovl_set_upperdata(d_inode(root));
Amir Goldstein62c832e2019-11-19 15:31:46 +02001760 ovl_inode_init(d_inode(root), &oip, ino, fsid);
Miklos Szeredif4288842020-03-17 15:04:22 +01001761 ovl_dentry_update_reval(root, upperdentry, DCACHE_OP_WEAK_REVALIDATE);
Amir Goldstein2effc5c2019-11-19 17:49:17 +02001762
1763 return root;
1764}
1765
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001766static int ovl_fill_super(struct super_block *sb, void *data, int silent)
1767{
Kees Cook33006cd2017-03-29 14:02:19 -07001768 struct path upperpath = { };
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001769 struct dentry *root_dentry;
Miklos Szeredi4155c102017-11-10 09:39:15 +01001770 struct ovl_entry *oe;
Miklos Szerediad204482017-11-10 09:39:16 +01001771 struct ovl_fs *ofs;
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001772 struct ovl_layer *layers;
Konstantin Khlebnikov51f8f3c2017-01-10 21:30:21 +03001773 struct cred *cred;
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001774 char *splitlower = NULL;
1775 unsigned int numlower;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001776 int err;
1777
Miklos Szeredif4288842020-03-17 15:04:22 +01001778 sb->s_d_op = &ovl_dentry_operations;
1779
Erez Zadokf45827e82014-10-24 00:14:38 +02001780 err = -ENOMEM;
Miklos Szerediad204482017-11-10 09:39:16 +01001781 ofs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
1782 if (!ofs)
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001783 goto out;
1784
Miklos Szerediad204482017-11-10 09:39:16 +01001785 ofs->creator_cred = cred = prepare_creds();
Miklos Szeredic6fe6252017-11-10 09:39:15 +01001786 if (!cred)
1787 goto out_err;
1788
Chengguang Xuc21c8392020-04-24 10:55:17 +08001789 /* Is there a reason anyone would want not to share whiteouts? */
1790 ofs->share_whiteout = true;
1791
Miklos Szerediad204482017-11-10 09:39:16 +01001792 ofs->config.index = ovl_index_def;
Amir Goldsteinf168f102018-01-19 11:26:53 +02001793 ofs->config.nfs_export = ovl_nfs_export_def;
Amir Goldstein795939a2018-03-29 09:08:18 +03001794 ofs->config.xino = ovl_xino_def();
Vivek Goyald5791042018-05-11 11:49:27 -04001795 ofs->config.metacopy = ovl_metacopy_def;
Miklos Szerediad204482017-11-10 09:39:16 +01001796 err = ovl_parse_opt((char *) data, &ofs->config);
Erez Zadokf45827e82014-10-24 00:14:38 +02001797 if (err)
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001798 goto out_err;
Erez Zadokf45827e82014-10-24 00:14:38 +02001799
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001800 err = -EINVAL;
Miklos Szerediad204482017-11-10 09:39:16 +01001801 if (!ofs->config.lowerdir) {
Konstantin Khlebnikov07f2af72015-06-29 20:18:56 +03001802 if (!silent)
lijiazi1bd0a3a2019-12-16 19:12:32 +08001803 pr_err("missing 'lowerdir'\n");
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001804 goto out_err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001805 }
1806
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001807 err = -ENOMEM;
1808 splitlower = kstrdup(ofs->config.lowerdir, GFP_KERNEL);
1809 if (!splitlower)
1810 goto out_err;
1811
1812 numlower = ovl_split_lowerdirs(splitlower);
1813 if (numlower > OVL_MAX_STACK) {
1814 pr_err("too many lower directories, limit is %d\n",
1815 OVL_MAX_STACK);
1816 goto out_err;
1817 }
1818
1819 layers = kcalloc(numlower + 1, sizeof(struct ovl_layer), GFP_KERNEL);
1820 if (!layers)
1821 goto out_err;
1822
1823 ofs->layers = layers;
1824 /* Layer 0 is reserved for upper even if there's no upper */
1825 ofs->numlayer = 1;
1826
Miklos Szeredi53a08cb2014-12-13 00:59:51 +01001827 sb->s_stack_depth = 0;
Miklos Szeredicf9a6782015-12-11 16:30:49 +01001828 sb->s_maxbytes = MAX_LFS_FILESIZE;
Amir Goldstein4d314f72020-02-21 16:34:43 +02001829 atomic_long_set(&ofs->last_ino, 1);
Amir Goldsteine487d882017-11-07 13:55:04 +02001830 /* Assume underlaying fs uses 32bit inodes unless proven otherwise */
Amir Goldstein53afcd32020-02-21 16:34:42 +02001831 if (ofs->config.xino != OVL_XINO_OFF) {
Amir Goldstein0f831ec2019-11-16 18:14:41 +02001832 ofs->xino_mode = BITS_PER_LONG - 32;
Amir Goldstein53afcd32020-02-21 16:34:42 +02001833 if (!ofs->xino_mode) {
1834 pr_warn("xino not supported on 32bit kernel, falling back to xino=off.\n");
1835 ofs->config.xino = OVL_XINO_OFF;
1836 }
1837 }
Amir Goldstein795939a2018-03-29 09:08:18 +03001838
Amir Goldstein146d62e2019-04-18 17:42:08 +03001839 /* alloc/destroy_inode needed for setting up traps in inode cache */
1840 sb->s_op = &ovl_super_operations;
1841
Miklos Szerediad204482017-11-10 09:39:16 +01001842 if (ofs->config.upperdir) {
1843 if (!ofs->config.workdir) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001844 pr_err("missing 'workdir'\n");
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001845 goto out_err;
Miklos Szeredi53a08cb2014-12-13 00:59:51 +01001846 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001847
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001848 err = ovl_get_upper(sb, ofs, &layers[0], &upperpath);
Miklos Szeredi21a3b312017-11-09 10:23:28 +01001849 if (err)
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001850 goto out_err;
Miklos Szeredid719e8f2016-07-29 12:05:23 +02001851
Amir Goldstein146d62e2019-04-18 17:42:08 +03001852 err = ovl_get_workdir(sb, ofs, &upperpath);
Miklos Szeredi8ed61dc2017-11-09 10:23:28 +01001853 if (err)
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001854 goto out_err;
Miklos Szeredic6fe6252017-11-10 09:39:15 +01001855
Miklos Szerediad204482017-11-10 09:39:16 +01001856 if (!ofs->workdir)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001857 sb->s_flags |= SB_RDONLY;
Miklos Szeredi6e882562017-11-10 09:39:15 +01001858
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001859 sb->s_stack_depth = ovl_upper_mnt(ofs)->mnt_sb->s_stack_depth;
1860 sb->s_time_gran = ovl_upper_mnt(ofs)->mnt_sb->s_time_gran;
Miklos Szeredic6fe6252017-11-10 09:39:15 +01001861
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001862 }
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001863 oe = ovl_get_lowerstack(sb, splitlower, numlower, ofs, layers);
Miklos Szeredi4155c102017-11-10 09:39:15 +01001864 err = PTR_ERR(oe);
1865 if (IS_ERR(oe))
Miklos Szeredia9075cd2017-11-10 09:39:15 +01001866 goto out_err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001867
hujianyang71cbad72015-01-15 13:20:57 +08001868 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001869 if (!ovl_upper_mnt(ofs))
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001870 sb->s_flags |= SB_RDONLY;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001871
Miklos Szerediad204482017-11-10 09:39:16 +01001872 if (!(ovl_force_readonly(ofs)) && ofs->config.index) {
Amir Goldstein146d62e2019-04-18 17:42:08 +03001873 err = ovl_get_indexdir(sb, ofs, oe, &upperpath);
Amir Goldstein54fb3472017-06-21 15:28:38 +03001874 if (err)
Miklos Szeredi4155c102017-11-10 09:39:15 +01001875 goto out_free_oe;
Miklos Szeredi6e882562017-11-10 09:39:15 +01001876
Amir Goldstein972d0092017-09-19 12:14:18 +03001877 /* Force r/o mount with no index dir */
Amir Goldstein20396362020-06-21 09:37:59 +03001878 if (!ofs->indexdir)
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001879 sb->s_flags |= SB_RDONLY;
Amir Goldstein02bcd152017-06-21 15:28:36 +03001880 }
1881
Amir Goldstein146d62e2019-04-18 17:42:08 +03001882 err = ovl_check_overlapping_layers(sb, ofs);
1883 if (err)
1884 goto out_free_oe;
1885
Amir Goldstein972d0092017-09-19 12:14:18 +03001886 /* Show index=off in /proc/mounts for forced r/o mount */
Amir Goldsteinf168f102018-01-19 11:26:53 +02001887 if (!ofs->indexdir) {
Miklos Szerediad204482017-11-10 09:39:16 +01001888 ofs->config.index = false;
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001889 if (ovl_upper_mnt(ofs) && ofs->config.nfs_export) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001890 pr_warn("NFS export requires an index dir, falling back to nfs_export=off.\n");
Amir Goldsteinf168f102018-01-19 11:26:53 +02001891 ofs->config.nfs_export = false;
1892 }
1893 }
Amir Goldstein02bcd152017-06-21 15:28:36 +03001894
Vivek Goyald5791042018-05-11 11:49:27 -04001895 if (ofs->config.metacopy && ofs->config.nfs_export) {
lijiazi1bd0a3a2019-12-16 19:12:32 +08001896 pr_warn("NFS export is not supported with metadata only copy up, falling back to nfs_export=off.\n");
Vivek Goyald5791042018-05-11 11:49:27 -04001897 ofs->config.nfs_export = false;
1898 }
1899
Amir Goldstein8383f172017-10-02 11:31:42 +03001900 if (ofs->config.nfs_export)
1901 sb->s_export_op = &ovl_export_operations;
1902
Konstantin Khlebnikov51f8f3c2017-01-10 21:30:21 +03001903 /* Never override disk quota limits or use reserved space */
1904 cap_lower(cred->cap_effective, CAP_SYS_RESOURCE);
1905
Vivek Goyal655042c2016-10-14 03:03:36 +02001906 sb->s_magic = OVERLAYFS_SUPER_MAGIC;
Vivek Goyal655042c2016-10-14 03:03:36 +02001907 sb->s_xattr = ovl_xattr_handlers;
Miklos Szerediad204482017-11-10 09:39:16 +01001908 sb->s_fs_info = ofs;
Miklos Szeredide2a4a52018-07-18 15:44:43 +02001909 sb->s_flags |= SB_POSIXACL;
Konstantin Khlebnikov32b1924b22020-04-09 11:29:47 +03001910 sb->s_iflags |= SB_I_SKIP_SYNC;
Vivek Goyal655042c2016-10-14 03:03:36 +02001911
Miklos Szeredic6fe6252017-11-10 09:39:15 +01001912 err = -ENOMEM;
Amir Goldstein2effc5c2019-11-19 17:49:17 +02001913 root_dentry = ovl_get_root(sb, upperpath.dentry, oe);
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001914 if (!root_dentry)
Miklos Szeredi4155c102017-11-10 09:39:15 +01001915 goto out_free_oe;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001916
1917 mntput(upperpath.mnt);
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001918 kfree(splitlower);
Miklos Szeredied06e062015-12-09 16:11:59 +01001919
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001920 sb->s_root = root_dentry;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001921
1922 return 0;
1923
Miklos Szeredi4155c102017-11-10 09:39:15 +01001924out_free_oe:
1925 ovl_entry_stack_free(oe);
Chandan Rajendrab9343632017-07-24 01:57:54 -05001926 kfree(oe);
Miklos Szeredi4155c102017-11-10 09:39:15 +01001927out_err:
Miklos Szeredib8e42a62020-06-04 10:48:19 +02001928 kfree(splitlower);
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001929 path_put(&upperpath);
Miklos Szerediad204482017-11-10 09:39:16 +01001930 ovl_free_fs(ofs);
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001931out:
1932 return err;
1933}
1934
1935static struct dentry *ovl_mount(struct file_system_type *fs_type, int flags,
1936 const char *dev_name, void *raw_data)
1937{
1938 return mount_nodev(fs_type, flags, raw_data, ovl_fill_super);
1939}
1940
1941static struct file_system_type ovl_fs_type = {
1942 .owner = THIS_MODULE,
Miklos Szeredief94b182014-11-20 16:39:59 +01001943 .name = "overlay",
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001944 .mount = ovl_mount,
1945 .kill_sb = kill_anon_super,
1946};
Miklos Szeredief94b182014-11-20 16:39:59 +01001947MODULE_ALIAS_FS("overlay");
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001948
Amir Goldstein13cf1992017-06-12 09:54:40 +03001949static void ovl_inode_init_once(void *foo)
1950{
1951 struct ovl_inode *oi = foo;
1952
1953 inode_init_once(&oi->vfs_inode);
1954}
1955
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001956static int __init ovl_init(void)
1957{
Amir Goldstein13cf1992017-06-12 09:54:40 +03001958 int err;
1959
1960 ovl_inode_cachep = kmem_cache_create("ovl_inode",
1961 sizeof(struct ovl_inode), 0,
1962 (SLAB_RECLAIM_ACCOUNT|
1963 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
1964 ovl_inode_init_once);
1965 if (ovl_inode_cachep == NULL)
1966 return -ENOMEM;
1967
Jiufei Xue2406a302019-11-20 17:45:26 +08001968 err = ovl_aio_request_cache_init();
1969 if (!err) {
1970 err = register_filesystem(&ovl_fs_type);
1971 if (!err)
1972 return 0;
1973
1974 ovl_aio_request_cache_destroy();
1975 }
1976 kmem_cache_destroy(ovl_inode_cachep);
Amir Goldstein13cf1992017-06-12 09:54:40 +03001977
1978 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001979}
1980
1981static void __exit ovl_exit(void)
1982{
1983 unregister_filesystem(&ovl_fs_type);
Amir Goldstein13cf1992017-06-12 09:54:40 +03001984
1985 /*
1986 * Make sure all delayed rcu free inodes are flushed before we
1987 * destroy cache.
1988 */
1989 rcu_barrier();
1990 kmem_cache_destroy(ovl_inode_cachep);
Jiufei Xue2406a302019-11-20 17:45:26 +08001991 ovl_aio_request_cache_destroy();
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001992}
1993
1994module_init(ovl_init);
1995module_exit(ovl_exit);