blob: 9dfec74ec77d466aac575438aecc1328f5907f81 [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
Amir Goldstein51486262018-03-28 20:22:41 +030050 if (!ofs->numlowerfs)
51 return ofs->upper_mnt->mnt_sb;
52 else if (ofs->numlowerfs == 1 && !ofs->upper_mnt)
53 return ofs->lower_fs[0].sb;
54 else
55 return NULL;
Amir Goldstein7bcd74b2017-03-22 08:42:21 -040056}
57
Amir Goldstein02bcd152017-06-21 15:28:36 +030058bool ovl_can_decode_fh(struct super_block *sb)
59{
60 return (sb->s_export_op && sb->s_export_op->fh_to_dentry &&
61 !uuid_is_null(&sb->s_uuid));
62}
63
64struct dentry *ovl_indexdir(struct super_block *sb)
65{
66 struct ovl_fs *ofs = sb->s_fs_info;
67
68 return ofs->indexdir;
69}
70
Amir Goldsteinf168f102018-01-19 11:26:53 +020071/* Index all files on copy up. For now only enabled for NFS export */
72bool ovl_index_all(struct super_block *sb)
73{
74 struct ovl_fs *ofs = sb->s_fs_info;
75
76 return ofs->config.nfs_export && ofs->config.index;
77}
78
79/* Verify lower origin on lookup. For now only enabled for NFS export */
80bool ovl_verify_lower(struct super_block *sb)
81{
82 struct ovl_fs *ofs = sb->s_fs_info;
83
84 return ofs->config.nfs_export && ofs->config.index;
85}
86
Miklos Szeredibbb1e542016-12-16 11:02:56 +010087struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
88{
89 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
90 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
91
92 if (oe)
93 oe->numlower = numlower;
94
95 return oe;
96}
97
98bool ovl_dentry_remote(struct dentry *dentry)
99{
100 return dentry->d_flags &
101 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE |
102 DCACHE_OP_REAL);
103}
104
105bool ovl_dentry_weird(struct dentry *dentry)
106{
107 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
108 DCACHE_MANAGE_TRANSIT |
109 DCACHE_OP_HASH |
110 DCACHE_OP_COMPARE);
111}
112
113enum ovl_path_type ovl_path_type(struct dentry *dentry)
114{
115 struct ovl_entry *oe = dentry->d_fsdata;
116 enum ovl_path_type type = 0;
117
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200118 if (ovl_dentry_upper(dentry)) {
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100119 type = __OVL_PATH_UPPER;
120
121 /*
Amir Goldstein59548502017-04-23 23:12:34 +0300122 * Non-dir dentry can hold lower dentry of its copy up origin.
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100123 */
Amir Goldstein59548502017-04-23 23:12:34 +0300124 if (oe->numlower) {
125 type |= __OVL_PATH_ORIGIN;
126 if (d_is_dir(dentry))
127 type |= __OVL_PATH_MERGE;
128 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100129 } else {
130 if (oe->numlower > 1)
131 type |= __OVL_PATH_MERGE;
132 }
133 return type;
134}
135
136void ovl_path_upper(struct dentry *dentry, struct path *path)
137{
138 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100139
140 path->mnt = ofs->upper_mnt;
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200141 path->dentry = ovl_dentry_upper(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100142}
143
144void ovl_path_lower(struct dentry *dentry, struct path *path)
145{
146 struct ovl_entry *oe = dentry->d_fsdata;
147
Chandan Rajendrab9343632017-07-24 01:57:54 -0500148 if (oe->numlower) {
149 path->mnt = oe->lowerstack[0].layer->mnt;
150 path->dentry = oe->lowerstack[0].dentry;
151 } else {
152 *path = (struct path) { };
153 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100154}
155
156enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
157{
158 enum ovl_path_type type = ovl_path_type(dentry);
159
160 if (!OVL_TYPE_UPPER(type))
161 ovl_path_lower(dentry, path);
162 else
163 ovl_path_upper(dentry, path);
164
165 return type;
166}
167
168struct dentry *ovl_dentry_upper(struct dentry *dentry)
169{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200170 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100171}
172
173struct dentry *ovl_dentry_lower(struct dentry *dentry)
174{
175 struct ovl_entry *oe = dentry->d_fsdata;
176
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200177 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100178}
179
Amir Goldsteinda309e82017-11-08 19:39:51 +0200180struct ovl_layer *ovl_layer_lower(struct dentry *dentry)
181{
182 struct ovl_entry *oe = dentry->d_fsdata;
183
184 return oe->numlower ? oe->lowerstack[0].layer : NULL;
185}
186
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100187struct dentry *ovl_dentry_real(struct dentry *dentry)
188{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200189 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100190}
191
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200192struct dentry *ovl_i_dentry_upper(struct inode *inode)
193{
194 return ovl_upperdentry_dereference(OVL_I(inode));
195}
196
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200197struct inode *ovl_inode_upper(struct inode *inode)
Miklos Szeredi25b77132017-07-04 22:03:16 +0200198{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200199 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200200
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200201 return upperdentry ? d_inode(upperdentry) : NULL;
Miklos Szeredi25b77132017-07-04 22:03:16 +0200202}
203
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200204struct inode *ovl_inode_lower(struct inode *inode)
205{
206 return OVL_I(inode)->lower;
207}
208
209struct inode *ovl_inode_real(struct inode *inode)
210{
211 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
212}
213
214
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200215struct ovl_dir_cache *ovl_dir_cache(struct inode *inode)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100216{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200217 return OVL_I(inode)->cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100218}
219
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200220void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100221{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200222 OVL_I(inode)->cache = cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100223}
224
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200225void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry)
226{
227 set_bit(flag, &OVL_E(dentry)->flags);
228}
229
230void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry)
231{
232 clear_bit(flag, &OVL_E(dentry)->flags);
233}
234
235bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry)
236{
237 return test_bit(flag, &OVL_E(dentry)->flags);
238}
239
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100240bool ovl_dentry_is_opaque(struct dentry *dentry)
241{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200242 return ovl_dentry_test_flag(OVL_E_OPAQUE, dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100243}
244
245bool ovl_dentry_is_whiteout(struct dentry *dentry)
246{
247 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
248}
249
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100250void ovl_dentry_set_opaque(struct dentry *dentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100251{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200252 ovl_dentry_set_flag(OVL_E_OPAQUE, dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100253}
254
Miklos Szeredi55acc662017-07-04 22:03:18 +0200255/*
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300256 * For hard links and decoded file handles, it's possible for ovl_dentry_upper()
257 * to return positive, while there's no actual upper alias for the inode.
258 * Copy up code needs to know about the existence of the upper alias, so it
259 * can't use ovl_dentry_upper().
Miklos Szeredi55acc662017-07-04 22:03:18 +0200260 */
261bool ovl_dentry_has_upper_alias(struct dentry *dentry)
262{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200263 return ovl_dentry_test_flag(OVL_E_UPPER_ALIAS, dentry);
Miklos Szeredi55acc662017-07-04 22:03:18 +0200264}
265
266void ovl_dentry_set_upper_alias(struct dentry *dentry)
267{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200268 ovl_dentry_set_flag(OVL_E_UPPER_ALIAS, dentry);
Miklos Szeredi55acc662017-07-04 22:03:18 +0200269}
270
Miklos Szeredia6c60652016-12-16 11:02:56 +0100271bool ovl_redirect_dir(struct super_block *sb)
272{
273 struct ovl_fs *ofs = sb->s_fs_info;
274
Amir Goldstein21a22872017-05-17 00:12:41 +0300275 return ofs->config.redirect_dir && !ofs->noxattr;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100276}
277
278const char *ovl_dentry_get_redirect(struct dentry *dentry)
279{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200280 return OVL_I(d_inode(dentry))->redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100281}
282
283void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
284{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200285 struct ovl_inode *oi = OVL_I(d_inode(dentry));
Miklos Szeredia6c60652016-12-16 11:02:56 +0100286
Miklos Szeredicf31c462017-07-04 22:03:16 +0200287 kfree(oi->redirect);
288 oi->redirect = redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100289}
290
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200291void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
292 struct dentry *lowerdentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100293{
Amir Goldstein695b46e2018-03-15 23:39:01 +0200294 struct inode *realinode = d_inode(upperdentry ?: lowerdentry);
295
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200296 if (upperdentry)
297 OVL_I(inode)->__upperdentry = upperdentry;
298 if (lowerdentry)
Amir Goldstein31747ed2018-01-14 18:35:40 +0200299 OVL_I(inode)->lower = igrab(d_inode(lowerdentry));
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100300
Amir Goldstein695b46e2018-03-15 23:39:01 +0200301 ovl_copyattr(realinode, inode);
302 if (!inode->i_ino)
303 inode->i_ino = realinode->i_ino;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100304}
305
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200306void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100307{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200308 struct inode *upperinode = d_inode(upperdentry);
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200309
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200310 WARN_ON(OVL_I(inode)->__upperdentry);
311
Miklos Szeredi25b77132017-07-04 22:03:16 +0200312 /*
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200313 * Make sure upperdentry is consistent before making it visible
Miklos Szeredi25b77132017-07-04 22:03:16 +0200314 */
315 smp_wmb();
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200316 OVL_I(inode)->__upperdentry = upperdentry;
Amir Goldstein31747ed2018-01-14 18:35:40 +0200317 if (inode_unhashed(inode)) {
Amir Goldstein695b46e2018-03-15 23:39:01 +0200318 if (!inode->i_ino)
319 inode->i_ino = upperinode->i_ino;
Miklos Szeredi25b77132017-07-04 22:03:16 +0200320 inode->i_private = upperinode;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100321 __insert_inode_hash(inode, (unsigned long) upperinode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200322 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100323}
324
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200325void ovl_dentry_version_inc(struct dentry *dentry, bool impurity)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100326{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200327 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100328
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200329 WARN_ON(!inode_is_locked(inode));
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200330 /*
331 * Version is used by readdir code to keep cache consistent. For merge
332 * dirs all changes need to be noted. For non-merge dirs, cache only
333 * contains impure (ones which have been copied up and have origins)
334 * entries, so only need to note changes to impure entries.
335 */
336 if (OVL_TYPE_MERGE(ovl_path_type(dentry)) || impurity)
337 OVL_I(inode)->version++;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100338}
339
340u64 ovl_dentry_version_get(struct dentry *dentry)
341{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200342 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100343
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200344 WARN_ON(!inode_is_locked(inode));
345 return OVL_I(inode)->version;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100346}
347
348bool ovl_is_whiteout(struct dentry *dentry)
349{
350 struct inode *inode = dentry->d_inode;
351
352 return inode && IS_WHITEOUT(inode);
353}
354
355struct file *ovl_path_open(struct path *path, int flags)
356{
357 return dentry_open(path, flags | O_NOATIME, current_cred());
358}
Amir Goldstein39d3d602017-01-17 06:34:56 +0200359
360int ovl_copy_up_start(struct dentry *dentry)
361{
Amir Goldsteina015daf2017-06-21 15:28:51 +0300362 struct ovl_inode *oi = OVL_I(d_inode(dentry));
Amir Goldstein39d3d602017-01-17 06:34:56 +0200363 int err;
364
Amir Goldsteina015daf2017-06-21 15:28:51 +0300365 err = mutex_lock_interruptible(&oi->lock);
Amir Goldstein59be0972017-06-20 15:25:46 +0300366 if (!err && ovl_dentry_has_upper_alias(dentry)) {
Amir Goldsteina015daf2017-06-21 15:28:51 +0300367 err = 1; /* Already copied up */
368 mutex_unlock(&oi->lock);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200369 }
Amir Goldstein39d3d602017-01-17 06:34:56 +0200370
371 return err;
372}
373
374void ovl_copy_up_end(struct dentry *dentry)
375{
Amir Goldsteina015daf2017-06-21 15:28:51 +0300376 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200377}
Amir Goldstein82b749b2017-05-17 00:12:40 +0300378
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300379bool ovl_check_origin_xattr(struct dentry *dentry)
380{
381 int res;
382
383 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
384
385 /* Zero size value means "copied up but origin unknown" */
386 if (res >= 0)
387 return true;
388
389 return false;
390}
391
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300392bool ovl_check_dir_xattr(struct dentry *dentry, const char *name)
393{
394 int res;
395 char val;
396
397 if (!d_is_dir(dentry))
398 return false;
399
400 res = vfs_getxattr(dentry, name, &val, 1);
401 if (res == 1 && val == 'y')
402 return true;
403
404 return false;
405}
406
Amir Goldstein82b749b2017-05-17 00:12:40 +0300407int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
408 const char *name, const void *value, size_t size,
409 int xerr)
410{
411 int err;
412 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
413
414 if (ofs->noxattr)
415 return xerr;
416
417 err = ovl_do_setxattr(upperdentry, name, value, size, 0);
418
419 if (err == -EOPNOTSUPP) {
420 pr_warn("overlayfs: cannot set %s xattr on upper\n", name);
421 ofs->noxattr = true;
422 return xerr;
423 }
424
425 return err;
426}
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300427
428int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
429{
430 int err;
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300431
Miklos Szeredi13c72072017-07-04 22:03:16 +0200432 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300433 return 0;
434
435 /*
436 * Do not fail when upper doesn't support xattrs.
437 * Upper inodes won't have origin nor redirect xattr anyway.
438 */
439 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE,
440 "y", 1, 0);
441 if (!err)
Miklos Szeredi13c72072017-07-04 22:03:16 +0200442 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300443
444 return err;
445}
Miklos Szeredi13c72072017-07-04 22:03:16 +0200446
447void ovl_set_flag(unsigned long flag, struct inode *inode)
448{
449 set_bit(flag, &OVL_I(inode)->flags);
450}
451
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200452void ovl_clear_flag(unsigned long flag, struct inode *inode)
453{
454 clear_bit(flag, &OVL_I(inode)->flags);
455}
456
Miklos Szeredi13c72072017-07-04 22:03:16 +0200457bool ovl_test_flag(unsigned long flag, struct inode *inode)
458{
459 return test_bit(flag, &OVL_I(inode)->flags);
460}
Amir Goldsteinad0af712017-06-21 15:28:32 +0300461
462/**
463 * Caller must hold a reference to inode to prevent it from being freed while
464 * it is marked inuse.
465 */
466bool ovl_inuse_trylock(struct dentry *dentry)
467{
468 struct inode *inode = d_inode(dentry);
469 bool locked = false;
470
471 spin_lock(&inode->i_lock);
472 if (!(inode->i_state & I_OVL_INUSE)) {
473 inode->i_state |= I_OVL_INUSE;
474 locked = true;
475 }
476 spin_unlock(&inode->i_lock);
477
478 return locked;
479}
480
481void ovl_inuse_unlock(struct dentry *dentry)
482{
483 if (dentry) {
484 struct inode *inode = d_inode(dentry);
485
486 spin_lock(&inode->i_lock);
487 WARN_ON(!(inode->i_state & I_OVL_INUSE));
488 inode->i_state &= ~I_OVL_INUSE;
489 spin_unlock(&inode->i_lock);
490 }
491}
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300492
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300493/*
494 * Does this overlay dentry need to be indexed on copy up?
495 */
496bool ovl_need_index(struct dentry *dentry)
497{
498 struct dentry *lower = ovl_dentry_lower(dentry);
499
500 if (!lower || !ovl_indexdir(dentry->d_sb))
501 return false;
502
Amir Goldsteinfbd2d202017-11-22 00:08:21 +0200503 /* Index all files for NFS export and consistency verification */
Amir Goldstein016b7202018-01-11 14:01:08 +0200504 if (ovl_index_all(dentry->d_sb))
Amir Goldsteinfbd2d202017-11-22 00:08:21 +0200505 return true;
506
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300507 /* Index only lower hardlinks on copy up */
508 if (!d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
509 return true;
510
511 return false;
512}
513
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300514/* Caller must hold OVL_I(inode)->lock */
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300515static void ovl_cleanup_index(struct dentry *dentry)
516{
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300517 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
518 struct inode *dir = indexdir->d_inode;
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300519 struct dentry *lowerdentry = ovl_dentry_lower(dentry);
520 struct dentry *upperdentry = ovl_dentry_upper(dentry);
521 struct dentry *index = NULL;
522 struct inode *inode;
523 struct qstr name;
524 int err;
525
526 err = ovl_get_index_name(lowerdentry, &name);
527 if (err)
528 goto fail;
529
530 inode = d_inode(upperdentry);
Amir Goldstein89a17552017-09-26 07:40:37 +0300531 if (!S_ISDIR(inode->i_mode) && inode->i_nlink != 1) {
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300532 pr_warn_ratelimited("overlayfs: cleanup linked index (%pd2, ino=%lu, nlink=%u)\n",
533 upperdentry, inode->i_ino, inode->i_nlink);
534 /*
535 * We either have a bug with persistent union nlink or a lower
536 * hardlink was added while overlay is mounted. Adding a lower
537 * hardlink and then unlinking all overlay hardlinks would drop
538 * overlay nlink to zero before all upper inodes are unlinked.
539 * As a safety measure, when that situation is detected, set
540 * the overlay nlink to the index inode nlink minus one for the
541 * index entry itself.
542 */
543 set_nlink(d_inode(dentry), inode->i_nlink - 1);
544 ovl_set_nlink_upper(dentry);
545 goto out;
546 }
547
548 inode_lock_nested(dir, I_MUTEX_PARENT);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300549 index = lookup_one_len(name.name, indexdir, name.len);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300550 err = PTR_ERR(index);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300551 if (IS_ERR(index)) {
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300552 index = NULL;
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300553 } else if (ovl_index_all(dentry->d_sb)) {
554 /* Whiteout orphan index to block future open by handle */
555 err = ovl_cleanup_and_whiteout(indexdir, dir, index);
556 } else {
557 /* Cleanup orphan index entries */
558 err = ovl_cleanup(dir, index);
559 }
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300560
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300561 inode_unlock(dir);
562 if (err)
563 goto fail;
564
565out:
566 dput(index);
567 return;
568
569fail:
570 pr_err("overlayfs: cleanup index of '%pd2' failed (%i)\n", dentry, err);
571 goto out;
572}
573
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300574/*
575 * Operations that change overlay inode and upper inode nlink need to be
576 * synchronized with copy up for persistent nlink accounting.
577 */
578int ovl_nlink_start(struct dentry *dentry, bool *locked)
579{
580 struct ovl_inode *oi = OVL_I(d_inode(dentry));
581 const struct cred *old_cred;
582 int err;
583
Amir Goldstein89a17552017-09-26 07:40:37 +0300584 if (!d_inode(dentry))
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300585 return 0;
586
587 /*
588 * With inodes index is enabled, we store the union overlay nlink
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300589 * in an xattr on the index inode. When whiting out an indexed lower,
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300590 * we need to decrement the overlay persistent nlink, but before the
591 * first copy up, we have no upper index inode to store the xattr.
592 *
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300593 * As a workaround, before whiteout/rename over an indexed lower,
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300594 * copy up to create the upper index. Creating the upper index will
595 * initialize the overlay nlink, so it could be dropped if unlink
596 * or rename succeeds.
597 *
598 * TODO: implement metadata only index copy up when called with
599 * ovl_copy_up_flags(dentry, O_PATH).
600 */
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300601 if (ovl_need_index(dentry) && !ovl_dentry_has_upper_alias(dentry)) {
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300602 err = ovl_copy_up(dentry);
603 if (err)
604 return err;
605 }
606
607 err = mutex_lock_interruptible(&oi->lock);
608 if (err)
609 return err;
610
Amir Goldstein89a17552017-09-26 07:40:37 +0300611 if (d_is_dir(dentry) || !ovl_test_flag(OVL_INDEX, d_inode(dentry)))
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300612 goto out;
613
614 old_cred = ovl_override_creds(dentry->d_sb);
615 /*
616 * The overlay inode nlink should be incremented/decremented IFF the
617 * upper operation succeeds, along with nlink change of upper inode.
618 * Therefore, before link/unlink/rename, we store the union nlink
619 * value relative to the upper inode nlink in an upper inode xattr.
620 */
621 err = ovl_set_nlink_upper(dentry);
622 revert_creds(old_cred);
623
624out:
625 if (err)
626 mutex_unlock(&oi->lock);
627 else
628 *locked = true;
629
630 return err;
631}
632
633void ovl_nlink_end(struct dentry *dentry, bool locked)
634{
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300635 if (locked) {
636 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) &&
637 d_inode(dentry)->i_nlink == 0) {
638 const struct cred *old_cred;
639
640 old_cred = ovl_override_creds(dentry->d_sb);
641 ovl_cleanup_index(dentry);
642 revert_creds(old_cred);
643 }
644
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300645 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300646 }
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300647}
Amir Goldstein5820dc02017-09-25 16:39:55 +0300648
649int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir)
650{
651 /* Workdir should not be the same as upperdir */
652 if (workdir == upperdir)
653 goto err;
654
655 /* Workdir should not be subdir of upperdir and vice versa */
656 if (lock_rename(workdir, upperdir) != NULL)
657 goto err_unlock;
658
659 return 0;
660
661err_unlock:
662 unlock_rename(workdir, upperdir);
663err:
664 pr_err("overlayfs: failed to lock workdir+upperdir\n");
665 return -EIO;
666}