LCOV - code coverage report
Current view: top level - fs - namei.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 1416 2159 65.6 %
Date: 2022-04-01 14:35:51 Functions: 96 141 68.1 %
Branches: 735 1540 47.7 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : /*
       3                 :            :  *  linux/fs/namei.c
       4                 :            :  *
       5                 :            :  *  Copyright (C) 1991, 1992  Linus Torvalds
       6                 :            :  */
       7                 :            : 
       8                 :            : /*
       9                 :            :  * Some corrections by tytso.
      10                 :            :  */
      11                 :            : 
      12                 :            : /* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
      13                 :            :  * lookup logic.
      14                 :            :  */
      15                 :            : /* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
      16                 :            :  */
      17                 :            : 
      18                 :            : #include <linux/init.h>
      19                 :            : #include <linux/export.h>
      20                 :            : #include <linux/kernel.h>
      21                 :            : #include <linux/slab.h>
      22                 :            : #include <linux/fs.h>
      23                 :            : #include <linux/namei.h>
      24                 :            : #include <linux/pagemap.h>
      25                 :            : #include <linux/fsnotify.h>
      26                 :            : #include <linux/personality.h>
      27                 :            : #include <linux/security.h>
      28                 :            : #include <linux/ima.h>
      29                 :            : #include <linux/syscalls.h>
      30                 :            : #include <linux/mount.h>
      31                 :            : #include <linux/audit.h>
      32                 :            : #include <linux/capability.h>
      33                 :            : #include <linux/file.h>
      34                 :            : #include <linux/fcntl.h>
      35                 :            : #include <linux/device_cgroup.h>
      36                 :            : #include <linux/fs_struct.h>
      37                 :            : #include <linux/posix_acl.h>
      38                 :            : #include <linux/hash.h>
      39                 :            : #include <linux/bitops.h>
      40                 :            : #include <linux/init_task.h>
      41                 :            : #include <linux/uaccess.h>
      42                 :            : 
      43                 :            : #include "internal.h"
      44                 :            : #include "mount.h"
      45                 :            : 
      46                 :            : /* [Feb-1997 T. Schoebel-Theuer]
      47                 :            :  * Fundamental changes in the pathname lookup mechanisms (namei)
      48                 :            :  * were necessary because of omirr.  The reason is that omirr needs
      49                 :            :  * to know the _real_ pathname, not the user-supplied one, in case
      50                 :            :  * of symlinks (and also when transname replacements occur).
      51                 :            :  *
      52                 :            :  * The new code replaces the old recursive symlink resolution with
      53                 :            :  * an iterative one (in case of non-nested symlink chains).  It does
      54                 :            :  * this with calls to <fs>_follow_link().
      55                 :            :  * As a side effect, dir_namei(), _namei() and follow_link() are now 
      56                 :            :  * replaced with a single function lookup_dentry() that can handle all 
      57                 :            :  * the special cases of the former code.
      58                 :            :  *
      59                 :            :  * With the new dcache, the pathname is stored at each inode, at least as
      60                 :            :  * long as the refcount of the inode is positive.  As a side effect, the
      61                 :            :  * size of the dcache depends on the inode cache and thus is dynamic.
      62                 :            :  *
      63                 :            :  * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
      64                 :            :  * resolution to correspond with current state of the code.
      65                 :            :  *
      66                 :            :  * Note that the symlink resolution is not *completely* iterative.
      67                 :            :  * There is still a significant amount of tail- and mid- recursion in
      68                 :            :  * the algorithm.  Also, note that <fs>_readlink() is not used in
      69                 :            :  * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
      70                 :            :  * may return different results than <fs>_follow_link().  Many virtual
      71                 :            :  * filesystems (including /proc) exhibit this behavior.
      72                 :            :  */
      73                 :            : 
      74                 :            : /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
      75                 :            :  * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
      76                 :            :  * and the name already exists in form of a symlink, try to create the new
      77                 :            :  * name indicated by the symlink. The old code always complained that the
      78                 :            :  * name already exists, due to not following the symlink even if its target
      79                 :            :  * is nonexistent.  The new semantics affects also mknod() and link() when
      80                 :            :  * the name is a symlink pointing to a non-existent name.
      81                 :            :  *
      82                 :            :  * I don't know which semantics is the right one, since I have no access
      83                 :            :  * to standards. But I found by trial that HP-UX 9.0 has the full "new"
      84                 :            :  * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
      85                 :            :  * "old" one. Personally, I think the new semantics is much more logical.
      86                 :            :  * Note that "ln old new" where "new" is a symlink pointing to a non-existing
      87                 :            :  * file does succeed in both HP-UX and SunOs, but not in Solaris
      88                 :            :  * and in the old Linux semantics.
      89                 :            :  */
      90                 :            : 
      91                 :            : /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
      92                 :            :  * semantics.  See the comments in "open_namei" and "do_link" below.
      93                 :            :  *
      94                 :            :  * [10-Sep-98 Alan Modra] Another symlink change.
      95                 :            :  */
      96                 :            : 
      97                 :            : /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
      98                 :            :  *      inside the path - always follow.
      99                 :            :  *      in the last component in creation/removal/renaming - never follow.
     100                 :            :  *      if LOOKUP_FOLLOW passed - follow.
     101                 :            :  *      if the pathname has trailing slashes - follow.
     102                 :            :  *      otherwise - don't follow.
     103                 :            :  * (applied in that order).
     104                 :            :  *
     105                 :            :  * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
     106                 :            :  * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
     107                 :            :  * During the 2.4 we need to fix the userland stuff depending on it -
     108                 :            :  * hopefully we will be able to get rid of that wart in 2.5. So far only
     109                 :            :  * XEmacs seems to be relying on it...
     110                 :            :  */
     111                 :            : /*
     112                 :            :  * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
     113                 :            :  * implemented.  Let's see if raised priority of ->s_vfs_rename_mutex gives
     114                 :            :  * any extra contention...
     115                 :            :  */
     116                 :            : 
     117                 :            : /* In order to reduce some races, while at the same time doing additional
     118                 :            :  * checking and hopefully speeding things up, we copy filenames to the
     119                 :            :  * kernel data space before using them..
     120                 :            :  *
     121                 :            :  * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
     122                 :            :  * PATH_MAX includes the nul terminator --RR.
     123                 :            :  */
     124                 :            : 
     125                 :            : #define EMBEDDED_NAME_MAX       (PATH_MAX - offsetof(struct filename, iname))
     126                 :            : 
     127                 :            : struct filename *
     128                 :    1607920 : getname_flags(const char __user *filename, int flags, int *empty)
     129                 :            : {
     130                 :    1607920 :         struct filename *result;
     131                 :    1607920 :         char *kname;
     132                 :    1607920 :         int len;
     133                 :            : 
     134                 :    1607920 :         result = audit_reusename(filename);
     135         [ +  - ]:    1607920 :         if (result)
     136                 :            :                 return result;
     137                 :            : 
     138                 :    1607920 :         result = __getname();
     139         [ +  - ]:    1607920 :         if (unlikely(!result))
     140                 :            :                 return ERR_PTR(-ENOMEM);
     141                 :            : 
     142                 :            :         /*
     143                 :            :          * First, try to embed the struct filename inside the names_cache
     144                 :            :          * allocation
     145                 :            :          */
     146                 :    1607920 :         kname = (char *)result->iname;
     147                 :    1607920 :         result->name = kname;
     148                 :            : 
     149                 :    1607920 :         len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
     150         [ -  + ]:    1607920 :         if (unlikely(len < 0)) {
     151                 :          0 :                 __putname(result);
     152                 :          0 :                 return ERR_PTR(len);
     153                 :            :         }
     154                 :            : 
     155                 :            :         /*
     156                 :            :          * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
     157                 :            :          * separate struct filename so we can dedicate the entire
     158                 :            :          * names_cache allocation for the pathname, and re-do the copy from
     159                 :            :          * userland.
     160                 :            :          */
     161         [ -  + ]:    1607920 :         if (unlikely(len == EMBEDDED_NAME_MAX)) {
     162                 :          0 :                 const size_t size = offsetof(struct filename, iname[1]);
     163                 :          0 :                 kname = (char *)result;
     164                 :            : 
     165                 :            :                 /*
     166                 :            :                  * size is chosen that way we to guarantee that
     167                 :            :                  * result->iname[0] is within the same object and that
     168                 :            :                  * kname can't be equal to result->iname, no matter what.
     169                 :            :                  */
     170                 :          0 :                 result = kzalloc(size, GFP_KERNEL);
     171         [ #  # ]:          0 :                 if (unlikely(!result)) {
     172                 :          0 :                         __putname(kname);
     173                 :          0 :                         return ERR_PTR(-ENOMEM);
     174                 :            :                 }
     175                 :          0 :                 result->name = kname;
     176                 :          0 :                 len = strncpy_from_user(kname, filename, PATH_MAX);
     177         [ #  # ]:          0 :                 if (unlikely(len < 0)) {
     178                 :          0 :                         __putname(kname);
     179                 :          0 :                         kfree(result);
     180                 :          0 :                         return ERR_PTR(len);
     181                 :            :                 }
     182         [ #  # ]:          0 :                 if (unlikely(len == PATH_MAX)) {
     183                 :          0 :                         __putname(kname);
     184                 :          0 :                         kfree(result);
     185                 :          0 :                         return ERR_PTR(-ENAMETOOLONG);
     186                 :            :                 }
     187                 :            :         }
     188                 :            : 
     189                 :    1607920 :         result->refcnt = 1;
     190                 :            :         /* The empty path is special. */
     191         [ +  + ]:    1607920 :         if (unlikely(!len)) {
     192         [ -  + ]:       1554 :                 if (empty)
     193                 :          0 :                         *empty = 1;
     194         [ -  + ]:       1554 :                 if (!(flags & LOOKUP_EMPTY)) {
     195                 :          0 :                         putname(result);
     196                 :          0 :                         return ERR_PTR(-ENOENT);
     197                 :            :                 }
     198                 :            :         }
     199                 :            : 
     200                 :    1607920 :         result->uptr = filename;
     201                 :    1607920 :         result->aname = NULL;
     202                 :    1607920 :         audit_getname(result);
     203                 :    1607920 :         return result;
     204                 :            : }
     205                 :            : 
     206                 :            : struct filename *
     207                 :    1259185 : getname(const char __user * filename)
     208                 :            : {
     209                 :    1146623 :         return getname_flags(filename, 0, NULL);
     210                 :            : }
     211                 :            : 
     212                 :            : struct filename *
     213                 :      29981 : getname_kernel(const char * filename)
     214                 :            : {
     215                 :      29981 :         struct filename *result;
     216                 :      29981 :         int len = strlen(filename) + 1;
     217                 :            : 
     218                 :      29981 :         result = __getname();
     219         [ +  - ]:      29981 :         if (unlikely(!result))
     220                 :            :                 return ERR_PTR(-ENOMEM);
     221                 :            : 
     222         [ +  - ]:      29981 :         if (len <= EMBEDDED_NAME_MAX) {
     223                 :      29981 :                 result->name = (char *)result->iname;
     224         [ #  # ]:          0 :         } else if (len <= PATH_MAX) {
     225                 :          0 :                 const size_t size = offsetof(struct filename, iname[1]);
     226                 :          0 :                 struct filename *tmp;
     227                 :            : 
     228                 :          0 :                 tmp = kmalloc(size, GFP_KERNEL);
     229         [ #  # ]:          0 :                 if (unlikely(!tmp)) {
     230                 :          0 :                         __putname(result);
     231                 :          0 :                         return ERR_PTR(-ENOMEM);
     232                 :            :                 }
     233                 :          0 :                 tmp->name = (char *)result;
     234                 :          0 :                 result = tmp;
     235                 :            :         } else {
     236                 :          0 :                 __putname(result);
     237                 :          0 :                 return ERR_PTR(-ENAMETOOLONG);
     238                 :            :         }
     239                 :      29981 :         memcpy((char *)result->name, filename, len);
     240                 :      29981 :         result->uptr = NULL;
     241                 :      29981 :         result->aname = NULL;
     242                 :      29981 :         result->refcnt = 1;
     243                 :      29981 :         audit_getname(result);
     244                 :            : 
     245                 :      29981 :         return result;
     246                 :            : }
     247                 :            : 
     248                 :    1637880 : void putname(struct filename *name)
     249                 :            : {
     250         [ -  + ]:    1637880 :         BUG_ON(name->refcnt <= 0);
     251                 :            : 
     252         [ +  - ]:    1637880 :         if (--name->refcnt > 0)
     253                 :            :                 return;
     254                 :            : 
     255         [ -  + ]:    1637880 :         if (name->name != name->iname) {
     256                 :          0 :                 __putname(name->name);
     257                 :          0 :                 kfree(name);
     258                 :            :         } else
     259                 :    1637880 :                 __putname(name);
     260                 :            : }
     261                 :            : 
     262                 :    1167038 : static int check_acl(struct inode *inode, int mask)
     263                 :            : {
     264                 :            : #ifdef CONFIG_FS_POSIX_ACL
     265                 :    1167038 :         struct posix_acl *acl;
     266                 :            : 
     267         [ +  + ]:    1167038 :         if (mask & MAY_NOT_BLOCK) {
     268                 :    1151311 :                 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
     269         [ +  + ]:    1151311 :                 if (!acl)
     270                 :            :                         return -EAGAIN;
     271                 :            :                 /* no ->get_acl() calls in RCU mode... */
     272         [ -  + ]:        168 :                 if (is_uncached_acl(acl))
     273                 :            :                         return -ECHILD;
     274                 :          0 :                 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
     275                 :            :         }
     276                 :            : 
     277                 :      15727 :         acl = get_acl(inode, ACL_TYPE_ACCESS);
     278         [ -  + ]:      15727 :         if (IS_ERR(acl))
     279                 :          0 :                 return PTR_ERR(acl);
     280         [ -  + ]:      15727 :         if (acl) {
     281                 :          0 :                 int error = posix_acl_permission(inode, acl, mask);
     282                 :          0 :                 posix_acl_release(acl);
     283                 :          0 :                 return error;
     284                 :            :         }
     285                 :            : #endif
     286                 :            : 
     287                 :            :         return -EAGAIN;
     288                 :            : }
     289                 :            : 
     290                 :            : /*
     291                 :            :  * This does the basic permission checking
     292                 :            :  */
     293                 :    5391880 : static int acl_permission_check(struct inode *inode, int mask)
     294                 :            : {
     295                 :    5391880 :         unsigned int mode = inode->i_mode;
     296                 :            : 
     297         [ +  + ]:    5391880 :         if (likely(uid_eq(current_fsuid(), inode->i_uid)))
     298                 :    4223435 :                 mode >>= 6;
     299                 :            :         else {
     300   [ +  +  +  - ]:    1168445 :                 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
     301                 :    1167038 :                         int error = check_acl(inode, mask);
     302         [ +  + ]:    1167038 :                         if (error != -EAGAIN)
     303                 :            :                                 return error;
     304                 :            :                 }
     305                 :            : 
     306         [ -  + ]:    1168277 :                 if (in_group_p(inode->i_gid))
     307                 :          0 :                         mode >>= 3;
     308                 :            :         }
     309                 :            : 
     310                 :            :         /*
     311                 :            :          * If the DACs are ok we don't need any capability check.
     312                 :            :          */
     313         [ +  + ]:    5391712 :         if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
     314                 :    5380183 :                 return 0;
     315                 :            :         return -EACCES;
     316                 :            : }
     317                 :            : 
     318                 :            : /**
     319                 :            :  * generic_permission -  check for access rights on a Posix-like filesystem
     320                 :            :  * @inode:      inode to check access rights for
     321                 :            :  * @mask:       right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
     322                 :            :  *
     323                 :            :  * Used to check for read/write/execute permissions on a file.
     324                 :            :  * We use "fsuid" for this, letting us set arbitrary permissions
     325                 :            :  * for filesystem access without changing the "normal" uids which
     326                 :            :  * are used for other things.
     327                 :            :  *
     328                 :            :  * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
     329                 :            :  * request cannot be satisfied (eg. requires blocking or too much complexity).
     330                 :            :  * It would then be called again in ref-walk mode.
     331                 :            :  */
     332                 :    5391880 : int generic_permission(struct inode *inode, int mask)
     333                 :            : {
     334                 :    5391880 :         int ret;
     335                 :            : 
     336                 :            :         /*
     337                 :            :          * Do the basic permission checks.
     338                 :            :          */
     339                 :    5391880 :         ret = acl_permission_check(inode, mask);
     340         [ +  + ]:    5391880 :         if (ret != -EACCES)
     341                 :            :                 return ret;
     342                 :            : 
     343         [ +  + ]:      11529 :         if (S_ISDIR(inode->i_mode)) {
     344                 :            :                 /* DACs are overridable for directories */
     345         [ +  + ]:        630 :                 if (!(mask & MAY_WRITE))
     346         [ -  + ]:        231 :                         if (capable_wrt_inode_uidgid(inode,
     347                 :            :                                                      CAP_DAC_READ_SEARCH))
     348                 :            :                                 return 0;
     349         [ -  + ]:        399 :                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
     350                 :            :                         return 0;
     351                 :          0 :                 return -EACCES;
     352                 :            :         }
     353                 :            : 
     354                 :            :         /*
     355                 :            :          * Searching includes executable on directories, else just read.
     356                 :            :          */
     357                 :      10899 :         mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
     358         [ +  - ]:      10899 :         if (mask == MAY_READ)
     359         [ +  + ]:      10899 :                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
     360                 :            :                         return 0;
     361                 :            :         /*
     362                 :            :          * Read/write DACs are always overridable.
     363                 :            :          * Executable DACs are overridable when there is
     364                 :            :          * at least one exec bit set.
     365                 :            :          */
     366   [ -  +  -  - ]:         21 :         if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
     367         [ -  + ]:         21 :                 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
     368                 :          0 :                         return 0;
     369                 :            : 
     370                 :            :         return -EACCES;
     371                 :            : }
     372                 :            : EXPORT_SYMBOL(generic_permission);
     373                 :            : 
     374                 :            : /*
     375                 :            :  * We _really_ want to just do "generic_permission()" without
     376                 :            :  * even looking at the inode->i_op values. So we keep a cache
     377                 :            :  * flag in inode->i_opflags, that says "this has not special
     378                 :            :  * permission function, use the fast case".
     379                 :            :  */
     380                 :    5772346 : static inline int do_inode_permission(struct inode *inode, int mask)
     381                 :            : {
     382         [ +  + ]:    5772346 :         if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
     383         [ +  + ]:    1485103 :                 if (likely(inode->i_op->permission))
     384                 :    1412752 :                         return inode->i_op->permission(inode, mask);
     385                 :            : 
     386                 :            :                 /* This gets set once for the inode lifetime */
     387                 :      72351 :                 spin_lock(&inode->i_lock);
     388                 :      72351 :                 inode->i_opflags |= IOP_FASTPERM;
     389                 :      72351 :                 spin_unlock(&inode->i_lock);
     390                 :            :         }
     391                 :    4359594 :         return generic_permission(inode, mask);
     392                 :            : }
     393                 :            : 
     394                 :            : /**
     395                 :            :  * sb_permission - Check superblock-level permissions
     396                 :            :  * @sb: Superblock of inode to check permission on
     397                 :            :  * @inode: Inode to check permission on
     398                 :            :  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
     399                 :            :  *
     400                 :            :  * Separate out file-system wide checks from inode-specific permission checks.
     401                 :            :  */
     402                 :    5772367 : static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
     403                 :            : {
     404                 :    5772367 :         if (unlikely(mask & MAY_WRITE)) {
     405                 :      65954 :                 umode_t mode = inode->i_mode;
     406                 :            : 
     407                 :            :                 /* Nobody gets write access to a read-only fs. */
     408   [ +  +  -  +  :      65954 :                 if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
                   -  - ]
     409                 :            :                         return -EROFS;
     410                 :            :         }
     411                 :            :         return 0;
     412                 :            : }
     413                 :            : 
     414                 :            : /**
     415                 :            :  * inode_permission - Check for access rights to a given inode
     416                 :            :  * @inode: Inode to check permission on
     417                 :            :  * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
     418                 :            :  *
     419                 :            :  * Check for read/write/execute permissions on an inode.  We use fs[ug]id for
     420                 :            :  * this, letting us set arbitrary permissions for filesystem access without
     421                 :            :  * changing the "normal" UIDs which are used for other things.
     422                 :            :  *
     423                 :            :  * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
     424                 :            :  */
     425                 :    5772367 : int inode_permission(struct inode *inode, int mask)
     426                 :            : {
     427                 :    5772367 :         int retval;
     428                 :            : 
     429         [ +  + ]:    5772367 :         retval = sb_permission(inode->i_sb, inode, mask);
     430                 :            :         if (retval)
     431                 :            :                 return retval;
     432                 :            : 
     433         [ +  + ]:    5772346 :         if (unlikely(mask & MAY_WRITE)) {
     434                 :            :                 /*
     435                 :            :                  * Nobody gets write access to an immutable file.
     436                 :            :                  */
     437         [ +  - ]:      65933 :                 if (IS_IMMUTABLE(inode))
     438                 :            :                         return -EPERM;
     439                 :            : 
     440                 :            :                 /*
     441                 :            :                  * Updating mtime will likely cause i_uid and i_gid to be
     442                 :            :                  * written back improperly if their true value is unknown
     443                 :            :                  * to the vfs.
     444                 :            :                  */
     445   [ +  -  +  - ]:     131866 :                 if (HAS_UNMAPPED_ID(inode))
     446                 :            :                         return -EACCES;
     447                 :            :         }
     448                 :            : 
     449                 :    5772346 :         retval = do_inode_permission(inode, mask);
     450         [ +  + ]:    5772346 :         if (retval)
     451                 :            :                 return retval;
     452                 :            : 
     453                 :    5395051 :         retval = devcgroup_inode_permission(inode, mask);
     454                 :    5395051 :         if (retval)
     455                 :            :                 return retval;
     456                 :            : 
     457                 :    5395051 :         return security_inode_permission(inode, mask);
     458                 :            : }
     459                 :            : EXPORT_SYMBOL(inode_permission);
     460                 :            : 
     461                 :            : /**
     462                 :            :  * path_get - get a reference to a path
     463                 :            :  * @path: path to get the reference to
     464                 :            :  *
     465                 :            :  * Given a path increment the reference count to the dentry and the vfsmount.
     466                 :            :  */
     467                 :    1079756 : void path_get(const struct path *path)
     468                 :            : {
     469                 :    1079756 :         mntget(path->mnt);
     470         [ +  - ]:    1079756 :         dget(path->dentry);
     471                 :    1079756 : }
     472                 :            : EXPORT_SYMBOL(path_get);
     473                 :            : 
     474                 :            : /**
     475                 :            :  * path_put - put a reference to a path
     476                 :            :  * @path: path to put the reference to
     477                 :            :  *
     478                 :            :  * Given a path decrement the reference count to the dentry and the vfsmount.
     479                 :            :  */
     480                 :    2856047 : void path_put(const struct path *path)
     481                 :            : {
     482                 :     380676 :         dput(path->dentry);
     483                 :    1369116 :         mntput(path->mnt);
     484                 :     553101 : }
     485                 :            : EXPORT_SYMBOL(path_put);
     486                 :            : 
     487                 :            : #define EMBEDDED_LEVELS 2
     488                 :            : struct nameidata {
     489                 :            :         struct path     path;
     490                 :            :         struct qstr     last;
     491                 :            :         struct path     root;
     492                 :            :         struct inode    *inode; /* path.dentry.d_inode */
     493                 :            :         unsigned int    flags;
     494                 :            :         unsigned        seq, m_seq, r_seq;
     495                 :            :         int             last_type;
     496                 :            :         unsigned        depth;
     497                 :            :         int             total_link_count;
     498                 :            :         struct saved {
     499                 :            :                 struct path link;
     500                 :            :                 struct delayed_call done;
     501                 :            :                 const char *name;
     502                 :            :                 unsigned seq;
     503                 :            :         } *stack, internal[EMBEDDED_LEVELS];
     504                 :            :         struct filename *name;
     505                 :            :         struct nameidata *saved;
     506                 :            :         struct inode    *link_inode;
     507                 :            :         unsigned        root_seq;
     508                 :            :         int             dfd;
     509                 :            : } __randomize_layout;
     510                 :            : 
     511                 :    1522474 : static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
     512                 :            : {
     513                 :    1522474 :         struct nameidata *old = current->nameidata;
     514                 :    1522474 :         p->stack = p->internal;
     515                 :    1522474 :         p->dfd = dfd;
     516                 :    1522474 :         p->name = name;
     517   [ -  -  -  +  :    1522474 :         p->total_link_count = old ? old->total_link_count : 0;
             -  +  -  + ]
     518                 :    1522474 :         p->saved = old;
     519                 :    1522474 :         current->nameidata = p;
     520                 :            : }
     521                 :            : 
     522                 :    1633398 : static void restore_nameidata(void)
     523                 :            : {
     524         [ -  + ]:    1633398 :         struct nameidata *now = current->nameidata, *old = now->saved;
     525                 :            : 
     526                 :    1633398 :         current->nameidata = old;
     527         [ -  + ]:    1633398 :         if (old)
     528                 :          0 :                 old->total_link_count = now->total_link_count;
     529         [ -  + ]:    1633398 :         if (now->stack != now->internal)
     530                 :          0 :                 kfree(now->stack);
     531                 :    1633398 : }
     532                 :            : 
     533                 :          0 : static int __nd_alloc_stack(struct nameidata *nd)
     534                 :            : {
     535                 :          0 :         struct saved *p;
     536                 :            : 
     537         [ #  # ]:          0 :         if (nd->flags & LOOKUP_RCU) {
     538                 :          0 :                 p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
     539                 :            :                                   GFP_ATOMIC);
     540         [ #  # ]:          0 :                 if (unlikely(!p))
     541                 :            :                         return -ECHILD;
     542                 :            :         } else {
     543                 :          0 :                 p= kmalloc_array(MAXSYMLINKS, sizeof(struct saved),
     544                 :            :                                   GFP_KERNEL);
     545         [ #  # ]:          0 :                 if (unlikely(!p))
     546                 :            :                         return -ENOMEM;
     547                 :            :         }
     548                 :          0 :         memcpy(p, nd->internal, sizeof(nd->internal));
     549                 :          0 :         nd->stack = p;
     550                 :          0 :         return 0;
     551                 :            : }
     552                 :            : 
     553                 :            : /**
     554                 :            :  * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
     555                 :            :  * @path: nameidate to verify
     556                 :            :  *
     557                 :            :  * Rename can sometimes move a file or directory outside of a bind
     558                 :            :  * mount, path_connected allows those cases to be detected.
     559                 :            :  */
     560                 :            : static bool path_connected(const struct path *path)
     561                 :            : {
     562                 :            :         struct vfsmount *mnt = path->mnt;
     563                 :            :         struct super_block *sb = mnt->mnt_sb;
     564                 :            : 
     565                 :            :         /* Bind mounts and multi-root filesystems can have disconnected paths */
     566                 :            :         if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root))
     567                 :            :                 return true;
     568                 :            : 
     569                 :            :         return is_subdir(path->dentry, mnt->mnt_root);
     570                 :            : }
     571                 :            : 
     572                 :     243422 : static inline int nd_alloc_stack(struct nameidata *nd)
     573                 :            : {
     574                 :     243422 :         if (likely(nd->depth != EMBEDDED_LEVELS))
     575                 :            :                 return 0;
     576   [ #  #  #  # ]:          0 :         if (likely(nd->stack != nd->internal))
     577                 :            :                 return 0;
     578                 :          0 :         return __nd_alloc_stack(nd);
     579                 :            : }
     580                 :            : 
     581                 :    1633398 : static void drop_links(struct nameidata *nd)
     582                 :            : {
     583                 :    1633398 :         int i = nd->depth;
     584   [ -  -  -  -  :    1633440 :         while (i--) {
                   +  + ]
     585                 :         42 :                 struct saved *last = nd->stack + i;
     586   [ -  -  -  -  :         42 :                 do_delayed_call(&last->done);
                   -  + ]
     587                 :         42 :                 clear_delayed_call(&last->done);
     588                 :            :         }
     589                 :            : }
     590                 :            : 
     591                 :    1633398 : static void terminate_walk(struct nameidata *nd)
     592                 :            : {
     593                 :    1633398 :         drop_links(nd);
     594         [ +  + ]:    1633398 :         if (!(nd->flags & LOOKUP_RCU)) {
     595                 :    1486931 :                 int i;
     596                 :    1486931 :                 path_put(&nd->path);
     597         [ +  + ]:    2973904 :                 for (i = 0; i < nd->depth; i++)
     598                 :         42 :                         path_put(&nd->stack[i].link);
     599         [ +  + ]:    1486931 :                 if (nd->flags & LOOKUP_ROOT_GRABBED) {
     600                 :     330277 :                         path_put(&nd->root);
     601                 :     330277 :                         nd->flags &= ~LOOKUP_ROOT_GRABBED;
     602                 :            :                 }
     603                 :            :         } else {
     604                 :     146467 :                 nd->flags &= ~LOOKUP_RCU;
     605                 :     146467 :                 rcu_read_unlock();
     606                 :            :         }
     607                 :    1633398 :         nd->depth = 0;
     608                 :    1633398 : }
     609                 :            : 
     610                 :            : /* path_put is needed afterwards regardless of success or failure */
     611                 :            : static bool legitimize_path(struct nameidata *nd,
     612                 :            :                             struct path *path, unsigned seq)
     613                 :            : {
     614                 :            :         int res = __legitimize_mnt(path->mnt, nd->m_seq);
     615                 :            :         if (unlikely(res)) {
     616                 :            :                 if (res > 0)
     617                 :            :                         path->mnt = NULL;
     618                 :            :                 path->dentry = NULL;
     619                 :            :                 return false;
     620                 :            :         }
     621                 :            :         if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
     622                 :            :                 path->dentry = NULL;
     623                 :            :                 return false;
     624                 :            :         }
     625                 :            :         return !read_seqcount_retry(&path->dentry->d_seq, seq);
     626                 :            : }
     627                 :            : 
     628                 :    1485398 : static bool legitimize_links(struct nameidata *nd)
     629                 :            : {
     630                 :    1485398 :         int i;
     631         [ +  + ]:    1496215 :         for (i = 0; i < nd->depth; i++) {
     632                 :      10817 :                 struct saved *last = nd->stack + i;
     633         [ -  + ]:      10817 :                 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
     634                 :          0 :                         drop_links(nd);
     635                 :          0 :                         nd->depth = i + 1;
     636                 :          0 :                         return false;
     637                 :            :                 }
     638                 :            :         }
     639                 :            :         return true;
     640                 :            : }
     641                 :            : 
     642                 :    1485398 : static bool legitimize_root(struct nameidata *nd)
     643                 :            : {
     644                 :            :         /*
     645                 :            :          * For scoped-lookups (where nd->root has been zeroed), we need to
     646                 :            :          * restart the whole lookup from scratch -- because set_root() is wrong
     647                 :            :          * for these lookups (nd->dfd is the root, not the filesystem root).
     648                 :            :          */
     649   [ +  +  +  - ]:    1485398 :         if (!nd->root.mnt && (nd->flags & LOOKUP_IS_SCOPED))
     650                 :            :                 return false;
     651                 :            :         /* Nothing to do if nd->root is zero or is managed by the VFS user. */
     652   [ +  +  +  - ]:    1485398 :         if (!nd->root.mnt || (nd->flags & LOOKUP_ROOT))
     653                 :            :                 return true;
     654                 :     308228 :         nd->flags |= LOOKUP_ROOT_GRABBED;
     655                 :     308228 :         return legitimize_path(nd, &nd->root, nd->root_seq);
     656                 :            : }
     657                 :            : 
     658                 :            : /*
     659                 :            :  * Path walking has 2 modes, rcu-walk and ref-walk (see
     660                 :            :  * Documentation/filesystems/path-lookup.txt).  In situations when we can't
     661                 :            :  * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
     662                 :            :  * normal reference counts on dentries and vfsmounts to transition to ref-walk
     663                 :            :  * mode.  Refcounts are grabbed at the last known good point before rcu-walk
     664                 :            :  * got stuck, so ref-walk may continue from there. If this is not successful
     665                 :            :  * (eg. a seqcount has changed), then failure is returned and it's up to caller
     666                 :            :  * to restart the path walk from the beginning in ref-walk mode.
     667                 :            :  */
     668                 :            : 
     669                 :            : /**
     670                 :            :  * unlazy_walk - try to switch to ref-walk mode.
     671                 :            :  * @nd: nameidata pathwalk data
     672                 :            :  * Returns: 0 on success, -ECHILD on failure
     673                 :            :  *
     674                 :            :  * unlazy_walk attempts to legitimize the current nd->path and nd->root
     675                 :            :  * for ref-walk mode.
     676                 :            :  * Must be called from rcu-walk context.
     677                 :            :  * Nothing should touch nameidata between unlazy_walk() failure and
     678                 :            :  * terminate_walk().
     679                 :            :  */
     680                 :    1463845 : static int unlazy_walk(struct nameidata *nd)
     681                 :            : {
     682                 :    1463845 :         struct dentry *parent = nd->path.dentry;
     683                 :            : 
     684         [ -  + ]:    1463845 :         BUG_ON(!(nd->flags & LOOKUP_RCU));
     685                 :            : 
     686                 :    1463845 :         nd->flags &= ~LOOKUP_RCU;
     687         [ -  + ]:    1463845 :         if (unlikely(!legitimize_links(nd)))
     688                 :          0 :                 goto out1;
     689         [ -  + ]:    1463845 :         if (unlikely(!legitimize_path(nd, &nd->path, nd->seq)))
     690                 :          0 :                 goto out;
     691         [ -  + ]:    1463845 :         if (unlikely(!legitimize_root(nd)))
     692                 :          0 :                 goto out;
     693                 :    1463845 :         rcu_read_unlock();
     694         [ -  + ]:    1463845 :         BUG_ON(nd->inode != parent->d_inode);
     695                 :            :         return 0;
     696                 :            : 
     697                 :            : out1:
     698                 :          0 :         nd->path.mnt = NULL;
     699                 :          0 :         nd->path.dentry = NULL;
     700                 :          0 : out:
     701                 :          0 :         rcu_read_unlock();
     702                 :          0 :         return -ECHILD;
     703                 :            : }
     704                 :            : 
     705                 :            : /**
     706                 :            :  * unlazy_child - try to switch to ref-walk mode.
     707                 :            :  * @nd: nameidata pathwalk data
     708                 :            :  * @dentry: child of nd->path.dentry
     709                 :            :  * @seq: seq number to check dentry against
     710                 :            :  * Returns: 0 on success, -ECHILD on failure
     711                 :            :  *
     712                 :            :  * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry
     713                 :            :  * for ref-walk mode.  @dentry must be a path found by a do_lookup call on
     714                 :            :  * @nd.  Must be called from rcu-walk context.
     715                 :            :  * Nothing should touch nameidata between unlazy_child() failure and
     716                 :            :  * terminate_walk().
     717                 :            :  */
     718                 :      21553 : static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq)
     719                 :            : {
     720         [ -  + ]:      21553 :         BUG_ON(!(nd->flags & LOOKUP_RCU));
     721                 :            : 
     722                 :      21553 :         nd->flags &= ~LOOKUP_RCU;
     723         [ -  + ]:      21553 :         if (unlikely(!legitimize_links(nd)))
     724                 :          0 :                 goto out2;
     725         [ -  + ]:      21553 :         if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
     726                 :          0 :                 goto out2;
     727         [ -  + ]:      21553 :         if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref)))
     728                 :          0 :                 goto out1;
     729                 :            : 
     730                 :            :         /*
     731                 :            :          * We need to move both the parent and the dentry from the RCU domain
     732                 :            :          * to be properly refcounted. And the sequence number in the dentry
     733                 :            :          * validates *both* dentry counters, since we checked the sequence
     734                 :            :          * number of the parent after we got the child sequence number. So we
     735                 :            :          * know the parent must still be valid if the child sequence number is
     736                 :            :          */
     737         [ -  + ]:      21553 :         if (unlikely(!lockref_get_not_dead(&dentry->d_lockref)))
     738                 :          0 :                 goto out;
     739         [ -  + ]:      21553 :         if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
     740                 :          0 :                 goto out_dput;
     741                 :            :         /*
     742                 :            :          * Sequence counts matched. Now make sure that the root is
     743                 :            :          * still valid and get it if required.
     744                 :            :          */
     745         [ -  + ]:      21553 :         if (unlikely(!legitimize_root(nd)))
     746                 :          0 :                 goto out_dput;
     747                 :      21553 :         rcu_read_unlock();
     748                 :      21553 :         return 0;
     749                 :            : 
     750                 :          0 : out2:
     751                 :          0 :         nd->path.mnt = NULL;
     752                 :          0 : out1:
     753                 :          0 :         nd->path.dentry = NULL;
     754                 :          0 : out:
     755                 :          0 :         rcu_read_unlock();
     756                 :          0 :         return -ECHILD;
     757                 :          0 : out_dput:
     758                 :          0 :         rcu_read_unlock();
     759                 :          0 :         dput(dentry);
     760                 :          0 :         return -ECHILD;
     761                 :            : }
     762                 :            : 
     763                 :    4176941 : static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
     764                 :            : {
     765                 :    4176941 :         if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
     766                 :     843738 :                 return dentry->d_op->d_revalidate(dentry, flags);
     767                 :            :         else
     768                 :            :                 return 1;
     769                 :            : }
     770                 :            : 
     771                 :            : /**
     772                 :            :  * complete_walk - successful completion of path walk
     773                 :            :  * @nd:  pointer nameidata
     774                 :            :  *
     775                 :            :  * If we had been in RCU mode, drop out of it and legitimize nd->path.
     776                 :            :  * Revalidate the final result, unless we'd already done that during
     777                 :            :  * the path walk or the filesystem doesn't ask for it.  Return 0 on
     778                 :            :  * success, -error on failure.  In case of failure caller does not
     779                 :            :  * need to drop nd->path.
     780                 :            :  */
     781                 :    1286088 : static int complete_walk(struct nameidata *nd)
     782                 :            : {
     783                 :    1286088 :         struct dentry *dentry = nd->path.dentry;
     784                 :    1286088 :         int status;
     785                 :            : 
     786         [ +  + ]:    1286088 :         if (nd->flags & LOOKUP_RCU) {
     787                 :            :                 /*
     788                 :            :                  * We don't want to zero nd->root for scoped-lookups or
     789                 :            :                  * externally-managed nd->root.
     790                 :            :                  */
     791         [ +  - ]:     935802 :                 if (!(nd->flags & (LOOKUP_ROOT | LOOKUP_IS_SCOPED)))
     792                 :     935802 :                         nd->root.mnt = NULL;
     793         [ +  - ]:     935802 :                 if (unlikely(unlazy_walk(nd)))
     794                 :            :                         return -ECHILD;
     795                 :            :         }
     796                 :            : 
     797         [ -  + ]:    1286088 :         if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) {
     798                 :            :                 /*
     799                 :            :                  * While the guarantee of LOOKUP_IS_SCOPED is (roughly) "don't
     800                 :            :                  * ever step outside the root during lookup" and should already
     801                 :            :                  * be guaranteed by the rest of namei, we want to avoid a namei
     802                 :            :                  * BUG resulting in userspace being given a path that was not
     803                 :            :                  * scoped within the root at some point during the lookup.
     804                 :            :                  *
     805                 :            :                  * So, do a final sanity-check to make sure that in the
     806                 :            :                  * worst-case scenario (a complete bypass of LOOKUP_IS_SCOPED)
     807                 :            :                  * we won't silently return an fd completely outside of the
     808                 :            :                  * requested root to userspace.
     809                 :            :                  *
     810                 :            :                  * Userspace could move the path outside the root after this
     811                 :            :                  * check, but as discussed elsewhere this is not a concern (the
     812                 :            :                  * resolved file was inside the root at some point).
     813                 :            :                  */
     814         [ #  # ]:          0 :                 if (!path_is_under(&nd->path, &nd->root))
     815                 :            :                         return -EXDEV;
     816                 :            :         }
     817                 :            : 
     818         [ +  + ]:    1286088 :         if (likely(!(nd->flags & LOOKUP_JUMPED)))
     819                 :            :                 return 0;
     820                 :            : 
     821         [ -  + ]:     252069 :         if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
     822                 :            :                 return 0;
     823                 :            : 
     824                 :          0 :         status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
     825         [ #  # ]:          0 :         if (status > 0)
     826                 :            :                 return 0;
     827                 :            : 
     828         [ #  # ]:          0 :         if (!status)
     829                 :          0 :                 status = -ESTALE;
     830                 :            : 
     831                 :            :         return status;
     832                 :            : }
     833                 :            : 
     834                 :     987361 : static int set_root(struct nameidata *nd)
     835                 :            : {
     836         [ -  + ]:     987361 :         struct fs_struct *fs = current->fs;
     837                 :            : 
     838                 :            :         /*
     839                 :            :          * Jumping to the real root in a scoped-lookup is a BUG in namei, but we
     840                 :            :          * still have to ensure it doesn't happen because it will cause a breakout
     841                 :            :          * from the dirfd.
     842                 :            :          */
     843   [ -  +  +  - ]:     987361 :         if (WARN_ON(nd->flags & LOOKUP_IS_SCOPED))
     844                 :            :                 return -ENOTRECOVERABLE;
     845                 :            : 
     846         [ +  + ]:     987361 :         if (nd->flags & LOOKUP_RCU) {
     847                 :     965291 :                 unsigned seq;
     848                 :            : 
     849                 :     965291 :                 do {
     850                 :     965291 :                         seq = read_seqcount_begin(&fs->seq);
     851                 :     965291 :                         nd->root = fs->root;
     852                 :     965291 :                         nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
     853         [ -  + ]:     965291 :                 } while (read_seqcount_retry(&fs->seq, seq));
     854                 :            :         } else {
     855                 :      22070 :                 get_fs_root(fs, &nd->root);
     856                 :      22070 :                 nd->flags |= LOOKUP_ROOT_GRABBED;
     857                 :            :         }
     858                 :            :         return 0;
     859                 :            : }
     860                 :            : 
     861                 :     198810 : static void path_put_conditional(struct path *path, struct nameidata *nd)
     862                 :            : {
     863                 :     198810 :         dput(path->dentry);
     864         [ -  + ]:     198810 :         if (path->mnt != nd->path.mnt)
     865                 :          0 :                 mntput(path->mnt);
     866                 :            : }
     867                 :            : 
     868                 :            : static inline void path_to_nameidata(const struct path *path,
     869                 :            :                                         struct nameidata *nd)
     870                 :            : {
     871                 :            :         if (!(nd->flags & LOOKUP_RCU)) {
     872                 :            :                 dput(nd->path.dentry);
     873                 :            :                 if (nd->path.mnt != path->mnt)
     874                 :            :                         mntput(nd->path.mnt);
     875                 :            :         }
     876                 :            :         nd->path.mnt = path->mnt;
     877                 :            :         nd->path.dentry = path->dentry;
     878                 :            : }
     879                 :            : 
     880                 :     989609 : static int nd_jump_root(struct nameidata *nd)
     881                 :            : {
     882         [ +  - ]:     989609 :         if (unlikely(nd->flags & LOOKUP_BENEATH))
     883                 :            :                 return -EXDEV;
     884         [ -  + ]:     989609 :         if (unlikely(nd->flags & LOOKUP_NO_XDEV)) {
     885                 :            :                 /* Absolute path arguments to path_init() are allowed. */
     886   [ #  #  #  # ]:          0 :                 if (nd->path.mnt != NULL && nd->path.mnt != nd->root.mnt)
     887                 :            :                         return -EXDEV;
     888                 :            :         }
     889         [ +  + ]:     989609 :         if (!nd->root.mnt) {
     890                 :     965060 :                 int error = set_root(nd);
     891         [ +  - ]:     965060 :                 if (error)
     892                 :            :                         return error;
     893                 :            :         }
     894         [ +  + ]:     989609 :         if (nd->flags & LOOKUP_RCU) {
     895                 :     989068 :                 struct dentry *d;
     896                 :     989068 :                 nd->path = nd->root;
     897                 :     989068 :                 d = nd->path.dentry;
     898                 :     989068 :                 nd->inode = d->d_inode;
     899                 :     989068 :                 nd->seq = nd->root_seq;
     900         [ +  - ]:     989068 :                 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
     901                 :            :                         return -ECHILD;
     902                 :            :         } else {
     903                 :        541 :                 path_put(&nd->path);
     904                 :        541 :                 nd->path = nd->root;
     905                 :        541 :                 path_get(&nd->path);
     906                 :        541 :                 nd->inode = nd->path.dentry->d_inode;
     907                 :            :         }
     908                 :     989609 :         nd->flags |= LOOKUP_JUMPED;
     909                 :     989609 :         return 0;
     910                 :            : }
     911                 :            : 
     912                 :            : /*
     913                 :            :  * Helper to directly jump to a known parsed path from ->get_link,
     914                 :            :  * caller must have taken a reference to path beforehand.
     915                 :            :  */
     916                 :       4182 : int nd_jump_link(struct path *path)
     917                 :            : {
     918                 :       4182 :         int error = -ELOOP;
     919         [ -  + ]:       4182 :         struct nameidata *nd = current->nameidata;
     920                 :            : 
     921         [ -  + ]:       4182 :         if (unlikely(nd->flags & LOOKUP_NO_MAGICLINKS))
     922                 :          0 :                 goto err;
     923                 :            : 
     924                 :       4182 :         error = -EXDEV;
     925         [ -  + ]:       4182 :         if (unlikely(nd->flags & LOOKUP_NO_XDEV)) {
     926         [ #  # ]:          0 :                 if (nd->path.mnt != path->mnt)
     927                 :          0 :                         goto err;
     928                 :            :         }
     929                 :            :         /* Not currently safe for scoped-lookups. */
     930         [ -  + ]:       4182 :         if (unlikely(nd->flags & LOOKUP_IS_SCOPED))
     931                 :          0 :                 goto err;
     932                 :            : 
     933                 :       4182 :         path_put(&nd->path);
     934                 :       4182 :         nd->path = *path;
     935                 :       4182 :         nd->inode = nd->path.dentry->d_inode;
     936                 :       4182 :         nd->flags |= LOOKUP_JUMPED;
     937                 :       4182 :         return 0;
     938                 :            : 
     939                 :          0 : err:
     940                 :          0 :         path_put(path);
     941                 :          0 :         return error;
     942                 :            : }
     943                 :            : 
     944                 :     243380 : static inline void put_link(struct nameidata *nd)
     945                 :            : {
     946                 :     243380 :         struct saved *last = nd->stack + --nd->depth;
     947         [ +  + ]:     243380 :         do_delayed_call(&last->done);
     948         [ +  + ]:     243380 :         if (!(nd->flags & LOOKUP_RCU))
     949                 :      26063 :                 path_put(&last->link);
     950                 :     243380 : }
     951                 :            : 
     952                 :            : int sysctl_protected_symlinks __read_mostly = 0;
     953                 :            : int sysctl_protected_hardlinks __read_mostly = 0;
     954                 :            : int sysctl_protected_fifos __read_mostly;
     955                 :            : int sysctl_protected_regular __read_mostly;
     956                 :            : 
     957                 :            : /**
     958                 :            :  * may_follow_link - Check symlink following for unsafe situations
     959                 :            :  * @nd: nameidata pathwalk data
     960                 :            :  *
     961                 :            :  * In the case of the sysctl_protected_symlinks sysctl being enabled,
     962                 :            :  * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
     963                 :            :  * in a sticky world-writable directory. This is to protect privileged
     964                 :            :  * processes from failing races against path names that may change out
     965                 :            :  * from under them by way of other users creating malicious symlinks.
     966                 :            :  * It will permit symlinks to be followed only when outside a sticky
     967                 :            :  * world-writable directory, or when the uid of the symlink and follower
     968                 :            :  * match, or when the directory owner matches the symlink's owner.
     969                 :            :  *
     970                 :            :  * Returns 0 if following the symlink is allowed, -ve on error.
     971                 :            :  */
     972                 :      95176 : static inline int may_follow_link(struct nameidata *nd)
     973                 :            : {
     974                 :      95176 :         const struct inode *inode;
     975                 :      95176 :         const struct inode *parent;
     976                 :      95176 :         kuid_t puid;
     977                 :            : 
     978         [ +  + ]:      95176 :         if (!sysctl_protected_symlinks)
     979                 :            :                 return 0;
     980                 :            : 
     981                 :            :         /* Allowed if owner and follower match. */
     982                 :      81125 :         inode = nd->link_inode;
     983         [ +  + ]:      81125 :         if (uid_eq(current_cred()->fsuid, inode->i_uid))
     984                 :            :                 return 0;
     985                 :            : 
     986                 :            :         /* Allowed if parent directory not sticky and world-writable. */
     987                 :        567 :         parent = nd->inode;
     988         [ -  + ]:        567 :         if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
     989                 :            :                 return 0;
     990                 :            : 
     991                 :            :         /* Allowed if parent directory and link owner match. */
     992                 :          0 :         puid = parent->i_uid;
     993   [ #  #  #  # ]:          0 :         if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
     994                 :            :                 return 0;
     995                 :            : 
     996         [ #  # ]:          0 :         if (nd->flags & LOOKUP_RCU)
     997                 :            :                 return -ECHILD;
     998                 :            : 
     999                 :          0 :         audit_inode(nd->name, nd->stack[0].link.dentry, 0);
    1000                 :          0 :         audit_log_path_denied(AUDIT_ANOM_LINK, "follow_link");
    1001                 :          0 :         return -EACCES;
    1002                 :            : }
    1003                 :            : 
    1004                 :            : /**
    1005                 :            :  * safe_hardlink_source - Check for safe hardlink conditions
    1006                 :            :  * @inode: the source inode to hardlink from
    1007                 :            :  *
    1008                 :            :  * Return false if at least one of the following conditions:
    1009                 :            :  *    - inode is not a regular file
    1010                 :            :  *    - inode is setuid
    1011                 :            :  *    - inode is setgid and group-exec
    1012                 :            :  *    - access failure for read and write
    1013                 :            :  *
    1014                 :            :  * Otherwise returns true.
    1015                 :            :  */
    1016                 :          0 : static bool safe_hardlink_source(struct inode *inode)
    1017                 :            : {
    1018                 :          0 :         umode_t mode = inode->i_mode;
    1019                 :            : 
    1020                 :            :         /* Special files should not get pinned to the filesystem. */
    1021         [ #  # ]:          0 :         if (!S_ISREG(mode))
    1022                 :            :                 return false;
    1023                 :            : 
    1024                 :            :         /* Setuid files should not get pinned to the filesystem. */
    1025         [ #  # ]:          0 :         if (mode & S_ISUID)
    1026                 :            :                 return false;
    1027                 :            : 
    1028                 :            :         /* Executable setgid files should not get pinned to the filesystem. */
    1029         [ #  # ]:          0 :         if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
    1030                 :            :                 return false;
    1031                 :            : 
    1032                 :            :         /* Hardlinking to unreadable or unwritable sources is dangerous. */
    1033         [ #  # ]:          0 :         if (inode_permission(inode, MAY_READ | MAY_WRITE))
    1034                 :          0 :                 return false;
    1035                 :            : 
    1036                 :            :         return true;
    1037                 :            : }
    1038                 :            : 
    1039                 :            : /**
    1040                 :            :  * may_linkat - Check permissions for creating a hardlink
    1041                 :            :  * @link: the source to hardlink from
    1042                 :            :  *
    1043                 :            :  * Block hardlink when all of:
    1044                 :            :  *  - sysctl_protected_hardlinks enabled
    1045                 :            :  *  - fsuid does not match inode
    1046                 :            :  *  - hardlink source is unsafe (see safe_hardlink_source() above)
    1047                 :            :  *  - not CAP_FOWNER in a namespace with the inode owner uid mapped
    1048                 :            :  *
    1049                 :            :  * Returns 0 if successful, -ve on error.
    1050                 :            :  */
    1051                 :            : static int may_linkat(struct path *link)
    1052                 :            : {
    1053                 :            :         struct inode *inode = link->dentry->d_inode;
    1054                 :            : 
    1055                 :            :         /* Inode writeback is not safe when the uid or gid are invalid. */
    1056                 :            :         if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
    1057                 :            :                 return -EOVERFLOW;
    1058                 :            : 
    1059                 :            :         if (!sysctl_protected_hardlinks)
    1060                 :            :                 return 0;
    1061                 :            : 
    1062                 :            :         /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
    1063                 :            :          * otherwise, it must be a safe source.
    1064                 :            :          */
    1065                 :            :         if (safe_hardlink_source(inode) || inode_owner_or_capable(inode))
    1066                 :            :                 return 0;
    1067                 :            : 
    1068                 :            :         audit_log_path_denied(AUDIT_ANOM_LINK, "linkat");
    1069                 :            :         return -EPERM;
    1070                 :            : }
    1071                 :            : 
    1072                 :            : /**
    1073                 :            :  * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory
    1074                 :            :  *                        should be allowed, or not, on files that already
    1075                 :            :  *                        exist.
    1076                 :            :  * @dir_mode: mode bits of directory
    1077                 :            :  * @dir_uid: owner of directory
    1078                 :            :  * @inode: the inode of the file to open
    1079                 :            :  *
    1080                 :            :  * Block an O_CREAT open of a FIFO (or a regular file) when:
    1081                 :            :  *   - sysctl_protected_fifos (or sysctl_protected_regular) is enabled
    1082                 :            :  *   - the file already exists
    1083                 :            :  *   - we are in a sticky directory
    1084                 :            :  *   - we don't own the file
    1085                 :            :  *   - the owner of the directory doesn't own the file
    1086                 :            :  *   - the directory is world writable
    1087                 :            :  * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2
    1088                 :            :  * the directory doesn't have to be world writable: being group writable will
    1089                 :            :  * be enough.
    1090                 :            :  *
    1091                 :            :  * Returns 0 if the open is allowed, -ve on error.
    1092                 :            :  */
    1093                 :        336 : static int may_create_in_sticky(umode_t dir_mode, kuid_t dir_uid,
    1094                 :            :                                 struct inode * const inode)
    1095                 :            : {
    1096   [ +  -  +  - ]:        336 :         if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) ||
    1097   [ +  -  +  + ]:        336 :             (!sysctl_protected_regular && S_ISREG(inode->i_mode)) ||
    1098   [ -  +  -  - ]:         84 :             likely(!(dir_mode & S_ISVTX)) ||
    1099         [ #  # ]:          0 :             uid_eq(inode->i_uid, dir_uid) ||
    1100         [ #  # ]:          0 :             uid_eq(current_fsuid(), inode->i_uid))
    1101                 :            :                 return 0;
    1102                 :            : 
    1103   [ #  #  #  # ]:          0 :         if (likely(dir_mode & 0002) ||
    1104         [ #  # ]:          0 :             (dir_mode & 0020 &&
    1105   [ #  #  #  # ]:          0 :              ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) ||
    1106         [ #  # ]:          0 :               (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) {
    1107                 :          0 :                 const char *operation = S_ISFIFO(inode->i_mode) ?
    1108         [ #  # ]:          0 :                                         "sticky_create_fifo" :
    1109                 :            :                                         "sticky_create_regular";
    1110                 :          0 :                 audit_log_path_denied(AUDIT_ANOM_CREAT, operation);
    1111                 :          0 :                 return -EACCES;
    1112                 :            :         }
    1113                 :            :         return 0;
    1114                 :            : }
    1115                 :            : 
    1116                 :            : static __always_inline
    1117                 :     243422 : const char *get_link(struct nameidata *nd)
    1118                 :            : {
    1119                 :     243422 :         struct saved *last = nd->stack + nd->depth - 1;
    1120                 :     243422 :         struct dentry *dentry = last->link.dentry;
    1121                 :     243422 :         struct inode *inode = nd->link_inode;
    1122                 :     243422 :         int error;
    1123                 :     243422 :         const char *res;
    1124                 :            : 
    1125                 :     243422 :         if (unlikely(nd->flags & LOOKUP_NO_SYMLINKS))
    1126                 :            :                 return ERR_PTR(-ELOOP);
    1127                 :            : 
    1128   [ +  +  +  + ]:     243422 :         if (!(nd->flags & LOOKUP_RCU)) {
    1129                 :      15288 :                 touch_atime(&last->link);
    1130                 :      15288 :                 cond_resched();
    1131   [ +  +  +  + ]:     228134 :         } else if (atime_needs_update(&last->link, inode)) {
    1132   [ +  -  +  - ]:        499 :                 if (unlikely(unlazy_walk(nd)))
    1133                 :            :                         return ERR_PTR(-ECHILD);
    1134                 :        499 :                 touch_atime(&last->link);
    1135                 :            :         }
    1136                 :            : 
    1137                 :     243422 :         error = security_inode_follow_link(dentry, inode,
    1138                 :     243422 :                                            nd->flags & LOOKUP_RCU);
    1139   [ -  +  -  + ]:     243422 :         if (unlikely(error))
    1140                 :          0 :                 return ERR_PTR(error);
    1141                 :            : 
    1142                 :     243422 :         nd->last_type = LAST_BIND;
    1143   [ +  +  +  + ]:     243422 :         res = READ_ONCE(inode->i_link);
    1144   [ +  +  +  + ]:     243422 :         if (!res) {
    1145                 :      18428 :                 const char * (*get)(struct dentry *, struct inode *,
    1146                 :            :                                 struct delayed_call *);
    1147                 :      18428 :                 get = inode->i_op->get_link;
    1148   [ -  +  +  + ]:      18428 :                 if (nd->flags & LOOKUP_RCU) {
    1149                 :      10276 :                         res = get(NULL, inode, &last->done);
    1150   [ -  -  -  + ]:      10276 :                         if (res == ERR_PTR(-ECHILD)) {
    1151   [ #  #  #  # ]:          0 :                                 if (unlikely(unlazy_walk(nd)))
    1152                 :            :                                         return ERR_PTR(-ECHILD);
    1153                 :          0 :                                 res = get(dentry, inode, &last->done);
    1154                 :            :                         }
    1155                 :            :                 } else {
    1156                 :       8152 :                         res = get(dentry, inode, &last->done);
    1157                 :            :                 }
    1158   [ +  +  +  +  :      32674 :                 if (IS_ERR_OR_NULL(res))
             +  -  +  - ]
    1159                 :            :                         return res;
    1160                 :            :         }
    1161   [ +  +  +  + ]:     239240 :         if (*res == '/') {
    1162                 :      24549 :                 error = nd_jump_root(nd);
    1163   [ -  +  -  + ]:      24549 :                 if (unlikely(error))
    1164                 :          0 :                         return ERR_PTR(error);
    1165                 :      24549 :                 while (unlikely(*++res == '/'))
    1166   [ -  +  -  + ]:      24549 :                         ;
    1167                 :            :         }
    1168   [ +  -  -  + ]:     239240 :         if (!*res)
    1169                 :          0 :                 res = NULL;
    1170                 :            :         return res;
    1171                 :            : }
    1172                 :            : 
    1173                 :            : /*
    1174                 :            :  * follow_up - Find the mountpoint of path's vfsmount
    1175                 :            :  *
    1176                 :            :  * Given a path, find the mountpoint of its source file system.
    1177                 :            :  * Replace @path with the path of the mountpoint in the parent mount.
    1178                 :            :  * Up is towards /.
    1179                 :            :  *
    1180                 :            :  * Return 1 if we went up a level and 0 if we were already at the
    1181                 :            :  * root.
    1182                 :            :  */
    1183                 :          0 : int follow_up(struct path *path)
    1184                 :            : {
    1185                 :          0 :         struct mount *mnt = real_mount(path->mnt);
    1186                 :          0 :         struct mount *parent;
    1187                 :          0 :         struct dentry *mountpoint;
    1188                 :            : 
    1189                 :          0 :         read_seqlock_excl(&mount_lock);
    1190                 :          0 :         parent = mnt->mnt_parent;
    1191         [ #  # ]:          0 :         if (parent == mnt) {
    1192                 :          0 :                 read_sequnlock_excl(&mount_lock);
    1193                 :          0 :                 return 0;
    1194                 :            :         }
    1195                 :          0 :         mntget(&parent->mnt);
    1196         [ #  # ]:          0 :         mountpoint = dget(mnt->mnt_mountpoint);
    1197                 :          0 :         read_sequnlock_excl(&mount_lock);
    1198                 :          0 :         dput(path->dentry);
    1199                 :          0 :         path->dentry = mountpoint;
    1200                 :          0 :         mntput(path->mnt);
    1201                 :          0 :         path->mnt = &parent->mnt;
    1202                 :          0 :         return 1;
    1203                 :            : }
    1204                 :            : EXPORT_SYMBOL(follow_up);
    1205                 :            : 
    1206                 :            : /*
    1207                 :            :  * Perform an automount
    1208                 :            :  * - return -EISDIR to tell follow_managed() to stop and return the path we
    1209                 :            :  *   were called with.
    1210                 :            :  */
    1211                 :            : static int follow_automount(struct path *path, struct nameidata *nd,
    1212                 :            :                             bool *need_mntput)
    1213                 :            : {
    1214                 :            :         struct vfsmount *mnt;
    1215                 :            :         int err;
    1216                 :            : 
    1217                 :            :         if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
    1218                 :            :                 return -EREMOTE;
    1219                 :            : 
    1220                 :            :         /* We don't want to mount if someone's just doing a stat -
    1221                 :            :          * unless they're stat'ing a directory and appended a '/' to
    1222                 :            :          * the name.
    1223                 :            :          *
    1224                 :            :          * We do, however, want to mount if someone wants to open or
    1225                 :            :          * create a file of any type under the mountpoint, wants to
    1226                 :            :          * traverse through the mountpoint or wants to open the
    1227                 :            :          * mounted directory.  Also, autofs may mark negative dentries
    1228                 :            :          * as being automount points.  These will need the attentions
    1229                 :            :          * of the daemon to instantiate them before they can be used.
    1230                 :            :          */
    1231                 :            :         if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
    1232                 :            :                            LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
    1233                 :            :             path->dentry->d_inode)
    1234                 :            :                 return -EISDIR;
    1235                 :            : 
    1236                 :            :         nd->total_link_count++;
    1237                 :            :         if (nd->total_link_count >= 40)
    1238                 :            :                 return -ELOOP;
    1239                 :            : 
    1240                 :            :         mnt = path->dentry->d_op->d_automount(path);
    1241                 :            :         if (IS_ERR(mnt)) {
    1242                 :            :                 /*
    1243                 :            :                  * The filesystem is allowed to return -EISDIR here to indicate
    1244                 :            :                  * it doesn't want to automount.  For instance, autofs would do
    1245                 :            :                  * this so that its userspace daemon can mount on this dentry.
    1246                 :            :                  *
    1247                 :            :                  * However, we can only permit this if it's a terminal point in
    1248                 :            :                  * the path being looked up; if it wasn't then the remainder of
    1249                 :            :                  * the path is inaccessible and we should say so.
    1250                 :            :                  */
    1251                 :            :                 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
    1252                 :            :                         return -EREMOTE;
    1253                 :            :                 return PTR_ERR(mnt);
    1254                 :            :         }
    1255                 :            : 
    1256                 :            :         if (!mnt) /* mount collision */
    1257                 :            :                 return 0;
    1258                 :            : 
    1259                 :            :         if (!*need_mntput) {
    1260                 :            :                 /* lock_mount() may release path->mnt on error */
    1261                 :            :                 mntget(path->mnt);
    1262                 :            :                 *need_mntput = true;
    1263                 :            :         }
    1264                 :            :         err = finish_automount(mnt, path);
    1265                 :            : 
    1266                 :            :         switch (err) {
    1267                 :            :         case -EBUSY:
    1268                 :            :                 /* Someone else made a mount here whilst we were busy */
    1269                 :            :                 return 0;
    1270                 :            :         case 0:
    1271                 :            :                 path_put(path);
    1272                 :            :                 path->mnt = mnt;
    1273                 :            :                 path->dentry = dget(mnt->mnt_root);
    1274                 :            :                 return 0;
    1275                 :            :         default:
    1276                 :            :                 return err;
    1277                 :            :         }
    1278                 :            : 
    1279                 :            : }
    1280                 :            : 
    1281                 :            : /*
    1282                 :            :  * Handle a dentry that is managed in some way.
    1283                 :            :  * - Flagged for transit management (autofs)
    1284                 :            :  * - Flagged as mountpoint
    1285                 :            :  * - Flagged as automount point
    1286                 :            :  *
    1287                 :            :  * This may only be called in refwalk mode.
    1288                 :            :  * On success path->dentry is known positive.
    1289                 :            :  *
    1290                 :            :  * Serialization is taken care of in namespace.c
    1291                 :            :  */
    1292                 :    1179820 : static int follow_managed(struct path *path, struct nameidata *nd)
    1293                 :            : {
    1294                 :    1179820 :         struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
    1295                 :    1179820 :         unsigned flags;
    1296                 :    1179820 :         bool need_mntput = false;
    1297                 :    1179820 :         int ret = 0;
    1298                 :            : 
    1299                 :            :         /* Given that we're not holding a lock here, we retain the value in a
    1300                 :            :          * local variable for each dentry as we look at it so that we don't see
    1301                 :            :          * the components of that value change under us */
    1302                 :    1240192 :         while (flags = smp_load_acquire(&path->dentry->d_flags),
    1303         [ +  + ]:    1240192 :                unlikely(flags & DCACHE_MANAGED_DENTRY)) {
    1304                 :            :                 /* Allow the filesystem to manage the transit without i_mutex
    1305                 :            :                  * being held. */
    1306         [ +  + ]:      61653 :                 if (flags & DCACHE_MANAGE_TRANSIT) {
    1307         [ -  + ]:        252 :                         BUG_ON(!path->dentry->d_op);
    1308         [ -  + ]:        252 :                         BUG_ON(!path->dentry->d_op->d_manage);
    1309                 :        252 :                         ret = path->dentry->d_op->d_manage(path, false);
    1310                 :        252 :                         flags = smp_load_acquire(&path->dentry->d_flags);
    1311         [ +  + ]:        252 :                         if (ret < 0)
    1312                 :            :                                 break;
    1313                 :            :                 }
    1314                 :            : 
    1315                 :            :                 /* Transit to a mounted filesystem. */
    1316         [ +  - ]:      61485 :                 if (flags & DCACHE_MOUNTED) {
    1317                 :      61485 :                         struct vfsmount *mounted = lookup_mnt(path);
    1318         [ +  + ]:      61485 :                         if (mounted) {
    1319                 :      60372 :                                 dput(path->dentry);
    1320         [ +  + ]:      60372 :                                 if (need_mntput)
    1321                 :         84 :                                         mntput(path->mnt);
    1322                 :      60372 :                                 path->mnt = mounted;
    1323         [ +  - ]:      60372 :                                 path->dentry = dget(mounted->mnt_root);
    1324                 :      60372 :                                 need_mntput = true;
    1325                 :      60372 :                                 continue;
    1326                 :            :                         }
    1327                 :            : 
    1328                 :            :                         /* Something is mounted on this dentry in another
    1329                 :            :                          * namespace and/or whatever was mounted there in this
    1330                 :            :                          * namespace got unmounted before lookup_mnt() could
    1331                 :            :                          * get it */
    1332                 :            :                 }
    1333                 :            : 
    1334                 :            :                 /* Handle an automount point */
    1335         [ -  + ]:       1113 :                 if (flags & DCACHE_NEED_AUTOMOUNT) {
    1336                 :          0 :                         ret = follow_automount(path, nd, &need_mntput);
    1337         [ #  # ]:          0 :                         if (ret < 0)
    1338                 :            :                                 break;
    1339                 :          0 :                         continue;
    1340                 :            :                 }
    1341                 :            : 
    1342                 :            :                 /* We didn't change the current path point */
    1343                 :            :                 break;
    1344                 :            :         }
    1345                 :            : 
    1346         [ +  + ]:    1179820 :         if (need_mntput) {
    1347         [ -  + ]:      60288 :                 if (path->mnt == mnt)
    1348                 :          0 :                         mntput(path->mnt);
    1349         [ +  - ]:      60288 :                 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
    1350                 :            :                         ret = -EXDEV;
    1351                 :            :                 else
    1352                 :      60288 :                         nd->flags |= LOOKUP_JUMPED;
    1353                 :            :         }
    1354         [ -  + ]:    1179820 :         if (ret == -EISDIR || !ret)
    1355                 :            :                 ret = 1;
    1356   [ -  -  +  + ]:    1179820 :         if (ret > 0 && unlikely(d_flags_negative(flags)))
    1357                 :     198810 :                 ret = -ENOENT;
    1358         [ +  + ]:    1179820 :         if (unlikely(ret < 0))
    1359                 :     198810 :                 path_put_conditional(path, nd);
    1360                 :    1179820 :         return ret;
    1361                 :            : }
    1362                 :            : 
    1363                 :          0 : int follow_down_one(struct path *path)
    1364                 :            : {
    1365                 :          0 :         struct vfsmount *mounted;
    1366                 :            : 
    1367                 :          0 :         mounted = lookup_mnt(path);
    1368         [ #  # ]:          0 :         if (mounted) {
    1369                 :          0 :                 dput(path->dentry);
    1370                 :          0 :                 mntput(path->mnt);
    1371                 :          0 :                 path->mnt = mounted;
    1372         [ #  # ]:          0 :                 path->dentry = dget(mounted->mnt_root);
    1373                 :          0 :                 return 1;
    1374                 :            :         }
    1375                 :            :         return 0;
    1376                 :            : }
    1377                 :            : EXPORT_SYMBOL(follow_down_one);
    1378                 :            : 
    1379                 :            : static inline int managed_dentry_rcu(const struct path *path)
    1380                 :            : {
    1381                 :            :         return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
    1382                 :            :                 path->dentry->d_op->d_manage(path, true) : 0;
    1383                 :            : }
    1384                 :            : 
    1385                 :            : /*
    1386                 :            :  * Try to skip to top of mountpoint pile in rcuwalk mode.  Fail if
    1387                 :            :  * we meet a managed dentry that would need blocking.
    1388                 :            :  */
    1389                 :            : static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
    1390                 :            :                                struct inode **inode, unsigned *seqp)
    1391                 :            : {
    1392                 :            :         for (;;) {
    1393                 :            :                 struct mount *mounted;
    1394                 :            :                 /*
    1395                 :            :                  * Don't forget we might have a non-mountpoint managed dentry
    1396                 :            :                  * that wants to block transit.
    1397                 :            :                  */
    1398                 :            :                 switch (managed_dentry_rcu(path)) {
    1399                 :            :                 case -ECHILD:
    1400                 :            :                 default:
    1401                 :            :                         return false;
    1402                 :            :                 case -EISDIR:
    1403                 :            :                         return true;
    1404                 :            :                 case 0:
    1405                 :            :                         break;
    1406                 :            :                 }
    1407                 :            : 
    1408                 :            :                 if (!d_mountpoint(path->dentry))
    1409                 :            :                         return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
    1410                 :            : 
    1411                 :            :                 mounted = __lookup_mnt(path->mnt, path->dentry);
    1412                 :            :                 if (!mounted)
    1413                 :            :                         break;
    1414                 :            :                 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
    1415                 :            :                         return false;
    1416                 :            :                 path->mnt = &mounted->mnt;
    1417                 :            :                 path->dentry = mounted->mnt.mnt_root;
    1418                 :            :                 nd->flags |= LOOKUP_JUMPED;
    1419                 :            :                 *seqp = read_seqcount_begin(&path->dentry->d_seq);
    1420                 :            :                 /*
    1421                 :            :                  * Update the inode too. We don't need to re-check the
    1422                 :            :                  * dentry sequence number here after this d_inode read,
    1423                 :            :                  * because a mount-point is always pinned.
    1424                 :            :                  */
    1425                 :            :                 *inode = path->dentry->d_inode;
    1426                 :            :         }
    1427                 :            :         return !read_seqretry(&mount_lock, nd->m_seq) &&
    1428                 :            :                 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
    1429                 :            : }
    1430                 :            : 
    1431                 :       1680 : static int follow_dotdot_rcu(struct nameidata *nd)
    1432                 :            : {
    1433                 :       1680 :         struct inode *inode = nd->inode;
    1434                 :            : 
    1435                 :       1680 :         while (1) {
    1436         [ +  + ]:       1680 :                 if (path_equal(&nd->path, &nd->root)) {
    1437         [ +  - ]:         21 :                         if (unlikely(nd->flags & LOOKUP_BENEATH))
    1438                 :            :                                 return -ECHILD;
    1439                 :            :                         break;
    1440                 :            :                 }
    1441         [ +  - ]:       1659 :                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
    1442                 :       1659 :                         struct dentry *old = nd->path.dentry;
    1443                 :       1659 :                         struct dentry *parent = old->d_parent;
    1444                 :       1659 :                         unsigned seq;
    1445                 :            : 
    1446                 :       1659 :                         inode = parent->d_inode;
    1447                 :       1659 :                         seq = read_seqcount_begin(&parent->d_seq);
    1448         [ +  - ]:       1659 :                         if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
    1449                 :            :                                 return -ECHILD;
    1450                 :       1659 :                         nd->path.dentry = parent;
    1451                 :       1659 :                         nd->seq = seq;
    1452         [ +  - ]:       1659 :                         if (unlikely(!path_connected(&nd->path)))
    1453                 :            :                                 return -ECHILD;
    1454                 :            :                         break;
    1455                 :            :                 } else {
    1456                 :          0 :                         struct mount *mnt = real_mount(nd->path.mnt);
    1457                 :          0 :                         struct mount *mparent = mnt->mnt_parent;
    1458                 :          0 :                         struct dentry *mountpoint = mnt->mnt_mountpoint;
    1459                 :          0 :                         struct inode *inode2 = mountpoint->d_inode;
    1460                 :          0 :                         unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
    1461         [ #  # ]:          0 :                         if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
    1462                 :            :                                 return -ECHILD;
    1463         [ #  # ]:          0 :                         if (&mparent->mnt == nd->path.mnt)
    1464                 :            :                                 break;
    1465         [ #  # ]:          0 :                         if (unlikely(nd->flags & LOOKUP_NO_XDEV))
    1466                 :            :                                 return -ECHILD;
    1467                 :            :                         /* we know that mountpoint was pinned */
    1468                 :          0 :                         nd->path.dentry = mountpoint;
    1469                 :          0 :                         nd->path.mnt = &mparent->mnt;
    1470                 :          0 :                         inode = inode2;
    1471                 :          0 :                         nd->seq = seq;
    1472                 :            :                 }
    1473                 :            :         }
    1474         [ +  + ]:       1701 :         while (unlikely(d_mountpoint(nd->path.dentry))) {
    1475                 :         21 :                 struct mount *mounted;
    1476                 :         21 :                 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
    1477         [ +  - ]:         21 :                 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
    1478                 :            :                         return -ECHILD;
    1479         [ +  - ]:         21 :                 if (!mounted)
    1480                 :            :                         break;
    1481         [ +  - ]:         21 :                 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
    1482                 :            :                         return -ECHILD;
    1483                 :         21 :                 nd->path.mnt = &mounted->mnt;
    1484                 :         21 :                 nd->path.dentry = mounted->mnt.mnt_root;
    1485                 :         21 :                 inode = nd->path.dentry->d_inode;
    1486                 :         42 :                 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
    1487                 :            :         }
    1488                 :       1680 :         nd->inode = inode;
    1489                 :       1680 :         return 0;
    1490                 :            : }
    1491                 :            : 
    1492                 :            : /*
    1493                 :            :  * Follow down to the covering mount currently visible to userspace.  At each
    1494                 :            :  * point, the filesystem owning that dentry may be queried as to whether the
    1495                 :            :  * caller is permitted to proceed or not.
    1496                 :            :  */
    1497                 :          0 : int follow_down(struct path *path)
    1498                 :            : {
    1499                 :          0 :         unsigned managed;
    1500                 :          0 :         int ret;
    1501                 :            : 
    1502         [ #  # ]:          0 :         while (managed = READ_ONCE(path->dentry->d_flags),
    1503         [ #  # ]:          0 :                unlikely(managed & DCACHE_MANAGED_DENTRY)) {
    1504                 :            :                 /* Allow the filesystem to manage the transit without i_mutex
    1505                 :            :                  * being held.
    1506                 :            :                  *
    1507                 :            :                  * We indicate to the filesystem if someone is trying to mount
    1508                 :            :                  * something here.  This gives autofs the chance to deny anyone
    1509                 :            :                  * other than its daemon the right to mount on its
    1510                 :            :                  * superstructure.
    1511                 :            :                  *
    1512                 :            :                  * The filesystem may sleep at this point.
    1513                 :            :                  */
    1514         [ #  # ]:          0 :                 if (managed & DCACHE_MANAGE_TRANSIT) {
    1515         [ #  # ]:          0 :                         BUG_ON(!path->dentry->d_op);
    1516         [ #  # ]:          0 :                         BUG_ON(!path->dentry->d_op->d_manage);
    1517                 :          0 :                         ret = path->dentry->d_op->d_manage(path, false);
    1518         [ #  # ]:          0 :                         if (ret < 0)
    1519         [ #  # ]:          0 :                                 return ret == -EISDIR ? 0 : ret;
    1520                 :            :                 }
    1521                 :            : 
    1522                 :            :                 /* Transit to a mounted filesystem. */
    1523         [ #  # ]:          0 :                 if (managed & DCACHE_MOUNTED) {
    1524                 :          0 :                         struct vfsmount *mounted = lookup_mnt(path);
    1525         [ #  # ]:          0 :                         if (!mounted)
    1526                 :            :                                 break;
    1527                 :          0 :                         dput(path->dentry);
    1528                 :          0 :                         mntput(path->mnt);
    1529                 :          0 :                         path->mnt = mounted;
    1530         [ #  # ]:          0 :                         path->dentry = dget(mounted->mnt_root);
    1531                 :          0 :                         continue;
    1532                 :            :                 }
    1533                 :            : 
    1534                 :            :                 /* Don't handle automount points here */
    1535                 :            :                 break;
    1536                 :            :         }
    1537                 :            :         return 0;
    1538                 :            : }
    1539                 :            : EXPORT_SYMBOL(follow_down);
    1540                 :            : 
    1541                 :            : /*
    1542                 :            :  * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
    1543                 :            :  */
    1544                 :      32485 : static void follow_mount(struct path *path)
    1545                 :            : {
    1546         [ -  + ]:      32485 :         while (d_mountpoint(path->dentry)) {
    1547                 :          0 :                 struct vfsmount *mounted = lookup_mnt(path);
    1548         [ #  # ]:          0 :                 if (!mounted)
    1549                 :            :                         break;
    1550                 :          0 :                 dput(path->dentry);
    1551                 :          0 :                 mntput(path->mnt);
    1552                 :          0 :                 path->mnt = mounted;
    1553         [ #  # ]:          0 :                 path->dentry = dget(mounted->mnt_root);
    1554                 :            :         }
    1555                 :      32485 : }
    1556                 :            : 
    1557                 :      32485 : static int path_parent_directory(struct path *path)
    1558                 :            : {
    1559                 :      32485 :         struct dentry *old = path->dentry;
    1560                 :            :         /* rare case of legitimate dget_parent()... */
    1561                 :      32485 :         path->dentry = dget_parent(path->dentry);
    1562                 :      32485 :         dput(old);
    1563         [ -  + ]:      32485 :         if (unlikely(!path_connected(path)))
    1564                 :          0 :                 return -ENOENT;
    1565                 :            :         return 0;
    1566                 :            : }
    1567                 :            : 
    1568                 :      32485 : static int follow_dotdot(struct nameidata *nd)
    1569                 :            : {
    1570                 :      32485 :         while (1) {
    1571         [ +  + ]:      32485 :                 if (path_equal(&nd->path, &nd->root)) {
    1572         [ #  # ]:          0 :                         if (unlikely(nd->flags & LOOKUP_BENEATH))
    1573                 :            :                                 return -EXDEV;
    1574                 :            :                         break;
    1575                 :            :                 }
    1576         [ +  - ]:      32485 :                 if (nd->path.dentry != nd->path.mnt->mnt_root) {
    1577                 :      32485 :                         int ret = path_parent_directory(&nd->path);
    1578         [ +  - ]:      32485 :                         if (ret)
    1579                 :            :                                 return ret;
    1580                 :            :                         break;
    1581                 :            :                 }
    1582         [ #  # ]:          0 :                 if (!follow_up(&nd->path))
    1583                 :            :                         break;
    1584         [ #  # ]:          0 :                 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
    1585                 :            :                         return -EXDEV;
    1586                 :            :         }
    1587                 :      32485 :         follow_mount(&nd->path);
    1588                 :      32485 :         nd->inode = nd->path.dentry->d_inode;
    1589                 :      32485 :         return 0;
    1590                 :            : }
    1591                 :            : 
    1592                 :            : /*
    1593                 :            :  * This looks up the name in dcache and possibly revalidates the found dentry.
    1594                 :            :  * NULL is returned if the dentry does not exist in the cache.
    1595                 :            :  */
    1596                 :     383881 : static struct dentry *lookup_dcache(const struct qstr *name,
    1597                 :            :                                     struct dentry *dir,
    1598                 :            :                                     unsigned int flags)
    1599                 :            : {
    1600                 :     383881 :         struct dentry *dentry = d_lookup(dir, name);
    1601         [ +  + ]:     383881 :         if (dentry) {
    1602         [ +  + ]:      74142 :                 int error = d_revalidate(dentry, flags);
    1603         [ -  + ]:      74142 :                 if (unlikely(error <= 0)) {
    1604         [ #  # ]:          0 :                         if (!error)
    1605                 :          0 :                                 d_invalidate(dentry);
    1606                 :          0 :                         dput(dentry);
    1607                 :          0 :                         return ERR_PTR(error);
    1608                 :            :                 }
    1609                 :            :         }
    1610                 :            :         return dentry;
    1611                 :            : }
    1612                 :            : 
    1613                 :            : /*
    1614                 :            :  * Parent directory has inode locked exclusive.  This is one
    1615                 :            :  * and only case when ->lookup() gets called on non in-lookup
    1616                 :            :  * dentries - as the matter of fact, this only gets called
    1617                 :            :  * when directory is guaranteed to have no in-lookup children
    1618                 :            :  * at all.
    1619                 :            :  */
    1620                 :     100276 : static struct dentry *__lookup_hash(const struct qstr *name,
    1621                 :            :                 struct dentry *base, unsigned int flags)
    1622                 :            : {
    1623                 :     100276 :         struct dentry *dentry = lookup_dcache(name, base, flags);
    1624                 :     100276 :         struct dentry *old;
    1625                 :     100276 :         struct inode *dir = base->d_inode;
    1626                 :            : 
    1627         [ +  + ]:     100276 :         if (dentry)
    1628                 :            :                 return dentry;
    1629                 :            : 
    1630                 :            :         /* Don't create child dentry for a dead directory. */
    1631         [ +  - ]:      26134 :         if (unlikely(IS_DEADDIR(dir)))
    1632                 :            :                 return ERR_PTR(-ENOENT);
    1633                 :            : 
    1634                 :      26134 :         dentry = d_alloc(base, name);
    1635         [ +  - ]:      26134 :         if (unlikely(!dentry))
    1636                 :            :                 return ERR_PTR(-ENOMEM);
    1637                 :            : 
    1638                 :      26134 :         old = dir->i_op->lookup(dir, dentry, flags);
    1639         [ -  + ]:      26134 :         if (unlikely(old)) {
    1640                 :          0 :                 dput(dentry);
    1641                 :          0 :                 dentry = old;
    1642                 :            :         }
    1643                 :            :         return dentry;
    1644                 :            : }
    1645                 :            : 
    1646                 :    4361563 : static int lookup_fast(struct nameidata *nd,
    1647                 :            :                        struct path *path, struct inode **inode,
    1648                 :            :                        unsigned *seqp)
    1649                 :            : {
    1650                 :    4361563 :         struct vfsmount *mnt = nd->path.mnt;
    1651                 :    4361563 :         struct dentry *dentry, *parent = nd->path.dentry;
    1652                 :    4361563 :         int status = 1;
    1653                 :    4361563 :         int err;
    1654                 :            : 
    1655                 :            :         /*
    1656                 :            :          * Rename seqlock is not required here because in the off chance
    1657                 :            :          * of a false negative due to a concurrent rename, the caller is
    1658                 :            :          * going to fall back to non-racy lookup.
    1659                 :            :          */
    1660         [ +  + ]:    4361563 :         if (nd->flags & LOOKUP_RCU) {
    1661                 :    3351806 :                 unsigned seq;
    1662                 :    3351806 :                 bool negative;
    1663                 :    3351806 :                 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
    1664         [ +  + ]:    3351806 :                 if (unlikely(!dentry)) {
    1665         [ +  - ]:     150144 :                         if (unlazy_walk(nd))
    1666                 :    3330253 :                                 return -ECHILD;
    1667                 :     150144 :                         return 0;
    1668                 :            :                 }
    1669                 :            : 
    1670                 :            :                 /*
    1671                 :            :                  * This sequence count validates that the inode matches
    1672                 :            :                  * the dentry name information from lookup.
    1673                 :            :                  */
    1674                 :    3201662 :                 *inode = d_backing_inode(dentry);
    1675                 :    3201662 :                 negative = d_is_negative(dentry);
    1676         [ +  - ]:    3201662 :                 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
    1677                 :            :                         return -ECHILD;
    1678                 :            : 
    1679                 :            :                 /*
    1680                 :            :                  * This sequence count validates that the parent had no
    1681                 :            :                  * changes while we did the lookup of the dentry above.
    1682                 :            :                  *
    1683                 :            :                  * The memory barrier in read_seqcount_begin of child is
    1684                 :            :                  *  enough, we can use __read_seqcount_retry here.
    1685                 :            :                  */
    1686         [ +  - ]:    3201662 :                 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
    1687                 :            :                         return -ECHILD;
    1688                 :            : 
    1689                 :    3201662 :                 *seqp = seq;
    1690         [ +  + ]:    3201662 :                 status = d_revalidate(dentry, nd->flags);
    1691         [ +  + ]:    3201662 :                 if (likely(status > 0)) {
    1692                 :            :                         /*
    1693                 :            :                          * Note: do negative dentry check after revalidation in
    1694                 :            :                          * case that drops it.
    1695                 :            :                          */
    1696         [ +  + ]:    3180109 :                         if (unlikely(negative))
    1697                 :            :                                 return -ENOENT;
    1698                 :    3033642 :                         path->mnt = mnt;
    1699                 :    3033642 :                         path->dentry = dentry;
    1700         [ -  + ]:    3033642 :                         if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
    1701                 :            :                                 return 1;
    1702                 :            :                 }
    1703         [ +  - ]:      21553 :                 if (unlazy_child(nd, dentry, seq))
    1704                 :            :                         return -ECHILD;
    1705         [ +  - ]:      21553 :                 if (unlikely(status == -ECHILD))
    1706                 :            :                         /* we'd been told to redo it in non-rcu mode */
    1707         [ +  - ]:      21553 :                         status = d_revalidate(dentry, nd->flags);
    1708                 :            :         } else {
    1709                 :    1009757 :                 dentry = __d_lookup(parent, &nd->last);
    1710         [ +  + ]:    1009757 :                 if (unlikely(!dentry))
    1711                 :            :                         return 0;
    1712         [ +  + ]:     879006 :                 status = d_revalidate(dentry, nd->flags);
    1713                 :            :         }
    1714         [ -  + ]:     900559 :         if (unlikely(status <= 0)) {
    1715         [ #  # ]:          0 :                 if (!status)
    1716                 :          0 :                         d_invalidate(dentry);
    1717                 :          0 :                 dput(dentry);
    1718                 :          0 :                 return status;
    1719                 :            :         }
    1720                 :            : 
    1721                 :     900559 :         path->mnt = mnt;
    1722                 :     900559 :         path->dentry = dentry;
    1723                 :     900559 :         err = follow_managed(path, nd);
    1724         [ +  + ]:     900559 :         if (likely(err > 0))
    1725                 :     900496 :                 *inode = d_backing_inode(path->dentry);
    1726                 :            :         return err;
    1727                 :            : }
    1728                 :            : 
    1729                 :            : /* Fast lookup failed, do it the slow way */
    1730                 :     482314 : static struct dentry *__lookup_slow(const struct qstr *name,
    1731                 :            :                                     struct dentry *dir,
    1732                 :            :                                     unsigned int flags)
    1733                 :            : {
    1734                 :     482314 :         struct dentry *dentry, *old;
    1735                 :     482314 :         struct inode *inode = dir->d_inode;
    1736                 :     482314 :         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
    1737                 :            : 
    1738                 :            :         /* Don't go there if it's already dead */
    1739         [ +  - ]:     482314 :         if (unlikely(IS_DEADDIR(inode)))
    1740                 :            :                 return ERR_PTR(-ENOENT);
    1741                 :     482314 : again:
    1742                 :     482314 :         dentry = d_alloc_parallel(dir, name, &wq);
    1743         [ -  + ]:     482314 :         if (IS_ERR(dentry))
    1744                 :          0 :                 return dentry;
    1745         [ +  + ]:     482314 :         if (unlikely(!d_in_lookup(dentry))) {
    1746         [ -  + ]:         10 :                 int error = d_revalidate(dentry, flags);
    1747         [ -  + ]:         10 :                 if (unlikely(error <= 0)) {
    1748         [ #  # ]:          0 :                         if (!error) {
    1749                 :          0 :                                 d_invalidate(dentry);
    1750                 :          0 :                                 dput(dentry);
    1751                 :          0 :                                 goto again;
    1752                 :            :                         }
    1753                 :          0 :                         dput(dentry);
    1754                 :          0 :                         dentry = ERR_PTR(error);
    1755                 :            :                 }
    1756                 :            :         } else {
    1757                 :     482304 :                 old = inode->i_op->lookup(inode, dentry, flags);
    1758                 :     482304 :                 d_lookup_done(dentry);
    1759         [ +  + ]:     482304 :                 if (unlikely(old)) {
    1760                 :       1235 :                         dput(dentry);
    1761                 :       1235 :                         dentry = old;
    1762                 :            :                 }
    1763                 :            :         }
    1764                 :            :         return dentry;
    1765                 :            : }
    1766                 :            : 
    1767                 :     198709 : static struct dentry *lookup_slow(const struct qstr *name,
    1768                 :            :                                   struct dentry *dir,
    1769                 :            :                                   unsigned int flags)
    1770                 :            : {
    1771                 :     198709 :         struct inode *inode = dir->d_inode;
    1772                 :     198709 :         struct dentry *res;
    1773                 :     198709 :         inode_lock_shared(inode);
    1774                 :     198709 :         res = __lookup_slow(name, dir, flags);
    1775                 :     198709 :         inode_unlock_shared(inode);
    1776                 :     198709 :         return res;
    1777                 :            : }
    1778                 :            : 
    1779                 :    4517016 : static inline int may_lookup(struct nameidata *nd)
    1780                 :            : {
    1781         [ +  + ]:    4517016 :         if (nd->flags & LOOKUP_RCU) {
    1782                 :    3849717 :                 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
    1783         [ +  + ]:    3849717 :                 if (err != -ECHILD)
    1784                 :            :                         return err;
    1785         [ +  - ]:     377211 :                 if (unlazy_walk(nd))
    1786                 :            :                         return -ECHILD;
    1787                 :            :         }
    1788                 :    1044510 :         return inode_permission(nd->inode, MAY_EXEC);
    1789                 :            : }
    1790                 :            : 
    1791                 :     164555 : static inline int handle_dots(struct nameidata *nd, int type)
    1792                 :            : {
    1793         [ +  + ]:     164555 :         if (type == LAST_DOTDOT) {
    1794                 :      34165 :                 int error = 0;
    1795                 :            : 
    1796         [ +  + ]:      34165 :                 if (!nd->root.mnt) {
    1797                 :      22301 :                         error = set_root(nd);
    1798         [ +  - ]:      22301 :                         if (error)
    1799                 :            :                                 return error;
    1800                 :            :                 }
    1801         [ +  + ]:      34165 :                 if (nd->flags & LOOKUP_RCU)
    1802                 :       1680 :                         error = follow_dotdot_rcu(nd);
    1803                 :            :                 else
    1804                 :      32485 :                         error = follow_dotdot(nd);
    1805         [ +  - ]:      34165 :                 if (error)
    1806                 :            :                         return error;
    1807                 :            : 
    1808         [ -  + ]:      34165 :                 if (unlikely(nd->flags & LOOKUP_IS_SCOPED)) {
    1809                 :            :                         /*
    1810                 :            :                          * If there was a racing rename or mount along our
    1811                 :            :                          * path, then we can't be sure that ".." hasn't jumped
    1812                 :            :                          * above nd->root (and so userspace should retry or use
    1813                 :            :                          * some fallback).
    1814                 :            :                          */
    1815                 :          0 :                         smp_rmb();
    1816         [ #  # ]:          0 :                         if (unlikely(__read_seqcount_retry(&mount_lock.seqcount, nd->m_seq)))
    1817                 :            :                                 return -EAGAIN;
    1818         [ #  # ]:          0 :                         if (unlikely(__read_seqcount_retry(&rename_lock.seqcount, nd->r_seq)))
    1819                 :          0 :                                 return -EAGAIN;
    1820                 :            :                 }
    1821                 :            :         }
    1822                 :            :         return 0;
    1823                 :            : }
    1824                 :            : 
    1825                 :     243422 : static int pick_link(struct nameidata *nd, struct path *link,
    1826                 :            :                      struct inode *inode, unsigned seq)
    1827                 :            : {
    1828                 :     243422 :         int error;
    1829                 :     243422 :         struct saved *last;
    1830         [ -  + ]:     243422 :         if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
    1831                 :          0 :                 path_to_nameidata(link, nd);
    1832                 :          0 :                 return -ELOOP;
    1833                 :            :         }
    1834         [ +  + ]:     243422 :         if (!(nd->flags & LOOKUP_RCU)) {
    1835         [ +  - ]:      15288 :                 if (link->mnt == nd->path.mnt)
    1836                 :      15288 :                         mntget(link->mnt);
    1837                 :            :         }
    1838         [ -  + ]:     243422 :         error = nd_alloc_stack(nd);
    1839         [ -  + ]:     243422 :         if (unlikely(error)) {
    1840         [ #  # ]:          0 :                 if (error == -ECHILD) {
    1841         [ #  # ]:          0 :                         if (unlikely(!legitimize_path(nd, link, seq))) {
    1842                 :          0 :                                 drop_links(nd);
    1843                 :          0 :                                 nd->depth = 0;
    1844                 :          0 :                                 nd->flags &= ~LOOKUP_RCU;
    1845                 :          0 :                                 nd->path.mnt = NULL;
    1846                 :          0 :                                 nd->path.dentry = NULL;
    1847                 :          0 :                                 rcu_read_unlock();
    1848         [ #  # ]:          0 :                         } else if (likely(unlazy_walk(nd)) == 0)
    1849         [ #  # ]:          0 :                                 error = nd_alloc_stack(nd);
    1850                 :            :                 }
    1851         [ #  # ]:          0 :                 if (error) {
    1852                 :          0 :                         path_put(link);
    1853                 :          0 :                         return error;
    1854                 :            :                 }
    1855                 :            :         }
    1856                 :            : 
    1857                 :     243422 :         last = nd->stack + nd->depth++;
    1858                 :     243422 :         last->link = *link;
    1859                 :     243422 :         clear_delayed_call(&last->done);
    1860                 :     243422 :         nd->link_inode = inode;
    1861                 :     243422 :         last->seq = seq;
    1862                 :     243422 :         return 1;
    1863                 :            : }
    1864                 :            : 
    1865                 :            : enum {WALK_FOLLOW = 1, WALK_MORE = 2};
    1866                 :            : 
    1867                 :            : /*
    1868                 :            :  * Do we need to follow links? We _really_ want to be able
    1869                 :            :  * to do this check without having to look at inode->i_op,
    1870                 :            :  * so we keep a cache of "no, this doesn't need follow_link"
    1871                 :            :  * for the common case.
    1872                 :            :  */
    1873                 :    4014442 : static inline int step_into(struct nameidata *nd, struct path *path,
    1874                 :            :                             int flags, struct inode *inode, unsigned seq)
    1875                 :            : {
    1876   [ +  +  +  + ]:    4014442 :         if (!(flags & WALK_MORE) && nd->depth)
    1877                 :     239240 :                 put_link(nd);
    1878         [ +  + ]:    4014442 :         if (likely(!d_is_symlink(path->dentry)) ||
    1879   [ +  +  +  + ]:     303735 :            !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
    1880                 :            :                 /* not a symlink or should not follow */
    1881                 :    3771020 :                 path_to_nameidata(path, nd);
    1882                 :    3771020 :                 nd->inode = inode;
    1883                 :    3771020 :                 nd->seq = seq;
    1884                 :    3771020 :                 return 0;
    1885                 :            :         }
    1886                 :            :         /* make sure that d_is_symlink above matches inode */
    1887         [ +  + ]:     243422 :         if (nd->flags & LOOKUP_RCU) {
    1888         [ +  - ]:     228134 :                 if (read_seqcount_retry(&path->dentry->d_seq, seq))
    1889                 :            :                         return -ECHILD;
    1890                 :            :         }
    1891                 :     243422 :         return pick_link(nd, path, inode, seq);
    1892                 :            : }
    1893                 :            : 
    1894                 :    3935194 : static int walk_component(struct nameidata *nd, int flags)
    1895                 :            : {
    1896                 :    3935194 :         struct path path;
    1897                 :    3935194 :         struct inode *inode;
    1898                 :    3935194 :         unsigned seq;
    1899                 :    3935194 :         int err;
    1900                 :            :         /*
    1901                 :            :          * "." and ".." are special - ".." especially so because it has
    1902                 :            :          * to be able to know about the current root directory and
    1903                 :            :          * parent relationships.
    1904                 :            :          */
    1905         [ +  + ]:    3935194 :         if (unlikely(nd->last_type != LAST_NORM)) {
    1906                 :     164240 :                 err = handle_dots(nd, nd->last_type);
    1907   [ +  +  +  + ]:     164240 :                 if (!(flags & WALK_MORE) && nd->depth)
    1908                 :       4140 :                         put_link(nd);
    1909                 :     164240 :                 return err;
    1910                 :            :         }
    1911                 :    3770954 :         err = lookup_fast(nd, &path, &inode, &seq);
    1912         [ +  + ]:    3770954 :         if (unlikely(err <= 0)) {
    1913         [ +  + ]:     287570 :                 if (err < 0)
    1914                 :            :                         return err;
    1915                 :     198709 :                 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
    1916                 :            :                                           nd->flags);
    1917         [ +  + ]:     198709 :                 if (IS_ERR(path.dentry))
    1918                 :       1235 :                         return PTR_ERR(path.dentry);
    1919                 :            : 
    1920                 :     197474 :                 path.mnt = nd->path.mnt;
    1921                 :     197474 :                 err = follow_managed(&path, nd);
    1922         [ +  + ]:     197474 :                 if (unlikely(err < 0))
    1923                 :            :                         return err;
    1924                 :            : 
    1925                 :      56510 :                 seq = 0;        /* we are already out of RCU mode */
    1926                 :      56510 :                 inode = d_backing_inode(path.dentry);
    1927                 :            :         }
    1928                 :            : 
    1929                 :    3539894 :         return step_into(nd, &path, flags, inode, seq);
    1930                 :            : }
    1931                 :            : 
    1932                 :            : /*
    1933                 :            :  * We can do the critical dentry name comparison and hashing
    1934                 :            :  * operations one word at a time, but we are limited to:
    1935                 :            :  *
    1936                 :            :  * - Architectures with fast unaligned word accesses. We could
    1937                 :            :  *   do a "get_unaligned()" if this helps and is sufficiently
    1938                 :            :  *   fast.
    1939                 :            :  *
    1940                 :            :  * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
    1941                 :            :  *   do not trap on the (extremely unlikely) case of a page
    1942                 :            :  *   crossing operation.
    1943                 :            :  *
    1944                 :            :  * - Furthermore, we need an efficient 64-bit compile for the
    1945                 :            :  *   64-bit case in order to generate the "number of bytes in
    1946                 :            :  *   the final mask". Again, that could be replaced with a
    1947                 :            :  *   efficient population count instruction or similar.
    1948                 :            :  */
    1949                 :            : #ifdef CONFIG_DCACHE_WORD_ACCESS
    1950                 :            : 
    1951                 :            : #include <asm/word-at-a-time.h>
    1952                 :            : 
    1953                 :            : #ifdef HASH_MIX
    1954                 :            : 
    1955                 :            : /* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
    1956                 :            : 
    1957                 :            : #elif defined(CONFIG_64BIT)
    1958                 :            : /*
    1959                 :            :  * Register pressure in the mixing function is an issue, particularly
    1960                 :            :  * on 32-bit x86, but almost any function requires one state value and
    1961                 :            :  * one temporary.  Instead, use a function designed for two state values
    1962                 :            :  * and no temporaries.
    1963                 :            :  *
    1964                 :            :  * This function cannot create a collision in only two iterations, so
    1965                 :            :  * we have two iterations to achieve avalanche.  In those two iterations,
    1966                 :            :  * we have six layers of mixing, which is enough to spread one bit's
    1967                 :            :  * influence out to 2^6 = 64 state bits.
    1968                 :            :  *
    1969                 :            :  * Rotate constants are scored by considering either 64 one-bit input
    1970                 :            :  * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
    1971                 :            :  * probability of that delta causing a change to each of the 128 output
    1972                 :            :  * bits, using a sample of random initial states.
    1973                 :            :  *
    1974                 :            :  * The Shannon entropy of the computed probabilities is then summed
    1975                 :            :  * to produce a score.  Ideally, any input change has a 50% chance of
    1976                 :            :  * toggling any given output bit.
    1977                 :            :  *
    1978                 :            :  * Mixing scores (in bits) for (12,45):
    1979                 :            :  * Input delta: 1-bit      2-bit
    1980                 :            :  * 1 round:     713.3    42542.6
    1981                 :            :  * 2 rounds:   2753.7   140389.8
    1982                 :            :  * 3 rounds:   5954.1   233458.2
    1983                 :            :  * 4 rounds:   7862.6   256672.2
    1984                 :            :  * Perfect:    8192     258048
    1985                 :            :  *            (64*128) (64*63/2 * 128)
    1986                 :            :  */
    1987                 :            : #define HASH_MIX(x, y, a)       \
    1988                 :            :         (       x ^= (a),       \
    1989                 :            :         y ^= x, x = rol64(x,12),\
    1990                 :            :         x += y, y = rol64(y,45),\
    1991                 :            :         y *= 9                  )
    1992                 :            : 
    1993                 :            : /*
    1994                 :            :  * Fold two longs into one 32-bit hash value.  This must be fast, but
    1995                 :            :  * latency isn't quite as critical, as there is a fair bit of additional
    1996                 :            :  * work done before the hash value is used.
    1997                 :            :  */
    1998                 :    4853768 : static inline unsigned int fold_hash(unsigned long x, unsigned long y)
    1999                 :            : {
    2000                 :    4853768 :         y ^= x * GOLDEN_RATIO_64;
    2001                 :    4853768 :         y *= GOLDEN_RATIO_64;
    2002                 :    4853768 :         return y >> 32;
    2003                 :            : }
    2004                 :            : 
    2005                 :            : #else   /* 32-bit case */
    2006                 :            : 
    2007                 :            : /*
    2008                 :            :  * Mixing scores (in bits) for (7,20):
    2009                 :            :  * Input delta: 1-bit      2-bit
    2010                 :            :  * 1 round:     330.3     9201.6
    2011                 :            :  * 2 rounds:   1246.4    25475.4
    2012                 :            :  * 3 rounds:   1907.1    31295.1
    2013                 :            :  * 4 rounds:   2042.3    31718.6
    2014                 :            :  * Perfect:    2048      31744
    2015                 :            :  *            (32*64)   (32*31/2 * 64)
    2016                 :            :  */
    2017                 :            : #define HASH_MIX(x, y, a)       \
    2018                 :            :         (       x ^= (a),       \
    2019                 :            :         y ^= x, x = rol32(x, 7),\
    2020                 :            :         x += y, y = rol32(y,20),\
    2021                 :            :         y *= 9                  )
    2022                 :            : 
    2023                 :            : static inline unsigned int fold_hash(unsigned long x, unsigned long y)
    2024                 :            : {
    2025                 :            :         /* Use arch-optimized multiply if one exists */
    2026                 :            :         return __hash_32(y ^ __hash_32(x));
    2027                 :            : }
    2028                 :            : 
    2029                 :            : #endif
    2030                 :            : 
    2031                 :            : /*
    2032                 :            :  * Return the hash of a string of known length.  This is carfully
    2033                 :            :  * designed to match hash_name(), which is the more critical function.
    2034                 :            :  * In particular, we must end by hashing a final word containing 0..7
    2035                 :            :  * payload bytes, to match the way that hash_name() iterates until it
    2036                 :            :  * finds the delimiter after the name.
    2037                 :            :  */
    2038                 :     335345 : unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
    2039                 :            : {
    2040                 :     335345 :         unsigned long a, x = 0, y = (unsigned long)salt;
    2041                 :            : 
    2042                 :     719939 :         for (;;) {
    2043         [ +  + ]:     527642 :                 if (!len)
    2044                 :      19173 :                         goto done;
    2045                 :     508469 :                 a = load_unaligned_zeropad(name);
    2046         [ +  + ]:     508469 :                 if (len < sizeof(unsigned long))
    2047                 :            :                         break;
    2048                 :     192297 :                 HASH_MIX(x, y, a);
    2049                 :     192297 :                 name += sizeof(unsigned long);
    2050                 :     192297 :                 len -= sizeof(unsigned long);
    2051                 :            :         }
    2052                 :     316172 :         x ^= a & bytemask_from_count(len);
    2053                 :     335345 : done:
    2054                 :     335345 :         return fold_hash(x, y);
    2055                 :            : }
    2056                 :            : EXPORT_SYMBOL(full_name_hash);
    2057                 :            : 
    2058                 :            : /* Return the "hash_len" (hash and length) of a null-terminated string */
    2059                 :       1407 : u64 hashlen_string(const void *salt, const char *name)
    2060                 :            : {
    2061                 :       1407 :         unsigned long a = 0, x = 0, y = (unsigned long)salt;
    2062                 :       1407 :         unsigned long adata, mask, len;
    2063                 :       1407 :         const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
    2064                 :            : 
    2065                 :       1407 :         len = 0;
    2066                 :       1407 :         goto inside;
    2067                 :            : 
    2068                 :        924 :         do {
    2069                 :        924 :                 HASH_MIX(x, y, a);
    2070                 :        924 :                 len += sizeof(unsigned long);
    2071                 :       2331 : inside:
    2072                 :       2331 :                 a = load_unaligned_zeropad(name+len);
    2073         [ +  + ]:       2331 :         } while (!has_zero(a, &adata, &constants));
    2074                 :            : 
    2075                 :       1407 :         adata = prep_zero_mask(a, adata, &constants);
    2076                 :       1407 :         mask = create_zero_mask(adata);
    2077                 :       1407 :         x ^= a & zero_bytemask(mask);
    2078                 :            : 
    2079                 :       1407 :         return hashlen_create(fold_hash(x, y), len + find_zero(mask));
    2080                 :            : }
    2081                 :            : EXPORT_SYMBOL(hashlen_string);
    2082                 :            : 
    2083                 :            : /*
    2084                 :            :  * Calculate the length and hash of the path component, and
    2085                 :            :  * return the "hash_len" as the result.
    2086                 :            :  */
    2087                 :    4517016 : static inline u64 hash_name(const void *salt, const char *name)
    2088                 :            : {
    2089                 :    4517016 :         unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
    2090                 :    4517016 :         unsigned long adata, bdata, mask, len;
    2091                 :    4517016 :         const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
    2092                 :            : 
    2093                 :    4517016 :         len = 0;
    2094                 :    4517016 :         goto inside;
    2095                 :            : 
    2096                 :    1414903 :         do {
    2097                 :    1414903 :                 HASH_MIX(x, y, a);
    2098                 :    1414903 :                 len += sizeof(unsigned long);
    2099                 :    5931919 : inside:
    2100                 :    5931919 :                 a = load_unaligned_zeropad(name+len);
    2101                 :    5931919 :                 b = a ^ REPEAT_BYTE('/');
    2102         [ +  + ]:    5931919 :         } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
    2103                 :            : 
    2104                 :    4517016 :         adata = prep_zero_mask(a, adata, &constants);
    2105                 :    4517016 :         bdata = prep_zero_mask(b, bdata, &constants);
    2106                 :    4517016 :         mask = create_zero_mask(adata | bdata);
    2107                 :    4517016 :         x ^= a & zero_bytemask(mask);
    2108                 :            : 
    2109                 :    4517016 :         return hashlen_create(fold_hash(x, y), len + find_zero(mask));
    2110                 :            : }
    2111                 :            : 
    2112                 :            : #else   /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
    2113                 :            : 
    2114                 :            : /* Return the hash of a string of known length */
    2115                 :            : unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
    2116                 :            : {
    2117                 :            :         unsigned long hash = init_name_hash(salt);
    2118                 :            :         while (len--)
    2119                 :            :                 hash = partial_name_hash((unsigned char)*name++, hash);
    2120                 :            :         return end_name_hash(hash);
    2121                 :            : }
    2122                 :            : EXPORT_SYMBOL(full_name_hash);
    2123                 :            : 
    2124                 :            : /* Return the "hash_len" (hash and length) of a null-terminated string */
    2125                 :            : u64 hashlen_string(const void *salt, const char *name)
    2126                 :            : {
    2127                 :            :         unsigned long hash = init_name_hash(salt);
    2128                 :            :         unsigned long len = 0, c;
    2129                 :            : 
    2130                 :            :         c = (unsigned char)*name;
    2131                 :            :         while (c) {
    2132                 :            :                 len++;
    2133                 :            :                 hash = partial_name_hash(c, hash);
    2134                 :            :                 c = (unsigned char)name[len];
    2135                 :            :         }
    2136                 :            :         return hashlen_create(end_name_hash(hash), len);
    2137                 :            : }
    2138                 :            : EXPORT_SYMBOL(hashlen_string);
    2139                 :            : 
    2140                 :            : /*
    2141                 :            :  * We know there's a real path component here of at least
    2142                 :            :  * one character.
    2143                 :            :  */
    2144                 :            : static inline u64 hash_name(const void *salt, const char *name)
    2145                 :            : {
    2146                 :            :         unsigned long hash = init_name_hash(salt);
    2147                 :            :         unsigned long len = 0, c;
    2148                 :            : 
    2149                 :            :         c = (unsigned char)*name;
    2150                 :            :         do {
    2151                 :            :                 len++;
    2152                 :            :                 hash = partial_name_hash(c, hash);
    2153                 :            :                 c = (unsigned char)name[len];
    2154                 :            :         } while (c && c != '/');
    2155                 :            :         return hashlen_create(end_name_hash(hash), len);
    2156                 :            : }
    2157                 :            : 
    2158                 :            : #endif
    2159                 :            : 
    2160                 :            : /*
    2161                 :            :  * Name resolution.
    2162                 :            :  * This is the basic name resolution function, turning a pathname into
    2163                 :            :  * the final dentry. We expect 'base' to be positive and a directory.
    2164                 :            :  *
    2165                 :            :  * Returns 0 and nd will have valid dentry and mnt on success.
    2166                 :            :  * Returns error and drops reference to input namei data on failure.
    2167                 :            :  */
    2168                 :    1728595 : static int link_path_walk(const char *name, struct nameidata *nd)
    2169                 :            : {
    2170                 :    1728595 :         int err;
    2171                 :            : 
    2172         [ -  + ]:    1728595 :         if (IS_ERR(name))
    2173                 :          0 :                 return PTR_ERR(name);
    2174         [ +  + ]:    2693718 :         while (*name=='/')
    2175                 :     965123 :                 name++;
    2176         [ +  + ]:    1728595 :         if (!*name)
    2177                 :            :                 return 0;
    2178                 :            : 
    2179                 :            :         /* At this point we know we have a real path component. */
    2180                 :    4517016 :         for(;;) {
    2181                 :    4517016 :                 u64 hash_len;
    2182                 :    4517016 :                 int type;
    2183                 :            : 
    2184                 :    4517016 :                 err = may_lookup(nd);
    2185         [ -  + ]:    4517016 :                 if (err)
    2186                 :          0 :                         return err;
    2187                 :            : 
    2188                 :    4517016 :                 hash_len = hash_name(nd->path.dentry, name);
    2189                 :            : 
    2190                 :    4517016 :                 type = LAST_NORM;
    2191   [ +  +  +  +  :    4517016 :                 if (name[0] == '.') switch (hashlen_len(hash_len)) {
                      + ]
    2192                 :      34165 :                         case 2:
    2193         [ +  - ]:      34165 :                                 if (name[1] == '.') {
    2194                 :      34165 :                                         type = LAST_DOTDOT;
    2195                 :      34165 :                                         nd->flags |= LOOKUP_JUMPED;
    2196                 :            :                                 }
    2197                 :            :                                 break;
    2198                 :       6699 :                         case 1:
    2199                 :       6699 :                                 type = LAST_DOT;
    2200                 :            :                 }
    2201         [ +  + ]:    4517016 :                 if (likely(type == LAST_NORM)) {
    2202                 :    4476152 :                         struct dentry *parent = nd->path.dentry;
    2203                 :    4476152 :                         nd->flags &= ~LOOKUP_JUMPED;
    2204         [ -  + ]:    4476152 :                         if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
    2205                 :          0 :                                 struct qstr this = { { .hash_len = hash_len }, .name = name };
    2206                 :          0 :                                 err = parent->d_op->d_hash(parent, &this);
    2207         [ #  # ]:          0 :                                 if (err < 0)
    2208                 :          0 :                                         return err;
    2209                 :          0 :                                 hash_len = this.hash_len;
    2210                 :          0 :                                 name = this.name;
    2211                 :            :                         }
    2212                 :            :                 }
    2213                 :            : 
    2214                 :    4517016 :                 nd->last.hash_len = hash_len;
    2215                 :    4517016 :                 nd->last.name = name;
    2216                 :    4517016 :                 nd->last_type = type;
    2217                 :            : 
    2218                 :    4517016 :                 name += hashlen_len(hash_len);
    2219         [ +  + ]:    4517016 :                 if (!*name)
    2220                 :    1682922 :                         goto OK;
    2221                 :            :                 /*
    2222                 :            :                  * If it wasn't NUL, we know it was '/'. Skip that
    2223                 :            :                  * slash, and continue until no more slashes.
    2224                 :            :                  */
    2225                 :    2840058 :                 do {
    2226                 :    2840058 :                         name++;
    2227         [ +  + ]:    2840058 :                 } while (unlikely(*name == '/'));
    2228         [ +  + ]:    2834094 :                 if (unlikely(!*name)) {
    2229                 :       3213 : OK:
    2230                 :            :                         /* pathname body, done */
    2231         [ +  + ]:    1686135 :                         if (!nd->depth)
    2232                 :            :                                 return 0;
    2233                 :     239240 :                         name = nd->stack[nd->depth - 1].name;
    2234                 :            :                         /* trailing symlink, done */
    2235         [ +  + ]:     239240 :                         if (!name)
    2236                 :            :                                 return 0;
    2237                 :            :                         /* last component of nested symlink */
    2238                 :     148246 :                         err = walk_component(nd, WALK_FOLLOW);
    2239                 :            :                 } else {
    2240                 :            :                         /* not the last component */
    2241                 :    2830881 :                         err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
    2242                 :            :                 }
    2243         [ +  + ]:    2979127 :                 if (err < 0)
    2244                 :      67015 :                         return err;
    2245                 :            : 
    2246         [ +  + ]:    2912112 :                 if (err) {
    2247         [ +  - ]:     148246 :                         const char *s = get_link(nd);
    2248                 :            : 
    2249         [ -  + ]:     148246 :                         if (IS_ERR(s))
    2250                 :          0 :                                 return PTR_ERR(s);
    2251                 :     148246 :                         err = 0;
    2252         [ -  + ]:     148246 :                         if (unlikely(!s)) {
    2253                 :            :                                 /* jumped */
    2254                 :          0 :                                 put_link(nd);
    2255                 :            :                         } else {
    2256                 :     148246 :                                 nd->stack[nd->depth - 1].name = name;
    2257                 :     148246 :                                 name = s;
    2258                 :     148246 :                                 continue;
    2259                 :            :                         }
    2260                 :            :                 }
    2261         [ +  - ]:    2763866 :                 if (unlikely(!d_can_lookup(nd->path.dentry))) {
    2262         [ #  # ]:          0 :                         if (nd->flags & LOOKUP_RCU) {
    2263         [ #  # ]:          0 :                                 if (unlazy_walk(nd))
    2264                 :            :                                         return -ECHILD;
    2265                 :            :                         }
    2266                 :          0 :                         return -ENOTDIR;
    2267                 :            :                 }
    2268                 :            :         }
    2269                 :            : }
    2270                 :            : 
    2271                 :            : /* must be paired with terminate_walk() */
    2272                 :    1633419 : static const char *path_init(struct nameidata *nd, unsigned flags)
    2273                 :            : {
    2274                 :    1633419 :         int error;
    2275                 :    1633419 :         const char *s = nd->name->name;
    2276                 :            : 
    2277         [ +  + ]:    1633419 :         if (!*s)
    2278                 :       1554 :                 flags &= ~LOOKUP_RCU;
    2279         [ +  + ]:    1633419 :         if (flags & LOOKUP_RCU)
    2280                 :    1631865 :                 rcu_read_lock();
    2281                 :            : 
    2282                 :    1633419 :         nd->last_type = LAST_ROOT; /* if there are only slashes... */
    2283                 :    1633419 :         nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
    2284                 :    1633419 :         nd->depth = 0;
    2285                 :            : 
    2286                 :    1633419 :         nd->m_seq = __read_seqcount_begin(&mount_lock.seqcount);
    2287                 :    1633419 :         nd->r_seq = __read_seqcount_begin(&rename_lock.seqcount);
    2288                 :    1633419 :         smp_rmb();
    2289                 :            : 
    2290         [ -  + ]:    1633419 :         if (flags & LOOKUP_ROOT) {
    2291                 :          0 :                 struct dentry *root = nd->root.dentry;
    2292                 :          0 :                 struct inode *inode = root->d_inode;
    2293   [ #  #  #  # ]:          0 :                 if (*s && unlikely(!d_can_lookup(root)))
    2294                 :            :                         return ERR_PTR(-ENOTDIR);
    2295                 :          0 :                 nd->path = nd->root;
    2296                 :          0 :                 nd->inode = inode;
    2297         [ #  # ]:          0 :                 if (flags & LOOKUP_RCU) {
    2298                 :          0 :                         nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
    2299                 :          0 :                         nd->root_seq = nd->seq;
    2300                 :            :                 } else {
    2301                 :          0 :                         path_get(&nd->path);
    2302                 :            :                 }
    2303                 :          0 :                 return s;
    2304                 :            :         }
    2305                 :            : 
    2306                 :    1633419 :         nd->root.mnt = NULL;
    2307                 :    1633419 :         nd->path.mnt = NULL;
    2308                 :    1633419 :         nd->path.dentry = NULL;
    2309                 :            : 
    2310                 :            :         /* Absolute pathname -- fetch the root (LOOKUP_IN_ROOT uses nd->dfd). */
    2311   [ +  +  +  - ]:    1633419 :         if (*s == '/' && !(flags & LOOKUP_IN_ROOT)) {
    2312                 :     965060 :                 error = nd_jump_root(nd);
    2313         [ -  + ]:     965060 :                 if (unlikely(error))
    2314                 :          0 :                         return ERR_PTR(error);
    2315                 :            :                 return s;
    2316                 :            :         }
    2317                 :            : 
    2318                 :            :         /* Relative pathname -- get the starting-point it is relative to. */
    2319         [ +  + ]:     668359 :         if (nd->dfd == AT_FDCWD) {
    2320         [ +  - ]:     128928 :                 if (flags & LOOKUP_RCU) {
    2321                 :     128928 :                         struct fs_struct *fs = current->fs;
    2322                 :     128928 :                         unsigned seq;
    2323                 :            : 
    2324                 :     128928 :                         do {
    2325                 :     128928 :                                 seq = read_seqcount_begin(&fs->seq);
    2326                 :     128928 :                                 nd->path = fs->pwd;
    2327                 :     128928 :                                 nd->inode = nd->path.dentry->d_inode;
    2328                 :     128928 :                                 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
    2329         [ -  + ]:     128928 :                         } while (read_seqcount_retry(&fs->seq, seq));
    2330                 :            :                 } else {
    2331                 :          0 :                         get_fs_pwd(current->fs, &nd->path);
    2332                 :          0 :                         nd->inode = nd->path.dentry->d_inode;
    2333                 :            :                 }
    2334                 :            :         } else {
    2335                 :            :                 /* Caller must check execute permissions on the starting path component */
    2336                 :     539431 :                 struct fd f = fdget_raw(nd->dfd);
    2337                 :     539431 :                 struct dentry *dentry;
    2338                 :            : 
    2339         [ +  - ]:     539431 :                 if (!f.file)
    2340                 :            :                         return ERR_PTR(-EBADF);
    2341                 :            : 
    2342                 :     539431 :                 dentry = f.file->f_path.dentry;
    2343                 :            : 
    2344   [ +  +  -  + ]:     539431 :                 if (*s && unlikely(!d_can_lookup(dentry))) {
    2345         [ #  # ]:          0 :                         fdput(f);
    2346                 :          0 :                         return ERR_PTR(-ENOTDIR);
    2347                 :            :                 }
    2348                 :            : 
    2349                 :     539431 :                 nd->path = f.file->f_path;
    2350         [ +  + ]:     539431 :                 if (flags & LOOKUP_RCU) {
    2351                 :     537877 :                         nd->inode = nd->path.dentry->d_inode;
    2352                 :    1075754 :                         nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
    2353                 :            :                 } else {
    2354                 :       1554 :                         path_get(&nd->path);
    2355                 :       1554 :                         nd->inode = nd->path.dentry->d_inode;
    2356                 :            :                 }
    2357         [ -  + ]:     539431 :                 fdput(f);
    2358                 :            :         }
    2359                 :            : 
    2360                 :            :         /* For scoped-lookups we need to set the root to the dirfd as well. */
    2361         [ -  + ]:     668359 :         if (flags & LOOKUP_IS_SCOPED) {
    2362                 :          0 :                 nd->root = nd->path;
    2363         [ #  # ]:          0 :                 if (flags & LOOKUP_RCU) {
    2364                 :          0 :                         nd->root_seq = nd->seq;
    2365                 :            :                 } else {
    2366                 :          0 :                         path_get(&nd->root);
    2367                 :          0 :                         nd->flags |= LOOKUP_ROOT_GRABBED;
    2368                 :            :                 }
    2369                 :            :         }
    2370                 :            :         return s;
    2371                 :            : }
    2372                 :            : 
    2373                 :      95176 : static const char *trailing_symlink(struct nameidata *nd)
    2374                 :            : {
    2375                 :      95176 :         const char *s;
    2376                 :      95176 :         int error = may_follow_link(nd);
    2377         [ -  + ]:      95176 :         if (unlikely(error))
    2378                 :          0 :                 return ERR_PTR(error);
    2379                 :      95176 :         nd->flags |= LOOKUP_PARENT;
    2380                 :      95176 :         nd->stack[0].name = NULL;
    2381         [ +  - ]:      95176 :         s = get_link(nd);
    2382         [ +  + ]:      95176 :         return s ? s : "";
    2383                 :            : }
    2384                 :            : 
    2385                 :     956067 : static inline int lookup_last(struct nameidata *nd)
    2386                 :            : {
    2387   [ +  +  +  + ]:     956067 :         if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
    2388                 :        882 :                 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
    2389                 :            : 
    2390                 :     956067 :         nd->flags &= ~LOOKUP_PARENT;
    2391                 :     956067 :         return walk_component(nd, 0);
    2392                 :            : }
    2393                 :            : 
    2394                 :        210 : static int handle_lookup_down(struct nameidata *nd)
    2395                 :            : {
    2396                 :        210 :         struct path path = nd->path;
    2397                 :        210 :         struct inode *inode = nd->inode;
    2398                 :        210 :         unsigned seq = nd->seq;
    2399                 :        210 :         int err;
    2400                 :            : 
    2401         [ -  + ]:        210 :         if (nd->flags & LOOKUP_RCU) {
    2402                 :            :                 /*
    2403                 :            :                  * don't bother with unlazy_walk on failure - we are
    2404                 :            :                  * at the very beginning of walk, so we lose nothing
    2405                 :            :                  * if we simply redo everything in non-RCU mode
    2406                 :            :                  */
    2407         [ #  # ]:          0 :                 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
    2408                 :            :                         return -ECHILD;
    2409                 :            :         } else {
    2410         [ +  - ]:        210 :                 dget(path.dentry);
    2411                 :        210 :                 err = follow_managed(&path, nd);
    2412         [ +  - ]:        210 :                 if (unlikely(err < 0))
    2413                 :            :                         return err;
    2414                 :        210 :                 inode = d_backing_inode(path.dentry);
    2415                 :        210 :                 seq = 0;
    2416                 :            :         }
    2417                 :        210 :         path_to_nameidata(&path, nd);
    2418                 :        210 :         nd->inode = inode;
    2419                 :        210 :         nd->seq = seq;
    2420                 :        210 :         return 0;
    2421                 :            : }
    2422                 :            : 
    2423                 :            : /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
    2424                 :            : static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
    2425                 :            : {
    2426                 :            :         const char *s = path_init(nd, flags);
    2427                 :            :         int err;
    2428                 :            : 
    2429                 :            :         if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) {
    2430                 :            :                 err = handle_lookup_down(nd);
    2431                 :            :                 if (unlikely(err < 0))
    2432                 :            :                         s = ERR_PTR(err);
    2433                 :            :         }
    2434                 :            : 
    2435                 :            :         while (!(err = link_path_walk(s, nd))
    2436                 :            :                 && ((err = lookup_last(nd)) > 0)) {
    2437                 :            :                 s = trailing_symlink(nd);
    2438                 :            :         }
    2439                 :            :         if (!err)
    2440                 :            :                 err = complete_walk(nd);
    2441                 :            : 
    2442                 :            :         if (!err && nd->flags & LOOKUP_DIRECTORY)
    2443                 :            :                 if (!d_can_lookup(nd->path.dentry))
    2444                 :            :                         err = -ENOTDIR;
    2445                 :            :         if (!err) {
    2446                 :            :                 *path = nd->path;
    2447                 :            :                 nd->path.mnt = NULL;
    2448                 :            :                 nd->path.dentry = NULL;
    2449                 :            :         }
    2450                 :            :         terminate_walk(nd);
    2451                 :            :         return err;
    2452                 :            : }
    2453                 :            : 
    2454                 :     354347 : int filename_lookup(int dfd, struct filename *name, unsigned flags,
    2455                 :            :                     struct path *path, struct path *root)
    2456                 :            : {
    2457                 :     354347 :         int retval;
    2458                 :     354347 :         struct nameidata nd;
    2459         [ -  + ]:     354347 :         if (IS_ERR(name))
    2460                 :          0 :                 return PTR_ERR(name);
    2461         [ -  + ]:     354347 :         if (unlikely(root)) {
    2462                 :          0 :                 nd.root = *root;
    2463                 :          0 :                 flags |= LOOKUP_ROOT;
    2464                 :            :         }
    2465         [ -  + ]:     354347 :         set_nameidata(&nd, dfd, name);
    2466                 :     354347 :         retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
    2467         [ -  + ]:     354347 :         if (unlikely(retval == -ECHILD))
    2468                 :          0 :                 retval = path_lookupat(&nd, flags, path);
    2469         [ -  + ]:     354347 :         if (unlikely(retval == -ESTALE))
    2470                 :          0 :                 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
    2471                 :            : 
    2472         [ +  + ]:     354347 :         if (likely(!retval))
    2473                 :     252657 :                 audit_inode(name, path->dentry, 0);
    2474                 :     354347 :         restore_nameidata();
    2475                 :     354347 :         putname(name);
    2476                 :     354347 :         return retval;
    2477                 :            : }
    2478                 :            : 
    2479                 :            : /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
    2480                 :            : static int path_parentat(struct nameidata *nd, unsigned flags,
    2481                 :            :                                 struct path *parent)
    2482                 :            : {
    2483                 :            :         const char *s = path_init(nd, flags);
    2484                 :            :         int err = link_path_walk(s, nd);
    2485                 :            :         if (!err)
    2486                 :            :                 err = complete_walk(nd);
    2487                 :            :         if (!err) {
    2488                 :            :                 *parent = nd->path;
    2489                 :            :                 nd->path.mnt = NULL;
    2490                 :            :                 nd->path.dentry = NULL;
    2491                 :            :         }
    2492                 :            :         terminate_walk(nd);
    2493                 :            :         return err;
    2494                 :            : }
    2495                 :            : 
    2496                 :            : static struct filename *filename_parentat(int dfd, struct filename *name,
    2497                 :            :                                 unsigned int flags, struct path *parent,
    2498                 :            :                                 struct qstr *last, int *type)
    2499                 :            : {
    2500                 :            :         int retval;
    2501                 :            :         struct nameidata nd;
    2502                 :            : 
    2503                 :            :         if (IS_ERR(name))
    2504                 :            :                 return name;
    2505                 :            :         set_nameidata(&nd, dfd, name);
    2506                 :            :         retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
    2507                 :            :         if (unlikely(retval == -ECHILD))
    2508                 :            :                 retval = path_parentat(&nd, flags, parent);
    2509                 :            :         if (unlikely(retval == -ESTALE))
    2510                 :            :                 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
    2511                 :            :         if (likely(!retval)) {
    2512                 :            :                 *last = nd.last;
    2513                 :            :                 *type = nd.last_type;
    2514                 :            :                 audit_inode(name, parent->dentry, AUDIT_INODE_PARENT);
    2515                 :            :         } else {
    2516                 :            :                 putname(name);
    2517                 :            :                 name = ERR_PTR(retval);
    2518                 :            :         }
    2519                 :            :         restore_nameidata();
    2520                 :            :         return name;
    2521                 :            : }
    2522                 :            : 
    2523                 :            : /* does lookup, returns the object with parent locked */
    2524                 :          0 : struct dentry *kern_path_locked(const char *name, struct path *path)
    2525                 :            : {
    2526                 :          0 :         struct filename *filename;
    2527                 :          0 :         struct dentry *d;
    2528                 :          0 :         struct qstr last;
    2529                 :          0 :         int type;
    2530                 :            : 
    2531                 :          0 :         filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
    2532                 :            :                                     &last, &type);
    2533         [ #  # ]:          0 :         if (IS_ERR(filename))
    2534                 :            :                 return ERR_CAST(filename);
    2535         [ #  # ]:          0 :         if (unlikely(type != LAST_NORM)) {
    2536                 :          0 :                 path_put(path);
    2537                 :          0 :                 putname(filename);
    2538                 :          0 :                 return ERR_PTR(-EINVAL);
    2539                 :            :         }
    2540                 :          0 :         inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
    2541                 :          0 :         d = __lookup_hash(&last, path->dentry, 0);
    2542         [ #  # ]:          0 :         if (IS_ERR(d)) {
    2543                 :          0 :                 inode_unlock(path->dentry->d_inode);
    2544                 :          0 :                 path_put(path);
    2545                 :            :         }
    2546                 :          0 :         putname(filename);
    2547                 :          0 :         return d;
    2548                 :            : }
    2549                 :            : 
    2550                 :       5612 : int kern_path(const char *name, unsigned int flags, struct path *path)
    2551                 :            : {
    2552                 :       5612 :         return filename_lookup(AT_FDCWD, getname_kernel(name),
    2553                 :            :                                flags, path, NULL);
    2554                 :            : }
    2555                 :            : EXPORT_SYMBOL(kern_path);
    2556                 :            : 
    2557                 :            : /**
    2558                 :            :  * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
    2559                 :            :  * @dentry:  pointer to dentry of the base directory
    2560                 :            :  * @mnt: pointer to vfs mount of the base directory
    2561                 :            :  * @name: pointer to file name
    2562                 :            :  * @flags: lookup flags
    2563                 :            :  * @path: pointer to struct path to fill
    2564                 :            :  */
    2565                 :          0 : int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
    2566                 :            :                     const char *name, unsigned int flags,
    2567                 :            :                     struct path *path)
    2568                 :            : {
    2569                 :          0 :         struct path root = {.mnt = mnt, .dentry = dentry};
    2570                 :            :         /* the first argument of filename_lookup() is ignored with root */
    2571                 :          0 :         return filename_lookup(AT_FDCWD, getname_kernel(name),
    2572                 :            :                                flags , path, &root);
    2573                 :            : }
    2574                 :            : EXPORT_SYMBOL(vfs_path_lookup);
    2575                 :            : 
    2576                 :     283605 : static int lookup_one_len_common(const char *name, struct dentry *base,
    2577                 :            :                                  int len, struct qstr *this)
    2578                 :            : {
    2579                 :     283605 :         this->name = name;
    2580                 :     283605 :         this->len = len;
    2581                 :     283605 :         this->hash = full_name_hash(base, name, len);
    2582         [ +  - ]:     283605 :         if (!len)
    2583                 :            :                 return -EACCES;
    2584                 :            : 
    2585         [ -  + ]:     283605 :         if (unlikely(name[0] == '.')) {
    2586   [ #  #  #  #  :          0 :                 if (len < 2 || (len == 2 && name[1] == '.'))
                   #  # ]
    2587                 :            :                         return -EACCES;
    2588                 :            :         }
    2589                 :            : 
    2590         [ +  + ]:    3061422 :         while (len--) {
    2591                 :    2777817 :                 unsigned int c = *(const unsigned char *)name++;
    2592         [ +  - ]:    2777817 :                 if (c == '/' || c == '\0')
    2593                 :            :                         return -EACCES;
    2594                 :            :         }
    2595                 :            :         /*
    2596                 :            :          * See if the low-level filesystem might want
    2597                 :            :          * to use its own hash..
    2598                 :            :          */
    2599         [ -  + ]:     283605 :         if (base->d_flags & DCACHE_OP_HASH) {
    2600                 :          0 :                 int err = base->d_op->d_hash(base, this);
    2601         [ #  # ]:          0 :                 if (err < 0)
    2602                 :            :                         return err;
    2603                 :            :         }
    2604                 :            : 
    2605                 :     283605 :         return inode_permission(base->d_inode, MAY_EXEC);
    2606                 :            : }
    2607                 :            : 
    2608                 :            : /**
    2609                 :            :  * try_lookup_one_len - filesystem helper to lookup single pathname component
    2610                 :            :  * @name:       pathname component to lookup
    2611                 :            :  * @base:       base directory to lookup from
    2612                 :            :  * @len:        maximum length @len should be interpreted to
    2613                 :            :  *
    2614                 :            :  * Look up a dentry by name in the dcache, returning NULL if it does not
    2615                 :            :  * currently exist.  The function does not try to create a dentry.
    2616                 :            :  *
    2617                 :            :  * Note that this routine is purely a helper for filesystem usage and should
    2618                 :            :  * not be called by generic code.
    2619                 :            :  *
    2620                 :            :  * The caller must hold base->i_mutex.
    2621                 :            :  */
    2622                 :          0 : struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len)
    2623                 :            : {
    2624                 :          0 :         struct qstr this;
    2625                 :          0 :         int err;
    2626                 :            : 
    2627         [ #  # ]:          0 :         WARN_ON_ONCE(!inode_is_locked(base->d_inode));
    2628                 :            : 
    2629                 :          0 :         err = lookup_one_len_common(name, base, len, &this);
    2630         [ #  # ]:          0 :         if (err)
    2631                 :          0 :                 return ERR_PTR(err);
    2632                 :            : 
    2633                 :          0 :         return lookup_dcache(&this, base, 0);
    2634                 :            : }
    2635                 :            : EXPORT_SYMBOL(try_lookup_one_len);
    2636                 :            : 
    2637                 :            : /**
    2638                 :            :  * lookup_one_len - filesystem helper to lookup single pathname component
    2639                 :            :  * @name:       pathname component to lookup
    2640                 :            :  * @base:       base directory to lookup from
    2641                 :            :  * @len:        maximum length @len should be interpreted to
    2642                 :            :  *
    2643                 :            :  * Note that this routine is purely a helper for filesystem usage and should
    2644                 :            :  * not be called by generic code.
    2645                 :            :  *
    2646                 :            :  * The caller must hold base->i_mutex.
    2647                 :            :  */
    2648                 :     283605 : struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
    2649                 :            : {
    2650                 :     283605 :         struct dentry *dentry;
    2651                 :     283605 :         struct qstr this;
    2652                 :     283605 :         int err;
    2653                 :            : 
    2654         [ -  + ]:     283605 :         WARN_ON_ONCE(!inode_is_locked(base->d_inode));
    2655                 :            : 
    2656                 :     283605 :         err = lookup_one_len_common(name, base, len, &this);
    2657         [ -  + ]:     283605 :         if (err)
    2658                 :          0 :                 return ERR_PTR(err);
    2659                 :            : 
    2660                 :     283605 :         dentry = lookup_dcache(&this, base, 0);
    2661         [ +  - ]:     283605 :         return dentry ? dentry : __lookup_slow(&this, base, 0);
    2662                 :            : }
    2663                 :            : EXPORT_SYMBOL(lookup_one_len);
    2664                 :            : 
    2665                 :            : /**
    2666                 :            :  * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
    2667                 :            :  * @name:       pathname component to lookup
    2668                 :            :  * @base:       base directory to lookup from
    2669                 :            :  * @len:        maximum length @len should be interpreted to
    2670                 :            :  *
    2671                 :            :  * Note that this routine is purely a helper for filesystem usage and should
    2672                 :            :  * not be called by generic code.
    2673                 :            :  *
    2674                 :            :  * Unlike lookup_one_len, it should be called without the parent
    2675                 :            :  * i_mutex held, and will take the i_mutex itself if necessary.
    2676                 :            :  */
    2677                 :          0 : struct dentry *lookup_one_len_unlocked(const char *name,
    2678                 :            :                                        struct dentry *base, int len)
    2679                 :            : {
    2680                 :          0 :         struct qstr this;
    2681                 :          0 :         int err;
    2682                 :          0 :         struct dentry *ret;
    2683                 :            : 
    2684                 :          0 :         err = lookup_one_len_common(name, base, len, &this);
    2685         [ #  # ]:          0 :         if (err)
    2686                 :          0 :                 return ERR_PTR(err);
    2687                 :            : 
    2688                 :          0 :         ret = lookup_dcache(&this, base, 0);
    2689         [ #  # ]:          0 :         if (!ret)
    2690                 :          0 :                 ret = lookup_slow(&this, base, 0);
    2691                 :            :         return ret;
    2692                 :            : }
    2693                 :            : EXPORT_SYMBOL(lookup_one_len_unlocked);
    2694                 :            : 
    2695                 :            : /*
    2696                 :            :  * Like lookup_one_len_unlocked(), except that it yields ERR_PTR(-ENOENT)
    2697                 :            :  * on negatives.  Returns known positive or ERR_PTR(); that's what
    2698                 :            :  * most of the users want.  Note that pinned negative with unlocked parent
    2699                 :            :  * _can_ become positive at any time, so callers of lookup_one_len_unlocked()
    2700                 :            :  * need to be very careful; pinned positives have ->d_inode stable, so
    2701                 :            :  * this one avoids such problems.
    2702                 :            :  */
    2703                 :          0 : struct dentry *lookup_positive_unlocked(const char *name,
    2704                 :            :                                        struct dentry *base, int len)
    2705                 :            : {
    2706                 :          0 :         struct dentry *ret = lookup_one_len_unlocked(name, base, len);
    2707   [ #  #  #  # ]:          0 :         if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) {
    2708                 :          0 :                 dput(ret);
    2709                 :          0 :                 ret = ERR_PTR(-ENOENT);
    2710                 :            :         }
    2711                 :          0 :         return ret;
    2712                 :            : }
    2713                 :            : EXPORT_SYMBOL(lookup_positive_unlocked);
    2714                 :            : 
    2715                 :            : #ifdef CONFIG_UNIX98_PTYS
    2716                 :          0 : int path_pts(struct path *path)
    2717                 :            : {
    2718                 :            :         /* Find something mounted on "pts" in the same directory as
    2719                 :            :          * the input path.
    2720                 :            :          */
    2721                 :          0 :         struct dentry *child, *parent;
    2722                 :          0 :         struct qstr this;
    2723                 :          0 :         int ret;
    2724                 :            : 
    2725                 :          0 :         ret = path_parent_directory(path);
    2726         [ #  # ]:          0 :         if (ret)
    2727                 :            :                 return ret;
    2728                 :            : 
    2729                 :          0 :         parent = path->dentry;
    2730                 :          0 :         this.name = "pts";
    2731                 :          0 :         this.len = 3;
    2732                 :          0 :         child = d_hash_and_lookup(parent, &this);
    2733         [ #  # ]:          0 :         if (!child)
    2734                 :            :                 return -ENOENT;
    2735                 :            : 
    2736                 :          0 :         path->dentry = child;
    2737                 :          0 :         dput(parent);
    2738                 :          0 :         follow_mount(path);
    2739                 :          0 :         return 0;
    2740                 :            : }
    2741                 :            : #endif
    2742                 :            : 
    2743                 :     348735 : int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
    2744                 :            :                  struct path *path, int *empty)
    2745                 :            : {
    2746                 :     348735 :         return filename_lookup(dfd, getname_flags(name, flags, empty),
    2747                 :            :                                flags, path, NULL);
    2748                 :            : }
    2749                 :            : EXPORT_SYMBOL(user_path_at_empty);
    2750                 :            : 
    2751                 :            : /**
    2752                 :            :  * path_mountpoint - look up a path to be umounted
    2753                 :            :  * @nd:         lookup context
    2754                 :            :  * @flags:      lookup flags
    2755                 :            :  * @path:       pointer to container for result
    2756                 :            :  *
    2757                 :            :  * Look up the given name, but don't attempt to revalidate the last component.
    2758                 :            :  * Returns 0 and "path" will be valid on success; Returns error otherwise.
    2759                 :            :  */
    2760                 :            : static int
    2761                 :            : path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
    2762                 :            : {
    2763                 :            :         const char *s = path_init(nd, flags);
    2764                 :            :         int err;
    2765                 :            : 
    2766                 :            :         while (!(err = link_path_walk(s, nd)) &&
    2767                 :            :                 (err = lookup_last(nd)) > 0) {
    2768                 :            :                 s = trailing_symlink(nd);
    2769                 :            :         }
    2770                 :            :         if (!err && (nd->flags & LOOKUP_RCU))
    2771                 :            :                 err = unlazy_walk(nd);
    2772                 :            :         if (!err)
    2773                 :            :                 err = handle_lookup_down(nd);
    2774                 :            :         if (!err) {
    2775                 :            :                 *path = nd->path;
    2776                 :            :                 nd->path.mnt = NULL;
    2777                 :            :                 nd->path.dentry = NULL;
    2778                 :            :         }
    2779                 :            :         terminate_walk(nd);
    2780                 :            :         return err;
    2781                 :            : }
    2782                 :            : 
    2783                 :            : static int
    2784                 :        210 : filename_mountpoint(int dfd, struct filename *name, struct path *path,
    2785                 :            :                         unsigned int flags)
    2786                 :            : {
    2787                 :        210 :         struct nameidata nd;
    2788                 :        210 :         int error;
    2789         [ -  + ]:        210 :         if (IS_ERR(name))
    2790                 :          0 :                 return PTR_ERR(name);
    2791         [ -  + ]:        210 :         set_nameidata(&nd, dfd, name);
    2792                 :        210 :         error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
    2793         [ -  + ]:        210 :         if (unlikely(error == -ECHILD))
    2794                 :          0 :                 error = path_mountpoint(&nd, flags, path);
    2795         [ -  + ]:        210 :         if (unlikely(error == -ESTALE))
    2796                 :          0 :                 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
    2797         [ +  - ]:        210 :         if (likely(!error))
    2798                 :        210 :                 audit_inode(name, path->dentry, AUDIT_INODE_NOEVAL);
    2799                 :        210 :         restore_nameidata();
    2800                 :        210 :         putname(name);
    2801                 :        210 :         return error;
    2802                 :            : }
    2803                 :            : 
    2804                 :            : /**
    2805                 :            :  * user_path_mountpoint_at - lookup a path from userland in order to umount it
    2806                 :            :  * @dfd:        directory file descriptor
    2807                 :            :  * @name:       pathname from userland
    2808                 :            :  * @flags:      lookup flags
    2809                 :            :  * @path:       pointer to container to hold result
    2810                 :            :  *
    2811                 :            :  * A umount is a special case for path walking. We're not actually interested
    2812                 :            :  * in the inode in this situation, and ESTALE errors can be a problem. We
    2813                 :            :  * simply want track down the dentry and vfsmount attached at the mountpoint
    2814                 :            :  * and avoid revalidating the last component.
    2815                 :            :  *
    2816                 :            :  * Returns 0 and populates "path" on success.
    2817                 :            :  */
    2818                 :            : int
    2819                 :        189 : user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
    2820                 :            :                         struct path *path)
    2821                 :            : {
    2822                 :        189 :         return filename_mountpoint(dfd, getname(name), path, flags);
    2823                 :            : }
    2824                 :            : 
    2825                 :            : int
    2826                 :         21 : kern_path_mountpoint(int dfd, const char *name, struct path *path,
    2827                 :            :                         unsigned int flags)
    2828                 :            : {
    2829                 :         21 :         return filename_mountpoint(dfd, getname_kernel(name), path, flags);
    2830                 :            : }
    2831                 :            : EXPORT_SYMBOL(kern_path_mountpoint);
    2832                 :            : 
    2833                 :         21 : int __check_sticky(struct inode *dir, struct inode *inode)
    2834                 :            : {
    2835         [ -  + ]:         21 :         kuid_t fsuid = current_fsuid();
    2836                 :            : 
    2837         [ -  + ]:         21 :         if (uid_eq(inode->i_uid, fsuid))
    2838                 :            :                 return 0;
    2839         [ #  # ]:          0 :         if (uid_eq(dir->i_uid, fsuid))
    2840                 :            :                 return 0;
    2841                 :          0 :         return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
    2842                 :            : }
    2843                 :            : EXPORT_SYMBOL(__check_sticky);
    2844                 :            : 
    2845                 :            : /*
    2846                 :            :  *      Check whether we can remove a link victim from directory dir, check
    2847                 :            :  *  whether the type of victim is right.
    2848                 :            :  *  1. We can't do it if dir is read-only (done in permission())
    2849                 :            :  *  2. We should have write and exec permissions on dir
    2850                 :            :  *  3. We can't remove anything from append-only dir
    2851                 :            :  *  4. We can't do anything with immutable dir (done in permission())
    2852                 :            :  *  5. If the sticky bit on dir is set we should either
    2853                 :            :  *      a. be owner of dir, or
    2854                 :            :  *      b. be owner of victim, or
    2855                 :            :  *      c. have CAP_FOWNER capability
    2856                 :            :  *  6. If the victim is append-only or immutable we can't do antyhing with
    2857                 :            :  *     links pointing to it.
    2858                 :            :  *  7. If the victim has an unknown uid or gid we can't change the inode.
    2859                 :            :  *  8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
    2860                 :            :  *  9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
    2861                 :            :  * 10. We can't remove a root or mountpoint.
    2862                 :            :  * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
    2863                 :            :  *     nfs_async_unlink().
    2864                 :            :  */
    2865                 :       8706 : static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
    2866                 :            : {
    2867         [ +  - ]:       8706 :         struct inode *inode = d_backing_inode(victim);
    2868                 :       8706 :         int error;
    2869                 :            : 
    2870         [ +  - ]:       8706 :         if (d_is_negative(victim))
    2871                 :            :                 return -ENOENT;
    2872         [ -  + ]:       8706 :         BUG_ON(!inode);
    2873                 :            : 
    2874         [ -  + ]:       8706 :         BUG_ON(victim->d_parent->d_inode != dir);
    2875                 :            : 
    2876                 :            :         /* Inode writeback is not safe when the uid or gid are invalid. */
    2877   [ +  -  +  - ]:       8706 :         if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
    2878                 :            :                 return -EOVERFLOW;
    2879                 :            : 
    2880                 :       8706 :         audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
    2881                 :            : 
    2882                 :       8706 :         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
    2883         [ +  - ]:       8706 :         if (error)
    2884                 :            :                 return error;
    2885         [ +  - ]:       8706 :         if (IS_APPEND(dir))
    2886                 :            :                 return -EPERM;
    2887                 :            : 
    2888   [ +  +  +  - ]:       8727 :         if (check_sticky(dir, inode) || IS_APPEND(inode) ||
    2889   [ +  -  -  + ]:      17412 :             IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
    2890                 :          0 :                 return -EPERM;
    2891         [ +  + ]:       8706 :         if (isdir) {
    2892   [ -  +  +  - ]:        693 :                 if (!d_is_dir(victim))
    2893                 :            :                         return -ENOTDIR;
    2894         [ +  - ]:        693 :                 if (IS_ROOT(victim))
    2895                 :            :                         return -EBUSY;
    2896   [ +  -  +  - ]:      16026 :         } else if (d_is_dir(victim))
    2897                 :            :                 return -EISDIR;
    2898         [ +  - ]:       8706 :         if (IS_DEADDIR(dir))
    2899                 :            :                 return -ENOENT;
    2900         [ -  + ]:       8706 :         if (victim->d_flags & DCACHE_NFSFS_RENAMED)
    2901                 :          0 :                 return -EBUSY;
    2902                 :            :         return 0;
    2903                 :            : }
    2904                 :            : 
    2905                 :            : /*      Check whether we can create an object with dentry child in directory
    2906                 :            :  *  dir.
    2907                 :            :  *  1. We can't do it if child already exists (open has special treatment for
    2908                 :            :  *     this case, but since we are inlined it's OK)
    2909                 :            :  *  2. We can't do it if dir is read-only (done in permission())
    2910                 :            :  *  3. We can't do it if the fs can't represent the fsuid or fsgid.
    2911                 :            :  *  4. We should have write and exec permissions on dir
    2912                 :            :  *  5. We can't do it if dir is immutable (done in permission())
    2913                 :            :  */
    2914                 :      20103 : static inline int may_create(struct inode *dir, struct dentry *child)
    2915                 :            : {
    2916                 :      20103 :         struct user_namespace *s_user_ns;
    2917                 :      20103 :         audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
    2918         [ +  - ]:      20103 :         if (child->d_inode)
    2919                 :            :                 return -EEXIST;
    2920         [ +  - ]:      20103 :         if (IS_DEADDIR(dir))
    2921                 :            :                 return -ENOENT;
    2922                 :      20103 :         s_user_ns = dir->i_sb->s_user_ns;
    2923   [ +  -  +  - ]:      20103 :         if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
    2924         [ +  - ]:      20103 :             !kgid_has_mapping(s_user_ns, current_fsgid()))
    2925                 :            :                 return -EOVERFLOW;
    2926                 :      20103 :         return inode_permission(dir, MAY_WRITE | MAY_EXEC);
    2927                 :            : }
    2928                 :            : 
    2929                 :            : /*
    2930                 :            :  * p1 and p2 should be directories on the same fs.
    2931                 :            :  */
    2932                 :       4965 : struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
    2933                 :            : {
    2934                 :       4965 :         struct dentry *p;
    2935                 :            : 
    2936         [ +  - ]:       4965 :         if (p1 == p2) {
    2937                 :       4965 :                 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
    2938                 :       4965 :                 return NULL;
    2939                 :            :         }
    2940                 :            : 
    2941                 :          0 :         mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
    2942                 :            : 
    2943                 :          0 :         p = d_ancestor(p2, p1);
    2944         [ #  # ]:          0 :         if (p) {
    2945                 :          0 :                 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
    2946                 :          0 :                 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
    2947                 :          0 :                 return p;
    2948                 :            :         }
    2949                 :            : 
    2950                 :          0 :         p = d_ancestor(p1, p2);
    2951         [ #  # ]:          0 :         if (p) {
    2952                 :          0 :                 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
    2953                 :          0 :                 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
    2954                 :          0 :                 return p;
    2955                 :            :         }
    2956                 :            : 
    2957                 :          0 :         inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
    2958                 :          0 :         inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
    2959                 :          0 :         return NULL;
    2960                 :            : }
    2961                 :            : EXPORT_SYMBOL(lock_rename);
    2962                 :            : 
    2963                 :       4965 : void unlock_rename(struct dentry *p1, struct dentry *p2)
    2964                 :            : {
    2965                 :       4965 :         inode_unlock(p1->d_inode);
    2966         [ -  + ]:       4965 :         if (p1 != p2) {
    2967                 :          0 :                 inode_unlock(p2->d_inode);
    2968                 :          0 :                 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
    2969                 :            :         }
    2970                 :       4965 : }
    2971                 :            : EXPORT_SYMBOL(unlock_rename);
    2972                 :            : 
    2973                 :         21 : int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
    2974                 :            :                 bool want_excl)
    2975                 :            : {
    2976                 :         21 :         int error = may_create(dir, dentry);
    2977         [ +  - ]:         21 :         if (error)
    2978                 :            :                 return error;
    2979                 :            : 
    2980         [ +  - ]:         21 :         if (!dir->i_op->create)
    2981                 :            :                 return -EACCES; /* shouldn't it be ENOSYS? */
    2982                 :         21 :         mode &= S_IALLUGO;
    2983                 :         21 :         mode |= S_IFREG;
    2984                 :         21 :         error = security_inode_create(dir, dentry, mode);
    2985         [ +  - ]:         21 :         if (error)
    2986                 :            :                 return error;
    2987                 :         21 :         error = dir->i_op->create(dir, dentry, mode, want_excl);
    2988         [ +  - ]:         21 :         if (!error)
    2989                 :         21 :                 fsnotify_create(dir, dentry);
    2990                 :            :         return error;
    2991                 :            : }
    2992                 :            : EXPORT_SYMBOL(vfs_create);
    2993                 :            : 
    2994                 :          0 : int vfs_mkobj(struct dentry *dentry, umode_t mode,
    2995                 :            :                 int (*f)(struct dentry *, umode_t, void *),
    2996                 :            :                 void *arg)
    2997                 :            : {
    2998                 :          0 :         struct inode *dir = dentry->d_parent->d_inode;
    2999                 :          0 :         int error = may_create(dir, dentry);
    3000         [ #  # ]:          0 :         if (error)
    3001                 :            :                 return error;
    3002                 :            : 
    3003                 :          0 :         mode &= S_IALLUGO;
    3004                 :          0 :         mode |= S_IFREG;
    3005                 :          0 :         error = security_inode_create(dir, dentry, mode);
    3006         [ #  # ]:          0 :         if (error)
    3007                 :            :                 return error;
    3008                 :          0 :         error = f(dentry, mode, arg);
    3009         [ #  # ]:          0 :         if (!error)
    3010                 :          0 :                 fsnotify_create(dir, dentry);
    3011                 :            :         return error;
    3012                 :            : }
    3013                 :            : EXPORT_SYMBOL(vfs_mkobj);
    3014                 :            : 
    3015                 :         84 : bool may_open_dev(const struct path *path)
    3016                 :            : {
    3017         [ +  - ]:         84 :         return !(path->mnt->mnt_flags & MNT_NODEV) &&
    3018         [ -  + ]:         84 :                 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
    3019                 :            : }
    3020                 :            : 
    3021                 :            : static int may_open(const struct path *path, int acc_mode, int flag)
    3022                 :            : {
    3023                 :            :         struct dentry *dentry = path->dentry;
    3024                 :            :         struct inode *inode = dentry->d_inode;
    3025                 :            :         int error;
    3026                 :            : 
    3027                 :            :         if (!inode)
    3028                 :            :                 return -ENOENT;
    3029                 :            : 
    3030                 :            :         switch (inode->i_mode & S_IFMT) {
    3031                 :            :         case S_IFLNK:
    3032                 :            :                 return -ELOOP;
    3033                 :            :         case S_IFDIR:
    3034                 :            :                 if (acc_mode & MAY_WRITE)
    3035                 :            :                         return -EISDIR;
    3036                 :            :                 break;
    3037                 :            :         case S_IFBLK:
    3038                 :            :         case S_IFCHR:
    3039                 :            :                 if (!may_open_dev(path))
    3040                 :            :                         return -EACCES;
    3041                 :            :                 /*FALLTHRU*/
    3042                 :            :         case S_IFIFO:
    3043                 :            :         case S_IFSOCK:
    3044                 :            :                 flag &= ~O_TRUNC;
    3045                 :            :                 break;
    3046                 :            :         }
    3047                 :            : 
    3048                 :            :         error = inode_permission(inode, MAY_OPEN | acc_mode);
    3049                 :            :         if (error)
    3050                 :            :                 return error;
    3051                 :            : 
    3052                 :            :         /*
    3053                 :            :          * An append-only file must be opened in append mode for writing.
    3054                 :            :          */
    3055                 :            :         if (IS_APPEND(inode)) {
    3056                 :            :                 if  ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
    3057                 :            :                         return -EPERM;
    3058                 :            :                 if (flag & O_TRUNC)
    3059                 :            :                         return -EPERM;
    3060                 :            :         }
    3061                 :            : 
    3062                 :            :         /* O_NOATIME can only be set by the owner or superuser */
    3063                 :            :         if (flag & O_NOATIME && !inode_owner_or_capable(inode))
    3064                 :            :                 return -EPERM;
    3065                 :            : 
    3066                 :            :         return 0;
    3067                 :            : }
    3068                 :            : 
    3069                 :         84 : static int handle_truncate(struct file *filp)
    3070                 :            : {
    3071                 :         84 :         const struct path *path = &filp->f_path;
    3072                 :         84 :         struct inode *inode = path->dentry->d_inode;
    3073                 :         84 :         int error = get_write_access(inode);
    3074                 :         84 :         if (error)
    3075                 :            :                 return error;
    3076                 :            :         /*
    3077                 :            :          * Refuse to truncate files with mandatory locks held on them.
    3078                 :            :          */
    3079                 :         84 :         error = locks_verify_locked(filp);
    3080         [ +  - ]:         84 :         if (!error)
    3081                 :         84 :                 error = security_path_truncate(path);
    3082                 :         84 :         if (!error) {
    3083                 :         84 :                 error = do_truncate(path->dentry, 0,
    3084                 :            :                                     ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
    3085                 :            :                                     filp);
    3086                 :            :         }
    3087                 :         84 :         put_write_access(inode);
    3088                 :         84 :         return error;
    3089                 :            : }
    3090                 :            : 
    3091                 :          0 : static inline int open_to_namei_flags(int flag)
    3092                 :            : {
    3093                 :          0 :         if ((flag & O_ACCMODE) == 3)
    3094                 :          0 :                 flag--;
    3095                 :          0 :         return flag;
    3096                 :            : }
    3097                 :            : 
    3098                 :      13998 : static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
    3099                 :            : {
    3100                 :      13998 :         struct user_namespace *s_user_ns;
    3101         [ +  - ]:      13998 :         int error = security_path_mknod(dir, dentry, mode, 0);
    3102                 :      13998 :         if (error)
    3103                 :            :                 return error;
    3104                 :            : 
    3105                 :      13998 :         s_user_ns = dir->dentry->d_sb->s_user_ns;
    3106   [ +  -  +  - ]:      13998 :         if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
    3107         [ +  - ]:      13998 :             !kgid_has_mapping(s_user_ns, current_fsgid()))
    3108                 :            :                 return -EOVERFLOW;
    3109                 :            : 
    3110                 :      13998 :         error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
    3111         [ +  - ]:      13998 :         if (error)
    3112                 :            :                 return error;
    3113                 :            : 
    3114                 :      13998 :         return security_inode_create(dir->dentry->d_inode, dentry, mode);
    3115                 :            : }
    3116                 :            : 
    3117                 :            : /*
    3118                 :            :  * Attempt to atomically look up, create and open a file from a negative
    3119                 :            :  * dentry.
    3120                 :            :  *
    3121                 :            :  * Returns 0 if successful.  The file will have been created and attached to
    3122                 :            :  * @file by the filesystem calling finish_open().
    3123                 :            :  *
    3124                 :            :  * If the file was looked up only or didn't need creating, FMODE_OPENED won't
    3125                 :            :  * be set.  The caller will need to perform the open themselves.  @path will
    3126                 :            :  * have been updated to point to the new dentry.  This may be negative.
    3127                 :            :  *
    3128                 :            :  * Returns an error code otherwise.
    3129                 :            :  */
    3130                 :          0 : static int atomic_open(struct nameidata *nd, struct dentry *dentry,
    3131                 :            :                         struct path *path, struct file *file,
    3132                 :            :                         const struct open_flags *op,
    3133                 :            :                         int open_flag, umode_t mode)
    3134                 :            : {
    3135                 :          0 :         struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
    3136                 :          0 :         struct inode *dir =  nd->path.dentry->d_inode;
    3137                 :          0 :         int error;
    3138                 :            : 
    3139         [ #  # ]:          0 :         if (!(~open_flag & (O_EXCL | O_CREAT)))     /* both O_EXCL and O_CREAT */
    3140                 :          0 :                 open_flag &= ~O_TRUNC;
    3141                 :            : 
    3142         [ #  # ]:          0 :         if (nd->flags & LOOKUP_DIRECTORY)
    3143                 :          0 :                 open_flag |= O_DIRECTORY;
    3144                 :            : 
    3145                 :          0 :         file->f_path.dentry = DENTRY_NOT_SET;
    3146                 :          0 :         file->f_path.mnt = nd->path.mnt;
    3147         [ #  # ]:          0 :         error = dir->i_op->atomic_open(dir, dentry, file,
    3148                 :            :                                        open_to_namei_flags(open_flag), mode);
    3149                 :          0 :         d_lookup_done(dentry);
    3150         [ #  # ]:          0 :         if (!error) {
    3151         [ #  # ]:          0 :                 if (file->f_mode & FMODE_OPENED) {
    3152                 :            :                         /*
    3153                 :            :                          * We didn't have the inode before the open, so check open
    3154                 :            :                          * permission here.
    3155                 :            :                          */
    3156                 :          0 :                         int acc_mode = op->acc_mode;
    3157         [ #  # ]:          0 :                         if (file->f_mode & FMODE_CREATED) {
    3158         [ #  # ]:          0 :                                 WARN_ON(!(open_flag & O_CREAT));
    3159                 :          0 :                                 fsnotify_create(dir, dentry);
    3160                 :          0 :                                 acc_mode = 0;
    3161                 :            :                         }
    3162                 :          0 :                         error = may_open(&file->f_path, acc_mode, open_flag);
    3163   [ #  #  #  # ]:          0 :                         if (WARN_ON(error > 0))
    3164                 :          0 :                                 error = -EINVAL;
    3165   [ #  #  #  # ]:          0 :                 } else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
    3166                 :            :                         error = -EIO;
    3167                 :            :                 } else {
    3168         [ #  # ]:          0 :                         if (file->f_path.dentry) {
    3169                 :          0 :                                 dput(dentry);
    3170                 :          0 :                                 dentry = file->f_path.dentry;
    3171                 :            :                         }
    3172         [ #  # ]:          0 :                         if (file->f_mode & FMODE_CREATED)
    3173                 :          0 :                                 fsnotify_create(dir, dentry);
    3174         [ #  # ]:          0 :                         if (unlikely(d_is_negative(dentry))) {
    3175                 :            :                                 error = -ENOENT;
    3176                 :            :                         } else {
    3177                 :          0 :                                 path->dentry = dentry;
    3178                 :          0 :                                 path->mnt = nd->path.mnt;
    3179                 :          0 :                                 return 0;
    3180                 :            :                         }
    3181                 :            :                 }
    3182                 :            :         }
    3183                 :          0 :         dput(dentry);
    3184                 :          0 :         return error;
    3185                 :            : }
    3186                 :            : 
    3187                 :            : /*
    3188                 :            :  * Look up and maybe create and open the last component.
    3189                 :            :  *
    3190                 :            :  * Must be called with parent locked (exclusive in O_CREAT case).
    3191                 :            :  *
    3192                 :            :  * Returns 0 on success, that is, if
    3193                 :            :  *  the file was successfully atomically created (if necessary) and opened, or
    3194                 :            :  *  the file was not completely opened at this time, though lookups and
    3195                 :            :  *  creations were performed.
    3196                 :            :  * These case are distinguished by presence of FMODE_OPENED on file->f_mode.
    3197                 :            :  * In the latter case dentry returned in @path might be negative if O_CREAT
    3198                 :            :  * hadn't been specified.
    3199                 :            :  *
    3200                 :            :  * An error code is returned on failure.
    3201                 :            :  */
    3202                 :      96478 : static int lookup_open(struct nameidata *nd, struct path *path,
    3203                 :            :                         struct file *file,
    3204                 :            :                         const struct open_flags *op,
    3205                 :            :                         bool got_write)
    3206                 :            : {
    3207                 :      96478 :         struct dentry *dir = nd->path.dentry;
    3208                 :      96478 :         struct inode *dir_inode = dir->d_inode;
    3209                 :      96478 :         int open_flag = op->open_flag;
    3210                 :      96478 :         struct dentry *dentry;
    3211                 :      96478 :         int error, create_error = 0;
    3212                 :      96478 :         umode_t mode = op->mode;
    3213                 :      96478 :         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
    3214                 :            : 
    3215         [ +  - ]:      96478 :         if (unlikely(IS_DEADDIR(dir_inode)))
    3216                 :            :                 return -ENOENT;
    3217                 :            : 
    3218                 :      96478 :         file->f_mode &= ~FMODE_CREATED;
    3219                 :      96478 :         dentry = d_lookup(dir, &nd->last);
    3220                 :      96478 :         for (;;) {
    3221         [ +  + ]:      96478 :                 if (!dentry) {
    3222                 :      95974 :                         dentry = d_alloc_parallel(dir, &nd->last, &wq);
    3223         [ -  + ]:      95974 :                         if (IS_ERR(dentry))
    3224                 :          0 :                                 return PTR_ERR(dentry);
    3225                 :            :                 }
    3226         [ +  + ]:      96478 :                 if (d_in_lookup(dentry))
    3227                 :            :                         break;
    3228                 :            : 
    3229         [ +  + ]:        568 :                 error = d_revalidate(dentry, nd->flags);
    3230         [ -  + ]:        568 :                 if (likely(error > 0))
    3231                 :            :                         break;
    3232         [ #  # ]:          0 :                 if (error)
    3233                 :          0 :                         goto out_dput;
    3234                 :          0 :                 d_invalidate(dentry);
    3235                 :          0 :                 dput(dentry);
    3236                 :          0 :                 dentry = NULL;
    3237                 :            :         }
    3238         [ +  + ]:      96478 :         if (dentry->d_inode) {
    3239                 :            :                 /* Cached positive dentry: will open in f_op->open */
    3240                 :        344 :                 goto out_no_open;
    3241                 :            :         }
    3242                 :            : 
    3243                 :            :         /*
    3244                 :            :          * Checking write permission is tricky, bacuse we don't know if we are
    3245                 :            :          * going to actually need it: O_CREAT opens should work as long as the
    3246                 :            :          * file exists.  But checking existence breaks atomicity.  The trick is
    3247                 :            :          * to check access and if not granted clear O_CREAT from the flags.
    3248                 :            :          *
    3249                 :            :          * Another problem is returing the "right" error value (e.g. for an
    3250                 :            :          * O_EXCL open we want to return EEXIST not EROFS).
    3251                 :            :          */
    3252         [ +  + ]:      96134 :         if (open_flag & O_CREAT) {
    3253         [ +  + ]:      13998 :                 if (!IS_POSIXACL(dir->d_inode))
    3254                 :         21 :                         mode &= ~current_umask();
    3255         [ -  + ]:      13998 :                 if (unlikely(!got_write)) {
    3256                 :          0 :                         create_error = -EROFS;
    3257                 :          0 :                         open_flag &= ~O_CREAT;
    3258         [ #  # ]:          0 :                         if (open_flag & (O_EXCL | O_TRUNC))
    3259                 :          0 :                                 goto no_open;
    3260                 :            :                         /* No side effects, safe to clear O_CREAT */
    3261                 :            :                 } else {
    3262                 :      13998 :                         create_error = may_o_create(&nd->path, dentry, mode);
    3263         [ -  + ]:      13998 :                         if (create_error) {
    3264                 :          0 :                                 open_flag &= ~O_CREAT;
    3265         [ #  # ]:          0 :                                 if (open_flag & O_EXCL)
    3266                 :          0 :                                         goto no_open;
    3267                 :            :                         }
    3268                 :            :                 }
    3269         [ +  + ]:      82136 :         } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
    3270         [ -  + ]:       1134 :                    unlikely(!got_write)) {
    3271                 :            :                 /*
    3272                 :            :                  * No O_CREATE -> atomicity not a requirement -> fall
    3273                 :            :                  * back to lookup + open
    3274                 :            :                  */
    3275                 :          0 :                 goto no_open;
    3276                 :            :         }
    3277                 :            : 
    3278         [ -  + ]:      96134 :         if (dir_inode->i_op->atomic_open) {
    3279                 :          0 :                 error = atomic_open(nd, dentry, path, file, op, open_flag,
    3280                 :            :                                     mode);
    3281   [ #  #  #  # ]:          0 :                 if (unlikely(error == -ENOENT) && create_error)
    3282                 :          0 :                         error = create_error;
    3283                 :          0 :                 return error;
    3284                 :            :         }
    3285                 :            : 
    3286                 :      96134 : no_open:
    3287         [ +  + ]:      96134 :         if (d_in_lookup(dentry)) {
    3288                 :      95910 :                 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
    3289                 :            :                                                              nd->flags);
    3290                 :      95910 :                 d_lookup_done(dentry);
    3291         [ +  + ]:      95910 :                 if (unlikely(res)) {
    3292         [ +  - ]:        945 :                         if (IS_ERR(res)) {
    3293                 :        945 :                                 error = PTR_ERR(res);
    3294                 :        945 :                                 goto out_dput;
    3295                 :            :                         }
    3296                 :          0 :                         dput(dentry);
    3297                 :          0 :                         dentry = res;
    3298                 :            :                 }
    3299                 :            :         }
    3300                 :            : 
    3301                 :            :         /* Negative dentry, just create the file */
    3302   [ +  +  +  + ]:      95189 :         if (!dentry->d_inode && (open_flag & O_CREAT)) {
    3303                 :      13956 :                 file->f_mode |= FMODE_CREATED;
    3304                 :      13956 :                 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
    3305         [ -  + ]:      13956 :                 if (!dir_inode->i_op->create) {
    3306                 :          0 :                         error = -EACCES;
    3307                 :          0 :                         goto out_dput;
    3308                 :            :                 }
    3309                 :      13956 :                 error = dir_inode->i_op->create(dir_inode, dentry, mode,
    3310                 :      13956 :                                                 open_flag & O_EXCL);
    3311         [ -  + ]:      13956 :                 if (error)
    3312                 :          0 :                         goto out_dput;
    3313                 :      13956 :                 fsnotify_create(dir_inode, dentry);
    3314                 :            :         }
    3315   [ -  +  -  - ]:      95189 :         if (unlikely(create_error) && !dentry->d_inode) {
    3316                 :          0 :                 error = create_error;
    3317                 :          0 :                 goto out_dput;
    3318                 :            :         }
    3319                 :      95189 : out_no_open:
    3320                 :      95533 :         path->dentry = dentry;
    3321                 :      95533 :         path->mnt = nd->path.mnt;
    3322                 :      95533 :         return 0;
    3323                 :            : 
    3324                 :        945 : out_dput:
    3325                 :        945 :         dput(dentry);
    3326                 :        945 :         return error;
    3327                 :            : }
    3328                 :            : 
    3329                 :            : /*
    3330                 :            :  * Handle the last step of open()
    3331                 :            :  */
    3332                 :     605216 : static int do_last(struct nameidata *nd,
    3333                 :            :                    struct file *file, const struct open_flags *op)
    3334                 :            : {
    3335                 :     605216 :         struct dentry *dir = nd->path.dentry;
    3336                 :     605216 :         kuid_t dir_uid = nd->inode->i_uid;
    3337                 :     605216 :         umode_t dir_mode = nd->inode->i_mode;
    3338                 :     605216 :         int open_flag = op->open_flag;
    3339                 :     605216 :         bool will_truncate = (open_flag & O_TRUNC) != 0;
    3340                 :     605216 :         bool got_write = false;
    3341                 :     605216 :         int acc_mode = op->acc_mode;
    3342                 :     605216 :         unsigned seq;
    3343                 :     605216 :         struct inode *inode;
    3344                 :     605216 :         struct path path;
    3345                 :     605216 :         int error;
    3346                 :            : 
    3347                 :     605216 :         nd->flags &= ~LOOKUP_PARENT;
    3348                 :     605216 :         nd->flags |= op->intent;
    3349                 :            : 
    3350         [ +  + ]:     605216 :         if (nd->last_type != LAST_NORM) {
    3351                 :        315 :                 error = handle_dots(nd, nd->last_type);
    3352         [ +  - ]:        315 :                 if (unlikely(error))
    3353                 :            :                         return error;
    3354                 :        315 :                 goto finish_open;
    3355                 :            :         }
    3356                 :            : 
    3357         [ +  + ]:     604901 :         if (!(open_flag & O_CREAT)) {
    3358         [ +  + ]:     590609 :                 if (nd->last.name[nd->last.len])
    3359                 :       2205 :                         nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
    3360                 :            :                 /* we _can_ be in RCU mode here */
    3361                 :     590609 :                 error = lookup_fast(nd, &path, &inode, &seq);
    3362         [ +  + ]:     590609 :                 if (likely(error > 0))
    3363                 :     450754 :                         goto finish_lookup;
    3364                 :            : 
    3365         [ +  + ]:     139855 :                 if (error < 0)
    3366                 :            :                         return error;
    3367                 :            : 
    3368         [ -  + ]:      82186 :                 BUG_ON(nd->inode != dir->d_inode);
    3369         [ -  + ]:      82186 :                 BUG_ON(nd->flags & LOOKUP_RCU);
    3370                 :            :         } else {
    3371                 :            :                 /* create side of things */
    3372                 :            :                 /*
    3373                 :            :                  * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
    3374                 :            :                  * has been cleared when we got to the last component we are
    3375                 :            :                  * about to look up
    3376                 :            :                  */
    3377                 :      14292 :                 error = complete_walk(nd);
    3378         [ +  - ]:      14292 :                 if (error)
    3379                 :            :                         return error;
    3380                 :            : 
    3381                 :      14292 :                 audit_inode(nd->name, dir, AUDIT_INODE_PARENT);
    3382                 :            :                 /* trailing slashes? */
    3383         [ +  - ]:      14292 :                 if (unlikely(nd->last.name[nd->last.len]))
    3384                 :            :                         return -EISDIR;
    3385                 :            :         }
    3386                 :            : 
    3387         [ +  + ]:      96478 :         if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
    3388                 :      15426 :                 error = mnt_want_write(nd->path.mnt);
    3389         [ +  + ]:      15426 :                 if (!error)
    3390                 :      15405 :                         got_write = true;
    3391                 :            :                 /*
    3392                 :            :                  * do _not_ fail yet - we might not need that or fail with
    3393                 :            :                  * a different error; let lookup_open() decide; we'll be
    3394                 :            :                  * dropping this one anyway.
    3395                 :            :                  */
    3396                 :            :         }
    3397         [ +  + ]:      96478 :         if (open_flag & O_CREAT)
    3398                 :      14292 :                 inode_lock(dir->d_inode);
    3399                 :            :         else
    3400                 :      82186 :                 inode_lock_shared(dir->d_inode);
    3401                 :      96478 :         error = lookup_open(nd, &path, file, op, got_write);
    3402         [ +  + ]:      96478 :         if (open_flag & O_CREAT)
    3403                 :      14292 :                 inode_unlock(dir->d_inode);
    3404                 :            :         else
    3405                 :      82186 :                 inode_unlock_shared(dir->d_inode);
    3406                 :            : 
    3407         [ +  + ]:      96478 :         if (error)
    3408                 :        945 :                 goto out;
    3409                 :            : 
    3410         [ -  + ]:      95533 :         if (file->f_mode & FMODE_OPENED) {
    3411   [ #  #  #  # ]:          0 :                 if ((file->f_mode & FMODE_CREATED) ||
    3412         [ #  # ]:          0 :                     !S_ISREG(file_inode(file)->i_mode))
    3413                 :            :                         will_truncate = false;
    3414                 :            : 
    3415                 :          0 :                 audit_inode(nd->name, file->f_path.dentry, 0);
    3416                 :          0 :                 goto opened;
    3417                 :            :         }
    3418                 :            : 
    3419         [ +  + ]:      95533 :         if (file->f_mode & FMODE_CREATED) {
    3420                 :            :                 /* Don't check for write permission, don't truncate */
    3421                 :      13956 :                 open_flag &= ~O_TRUNC;
    3422                 :      13956 :                 will_truncate = false;
    3423                 :      13956 :                 acc_mode = 0;
    3424                 :      13956 :                 path_to_nameidata(&path, nd);
    3425                 :      13956 :                 goto finish_open_created;
    3426                 :            :         }
    3427                 :            : 
    3428                 :            :         /*
    3429                 :            :          * If atomic_open() acquired write access it is dropped now due to
    3430                 :            :          * possible mount and symlink following (this might be optimized away if
    3431                 :            :          * necessary...)
    3432                 :            :          */
    3433         [ +  + ]:      81577 :         if (got_write) {
    3434                 :       1344 :                 mnt_drop_write(nd->path.mnt);
    3435                 :       1344 :                 got_write = false;
    3436                 :            :         }
    3437                 :            : 
    3438                 :      81577 :         error = follow_managed(&path, nd);
    3439         [ +  + ]:      81577 :         if (unlikely(error < 0))
    3440                 :            :                 return error;
    3441                 :            : 
    3442                 :            :         /*
    3443                 :            :          * create/update audit record if it already exists.
    3444                 :            :          */
    3445                 :      23794 :         audit_inode(nd->name, path.dentry, 0);
    3446                 :            : 
    3447         [ -  + ]:      23794 :         if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
    3448                 :          0 :                 path_to_nameidata(&path, nd);
    3449                 :          0 :                 return -EEXIST;
    3450                 :            :         }
    3451                 :            : 
    3452                 :      23794 :         seq = 0;        /* out of RCU mode, so the value doesn't matter */
    3453                 :      23794 :         inode = d_backing_inode(path.dentry);
    3454                 :     474548 : finish_lookup:
    3455                 :     474548 :         error = step_into(nd, &path, 0, inode, seq);
    3456         [ +  + ]:     474548 :         if (unlikely(error))
    3457                 :            :                 return error;
    3458                 :     391489 : finish_open:
    3459                 :            :         /* Why this, you ask?  _Now_ we might have grown LOOKUP_JUMPED... */
    3460                 :     391804 :         error = complete_walk(nd);
    3461         [ +  - ]:     391804 :         if (error)
    3462                 :            :                 return error;
    3463                 :     391804 :         audit_inode(nd->name, nd->path.dentry, 0);
    3464         [ +  + ]:     391804 :         if (open_flag & O_CREAT) {
    3465                 :        336 :                 error = -EISDIR;
    3466   [ +  -  -  + ]:        672 :                 if (d_is_dir(nd->path.dentry))
    3467                 :          0 :                         goto out;
    3468                 :        336 :                 error = may_create_in_sticky(dir_mode, dir_uid,
    3469                 :            :                                              d_backing_inode(nd->path.dentry));
    3470         [ -  + ]:        336 :                 if (unlikely(error))
    3471                 :          0 :                         goto out;
    3472                 :            :         }
    3473                 :     391804 :         error = -ENOTDIR;
    3474   [ +  +  -  + ]:     391804 :         if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
    3475                 :          0 :                 goto out;
    3476         [ +  + ]:     391804 :         if (!d_is_reg(nd->path.dentry))
    3477                 :            :                 will_truncate = false;
    3478                 :            : 
    3479         [ +  + ]:     357787 :         if (will_truncate) {
    3480                 :         84 :                 error = mnt_want_write(nd->path.mnt);
    3481         [ -  + ]:         84 :                 if (error)
    3482                 :          0 :                         goto out;
    3483                 :            :                 got_write = true;
    3484                 :            :         }
    3485                 :     357703 : finish_open_created:
    3486                 :     405760 :         error = may_open(&nd->path, acc_mode, open_flag);
    3487         [ +  + ]:     405760 :         if (error)
    3488                 :        189 :                 goto out;
    3489         [ -  + ]:     405571 :         BUG_ON(file->f_mode & FMODE_OPENED); /* once it's opened, it's opened */
    3490                 :     405571 :         error = vfs_open(&nd->path, file);
    3491         [ +  + ]:     405550 :         if (error)
    3492                 :      11025 :                 goto out;
    3493                 :     394525 : opened:
    3494         [ +  + ]:     394525 :         error = ima_file_check(file, op->acc_mode);
    3495         [ +  + ]:     394525 :         if (!error && will_truncate)
    3496                 :         84 :                 error = handle_truncate(file);
    3497                 :     394441 : out:
    3498         [ -  + ]:     406684 :         if (unlikely(error > 0)) {
    3499                 :          0 :                 WARN_ON(1);
    3500                 :          0 :                 error = -EINVAL;
    3501                 :            :         }
    3502         [ +  + ]:     406684 :         if (got_write)
    3503                 :      14145 :                 mnt_drop_write(nd->path.mnt);
    3504                 :            :         return error;
    3505                 :            : }
    3506                 :            : 
    3507                 :          0 : struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
    3508                 :            : {
    3509                 :          0 :         struct dentry *child = NULL;
    3510                 :          0 :         struct inode *dir = dentry->d_inode;
    3511                 :          0 :         struct inode *inode;
    3512                 :          0 :         int error;
    3513                 :            : 
    3514                 :            :         /* we want directory to be writable */
    3515                 :          0 :         error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
    3516         [ #  # ]:          0 :         if (error)
    3517                 :          0 :                 goto out_err;
    3518                 :          0 :         error = -EOPNOTSUPP;
    3519         [ #  # ]:          0 :         if (!dir->i_op->tmpfile)
    3520                 :          0 :                 goto out_err;
    3521                 :          0 :         error = -ENOMEM;
    3522                 :          0 :         child = d_alloc(dentry, &slash_name);
    3523         [ #  # ]:          0 :         if (unlikely(!child))
    3524                 :          0 :                 goto out_err;
    3525                 :          0 :         error = dir->i_op->tmpfile(dir, child, mode);
    3526         [ #  # ]:          0 :         if (error)
    3527                 :          0 :                 goto out_err;
    3528                 :          0 :         error = -ENOENT;
    3529                 :          0 :         inode = child->d_inode;
    3530         [ #  # ]:          0 :         if (unlikely(!inode))
    3531                 :          0 :                 goto out_err;
    3532         [ #  # ]:          0 :         if (!(open_flag & O_EXCL)) {
    3533                 :          0 :                 spin_lock(&inode->i_lock);
    3534                 :          0 :                 inode->i_state |= I_LINKABLE;
    3535                 :          0 :                 spin_unlock(&inode->i_lock);
    3536                 :            :         }
    3537                 :            :         ima_post_create_tmpfile(inode);
    3538                 :            :         return child;
    3539                 :            : 
    3540                 :          0 : out_err:
    3541                 :          0 :         dput(child);
    3542                 :          0 :         return ERR_PTR(error);
    3543                 :            : }
    3544                 :            : EXPORT_SYMBOL(vfs_tmpfile);
    3545                 :            : 
    3546                 :            : static int do_tmpfile(struct nameidata *nd, unsigned flags,
    3547                 :            :                 const struct open_flags *op,
    3548                 :            :                 struct file *file)
    3549                 :            : {
    3550                 :            :         struct dentry *child;
    3551                 :            :         struct path path;
    3552                 :            :         int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
    3553                 :            :         if (unlikely(error))
    3554                 :            :                 return error;
    3555                 :            :         error = mnt_want_write(path.mnt);
    3556                 :            :         if (unlikely(error))
    3557                 :            :                 goto out;
    3558                 :            :         child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
    3559                 :            :         error = PTR_ERR(child);
    3560                 :            :         if (IS_ERR(child))
    3561                 :            :                 goto out2;
    3562                 :            :         dput(path.dentry);
    3563                 :            :         path.dentry = child;
    3564                 :            :         audit_inode(nd->name, child, 0);
    3565                 :            :         /* Don't check for other permissions, the inode was just created */
    3566                 :            :         error = may_open(&path, 0, op->open_flag);
    3567                 :            :         if (error)
    3568                 :            :                 goto out2;
    3569                 :            :         file->f_path.mnt = path.mnt;
    3570                 :            :         error = finish_open(file, child, NULL);
    3571                 :            : out2:
    3572                 :            :         mnt_drop_write(path.mnt);
    3573                 :            : out:
    3574                 :            :         path_put(&path);
    3575                 :            :         return error;
    3576                 :            : }
    3577                 :            : 
    3578                 :     600016 : static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
    3579                 :            : {
    3580                 :     600016 :         struct path path;
    3581                 :     600016 :         int error = path_lookupat(nd, flags, &path);
    3582         [ +  + ]:     600016 :         if (!error) {
    3583                 :     527038 :                 audit_inode(nd->name, path.dentry, 0);
    3584                 :     527038 :                 error = vfs_open(&path, file);
    3585                 :     527038 :                 path_put(&path);
    3586                 :            :         }
    3587                 :     600016 :         return error;
    3588                 :            : }
    3589                 :            : 
    3590                 :    1167917 : static struct file *path_openat(struct nameidata *nd,
    3591                 :            :                         const struct open_flags *op, unsigned flags)
    3592                 :            : {
    3593                 :    1167917 :         struct file *file;
    3594                 :    1167917 :         int error;
    3595                 :            : 
    3596                 :    1167917 :         file = alloc_empty_file(op->open_flag, current_cred());
    3597         [ +  - ]:    1167917 :         if (IS_ERR(file))
    3598                 :            :                 return file;
    3599                 :            : 
    3600         [ -  + ]:    1167917 :         if (unlikely(file->f_flags & __O_TMPFILE)) {
    3601                 :          0 :                 error = do_tmpfile(nd, flags, op, file);
    3602         [ +  + ]:    1167917 :         } else if (unlikely(file->f_flags & O_PATH)) {
    3603                 :     600016 :                 error = do_o_path(nd, flags, file);
    3604                 :            :         } else {
    3605                 :     567901 :                 const char *s = path_init(nd, flags);
    3606   [ +  +  +  + ]:    1256155 :                 while (!(error = link_path_walk(s, nd)) &&
    3607                 :     605216 :                         (error = do_last(nd, file, op)) > 0) {
    3608                 :      83059 :                         nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
    3609                 :      83059 :                         s = trailing_symlink(nd);
    3610                 :            :                 }
    3611                 :     567880 :                 terminate_walk(nd);
    3612                 :            :         }
    3613         [ +  + ]:    1167896 :         if (likely(!error)) {
    3614         [ -  + ]:     921563 :                 if (likely(file->f_mode & FMODE_OPENED))
    3615                 :            :                         return file;
    3616                 :          0 :                 WARN_ON(1);
    3617                 :          0 :                 error = -EINVAL;
    3618                 :            :         }
    3619                 :     246333 :         fput(file);
    3620         [ -  + ]:     246333 :         if (error == -EOPENSTALE) {
    3621         [ #  # ]:          0 :                 if (flags & LOOKUP_RCU)
    3622                 :            :                         error = -ECHILD;
    3623                 :            :                 else
    3624                 :          0 :                         error = -ESTALE;
    3625                 :            :         }
    3626                 :     246333 :         return ERR_PTR(error);
    3627                 :            : }
    3628                 :            : 
    3629                 :    1167917 : struct file *do_filp_open(int dfd, struct filename *pathname,
    3630                 :            :                 const struct open_flags *op)
    3631                 :            : {
    3632                 :    1167917 :         struct nameidata nd;
    3633                 :    1167917 :         int flags = op->lookup_flags;
    3634                 :    1167917 :         struct file *filp;
    3635                 :            : 
    3636         [ -  + ]:    1167917 :         set_nameidata(&nd, dfd, pathname);
    3637                 :    1167917 :         filp = path_openat(&nd, op, flags | LOOKUP_RCU);
    3638         [ -  + ]:    1167896 :         if (unlikely(filp == ERR_PTR(-ECHILD)))
    3639                 :          0 :                 filp = path_openat(&nd, op, flags);
    3640         [ -  + ]:    1167896 :         if (unlikely(filp == ERR_PTR(-ESTALE)))
    3641                 :          0 :                 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
    3642                 :    1167896 :         restore_nameidata();
    3643                 :    1167896 :         return filp;
    3644                 :            : }
    3645                 :            : 
    3646                 :          0 : struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
    3647                 :            :                 const char *name, const struct open_flags *op)
    3648                 :            : {
    3649                 :          0 :         struct nameidata nd;
    3650                 :          0 :         struct file *file;
    3651                 :          0 :         struct filename *filename;
    3652                 :          0 :         int flags = op->lookup_flags | LOOKUP_ROOT;
    3653                 :            : 
    3654                 :          0 :         nd.root.mnt = mnt;
    3655                 :          0 :         nd.root.dentry = dentry;
    3656                 :            : 
    3657   [ #  #  #  # ]:          0 :         if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
    3658                 :            :                 return ERR_PTR(-ELOOP);
    3659                 :            : 
    3660                 :          0 :         filename = getname_kernel(name);
    3661         [ #  # ]:          0 :         if (IS_ERR(filename))
    3662                 :            :                 return ERR_CAST(filename);
    3663                 :            : 
    3664         [ #  # ]:          0 :         set_nameidata(&nd, -1, filename);
    3665                 :          0 :         file = path_openat(&nd, op, flags | LOOKUP_RCU);
    3666         [ #  # ]:          0 :         if (unlikely(file == ERR_PTR(-ECHILD)))
    3667                 :          0 :                 file = path_openat(&nd, op, flags);
    3668         [ #  # ]:          0 :         if (unlikely(file == ERR_PTR(-ESTALE)))
    3669                 :          0 :                 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
    3670                 :          0 :         restore_nameidata();
    3671                 :          0 :         putname(filename);
    3672                 :          0 :         return file;
    3673                 :            : }
    3674                 :            : 
    3675                 :      87593 : static struct dentry *filename_create(int dfd, struct filename *name,
    3676                 :            :                                 struct path *path, unsigned int lookup_flags)
    3677                 :            : {
    3678                 :      87593 :         struct dentry *dentry = ERR_PTR(-EEXIST);
    3679                 :      87593 :         struct qstr last;
    3680                 :      87593 :         int type;
    3681                 :      87593 :         int err2;
    3682                 :      87593 :         int error;
    3683                 :      87593 :         bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
    3684                 :            : 
    3685                 :            :         /*
    3686                 :            :          * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
    3687                 :            :          * other flags passed in are ignored!
    3688                 :            :          */
    3689                 :      87593 :         lookup_flags &= LOOKUP_REVAL;
    3690                 :            : 
    3691                 :      87593 :         name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
    3692         [ +  + ]:      87593 :         if (IS_ERR(name))
    3693                 :            :                 return ERR_CAST(name);
    3694                 :            : 
    3695                 :            :         /*
    3696                 :            :          * Yucky last component or no last component at all?
    3697                 :            :          * (foo/., foo/.., /////)
    3698                 :            :          */
    3699         [ -  + ]:      81099 :         if (unlikely(type != LAST_NORM))
    3700                 :          0 :                 goto out;
    3701                 :            : 
    3702                 :            :         /* don't fail immediately if it's r/o, at least try to report other errors */
    3703                 :      81099 :         err2 = mnt_want_write(path->mnt);
    3704                 :            :         /*
    3705                 :            :          * Do the final lookup.
    3706                 :            :          */
    3707                 :      81099 :         lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
    3708                 :      81099 :         inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
    3709                 :      81099 :         dentry = __lookup_hash(&last, path->dentry, lookup_flags);
    3710         [ -  + ]:      81099 :         if (IS_ERR(dentry))
    3711                 :          0 :                 goto unlock;
    3712                 :            : 
    3713                 :      81099 :         error = -EEXIST;
    3714         [ +  + ]:      81099 :         if (d_is_positive(dentry))
    3715                 :      65478 :                 goto fail;
    3716                 :            : 
    3717                 :            :         /*
    3718                 :            :          * Special case - lookup gave negative, but... we had foo/bar/
    3719                 :            :          * From the vfs_mknod() POV we just have a negative dentry -
    3720                 :            :          * all is fine. Let's be bastards - you had / on the end, you've
    3721                 :            :          * been asking for (non-existent) directory. -ENOENT for you.
    3722                 :            :          */
    3723   [ +  +  -  + ]:      15621 :         if (unlikely(!is_dir && last.name[last.len])) {
    3724                 :          0 :                 error = -ENOENT;
    3725                 :          0 :                 goto fail;
    3726                 :            :         }
    3727         [ -  + ]:      15621 :         if (unlikely(err2)) {
    3728                 :          0 :                 error = err2;
    3729                 :          0 :                 goto fail;
    3730                 :            :         }
    3731                 :      15621 :         putname(name);
    3732                 :      15621 :         return dentry;
    3733                 :      65478 : fail:
    3734                 :      65478 :         dput(dentry);
    3735                 :      65478 :         dentry = ERR_PTR(error);
    3736                 :      65478 : unlock:
    3737                 :      65478 :         inode_unlock(path->dentry->d_inode);
    3738         [ +  + ]:      65478 :         if (!err2)
    3739                 :      65248 :                 mnt_drop_write(path->mnt);
    3740                 :        230 : out:
    3741                 :      65478 :         path_put(path);
    3742                 :      65478 :         putname(name);
    3743                 :      65478 :         return dentry;
    3744                 :            : }
    3745                 :            : 
    3746                 :       2970 : struct dentry *kern_path_create(int dfd, const char *pathname,
    3747                 :            :                                 struct path *path, unsigned int lookup_flags)
    3748                 :            : {
    3749                 :       2970 :         return filename_create(dfd, getname_kernel(pathname),
    3750                 :            :                                 path, lookup_flags);
    3751                 :            : }
    3752                 :            : EXPORT_SYMBOL(kern_path_create);
    3753                 :            : 
    3754                 :      15621 : void done_path_create(struct path *path, struct dentry *dentry)
    3755                 :            : {
    3756                 :      15621 :         dput(dentry);
    3757                 :      15621 :         inode_unlock(path->dentry->d_inode);
    3758                 :      15621 :         mnt_drop_write(path->mnt);
    3759                 :      15621 :         path_put(path);
    3760                 :      15621 : }
    3761                 :            : EXPORT_SYMBOL(done_path_create);
    3762                 :            : 
    3763                 :      84623 : inline struct dentry *user_path_create(int dfd, const char __user *pathname,
    3764                 :            :                                 struct path *path, unsigned int lookup_flags)
    3765                 :            : {
    3766                 :      84623 :         return filename_create(dfd, getname(pathname), path, lookup_flags);
    3767                 :            : }
    3768                 :            : EXPORT_SYMBOL(user_path_create);
    3769                 :            : 
    3770                 :       3096 : int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
    3771                 :            : {
    3772                 :       3096 :         int error = may_create(dir, dentry);
    3773                 :            : 
    3774         [ +  - ]:       3096 :         if (error)
    3775                 :            :                 return error;
    3776                 :            : 
    3777   [ +  +  +  - ]:       3096 :         if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
    3778                 :            :                 return -EPERM;
    3779                 :            : 
    3780         [ +  - ]:       3096 :         if (!dir->i_op->mknod)
    3781                 :            :                 return -EPERM;
    3782                 :            : 
    3783                 :       3096 :         error = devcgroup_inode_mknod(mode, dev);
    3784                 :       3096 :         if (error)
    3785                 :            :                 return error;
    3786                 :            : 
    3787                 :       3096 :         error = security_inode_mknod(dir, dentry, mode, dev);
    3788         [ +  - ]:       3096 :         if (error)
    3789                 :            :                 return error;
    3790                 :            : 
    3791                 :       3096 :         error = dir->i_op->mknod(dir, dentry, mode, dev);
    3792         [ +  - ]:       3096 :         if (!error)
    3793                 :       3096 :                 fsnotify_create(dir, dentry);
    3794                 :            :         return error;
    3795                 :            : }
    3796                 :            : EXPORT_SYMBOL(vfs_mknod);
    3797                 :            : 
    3798                 :        378 : static int may_mknod(umode_t mode)
    3799                 :            : {
    3800                 :        378 :         switch (mode & S_IFMT) {
    3801                 :            :         case S_IFREG:
    3802                 :            :         case S_IFCHR:
    3803                 :            :         case S_IFBLK:
    3804                 :            :         case S_IFIFO:
    3805                 :            :         case S_IFSOCK:
    3806                 :            :         case 0: /* zero mode translates to S_IFREG */
    3807                 :            :                 return 0;
    3808                 :            :         case S_IFDIR:
    3809                 :          0 :                 return -EPERM;
    3810                 :            :         default:
    3811                 :            :                 return -EINVAL;
    3812                 :            :         }
    3813                 :            : }
    3814                 :            : 
    3815                 :        378 : long do_mknodat(int dfd, const char __user *filename, umode_t mode,
    3816                 :            :                 unsigned int dev)
    3817                 :            : {
    3818                 :        378 :         struct dentry *dentry;
    3819                 :        378 :         struct path path;
    3820                 :        378 :         int error;
    3821                 :        378 :         unsigned int lookup_flags = 0;
    3822                 :            : 
    3823      [ -  -  + ]:        378 :         error = may_mknod(mode);
    3824                 :          0 :         if (error)
    3825                 :          0 :                 return error;
    3826                 :            : retry:
    3827                 :        378 :         dentry = user_path_create(dfd, filename, &path, lookup_flags);
    3828         [ -  + ]:        378 :         if (IS_ERR(dentry))
    3829                 :          0 :                 return PTR_ERR(dentry);
    3830                 :            : 
    3831         [ +  + ]:        378 :         if (!IS_POSIXACL(path.dentry->d_inode))
    3832                 :         84 :                 mode &= ~current_umask();
    3833   [ +  +  +  - ]:        378 :         error = security_path_mknod(&path, dentry, mode, dev);
    3834                 :        378 :         if (error)
    3835                 :            :                 goto out;
    3836   [ +  +  +  - ]:        378 :         switch (mode & S_IFMT) {
    3837                 :         21 :                 case 0: case S_IFREG:
    3838                 :         21 :                         error = vfs_create(path.dentry->d_inode,dentry,mode,true);
    3839                 :         21 :                         if (!error)
    3840                 :            :                                 ima_post_path_mknod(dentry);
    3841                 :            :                         break;
    3842                 :            :                 case S_IFCHR: case S_IFBLK:
    3843                 :        294 :                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,
    3844                 :            :                                         new_decode_dev(dev));
    3845                 :        294 :                         break;
    3846                 :         63 :                 case S_IFIFO: case S_IFSOCK:
    3847                 :         63 :                         error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
    3848                 :         63 :                         break;
    3849                 :            :         }
    3850                 :        378 : out:
    3851                 :        378 :         done_path_create(&path, dentry);
    3852   [ -  +  -  + ]:        756 :         if (retry_estale(error, lookup_flags)) {
    3853                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    3854                 :          0 :                 goto retry;
    3855                 :            :         }
    3856                 :            :         return error;
    3857                 :            : }
    3858                 :            : 
    3859                 :          0 : SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
    3860                 :            :                 unsigned int, dev)
    3861                 :            : {
    3862                 :          0 :         return do_mknodat(dfd, filename, mode, dev);
    3863                 :            : }
    3864                 :            : 
    3865                 :        588 : SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
    3866                 :            : {
    3867                 :        294 :         return do_mknodat(AT_FDCWD, filename, mode, dev);
    3868                 :            : }
    3869                 :            : 
    3870                 :       8169 : int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
    3871                 :            : {
    3872                 :       8169 :         int error = may_create(dir, dentry);
    3873                 :       8169 :         unsigned max_links = dir->i_sb->s_max_links;
    3874                 :            : 
    3875         [ +  - ]:       8169 :         if (error)
    3876                 :            :                 return error;
    3877                 :            : 
    3878         [ +  - ]:       8169 :         if (!dir->i_op->mkdir)
    3879                 :            :                 return -EPERM;
    3880                 :            : 
    3881                 :       8169 :         mode &= (S_IRWXUGO|S_ISVTX);
    3882                 :       8169 :         error = security_inode_mkdir(dir, dentry, mode);
    3883         [ +  - ]:       8169 :         if (error)
    3884                 :            :                 return error;
    3885                 :            : 
    3886   [ -  +  -  - ]:       8169 :         if (max_links && dir->i_nlink >= max_links)
    3887                 :            :                 return -EMLINK;
    3888                 :            : 
    3889                 :       8169 :         error = dir->i_op->mkdir(dir, dentry, mode);
    3890         [ +  + ]:       8169 :         if (!error)
    3891                 :       8127 :                 fsnotify_mkdir(dir, dentry);
    3892                 :            :         return error;
    3893                 :            : }
    3894                 :            : EXPORT_SYMBOL(vfs_mkdir);
    3895                 :            : 
    3896                 :      79763 : long do_mkdirat(int dfd, const char __user *pathname, umode_t mode)
    3897                 :            : {
    3898                 :      79763 :         struct dentry *dentry;
    3899                 :      79763 :         struct path path;
    3900                 :      79763 :         int error;
    3901                 :      79763 :         unsigned int lookup_flags = LOOKUP_DIRECTORY;
    3902                 :            : 
    3903                 :      79763 : retry:
    3904                 :      79763 :         dentry = user_path_create(dfd, pathname, &path, lookup_flags);
    3905         [ +  + ]:      79763 :         if (IS_ERR(dentry))
    3906                 :      71720 :                 return PTR_ERR(dentry);
    3907                 :            : 
    3908         [ +  + ]:       8043 :         if (!IS_POSIXACL(path.dentry->d_inode))
    3909                 :       1344 :                 mode &= ~current_umask();
    3910                 :       8043 :         error = security_path_mkdir(&path, dentry, mode);
    3911                 :       8043 :         if (!error)
    3912                 :       8043 :                 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
    3913                 :       8043 :         done_path_create(&path, dentry);
    3914   [ -  +  -  + ]:      16086 :         if (retry_estale(error, lookup_flags)) {
    3915                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    3916                 :          0 :                 goto retry;
    3917                 :            :         }
    3918                 :            :         return error;
    3919                 :            : }
    3920                 :            : 
    3921                 :        168 : SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
    3922                 :            : {
    3923                 :         84 :         return do_mkdirat(dfd, pathname, mode);
    3924                 :            : }
    3925                 :            : 
    3926                 :     159274 : SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
    3927                 :            : {
    3928                 :      79637 :         return do_mkdirat(AT_FDCWD, pathname, mode);
    3929                 :            : }
    3930                 :            : 
    3931                 :        693 : int vfs_rmdir(struct inode *dir, struct dentry *dentry)
    3932                 :            : {
    3933                 :        693 :         int error = may_delete(dir, dentry, 1);
    3934                 :            : 
    3935         [ +  - ]:        693 :         if (error)
    3936                 :            :                 return error;
    3937                 :            : 
    3938         [ +  - ]:        693 :         if (!dir->i_op->rmdir)
    3939                 :            :                 return -EPERM;
    3940                 :            : 
    3941         [ +  - ]:        693 :         dget(dentry);
    3942                 :        693 :         inode_lock(dentry->d_inode);
    3943                 :            : 
    3944                 :        693 :         error = -EBUSY;
    3945   [ -  +  -  - ]:        693 :         if (is_local_mountpoint(dentry))
    3946                 :          0 :                 goto out;
    3947                 :            : 
    3948                 :        693 :         error = security_inode_rmdir(dir, dentry);
    3949         [ -  + ]:        693 :         if (error)
    3950                 :          0 :                 goto out;
    3951                 :            : 
    3952                 :        693 :         error = dir->i_op->rmdir(dir, dentry);
    3953         [ +  + ]:        693 :         if (error)
    3954                 :         21 :                 goto out;
    3955                 :            : 
    3956                 :        672 :         shrink_dcache_parent(dentry);
    3957                 :        672 :         dentry->d_inode->i_flags |= S_DEAD;
    3958                 :        672 :         dont_mount(dentry);
    3959         [ -  + ]:        672 :         detach_mounts(dentry);
    3960                 :        672 :         fsnotify_rmdir(dir, dentry);
    3961                 :            : 
    3962                 :        693 : out:
    3963                 :        693 :         inode_unlock(dentry->d_inode);
    3964                 :        693 :         dput(dentry);
    3965         [ +  + ]:        693 :         if (!error)
    3966                 :        672 :                 d_delete(dentry);
    3967                 :            :         return error;
    3968                 :            : }
    3969                 :            : EXPORT_SYMBOL(vfs_rmdir);
    3970                 :            : 
    3971                 :       1596 : long do_rmdir(int dfd, const char __user *pathname)
    3972                 :            : {
    3973                 :       1596 :         int error = 0;
    3974                 :       1596 :         struct filename *name;
    3975                 :       1596 :         struct dentry *dentry;
    3976                 :       1596 :         struct path path;
    3977                 :       1596 :         struct qstr last;
    3978                 :       1596 :         int type;
    3979                 :       1596 :         unsigned int lookup_flags = 0;
    3980                 :       1596 : retry:
    3981                 :       1596 :         name = filename_parentat(dfd, getname(pathname), lookup_flags,
    3982                 :            :                                 &path, &last, &type);
    3983         [ +  + ]:       1596 :         if (IS_ERR(name))
    3984                 :        882 :                 return PTR_ERR(name);
    3985                 :            : 
    3986         [ -  + ]:        714 :         switch (type) {
    3987                 :            :         case LAST_DOTDOT:
    3988                 :            :                 error = -ENOTEMPTY;
    3989                 :            :                 goto exit1;
    3990                 :            :         case LAST_DOT:
    3991                 :            :                 error = -EINVAL;
    3992                 :            :                 goto exit1;
    3993                 :            :         case LAST_ROOT:
    3994                 :            :                 error = -EBUSY;
    3995                 :            :                 goto exit1;
    3996                 :            :         }
    3997                 :            : 
    3998                 :        714 :         error = mnt_want_write(path.mnt);
    3999         [ -  + ]:        714 :         if (error)
    4000                 :          0 :                 goto exit1;
    4001                 :            : 
    4002                 :        714 :         inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
    4003                 :        714 :         dentry = __lookup_hash(&last, path.dentry, lookup_flags);
    4004         [ -  + ]:        714 :         error = PTR_ERR(dentry);
    4005         [ -  + ]:        714 :         if (IS_ERR(dentry))
    4006                 :          0 :                 goto exit2;
    4007         [ +  + ]:        714 :         if (!dentry->d_inode) {
    4008                 :         21 :                 error = -ENOENT;
    4009                 :         21 :                 goto exit3;
    4010                 :            :         }
    4011                 :        693 :         error = security_path_rmdir(&path, dentry);
    4012                 :        693 :         if (error)
    4013                 :            :                 goto exit3;
    4014                 :        693 :         error = vfs_rmdir(path.dentry->d_inode, dentry);
    4015                 :        714 : exit3:
    4016                 :        714 :         dput(dentry);
    4017                 :        714 : exit2:
    4018                 :        714 :         inode_unlock(path.dentry->d_inode);
    4019                 :        714 :         mnt_drop_write(path.mnt);
    4020                 :        714 : exit1:
    4021                 :        714 :         path_put(&path);
    4022                 :        714 :         putname(name);
    4023   [ -  +  -  + ]:       1428 :         if (retry_estale(error, lookup_flags)) {
    4024                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    4025                 :          0 :                 goto retry;
    4026                 :            :         }
    4027                 :            :         return error;
    4028                 :            : }
    4029                 :            : 
    4030                 :       3192 : SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
    4031                 :            : {
    4032                 :       1596 :         return do_rmdir(AT_FDCWD, pathname);
    4033                 :            : }
    4034                 :            : 
    4035                 :            : /**
    4036                 :            :  * vfs_unlink - unlink a filesystem object
    4037                 :            :  * @dir:        parent directory
    4038                 :            :  * @dentry:     victim
    4039                 :            :  * @delegated_inode: returns victim inode, if the inode is delegated.
    4040                 :            :  *
    4041                 :            :  * The caller must hold dir->i_mutex.
    4042                 :            :  *
    4043                 :            :  * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
    4044                 :            :  * return a reference to the inode in delegated_inode.  The caller
    4045                 :            :  * should then break the delegation on that inode and retry.  Because
    4046                 :            :  * breaking a delegation may take a long time, the caller should drop
    4047                 :            :  * dir->i_mutex before doing so.
    4048                 :            :  *
    4049                 :            :  * Alternatively, a caller may pass NULL for delegated_inode.  This may
    4050                 :            :  * be appropriate for callers that expect the underlying filesystem not
    4051                 :            :  * to be NFS exported.
    4052                 :            :  */
    4053                 :       2607 : int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
    4054                 :            : {
    4055                 :       2607 :         struct inode *target = dentry->d_inode;
    4056                 :       2607 :         int error = may_delete(dir, dentry, 0);
    4057                 :            : 
    4058         [ +  - ]:       2607 :         if (error)
    4059                 :            :                 return error;
    4060                 :            : 
    4061         [ +  - ]:       2607 :         if (!dir->i_op->unlink)
    4062                 :            :                 return -EPERM;
    4063                 :            : 
    4064                 :       2607 :         inode_lock(target);
    4065   [ -  +  -  - ]:       2607 :         if (is_local_mountpoint(dentry))
    4066                 :            :                 error = -EBUSY;
    4067                 :            :         else {
    4068                 :       2607 :                 error = security_inode_unlink(dir, dentry);
    4069         [ -  + ]:       2607 :                 if (!error) {
    4070                 :       2607 :                         error = try_break_deleg(target, delegated_inode);
    4071         [ -  + ]:       2607 :                         if (error)
    4072                 :          0 :                                 goto out;
    4073                 :       2607 :                         error = dir->i_op->unlink(dir, dentry);
    4074         [ -  + ]:       2607 :                         if (!error) {
    4075                 :       2607 :                                 dont_mount(dentry);
    4076         [ -  + ]:       2607 :                                 detach_mounts(dentry);
    4077                 :       2607 :                                 fsnotify_unlink(dir, dentry);
    4078                 :            :                         }
    4079                 :            :                 }
    4080                 :            :         }
    4081                 :          0 : out:
    4082                 :       2607 :         inode_unlock(target);
    4083                 :            : 
    4084                 :            :         /* We don't d_delete() NFS sillyrenamed files--they still exist. */
    4085   [ +  -  +  - ]:       2607 :         if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
    4086                 :       2607 :                 fsnotify_link_count(target);
    4087                 :       2607 :                 d_delete(dentry);
    4088                 :            :         }
    4089                 :            : 
    4090                 :            :         return error;
    4091                 :            : }
    4092                 :            : EXPORT_SYMBOL(vfs_unlink);
    4093                 :            : 
    4094                 :            : /*
    4095                 :            :  * Make sure that the actual truncation of the file will occur outside its
    4096                 :            :  * directory's i_mutex.  Truncate can take a long time if there is a lot of
    4097                 :            :  * writeout happening, and we don't want to prevent access to the directory
    4098                 :            :  * while waiting on the I/O.
    4099                 :            :  */
    4100                 :      11826 : long do_unlinkat(int dfd, struct filename *name)
    4101                 :            : {
    4102                 :      11826 :         int error;
    4103                 :      11826 :         struct dentry *dentry;
    4104                 :      11826 :         struct path path;
    4105                 :      11826 :         struct qstr last;
    4106                 :      11826 :         int type;
    4107                 :      11826 :         struct inode *inode = NULL;
    4108                 :      11826 :         struct inode *delegated_inode = NULL;
    4109                 :      11826 :         unsigned int lookup_flags = 0;
    4110                 :      11826 : retry:
    4111                 :      11826 :         name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
    4112         [ +  + ]:      11826 :         if (IS_ERR(name))
    4113                 :       3272 :                 return PTR_ERR(name);
    4114                 :            : 
    4115                 :       8554 :         error = -EISDIR;
    4116         [ -  + ]:       8554 :         if (type != LAST_NORM)
    4117                 :          0 :                 goto exit1;
    4118                 :            : 
    4119                 :       8554 :         error = mnt_want_write(path.mnt);
    4120         [ -  + ]:       8554 :         if (error)
    4121                 :          0 :                 goto exit1;
    4122                 :       8554 : retry_deleg:
    4123                 :       8554 :         inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
    4124                 :       8554 :         dentry = __lookup_hash(&last, path.dentry, lookup_flags);
    4125         [ +  - ]:       8554 :         error = PTR_ERR(dentry);
    4126         [ +  - ]:       8554 :         if (!IS_ERR(dentry)) {
    4127                 :            :                 /* Why not before? Because we want correct error value */
    4128         [ -  + ]:       8554 :                 if (last.name[last.len])
    4129                 :          0 :                         goto slashes;
    4130                 :       8554 :                 inode = dentry->d_inode;
    4131         [ +  + ]:       8554 :                 if (d_is_negative(dentry))
    4132                 :       5947 :                         goto slashes;
    4133                 :       2607 :                 ihold(inode);
    4134                 :       2607 :                 error = security_path_unlink(&path, dentry);
    4135                 :       2607 :                 if (error)
    4136                 :            :                         goto exit2;
    4137                 :       2607 :                 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
    4138                 :       8554 : exit2:
    4139                 :       8554 :                 dput(dentry);
    4140                 :            :         }
    4141                 :       8554 :         inode_unlock(path.dentry->d_inode);
    4142         [ +  + ]:       8554 :         if (inode)
    4143                 :       2607 :                 iput(inode);    /* truncate the inode here */
    4144                 :       8554 :         inode = NULL;
    4145         [ -  + ]:       8554 :         if (delegated_inode) {
    4146                 :          0 :                 error = break_deleg_wait(&delegated_inode);
    4147         [ #  # ]:          0 :                 if (!error)
    4148                 :          0 :                         goto retry_deleg;
    4149                 :            :         }
    4150                 :       8554 :         mnt_drop_write(path.mnt);
    4151                 :       8554 : exit1:
    4152                 :       8554 :         path_put(&path);
    4153   [ -  +  -  + ]:      17108 :         if (retry_estale(error, lookup_flags)) {
    4154                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    4155                 :          0 :                 inode = NULL;
    4156                 :          0 :                 goto retry;
    4157                 :            :         }
    4158                 :       8554 :         putname(name);
    4159                 :       8554 :         return error;
    4160                 :            : 
    4161                 :       5947 : slashes:
    4162         [ -  + ]:       5947 :         if (d_is_negative(dentry))
    4163                 :            :                 error = -ENOENT;
    4164   [ #  #  #  # ]:          0 :         else if (d_is_dir(dentry))
    4165                 :            :                 error = -EISDIR;
    4166                 :            :         else
    4167                 :          0 :                 error = -ENOTDIR;
    4168                 :       5947 :         goto exit2;
    4169                 :            : }
    4170                 :            : 
    4171                 :          0 : SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
    4172                 :            : {
    4173         [ #  # ]:          0 :         if ((flag & ~AT_REMOVEDIR) != 0)
    4174                 :            :                 return -EINVAL;
    4175                 :            : 
    4176         [ #  # ]:          0 :         if (flag & AT_REMOVEDIR)
    4177                 :          0 :                 return do_rmdir(dfd, pathname);
    4178                 :            : 
    4179                 :          0 :         return do_unlinkat(dfd, getname(pathname));
    4180                 :            : }
    4181                 :            : 
    4182                 :      23484 : SYSCALL_DEFINE1(unlink, const char __user *, pathname)
    4183                 :            : {
    4184                 :      11742 :         return do_unlinkat(AT_FDCWD, getname(pathname));
    4185                 :            : }
    4186                 :            : 
    4187                 :       4335 : int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
    4188                 :            : {
    4189                 :       4335 :         int error = may_create(dir, dentry);
    4190                 :            : 
    4191         [ +  - ]:       4335 :         if (error)
    4192                 :            :                 return error;
    4193                 :            : 
    4194         [ +  - ]:       4335 :         if (!dir->i_op->symlink)
    4195                 :            :                 return -EPERM;
    4196                 :            : 
    4197                 :       4335 :         error = security_inode_symlink(dir, dentry, oldname);
    4198         [ +  - ]:       4335 :         if (error)
    4199                 :            :                 return error;
    4200                 :            : 
    4201                 :       4335 :         error = dir->i_op->symlink(dir, dentry, oldname);
    4202         [ +  - ]:       4335 :         if (!error)
    4203                 :       4335 :                 fsnotify_create(dir, dentry);
    4204                 :            :         return error;
    4205                 :            : }
    4206                 :            : EXPORT_SYMBOL(vfs_symlink);
    4207                 :            : 
    4208                 :       4482 : long do_symlinkat(const char __user *oldname, int newdfd,
    4209                 :            :                   const char __user *newname)
    4210                 :            : {
    4211                 :       4482 :         int error;
    4212                 :       4482 :         struct filename *from;
    4213                 :       4482 :         struct dentry *dentry;
    4214                 :       4482 :         struct path path;
    4215                 :       4482 :         unsigned int lookup_flags = 0;
    4216                 :            : 
    4217                 :       4482 :         from = getname(oldname);
    4218         [ -  + ]:       4482 :         if (IS_ERR(from))
    4219                 :          0 :                 return PTR_ERR(from);
    4220                 :       4482 : retry:
    4221                 :       4482 :         dentry = user_path_create(newdfd, newname, &path, lookup_flags);
    4222         [ +  + ]:       4482 :         error = PTR_ERR(dentry);
    4223         [ +  + ]:       4482 :         if (IS_ERR(dentry))
    4224                 :        147 :                 goto out_putname;
    4225                 :            : 
    4226                 :       4335 :         error = security_path_symlink(&path, dentry, from->name);
    4227                 :       4335 :         if (!error)
    4228                 :       4335 :                 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
    4229                 :       4335 :         done_path_create(&path, dentry);
    4230   [ -  +  -  + ]:       8670 :         if (retry_estale(error, lookup_flags)) {
    4231                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    4232                 :          0 :                 goto retry;
    4233                 :            :         }
    4234                 :       4335 : out_putname:
    4235                 :       4482 :         putname(from);
    4236                 :       4482 :         return error;
    4237                 :            : }
    4238                 :            : 
    4239                 :         42 : SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
    4240                 :            :                 int, newdfd, const char __user *, newname)
    4241                 :            : {
    4242                 :         21 :         return do_symlinkat(oldname, newdfd, newname);
    4243                 :            : }
    4244                 :            : 
    4245                 :       8922 : SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
    4246                 :            : {
    4247                 :       4461 :         return do_symlinkat(oldname, AT_FDCWD, newname);
    4248                 :            : }
    4249                 :            : 
    4250                 :            : /**
    4251                 :            :  * vfs_link - create a new link
    4252                 :            :  * @old_dentry: object to be linked
    4253                 :            :  * @dir:        new parent
    4254                 :            :  * @new_dentry: where to create the new link
    4255                 :            :  * @delegated_inode: returns inode needing a delegation break
    4256                 :            :  *
    4257                 :            :  * The caller must hold dir->i_mutex
    4258                 :            :  *
    4259                 :            :  * If vfs_link discovers a delegation on the to-be-linked file in need
    4260                 :            :  * of breaking, it will return -EWOULDBLOCK and return a reference to the
    4261                 :            :  * inode in delegated_inode.  The caller should then break the delegation
    4262                 :            :  * and retry.  Because breaking a delegation may take a long time, the
    4263                 :            :  * caller should drop the i_mutex before doing so.
    4264                 :            :  *
    4265                 :            :  * Alternatively, a caller may pass NULL for delegated_inode.  This may
    4266                 :            :  * be appropriate for callers that expect the underlying filesystem not
    4267                 :            :  * to be NFS exported.
    4268                 :            :  */
    4269                 :          0 : int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
    4270                 :            : {
    4271                 :          0 :         struct inode *inode = old_dentry->d_inode;
    4272                 :          0 :         unsigned max_links = dir->i_sb->s_max_links;
    4273                 :          0 :         int error;
    4274                 :            : 
    4275         [ #  # ]:          0 :         if (!inode)
    4276                 :            :                 return -ENOENT;
    4277                 :            : 
    4278                 :          0 :         error = may_create(dir, new_dentry);
    4279         [ #  # ]:          0 :         if (error)
    4280                 :            :                 return error;
    4281                 :            : 
    4282         [ #  # ]:          0 :         if (dir->i_sb != inode->i_sb)
    4283                 :            :                 return -EXDEV;
    4284                 :            : 
    4285                 :            :         /*
    4286                 :            :          * A link to an append-only or immutable file cannot be created.
    4287                 :            :          */
    4288         [ #  # ]:          0 :         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
    4289                 :            :                 return -EPERM;
    4290                 :            :         /*
    4291                 :            :          * Updating the link count will likely cause i_uid and i_gid to
    4292                 :            :          * be writen back improperly if their true value is unknown to
    4293                 :            :          * the vfs.
    4294                 :            :          */
    4295   [ #  #  #  # ]:          0 :         if (HAS_UNMAPPED_ID(inode))
    4296                 :            :                 return -EPERM;
    4297         [ #  # ]:          0 :         if (!dir->i_op->link)
    4298                 :            :                 return -EPERM;
    4299         [ #  # ]:          0 :         if (S_ISDIR(inode->i_mode))
    4300                 :            :                 return -EPERM;
    4301                 :            : 
    4302                 :          0 :         error = security_inode_link(old_dentry, dir, new_dentry);
    4303         [ #  # ]:          0 :         if (error)
    4304                 :            :                 return error;
    4305                 :            : 
    4306                 :          0 :         inode_lock(inode);
    4307                 :            :         /* Make sure we don't allow creating hardlink to an unlinked file */
    4308   [ #  #  #  # ]:          0 :         if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
    4309                 :            :                 error =  -ENOENT;
    4310   [ #  #  #  # ]:          0 :         else if (max_links && inode->i_nlink >= max_links)
    4311                 :            :                 error = -EMLINK;
    4312                 :            :         else {
    4313                 :          0 :                 error = try_break_deleg(inode, delegated_inode);
    4314         [ #  # ]:          0 :                 if (!error)
    4315                 :          0 :                         error = dir->i_op->link(old_dentry, dir, new_dentry);
    4316                 :            :         }
    4317                 :            : 
    4318   [ #  #  #  # ]:          0 :         if (!error && (inode->i_state & I_LINKABLE)) {
    4319                 :          0 :                 spin_lock(&inode->i_lock);
    4320                 :          0 :                 inode->i_state &= ~I_LINKABLE;
    4321                 :          0 :                 spin_unlock(&inode->i_lock);
    4322                 :            :         }
    4323                 :          0 :         inode_unlock(inode);
    4324         [ #  # ]:          0 :         if (!error)
    4325                 :          0 :                 fsnotify_link(dir, inode, new_dentry);
    4326                 :            :         return error;
    4327                 :            : }
    4328                 :            : EXPORT_SYMBOL(vfs_link);
    4329                 :            : 
    4330                 :            : /*
    4331                 :            :  * Hardlinks are often used in delicate situations.  We avoid
    4332                 :            :  * security-related surprises by not following symlinks on the
    4333                 :            :  * newname.  --KAB
    4334                 :            :  *
    4335                 :            :  * We don't follow them on the oldname either to be compatible
    4336                 :            :  * with linux 2.0, and to avoid hard-linking to directories
    4337                 :            :  * and other special files.  --ADM
    4338                 :            :  */
    4339                 :          0 : int do_linkat(int olddfd, const char __user *oldname, int newdfd,
    4340                 :            :               const char __user *newname, int flags)
    4341                 :            : {
    4342                 :          0 :         struct dentry *new_dentry;
    4343                 :          0 :         struct path old_path, new_path;
    4344                 :          0 :         struct inode *delegated_inode = NULL;
    4345                 :          0 :         int how = 0;
    4346                 :          0 :         int error;
    4347                 :            : 
    4348         [ #  # ]:          0 :         if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
    4349                 :            :                 return -EINVAL;
    4350                 :            :         /*
    4351                 :            :          * To use null names we require CAP_DAC_READ_SEARCH
    4352                 :            :          * This ensures that not everyone will be able to create
    4353                 :            :          * handlink using the passed filedescriptor.
    4354                 :            :          */
    4355         [ #  # ]:          0 :         if (flags & AT_EMPTY_PATH) {
    4356         [ #  # ]:          0 :                 if (!capable(CAP_DAC_READ_SEARCH))
    4357                 :            :                         return -ENOENT;
    4358                 :            :                 how = LOOKUP_EMPTY;
    4359                 :            :         }
    4360                 :            : 
    4361         [ #  # ]:          0 :         if (flags & AT_SYMLINK_FOLLOW)
    4362                 :          0 :                 how |= LOOKUP_FOLLOW;
    4363                 :          0 : retry:
    4364                 :          0 :         error = user_path_at(olddfd, oldname, how, &old_path);
    4365         [ #  # ]:          0 :         if (error)
    4366                 :          0 :                 return error;
    4367                 :            : 
    4368                 :          0 :         new_dentry = user_path_create(newdfd, newname, &new_path,
    4369                 :            :                                         (how & LOOKUP_REVAL));
    4370         [ #  # ]:          0 :         error = PTR_ERR(new_dentry);
    4371         [ #  # ]:          0 :         if (IS_ERR(new_dentry))
    4372                 :          0 :                 goto out;
    4373                 :            : 
    4374                 :          0 :         error = -EXDEV;
    4375         [ #  # ]:          0 :         if (old_path.mnt != new_path.mnt)
    4376                 :          0 :                 goto out_dput;
    4377                 :          0 :         error = may_linkat(&old_path);
    4378         [ #  # ]:          0 :         if (unlikely(error))
    4379                 :          0 :                 goto out_dput;
    4380                 :          0 :         error = security_path_link(old_path.dentry, &new_path, new_dentry);
    4381                 :          0 :         if (error)
    4382                 :            :                 goto out_dput;
    4383                 :          0 :         error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
    4384                 :          0 : out_dput:
    4385                 :          0 :         done_path_create(&new_path, new_dentry);
    4386         [ #  # ]:          0 :         if (delegated_inode) {
    4387                 :          0 :                 error = break_deleg_wait(&delegated_inode);
    4388         [ #  # ]:          0 :                 if (!error) {
    4389                 :          0 :                         path_put(&old_path);
    4390                 :          0 :                         goto retry;
    4391                 :            :                 }
    4392                 :            :         }
    4393   [ #  #  #  # ]:          0 :         if (retry_estale(error, how)) {
    4394                 :          0 :                 path_put(&old_path);
    4395                 :          0 :                 how |= LOOKUP_REVAL;
    4396                 :          0 :                 goto retry;
    4397                 :            :         }
    4398                 :          0 : out:
    4399                 :          0 :         path_put(&old_path);
    4400                 :            : 
    4401                 :          0 :         return error;
    4402                 :            : }
    4403                 :            : 
    4404                 :          0 : SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
    4405                 :            :                 int, newdfd, const char __user *, newname, int, flags)
    4406                 :            : {
    4407                 :          0 :         return do_linkat(olddfd, oldname, newdfd, newname, flags);
    4408                 :            : }
    4409                 :            : 
    4410                 :          0 : SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
    4411                 :            : {
    4412                 :          0 :         return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
    4413                 :            : }
    4414                 :            : 
    4415                 :            : /**
    4416                 :            :  * vfs_rename - rename a filesystem object
    4417                 :            :  * @old_dir:    parent of source
    4418                 :            :  * @old_dentry: source
    4419                 :            :  * @new_dir:    parent of destination
    4420                 :            :  * @new_dentry: destination
    4421                 :            :  * @delegated_inode: returns an inode needing a delegation break
    4422                 :            :  * @flags:      rename flags
    4423                 :            :  *
    4424                 :            :  * The caller must hold multiple mutexes--see lock_rename()).
    4425                 :            :  *
    4426                 :            :  * If vfs_rename discovers a delegation in need of breaking at either
    4427                 :            :  * the source or destination, it will return -EWOULDBLOCK and return a
    4428                 :            :  * reference to the inode in delegated_inode.  The caller should then
    4429                 :            :  * break the delegation and retry.  Because breaking a delegation may
    4430                 :            :  * take a long time, the caller should drop all locks before doing
    4431                 :            :  * so.
    4432                 :            :  *
    4433                 :            :  * Alternatively, a caller may pass NULL for delegated_inode.  This may
    4434                 :            :  * be appropriate for callers that expect the underlying filesystem not
    4435                 :            :  * to be NFS exported.
    4436                 :            :  *
    4437                 :            :  * The worst of all namespace operations - renaming directory. "Perverted"
    4438                 :            :  * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
    4439                 :            :  * Problems:
    4440                 :            :  *
    4441                 :            :  *      a) we can get into loop creation.
    4442                 :            :  *      b) race potential - two innocent renames can create a loop together.
    4443                 :            :  *         That's where 4.4 screws up. Current fix: serialization on
    4444                 :            :  *         sb->s_vfs_rename_mutex. We might be more accurate, but that's another
    4445                 :            :  *         story.
    4446                 :            :  *      c) we have to lock _four_ objects - parents and victim (if it exists),
    4447                 :            :  *         and source (if it is not a directory).
    4448                 :            :  *         And that - after we got ->i_mutex on parents (until then we don't know
    4449                 :            :  *         whether the target exists).  Solution: try to be smart with locking
    4450                 :            :  *         order for inodes.  We rely on the fact that tree topology may change
    4451                 :            :  *         only under ->s_vfs_rename_mutex _and_ that parent of the object we
    4452                 :            :  *         move will be locked.  Thus we can rank directories by the tree
    4453                 :            :  *         (ancestors first) and rank all non-directories after them.
    4454                 :            :  *         That works since everybody except rename does "lock parent, lookup,
    4455                 :            :  *         lock child" and rename is under ->s_vfs_rename_mutex.
    4456                 :            :  *         HOWEVER, it relies on the assumption that any object with ->lookup()
    4457                 :            :  *         has no more than 1 dentry.  If "hybrid" objects will ever appear,
    4458                 :            :  *         we'd better make sure that there's no link(2) for them.
    4459                 :            :  *      d) conversion from fhandle to dentry may come in the wrong moment - when
    4460                 :            :  *         we are removing the target. Solution: we will have to grab ->i_mutex
    4461                 :            :  *         in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
    4462                 :            :  *         ->i_mutex on parents, which works but leads to some truly excessive
    4463                 :            :  *         locking].
    4464                 :            :  */
    4465                 :       4944 : int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
    4466                 :            :                struct inode *new_dir, struct dentry *new_dentry,
    4467                 :            :                struct inode **delegated_inode, unsigned int flags)
    4468                 :            : {
    4469                 :       4944 :         int error;
    4470         [ +  - ]:       4944 :         bool is_dir = d_is_dir(old_dentry);
    4471                 :       4944 :         struct inode *source = old_dentry->d_inode;
    4472                 :       4944 :         struct inode *target = new_dentry->d_inode;
    4473                 :       4944 :         bool new_is_dir = false;
    4474                 :       4944 :         unsigned max_links = new_dir->i_sb->s_max_links;
    4475                 :       4944 :         struct name_snapshot old_name;
    4476                 :            : 
    4477         [ +  - ]:       4944 :         if (source == target)
    4478                 :            :                 return 0;
    4479                 :            : 
    4480                 :       4944 :         error = may_delete(old_dir, old_dentry, is_dir);
    4481         [ +  - ]:       4944 :         if (error)
    4482                 :            :                 return error;
    4483                 :            : 
    4484         [ +  + ]:       4944 :         if (!target) {
    4485                 :       4482 :                 error = may_create(new_dir, new_dentry);
    4486                 :            :         } else {
    4487         [ +  - ]:        462 :                 new_is_dir = d_is_dir(new_dentry);
    4488                 :            : 
    4489         [ +  - ]:        462 :                 if (!(flags & RENAME_EXCHANGE))
    4490                 :        462 :                         error = may_delete(new_dir, new_dentry, is_dir);
    4491                 :            :                 else
    4492                 :          0 :                         error = may_delete(new_dir, new_dentry, new_is_dir);
    4493                 :            :         }
    4494         [ +  - ]:       4944 :         if (error)
    4495                 :            :                 return error;
    4496                 :            : 
    4497         [ +  - ]:       4944 :         if (!old_dir->i_op->rename)
    4498                 :            :                 return -EPERM;
    4499                 :            : 
    4500                 :            :         /*
    4501                 :            :          * If we are going to change the parent - check write permissions,
    4502                 :            :          * we'll need to flip '..'.
    4503                 :            :          */
    4504         [ -  + ]:       4944 :         if (new_dir != old_dir) {
    4505         [ #  # ]:          0 :                 if (is_dir) {
    4506                 :          0 :                         error = inode_permission(source, MAY_WRITE);
    4507         [ #  # ]:          0 :                         if (error)
    4508                 :            :                                 return error;
    4509                 :            :                 }
    4510   [ #  #  #  # ]:          0 :                 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
    4511                 :          0 :                         error = inode_permission(target, MAY_WRITE);
    4512         [ #  # ]:          0 :                         if (error)
    4513                 :            :                                 return error;
    4514                 :            :                 }
    4515                 :            :         }
    4516                 :            : 
    4517                 :       4944 :         error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
    4518                 :            :                                       flags);
    4519         [ +  - ]:       4944 :         if (error)
    4520                 :            :                 return error;
    4521                 :            : 
    4522                 :       4944 :         take_dentry_name_snapshot(&old_name, old_dentry);
    4523         [ +  - ]:       4944 :         dget(new_dentry);
    4524   [ -  +  -  - ]:       4944 :         if (!is_dir || (flags & RENAME_EXCHANGE))
    4525                 :       4944 :                 lock_two_nondirectories(source, target);
    4526         [ #  # ]:          0 :         else if (target)
    4527                 :          0 :                 inode_lock(target);
    4528                 :            : 
    4529                 :       4944 :         error = -EBUSY;
    4530   [ -  +  -  -  :       4944 :         if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
                   -  - ]
    4531                 :          0 :                 goto out;
    4532                 :            : 
    4533         [ -  + ]:       4944 :         if (max_links && new_dir != old_dir) {
    4534                 :          0 :                 error = -EMLINK;
    4535   [ #  #  #  # ]:          0 :                 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
    4536                 :          0 :                         goto out;
    4537   [ #  #  #  # ]:          0 :                 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
    4538         [ #  # ]:          0 :                     old_dir->i_nlink >= max_links)
    4539                 :          0 :                         goto out;
    4540                 :            :         }
    4541         [ +  - ]:       4944 :         if (!is_dir) {
    4542                 :       4944 :                 error = try_break_deleg(source, delegated_inode);
    4543         [ -  + ]:       4944 :                 if (error)
    4544                 :          0 :                         goto out;
    4545                 :            :         }
    4546         [ +  + ]:       4944 :         if (target && !new_is_dir) {
    4547                 :        462 :                 error = try_break_deleg(target, delegated_inode);
    4548         [ -  + ]:        462 :                 if (error)
    4549                 :          0 :                         goto out;
    4550                 :            :         }
    4551                 :       4944 :         error = old_dir->i_op->rename(old_dir, old_dentry,
    4552                 :            :                                        new_dir, new_dentry, flags);
    4553         [ -  + ]:       4944 :         if (error)
    4554                 :          0 :                 goto out;
    4555                 :            : 
    4556   [ +  -  +  + ]:       4944 :         if (!(flags & RENAME_EXCHANGE) && target) {
    4557         [ -  + ]:        462 :                 if (is_dir) {
    4558                 :          0 :                         shrink_dcache_parent(new_dentry);
    4559                 :          0 :                         target->i_flags |= S_DEAD;
    4560                 :            :                 }
    4561                 :        462 :                 dont_mount(new_dentry);
    4562         [ -  + ]:        462 :                 detach_mounts(new_dentry);
    4563                 :            :         }
    4564         [ -  + ]:       4944 :         if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
    4565         [ +  - ]:       4944 :                 if (!(flags & RENAME_EXCHANGE))
    4566                 :       4944 :                         d_move(old_dentry, new_dentry);
    4567                 :            :                 else
    4568                 :          0 :                         d_exchange(old_dentry, new_dentry);
    4569                 :            :         }
    4570                 :          0 : out:
    4571   [ -  +  -  - ]:       4944 :         if (!is_dir || (flags & RENAME_EXCHANGE))
    4572                 :       4944 :                 unlock_two_nondirectories(source, target);
    4573         [ #  # ]:          0 :         else if (target)
    4574                 :          0 :                 inode_unlock(target);
    4575                 :       4944 :         dput(new_dentry);
    4576         [ +  - ]:       4944 :         if (!error) {
    4577                 :       4944 :                 fsnotify_move(old_dir, new_dir, &old_name.name, is_dir,
    4578         [ -  + ]:       4944 :                               !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
    4579         [ -  + ]:       4944 :                 if (flags & RENAME_EXCHANGE) {
    4580                 :          0 :                         fsnotify_move(new_dir, old_dir, &old_dentry->d_name,
    4581                 :            :                                       new_is_dir, NULL, new_dentry);
    4582                 :            :                 }
    4583                 :            :         }
    4584                 :       4944 :         release_dentry_name_snapshot(&old_name);
    4585                 :            : 
    4586                 :       4944 :         return error;
    4587                 :            : }
    4588                 :            : EXPORT_SYMBOL(vfs_rename);
    4589                 :            : 
    4590                 :       4965 : static int do_renameat2(int olddfd, const char __user *oldname, int newdfd,
    4591                 :            :                         const char __user *newname, unsigned int flags)
    4592                 :            : {
    4593                 :       4965 :         struct dentry *old_dentry, *new_dentry;
    4594                 :       4965 :         struct dentry *trap;
    4595                 :       4965 :         struct path old_path, new_path;
    4596                 :       4965 :         struct qstr old_last, new_last;
    4597                 :       4965 :         int old_type, new_type;
    4598                 :       4965 :         struct inode *delegated_inode = NULL;
    4599                 :       4965 :         struct filename *from;
    4600                 :       4965 :         struct filename *to;
    4601                 :       4965 :         unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
    4602                 :       4965 :         bool should_retry = false;
    4603                 :       4965 :         int error;
    4604                 :            : 
    4605         [ +  - ]:       4965 :         if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
    4606                 :            :                 return -EINVAL;
    4607                 :            : 
    4608         [ -  + ]:       4965 :         if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
    4609         [ #  # ]:          0 :             (flags & RENAME_EXCHANGE))
    4610                 :            :                 return -EINVAL;
    4611                 :            : 
    4612   [ -  +  -  - ]:       4965 :         if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
    4613                 :            :                 return -EPERM;
    4614                 :            : 
    4615         [ +  - ]:       4965 :         if (flags & RENAME_EXCHANGE)
    4616                 :          0 :                 target_flags = 0;
    4617                 :            : 
    4618                 :       4965 : retry:
    4619                 :       4965 :         from = filename_parentat(olddfd, getname(oldname), lookup_flags,
    4620                 :            :                                 &old_path, &old_last, &old_type);
    4621         [ -  + ]:       4965 :         if (IS_ERR(from)) {
    4622                 :          0 :                 error = PTR_ERR(from);
    4623                 :          0 :                 goto exit;
    4624                 :            :         }
    4625                 :            : 
    4626                 :       4965 :         to = filename_parentat(newdfd, getname(newname), lookup_flags,
    4627                 :            :                                 &new_path, &new_last, &new_type);
    4628         [ -  + ]:       4965 :         if (IS_ERR(to)) {
    4629                 :          0 :                 error = PTR_ERR(to);
    4630                 :          0 :                 goto exit1;
    4631                 :            :         }
    4632                 :            : 
    4633                 :       4965 :         error = -EXDEV;
    4634         [ -  + ]:       4965 :         if (old_path.mnt != new_path.mnt)
    4635                 :          0 :                 goto exit2;
    4636                 :            : 
    4637                 :       4965 :         error = -EBUSY;
    4638         [ -  + ]:       4965 :         if (old_type != LAST_NORM)
    4639                 :          0 :                 goto exit2;
    4640                 :            : 
    4641                 :       4965 :         if (flags & RENAME_NOREPLACE)
    4642                 :            :                 error = -EEXIST;
    4643         [ -  + ]:       4965 :         if (new_type != LAST_NORM)
    4644                 :          0 :                 goto exit2;
    4645                 :            : 
    4646                 :       4965 :         error = mnt_want_write(old_path.mnt);
    4647         [ -  + ]:       4965 :         if (error)
    4648                 :          0 :                 goto exit2;
    4649                 :            : 
    4650                 :       4965 : retry_deleg:
    4651                 :       4965 :         trap = lock_rename(new_path.dentry, old_path.dentry);
    4652                 :            : 
    4653                 :       4965 :         old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
    4654         [ -  + ]:       4965 :         error = PTR_ERR(old_dentry);
    4655         [ -  + ]:       4965 :         if (IS_ERR(old_dentry))
    4656                 :          0 :                 goto exit3;
    4657                 :            :         /* source must exist */
    4658                 :       4965 :         error = -ENOENT;
    4659         [ +  + ]:       4965 :         if (d_is_negative(old_dentry))
    4660                 :         21 :                 goto exit4;
    4661                 :       4944 :         new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
    4662         [ -  + ]:       4944 :         error = PTR_ERR(new_dentry);
    4663         [ -  + ]:       4944 :         if (IS_ERR(new_dentry))
    4664                 :          0 :                 goto exit4;
    4665                 :       4944 :         error = -EEXIST;
    4666   [ -  +  -  - ]:       4944 :         if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
    4667                 :          0 :                 goto exit5;
    4668         [ -  + ]:       4944 :         if (flags & RENAME_EXCHANGE) {
    4669                 :          0 :                 error = -ENOENT;
    4670         [ #  # ]:          0 :                 if (d_is_negative(new_dentry))
    4671                 :          0 :                         goto exit5;
    4672                 :            : 
    4673   [ #  #  #  # ]:          0 :                 if (!d_is_dir(new_dentry)) {
    4674                 :          0 :                         error = -ENOTDIR;
    4675         [ #  # ]:          0 :                         if (new_last.name[new_last.len])
    4676                 :          0 :                                 goto exit5;
    4677                 :            :                 }
    4678                 :            :         }
    4679                 :            :         /* unless the source is a directory trailing slashes give -ENOTDIR */
    4680   [ +  -  +  - ]:       9888 :         if (!d_is_dir(old_dentry)) {
    4681                 :       4944 :                 error = -ENOTDIR;
    4682         [ -  + ]:       4944 :                 if (old_last.name[old_last.len])
    4683                 :          0 :                         goto exit5;
    4684   [ +  -  -  + ]:       4944 :                 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
    4685                 :          0 :                         goto exit5;
    4686                 :            :         }
    4687                 :            :         /* source should not be ancestor of target */
    4688                 :       4944 :         error = -EINVAL;
    4689         [ -  + ]:       4944 :         if (old_dentry == trap)
    4690                 :          0 :                 goto exit5;
    4691                 :            :         /* target should not be an ancestor of source */
    4692         [ +  - ]:       4944 :         if (!(flags & RENAME_EXCHANGE))
    4693                 :       4944 :                 error = -ENOTEMPTY;
    4694         [ -  + ]:       4944 :         if (new_dentry == trap)
    4695                 :          0 :                 goto exit5;
    4696                 :            : 
    4697                 :       4944 :         error = security_path_rename(&old_path, old_dentry,
    4698                 :            :                                      &new_path, new_dentry, flags);
    4699                 :       4944 :         if (error)
    4700                 :            :                 goto exit5;
    4701                 :       4944 :         error = vfs_rename(old_path.dentry->d_inode, old_dentry,
    4702                 :       4944 :                            new_path.dentry->d_inode, new_dentry,
    4703                 :            :                            &delegated_inode, flags);
    4704                 :       4944 : exit5:
    4705                 :       4944 :         dput(new_dentry);
    4706                 :       4965 : exit4:
    4707                 :       4965 :         dput(old_dentry);
    4708                 :       4965 : exit3:
    4709                 :       4965 :         unlock_rename(new_path.dentry, old_path.dentry);
    4710         [ -  + ]:       4965 :         if (delegated_inode) {
    4711                 :          0 :                 error = break_deleg_wait(&delegated_inode);
    4712         [ #  # ]:          0 :                 if (!error)
    4713                 :          0 :                         goto retry_deleg;
    4714                 :            :         }
    4715                 :       4965 :         mnt_drop_write(old_path.mnt);
    4716                 :       4965 : exit2:
    4717   [ -  +  -  + ]:       4965 :         if (retry_estale(error, lookup_flags))
    4718                 :          0 :                 should_retry = true;
    4719                 :       4965 :         path_put(&new_path);
    4720                 :       4965 :         putname(to);
    4721                 :       4965 : exit1:
    4722                 :       4965 :         path_put(&old_path);
    4723                 :       4965 :         putname(from);
    4724         [ -  + ]:       4965 :         if (should_retry) {
    4725                 :          0 :                 should_retry = false;
    4726                 :          0 :                 lookup_flags |= LOOKUP_REVAL;
    4727                 :          0 :                 goto retry;
    4728                 :            :         }
    4729                 :       4965 : exit:
    4730                 :            :         return error;
    4731                 :            : }
    4732                 :            : 
    4733                 :          0 : SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
    4734                 :            :                 int, newdfd, const char __user *, newname, unsigned int, flags)
    4735                 :            : {
    4736                 :          0 :         return do_renameat2(olddfd, oldname, newdfd, newname, flags);
    4737                 :            : }
    4738                 :            : 
    4739                 :          0 : SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
    4740                 :            :                 int, newdfd, const char __user *, newname)
    4741                 :            : {
    4742                 :          0 :         return do_renameat2(olddfd, oldname, newdfd, newname, 0);
    4743                 :            : }
    4744                 :            : 
    4745                 :       9930 : SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
    4746                 :            : {
    4747                 :       4965 :         return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
    4748                 :            : }
    4749                 :            : 
    4750                 :          0 : int vfs_whiteout(struct inode *dir, struct dentry *dentry)
    4751                 :            : {
    4752                 :          0 :         int error = may_create(dir, dentry);
    4753         [ #  # ]:          0 :         if (error)
    4754                 :            :                 return error;
    4755                 :            : 
    4756         [ #  # ]:          0 :         if (!dir->i_op->mknod)
    4757                 :            :                 return -EPERM;
    4758                 :            : 
    4759                 :          0 :         return dir->i_op->mknod(dir, dentry,
    4760                 :            :                                 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
    4761                 :            : }
    4762                 :            : EXPORT_SYMBOL(vfs_whiteout);
    4763                 :            : 
    4764                 :      34605 : int readlink_copy(char __user *buffer, int buflen, const char *link)
    4765                 :            : {
    4766         [ -  + ]:      34605 :         int len = PTR_ERR(link);
    4767         [ -  + ]:      34605 :         if (IS_ERR(link))
    4768                 :          0 :                 goto out;
    4769                 :            : 
    4770                 :      34605 :         len = strlen(link);
    4771         [ -  + ]:      34605 :         if (len > (unsigned) buflen)
    4772                 :          0 :                 len = buflen;
    4773   [ -  +  +  - ]:      69210 :         if (copy_to_user(buffer, link, len))
    4774                 :          0 :                 len = -EFAULT;
    4775                 :      34605 : out:
    4776                 :      34605 :         return len;
    4777                 :            : }
    4778                 :            : 
    4779                 :            : /**
    4780                 :            :  * vfs_readlink - copy symlink body into userspace buffer
    4781                 :            :  * @dentry: dentry on which to get symbolic link
    4782                 :            :  * @buffer: user memory pointer
    4783                 :            :  * @buflen: size of buffer
    4784                 :            :  *
    4785                 :            :  * Does not touch atime.  That's up to the caller if necessary
    4786                 :            :  *
    4787                 :            :  * Does not call security hook.
    4788                 :            :  */
    4789                 :      36599 : int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
    4790                 :            : {
    4791         [ +  + ]:      36599 :         struct inode *inode = d_inode(dentry);
    4792                 :      36599 :         DEFINE_DELAYED_CALL(done);
    4793                 :      36599 :         const char *link;
    4794                 :      36599 :         int res;
    4795                 :            : 
    4796         [ +  + ]:      36599 :         if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
    4797         [ +  + ]:      17030 :                 if (unlikely(inode->i_op->readlink))
    4798                 :       1994 :                         return inode->i_op->readlink(dentry, buffer, buflen);
    4799                 :            : 
    4800         [ +  - ]:      15036 :                 if (!d_is_symlink(dentry))
    4801                 :            :                         return -EINVAL;
    4802                 :            : 
    4803                 :      15036 :                 spin_lock(&inode->i_lock);
    4804                 :      15036 :                 inode->i_opflags |= IOP_DEFAULT_READLINK;
    4805                 :      15036 :                 spin_unlock(&inode->i_lock);
    4806                 :            :         }
    4807                 :            : 
    4808         [ +  + ]:      34605 :         link = READ_ONCE(inode->i_link);
    4809         [ +  + ]:      34605 :         if (!link) {
    4810                 :      21733 :                 link = inode->i_op->get_link(dentry, inode, &done);
    4811         [ -  + ]:      21733 :                 if (IS_ERR(link))
    4812                 :          0 :                         return PTR_ERR(link);
    4813                 :            :         }
    4814                 :      34605 :         res = readlink_copy(buffer, buflen, link);
    4815         [ +  + ]:      34605 :         do_delayed_call(&done);
    4816                 :            :         return res;
    4817                 :            : }
    4818                 :            : EXPORT_SYMBOL(vfs_readlink);
    4819                 :            : 
    4820                 :            : /**
    4821                 :            :  * vfs_get_link - get symlink body
    4822                 :            :  * @dentry: dentry on which to get symbolic link
    4823                 :            :  * @done: caller needs to free returned data with this
    4824                 :            :  *
    4825                 :            :  * Calls security hook and i_op->get_link() on the supplied inode.
    4826                 :            :  *
    4827                 :            :  * It does not touch atime.  That's up to the caller if necessary.
    4828                 :            :  *
    4829                 :            :  * Does not work on "special" symlinks like /proc/$$/fd/N
    4830                 :            :  */
    4831                 :          0 : const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
    4832                 :            : {
    4833         [ #  # ]:          0 :         const char *res = ERR_PTR(-EINVAL);
    4834         [ #  # ]:          0 :         struct inode *inode = d_inode(dentry);
    4835                 :            : 
    4836         [ #  # ]:          0 :         if (d_is_symlink(dentry)) {
    4837         [ #  # ]:          0 :                 res = ERR_PTR(security_inode_readlink(dentry));
    4838         [ #  # ]:          0 :                 if (!res)
    4839                 :          0 :                         res = inode->i_op->get_link(dentry, inode, done);
    4840                 :            :         }
    4841                 :          0 :         return res;
    4842                 :            : }
    4843                 :            : EXPORT_SYMBOL(vfs_get_link);
    4844                 :            : 
    4845                 :            : /* get the link contents into pagecache */
    4846                 :          0 : const char *page_get_link(struct dentry *dentry, struct inode *inode,
    4847                 :            :                           struct delayed_call *callback)
    4848                 :            : {
    4849                 :          0 :         char *kaddr;
    4850                 :          0 :         struct page *page;
    4851                 :          0 :         struct address_space *mapping = inode->i_mapping;
    4852                 :            : 
    4853         [ #  # ]:          0 :         if (!dentry) {
    4854                 :          0 :                 page = find_get_page(mapping, 0);
    4855         [ #  # ]:          0 :                 if (!page)
    4856                 :            :                         return ERR_PTR(-ECHILD);
    4857         [ #  # ]:          0 :                 if (!PageUptodate(page)) {
    4858                 :          0 :                         put_page(page);
    4859                 :          0 :                         return ERR_PTR(-ECHILD);
    4860                 :            :                 }
    4861                 :            :         } else {
    4862                 :          0 :                 page = read_mapping_page(mapping, 0, NULL);
    4863         [ #  # ]:          0 :                 if (IS_ERR(page))
    4864                 :            :                         return (char*)page;
    4865                 :            :         }
    4866         [ #  # ]:          0 :         set_delayed_call(callback, page_put_link, page);
    4867         [ #  # ]:          0 :         BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
    4868                 :          0 :         kaddr = page_address(page);
    4869                 :          0 :         nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
    4870                 :          0 :         return kaddr;
    4871                 :            : }
    4872                 :            : 
    4873                 :            : EXPORT_SYMBOL(page_get_link);
    4874                 :            : 
    4875                 :          0 : void page_put_link(void *arg)
    4876                 :            : {
    4877                 :          0 :         put_page(arg);
    4878                 :          0 : }
    4879                 :            : EXPORT_SYMBOL(page_put_link);
    4880                 :            : 
    4881                 :          0 : int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
    4882                 :            : {
    4883                 :          0 :         DEFINE_DELAYED_CALL(done);
    4884                 :          0 :         int res = readlink_copy(buffer, buflen,
    4885                 :            :                                 page_get_link(dentry, d_inode(dentry),
    4886                 :            :                                               &done));
    4887         [ #  # ]:          0 :         do_delayed_call(&done);
    4888                 :          0 :         return res;
    4889                 :            : }
    4890                 :            : EXPORT_SYMBOL(page_readlink);
    4891                 :            : 
    4892                 :            : /*
    4893                 :            :  * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
    4894                 :            :  */
    4895                 :          0 : int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
    4896                 :            : {
    4897                 :          0 :         struct address_space *mapping = inode->i_mapping;
    4898                 :          0 :         struct page *page;
    4899                 :          0 :         void *fsdata;
    4900                 :          0 :         int err;
    4901                 :          0 :         unsigned int flags = 0;
    4902         [ #  # ]:          0 :         if (nofs)
    4903                 :          0 :                 flags |= AOP_FLAG_NOFS;
    4904                 :            : 
    4905                 :          0 : retry:
    4906                 :          0 :         err = pagecache_write_begin(NULL, mapping, 0, len-1,
    4907                 :            :                                 flags, &page, &fsdata);
    4908         [ #  # ]:          0 :         if (err)
    4909                 :          0 :                 goto fail;
    4910                 :            : 
    4911                 :          0 :         memcpy(page_address(page), symname, len-1);
    4912                 :            : 
    4913                 :          0 :         err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
    4914                 :            :                                                         page, fsdata);
    4915         [ #  # ]:          0 :         if (err < 0)
    4916                 :          0 :                 goto fail;
    4917         [ #  # ]:          0 :         if (err < len-1)
    4918                 :          0 :                 goto retry;
    4919                 :            : 
    4920                 :          0 :         mark_inode_dirty(inode);
    4921                 :          0 :         return 0;
    4922                 :            : fail:
    4923                 :            :         return err;
    4924                 :            : }
    4925                 :            : EXPORT_SYMBOL(__page_symlink);
    4926                 :            : 
    4927                 :          0 : int page_symlink(struct inode *inode, const char *symname, int len)
    4928                 :            : {
    4929                 :          0 :         return __page_symlink(inode, symname, len,
    4930                 :          0 :                         !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
    4931                 :            : }
    4932                 :            : EXPORT_SYMBOL(page_symlink);
    4933                 :            : 
    4934                 :            : const struct inode_operations page_symlink_inode_operations = {
    4935                 :            :         .get_link       = page_get_link,
    4936                 :            : };
    4937                 :            : EXPORT_SYMBOL(page_symlink_inode_operations);

Generated by: LCOV version 1.14