Linux Audio

Check our new training course

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