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