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