Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved |
| 3 | * Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org> |
| 4 | * Copyright 2001-2006 Ian Kent <raven@themaw.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * This file is part of the Linux kernel and is made available under |
| 7 | * the terms of the GNU General Public License, version 2, or at your |
| 8 | * option, any later version, incorporated herein by reference. |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | #include "autofs_i.h" |
| 12 | |
| 13 | static unsigned long now; |
| 14 | |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 15 | /* Check if a dentry can be expired */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | static inline int autofs4_can_expire(struct dentry *dentry, |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 17 | unsigned long timeout, int do_now) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | { |
| 19 | struct autofs_info *ino = autofs4_dentry_ino(dentry); |
| 20 | |
| 21 | /* dentry in the process of being deleted */ |
| 22 | if (ino == NULL) |
| 23 | return 0; |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | if (!do_now) { |
| 26 | /* Too young to die */ |
Ian Kent | c0ba7e5 | 2006-09-25 16:24:16 -0700 | [diff] [blame] | 27 | if (!timeout || time_after(ino->last_used + timeout, now)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | return 1; |
| 31 | } |
| 32 | |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 33 | /* Check a mount point for busyness */ |
| 34 | static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 36 | struct dentry *top = dentry; |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 37 | struct path path = {.mnt = mnt, .dentry = dentry}; |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 38 | int status = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 40 | pr_debug("dentry %p %pd\n", dentry, dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 42 | path_get(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
David Howells | cc53ce5 | 2011-01-14 18:45:26 +0000 | [diff] [blame] | 44 | if (!follow_down_one(&path)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | goto done; |
| 46 | |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 47 | if (is_autofs4_dentry(path.dentry)) { |
| 48 | struct autofs_sb_info *sbi = autofs4_sbi(path.dentry->d_sb); |
Ian Kent | bc9c406 | 2008-11-06 12:53:22 -0800 | [diff] [blame] | 49 | |
| 50 | /* This is an autofs submount, we can't expire it */ |
Ian Kent | a92daf6 | 2009-01-06 14:42:08 -0800 | [diff] [blame] | 51 | if (autofs_type_indirect(sbi->type)) |
Ian Kent | bc9c406 | 2008-11-06 12:53:22 -0800 | [diff] [blame] | 52 | goto done; |
Ian Kent | bc9c406 | 2008-11-06 12:53:22 -0800 | [diff] [blame] | 53 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 55 | /* Update the expiry counter if fs is busy */ |
Ian Kent | 37d0892 | 2009-09-01 11:26:22 +0800 | [diff] [blame] | 56 | if (!may_umount_tree(path.mnt)) { |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 57 | struct autofs_info *ino; |
| 58 | |
| 59 | ino = autofs4_dentry_ino(top); |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 60 | ino->last_used = jiffies; |
| 61 | goto done; |
| 62 | } |
| 63 | |
| 64 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | done: |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 66 | pr_debug("returning = %d\n", status); |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 67 | path_put(&path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return status; |
| 69 | } |
| 70 | |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 71 | /* |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 72 | * Calculate and dget next entry in the subdirs list under root. |
| 73 | */ |
| 74 | static struct dentry *get_next_positive_subdir(struct dentry *prev, |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 75 | struct dentry *root) |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 76 | { |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 77 | struct autofs_sb_info *sbi = autofs4_sbi(root->d_sb); |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 78 | struct list_head *next; |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 79 | struct dentry *q; |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 80 | |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 81 | spin_lock(&sbi->lookup_lock); |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 82 | spin_lock(&root->d_lock); |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 83 | |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 84 | if (prev) |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 85 | next = prev->d_child.next; |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 86 | else { |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 87 | prev = dget_dlock(root); |
| 88 | next = prev->d_subdirs.next; |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 89 | } |
| 90 | |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 91 | cont: |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 92 | if (next == &root->d_subdirs) { |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 93 | spin_unlock(&root->d_lock); |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 94 | spin_unlock(&sbi->lookup_lock); |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 95 | dput(prev); |
| 96 | return NULL; |
| 97 | } |
| 98 | |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 99 | q = list_entry(next, struct dentry, d_child); |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 100 | |
| 101 | spin_lock_nested(&q->d_lock, DENTRY_D_LOCK_NESTED); |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 102 | /* Already gone or negative dentry (under construction) - try next */ |
Al Viro | 84d08fa | 2013-07-05 18:59:33 +0400 | [diff] [blame] | 103 | if (!d_count(q) || !simple_positive(q)) { |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 104 | spin_unlock(&q->d_lock); |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 105 | next = q->d_child.next; |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 106 | goto cont; |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 107 | } |
| 108 | dget_dlock(q); |
| 109 | spin_unlock(&q->d_lock); |
Ian Kent | a45440f | 2012-08-06 09:37:47 +0800 | [diff] [blame] | 110 | spin_unlock(&root->d_lock); |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 111 | spin_unlock(&sbi->lookup_lock); |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 112 | |
| 113 | dput(prev); |
| 114 | |
| 115 | return q; |
| 116 | } |
| 117 | |
| 118 | /* |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 119 | * Calculate and dget next entry in top down tree traversal. |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 120 | */ |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 121 | static struct dentry *get_next_positive_dentry(struct dentry *prev, |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 122 | struct dentry *root) |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 123 | { |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 124 | struct autofs_sb_info *sbi = autofs4_sbi(root->d_sb); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 125 | struct list_head *next; |
| 126 | struct dentry *p, *ret; |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 127 | |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 128 | if (prev == NULL) |
Ian Kent | c14cc63 | 2011-01-18 12:06:04 +0800 | [diff] [blame] | 129 | return dget(root); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 130 | |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 131 | spin_lock(&sbi->lookup_lock); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 132 | relock: |
| 133 | p = prev; |
| 134 | spin_lock(&p->d_lock); |
| 135 | again: |
| 136 | next = p->d_subdirs.next; |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 137 | if (next == &p->d_subdirs) { |
| 138 | while (1) { |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 139 | struct dentry *parent; |
| 140 | |
| 141 | if (p == root) { |
| 142 | spin_unlock(&p->d_lock); |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 143 | spin_unlock(&sbi->lookup_lock); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 144 | dput(prev); |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 145 | return NULL; |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | parent = p->d_parent; |
| 149 | if (!spin_trylock(&parent->d_lock)) { |
| 150 | spin_unlock(&p->d_lock); |
| 151 | cpu_relax(); |
| 152 | goto relock; |
| 153 | } |
| 154 | spin_unlock(&p->d_lock); |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 155 | next = p->d_child.next; |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 156 | p = parent; |
| 157 | if (next != &parent->d_subdirs) |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 158 | break; |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 159 | } |
| 160 | } |
Al Viro | 946e51f | 2014-10-26 19:19:16 -0400 | [diff] [blame] | 161 | ret = list_entry(next, struct dentry, d_child); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 162 | |
| 163 | spin_lock_nested(&ret->d_lock, DENTRY_D_LOCK_NESTED); |
| 164 | /* Negative dentry - try next */ |
| 165 | if (!simple_positive(ret)) { |
Ian Kent | c14cc63 | 2011-01-18 12:06:04 +0800 | [diff] [blame] | 166 | spin_unlock(&p->d_lock); |
Steven Rostedt | 1d6f209 | 2011-08-22 11:52:28 +0800 | [diff] [blame] | 167 | lock_set_subclass(&ret->d_lock.dep_map, 0, _RET_IP_); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 168 | p = ret; |
| 169 | goto again; |
| 170 | } |
| 171 | dget_dlock(ret); |
| 172 | spin_unlock(&ret->d_lock); |
| 173 | spin_unlock(&p->d_lock); |
Ian Kent | e785472 | 2011-03-25 01:51:31 +0800 | [diff] [blame] | 174 | spin_unlock(&sbi->lookup_lock); |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 175 | |
| 176 | dput(prev); |
| 177 | |
| 178 | return ret; |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 179 | } |
| 180 | |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 181 | /* |
| 182 | * Check a direct mount point for busyness. |
| 183 | * Direct mounts have similar expiry semantics to tree mounts. |
| 184 | * The tree is not busy iff no mountpoints are busy and there are no |
| 185 | * autofs submounts. |
| 186 | */ |
| 187 | static int autofs4_direct_busy(struct vfsmount *mnt, |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 188 | struct dentry *top, |
| 189 | unsigned long timeout, |
| 190 | int do_now) |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 191 | { |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 192 | pr_debug("top %p %pd\n", top, top); |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 193 | |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 194 | /* If it's busy update the expiry counters */ |
| 195 | if (!may_umount_tree(mnt)) { |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 196 | struct autofs_info *ino; |
| 197 | |
| 198 | ino = autofs4_dentry_ino(top); |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 199 | if (ino) |
| 200 | ino->last_used = jiffies; |
| 201 | return 1; |
| 202 | } |
| 203 | |
| 204 | /* Timeout of a direct mount is determined by its top dentry */ |
| 205 | if (!autofs4_can_expire(top, timeout, do_now)) |
| 206 | return 1; |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 211 | /* |
| 212 | * Check a directory tree of mount points for busyness |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * The tree is not busy iff no mountpoints are busy |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | */ |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 215 | static int autofs4_tree_busy(struct vfsmount *mnt, |
| 216 | struct dentry *top, |
| 217 | unsigned long timeout, |
| 218 | int do_now) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 220 | struct autofs_info *top_ino = autofs4_dentry_ino(top); |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 221 | struct dentry *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 223 | pr_debug("top %p %pd\n", top, top); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | /* Negative dentry - give up */ |
| 226 | if (!simple_positive(top)) |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 227 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 229 | p = NULL; |
| 230 | while ((p = get_next_positive_dentry(p, top))) { |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 231 | pr_debug("dentry %p %pd\n", p, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 233 | /* |
| 234 | * Is someone visiting anywhere in the subtree ? |
| 235 | * If there's no mount we need to check the usage |
| 236 | * count for the autofs dentry. |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 237 | * If the fs is busy update the expiry counter. |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 238 | */ |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 239 | if (d_mountpoint(p)) { |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 240 | if (autofs4_mount_busy(mnt, p)) { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 241 | top_ino->last_used = jiffies; |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 242 | dput(p); |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 243 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 245 | } else { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 246 | struct autofs_info *ino = autofs4_dentry_ino(p); |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 247 | unsigned int ino_count = atomic_read(&ino->count); |
| 248 | |
| 249 | /* allow for dget above and top is already dgot */ |
| 250 | if (p == top) |
| 251 | ino_count += 2; |
| 252 | else |
| 253 | ino_count++; |
| 254 | |
Al Viro | 84d08fa | 2013-07-05 18:59:33 +0400 | [diff] [blame] | 255 | if (d_count(p) > ino_count) { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 256 | top_ino->last_used = jiffies; |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 257 | dput(p); |
| 258 | return 1; |
| 259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | } |
Ian Kent | 1aff3c8 | 2006-03-27 01:14:46 -0800 | [diff] [blame] | 262 | |
| 263 | /* Timeout of a tree mount is ultimately determined by its top dentry */ |
| 264 | if (!autofs4_can_expire(top, timeout, do_now)) |
| 265 | return 1; |
| 266 | |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 267 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | static struct dentry *autofs4_check_leaves(struct vfsmount *mnt, |
| 271 | struct dentry *parent, |
| 272 | unsigned long timeout, |
| 273 | int do_now) |
| 274 | { |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 275 | struct dentry *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 277 | pr_debug("parent %p %pd\n", parent, parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 279 | p = NULL; |
| 280 | while ((p = get_next_positive_dentry(p, parent))) { |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 281 | pr_debug("dentry %p %pd\n", p, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 283 | if (d_mountpoint(p)) { |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 284 | /* Can we umount this guy */ |
| 285 | if (autofs4_mount_busy(mnt, p)) |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 286 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Ian Kent | e0a7aae | 2006-03-27 01:14:47 -0800 | [diff] [blame] | 288 | /* Can we expire this guy */ |
| 289 | if (autofs4_can_expire(p, timeout, do_now)) |
Ian Kent | 1ce12ba | 2006-03-27 01:14:45 -0800 | [diff] [blame] | 290 | return p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return NULL; |
| 294 | } |
| 295 | |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 296 | /* Check if we can expire a direct mount (possibly a tree) */ |
Ian Kent | 8d7b48e | 2008-10-15 22:02:54 -0700 | [diff] [blame] | 297 | struct dentry *autofs4_expire_direct(struct super_block *sb, |
| 298 | struct vfsmount *mnt, |
| 299 | struct autofs_sb_info *sbi, |
| 300 | int how) |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 301 | { |
| 302 | unsigned long timeout; |
| 303 | struct dentry *root = dget(sb->s_root); |
| 304 | int do_now = how & AUTOFS_EXP_IMMEDIATE; |
Ian Kent | b5b8017 | 2011-01-14 18:46:03 +0000 | [diff] [blame] | 305 | struct autofs_info *ino; |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 306 | |
Ian Kent | c0ba7e5 | 2006-09-25 16:24:16 -0700 | [diff] [blame] | 307 | if (!root) |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 308 | return NULL; |
| 309 | |
| 310 | now = jiffies; |
| 311 | timeout = sbi->exp_timeout; |
| 312 | |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 313 | spin_lock(&sbi->fs_lock); |
Ian Kent | b5b8017 | 2011-01-14 18:46:03 +0000 | [diff] [blame] | 314 | ino = autofs4_dentry_ino(root); |
| 315 | /* No point expiring a pending mount */ |
Ian Kent | f9398c2 | 2011-03-25 01:51:14 +0800 | [diff] [blame] | 316 | if (ino->flags & AUTOFS_INF_PENDING) |
| 317 | goto out; |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 318 | if (!autofs4_direct_busy(mnt, root, timeout, do_now)) { |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 319 | ino->flags |= AUTOFS_INF_WANT_EXPIRE; |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 320 | spin_unlock(&sbi->fs_lock); |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 321 | synchronize_rcu(); |
| 322 | spin_lock(&sbi->fs_lock); |
| 323 | if (!autofs4_direct_busy(mnt, root, timeout, do_now)) { |
| 324 | ino->flags |= AUTOFS_INF_EXPIRING; |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 325 | init_completion(&ino->expire_complete); |
| 326 | spin_unlock(&sbi->fs_lock); |
| 327 | return root; |
| 328 | } |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 329 | ino->flags &= ~AUTOFS_INF_WANT_EXPIRE; |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 330 | } |
Ian Kent | f9398c2 | 2011-03-25 01:51:14 +0800 | [diff] [blame] | 331 | out: |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 332 | spin_unlock(&sbi->fs_lock); |
| 333 | dput(root); |
| 334 | |
| 335 | return NULL; |
| 336 | } |
| 337 | |
NeilBrown | a5d1dba | 2014-10-13 15:52:16 -0700 | [diff] [blame] | 338 | /* Check if 'dentry' should expire, or return a nearby |
| 339 | * dentry that is suitable. |
| 340 | * If returned dentry is different from arg dentry, |
| 341 | * then a dget() reference was taken, else not. |
| 342 | */ |
| 343 | static struct dentry *should_expire(struct dentry *dentry, |
| 344 | struct vfsmount *mnt, |
| 345 | unsigned long timeout, |
| 346 | int how) |
| 347 | { |
| 348 | int do_now = how & AUTOFS_EXP_IMMEDIATE; |
| 349 | int exp_leaves = how & AUTOFS_EXP_LEAVES; |
| 350 | struct autofs_info *ino = autofs4_dentry_ino(dentry); |
| 351 | unsigned int ino_count; |
| 352 | |
| 353 | /* No point expiring a pending mount */ |
| 354 | if (ino->flags & AUTOFS_INF_PENDING) |
| 355 | return NULL; |
| 356 | |
| 357 | /* |
| 358 | * Case 1: (i) indirect mount or top level pseudo direct mount |
| 359 | * (autofs-4.1). |
| 360 | * (ii) indirect mount with offset mount, check the "/" |
| 361 | * offset (autofs-5.0+). |
| 362 | */ |
| 363 | if (d_mountpoint(dentry)) { |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 364 | pr_debug("checking mountpoint %p %pd\n", dentry, dentry); |
NeilBrown | a5d1dba | 2014-10-13 15:52:16 -0700 | [diff] [blame] | 365 | |
| 366 | /* Can we umount this guy */ |
| 367 | if (autofs4_mount_busy(mnt, dentry)) |
| 368 | return NULL; |
| 369 | |
| 370 | /* Can we expire this guy */ |
| 371 | if (autofs4_can_expire(dentry, timeout, do_now)) |
| 372 | return dentry; |
| 373 | return NULL; |
| 374 | } |
| 375 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 376 | if (d_really_is_positive(dentry) && d_is_symlink(dentry)) { |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 377 | pr_debug("checking symlink %p %pd\n", dentry, dentry); |
NeilBrown | a5d1dba | 2014-10-13 15:52:16 -0700 | [diff] [blame] | 378 | /* |
| 379 | * A symlink can't be "busy" in the usual sense so |
| 380 | * just check last used for expire timeout. |
| 381 | */ |
| 382 | if (autofs4_can_expire(dentry, timeout, do_now)) |
| 383 | return dentry; |
| 384 | return NULL; |
| 385 | } |
| 386 | |
| 387 | if (simple_empty(dentry)) |
| 388 | return NULL; |
| 389 | |
| 390 | /* Case 2: tree mount, expire iff entire tree is not busy */ |
| 391 | if (!exp_leaves) { |
| 392 | /* Path walk currently on this dentry? */ |
| 393 | ino_count = atomic_read(&ino->count) + 1; |
| 394 | if (d_count(dentry) > ino_count) |
| 395 | return NULL; |
| 396 | |
| 397 | if (!autofs4_tree_busy(mnt, dentry, timeout, do_now)) |
| 398 | return dentry; |
| 399 | /* |
| 400 | * Case 3: pseudo direct mount, expire individual leaves |
| 401 | * (autofs-4.1). |
| 402 | */ |
| 403 | } else { |
| 404 | /* Path walk currently on this dentry? */ |
| 405 | struct dentry *expired; |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 406 | |
NeilBrown | a5d1dba | 2014-10-13 15:52:16 -0700 | [diff] [blame] | 407 | ino_count = atomic_read(&ino->count) + 1; |
| 408 | if (d_count(dentry) > ino_count) |
| 409 | return NULL; |
| 410 | |
| 411 | expired = autofs4_check_leaves(mnt, dentry, timeout, do_now); |
| 412 | if (expired) { |
| 413 | if (expired == dentry) |
| 414 | dput(dentry); |
| 415 | return expired; |
| 416 | } |
| 417 | } |
| 418 | return NULL; |
| 419 | } |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 420 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | /* |
| 422 | * Find an eligible tree to time-out |
| 423 | * A tree is eligible if :- |
| 424 | * - it is unused by any user process |
| 425 | * - it has been unused for exp_timeout time |
| 426 | */ |
Ian Kent | 8d7b48e | 2008-10-15 22:02:54 -0700 | [diff] [blame] | 427 | struct dentry *autofs4_expire_indirect(struct super_block *sb, |
| 428 | struct vfsmount *mnt, |
| 429 | struct autofs_sb_info *sbi, |
| 430 | int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { |
| 432 | unsigned long timeout; |
| 433 | struct dentry *root = sb->s_root; |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 434 | struct dentry *dentry; |
NeilBrown | a5d1dba | 2014-10-13 15:52:16 -0700 | [diff] [blame] | 435 | struct dentry *expired; |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 436 | struct dentry *found; |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 437 | struct autofs_info *ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Ian Kent | c0ba7e5 | 2006-09-25 16:24:16 -0700 | [diff] [blame] | 439 | if (!root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | return NULL; |
| 441 | |
| 442 | now = jiffies; |
| 443 | timeout = sbi->exp_timeout; |
| 444 | |
Nick Piggin | 2fd6b7f | 2011-01-07 17:49:34 +1100 | [diff] [blame] | 445 | dentry = NULL; |
Ian Kent | d4a85e3 | 2011-03-25 01:51:20 +0800 | [diff] [blame] | 446 | while ((dentry = get_next_positive_subdir(dentry, root))) { |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 447 | int flags = how; |
| 448 | |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 449 | spin_lock(&sbi->fs_lock); |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 450 | ino = autofs4_dentry_ino(dentry); |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 451 | if (ino->flags & AUTOFS_INF_WANT_EXPIRE) { |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 452 | spin_unlock(&sbi->fs_lock); |
| 453 | continue; |
| 454 | } |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 455 | spin_unlock(&sbi->fs_lock); |
| 456 | |
| 457 | expired = should_expire(dentry, mnt, timeout, flags); |
| 458 | if (!expired) |
| 459 | continue; |
| 460 | |
| 461 | spin_lock(&sbi->fs_lock); |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 462 | ino = autofs4_dentry_ino(expired); |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 463 | ino->flags |= AUTOFS_INF_WANT_EXPIRE; |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 464 | spin_unlock(&sbi->fs_lock); |
| 465 | synchronize_rcu(); |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 466 | |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 467 | /* Make sure a reference is not taken on found if |
| 468 | * things have changed. |
| 469 | */ |
| 470 | flags &= ~AUTOFS_EXP_LEAVES; |
| 471 | found = should_expire(expired, mnt, timeout, how); |
Al Viro | d29e4ee | 2019-10-25 00:03:11 -0400 | [diff] [blame] | 472 | if (found != expired) { // something has changed, continue |
| 473 | dput(found); |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 474 | goto next; |
Al Viro | d29e4ee | 2019-10-25 00:03:11 -0400 | [diff] [blame] | 475 | } |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 476 | |
| 477 | if (expired != dentry) |
| 478 | dput(dentry); |
| 479 | |
| 480 | spin_lock(&sbi->fs_lock); |
| 481 | goto found; |
| 482 | next: |
| 483 | spin_lock(&sbi->fs_lock); |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 484 | ino->flags &= ~AUTOFS_INF_WANT_EXPIRE; |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 485 | spin_unlock(&sbi->fs_lock); |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 486 | if (expired != dentry) |
| 487 | dput(expired); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | return NULL; |
Ian Kent | afec570 | 2008-05-01 04:35:06 -0700 | [diff] [blame] | 490 | |
| 491 | found: |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 492 | pr_debug("returning %p %pd\n", expired, expired); |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 493 | ino->flags |= AUTOFS_INF_EXPIRING; |
Ian Kent | 6e60a9a | 2008-07-23 21:30:27 -0700 | [diff] [blame] | 494 | init_completion(&ino->expire_complete); |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 495 | spin_unlock(&sbi->fs_lock); |
Ian Kent | afec570 | 2008-05-01 04:35:06 -0700 | [diff] [blame] | 496 | return expired; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | } |
| 498 | |
NeilBrown | 23bfc2a | 2014-10-13 15:52:14 -0700 | [diff] [blame] | 499 | int autofs4_expire_wait(struct dentry *dentry, int rcu_walk) |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 500 | { |
| 501 | struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); |
| 502 | struct autofs_info *ino = autofs4_dentry_ino(dentry); |
| 503 | int status; |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 504 | int state; |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 505 | |
| 506 | /* Block on any pending expire */ |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 507 | if (!(ino->flags & AUTOFS_INF_WANT_EXPIRE)) |
NeilBrown | 4d885f9 | 2014-10-13 15:52:20 -0700 | [diff] [blame] | 508 | return 0; |
| 509 | if (rcu_walk) |
| 510 | return -ECHILD; |
| 511 | |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 512 | retry: |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 513 | spin_lock(&sbi->fs_lock); |
Ian Kent | 7cbdb4a | 2016-09-19 14:44:12 -0700 | [diff] [blame] | 514 | state = ino->flags & (AUTOFS_INF_WANT_EXPIRE | AUTOFS_INF_EXPIRING); |
| 515 | if (state == AUTOFS_INF_WANT_EXPIRE) { |
| 516 | spin_unlock(&sbi->fs_lock); |
| 517 | /* |
| 518 | * Possibly being selected for expire, wait until |
| 519 | * it's selected or not. |
| 520 | */ |
| 521 | schedule_timeout_uninterruptible(HZ/10); |
| 522 | goto retry; |
| 523 | } |
| 524 | if (state & AUTOFS_INF_EXPIRING) { |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 525 | spin_unlock(&sbi->fs_lock); |
| 526 | |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 527 | pr_debug("waiting for expire %p name=%pd\n", dentry, dentry); |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 528 | |
| 529 | status = autofs4_wait(sbi, dentry, NFY_NONE); |
| 530 | wait_for_completion(&ino->expire_complete); |
| 531 | |
Ian Kent | 8a78d59 | 2016-03-15 14:58:45 -0700 | [diff] [blame] | 532 | pr_debug("expire done status=%d\n", status); |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 533 | |
Al Viro | 4b1ae27 | 2010-03-03 12:58:31 -0500 | [diff] [blame] | 534 | if (d_unhashed(dentry)) |
Ian Kent | 06a3598 | 2008-07-23 21:30:28 -0700 | [diff] [blame] | 535 | return -EAGAIN; |
| 536 | |
| 537 | return status; |
| 538 | } |
| 539 | spin_unlock(&sbi->fs_lock); |
| 540 | |
| 541 | return 0; |
| 542 | } |
| 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | /* Perform an expiry operation */ |
| 545 | int autofs4_expire_run(struct super_block *sb, |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 546 | struct vfsmount *mnt, |
| 547 | struct autofs_sb_info *sbi, |
| 548 | struct autofs_packet_expire __user *pkt_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | { |
| 550 | struct autofs_packet_expire pkt; |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 551 | struct autofs_info *ino; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | struct dentry *dentry; |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 553 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 555 | memset(&pkt, 0, sizeof(pkt)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
| 557 | pkt.hdr.proto_version = sbi->version; |
| 558 | pkt.hdr.type = autofs_ptype_expire; |
| 559 | |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 560 | dentry = autofs4_expire_indirect(sb, mnt, sbi, 0); |
| 561 | if (!dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | return -EAGAIN; |
| 563 | |
| 564 | pkt.len = dentry->d_name.len; |
| 565 | memcpy(pkt.name, dentry->d_name.name, pkt.len); |
| 566 | pkt.name[pkt.len] = '\0'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 568 | if (copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire))) |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 569 | ret = -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 571 | spin_lock(&sbi->fs_lock); |
| 572 | ino = autofs4_dentry_ino(dentry); |
NeilBrown | 6ece08e | 2014-10-13 15:52:18 -0700 | [diff] [blame] | 573 | /* avoid rapid-fire expire attempts if expiry fails */ |
| 574 | ino->last_used = now; |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 575 | ino->flags &= ~(AUTOFS_INF_EXPIRING|AUTOFS_INF_WANT_EXPIRE); |
Ian Kent | 6e60a9a | 2008-07-23 21:30:27 -0700 | [diff] [blame] | 576 | complete_all(&ino->expire_complete); |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 577 | spin_unlock(&sbi->fs_lock); |
| 578 | |
Pan Bian | 07f67e6 | 2019-02-01 14:21:26 -0800 | [diff] [blame] | 579 | dput(dentry); |
| 580 | |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 581 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Ian Kent | 56fcef7 | 2009-03-31 15:24:43 -0700 | [diff] [blame] | 584 | int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt, |
| 585 | struct autofs_sb_info *sbi, int when) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | { |
| 587 | struct dentry *dentry; |
| 588 | int ret = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | |
Ian Kent | a92daf6 | 2009-01-06 14:42:08 -0800 | [diff] [blame] | 590 | if (autofs_type_trigger(sbi->type)) |
Ian Kent | 56fcef7 | 2009-03-31 15:24:43 -0700 | [diff] [blame] | 591 | dentry = autofs4_expire_direct(sb, mnt, sbi, when); |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 592 | else |
Ian Kent | 56fcef7 | 2009-03-31 15:24:43 -0700 | [diff] [blame] | 593 | dentry = autofs4_expire_indirect(sb, mnt, sbi, when); |
Ian Kent | 3a15e2a | 2006-03-27 01:14:55 -0800 | [diff] [blame] | 594 | |
| 595 | if (dentry) { |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 596 | struct autofs_info *ino = autofs4_dentry_ino(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | /* This is synchronous because it makes the daemon a |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 599 | * little easier |
| 600 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | ret = autofs4_wait(sbi, dentry, NFY_EXPIRE); |
Ian Kent | 6e60a9a | 2008-07-23 21:30:27 -0700 | [diff] [blame] | 602 | |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 603 | spin_lock(&sbi->fs_lock); |
NeilBrown | 6ece08e | 2014-10-13 15:52:18 -0700 | [diff] [blame] | 604 | /* avoid rapid-fire expire attempts if expiry fails */ |
| 605 | ino->last_used = now; |
Al Viro | ea01a18 | 2016-06-12 11:24:46 -0400 | [diff] [blame] | 606 | ino->flags &= ~(AUTOFS_INF_EXPIRING|AUTOFS_INF_WANT_EXPIRE); |
Ian Kent | 6e60a9a | 2008-07-23 21:30:27 -0700 | [diff] [blame] | 607 | complete_all(&ino->expire_complete); |
Ian Kent | 97e7449 | 2008-07-23 21:30:26 -0700 | [diff] [blame] | 608 | spin_unlock(&sbi->fs_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | dput(dentry); |
| 610 | } |
Ian Kent | 1f5f2c3 | 2006-03-27 01:14:44 -0800 | [diff] [blame] | 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | return ret; |
| 613 | } |
| 614 | |
Ian Kent | e9a7c2f | 2016-03-15 14:58:25 -0700 | [diff] [blame] | 615 | /* |
| 616 | * Call repeatedly until it returns -EAGAIN, meaning there's nothing |
| 617 | * more to be done. |
| 618 | */ |
Ian Kent | 56fcef7 | 2009-03-31 15:24:43 -0700 | [diff] [blame] | 619 | int autofs4_expire_multi(struct super_block *sb, struct vfsmount *mnt, |
| 620 | struct autofs_sb_info *sbi, int __user *arg) |
| 621 | { |
| 622 | int do_now = 0; |
| 623 | |
| 624 | if (arg && get_user(do_now, arg)) |
| 625 | return -EFAULT; |
| 626 | |
| 627 | return autofs4_do_expire_multi(sb, mnt, sbi, do_now); |
| 628 | } |
| 629 | |