blob: 1f36158c7dbe2f8782a2dcb6f15a4f0c4bbef28c [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
7#include <linux/fs.h>
8#include <linux/slab.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +01009#include <linux/cred.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020010#include <linux/xattr.h>
Miklos Szeredi5201dc42016-09-01 11:11:59 +020011#include <linux/posix_acl.h>
Amir Goldstein5f8415d2017-06-20 15:35:14 +030012#include <linux/ratelimit.h>
Christoph Hellwig10c5db22020-05-23 09:30:11 +020013#include <linux/fiemap.h>
Miklos Szeredi66dbfab2021-04-07 14:36:43 +020014#include <linux/fileattr.h>
15#include <linux/security.h>
Miklos Szeredi332f6062021-08-18 22:08:24 +020016#include <linux/namei.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020017#include "overlayfs.h"
18
Chandan Rajendraba1e5632017-07-24 01:57:54 -050019
Christian Brauner549c7292021-01-21 14:19:43 +010020int ovl_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
21 struct iattr *attr)
Miklos Szeredie9be9d52014-10-24 00:14:38 +020022{
23 int err;
Vivek Goyal997336f2018-05-11 11:49:33 -040024 bool full_copy_up = false;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020025 struct dentry *upperdentry;
Vivek Goyal1175b6b2016-07-01 16:34:28 -040026 const struct cred *old_cred;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020027
Christian Brauner2f221d62021-01-21 14:19:26 +010028 err = setattr_prepare(&init_user_ns, dentry, attr);
Miklos Szeredicf9a6782015-12-11 16:30:49 +010029 if (err)
30 return err;
31
Miklos Szeredie9be9d52014-10-24 00:14:38 +020032 err = ovl_want_write(dentry);
33 if (err)
34 goto out;
35
Miklos Szeredi58121602018-07-18 15:44:41 +020036 if (attr->ia_valid & ATTR_SIZE) {
Vivek Goyal997336f2018-05-11 11:49:33 -040037 /* Truncate should trigger data copy up as well */
38 full_copy_up = true;
Miklos Szeredi58121602018-07-18 15:44:41 +020039 }
40
Vivek Goyal997336f2018-05-11 11:49:33 -040041 if (!full_copy_up)
42 err = ovl_copy_up(dentry);
43 else
44 err = ovl_copy_up_with_data(dentry);
Miklos Szerediacff81e2015-12-04 19:18:48 +010045 if (!err) {
Miklos Szeredi58121602018-07-18 15:44:41 +020046 struct inode *winode = NULL;
47
Miklos Szerediacff81e2015-12-04 19:18:48 +010048 upperdentry = ovl_dentry_upper(dentry);
49
Miklos Szeredi58121602018-07-18 15:44:41 +020050 if (attr->ia_valid & ATTR_SIZE) {
51 winode = d_inode(upperdentry);
52 err = get_write_access(winode);
53 if (err)
54 goto out_drop_write;
55 }
56
Miklos Szeredib99c2d92016-07-04 16:49:48 +020057 if (attr->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
58 attr->ia_valid &= ~ATTR_MODE;
59
Vivek Goyale67f0212020-04-22 09:08:49 -040060 /*
Vivek Goyal15fd2ea2020-04-22 09:08:50 -040061 * We might have to translate ovl file into real file object
62 * once use cases emerge. For now, simply don't let underlying
63 * filesystem rely on attr->ia_file
Vivek Goyale67f0212020-04-22 09:08:49 -040064 */
65 attr->ia_valid &= ~ATTR_FILE;
66
Vivek Goyal15fd2ea2020-04-22 09:08:50 -040067 /*
68 * If open(O_TRUNC) is done, VFS calls ->setattr with ATTR_OPEN
69 * set. Overlayfs does not pass O_TRUNC flag to underlying
70 * filesystem during open -> do not pass ATTR_OPEN. This
71 * disables optimization in fuse which assumes open(O_TRUNC)
72 * already set file size to 0. But we never passed O_TRUNC to
73 * fuse. So by clearing ATTR_OPEN, fuse will be forced to send
74 * setattr request to server.
75 */
76 attr->ia_valid &= ~ATTR_OPEN;
77
Al Viro59551022016-01-22 15:40:57 -050078 inode_lock(upperdentry->d_inode);
Vivek Goyal1175b6b2016-07-01 16:34:28 -040079 old_cred = ovl_override_creds(dentry->d_sb);
Christian Brauner2f221d62021-01-21 14:19:26 +010080 err = notify_change(&init_user_ns, upperdentry, attr, NULL);
Vivek Goyal1175b6b2016-07-01 16:34:28 -040081 revert_creds(old_cred);
Konstantin Khlebnikovb81de062016-01-31 16:21:29 +030082 if (!err)
83 ovl_copyattr(upperdentry->d_inode, dentry->d_inode);
Al Viro59551022016-01-22 15:40:57 -050084 inode_unlock(upperdentry->d_inode);
Miklos Szeredi58121602018-07-18 15:44:41 +020085
86 if (winode)
87 put_write_access(winode);
Miklos Szeredie9be9d52014-10-24 00:14:38 +020088 }
Miklos Szeredi58121602018-07-18 15:44:41 +020089out_drop_write:
Miklos Szeredie9be9d52014-10-24 00:14:38 +020090 ovl_drop_write(dentry);
91out:
92 return err;
93}
94
youngjunc68e7ec2021-02-22 08:59:21 -080095static void ovl_map_dev_ino(struct dentry *dentry, struct kstat *stat, int fsid)
Amir Goldsteinda309e82017-11-08 19:39:51 +020096{
Amir Goldstein0f831ec2019-11-16 18:14:41 +020097 bool samefs = ovl_same_fs(dentry->d_sb);
Amir Goldsteine487d882017-11-07 13:55:04 +020098 unsigned int xinobits = ovl_xino_bits(dentry->d_sb);
Amir Goldsteindfe51d42020-02-21 16:34:44 +020099 unsigned int xinoshift = 64 - xinobits;
Amir Goldsteinda309e82017-11-08 19:39:51 +0200100
101 if (samefs) {
102 /*
103 * When all layers are on the same fs, all real inode
104 * number are unique, so we use the overlay st_dev,
105 * which is friendly to du -x.
106 */
107 stat->dev = dentry->d_sb->s_dev;
youngjunc68e7ec2021-02-22 08:59:21 -0800108 return;
Amir Goldsteine487d882017-11-07 13:55:04 +0200109 } else if (xinobits) {
Amir Goldsteine487d882017-11-07 13:55:04 +0200110 /*
111 * All inode numbers of underlying fs should not be using the
112 * high xinobits, so we use high xinobits to partition the
113 * overlay st_ino address space. The high bits holds the fsid
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200114 * (upper fsid is 0). The lowest xinobit is reserved for mapping
Bhaskar Chowdhuryf48bbfb2021-03-13 09:00:23 +0530115 * the non-persistent inode numbers range in case of overflow.
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200116 * This way all overlay inode numbers are unique and use the
117 * overlay st_dev.
Amir Goldsteine487d882017-11-07 13:55:04 +0200118 */
Amir Goldstein926e94d2020-02-21 16:34:45 +0200119 if (likely(!(stat->ino >> xinoshift))) {
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200120 stat->ino |= ((u64)fsid) << (xinoshift + 1);
Amir Goldsteine487d882017-11-07 13:55:04 +0200121 stat->dev = dentry->d_sb->s_dev;
youngjunc68e7ec2021-02-22 08:59:21 -0800122 return;
Amir Goldstein926e94d2020-02-21 16:34:45 +0200123 } else if (ovl_xino_warn(dentry->d_sb)) {
124 pr_warn_ratelimited("inode number too big (%pd2, ino=%llu, xinobits=%d)\n",
125 dentry, stat->ino, xinobits);
Amir Goldsteine487d882017-11-07 13:55:04 +0200126 }
127 }
128
129 /* The inode could not be mapped to a unified st_ino address space */
130 if (S_ISDIR(dentry->d_inode->i_mode)) {
Amir Goldsteinda309e82017-11-08 19:39:51 +0200131 /*
132 * Always use the overlay st_dev for directories, so 'find
133 * -xdev' will scan the entire overlay mount and won't cross the
134 * overlay mount boundaries.
135 *
136 * If not all layers are on the same fs the pair {real st_ino;
137 * overlay st_dev} is not unique, so use the non persistent
138 * overlay st_ino for directories.
139 */
140 stat->dev = dentry->d_sb->s_dev;
141 stat->ino = dentry->d_inode->i_ino;
Amir Goldsteinb7bf9902020-01-14 22:17:25 +0200142 } else {
Amir Goldsteinda309e82017-11-08 19:39:51 +0200143 /*
144 * For non-samefs setup, if we cannot map all layers st_ino
145 * to a unified address space, we need to make sure that st_dev
Amir Goldsteinb7bf9902020-01-14 22:17:25 +0200146 * is unique per underlying fs, so we use the unique anonymous
147 * bdev assigned to the underlying fs.
Amir Goldsteinda309e82017-11-08 19:39:51 +0200148 */
Amir Goldstein07f1e592020-01-14 21:59:22 +0200149 stat->dev = OVL_FS(dentry->d_sb)->fs[fsid].pseudo_dev;
Amir Goldsteinda309e82017-11-08 19:39:51 +0200150 }
Amir Goldsteinda309e82017-11-08 19:39:51 +0200151}
152
Christian Brauner549c7292021-01-21 14:19:43 +0100153int ovl_getattr(struct user_namespace *mnt_userns, const struct path *path,
154 struct kstat *stat, u32 request_mask, unsigned int flags)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200155{
David Howellsa528d352017-01-31 16:46:22 +0000156 struct dentry *dentry = path->dentry;
Amir Goldstein72b608f2017-04-24 00:25:49 +0300157 enum ovl_path_type type;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200158 struct path realpath;
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400159 const struct cred *old_cred;
Amir Goldstein096a2182021-06-19 12:26:19 +0300160 struct inode *inode = d_inode(dentry);
161 bool is_dir = S_ISDIR(inode->i_mode);
Amir Goldstein07f1e592020-01-14 21:59:22 +0200162 int fsid = 0;
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400163 int err;
Vivek Goyal67d756c22018-05-11 11:49:30 -0400164 bool metacopy_blocks = false;
165
166 metacopy_blocks = ovl_is_metacopy_dentry(dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200167
Amir Goldstein72b608f2017-04-24 00:25:49 +0300168 type = ovl_path_real(dentry, &realpath);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400169 old_cred = ovl_override_creds(dentry->d_sb);
David Howellsa528d352017-01-31 16:46:22 +0000170 err = vfs_getattr(&realpath, stat, request_mask, flags);
Amir Goldstein72b608f2017-04-24 00:25:49 +0300171 if (err)
172 goto out;
173
Amir Goldstein096a2182021-06-19 12:26:19 +0300174 /* Report the effective immutable/append-only STATX flags */
175 generic_fill_statx_attr(inode, stat);
176
Amir Goldstein72b608f2017-04-24 00:25:49 +0300177 /*
Amir Goldsteinda309e82017-11-08 19:39:51 +0200178 * For non-dir or same fs, we use st_ino of the copy up origin.
179 * This guaranties constant st_dev/st_ino across copy up.
Amir Goldsteine487d882017-11-07 13:55:04 +0200180 * With xino feature and non-samefs, we use st_ino of the copy up
181 * origin masked with high bits that represent the layer id.
Amir Goldstein72b608f2017-04-24 00:25:49 +0300182 *
Amir Goldsteinda309e82017-11-08 19:39:51 +0200183 * If lower filesystem supports NFS file handles, this also guaranties
Amir Goldstein72b608f2017-04-24 00:25:49 +0300184 * persistent st_ino across mount cycle.
185 */
Amir Goldstein0f831ec2019-11-16 18:14:41 +0200186 if (!is_dir || ovl_same_dev(dentry->d_sb)) {
Amir Goldsteinda309e82017-11-08 19:39:51 +0200187 if (!OVL_TYPE_UPPER(type)) {
Amir Goldstein07f1e592020-01-14 21:59:22 +0200188 fsid = ovl_layer_lower(dentry)->fsid;
Amir Goldsteinda309e82017-11-08 19:39:51 +0200189 } else if (OVL_TYPE_ORIGIN(type)) {
Amir Goldstein72b608f2017-04-24 00:25:49 +0300190 struct kstat lowerstat;
Vivek Goyal67d756c22018-05-11 11:49:30 -0400191 u32 lowermask = STATX_INO | STATX_BLOCKS |
192 (!is_dir ? STATX_NLINK : 0);
Amir Goldstein72b608f2017-04-24 00:25:49 +0300193
194 ovl_path_lower(dentry, &realpath);
195 err = vfs_getattr(&realpath, &lowerstat,
Miklos Szeredi5b712092017-05-05 11:38:58 +0200196 lowermask, flags);
Amir Goldstein72b608f2017-04-24 00:25:49 +0300197 if (err)
198 goto out;
199
Amir Goldstein72b608f2017-04-24 00:25:49 +0300200 /*
Amir Goldstein359f3922017-06-21 15:28:41 +0300201 * Lower hardlinks may be broken on copy up to different
Amir Goldstein72b608f2017-04-24 00:25:49 +0300202 * upper files, so we cannot use the lower origin st_ino
203 * for those different files, even for the same fs case.
Amir Goldstein86eaa132017-11-21 13:55:51 +0200204 *
205 * Similarly, several redirected dirs can point to the
206 * same dir on a lower layer. With the "verify_lower"
207 * feature, we do not use the lower origin st_ino, if
208 * we haven't verified that this redirect is unique.
209 *
Amir Goldstein359f3922017-06-21 15:28:41 +0300210 * With inodes index enabled, it is safe to use st_ino
Amir Goldstein86eaa132017-11-21 13:55:51 +0200211 * of an indexed origin. The index validates that the
212 * upper hardlink is not broken and that a redirected
213 * dir is the only redirect to that origin.
Amir Goldstein72b608f2017-04-24 00:25:49 +0300214 */
Amir Goldstein86eaa132017-11-21 13:55:51 +0200215 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) ||
216 (!ovl_verify_lower(dentry->d_sb) &&
Amir Goldstein9f99e502018-04-11 20:09:29 +0300217 (is_dir || lowerstat.nlink == 1))) {
Amir Goldstein07f1e592020-01-14 21:59:22 +0200218 fsid = ovl_layer_lower(dentry)->fsid;
Amir Goldsteinb7bf9902020-01-14 22:17:25 +0200219 stat->ino = lowerstat.ino;
Amir Goldstein9f99e502018-04-11 20:09:29 +0300220 }
Vivek Goyal67d756c22018-05-11 11:49:30 -0400221
222 /*
223 * If we are querying a metacopy dentry and lower
224 * dentry is data dentry, then use the blocks we
225 * queried just now. We don't have to do additional
226 * vfs_getattr(). If lower itself is metacopy, then
227 * additional vfs_getattr() is unavoidable.
228 */
229 if (metacopy_blocks &&
230 realpath.dentry == ovl_dentry_lowerdata(dentry)) {
231 stat->blocks = lowerstat.blocks;
232 metacopy_blocks = false;
233 }
234 }
235
236 if (metacopy_blocks) {
237 /*
238 * If lower is not same as lowerdata or if there was
239 * no origin on upper, we can end up here.
240 */
241 struct kstat lowerdatastat;
242 u32 lowermask = STATX_BLOCKS;
243
244 ovl_path_lowerdata(dentry, &realpath);
245 err = vfs_getattr(&realpath, &lowerdatastat,
246 lowermask, flags);
247 if (err)
248 goto out;
249 stat->blocks = lowerdatastat.blocks;
Amir Goldstein72b608f2017-04-24 00:25:49 +0300250 }
Amir Goldstein72b608f2017-04-24 00:25:49 +0300251 }
Miklos Szeredi5b712092017-05-05 11:38:58 +0200252
youngjunc68e7ec2021-02-22 08:59:21 -0800253 ovl_map_dev_ino(dentry, stat, fsid);
Amir Goldsteinda309e82017-11-08 19:39:51 +0200254
Miklos Szeredi5b712092017-05-05 11:38:58 +0200255 /*
256 * It's probably not worth it to count subdirs to get the
257 * correct link count. nlink=1 seems to pacify 'find' and
258 * other utilities.
259 */
260 if (is_dir && OVL_TYPE_MERGE(type))
261 stat->nlink = 1;
262
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300263 /*
264 * Return the overlay inode nlinks for indexed upper inodes.
265 * Overlay inode nlink counts the union of the upper hardlinks
266 * and non-covered lower hardlinks. It does not include the upper
267 * index hardlink.
268 */
269 if (!is_dir && ovl_test_flag(OVL_INDEX, d_inode(dentry)))
270 stat->nlink = dentry->d_inode->i_nlink;
271
Amir Goldstein72b608f2017-04-24 00:25:49 +0300272out:
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400273 revert_creds(old_cred);
Amir Goldstein72b608f2017-04-24 00:25:49 +0300274
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400275 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200276}
277
Christian Brauner549c7292021-01-21 14:19:43 +0100278int ovl_permission(struct user_namespace *mnt_userns,
279 struct inode *inode, int mask)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200280{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200281 struct inode *upperinode = ovl_inode_upper(inode);
282 struct inode *realinode = upperinode ?: ovl_inode_lower(inode);
Vivek Goyalc0ca3d72016-07-01 16:34:27 -0400283 const struct cred *old_cred;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200284 int err;
285
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200286 /* Careful in RCU walk mode */
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200287 if (!realinode) {
288 WARN_ON(!(mask & MAY_NOT_BLOCK));
Miklos Szeredia999d7e2016-07-29 12:05:23 +0200289 return -ECHILD;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200290 }
291
Vivek Goyalc0ca3d72016-07-01 16:34:27 -0400292 /*
293 * Check overlay inode with the creds of task and underlying inode
294 * with creds of mounter
295 */
Christian Brauner47291ba2021-01-21 14:19:24 +0100296 err = generic_permission(&init_user_ns, inode, mask);
Vivek Goyalc0ca3d72016-07-01 16:34:27 -0400297 if (err)
298 return err;
299
Miklos Szerediec7ba112018-12-04 11:31:30 +0100300 old_cred = ovl_override_creds(inode->i_sb);
301 if (!upperinode &&
302 !special_file(realinode->i_mode) && mask & MAY_WRITE) {
Vivek Goyal754f8cb2016-07-01 16:34:29 -0400303 mask &= ~(MAY_WRITE | MAY_APPEND);
Miklos Szerediec7ba112018-12-04 11:31:30 +0100304 /* Make sure mounter can read file for copy up later */
Vivek Goyal500cac32016-07-13 11:00:14 -0400305 mask |= MAY_READ;
306 }
Christian Brauner47291ba2021-01-21 14:19:24 +0100307 err = inode_permission(&init_user_ns, realinode, mask);
Vivek Goyalc0ca3d72016-07-01 16:34:27 -0400308 revert_creds(old_cred);
309
310 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200311}
312
Al Viro6b255392015-11-17 10:20:54 -0500313static const char *ovl_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500314 struct inode *inode,
315 struct delayed_call *done)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200316{
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400317 const struct cred *old_cred;
318 const char *p;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200319
Al Viro6b255392015-11-17 10:20:54 -0500320 if (!dentry)
321 return ERR_PTR(-ECHILD);
322
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400323 old_cred = ovl_override_creds(dentry->d_sb);
Miklos Szeredi7764235b2016-10-04 14:40:45 +0200324 p = vfs_get_link(ovl_dentry_real(dentry), done);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400325 revert_creds(old_cred);
326 return p;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200327}
328
Miklos Szeredi610afc02020-09-02 10:58:49 +0200329bool ovl_is_private_xattr(struct super_block *sb, const char *name)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200330{
Miklos Szeredi2d2f2d72020-12-14 15:26:14 +0100331 struct ovl_fs *ofs = sb->s_fs_info;
332
333 if (ofs->config.userxattr)
334 return strncmp(name, OVL_XATTR_USER_PREFIX,
335 sizeof(OVL_XATTR_USER_PREFIX) - 1) == 0;
336 else
337 return strncmp(name, OVL_XATTR_TRUSTED_PREFIX,
338 sizeof(OVL_XATTR_TRUSTED_PREFIX) - 1) == 0;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200339}
340
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200341int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
342 const void *value, size_t size, int flags)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200343{
344 int err;
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200345 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
346 struct dentry *realdentry = upperdentry ?: ovl_dentry_lower(dentry);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400347 const struct cred *old_cred;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200348
349 err = ovl_want_write(dentry);
350 if (err)
351 goto out;
352
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200353 if (!value && !upperdentry) {
Miklos Szeredi554677b2021-01-28 10:22:48 +0100354 old_cred = ovl_override_creds(dentry->d_sb);
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +0100355 err = vfs_getxattr(&init_user_ns, realdentry, name, NULL, 0);
Miklos Szeredi554677b2021-01-28 10:22:48 +0100356 revert_creds(old_cred);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200357 if (err < 0)
358 goto out_drop_write;
359 }
360
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200361 if (!upperdentry) {
362 err = ovl_copy_up(dentry);
363 if (err)
364 goto out_drop_write;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200365
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200366 realdentry = ovl_dentry_upper(dentry);
367 }
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200368
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400369 old_cred = ovl_override_creds(dentry->d_sb);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200370 if (value)
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +0100371 err = vfs_setxattr(&init_user_ns, realdentry, name, value, size,
372 flags);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200373 else {
374 WARN_ON(flags != XATTR_REPLACE);
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +0100375 err = vfs_removexattr(&init_user_ns, realdentry, name);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200376 }
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400377 revert_creds(old_cred);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200378
Miklos Szeredid9854c82018-07-18 15:44:40 +0200379 /* copy c/mtime */
380 ovl_copyattr(d_inode(realdentry), inode);
381
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200382out_drop_write:
383 ovl_drop_write(dentry);
384out:
385 return err;
386}
387
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200388int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name,
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200389 void *value, size_t size)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200390{
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400391 ssize_t res;
392 const struct cred *old_cred;
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200393 struct dentry *realdentry =
394 ovl_i_dentry_upper(inode) ?: ovl_dentry_lower(dentry);
Miklos Szeredi52148462014-11-20 16:40:00 +0100395
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400396 old_cred = ovl_override_creds(dentry->d_sb);
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +0100397 res = vfs_getxattr(&init_user_ns, realdentry, name, value, size);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400398 revert_creds(old_cred);
399 return res;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200400}
401
Miklos Szeredi610afc02020-09-02 10:58:49 +0200402static bool ovl_can_list(struct super_block *sb, const char *s)
Miklos Szeredia082c6f2017-05-29 15:15:27 +0200403{
Miklos Szeredi8f6ee742020-09-02 10:58:49 +0200404 /* Never list private (.overlay) */
405 if (ovl_is_private_xattr(sb, s))
406 return false;
407
Bhaskar Chowdhuryf48bbfb2021-03-13 09:00:23 +0530408 /* List all non-trusted xattrs */
Miklos Szeredia082c6f2017-05-29 15:15:27 +0200409 if (strncmp(s, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) != 0)
410 return true;
411
Miklos Szeredi8f6ee742020-09-02 10:58:49 +0200412 /* list other trusted for superuser only */
413 return ns_capable_noaudit(&init_user_ns, CAP_SYS_ADMIN);
Miklos Szeredia082c6f2017-05-29 15:15:27 +0200414}
415
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200416ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size)
417{
Miklos Szeredib5817552016-06-06 16:21:37 +0200418 struct dentry *realdentry = ovl_dentry_real(dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200419 ssize_t res;
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200420 size_t len;
421 char *s;
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400422 const struct cred *old_cred;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200423
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400424 old_cred = ovl_override_creds(dentry->d_sb);
Miklos Szeredib5817552016-06-06 16:21:37 +0200425 res = vfs_listxattr(realdentry, list, size);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400426 revert_creds(old_cred);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200427 if (res <= 0 || size == 0)
428 return res;
429
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200430 /* filter out private xattrs */
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200431 for (s = list, len = res; len;) {
432 size_t slen = strnlen(s, len) + 1;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200433
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200434 /* underlying fs providing us with an broken xattr list? */
435 if (WARN_ON(slen > len))
436 return -EIO;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200437
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200438 len -= slen;
Miklos Szeredi610afc02020-09-02 10:58:49 +0200439 if (!ovl_can_list(dentry->d_sb, s)) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200440 res -= slen;
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200441 memmove(s, s + slen, len);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200442 } else {
Miklos Szeredi7cb35112016-09-01 11:12:00 +0200443 s += slen;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200444 }
445 }
446
447 return res;
448}
449
Miklos Szeredi0cad6242021-08-18 22:08:24 +0200450struct posix_acl *ovl_get_acl(struct inode *inode, int type, bool rcu)
Vivek Goyal39a25b22016-07-01 16:34:26 -0400451{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200452 struct inode *realinode = ovl_inode_real(inode);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400453 const struct cred *old_cred;
454 struct posix_acl *acl;
Vivek Goyal39a25b22016-07-01 16:34:26 -0400455
Miklos Szeredi5201dc42016-09-01 11:11:59 +0200456 if (!IS_ENABLED(CONFIG_FS_POSIX_ACL) || !IS_POSIXACL(realinode))
Vivek Goyal39a25b22016-07-01 16:34:26 -0400457 return NULL;
458
Miklos Szeredi332f6062021-08-18 22:08:24 +0200459 if (rcu)
460 return get_cached_acl_rcu(realinode, type);
461
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400462 old_cred = ovl_override_creds(inode->i_sb);
Miklos Szeredi5201dc42016-09-01 11:11:59 +0200463 acl = get_acl(realinode, type);
Vivek Goyal1175b6b2016-07-01 16:34:28 -0400464 revert_creds(old_cred);
465
466 return acl;
Vivek Goyal39a25b22016-07-01 16:34:26 -0400467}
468
Deepa Dinamani95582b02018-05-08 19:36:02 -0700469int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags)
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200470{
Miklos Szeredi8f35cf52018-04-12 12:04:50 +0200471 if (flags & S_ATIME) {
472 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
473 struct path upperpath = {
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200474 .mnt = ovl_upper_mnt(ofs),
Miklos Szeredi8f35cf52018-04-12 12:04:50 +0200475 .dentry = ovl_upperdentry_dereference(OVL_I(inode)),
476 };
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200477
Miklos Szeredi8f35cf52018-04-12 12:04:50 +0200478 if (upperpath.dentry) {
479 touch_atime(&upperpath);
480 inode->i_atime = d_inode(upperpath.dentry)->i_atime;
481 }
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200482 }
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200483 return 0;
484}
485
Miklos Szeredi9e142c42018-07-18 15:44:42 +0200486static int ovl_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
487 u64 start, u64 len)
488{
489 int err;
Chengguang Xuc11faf32020-06-24 18:20:11 +0800490 struct inode *realinode = ovl_inode_realdata(inode);
Miklos Szeredi9e142c42018-07-18 15:44:42 +0200491 const struct cred *old_cred;
492
493 if (!realinode->i_op->fiemap)
494 return -EOPNOTSUPP;
495
496 old_cred = ovl_override_creds(inode->i_sb);
497 err = realinode->i_op->fiemap(realinode, fieinfo, start, len);
498 revert_creds(old_cred);
499
500 return err;
501}
502
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200503/*
504 * Work around the fact that security_file_ioctl() takes a file argument.
505 * Introducing security_inode_fileattr_get/set() hooks would solve this issue
506 * properly.
507 */
Amir Goldstein72db8212021-06-19 12:26:18 +0300508static int ovl_security_fileattr(struct path *realpath, struct fileattr *fa,
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200509 bool set)
510{
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200511 struct file *file;
512 unsigned int cmd;
513 int err;
514
Amir Goldstein72db8212021-06-19 12:26:18 +0300515 file = dentry_open(realpath, O_RDONLY, current_cred());
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200516 if (IS_ERR(file))
517 return PTR_ERR(file);
518
519 if (set)
520 cmd = fa->fsx_valid ? FS_IOC_FSSETXATTR : FS_IOC_SETFLAGS;
521 else
522 cmd = fa->fsx_valid ? FS_IOC_FSGETXATTR : FS_IOC_GETFLAGS;
523
524 err = security_file_ioctl(file, cmd, 0);
525 fput(file);
526
527 return err;
528}
529
Amir Goldstein72db8212021-06-19 12:26:18 +0300530int ovl_real_fileattr_set(struct path *realpath, struct fileattr *fa)
531{
532 int err;
533
534 err = ovl_security_fileattr(realpath, fa, true);
535 if (err)
536 return err;
537
538 return vfs_fileattr_set(&init_user_ns, realpath->dentry, fa);
539}
540
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200541int ovl_fileattr_set(struct user_namespace *mnt_userns,
542 struct dentry *dentry, struct fileattr *fa)
543{
544 struct inode *inode = d_inode(dentry);
Amir Goldstein72db8212021-06-19 12:26:18 +0300545 struct path upperpath;
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200546 const struct cred *old_cred;
Amir Goldstein096a2182021-06-19 12:26:19 +0300547 unsigned int flags;
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200548 int err;
549
550 err = ovl_want_write(dentry);
551 if (err)
552 goto out;
553
554 err = ovl_copy_up(dentry);
555 if (!err) {
Amir Goldstein72db8212021-06-19 12:26:18 +0300556 ovl_path_real(dentry, &upperpath);
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200557
558 old_cred = ovl_override_creds(inode->i_sb);
Amir Goldstein096a2182021-06-19 12:26:19 +0300559 /*
560 * Store immutable/append-only flags in xattr and clear them
561 * in upper fileattr (in case they were set by older kernel)
562 * so children of "ovl-immutable" directories lower aliases of
563 * "ovl-immutable" hardlinks could be copied up.
564 * Clear xattr when flags are cleared.
565 */
566 err = ovl_set_protattr(inode, upperpath.dentry, fa);
567 if (!err)
568 err = ovl_real_fileattr_set(&upperpath, fa);
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200569 revert_creds(old_cred);
Amir Goldstein096a2182021-06-19 12:26:19 +0300570
571 /*
572 * Merge real inode flags with inode flags read from
573 * overlay.protattr xattr
574 */
575 flags = ovl_inode_real(inode)->i_flags & OVL_COPY_I_FLAGS_MASK;
576
577 BUILD_BUG_ON(OVL_PROT_I_FLAGS_MASK & ~OVL_COPY_I_FLAGS_MASK);
578 flags |= inode->i_flags & OVL_PROT_I_FLAGS_MASK;
579 inode_set_flags(inode, flags, OVL_COPY_I_FLAGS_MASK);
Chengguang Xud8991e82021-03-10 10:09:25 +0800580
581 /* Update ctime */
582 ovl_copyattr(ovl_inode_real(inode), inode);
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200583 }
584 ovl_drop_write(dentry);
585out:
586 return err;
587}
588
Amir Goldstein096a2182021-06-19 12:26:19 +0300589/* Convert inode protection flags to fileattr flags */
590static void ovl_fileattr_prot_flags(struct inode *inode, struct fileattr *fa)
591{
592 BUILD_BUG_ON(OVL_PROT_FS_FLAGS_MASK & ~FS_COMMON_FL);
593 BUILD_BUG_ON(OVL_PROT_FSX_FLAGS_MASK & ~FS_XFLAG_COMMON);
594
595 if (inode->i_flags & S_APPEND) {
596 fa->flags |= FS_APPEND_FL;
597 fa->fsx_xflags |= FS_XFLAG_APPEND;
598 }
599 if (inode->i_flags & S_IMMUTABLE) {
600 fa->flags |= FS_IMMUTABLE_FL;
601 fa->fsx_xflags |= FS_XFLAG_IMMUTABLE;
602 }
603}
604
Amir Goldstein72db8212021-06-19 12:26:18 +0300605int ovl_real_fileattr_get(struct path *realpath, struct fileattr *fa)
606{
607 int err;
608
609 err = ovl_security_fileattr(realpath, fa, false);
610 if (err)
611 return err;
612
Miklos Szeredi5b0a4142021-11-04 14:04:52 +0100613 err = vfs_fileattr_get(realpath->dentry, fa);
614 if (err == -ENOIOCTLCMD)
615 err = -ENOTTY;
616 return err;
Amir Goldstein72db8212021-06-19 12:26:18 +0300617}
618
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200619int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa)
620{
621 struct inode *inode = d_inode(dentry);
Amir Goldstein72db8212021-06-19 12:26:18 +0300622 struct path realpath;
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200623 const struct cred *old_cred;
624 int err;
625
Amir Goldstein72db8212021-06-19 12:26:18 +0300626 ovl_path_real(dentry, &realpath);
627
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200628 old_cred = ovl_override_creds(inode->i_sb);
Amir Goldstein72db8212021-06-19 12:26:18 +0300629 err = ovl_real_fileattr_get(&realpath, fa);
Amir Goldstein096a2182021-06-19 12:26:19 +0300630 ovl_fileattr_prot_flags(inode, fa);
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200631 revert_creds(old_cred);
632
633 return err;
634}
635
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200636static const struct inode_operations ovl_file_inode_operations = {
637 .setattr = ovl_setattr,
638 .permission = ovl_permission,
639 .getattr = ovl_getattr,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200640 .listxattr = ovl_listxattr,
Vivek Goyal39a25b22016-07-01 16:34:26 -0400641 .get_acl = ovl_get_acl,
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200642 .update_time = ovl_update_time,
Miklos Szeredi9e142c42018-07-18 15:44:42 +0200643 .fiemap = ovl_fiemap,
Miklos Szeredi66dbfab2021-04-07 14:36:43 +0200644 .fileattr_get = ovl_fileattr_get,
645 .fileattr_set = ovl_fileattr_set,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200646};
647
648static const struct inode_operations ovl_symlink_inode_operations = {
649 .setattr = ovl_setattr,
Al Viro6b255392015-11-17 10:20:54 -0500650 .get_link = ovl_get_link,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200651 .getattr = ovl_getattr,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200652 .listxattr = ovl_listxattr,
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200653 .update_time = ovl_update_time,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200654};
655
Miklos Szeredi9e142c42018-07-18 15:44:42 +0200656static const struct inode_operations ovl_special_inode_operations = {
657 .setattr = ovl_setattr,
658 .permission = ovl_permission,
659 .getattr = ovl_getattr,
660 .listxattr = ovl_listxattr,
661 .get_acl = ovl_get_acl,
662 .update_time = ovl_update_time,
663};
664
Wei Yongjun69383c52018-09-25 14:57:42 +0000665static const struct address_space_operations ovl_aops = {
Amir Goldstein5b910bd2018-08-27 15:56:00 +0300666 /* For O_DIRECT dentry_open() checks f_mapping->a_ops->direct_IO */
667 .direct_IO = noop_direct_IO,
668};
669
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200670/*
671 * It is possible to stack overlayfs instance on top of another
Chengguang Xua5a84682020-02-10 11:11:14 +0800672 * overlayfs instance as lower layer. We need to annotate the
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200673 * stackable i_mutex locks according to stack level of the super
674 * block instance. An overlayfs instance can never be in stack
675 * depth 0 (there is always a real fs below it). An overlayfs
Bhaskar Chowdhuryf48bbfb2021-03-13 09:00:23 +0530676 * inode lock will use the lockdep annotation ovl_i_mutex_key[depth].
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200677 *
678 * For example, here is a snip from /proc/lockdep_chains after
679 * dir_iterate of nested overlayfs:
680 *
681 * [...] &ovl_i_mutex_dir_key[depth] (stack_depth=2)
682 * [...] &ovl_i_mutex_dir_key[depth]#2 (stack_depth=1)
683 * [...] &type->i_mutex_dir_key (stack_depth=0)
Amir Goldsteinb1f9d382019-12-21 11:42:29 +0200684 *
685 * Locking order w.r.t ovl_want_write() is important for nested overlayfs.
686 *
687 * This chain is valid:
688 * - inode->i_rwsem (inode_lock[2])
689 * - upper_mnt->mnt_sb->s_writers (ovl_want_write[0])
690 * - OVL_I(inode)->lock (ovl_inode_lock[2])
691 * - OVL_I(lowerinode)->lock (ovl_inode_lock[1])
692 *
693 * And this chain is valid:
694 * - inode->i_rwsem (inode_lock[2])
695 * - OVL_I(inode)->lock (ovl_inode_lock[2])
696 * - lowerinode->i_rwsem (inode_lock[1])
697 * - OVL_I(lowerinode)->lock (ovl_inode_lock[1])
698 *
699 * But lowerinode->i_rwsem SHOULD NOT be acquired while ovl_want_write() is
700 * held, because it is in reverse order of the non-nested case using the same
701 * upper fs:
702 * - inode->i_rwsem (inode_lock[1])
703 * - upper_mnt->mnt_sb->s_writers (ovl_want_write[0])
704 * - OVL_I(inode)->lock (ovl_inode_lock[1])
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200705 */
706#define OVL_MAX_NESTING FILESYSTEM_MAX_STACK_DEPTH
707
708static inline void ovl_lockdep_annotate_inode_mutex_key(struct inode *inode)
709{
710#ifdef CONFIG_LOCKDEP
711 static struct lock_class_key ovl_i_mutex_key[OVL_MAX_NESTING];
712 static struct lock_class_key ovl_i_mutex_dir_key[OVL_MAX_NESTING];
Amir Goldstein4eae06d2017-10-27 15:44:08 +0300713 static struct lock_class_key ovl_i_lock_key[OVL_MAX_NESTING];
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200714
715 int depth = inode->i_sb->s_stack_depth - 1;
716
717 if (WARN_ON_ONCE(depth < 0 || depth >= OVL_MAX_NESTING))
718 depth = 0;
719
720 if (S_ISDIR(inode->i_mode))
721 lockdep_set_class(&inode->i_rwsem, &ovl_i_mutex_dir_key[depth]);
722 else
723 lockdep_set_class(&inode->i_rwsem, &ovl_i_mutex_key[depth]);
Amir Goldstein4eae06d2017-10-27 15:44:08 +0300724
725 lockdep_set_class(&OVL_I(inode)->lock, &ovl_i_lock_key[depth]);
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200726#endif
727}
728
Amir Goldstein4d314f72020-02-21 16:34:43 +0200729static void ovl_next_ino(struct inode *inode)
730{
731 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
732
733 inode->i_ino = atomic_long_inc_return(&ofs->last_ino);
734 if (unlikely(!inode->i_ino))
735 inode->i_ino = atomic_long_inc_return(&ofs->last_ino);
736}
737
Amir Goldstein62c832e2019-11-19 15:31:46 +0200738static void ovl_map_ino(struct inode *inode, unsigned long ino, int fsid)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200739{
Amir Goldstein12574a92018-03-16 10:39:37 +0200740 int xinobits = ovl_xino_bits(inode->i_sb);
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200741 unsigned int xinoshift = 64 - xinobits;
Amir Goldstein12574a92018-03-16 10:39:37 +0200742
Amir Goldstein695b46e2018-03-15 23:39:01 +0200743 /*
Amir Goldstein6dde1e42019-06-09 19:03:44 +0300744 * When d_ino is consistent with st_ino (samefs or i_ino has enough
745 * bits to encode layer), set the same value used for st_ino to i_ino,
746 * so inode number exposed via /proc/locks and a like will be
747 * consistent with d_ino and st_ino values. An i_ino value inconsistent
Amir Goldstein735c9072019-11-19 17:14:55 +0200748 * with d_ino also causes nfsd readdirplus to fail.
Amir Goldstein695b46e2018-03-15 23:39:01 +0200749 */
Amir Goldstein4d314f72020-02-21 16:34:43 +0200750 inode->i_ino = ino;
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200751 if (ovl_same_fs(inode->i_sb)) {
752 return;
753 } else if (xinobits && likely(!(ino >> xinoshift))) {
754 inode->i_ino |= (unsigned long)fsid << (xinoshift + 1);
755 return;
756 }
757
758 /*
759 * For directory inodes on non-samefs with xino disabled or xino
760 * overflow, we allocate a non-persistent inode number, to be used for
761 * resolving st_ino collisions in ovl_map_dev_ino().
762 *
763 * To avoid ino collision with legitimate xino values from upper
764 * layer (fsid 0), use the lowest xinobit to map the non
765 * persistent inode numbers to the unified st_ino address space.
766 */
767 if (S_ISDIR(inode->i_mode)) {
Amir Goldstein4d314f72020-02-21 16:34:43 +0200768 ovl_next_ino(inode);
Amir Goldsteindfe51d42020-02-21 16:34:44 +0200769 if (xinobits) {
770 inode->i_ino &= ~0UL >> xinobits;
771 inode->i_ino |= 1UL << xinoshift;
772 }
Amir Goldstein12574a92018-03-16 10:39:37 +0200773 }
Amir Goldstein62c832e2019-11-19 15:31:46 +0200774}
775
776void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip,
777 unsigned long ino, int fsid)
778{
779 struct inode *realinode;
780
781 if (oip->upperdentry)
782 OVL_I(inode)->__upperdentry = oip->upperdentry;
783 if (oip->lowerpath && oip->lowerpath->dentry)
784 OVL_I(inode)->lower = igrab(d_inode(oip->lowerpath->dentry));
785 if (oip->lowerdata)
786 OVL_I(inode)->lowerdata = igrab(d_inode(oip->lowerdata));
787
788 realinode = ovl_inode_real(inode);
789 ovl_copyattr(realinode, inode);
790 ovl_copyflags(realinode, inode);
791 ovl_map_ino(inode, ino, fsid);
792}
793
794static void ovl_fill_inode(struct inode *inode, umode_t mode, dev_t rdev)
795{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200796 inode->i_mode = mode;
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200797 inode->i_flags |= S_NOCMTIME;
Miklos Szeredi2a3a2a32016-09-01 11:11:59 +0200798#ifdef CONFIG_FS_POSIX_ACL
799 inode->i_acl = inode->i_default_acl = ACL_DONT_CACHE;
800#endif
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200801
Amir Goldsteinb1eaa952017-01-11 12:07:46 +0200802 ovl_lockdep_annotate_inode_mutex_key(inode);
803
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100804 switch (mode & S_IFMT) {
805 case S_IFREG:
806 inode->i_op = &ovl_file_inode_operations;
Miklos Szeredid1d04ef2018-07-18 15:44:41 +0200807 inode->i_fop = &ovl_file_operations;
Amir Goldstein5b910bd2018-08-27 15:56:00 +0300808 inode->i_mapping->a_ops = &ovl_aops;
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100809 break;
810
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200811 case S_IFDIR:
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200812 inode->i_op = &ovl_dir_inode_operations;
813 inode->i_fop = &ovl_dir_operations;
814 break;
815
816 case S_IFLNK:
817 inode->i_op = &ovl_symlink_inode_operations;
818 break;
819
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200820 default:
Miklos Szeredi9e142c42018-07-18 15:44:42 +0200821 inode->i_op = &ovl_special_inode_operations;
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100822 init_special_inode(inode, mode, rdev);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200823 break;
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200824 }
825}
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200826
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300827/*
828 * With inodes index enabled, an overlay inode nlink counts the union of upper
829 * hardlinks and non-covered lower hardlinks. During the lifetime of a non-pure
830 * upper inode, the following nlink modifying operations can happen:
831 *
832 * 1. Lower hardlink copy up
833 * 2. Upper hardlink created, unlinked or renamed over
834 * 3. Lower hardlink whiteout or renamed over
835 *
836 * For the first, copy up case, the union nlink does not change, whether the
837 * operation succeeds or fails, but the upper inode nlink may change.
838 * Therefore, before copy up, we store the union nlink value relative to the
Miklos Szeredi2d2f2d72020-12-14 15:26:14 +0100839 * lower inode nlink in the index inode xattr .overlay.nlink.
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300840 *
841 * For the second, upper hardlink case, the union nlink should be incremented
842 * or decremented IFF the operation succeeds, aligned with nlink change of the
843 * upper inode. Therefore, before link/unlink/rename, we store the union nlink
844 * value relative to the upper inode nlink in the index inode.
845 *
846 * For the last, lower cover up case, we simplify things by preceding the
847 * whiteout or cover up with copy up. This makes sure that there is an index
848 * upper inode where the nlink xattr can be stored before the copied up upper
849 * entry is unlink.
850 */
851#define OVL_NLINK_ADD_UPPER (1 << 0)
852
853/*
854 * On-disk format for indexed nlink:
855 *
856 * nlink relative to the upper inode - "U[+-]NUM"
857 * nlink relative to the lower inode - "L[+-]NUM"
858 */
859
860static int ovl_set_nlink_common(struct dentry *dentry,
861 struct dentry *realdentry, const char *format)
862{
863 struct inode *inode = d_inode(dentry);
864 struct inode *realinode = d_inode(realdentry);
865 char buf[13];
866 int len;
867
868 len = snprintf(buf, sizeof(buf), format,
869 (int) (inode->i_nlink - realinode->i_nlink));
870
Miklos Szeredi67873412017-07-27 21:54:05 +0200871 if (WARN_ON(len >= sizeof(buf)))
872 return -EIO;
873
Miklos Szeredi610afc02020-09-02 10:58:49 +0200874 return ovl_do_setxattr(OVL_FS(inode->i_sb), ovl_dentry_upper(dentry),
Miklos Szeredi26150ab2020-09-02 10:58:48 +0200875 OVL_XATTR_NLINK, buf, len);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300876}
877
878int ovl_set_nlink_upper(struct dentry *dentry)
879{
880 return ovl_set_nlink_common(dentry, ovl_dentry_upper(dentry), "U%+i");
881}
882
883int ovl_set_nlink_lower(struct dentry *dentry)
884{
885 return ovl_set_nlink_common(dentry, ovl_dentry_lower(dentry), "L%+i");
886}
887
Miklos Szeredi610afc02020-09-02 10:58:49 +0200888unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry,
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300889 struct dentry *upperdentry,
890 unsigned int fallback)
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300891{
892 int nlink_diff;
893 int nlink;
894 char buf[13];
895 int err;
896
897 if (!lowerdentry || !upperdentry || d_inode(lowerdentry)->i_nlink == 1)
898 return fallback;
899
Miklos Szeredi610afc02020-09-02 10:58:49 +0200900 err = ovl_do_getxattr(ofs, upperdentry, OVL_XATTR_NLINK,
Miklos Szeredid5dc7482020-09-02 10:58:48 +0200901 &buf, sizeof(buf) - 1);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300902 if (err < 0)
903 goto fail;
904
905 buf[err] = '\0';
906 if ((buf[0] != 'L' && buf[0] != 'U') ||
907 (buf[1] != '+' && buf[1] != '-'))
908 goto fail;
909
910 err = kstrtoint(buf + 1, 10, &nlink_diff);
911 if (err < 0)
912 goto fail;
913
914 nlink = d_inode(buf[0] == 'L' ? lowerdentry : upperdentry)->i_nlink;
915 nlink += nlink_diff;
916
917 if (nlink <= 0)
918 goto fail;
919
920 return nlink;
921
922fail:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800923 pr_warn_ratelimited("failed to get index nlink (%pd2, err=%i)\n",
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300924 upperdentry, err);
925 return fallback;
926}
927
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100928struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev)
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200929{
930 struct inode *inode;
931
932 inode = new_inode(sb);
933 if (inode)
Amir Goldstein62c832e2019-11-19 15:31:46 +0200934 ovl_fill_inode(inode, mode, rdev);
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200935
936 return inode;
937}
938
939static int ovl_inode_test(struct inode *inode, void *data)
940{
Miklos Szeredi25b77132017-07-04 22:03:16 +0200941 return inode->i_private == data;
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200942}
943
944static int ovl_inode_set(struct inode *inode, void *data)
945{
Miklos Szeredi25b77132017-07-04 22:03:16 +0200946 inode->i_private = data;
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200947 return 0;
948}
949
Miklos Szeredib9ac5c272017-07-04 22:03:17 +0200950static bool ovl_verify_inode(struct inode *inode, struct dentry *lowerdentry,
Amir Goldstein4b91c302018-01-18 16:39:13 +0200951 struct dentry *upperdentry, bool strict)
Miklos Szeredib9ac5c272017-07-04 22:03:17 +0200952{
Amir Goldstein4b91c302018-01-18 16:39:13 +0200953 /*
954 * For directories, @strict verify from lookup path performs consistency
955 * checks, so NULL lower/upper in dentry must match NULL lower/upper in
956 * inode. Non @strict verify from NFS handle decode path passes NULL for
957 * 'unknown' lower/upper.
958 */
959 if (S_ISDIR(inode->i_mode) && strict) {
Amir Goldstein31747ed2018-01-14 18:35:40 +0200960 /* Real lower dir moved to upper layer under us? */
961 if (!lowerdentry && ovl_inode_lower(inode))
962 return false;
963
964 /* Lookup of an uncovered redirect origin? */
965 if (!upperdentry && ovl_inode_upper(inode))
966 return false;
967 }
968
Amir Goldstein939ae4e2017-09-11 16:30:15 +0300969 /*
970 * Allow non-NULL lower inode in ovl_inode even if lowerdentry is NULL.
971 * This happens when finding a copied up overlay inode for a renamed
972 * or hardlinked overlay dentry and lower dentry cannot be followed
973 * by origin because lower fs does not support file handles.
974 */
975 if (lowerdentry && ovl_inode_lower(inode) != d_inode(lowerdentry))
Miklos Szeredib9ac5c272017-07-04 22:03:17 +0200976 return false;
977
978 /*
979 * Allow non-NULL __upperdentry in inode even if upperdentry is NULL.
980 * This happens when finding a lower alias for a copied up hard link.
981 */
982 if (upperdentry && ovl_inode_upper(inode) != d_inode(upperdentry))
983 return false;
984
985 return true;
986}
987
Amir Goldstein4b91c302018-01-18 16:39:13 +0200988struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real,
989 bool is_upper)
Amir Goldstein9436a1a2017-12-24 18:28:04 +0200990{
Amir Goldstein4b91c302018-01-18 16:39:13 +0200991 struct inode *inode, *key = d_inode(real);
Amir Goldstein9436a1a2017-12-24 18:28:04 +0200992
993 inode = ilookup5(sb, (unsigned long) key, ovl_inode_test, key);
994 if (!inode)
995 return NULL;
996
Amir Goldstein4b91c302018-01-18 16:39:13 +0200997 if (!ovl_verify_inode(inode, is_upper ? NULL : real,
998 is_upper ? real : NULL, false)) {
Amir Goldstein9436a1a2017-12-24 18:28:04 +0200999 iput(inode);
1000 return ERR_PTR(-ESTALE);
1001 }
1002
1003 return inode;
1004}
1005
Amir Goldstein146d62e2019-04-18 17:42:08 +03001006bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir)
1007{
1008 struct inode *key = d_inode(dir);
1009 struct inode *trap;
1010 bool res;
1011
1012 trap = ilookup5(sb, (unsigned long) key, ovl_inode_test, key);
1013 if (!trap)
1014 return false;
1015
1016 res = IS_DEADDIR(trap) && !ovl_inode_upper(trap) &&
1017 !ovl_inode_lower(trap);
1018
1019 iput(trap);
1020 return res;
1021}
1022
1023/*
1024 * Create an inode cache entry for layer root dir, that will intentionally
1025 * fail ovl_verify_inode(), so any lookup that will find some layer root
1026 * will fail.
1027 */
1028struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir)
1029{
1030 struct inode *key = d_inode(dir);
1031 struct inode *trap;
1032
1033 if (!d_is_dir(dir))
1034 return ERR_PTR(-ENOTDIR);
1035
1036 trap = iget5_locked(sb, (unsigned long) key, ovl_inode_test,
1037 ovl_inode_set, key);
1038 if (!trap)
1039 return ERR_PTR(-ENOMEM);
1040
1041 if (!(trap->i_state & I_NEW)) {
1042 /* Conflicting layer roots? */
1043 iput(trap);
1044 return ERR_PTR(-ELOOP);
1045 }
1046
1047 trap->i_mode = S_IFDIR;
1048 trap->i_flags = S_DEAD;
1049 unlock_new_inode(trap);
1050
1051 return trap;
1052}
1053
Amir Goldstein764baba2018-02-04 15:35:09 +02001054/*
1055 * Does overlay inode need to be hashed by lower inode?
1056 */
1057static bool ovl_hash_bylower(struct super_block *sb, struct dentry *upper,
Miklos Szeredi74c6e382020-06-04 10:48:19 +02001058 struct dentry *lower, bool index)
Amir Goldstein764baba2018-02-04 15:35:09 +02001059{
1060 struct ovl_fs *ofs = sb->s_fs_info;
1061
1062 /* No, if pure upper */
1063 if (!lower)
1064 return false;
1065
1066 /* Yes, if already indexed */
1067 if (index)
1068 return true;
1069
1070 /* Yes, if won't be copied up */
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +02001071 if (!ovl_upper_mnt(ofs))
Amir Goldstein764baba2018-02-04 15:35:09 +02001072 return true;
1073
1074 /* No, if lower hardlink is or will be broken on copy up */
1075 if ((upper || !ovl_indexdir(sb)) &&
1076 !d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
1077 return false;
1078
1079 /* No, if non-indexed upper with NFS export */
1080 if (sb->s_export_op && upper)
1081 return false;
1082
1083 /* Otherwise, hash by lower inode for fsnotify */
1084 return true;
1085}
1086
Amir Goldstein01b39dc2018-05-11 11:15:15 +03001087static struct inode *ovl_iget5(struct super_block *sb, struct inode *newinode,
1088 struct inode *key)
1089{
1090 return newinode ? inode_insert5(newinode, (unsigned long) key,
1091 ovl_inode_test, ovl_inode_set, key) :
1092 iget5_locked(sb, (unsigned long) key,
1093 ovl_inode_test, ovl_inode_set, key);
1094}
1095
Vivek Goyalac6a52e2018-05-08 09:27:21 -04001096struct inode *ovl_get_inode(struct super_block *sb,
1097 struct ovl_inode_params *oip)
Miklos Szeredi51f7e522016-07-29 12:05:24 +02001098{
Miklos Szeredi610afc02020-09-02 10:58:49 +02001099 struct ovl_fs *ofs = OVL_FS(sb);
Vivek Goyalac6a52e2018-05-08 09:27:21 -04001100 struct dentry *upperdentry = oip->upperdentry;
1101 struct ovl_path *lowerpath = oip->lowerpath;
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001102 struct inode *realinode = upperdentry ? d_inode(upperdentry) : NULL;
Miklos Szeredi51f7e522016-07-29 12:05:24 +02001103 struct inode *inode;
Amir Goldstein12574a92018-03-16 10:39:37 +02001104 struct dentry *lowerdentry = lowerpath ? lowerpath->dentry : NULL;
Vivek Goyalac6a52e2018-05-08 09:27:21 -04001105 bool bylower = ovl_hash_bylower(sb, upperdentry, lowerdentry,
1106 oip->index);
Amir Goldstein300b1242019-11-19 15:36:14 +02001107 int fsid = bylower ? lowerpath->layer->fsid : 0;
Vivek Goyal28166ab2020-06-01 11:56:52 -04001108 bool is_dir;
Amir Goldstein695b46e2018-03-15 23:39:01 +02001109 unsigned long ino = 0;
Amir Goldsteinacf30622019-03-28 17:38:29 +02001110 int err = oip->newinode ? -EEXIST : -ENOMEM;
Amir Goldstein6eaf0112017-10-12 19:03:04 +03001111
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001112 if (!realinode)
1113 realinode = d_inode(lowerdentry);
1114
Amir Goldstein6eaf0112017-10-12 19:03:04 +03001115 /*
Amir Goldstein764baba2018-02-04 15:35:09 +02001116 * Copy up origin (lower) may exist for non-indexed upper, but we must
1117 * not use lower as hash key if this is a broken hardlink.
Amir Goldstein6eaf0112017-10-12 19:03:04 +03001118 */
Amir Goldstein31747ed2018-01-14 18:35:40 +02001119 is_dir = S_ISDIR(realinode->i_mode);
Amir Goldstein764baba2018-02-04 15:35:09 +02001120 if (upperdentry || bylower) {
1121 struct inode *key = d_inode(bylower ? lowerdentry :
1122 upperdentry);
Amir Goldstein31747ed2018-01-14 18:35:40 +02001123 unsigned int nlink = is_dir ? 1 : realinode->i_nlink;
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001124
Amir Goldstein01b39dc2018-05-11 11:15:15 +03001125 inode = ovl_iget5(sb, oip->newinode, key);
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001126 if (!inode)
Vivek Goyal027065b2018-05-11 11:49:28 -04001127 goto out_err;
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001128 if (!(inode->i_state & I_NEW)) {
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001129 /*
1130 * Verify that the underlying files stored in the inode
1131 * match those in the dentry.
1132 */
Amir Goldstein4b91c302018-01-18 16:39:13 +02001133 if (!ovl_verify_inode(inode, lowerdentry, upperdentry,
1134 true)) {
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001135 iput(inode);
Vivek Goyal027065b2018-05-11 11:49:28 -04001136 err = -ESTALE;
1137 goto out_err;
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001138 }
1139
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001140 dput(upperdentry);
Vivek Goyal9cec54c2018-05-11 11:49:27 -04001141 kfree(oip->redirect);
Miklos Szeredi09d8b582017-07-04 22:03:16 +02001142 goto out;
1143 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001144
Amir Goldstein31747ed2018-01-14 18:35:40 +02001145 /* Recalculate nlink for non-dir due to indexing */
1146 if (!is_dir)
Miklos Szeredi610afc02020-09-02 10:58:49 +02001147 nlink = ovl_get_nlink(ofs, lowerdentry, upperdentry,
1148 nlink);
Amir Goldstein5f8415d2017-06-20 15:35:14 +03001149 set_nlink(inode, nlink);
Amir Goldstein695b46e2018-03-15 23:39:01 +02001150 ino = key->i_ino;
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +02001151 } else {
Amir Goldstein764baba2018-02-04 15:35:09 +02001152 /* Lower hardlink that will be broken on copy up */
Amir Goldstein0aceb532017-12-12 23:43:16 +02001153 inode = new_inode(sb);
Vivek Goyal027065b2018-05-11 11:49:28 -04001154 if (!inode) {
1155 err = -ENOMEM;
1156 goto out_err;
1157 }
Amir Goldstein300b1242019-11-19 15:36:14 +02001158 ino = realinode->i_ino;
1159 fsid = lowerpath->layer->fsid;
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +02001160 }
Amir Goldstein62c832e2019-11-19 15:31:46 +02001161 ovl_fill_inode(inode, realinode->i_mode, realinode->i_rdev);
1162 ovl_inode_init(inode, oip, ino, fsid);
Miklos Szeredi13c72072017-07-04 22:03:16 +02001163
Miklos Szeredi610afc02020-09-02 10:58:49 +02001164 if (upperdentry && ovl_is_impuredir(sb, upperdentry))
Miklos Szeredi13c72072017-07-04 22:03:16 +02001165 ovl_set_flag(OVL_IMPURE, inode);
1166
Vivek Goyalac6a52e2018-05-08 09:27:21 -04001167 if (oip->index)
Vivek Goyal0471a9c2018-03-20 16:35:40 -04001168 ovl_set_flag(OVL_INDEX, inode);
1169
Vivek Goyal9cec54c2018-05-11 11:49:27 -04001170 OVL_I(inode)->redirect = oip->redirect;
1171
Vivek Goyala00c2d52018-05-11 11:49:32 -04001172 if (bylower)
1173 ovl_set_flag(OVL_CONST_INO, inode);
1174
Amir Goldsteinb79e05a2017-06-25 16:37:17 +03001175 /* Check for non-merge dir that may have whiteouts */
Amir Goldstein31747ed2018-01-14 18:35:40 +02001176 if (is_dir) {
Vivek Goyalac6a52e2018-05-08 09:27:21 -04001177 if (((upperdentry && lowerdentry) || oip->numlower > 1) ||
Miklos Szeredi610afc02020-09-02 10:58:49 +02001178 ovl_check_origin_xattr(ofs, upperdentry ?: lowerdentry)) {
Amir Goldsteinb79e05a2017-06-25 16:37:17 +03001179 ovl_set_flag(OVL_WHITEOUTS, inode);
1180 }
1181 }
1182
Amir Goldstein096a2182021-06-19 12:26:19 +03001183 /* Check for immutable/append-only inode flags in xattr */
1184 if (upperdentry)
1185 ovl_check_protattr(inode, upperdentry);
1186
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +02001187 if (inode->i_state & I_NEW)
1188 unlock_new_inode(inode);
1189out:
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001190 return inode;
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001191
Vivek Goyal027065b2018-05-11 11:49:28 -04001192out_err:
lijiazi1bd0a3a2019-12-16 19:12:32 +08001193 pr_warn_ratelimited("failed to get inode (%i)\n", err);
Vivek Goyal027065b2018-05-11 11:49:28 -04001194 inode = ERR_PTR(err);
Miklos Szeredib9ac5c272017-07-04 22:03:17 +02001195 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001196}