1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 *
4 * Copyright (C) 2011 Novell Inc.
5 */
6
7 #include <linux/fs.h>
8 #include <linux/slab.h>
9 #include <linux/cred.h>
10 #include <linux/xattr.h>
11 #include <linux/posix_acl.h>
12 #include <linux/ratelimit.h>
13 #include <linux/fiemap.h>
14 #include <linux/fileattr.h>
15 #include <linux/security.h>
16 #include <linux/namei.h>
17 #include "overlayfs.h"
18
19
ovl_setattr(struct user_namespace * mnt_userns,struct dentry * dentry,struct iattr * attr)20 int ovl_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
21 struct iattr *attr)
22 {
23 int err;
24 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
25 bool full_copy_up = false;
26 struct dentry *upperdentry;
27 const struct cred *old_cred;
28
29 err = setattr_prepare(&init_user_ns, dentry, attr);
30 if (err)
31 return err;
32
33 err = ovl_want_write(dentry);
34 if (err)
35 goto out;
36
37 if (attr->ia_valid & ATTR_SIZE) {
38 /* Truncate should trigger data copy up as well */
39 full_copy_up = true;
40 }
41
42 if (!full_copy_up)
43 err = ovl_copy_up(dentry);
44 else
45 err = ovl_copy_up_with_data(dentry);
46 if (!err) {
47 struct inode *winode = NULL;
48
49 upperdentry = ovl_dentry_upper(dentry);
50
51 if (attr->ia_valid & ATTR_SIZE) {
52 winode = d_inode(upperdentry);
53 err = get_write_access(winode);
54 if (err)
55 goto out_drop_write;
56 }
57
58 if (attr->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
59 attr->ia_valid &= ~ATTR_MODE;
60
61 /*
62 * We might have to translate ovl file into real file object
63 * once use cases emerge. For now, simply don't let underlying
64 * filesystem rely on attr->ia_file
65 */
66 attr->ia_valid &= ~ATTR_FILE;
67
68 /*
69 * If open(O_TRUNC) is done, VFS calls ->setattr with ATTR_OPEN
70 * set. Overlayfs does not pass O_TRUNC flag to underlying
71 * filesystem during open -> do not pass ATTR_OPEN. This
72 * disables optimization in fuse which assumes open(O_TRUNC)
73 * already set file size to 0. But we never passed O_TRUNC to
74 * fuse. So by clearing ATTR_OPEN, fuse will be forced to send
75 * setattr request to server.
76 */
77 attr->ia_valid &= ~ATTR_OPEN;
78
79 inode_lock(upperdentry->d_inode);
80 old_cred = ovl_override_creds(dentry->d_sb);
81 err = ovl_do_notify_change(ofs, upperdentry, attr);
82 ovl_revert_creds(dentry->d_sb, old_cred);
83 if (!err)
84 ovl_copyattr(dentry->d_inode);
85 inode_unlock(upperdentry->d_inode);
86
87 if (winode)
88 put_write_access(winode);
89 }
90 out_drop_write:
91 ovl_drop_write(dentry);
92 out:
93 return err;
94 }
95
ovl_map_dev_ino(struct dentry * dentry,struct kstat * stat,int fsid)96 static void ovl_map_dev_ino(struct dentry *dentry, struct kstat *stat, int fsid)
97 {
98 bool samefs = ovl_same_fs(dentry->d_sb);
99 unsigned int xinobits = ovl_xino_bits(dentry->d_sb);
100 unsigned int xinoshift = 64 - xinobits;
101
102 if (samefs) {
103 /*
104 * When all layers are on the same fs, all real inode
105 * number are unique, so we use the overlay st_dev,
106 * which is friendly to du -x.
107 */
108 stat->dev = dentry->d_sb->s_dev;
109 return;
110 } else if (xinobits) {
111 /*
112 * All inode numbers of underlying fs should not be using the
113 * high xinobits, so we use high xinobits to partition the
114 * overlay st_ino address space. The high bits holds the fsid
115 * (upper fsid is 0). The lowest xinobit is reserved for mapping
116 * the non-persistent inode numbers range in case of overflow.
117 * This way all overlay inode numbers are unique and use the
118 * overlay st_dev.
119 */
120 if (likely(!(stat->ino >> xinoshift))) {
121 stat->ino |= ((u64)fsid) << (xinoshift + 1);
122 stat->dev = dentry->d_sb->s_dev;
123 return;
124 } else if (ovl_xino_warn(dentry->d_sb)) {
125 pr_warn_ratelimited("inode number too big (%pd2, ino=%llu, xinobits=%d)\n",
126 dentry, stat->ino, xinobits);
127 }
128 }
129
130 /* The inode could not be mapped to a unified st_ino address space */
131 if (S_ISDIR(dentry->d_inode->i_mode)) {
132 /*
133 * Always use the overlay st_dev for directories, so 'find
134 * -xdev' will scan the entire overlay mount and won't cross the
135 * overlay mount boundaries.
136 *
137 * If not all layers are on the same fs the pair {real st_ino;
138 * overlay st_dev} is not unique, so use the non persistent
139 * overlay st_ino for directories.
140 */
141 stat->dev = dentry->d_sb->s_dev;
142 stat->ino = dentry->d_inode->i_ino;
143 } else {
144 /*
145 * For non-samefs setup, if we cannot map all layers st_ino
146 * to a unified address space, we need to make sure that st_dev
147 * is unique per underlying fs, so we use the unique anonymous
148 * bdev assigned to the underlying fs.
149 */
150 stat->dev = OVL_FS(dentry->d_sb)->fs[fsid].pseudo_dev;
151 }
152 }
153
ovl_getattr(struct user_namespace * mnt_userns,const struct path * path,struct kstat * stat,u32 request_mask,unsigned int flags)154 int ovl_getattr(struct user_namespace *mnt_userns, const struct path *path,
155 struct kstat *stat, u32 request_mask, unsigned int flags)
156 {
157 struct dentry *dentry = path->dentry;
158 enum ovl_path_type type;
159 struct path realpath;
160 const struct cred *old_cred;
161 struct inode *inode = d_inode(dentry);
162 bool is_dir = S_ISDIR(inode->i_mode);
163 int fsid = 0;
164 int err;
165 bool metacopy_blocks = false;
166
167 metacopy_blocks = ovl_is_metacopy_dentry(dentry);
168
169 type = ovl_path_real(dentry, &realpath);
170 old_cred = ovl_override_creds(dentry->d_sb);
171 err = vfs_getattr(&realpath, stat, request_mask, flags);
172 if (err)
173 goto out;
174
175 /* Report the effective immutable/append-only STATX flags */
176 generic_fill_statx_attr(inode, stat);
177
178 /*
179 * For non-dir or same fs, we use st_ino of the copy up origin.
180 * This guaranties constant st_dev/st_ino across copy up.
181 * With xino feature and non-samefs, we use st_ino of the copy up
182 * origin masked with high bits that represent the layer id.
183 *
184 * If lower filesystem supports NFS file handles, this also guaranties
185 * persistent st_ino across mount cycle.
186 */
187 if (!is_dir || ovl_same_dev(dentry->d_sb)) {
188 if (!OVL_TYPE_UPPER(type)) {
189 fsid = ovl_layer_lower(dentry)->fsid;
190 } else if (OVL_TYPE_ORIGIN(type)) {
191 struct kstat lowerstat;
192 u32 lowermask = STATX_INO | STATX_BLOCKS |
193 (!is_dir ? STATX_NLINK : 0);
194
195 ovl_path_lower(dentry, &realpath);
196 err = vfs_getattr(&realpath, &lowerstat,
197 lowermask, flags);
198 if (err)
199 goto out;
200
201 /*
202 * Lower hardlinks may be broken on copy up to different
203 * upper files, so we cannot use the lower origin st_ino
204 * for those different files, even for the same fs case.
205 *
206 * Similarly, several redirected dirs can point to the
207 * same dir on a lower layer. With the "verify_lower"
208 * feature, we do not use the lower origin st_ino, if
209 * we haven't verified that this redirect is unique.
210 *
211 * With inodes index enabled, it is safe to use st_ino
212 * of an indexed origin. The index validates that the
213 * upper hardlink is not broken and that a redirected
214 * dir is the only redirect to that origin.
215 */
216 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) ||
217 (!ovl_verify_lower(dentry->d_sb) &&
218 (is_dir || lowerstat.nlink == 1))) {
219 fsid = ovl_layer_lower(dentry)->fsid;
220 stat->ino = lowerstat.ino;
221 }
222
223 /*
224 * If we are querying a metacopy dentry and lower
225 * dentry is data dentry, then use the blocks we
226 * queried just now. We don't have to do additional
227 * vfs_getattr(). If lower itself is metacopy, then
228 * additional vfs_getattr() is unavoidable.
229 */
230 if (metacopy_blocks &&
231 realpath.dentry == ovl_dentry_lowerdata(dentry)) {
232 stat->blocks = lowerstat.blocks;
233 metacopy_blocks = false;
234 }
235 }
236
237 if (metacopy_blocks) {
238 /*
239 * If lower is not same as lowerdata or if there was
240 * no origin on upper, we can end up here.
241 */
242 struct kstat lowerdatastat;
243 u32 lowermask = STATX_BLOCKS;
244
245 ovl_path_lowerdata(dentry, &realpath);
246 err = vfs_getattr(&realpath, &lowerdatastat,
247 lowermask, flags);
248 if (err)
249 goto out;
250 stat->blocks = lowerdatastat.blocks;
251 }
252 }
253
254 ovl_map_dev_ino(dentry, stat, fsid);
255
256 /*
257 * It's probably not worth it to count subdirs to get the
258 * correct link count. nlink=1 seems to pacify 'find' and
259 * other utilities.
260 */
261 if (is_dir && OVL_TYPE_MERGE(type))
262 stat->nlink = 1;
263
264 /*
265 * Return the overlay inode nlinks for indexed upper inodes.
266 * Overlay inode nlink counts the union of the upper hardlinks
267 * and non-covered lower hardlinks. It does not include the upper
268 * index hardlink.
269 */
270 if (!is_dir && ovl_test_flag(OVL_INDEX, d_inode(dentry)))
271 stat->nlink = dentry->d_inode->i_nlink;
272
273 out:
274 ovl_revert_creds(dentry->d_sb, old_cred);
275
276 return err;
277 }
278
ovl_permission(struct user_namespace * mnt_userns,struct inode * inode,int mask)279 int ovl_permission(struct user_namespace *mnt_userns,
280 struct inode *inode, int mask)
281 {
282 struct inode *upperinode = ovl_inode_upper(inode);
283 struct inode *realinode;
284 struct path realpath;
285 const struct cred *old_cred;
286 int err;
287
288 /* Careful in RCU walk mode */
289 realinode = ovl_i_path_real(inode, &realpath);
290 if (!realinode) {
291 WARN_ON(!(mask & MAY_NOT_BLOCK));
292 return -ECHILD;
293 }
294
295 /*
296 * Check overlay inode with the creds of task and underlying inode
297 * with creds of mounter
298 */
299 err = generic_permission(&init_user_ns, inode, mask);
300 if (err)
301 return err;
302
303 old_cred = ovl_override_creds(inode->i_sb);
304 if (!upperinode &&
305 !special_file(realinode->i_mode) && mask & MAY_WRITE) {
306 mask &= ~(MAY_WRITE | MAY_APPEND);
307 /* Make sure mounter can read file for copy up later */
308 mask |= MAY_READ;
309 }
310 err = inode_permission(mnt_user_ns(realpath.mnt), realinode, mask);
311 ovl_revert_creds(inode->i_sb, old_cred);
312
313 return err;
314 }
315
ovl_get_link(struct dentry * dentry,struct inode * inode,struct delayed_call * done)316 static const char *ovl_get_link(struct dentry *dentry,
317 struct inode *inode,
318 struct delayed_call *done)
319 {
320 const struct cred *old_cred;
321 const char *p;
322
323 if (!dentry)
324 return ERR_PTR(-ECHILD);
325
326 old_cred = ovl_override_creds(dentry->d_sb);
327 p = vfs_get_link(ovl_dentry_real(dentry), done);
328 ovl_revert_creds(dentry->d_sb, old_cred);
329 return p;
330 }
331
ovl_is_private_xattr(struct super_block * sb,const char * name)332 bool ovl_is_private_xattr(struct super_block *sb, const char *name)
333 {
334 struct ovl_fs *ofs = sb->s_fs_info;
335
336 if (ofs->config.userxattr)
337 return strncmp(name, OVL_XATTR_USER_PREFIX,
338 sizeof(OVL_XATTR_USER_PREFIX) - 1) == 0;
339 else
340 return strncmp(name, OVL_XATTR_TRUSTED_PREFIX,
341 sizeof(OVL_XATTR_TRUSTED_PREFIX) - 1) == 0;
342 }
343
ovl_xattr_set(struct dentry * dentry,struct inode * inode,const char * name,const void * value,size_t size,int flags)344 int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
345 const void *value, size_t size, int flags)
346 {
347 int err;
348 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
349 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
350 struct dentry *realdentry = upperdentry ?: ovl_dentry_lower(dentry);
351 struct path realpath;
352 const struct cred *old_cred;
353
354 err = ovl_want_write(dentry);
355 if (err)
356 goto out;
357
358 if (!value && !upperdentry) {
359 ovl_path_lower(dentry, &realpath);
360 old_cred = ovl_override_creds(dentry->d_sb);
361 err = vfs_getxattr(mnt_user_ns(realpath.mnt), realdentry, name, NULL, 0);
362 ovl_revert_creds(dentry->d_sb, old_cred);
363 if (err < 0)
364 goto out_drop_write;
365 }
366
367 if (!upperdentry) {
368 err = ovl_copy_up(dentry);
369 if (err)
370 goto out_drop_write;
371
372 realdentry = ovl_dentry_upper(dentry);
373 }
374
375 old_cred = ovl_override_creds(dentry->d_sb);
376 if (value) {
377 err = ovl_do_setxattr(ofs, realdentry, name, value, size,
378 flags);
379 } else {
380 WARN_ON(flags != XATTR_REPLACE);
381 err = ovl_do_removexattr(ofs, realdentry, name);
382 }
383 ovl_revert_creds(dentry->d_sb, old_cred);
384
385 /* copy c/mtime */
386 ovl_copyattr(inode);
387
388 out_drop_write:
389 ovl_drop_write(dentry);
390 out:
391 return err;
392 }
393
ovl_xattr_get(struct dentry * dentry,struct inode * inode,const char * name,void * value,size_t size)394 int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name,
395 void *value, size_t size)
396 {
397 ssize_t res;
398 const struct cred *old_cred;
399 struct path realpath;
400
401 ovl_i_path_real(inode, &realpath);
402 old_cred = ovl_override_creds(dentry->d_sb);
403 res = vfs_getxattr(mnt_user_ns(realpath.mnt), realpath.dentry, name, value, size);
404 ovl_revert_creds(dentry->d_sb, old_cred);
405 return res;
406 }
407
ovl_can_list(struct super_block * sb,const char * s)408 static bool ovl_can_list(struct super_block *sb, const char *s)
409 {
410 /* Never list private (.overlay) */
411 if (ovl_is_private_xattr(sb, s))
412 return false;
413
414 /* List all non-trusted xattrs */
415 if (strncmp(s, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) != 0)
416 return true;
417
418 /* list other trusted for superuser only */
419 return ns_capable_noaudit(&init_user_ns, CAP_SYS_ADMIN);
420 }
421
ovl_listxattr(struct dentry * dentry,char * list,size_t size)422 ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size)
423 {
424 struct dentry *realdentry = ovl_dentry_real(dentry);
425 ssize_t res;
426 size_t len;
427 char *s;
428 const struct cred *old_cred;
429
430 old_cred = ovl_override_creds(dentry->d_sb);
431 res = vfs_listxattr(realdentry, list, size);
432 ovl_revert_creds(dentry->d_sb, old_cred);
433 if (res <= 0 || size == 0)
434 return res;
435
436 /* filter out private xattrs */
437 for (s = list, len = res; len;) {
438 size_t slen = strnlen(s, len) + 1;
439
440 /* underlying fs providing us with an broken xattr list? */
441 if (WARN_ON(slen > len))
442 return -EIO;
443
444 len -= slen;
445 if (!ovl_can_list(dentry->d_sb, s)) {
446 res -= slen;
447 memmove(s, s + slen, len);
448 } else {
449 s += slen;
450 }
451 }
452
453 return res;
454 }
455
456 #ifdef CONFIG_FS_POSIX_ACL
457 /*
458 * Apply the idmapping of the layer to POSIX ACLs. The caller must pass a clone
459 * of the POSIX ACLs retrieved from the lower layer to this function to not
460 * alter the POSIX ACLs for the underlying filesystem.
461 */
ovl_idmap_posix_acl(struct inode * realinode,struct user_namespace * mnt_userns,struct posix_acl * acl)462 static void ovl_idmap_posix_acl(struct inode *realinode,
463 struct user_namespace *mnt_userns,
464 struct posix_acl *acl)
465 {
466 struct user_namespace *fs_userns = i_user_ns(realinode);
467
468 for (unsigned int i = 0; i < acl->a_count; i++) {
469 vfsuid_t vfsuid;
470 vfsgid_t vfsgid;
471
472 struct posix_acl_entry *e = &acl->a_entries[i];
473 switch (e->e_tag) {
474 case ACL_USER:
475 vfsuid = make_vfsuid(mnt_userns, fs_userns, e->e_uid);
476 e->e_uid = vfsuid_into_kuid(vfsuid);
477 break;
478 case ACL_GROUP:
479 vfsgid = make_vfsgid(mnt_userns, fs_userns, e->e_gid);
480 e->e_gid = vfsgid_into_kgid(vfsgid);
481 break;
482 }
483 }
484 }
485
486 /*
487 * When the relevant layer is an idmapped mount we need to take the idmapping
488 * of the layer into account and translate any ACL_{GROUP,USER} values
489 * according to the idmapped mount.
490 *
491 * We cannot alter the ACLs returned from the relevant layer as that would
492 * alter the cached values filesystem wide for the lower filesystem. Instead we
493 * can clone the ACLs and then apply the relevant idmapping of the layer.
494 *
495 * This is obviously only relevant when idmapped layers are used.
496 */
ovl_get_acl(struct inode * inode,int type,bool rcu)497 struct posix_acl *ovl_get_acl(struct inode *inode, int type, bool rcu)
498 {
499 struct inode *realinode;
500 struct posix_acl *acl, *clone;
501 struct path realpath;
502
503 /* Careful in RCU walk mode */
504 realinode = ovl_i_path_real(inode, &realpath);
505 if (!realinode) {
506 WARN_ON(!rcu);
507 return ERR_PTR(-ECHILD);
508 }
509
510 if (!IS_POSIXACL(realinode))
511 return NULL;
512
513 if (rcu) {
514 acl = get_cached_acl_rcu(realinode, type);
515 } else {
516 const struct cred *old_cred;
517
518 old_cred = ovl_override_creds(inode->i_sb);
519 acl = get_acl(realinode, type);
520 ovl_revert_creds(inode->i_sb, old_cred);
521 }
522 /*
523 * If there are no POSIX ACLs, or we encountered an error,
524 * or the layer isn't idmapped we don't need to do anything.
525 */
526 if (!is_idmapped_mnt(realpath.mnt) || IS_ERR_OR_NULL(acl))
527 return acl;
528
529 /*
530 * We only get here if the layer is idmapped. So drop out of RCU path
531 * walk so we can clone the ACLs. There's no need to release the ACLs
532 * since get_cached_acl_rcu() doesn't take a reference on the ACLs.
533 */
534 if (rcu)
535 return ERR_PTR(-ECHILD);
536
537 clone = posix_acl_clone(acl, GFP_KERNEL);
538 if (!clone)
539 clone = ERR_PTR(-ENOMEM);
540 else
541 ovl_idmap_posix_acl(realinode, mnt_user_ns(realpath.mnt), clone);
542 /*
543 * Since we're not in RCU path walk we always need to release the
544 * original ACLs.
545 */
546 posix_acl_release(acl);
547 return clone;
548 }
549 #endif
550
ovl_update_time(struct inode * inode,struct timespec64 * ts,int flags)551 int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags)
552 {
553 if (flags & S_ATIME) {
554 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
555 struct path upperpath = {
556 .mnt = ovl_upper_mnt(ofs),
557 .dentry = ovl_upperdentry_dereference(OVL_I(inode)),
558 };
559
560 if (upperpath.dentry) {
561 touch_atime(&upperpath);
562 inode->i_atime = d_inode(upperpath.dentry)->i_atime;
563 }
564 }
565 return 0;
566 }
567
ovl_fiemap(struct inode * inode,struct fiemap_extent_info * fieinfo,u64 start,u64 len)568 static int ovl_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
569 u64 start, u64 len)
570 {
571 int err;
572 struct inode *realinode = ovl_inode_realdata(inode);
573 const struct cred *old_cred;
574
575 if (!realinode->i_op->fiemap)
576 return -EOPNOTSUPP;
577
578 old_cred = ovl_override_creds(inode->i_sb);
579 err = realinode->i_op->fiemap(realinode, fieinfo, start, len);
580 ovl_revert_creds(inode->i_sb, old_cred);
581
582 return err;
583 }
584
585 /*
586 * Work around the fact that security_file_ioctl() takes a file argument.
587 * Introducing security_inode_fileattr_get/set() hooks would solve this issue
588 * properly.
589 */
ovl_security_fileattr(const struct path * realpath,struct fileattr * fa,bool set)590 static int ovl_security_fileattr(const struct path *realpath, struct fileattr *fa,
591 bool set)
592 {
593 struct file *file;
594 unsigned int cmd;
595 int err;
596
597 file = dentry_open(realpath, O_RDONLY, current_cred());
598 if (IS_ERR(file))
599 return PTR_ERR(file);
600
601 if (set)
602 cmd = fa->fsx_valid ? FS_IOC_FSSETXATTR : FS_IOC_SETFLAGS;
603 else
604 cmd = fa->fsx_valid ? FS_IOC_FSGETXATTR : FS_IOC_GETFLAGS;
605
606 err = security_file_ioctl(file, cmd, 0);
607 fput(file);
608
609 return err;
610 }
611
ovl_real_fileattr_set(const struct path * realpath,struct fileattr * fa)612 int ovl_real_fileattr_set(const struct path *realpath, struct fileattr *fa)
613 {
614 int err;
615
616 err = ovl_security_fileattr(realpath, fa, true);
617 if (err)
618 return err;
619
620 return vfs_fileattr_set(mnt_user_ns(realpath->mnt), realpath->dentry, fa);
621 }
622
ovl_fileattr_set(struct user_namespace * mnt_userns,struct dentry * dentry,struct fileattr * fa)623 int ovl_fileattr_set(struct user_namespace *mnt_userns,
624 struct dentry *dentry, struct fileattr *fa)
625 {
626 struct inode *inode = d_inode(dentry);
627 struct path upperpath;
628 const struct cred *old_cred;
629 unsigned int flags;
630 int err;
631
632 err = ovl_want_write(dentry);
633 if (err)
634 goto out;
635
636 err = ovl_copy_up(dentry);
637 if (!err) {
638 ovl_path_real(dentry, &upperpath);
639
640 old_cred = ovl_override_creds(inode->i_sb);
641 /*
642 * Store immutable/append-only flags in xattr and clear them
643 * in upper fileattr (in case they were set by older kernel)
644 * so children of "ovl-immutable" directories lower aliases of
645 * "ovl-immutable" hardlinks could be copied up.
646 * Clear xattr when flags are cleared.
647 */
648 err = ovl_set_protattr(inode, upperpath.dentry, fa);
649 if (!err)
650 err = ovl_real_fileattr_set(&upperpath, fa);
651 ovl_revert_creds(inode->i_sb, old_cred);
652
653 /*
654 * Merge real inode flags with inode flags read from
655 * overlay.protattr xattr
656 */
657 flags = ovl_inode_real(inode)->i_flags & OVL_COPY_I_FLAGS_MASK;
658
659 BUILD_BUG_ON(OVL_PROT_I_FLAGS_MASK & ~OVL_COPY_I_FLAGS_MASK);
660 flags |= inode->i_flags & OVL_PROT_I_FLAGS_MASK;
661 inode_set_flags(inode, flags, OVL_COPY_I_FLAGS_MASK);
662
663 /* Update ctime */
664 ovl_copyattr(inode);
665 }
666 ovl_drop_write(dentry);
667 out:
668 return err;
669 }
670
671 /* Convert inode protection flags to fileattr flags */
ovl_fileattr_prot_flags(struct inode * inode,struct fileattr * fa)672 static void ovl_fileattr_prot_flags(struct inode *inode, struct fileattr *fa)
673 {
674 BUILD_BUG_ON(OVL_PROT_FS_FLAGS_MASK & ~FS_COMMON_FL);
675 BUILD_BUG_ON(OVL_PROT_FSX_FLAGS_MASK & ~FS_XFLAG_COMMON);
676
677 if (inode->i_flags & S_APPEND) {
678 fa->flags |= FS_APPEND_FL;
679 fa->fsx_xflags |= FS_XFLAG_APPEND;
680 }
681 if (inode->i_flags & S_IMMUTABLE) {
682 fa->flags |= FS_IMMUTABLE_FL;
683 fa->fsx_xflags |= FS_XFLAG_IMMUTABLE;
684 }
685 }
686
ovl_real_fileattr_get(const struct path * realpath,struct fileattr * fa)687 int ovl_real_fileattr_get(const struct path *realpath, struct fileattr *fa)
688 {
689 int err;
690
691 err = ovl_security_fileattr(realpath, fa, false);
692 if (err)
693 return err;
694
695 err = vfs_fileattr_get(realpath->dentry, fa);
696 if (err == -ENOIOCTLCMD)
697 err = -ENOTTY;
698 return err;
699 }
700
ovl_fileattr_get(struct dentry * dentry,struct fileattr * fa)701 int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa)
702 {
703 struct inode *inode = d_inode(dentry);
704 struct path realpath;
705 const struct cred *old_cred;
706 int err;
707
708 ovl_path_real(dentry, &realpath);
709
710 old_cred = ovl_override_creds(inode->i_sb);
711 err = ovl_real_fileattr_get(&realpath, fa);
712 ovl_fileattr_prot_flags(inode, fa);
713 ovl_revert_creds(inode->i_sb, old_cred);
714
715 return err;
716 }
717
718 static const struct inode_operations ovl_file_inode_operations = {
719 .setattr = ovl_setattr,
720 .permission = ovl_permission,
721 .getattr = ovl_getattr,
722 .listxattr = ovl_listxattr,
723 .get_acl = ovl_get_acl,
724 .update_time = ovl_update_time,
725 .fiemap = ovl_fiemap,
726 .fileattr_get = ovl_fileattr_get,
727 .fileattr_set = ovl_fileattr_set,
728 };
729
730 static const struct inode_operations ovl_symlink_inode_operations = {
731 .setattr = ovl_setattr,
732 .get_link = ovl_get_link,
733 .getattr = ovl_getattr,
734 .listxattr = ovl_listxattr,
735 .update_time = ovl_update_time,
736 };
737
738 static const struct inode_operations ovl_special_inode_operations = {
739 .setattr = ovl_setattr,
740 .permission = ovl_permission,
741 .getattr = ovl_getattr,
742 .listxattr = ovl_listxattr,
743 .get_acl = ovl_get_acl,
744 .update_time = ovl_update_time,
745 };
746
747 static const struct address_space_operations ovl_aops = {
748 /* For O_DIRECT dentry_open() checks f_mapping->a_ops->direct_IO */
749 .direct_IO = noop_direct_IO,
750 };
751
752 /*
753 * It is possible to stack overlayfs instance on top of another
754 * overlayfs instance as lower layer. We need to annotate the
755 * stackable i_mutex locks according to stack level of the super
756 * block instance. An overlayfs instance can never be in stack
757 * depth 0 (there is always a real fs below it). An overlayfs
758 * inode lock will use the lockdep annotation ovl_i_mutex_key[depth].
759 *
760 * For example, here is a snip from /proc/lockdep_chains after
761 * dir_iterate of nested overlayfs:
762 *
763 * [...] &ovl_i_mutex_dir_key[depth] (stack_depth=2)
764 * [...] &ovl_i_mutex_dir_key[depth]#2 (stack_depth=1)
765 * [...] &type->i_mutex_dir_key (stack_depth=0)
766 *
767 * Locking order w.r.t ovl_want_write() is important for nested overlayfs.
768 *
769 * This chain is valid:
770 * - inode->i_rwsem (inode_lock[2])
771 * - upper_mnt->mnt_sb->s_writers (ovl_want_write[0])
772 * - OVL_I(inode)->lock (ovl_inode_lock[2])
773 * - OVL_I(lowerinode)->lock (ovl_inode_lock[1])
774 *
775 * And this chain is valid:
776 * - inode->i_rwsem (inode_lock[2])
777 * - OVL_I(inode)->lock (ovl_inode_lock[2])
778 * - lowerinode->i_rwsem (inode_lock[1])
779 * - OVL_I(lowerinode)->lock (ovl_inode_lock[1])
780 *
781 * But lowerinode->i_rwsem SHOULD NOT be acquired while ovl_want_write() is
782 * held, because it is in reverse order of the non-nested case using the same
783 * upper fs:
784 * - inode->i_rwsem (inode_lock[1])
785 * - upper_mnt->mnt_sb->s_writers (ovl_want_write[0])
786 * - OVL_I(inode)->lock (ovl_inode_lock[1])
787 */
788 #define OVL_MAX_NESTING FILESYSTEM_MAX_STACK_DEPTH
789
ovl_lockdep_annotate_inode_mutex_key(struct inode * inode)790 static inline void ovl_lockdep_annotate_inode_mutex_key(struct inode *inode)
791 {
792 #ifdef CONFIG_LOCKDEP
793 static struct lock_class_key ovl_i_mutex_key[OVL_MAX_NESTING];
794 static struct lock_class_key ovl_i_mutex_dir_key[OVL_MAX_NESTING];
795 static struct lock_class_key ovl_i_lock_key[OVL_MAX_NESTING];
796
797 int depth = inode->i_sb->s_stack_depth - 1;
798
799 if (WARN_ON_ONCE(depth < 0 || depth >= OVL_MAX_NESTING))
800 depth = 0;
801
802 if (S_ISDIR(inode->i_mode))
803 lockdep_set_class(&inode->i_rwsem, &ovl_i_mutex_dir_key[depth]);
804 else
805 lockdep_set_class(&inode->i_rwsem, &ovl_i_mutex_key[depth]);
806
807 lockdep_set_class(&OVL_I(inode)->lock, &ovl_i_lock_key[depth]);
808 #endif
809 }
810
ovl_next_ino(struct inode * inode)811 static void ovl_next_ino(struct inode *inode)
812 {
813 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
814
815 inode->i_ino = atomic_long_inc_return(&ofs->last_ino);
816 if (unlikely(!inode->i_ino))
817 inode->i_ino = atomic_long_inc_return(&ofs->last_ino);
818 }
819
ovl_map_ino(struct inode * inode,unsigned long ino,int fsid)820 static void ovl_map_ino(struct inode *inode, unsigned long ino, int fsid)
821 {
822 int xinobits = ovl_xino_bits(inode->i_sb);
823 unsigned int xinoshift = 64 - xinobits;
824
825 /*
826 * When d_ino is consistent with st_ino (samefs or i_ino has enough
827 * bits to encode layer), set the same value used for st_ino to i_ino,
828 * so inode number exposed via /proc/locks and a like will be
829 * consistent with d_ino and st_ino values. An i_ino value inconsistent
830 * with d_ino also causes nfsd readdirplus to fail.
831 */
832 inode->i_ino = ino;
833 if (ovl_same_fs(inode->i_sb)) {
834 return;
835 } else if (xinobits && likely(!(ino >> xinoshift))) {
836 inode->i_ino |= (unsigned long)fsid << (xinoshift + 1);
837 return;
838 }
839
840 /*
841 * For directory inodes on non-samefs with xino disabled or xino
842 * overflow, we allocate a non-persistent inode number, to be used for
843 * resolving st_ino collisions in ovl_map_dev_ino().
844 *
845 * To avoid ino collision with legitimate xino values from upper
846 * layer (fsid 0), use the lowest xinobit to map the non
847 * persistent inode numbers to the unified st_ino address space.
848 */
849 if (S_ISDIR(inode->i_mode)) {
850 ovl_next_ino(inode);
851 if (xinobits) {
852 inode->i_ino &= ~0UL >> xinobits;
853 inode->i_ino |= 1UL << xinoshift;
854 }
855 }
856 }
857
ovl_inode_init(struct inode * inode,struct ovl_inode_params * oip,unsigned long ino,int fsid)858 void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip,
859 unsigned long ino, int fsid)
860 {
861 struct inode *realinode;
862 struct ovl_inode *oi = OVL_I(inode);
863
864 if (oip->upperdentry)
865 oi->__upperdentry = oip->upperdentry;
866 if (oip->lowerpath && oip->lowerpath->dentry) {
867 oi->lowerpath.dentry = dget(oip->lowerpath->dentry);
868 oi->lowerpath.layer = oip->lowerpath->layer;
869 }
870 if (oip->lowerdata)
871 oi->lowerdata = igrab(d_inode(oip->lowerdata));
872
873 realinode = ovl_inode_real(inode);
874 ovl_copyattr(inode);
875 ovl_copyflags(realinode, inode);
876 ovl_map_ino(inode, ino, fsid);
877 }
878
ovl_fill_inode(struct inode * inode,umode_t mode,dev_t rdev)879 static void ovl_fill_inode(struct inode *inode, umode_t mode, dev_t rdev)
880 {
881 inode->i_mode = mode;
882 inode->i_flags |= S_NOCMTIME;
883 #ifdef CONFIG_FS_POSIX_ACL
884 inode->i_acl = inode->i_default_acl = ACL_DONT_CACHE;
885 #endif
886
887 ovl_lockdep_annotate_inode_mutex_key(inode);
888
889 switch (mode & S_IFMT) {
890 case S_IFREG:
891 inode->i_op = &ovl_file_inode_operations;
892 inode->i_fop = &ovl_file_operations;
893 inode->i_mapping->a_ops = &ovl_aops;
894 break;
895
896 case S_IFDIR:
897 inode->i_op = &ovl_dir_inode_operations;
898 inode->i_fop = &ovl_dir_operations;
899 break;
900
901 case S_IFLNK:
902 inode->i_op = &ovl_symlink_inode_operations;
903 break;
904
905 default:
906 inode->i_op = &ovl_special_inode_operations;
907 init_special_inode(inode, mode, rdev);
908 break;
909 }
910 }
911
912 /*
913 * With inodes index enabled, an overlay inode nlink counts the union of upper
914 * hardlinks and non-covered lower hardlinks. During the lifetime of a non-pure
915 * upper inode, the following nlink modifying operations can happen:
916 *
917 * 1. Lower hardlink copy up
918 * 2. Upper hardlink created, unlinked or renamed over
919 * 3. Lower hardlink whiteout or renamed over
920 *
921 * For the first, copy up case, the union nlink does not change, whether the
922 * operation succeeds or fails, but the upper inode nlink may change.
923 * Therefore, before copy up, we store the union nlink value relative to the
924 * lower inode nlink in the index inode xattr .overlay.nlink.
925 *
926 * For the second, upper hardlink case, the union nlink should be incremented
927 * or decremented IFF the operation succeeds, aligned with nlink change of the
928 * upper inode. Therefore, before link/unlink/rename, we store the union nlink
929 * value relative to the upper inode nlink in the index inode.
930 *
931 * For the last, lower cover up case, we simplify things by preceding the
932 * whiteout or cover up with copy up. This makes sure that there is an index
933 * upper inode where the nlink xattr can be stored before the copied up upper
934 * entry is unlink.
935 */
936 #define OVL_NLINK_ADD_UPPER (1 << 0)
937
938 /*
939 * On-disk format for indexed nlink:
940 *
941 * nlink relative to the upper inode - "U[+-]NUM"
942 * nlink relative to the lower inode - "L[+-]NUM"
943 */
944
ovl_set_nlink_common(struct dentry * dentry,struct dentry * realdentry,const char * format)945 static int ovl_set_nlink_common(struct dentry *dentry,
946 struct dentry *realdentry, const char *format)
947 {
948 struct inode *inode = d_inode(dentry);
949 struct inode *realinode = d_inode(realdentry);
950 char buf[13];
951 int len;
952
953 len = snprintf(buf, sizeof(buf), format,
954 (int) (inode->i_nlink - realinode->i_nlink));
955
956 if (WARN_ON(len >= sizeof(buf)))
957 return -EIO;
958
959 return ovl_setxattr(OVL_FS(inode->i_sb), ovl_dentry_upper(dentry),
960 OVL_XATTR_NLINK, buf, len);
961 }
962
ovl_set_nlink_upper(struct dentry * dentry)963 int ovl_set_nlink_upper(struct dentry *dentry)
964 {
965 return ovl_set_nlink_common(dentry, ovl_dentry_upper(dentry), "U%+i");
966 }
967
ovl_set_nlink_lower(struct dentry * dentry)968 int ovl_set_nlink_lower(struct dentry *dentry)
969 {
970 return ovl_set_nlink_common(dentry, ovl_dentry_lower(dentry), "L%+i");
971 }
972
ovl_get_nlink(struct ovl_fs * ofs,struct dentry * lowerdentry,struct dentry * upperdentry,unsigned int fallback)973 unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry,
974 struct dentry *upperdentry,
975 unsigned int fallback)
976 {
977 int nlink_diff;
978 int nlink;
979 char buf[13];
980 int err;
981
982 if (!lowerdentry || !upperdentry || d_inode(lowerdentry)->i_nlink == 1)
983 return fallback;
984
985 err = ovl_getxattr_upper(ofs, upperdentry, OVL_XATTR_NLINK,
986 &buf, sizeof(buf) - 1);
987 if (err < 0)
988 goto fail;
989
990 buf[err] = '\0';
991 if ((buf[0] != 'L' && buf[0] != 'U') ||
992 (buf[1] != '+' && buf[1] != '-'))
993 goto fail;
994
995 err = kstrtoint(buf + 1, 10, &nlink_diff);
996 if (err < 0)
997 goto fail;
998
999 nlink = d_inode(buf[0] == 'L' ? lowerdentry : upperdentry)->i_nlink;
1000 nlink += nlink_diff;
1001
1002 if (nlink <= 0)
1003 goto fail;
1004
1005 return nlink;
1006
1007 fail:
1008 pr_warn_ratelimited("failed to get index nlink (%pd2, err=%i)\n",
1009 upperdentry, err);
1010 return fallback;
1011 }
1012
ovl_new_inode(struct super_block * sb,umode_t mode,dev_t rdev)1013 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev)
1014 {
1015 struct inode *inode;
1016
1017 inode = new_inode(sb);
1018 if (inode)
1019 ovl_fill_inode(inode, mode, rdev);
1020
1021 return inode;
1022 }
1023
ovl_inode_test(struct inode * inode,void * data)1024 static int ovl_inode_test(struct inode *inode, void *data)
1025 {
1026 return inode->i_private == data;
1027 }
1028
ovl_inode_set(struct inode * inode,void * data)1029 static int ovl_inode_set(struct inode *inode, void *data)
1030 {
1031 inode->i_private = data;
1032 return 0;
1033 }
1034
ovl_verify_inode(struct inode * inode,struct dentry * lowerdentry,struct dentry * upperdentry,bool strict)1035 static bool ovl_verify_inode(struct inode *inode, struct dentry *lowerdentry,
1036 struct dentry *upperdentry, bool strict)
1037 {
1038 /*
1039 * For directories, @strict verify from lookup path performs consistency
1040 * checks, so NULL lower/upper in dentry must match NULL lower/upper in
1041 * inode. Non @strict verify from NFS handle decode path passes NULL for
1042 * 'unknown' lower/upper.
1043 */
1044 if (S_ISDIR(inode->i_mode) && strict) {
1045 /* Real lower dir moved to upper layer under us? */
1046 if (!lowerdentry && ovl_inode_lower(inode))
1047 return false;
1048
1049 /* Lookup of an uncovered redirect origin? */
1050 if (!upperdentry && ovl_inode_upper(inode))
1051 return false;
1052 }
1053
1054 /*
1055 * Allow non-NULL lower inode in ovl_inode even if lowerdentry is NULL.
1056 * This happens when finding a copied up overlay inode for a renamed
1057 * or hardlinked overlay dentry and lower dentry cannot be followed
1058 * by origin because lower fs does not support file handles.
1059 */
1060 if (lowerdentry && ovl_inode_lower(inode) != d_inode(lowerdentry))
1061 return false;
1062
1063 /*
1064 * Allow non-NULL __upperdentry in inode even if upperdentry is NULL.
1065 * This happens when finding a lower alias for a copied up hard link.
1066 */
1067 if (upperdentry && ovl_inode_upper(inode) != d_inode(upperdentry))
1068 return false;
1069
1070 return true;
1071 }
1072
ovl_lookup_inode(struct super_block * sb,struct dentry * real,bool is_upper)1073 struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real,
1074 bool is_upper)
1075 {
1076 struct inode *inode, *key = d_inode(real);
1077
1078 inode = ilookup5(sb, (unsigned long) key, ovl_inode_test, key);
1079 if (!inode)
1080 return NULL;
1081
1082 if (!ovl_verify_inode(inode, is_upper ? NULL : real,
1083 is_upper ? real : NULL, false)) {
1084 iput(inode);
1085 return ERR_PTR(-ESTALE);
1086 }
1087
1088 return inode;
1089 }
1090
ovl_lookup_trap_inode(struct super_block * sb,struct dentry * dir)1091 bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir)
1092 {
1093 struct inode *key = d_inode(dir);
1094 struct inode *trap;
1095 bool res;
1096
1097 trap = ilookup5(sb, (unsigned long) key, ovl_inode_test, key);
1098 if (!trap)
1099 return false;
1100
1101 res = IS_DEADDIR(trap) && !ovl_inode_upper(trap) &&
1102 !ovl_inode_lower(trap);
1103
1104 iput(trap);
1105 return res;
1106 }
1107
1108 /*
1109 * Create an inode cache entry for layer root dir, that will intentionally
1110 * fail ovl_verify_inode(), so any lookup that will find some layer root
1111 * will fail.
1112 */
ovl_get_trap_inode(struct super_block * sb,struct dentry * dir)1113 struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir)
1114 {
1115 struct inode *key = d_inode(dir);
1116 struct inode *trap;
1117
1118 if (!d_is_dir(dir))
1119 return ERR_PTR(-ENOTDIR);
1120
1121 trap = iget5_locked(sb, (unsigned long) key, ovl_inode_test,
1122 ovl_inode_set, key);
1123 if (!trap)
1124 return ERR_PTR(-ENOMEM);
1125
1126 if (!(trap->i_state & I_NEW)) {
1127 /* Conflicting layer roots? */
1128 iput(trap);
1129 return ERR_PTR(-ELOOP);
1130 }
1131
1132 trap->i_mode = S_IFDIR;
1133 trap->i_flags = S_DEAD;
1134 unlock_new_inode(trap);
1135
1136 return trap;
1137 }
1138
1139 /*
1140 * Does overlay inode need to be hashed by lower inode?
1141 */
ovl_hash_bylower(struct super_block * sb,struct dentry * upper,struct dentry * lower,bool index)1142 static bool ovl_hash_bylower(struct super_block *sb, struct dentry *upper,
1143 struct dentry *lower, bool index)
1144 {
1145 struct ovl_fs *ofs = sb->s_fs_info;
1146
1147 /* No, if pure upper */
1148 if (!lower)
1149 return false;
1150
1151 /* Yes, if already indexed */
1152 if (index)
1153 return true;
1154
1155 /* Yes, if won't be copied up */
1156 if (!ovl_upper_mnt(ofs))
1157 return true;
1158
1159 /* No, if lower hardlink is or will be broken on copy up */
1160 if ((upper || !ovl_indexdir(sb)) &&
1161 !d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
1162 return false;
1163
1164 /* No, if non-indexed upper with NFS export */
1165 if (sb->s_export_op && upper)
1166 return false;
1167
1168 /* Otherwise, hash by lower inode for fsnotify */
1169 return true;
1170 }
1171
ovl_iget5(struct super_block * sb,struct inode * newinode,struct inode * key)1172 static struct inode *ovl_iget5(struct super_block *sb, struct inode *newinode,
1173 struct inode *key)
1174 {
1175 return newinode ? inode_insert5(newinode, (unsigned long) key,
1176 ovl_inode_test, ovl_inode_set, key) :
1177 iget5_locked(sb, (unsigned long) key,
1178 ovl_inode_test, ovl_inode_set, key);
1179 }
1180
ovl_get_inode(struct super_block * sb,struct ovl_inode_params * oip)1181 struct inode *ovl_get_inode(struct super_block *sb,
1182 struct ovl_inode_params *oip)
1183 {
1184 struct ovl_fs *ofs = OVL_FS(sb);
1185 struct dentry *upperdentry = oip->upperdentry;
1186 struct ovl_path *lowerpath = oip->lowerpath;
1187 struct inode *realinode = upperdentry ? d_inode(upperdentry) : NULL;
1188 struct inode *inode;
1189 struct dentry *lowerdentry = lowerpath ? lowerpath->dentry : NULL;
1190 struct path realpath = {
1191 .dentry = upperdentry ?: lowerdentry,
1192 .mnt = upperdentry ? ovl_upper_mnt(ofs) : lowerpath->layer->mnt,
1193 };
1194 bool bylower = ovl_hash_bylower(sb, upperdentry, lowerdentry,
1195 oip->index);
1196 int fsid = bylower ? lowerpath->layer->fsid : 0;
1197 bool is_dir;
1198 unsigned long ino = 0;
1199 int err = oip->newinode ? -EEXIST : -ENOMEM;
1200
1201 if (!realinode)
1202 realinode = d_inode(lowerdentry);
1203
1204 /*
1205 * Copy up origin (lower) may exist for non-indexed upper, but we must
1206 * not use lower as hash key if this is a broken hardlink.
1207 */
1208 is_dir = S_ISDIR(realinode->i_mode);
1209 if (upperdentry || bylower) {
1210 struct inode *key = d_inode(bylower ? lowerdentry :
1211 upperdentry);
1212 unsigned int nlink = is_dir ? 1 : realinode->i_nlink;
1213
1214 inode = ovl_iget5(sb, oip->newinode, key);
1215 if (!inode)
1216 goto out_err;
1217 if (!(inode->i_state & I_NEW)) {
1218 /*
1219 * Verify that the underlying files stored in the inode
1220 * match those in the dentry.
1221 */
1222 if (!ovl_verify_inode(inode, lowerdentry, upperdentry,
1223 true)) {
1224 iput(inode);
1225 err = -ESTALE;
1226 goto out_err;
1227 }
1228
1229 dput(upperdentry);
1230 kfree(oip->redirect);
1231 goto out;
1232 }
1233
1234 /* Recalculate nlink for non-dir due to indexing */
1235 if (!is_dir)
1236 nlink = ovl_get_nlink(ofs, lowerdentry, upperdentry,
1237 nlink);
1238 set_nlink(inode, nlink);
1239 ino = key->i_ino;
1240 } else {
1241 /* Lower hardlink that will be broken on copy up */
1242 inode = new_inode(sb);
1243 if (!inode) {
1244 err = -ENOMEM;
1245 goto out_err;
1246 }
1247 ino = realinode->i_ino;
1248 fsid = lowerpath->layer->fsid;
1249 }
1250 ovl_fill_inode(inode, realinode->i_mode, realinode->i_rdev);
1251 ovl_inode_init(inode, oip, ino, fsid);
1252
1253 if (upperdentry && ovl_is_impuredir(sb, upperdentry))
1254 ovl_set_flag(OVL_IMPURE, inode);
1255
1256 if (oip->index)
1257 ovl_set_flag(OVL_INDEX, inode);
1258
1259 OVL_I(inode)->redirect = oip->redirect;
1260
1261 if (bylower)
1262 ovl_set_flag(OVL_CONST_INO, inode);
1263
1264 /* Check for non-merge dir that may have whiteouts */
1265 if (is_dir) {
1266 if (((upperdentry && lowerdentry) || oip->numlower > 1) ||
1267 ovl_path_check_origin_xattr(ofs, &realpath)) {
1268 ovl_set_flag(OVL_WHITEOUTS, inode);
1269 }
1270 }
1271
1272 /* Check for immutable/append-only inode flags in xattr */
1273 if (upperdentry)
1274 ovl_check_protattr(inode, upperdentry);
1275
1276 if (inode->i_state & I_NEW)
1277 unlock_new_inode(inode);
1278 out:
1279 return inode;
1280
1281 out_err:
1282 pr_warn_ratelimited("failed to get inode (%i)\n", err);
1283 inode = ERR_PTR(err);
1284 goto out;
1285 }
1286