blob: d6bb1c9f5e7a5fa507a6295a5050fb845425d7e6 [file] [log] [blame]
Miklos Szeredibbb1e542016-12-16 11:02:56 +01001/*
2 * Copyright (C) 2011 Novell Inc.
3 * Copyright (C) 2016 Red Hat, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
9
10#include <linux/fs.h>
11#include <linux/mount.h>
12#include <linux/slab.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010013#include <linux/cred.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010014#include <linux/xattr.h>
Amir Goldstein02bcd152017-06-21 15:28:36 +030015#include <linux/exportfs.h>
16#include <linux/uuid.h>
Amir Goldsteincaf70cb2017-06-21 13:46:12 +030017#include <linux/namei.h>
18#include <linux/ratelimit.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010019#include "overlayfs.h"
Miklos Szeredibbb1e542016-12-16 11:02:56 +010020
21int ovl_want_write(struct dentry *dentry)
22{
23 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
24 return mnt_want_write(ofs->upper_mnt);
25}
26
27void ovl_drop_write(struct dentry *dentry)
28{
29 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
30 mnt_drop_write(ofs->upper_mnt);
31}
32
33struct dentry *ovl_workdir(struct dentry *dentry)
34{
35 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
36 return ofs->workdir;
37}
38
39const struct cred *ovl_override_creds(struct super_block *sb)
40{
41 struct ovl_fs *ofs = sb->s_fs_info;
42
43 return override_creds(ofs->creator_cred);
44}
45
Amir Goldstein7bcd74b2017-03-22 08:42:21 -040046struct super_block *ovl_same_sb(struct super_block *sb)
47{
48 struct ovl_fs *ofs = sb->s_fs_info;
49
50 return ofs->same_sb;
51}
52
Amir Goldstein02bcd152017-06-21 15:28:36 +030053bool ovl_can_decode_fh(struct super_block *sb)
54{
55 return (sb->s_export_op && sb->s_export_op->fh_to_dentry &&
56 !uuid_is_null(&sb->s_uuid));
57}
58
59struct dentry *ovl_indexdir(struct super_block *sb)
60{
61 struct ovl_fs *ofs = sb->s_fs_info;
62
63 return ofs->indexdir;
64}
65
Miklos Szeredibbb1e542016-12-16 11:02:56 +010066struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
67{
68 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
69 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
70
71 if (oe)
72 oe->numlower = numlower;
73
74 return oe;
75}
76
77bool ovl_dentry_remote(struct dentry *dentry)
78{
79 return dentry->d_flags &
80 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE |
81 DCACHE_OP_REAL);
82}
83
84bool ovl_dentry_weird(struct dentry *dentry)
85{
86 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
87 DCACHE_MANAGE_TRANSIT |
88 DCACHE_OP_HASH |
89 DCACHE_OP_COMPARE);
90}
91
92enum ovl_path_type ovl_path_type(struct dentry *dentry)
93{
94 struct ovl_entry *oe = dentry->d_fsdata;
95 enum ovl_path_type type = 0;
96
Miklos Szeredi09d8b582017-07-04 22:03:16 +020097 if (ovl_dentry_upper(dentry)) {
Miklos Szeredibbb1e542016-12-16 11:02:56 +010098 type = __OVL_PATH_UPPER;
99
100 /*
Amir Goldstein59548502017-04-23 23:12:34 +0300101 * Non-dir dentry can hold lower dentry of its copy up origin.
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100102 */
Amir Goldstein59548502017-04-23 23:12:34 +0300103 if (oe->numlower) {
104 type |= __OVL_PATH_ORIGIN;
105 if (d_is_dir(dentry))
106 type |= __OVL_PATH_MERGE;
107 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100108 } else {
109 if (oe->numlower > 1)
110 type |= __OVL_PATH_MERGE;
111 }
112 return type;
113}
114
115void ovl_path_upper(struct dentry *dentry, struct path *path)
116{
117 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100118
119 path->mnt = ofs->upper_mnt;
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200120 path->dentry = ovl_dentry_upper(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100121}
122
123void ovl_path_lower(struct dentry *dentry, struct path *path)
124{
125 struct ovl_entry *oe = dentry->d_fsdata;
126
Chandan Rajendrab9343632017-07-24 01:57:54 -0500127 if (oe->numlower) {
128 path->mnt = oe->lowerstack[0].layer->mnt;
129 path->dentry = oe->lowerstack[0].dentry;
130 } else {
131 *path = (struct path) { };
132 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100133}
134
135enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
136{
137 enum ovl_path_type type = ovl_path_type(dentry);
138
139 if (!OVL_TYPE_UPPER(type))
140 ovl_path_lower(dentry, path);
141 else
142 ovl_path_upper(dentry, path);
143
144 return type;
145}
146
147struct dentry *ovl_dentry_upper(struct dentry *dentry)
148{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200149 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100150}
151
152struct dentry *ovl_dentry_lower(struct dentry *dentry)
153{
154 struct ovl_entry *oe = dentry->d_fsdata;
155
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200156 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100157}
158
159struct dentry *ovl_dentry_real(struct dentry *dentry)
160{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200161 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100162}
163
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200164struct dentry *ovl_i_dentry_upper(struct inode *inode)
165{
166 return ovl_upperdentry_dereference(OVL_I(inode));
167}
168
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200169struct inode *ovl_inode_upper(struct inode *inode)
Miklos Szeredi25b77132017-07-04 22:03:16 +0200170{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200171 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200172
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200173 return upperdentry ? d_inode(upperdentry) : NULL;
Miklos Szeredi25b77132017-07-04 22:03:16 +0200174}
175
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200176struct inode *ovl_inode_lower(struct inode *inode)
177{
178 return OVL_I(inode)->lower;
179}
180
181struct inode *ovl_inode_real(struct inode *inode)
182{
183 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
184}
185
186
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200187struct ovl_dir_cache *ovl_dir_cache(struct inode *inode)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100188{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200189 return OVL_I(inode)->cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100190}
191
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200192void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100193{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200194 OVL_I(inode)->cache = cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100195}
196
197bool ovl_dentry_is_opaque(struct dentry *dentry)
198{
199 struct ovl_entry *oe = dentry->d_fsdata;
200 return oe->opaque;
201}
202
203bool ovl_dentry_is_whiteout(struct dentry *dentry)
204{
205 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
206}
207
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100208void ovl_dentry_set_opaque(struct dentry *dentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100209{
210 struct ovl_entry *oe = dentry->d_fsdata;
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100211
212 oe->opaque = true;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100213}
214
Miklos Szeredi55acc662017-07-04 22:03:18 +0200215/*
216 * For hard links it's possible for ovl_dentry_upper() to return positive, while
217 * there's no actual upper alias for the inode. Copy up code needs to know
218 * about the existence of the upper alias, so it can't use ovl_dentry_upper().
219 */
220bool ovl_dentry_has_upper_alias(struct dentry *dentry)
221{
222 struct ovl_entry *oe = dentry->d_fsdata;
223
224 return oe->has_upper;
225}
226
227void ovl_dentry_set_upper_alias(struct dentry *dentry)
228{
229 struct ovl_entry *oe = dentry->d_fsdata;
230
231 oe->has_upper = true;
232}
233
Miklos Szeredia6c60652016-12-16 11:02:56 +0100234bool ovl_redirect_dir(struct super_block *sb)
235{
236 struct ovl_fs *ofs = sb->s_fs_info;
237
Amir Goldstein21a22872017-05-17 00:12:41 +0300238 return ofs->config.redirect_dir && !ofs->noxattr;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100239}
240
241const char *ovl_dentry_get_redirect(struct dentry *dentry)
242{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200243 return OVL_I(d_inode(dentry))->redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100244}
245
246void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
247{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200248 struct ovl_inode *oi = OVL_I(d_inode(dentry));
Miklos Szeredia6c60652016-12-16 11:02:56 +0100249
Miklos Szeredicf31c462017-07-04 22:03:16 +0200250 kfree(oi->redirect);
251 oi->redirect = redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100252}
253
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200254void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
255 struct dentry *lowerdentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100256{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200257 if (upperdentry)
258 OVL_I(inode)->__upperdentry = upperdentry;
259 if (lowerdentry)
260 OVL_I(inode)->lower = d_inode(lowerdentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100261
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200262 ovl_copyattr(d_inode(upperdentry ?: lowerdentry), inode);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100263}
264
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200265void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100266{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200267 struct inode *upperinode = d_inode(upperdentry);
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200268
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200269 WARN_ON(OVL_I(inode)->__upperdentry);
270
Miklos Szeredi25b77132017-07-04 22:03:16 +0200271 /*
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200272 * Make sure upperdentry is consistent before making it visible
Miklos Szeredi25b77132017-07-04 22:03:16 +0200273 */
274 smp_wmb();
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200275 OVL_I(inode)->__upperdentry = upperdentry;
Miklos Szeredib9ac5c272017-07-04 22:03:17 +0200276 if (!S_ISDIR(upperinode->i_mode) && inode_unhashed(inode)) {
Miklos Szeredi25b77132017-07-04 22:03:16 +0200277 inode->i_private = upperinode;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100278 __insert_inode_hash(inode, (unsigned long) upperinode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200279 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100280}
281
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200282void ovl_dentry_version_inc(struct dentry *dentry, bool impurity)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100283{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200284 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100285
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200286 WARN_ON(!inode_is_locked(inode));
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200287 /*
288 * Version is used by readdir code to keep cache consistent. For merge
289 * dirs all changes need to be noted. For non-merge dirs, cache only
290 * contains impure (ones which have been copied up and have origins)
291 * entries, so only need to note changes to impure entries.
292 */
293 if (OVL_TYPE_MERGE(ovl_path_type(dentry)) || impurity)
294 OVL_I(inode)->version++;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100295}
296
297u64 ovl_dentry_version_get(struct dentry *dentry)
298{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200299 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100300
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200301 WARN_ON(!inode_is_locked(inode));
302 return OVL_I(inode)->version;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100303}
304
305bool ovl_is_whiteout(struct dentry *dentry)
306{
307 struct inode *inode = dentry->d_inode;
308
309 return inode && IS_WHITEOUT(inode);
310}
311
312struct file *ovl_path_open(struct path *path, int flags)
313{
314 return dentry_open(path, flags | O_NOATIME, current_cred());
315}
Amir Goldstein39d3d602017-01-17 06:34:56 +0200316
317int ovl_copy_up_start(struct dentry *dentry)
318{
Amir Goldsteina015daf2017-06-21 15:28:51 +0300319 struct ovl_inode *oi = OVL_I(d_inode(dentry));
Amir Goldstein39d3d602017-01-17 06:34:56 +0200320 int err;
321
Amir Goldsteina015daf2017-06-21 15:28:51 +0300322 err = mutex_lock_interruptible(&oi->lock);
Amir Goldstein59be0972017-06-20 15:25:46 +0300323 if (!err && ovl_dentry_has_upper_alias(dentry)) {
Amir Goldsteina015daf2017-06-21 15:28:51 +0300324 err = 1; /* Already copied up */
325 mutex_unlock(&oi->lock);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200326 }
Amir Goldstein39d3d602017-01-17 06:34:56 +0200327
328 return err;
329}
330
331void ovl_copy_up_end(struct dentry *dentry)
332{
Amir Goldsteina015daf2017-06-21 15:28:51 +0300333 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200334}
Amir Goldstein82b749b2017-05-17 00:12:40 +0300335
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300336bool ovl_check_origin_xattr(struct dentry *dentry)
337{
338 int res;
339
340 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
341
342 /* Zero size value means "copied up but origin unknown" */
343 if (res >= 0)
344 return true;
345
346 return false;
347}
348
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300349bool ovl_check_dir_xattr(struct dentry *dentry, const char *name)
350{
351 int res;
352 char val;
353
354 if (!d_is_dir(dentry))
355 return false;
356
357 res = vfs_getxattr(dentry, name, &val, 1);
358 if (res == 1 && val == 'y')
359 return true;
360
361 return false;
362}
363
Amir Goldstein82b749b2017-05-17 00:12:40 +0300364int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
365 const char *name, const void *value, size_t size,
366 int xerr)
367{
368 int err;
369 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
370
371 if (ofs->noxattr)
372 return xerr;
373
374 err = ovl_do_setxattr(upperdentry, name, value, size, 0);
375
376 if (err == -EOPNOTSUPP) {
377 pr_warn("overlayfs: cannot set %s xattr on upper\n", name);
378 ofs->noxattr = true;
379 return xerr;
380 }
381
382 return err;
383}
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300384
385int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
386{
387 int err;
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300388
Miklos Szeredi13c72072017-07-04 22:03:16 +0200389 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300390 return 0;
391
392 /*
393 * Do not fail when upper doesn't support xattrs.
394 * Upper inodes won't have origin nor redirect xattr anyway.
395 */
396 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE,
397 "y", 1, 0);
398 if (!err)
Miklos Szeredi13c72072017-07-04 22:03:16 +0200399 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300400
401 return err;
402}
Miklos Szeredi13c72072017-07-04 22:03:16 +0200403
404void ovl_set_flag(unsigned long flag, struct inode *inode)
405{
406 set_bit(flag, &OVL_I(inode)->flags);
407}
408
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200409void ovl_clear_flag(unsigned long flag, struct inode *inode)
410{
411 clear_bit(flag, &OVL_I(inode)->flags);
412}
413
Miklos Szeredi13c72072017-07-04 22:03:16 +0200414bool ovl_test_flag(unsigned long flag, struct inode *inode)
415{
416 return test_bit(flag, &OVL_I(inode)->flags);
417}
Amir Goldsteinad0af712017-06-21 15:28:32 +0300418
419/**
420 * Caller must hold a reference to inode to prevent it from being freed while
421 * it is marked inuse.
422 */
423bool ovl_inuse_trylock(struct dentry *dentry)
424{
425 struct inode *inode = d_inode(dentry);
426 bool locked = false;
427
428 spin_lock(&inode->i_lock);
429 if (!(inode->i_state & I_OVL_INUSE)) {
430 inode->i_state |= I_OVL_INUSE;
431 locked = true;
432 }
433 spin_unlock(&inode->i_lock);
434
435 return locked;
436}
437
438void ovl_inuse_unlock(struct dentry *dentry)
439{
440 if (dentry) {
441 struct inode *inode = d_inode(dentry);
442
443 spin_lock(&inode->i_lock);
444 WARN_ON(!(inode->i_state & I_OVL_INUSE));
445 inode->i_state &= ~I_OVL_INUSE;
446 spin_unlock(&inode->i_lock);
447 }
448}
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300449
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300450/* Caller must hold OVL_I(inode)->lock */
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300451static void ovl_cleanup_index(struct dentry *dentry)
452{
453 struct inode *dir = ovl_indexdir(dentry->d_sb)->d_inode;
454 struct dentry *lowerdentry = ovl_dentry_lower(dentry);
455 struct dentry *upperdentry = ovl_dentry_upper(dentry);
456 struct dentry *index = NULL;
457 struct inode *inode;
458 struct qstr name;
459 int err;
460
461 err = ovl_get_index_name(lowerdentry, &name);
462 if (err)
463 goto fail;
464
465 inode = d_inode(upperdentry);
466 if (inode->i_nlink != 1) {
467 pr_warn_ratelimited("overlayfs: cleanup linked index (%pd2, ino=%lu, nlink=%u)\n",
468 upperdentry, inode->i_ino, inode->i_nlink);
469 /*
470 * We either have a bug with persistent union nlink or a lower
471 * hardlink was added while overlay is mounted. Adding a lower
472 * hardlink and then unlinking all overlay hardlinks would drop
473 * overlay nlink to zero before all upper inodes are unlinked.
474 * As a safety measure, when that situation is detected, set
475 * the overlay nlink to the index inode nlink minus one for the
476 * index entry itself.
477 */
478 set_nlink(d_inode(dentry), inode->i_nlink - 1);
479 ovl_set_nlink_upper(dentry);
480 goto out;
481 }
482
483 inode_lock_nested(dir, I_MUTEX_PARENT);
484 /* TODO: whiteout instead of cleanup to block future open by handle */
485 index = lookup_one_len(name.name, ovl_indexdir(dentry->d_sb), name.len);
486 err = PTR_ERR(index);
487 if (!IS_ERR(index))
488 err = ovl_cleanup(dir, index);
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300489 else
490 index = NULL;
491
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300492 inode_unlock(dir);
493 if (err)
494 goto fail;
495
496out:
497 dput(index);
498 return;
499
500fail:
501 pr_err("overlayfs: cleanup index of '%pd2' failed (%i)\n", dentry, err);
502 goto out;
503}
504
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300505/*
506 * Operations that change overlay inode and upper inode nlink need to be
507 * synchronized with copy up for persistent nlink accounting.
508 */
509int ovl_nlink_start(struct dentry *dentry, bool *locked)
510{
511 struct ovl_inode *oi = OVL_I(d_inode(dentry));
512 const struct cred *old_cred;
513 int err;
514
515 if (!d_inode(dentry) || d_is_dir(dentry))
516 return 0;
517
518 /*
519 * With inodes index is enabled, we store the union overlay nlink
520 * in an xattr on the index inode. When whiting out lower hardlinks
521 * we need to decrement the overlay persistent nlink, but before the
522 * first copy up, we have no upper index inode to store the xattr.
523 *
524 * As a workaround, before whiteout/rename over of a lower hardlink,
525 * copy up to create the upper index. Creating the upper index will
526 * initialize the overlay nlink, so it could be dropped if unlink
527 * or rename succeeds.
528 *
529 * TODO: implement metadata only index copy up when called with
530 * ovl_copy_up_flags(dentry, O_PATH).
531 */
532 if (ovl_indexdir(dentry->d_sb) && !ovl_dentry_has_upper_alias(dentry) &&
533 d_inode(ovl_dentry_lower(dentry))->i_nlink > 1) {
534 err = ovl_copy_up(dentry);
535 if (err)
536 return err;
537 }
538
539 err = mutex_lock_interruptible(&oi->lock);
540 if (err)
541 return err;
542
543 if (!ovl_test_flag(OVL_INDEX, d_inode(dentry)))
544 goto out;
545
546 old_cred = ovl_override_creds(dentry->d_sb);
547 /*
548 * The overlay inode nlink should be incremented/decremented IFF the
549 * upper operation succeeds, along with nlink change of upper inode.
550 * Therefore, before link/unlink/rename, we store the union nlink
551 * value relative to the upper inode nlink in an upper inode xattr.
552 */
553 err = ovl_set_nlink_upper(dentry);
554 revert_creds(old_cred);
555
556out:
557 if (err)
558 mutex_unlock(&oi->lock);
559 else
560 *locked = true;
561
562 return err;
563}
564
565void ovl_nlink_end(struct dentry *dentry, bool locked)
566{
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300567 if (locked) {
568 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) &&
569 d_inode(dentry)->i_nlink == 0) {
570 const struct cred *old_cred;
571
572 old_cred = ovl_override_creds(dentry->d_sb);
573 ovl_cleanup_index(dentry);
574 revert_creds(old_cred);
575 }
576
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300577 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300578 }
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300579}
Amir Goldstein5820dc02017-09-25 16:39:55 +0300580
581int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir)
582{
583 /* Workdir should not be the same as upperdir */
584 if (workdir == upperdir)
585 goto err;
586
587 /* Workdir should not be subdir of upperdir and vice versa */
588 if (lock_rename(workdir, upperdir) != NULL)
589 goto err_unlock;
590
591 return 0;
592
593err_unlock:
594 unlock_rename(workdir, upperdir);
595err:
596 pr_err("overlayfs: failed to lock workdir+upperdir\n");
597 return -EIO;
598}