riscv: add ISA extension parsing for Zihintntl
[linux-block.git] / fs / overlayfs / namei.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
bbb1e54d
MS
2/*
3 * Copyright (C) 2011 Novell Inc.
4 * Copyright (C) 2016 Red Hat, Inc.
bbb1e54d
MS
5 */
6
7#include <linux/fs.h>
5b825c3a 8#include <linux/cred.h>
9ee60ce2 9#include <linux/ctype.h>
bbb1e54d
MS
10#include <linux/namei.h>
11#include <linux/xattr.h>
02b69b28 12#include <linux/ratelimit.h>
a9d01957
AG
13#include <linux/mount.h>
14#include <linux/exportfs.h>
bbb1e54d 15#include "overlayfs.h"
bbb1e54d 16
5436ab0a
AG
17#include "../internal.h" /* for vfs_path_lookup */
18
e28edc46 19struct ovl_lookup_data {
146d62e5 20 struct super_block *sb;
dad7017a 21 struct vfsmount *mnt;
e28edc46
MS
22 struct qstr name;
23 bool is_dir;
24 bool opaque;
25 bool stop;
26 bool last;
02b69b28 27 char *redirect;
bf070890 28 int metacopy;
5436ab0a
AG
29 /* Referring to last redirect xattr */
30 bool absolute_redirect;
e28edc46 31};
bbb1e54d 32
2d343087 33static int ovl_check_redirect(const struct path *path, struct ovl_lookup_data *d,
02b69b28
MS
34 size_t prelen, const char *post)
35{
36 int res;
0a2d0d3f 37 char *buf;
610afc0b 38 struct ovl_fs *ofs = OVL_FS(d->sb);
02b69b28 39
5436ab0a 40 d->absolute_redirect = false;
dad7017a 41 buf = ovl_get_redirect_xattr(ofs, path, prelen + strlen(post));
0a2d0d3f
VG
42 if (IS_ERR_OR_NULL(buf))
43 return PTR_ERR(buf);
02b69b28 44
02b69b28 45 if (buf[0] == '/') {
5436ab0a 46 d->absolute_redirect = true;
3ec9b3fa
AG
47 /*
48 * One of the ancestor path elements in an absolute path
49 * lookup in ovl_lookup_layer() could have been opaque and
50 * that will stop further lookup in lower layers (d->stop=true)
4f119628 51 * But we have found an absolute redirect in descendant path
3ec9b3fa
AG
52 * element and that should force continue lookup in lower
53 * layers (reset d->stop).
54 */
55 d->stop = false;
02b69b28 56 } else {
0a2d0d3f 57 res = strlen(buf) + 1;
02b69b28
MS
58 memmove(buf + prelen, buf, res);
59 memcpy(buf, d->name.name, prelen);
60 }
61
62 strcat(buf, post);
63 kfree(d->redirect);
64 d->redirect = buf;
65 d->name.name = d->redirect;
66 d->name.len = strlen(d->redirect);
67
68 return 0;
02b69b28
MS
69}
70
a9d01957
AG
71static int ovl_acceptable(void *ctx, struct dentry *dentry)
72{
e8f9e5b7
AG
73 /*
74 * A non-dir origin may be disconnected, which is fine, because
75 * we only need it for its unique inode number.
76 */
77 if (!d_is_dir(dentry))
78 return 1;
79
80 /* Don't decode a deleted empty directory */
81 if (d_unhashed(dentry))
82 return 0;
83
84 /* Check if directory belongs to the layer we are decoding from */
85 return is_subdir(dentry, ((struct vfsmount *)ctx)->mnt_root);
a9d01957
AG
86}
87
2e1a5328
AG
88/*
89 * Check validity of an overlay file handle buffer.
90 *
91 * Return 0 for a valid file handle.
92 * Return -ENODATA for "origin unknown".
93 * Return <0 for an invalid file handle.
94 */
cbe7fba8 95int ovl_check_fb_len(struct ovl_fb *fb, int fb_len)
2e1a5328 96{
cbe7fba8 97 if (fb_len < sizeof(struct ovl_fb) || fb_len < fb->len)
2e1a5328
AG
98 return -EINVAL;
99
cbe7fba8 100 if (fb->magic != OVL_FH_MAGIC)
2e1a5328
AG
101 return -EINVAL;
102
103 /* Treat larger version and unknown flags as "origin unknown" */
cbe7fba8 104 if (fb->version > OVL_FH_VERSION || fb->flags & ~OVL_FH_FLAG_ALL)
2e1a5328
AG
105 return -ENODATA;
106
107 /* Treat endianness mismatch as "origin unknown" */
cbe7fba8
AG
108 if (!(fb->flags & OVL_FH_FLAG_ANY_ENDIAN) &&
109 (fb->flags & OVL_FH_FLAG_BIG_ENDIAN) != OVL_FH_FLAG_CPU_ENDIAN)
2e1a5328
AG
110 return -ENODATA;
111
112 return 0;
113}
114
dad7017a 115static struct ovl_fh *ovl_get_fh(struct ovl_fs *ofs, struct dentry *upperdentry,
43d193f8 116 enum ovl_xattr ox)
a9d01957 117{
2e1a5328 118 int res, err;
a9d01957 119 struct ovl_fh *fh = NULL;
a9d01957 120
dad7017a 121 res = ovl_getxattr_upper(ofs, upperdentry, ox, NULL, 0);
a9d01957
AG
122 if (res < 0) {
123 if (res == -ENODATA || res == -EOPNOTSUPP)
124 return NULL;
125 goto fail;
126 }
127 /* Zero size value means "copied up but origin unknown" */
128 if (res == 0)
129 return NULL;
130
cbe7fba8 131 fh = kzalloc(res + OVL_FH_WIRE_OFFSET, GFP_KERNEL);
a9d01957
AG
132 if (!fh)
133 return ERR_PTR(-ENOMEM);
134
dad7017a 135 res = ovl_getxattr_upper(ofs, upperdentry, ox, fh->buf, res);
a9d01957
AG
136 if (res < 0)
137 goto fail;
138
cbe7fba8 139 err = ovl_check_fb_len(&fh->fb, res);
2e1a5328
AG
140 if (err < 0) {
141 if (err == -ENODATA)
142 goto out;
a9d01957 143 goto invalid;
2e1a5328 144 }
a9d01957 145
8b88a2e6
AG
146 return fh;
147
148out:
149 kfree(fh);
150 return NULL;
151
152fail:
1bd0a3ae 153 pr_warn_ratelimited("failed to get origin (%i)\n", res);
8b88a2e6
AG
154 goto out;
155invalid:
1bd0a3ae 156 pr_warn_ratelimited("invalid origin (%*phN)\n", res, fh);
8b88a2e6
AG
157 goto out;
158}
159
1cdb0cb6
PT
160struct dentry *ovl_decode_real_fh(struct ovl_fs *ofs, struct ovl_fh *fh,
161 struct vfsmount *mnt, bool connected)
8b88a2e6 162{
e8f9e5b7 163 struct dentry *real;
8b88a2e6
AG
164 int bytes;
165
c846af05
MS
166 if (!capable(CAP_DAC_READ_SEARCH))
167 return NULL;
168
a9d01957
AG
169 /*
170 * Make sure that the stored uuid matches the uuid of the lower
171 * layer where file handle will be decoded.
5830fb6b 172 * In case of uuid=off option just make sure that stored uuid is null.
a9d01957 173 */
b0504bfe
AG
174 if (ovl_origin_uuid(ofs) ?
175 !uuid_equal(&fh->fb.uuid, &mnt->mnt_sb->s_uuid) :
176 !uuid_is_null(&fh->fb.uuid))
2e1a5328 177 return NULL;
a9d01957 178
cbe7fba8
AG
179 bytes = (fh->fb.len - offsetof(struct ovl_fb, fid));
180 real = exportfs_decode_fh(mnt, (struct fid *)fh->fb.fid,
181 bytes >> 2, (int)fh->fb.type,
8a22efa1 182 connected ? ovl_acceptable : NULL, mnt);
e8f9e5b7
AG
183 if (IS_ERR(real)) {
184 /*
185 * Treat stale file handle to lower file as "origin unknown".
186 * upper file handle could become stale when upper file is
187 * unlinked and this information is needed to handle stale
188 * index entries correctly.
189 */
190 if (real == ERR_PTR(-ESTALE) &&
cbe7fba8 191 !(fh->fb.flags & OVL_FH_FLAG_PATH_UPPER))
e8f9e5b7
AG
192 real = NULL;
193 return real;
a9d01957
AG
194 }
195
e8f9e5b7
AG
196 if (ovl_dentry_weird(real)) {
197 dput(real);
2e1a5328
AG
198 return NULL;
199 }
a9d01957 200
e8f9e5b7 201 return real;
a9d01957
AG
202}
203
2d343087 204static bool ovl_is_opaquedir(struct ovl_fs *ofs, const struct path *path)
ee1d6d37 205{
dad7017a 206 return ovl_path_check_dir_xattr(ofs, path, OVL_XATTR_OPAQUE);
ee1d6d37
AG
207}
208
ba9ea771
CB
209static struct dentry *ovl_lookup_positive_unlocked(struct ovl_lookup_data *d,
210 const char *name,
1434a65e
CX
211 struct dentry *base, int len,
212 bool drop_negative)
213{
4609e1f1 214 struct dentry *ret = lookup_one_unlocked(mnt_idmap(d->mnt), name, base, len);
1434a65e
CX
215
216 if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) {
217 if (drop_negative && ret->d_lockref.count == 1) {
218 spin_lock(&ret->d_lock);
219 /* Recheck condition under lock */
220 if (d_is_negative(ret) && ret->d_lockref.count == 1)
221 __d_drop(ret);
222 spin_unlock(&ret->d_lock);
223 }
224 dput(ret);
225 ret = ERR_PTR(-ENOENT);
226 }
227 return ret;
228}
229
e28edc46
MS
230static int ovl_lookup_single(struct dentry *base, struct ovl_lookup_data *d,
231 const char *name, unsigned int namelen,
02b69b28 232 size_t prelen, const char *post,
1434a65e 233 struct dentry **ret, bool drop_negative)
e28edc46
MS
234{
235 struct dentry *this;
dad7017a 236 struct path path;
e28edc46 237 int err;
102b0d11 238 bool last_element = !post[0];
e28edc46 239
ba9ea771 240 this = ovl_lookup_positive_unlocked(d, name, base, namelen, drop_negative);
e28edc46
MS
241 if (IS_ERR(this)) {
242 err = PTR_ERR(this);
243 this = NULL;
244 if (err == -ENOENT || err == -ENAMETOOLONG)
245 goto out;
246 goto out_err;
247 }
e28edc46
MS
248
249 if (ovl_dentry_weird(this)) {
250 /* Don't support traversing automounts and other weirdness */
251 err = -EREMOTE;
252 goto out_err;
253 }
bc8df7a3
AL
254
255 path.dentry = this;
256 path.mnt = d->mnt;
257 if (ovl_path_is_whiteout(OVL_FS(d->sb), &path)) {
e28edc46
MS
258 d->stop = d->opaque = true;
259 goto put_and_out;
260 }
9d3dfea3
VG
261 /*
262 * This dentry should be a regular file if previous layer lookup
263 * found a metacopy dentry.
264 */
265 if (last_element && d->metacopy && !d_is_reg(this)) {
e28edc46 266 d->stop = true;
9d3dfea3
VG
267 goto put_and_out;
268 }
dad7017a 269
9d3dfea3
VG
270 if (!d_can_lookup(this)) {
271 if (d->is_dir || !last_element) {
272 d->stop = true;
e28edc46 273 goto put_and_out;
9d3dfea3 274 }
bf070890 275 err = ovl_check_metacopy_xattr(OVL_FS(d->sb), &path, NULL);
9d3dfea3
VG
276 if (err < 0)
277 goto out_err;
3a291774 278
9d3dfea3
VG
279 d->metacopy = err;
280 d->stop = !d->metacopy;
b8a8824c
VG
281 if (!d->metacopy || d->last)
282 goto out;
0618a816 283 } else {
146d62e5
AG
284 if (ovl_lookup_trap_inode(d->sb, this)) {
285 /* Caught in a trap of overlapping layers */
286 err = -ELOOP;
287 goto out_err;
288 }
289
102b0d11 290 if (last_element)
0618a816
VG
291 d->is_dir = true;
292 if (d->last)
293 goto out;
294
dad7017a 295 if (ovl_is_opaquedir(OVL_FS(d->sb), &path)) {
0618a816
VG
296 d->stop = true;
297 if (last_element)
298 d->opaque = true;
299 goto out;
300 }
e28edc46 301 }
dad7017a 302 err = ovl_check_redirect(&path, d, prelen, post);
02b69b28
MS
303 if (err)
304 goto out_err;
e28edc46
MS
305out:
306 *ret = this;
307 return 0;
308
309put_and_out:
310 dput(this);
311 this = NULL;
312 goto out;
313
314out_err:
315 dput(this);
316 return err;
317}
318
319static int ovl_lookup_layer(struct dentry *base, struct ovl_lookup_data *d,
1434a65e 320 struct dentry **ret, bool drop_negative)
e28edc46 321{
4c7d0c9c
AG
322 /* Counting down from the end, since the prefix can change */
323 size_t rem = d->name.len - 1;
02b69b28
MS
324 struct dentry *dentry = NULL;
325 int err;
326
4c7d0c9c 327 if (d->name.name[0] != '/')
02b69b28 328 return ovl_lookup_single(base, d, d->name.name, d->name.len,
1434a65e 329 0, "", ret, drop_negative);
02b69b28 330
4c7d0c9c
AG
331 while (!IS_ERR_OR_NULL(base) && d_can_lookup(base)) {
332 const char *s = d->name.name + d->name.len - rem;
02b69b28 333 const char *next = strchrnul(s, '/');
4c7d0c9c
AG
334 size_t thislen = next - s;
335 bool end = !next[0];
02b69b28 336
4c7d0c9c
AG
337 /* Verify we did not go off the rails */
338 if (WARN_ON(s[-1] != '/'))
02b69b28
MS
339 return -EIO;
340
4c7d0c9c 341 err = ovl_lookup_single(base, d, s, thislen,
1434a65e
CX
342 d->name.len - rem, next, &base,
343 drop_negative);
02b69b28
MS
344 dput(dentry);
345 if (err)
346 return err;
347 dentry = base;
4c7d0c9c
AG
348 if (end)
349 break;
350
351 rem -= thislen + 1;
352
353 if (WARN_ON(rem >= d->name.len))
354 return -EIO;
02b69b28
MS
355 }
356 *ret = dentry;
357 return 0;
e28edc46
MS
358}
359
5436ab0a
AG
360static int ovl_lookup_data_layer(struct dentry *dentry, const char *redirect,
361 const struct ovl_layer *layer,
362 struct path *datapath)
363{
364 int err;
365
366 err = vfs_path_lookup(layer->mnt->mnt_root, layer->mnt, redirect,
367 LOOKUP_BENEATH | LOOKUP_NO_SYMLINKS | LOOKUP_NO_XDEV,
368 datapath);
369 pr_debug("lookup lowerdata (%pd2, redirect=\"%s\", layer=%d, err=%i)\n",
370 dentry, redirect, layer->idx, err);
371
372 if (err)
373 return err;
374
375 err = -EREMOTE;
376 if (ovl_dentry_weird(datapath->dentry))
377 goto out_path_put;
378
379 err = -ENOENT;
380 /* Only regular file is acceptable as lower data */
381 if (!d_is_reg(datapath->dentry))
382 goto out_path_put;
383
384 return 0;
385
386out_path_put:
387 path_put(datapath);
388
389 return err;
390}
391
392/* Lookup in data-only layers by absolute redirect to layer root */
393static int ovl_lookup_data_layers(struct dentry *dentry, const char *redirect,
394 struct ovl_path *lowerdata)
395{
396 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
397 const struct ovl_layer *layer;
398 struct path datapath;
399 int err = -ENOENT;
400 int i;
401
402 layer = &ofs->layers[ofs->numlayer - ofs->numdatalayer];
403 for (i = 0; i < ofs->numdatalayer; i++, layer++) {
404 err = ovl_lookup_data_layer(dentry, redirect, layer, &datapath);
405 if (!err) {
406 mntput(datapath.mnt);
407 lowerdata->dentry = datapath.dentry;
408 lowerdata->layer = layer;
409 return 0;
410 }
411 }
412
413 return err;
414}
a9d01957 415
8a22efa1 416int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected,
f941866f 417 struct dentry *upperdentry, struct ovl_path **stackp)
a9d01957 418{
f7d3daca
AG
419 struct dentry *origin = NULL;
420 int i;
a9d01957 421
37ebf056 422 for (i = 1; i <= ovl_numlowerlayer(ofs); i++) {
7e63c87f
AG
423 /*
424 * If lower fs uuid is not unique among lower fs we cannot match
425 * fh->uuid to layer.
426 */
94375f9d
AG
427 if (ofs->layers[i].fsid &&
428 ofs->layers[i].fs->bad_uuid)
7e63c87f
AG
429 continue;
430
1cdb0cb6 431 origin = ovl_decode_real_fh(ofs, fh, ofs->layers[i].mnt,
8a22efa1 432 connected);
f7d3daca
AG
433 if (origin)
434 break;
435 }
436
437 if (!origin)
2e1a5328
AG
438 return -ESTALE;
439 else if (IS_ERR(origin))
440 return PTR_ERR(origin);
441
bc8df7a3 442 if (upperdentry && !ovl_upper_is_whiteout(ofs, upperdentry) &&
6e3e2c43 443 inode_wrong_type(d_inode(upperdentry), d_inode(origin)->i_mode))
2e1a5328 444 goto invalid;
a9d01957 445
415543d5 446 if (!*stackp)
b9343632 447 *stackp = kmalloc(sizeof(struct ovl_path), GFP_KERNEL);
a9d01957
AG
448 if (!*stackp) {
449 dput(origin);
450 return -ENOMEM;
451 }
1eff1a1d
AG
452 **stackp = (struct ovl_path){
453 .dentry = origin,
94375f9d 454 .layer = &ofs->layers[i]
1eff1a1d 455 };
a9d01957
AG
456
457 return 0;
2e1a5328
AG
458
459invalid:
1bd0a3ae 460 pr_warn_ratelimited("invalid origin (%pd2, ftype=%x, origin ftype=%x).\n",
2e1a5328
AG
461 upperdentry, d_inode(upperdentry)->i_mode & S_IFMT,
462 d_inode(origin)->i_mode & S_IFMT);
463 dput(origin);
ffb24e3c 464 return -ESTALE;
2e1a5328
AG
465}
466
1eff1a1d 467static int ovl_check_origin(struct ovl_fs *ofs, struct dentry *upperdentry,
d78a0dcf 468 struct ovl_path **stackp)
2e1a5328 469{
610afc0b 470 struct ovl_fh *fh = ovl_get_fh(ofs, upperdentry, OVL_XATTR_ORIGIN);
2e1a5328
AG
471 int err;
472
473 if (IS_ERR_OR_NULL(fh))
474 return PTR_ERR(fh);
475
8a22efa1 476 err = ovl_check_origin_fh(ofs, fh, false, upperdentry, stackp);
2e1a5328
AG
477 kfree(fh);
478
479 if (err) {
480 if (err == -ESTALE)
481 return 0;
482 return err;
483 }
484
2e1a5328 485 return 0;
a9d01957
AG
486}
487
8b88a2e6 488/*
05122443 489 * Verify that @fh matches the file handle stored in xattr @name.
8b88a2e6
AG
490 * Return 0 on match, -ESTALE on mismatch, < 0 on error.
491 */
610afc0b 492static int ovl_verify_fh(struct ovl_fs *ofs, struct dentry *dentry,
43d193f8 493 enum ovl_xattr ox, const struct ovl_fh *fh)
8b88a2e6 494{
43d193f8 495 struct ovl_fh *ofh = ovl_get_fh(ofs, dentry, ox);
8b88a2e6
AG
496 int err = 0;
497
498 if (!ofh)
499 return -ENODATA;
500
501 if (IS_ERR(ofh))
502 return PTR_ERR(ofh);
503
cbe7fba8 504 if (fh->fb.len != ofh->fb.len || memcmp(&fh->fb, &ofh->fb, fh->fb.len))
8b88a2e6
AG
505 err = -ESTALE;
506
507 kfree(ofh);
508 return err;
509}
510
5b02bfc1
AG
511int ovl_verify_set_fh(struct ovl_fs *ofs, struct dentry *dentry,
512 enum ovl_xattr ox, const struct ovl_fh *fh,
513 bool is_upper, bool set)
514{
515 int err;
516
517 err = ovl_verify_fh(ofs, dentry, ox, fh);
518 if (set && err == -ENODATA)
519 err = ovl_setxattr(ofs, dentry, ox, fh->buf, fh->fb.len);
520
521 return err;
522}
523
8b88a2e6 524/*
05122443 525 * Verify that @real dentry matches the file handle stored in xattr @name.
8b88a2e6 526 *
05122443
AG
527 * If @set is true and there is no stored file handle, encode @real and store
528 * file handle in xattr @name.
8b88a2e6 529 *
05122443 530 * Return 0 on match, -ESTALE on mismatch, -ENODATA on no xattr, < 0 on error.
8b88a2e6 531 */
5b02bfc1
AG
532int ovl_verify_origin_xattr(struct ovl_fs *ofs, struct dentry *dentry,
533 enum ovl_xattr ox, struct dentry *real,
534 bool is_upper, bool set)
8b88a2e6
AG
535{
536 struct inode *inode;
537 struct ovl_fh *fh;
538 int err;
539
1cdb0cb6 540 fh = ovl_encode_real_fh(ofs, real, is_upper);
8b88a2e6 541 err = PTR_ERR(fh);
babf4770
AG
542 if (IS_ERR(fh)) {
543 fh = NULL;
8b88a2e6 544 goto fail;
babf4770 545 }
8b88a2e6 546
5b02bfc1 547 err = ovl_verify_set_fh(ofs, dentry, ox, fh, is_upper, set);
8b88a2e6
AG
548 if (err)
549 goto fail;
550
551out:
552 kfree(fh);
553 return err;
554
555fail:
05122443 556 inode = d_inode(real);
1bd0a3ae 557 pr_warn_ratelimited("failed to verify %s (%pd2, ino=%lu, err=%i)\n",
05122443
AG
558 is_upper ? "upper" : "origin", real,
559 inode ? inode->i_ino : 0, err);
8b88a2e6
AG
560 goto out;
561}
562
5b02bfc1 563
e8f9e5b7 564/* Get upper dentry from index */
8ea28765
AG
565struct dentry *ovl_index_upper(struct ovl_fs *ofs, struct dentry *index,
566 bool connected)
e8f9e5b7
AG
567{
568 struct ovl_fh *fh;
569 struct dentry *upper;
570
571 if (!d_is_dir(index))
572 return dget(index);
573
610afc0b 574 fh = ovl_get_fh(ofs, index, OVL_XATTR_UPPER);
e8f9e5b7
AG
575 if (IS_ERR_OR_NULL(fh))
576 return ERR_CAST(fh);
577
8ea28765 578 upper = ovl_decode_real_fh(ofs, fh, ovl_upper_mnt(ofs), connected);
e8f9e5b7
AG
579 kfree(fh);
580
581 if (IS_ERR_OR_NULL(upper))
582 return upper ?: ERR_PTR(-ESTALE);
583
584 if (!d_is_dir(upper)) {
1bd0a3ae 585 pr_warn_ratelimited("invalid index upper (%pd2, upper=%pd2).\n",
e8f9e5b7
AG
586 index, upper);
587 dput(upper);
588 return ERR_PTR(-EIO);
589 }
590
591 return upper;
592}
593
415543d5
AG
594/*
595 * Verify that an index entry name matches the origin file handle stored in
596 * OVL_XATTR_ORIGIN and that origin file handle can be decoded to lower path.
597 * Return 0 on match, -ESTALE on mismatch or stale origin, < 0 on error.
598 */
1eff1a1d 599int ovl_verify_index(struct ovl_fs *ofs, struct dentry *index)
415543d5
AG
600{
601 struct ovl_fh *fh = NULL;
602 size_t len;
b9343632
CR
603 struct ovl_path origin = { };
604 struct ovl_path *stack = &origin;
e8f9e5b7 605 struct dentry *upper = NULL;
415543d5
AG
606 int err;
607
608 if (!d_inode(index))
609 return 0;
610
fa0096e3 611 err = -EINVAL;
cbe7fba8 612 if (index->d_name.len < sizeof(struct ovl_fb)*2)
415543d5
AG
613 goto fail;
614
615 err = -ENOMEM;
616 len = index->d_name.len / 2;
cbe7fba8 617 fh = kzalloc(len + OVL_FH_WIRE_OFFSET, GFP_KERNEL);
415543d5
AG
618 if (!fh)
619 goto fail;
620
621 err = -EINVAL;
cbe7fba8 622 if (hex2bin(fh->buf, index->d_name.name, len))
2e1a5328
AG
623 goto fail;
624
cbe7fba8 625 err = ovl_check_fb_len(&fh->fb, len);
2e1a5328 626 if (err)
415543d5
AG
627 goto fail;
628
7db25d36
AG
629 /*
630 * Whiteout index entries are used as an indication that an exported
631 * overlay file handle should be treated as stale (i.e. after unlink
632 * of the overlay inode). These entries contain no origin xattr.
633 */
634 if (ovl_is_whiteout(index))
635 goto out;
636
e8f9e5b7
AG
637 /*
638 * Verifying directory index entries are not stale is expensive, so
639 * only verify stale dir index if NFS export is enabled.
640 */
641 if (d_is_dir(index) && !ofs->config.nfs_export)
642 goto out;
643
644 /*
645 * Directory index entries should have 'upper' xattr pointing to the
646 * real upper dir. Non-dir index entries are hardlinks to the upper
647 * real inode. For non-dir index, we can read the copy up origin xattr
648 * directly from the index dentry, but for dir index we first need to
649 * decode the upper directory.
650 */
8ea28765 651 upper = ovl_index_upper(ofs, index, false);
e8f9e5b7
AG
652 if (IS_ERR_OR_NULL(upper)) {
653 err = PTR_ERR(upper);
24f0b172
AG
654 /*
655 * Directory index entries with no 'upper' xattr need to be
656 * removed. When dir index entry has a stale 'upper' xattr,
657 * we assume that upper dir was removed and we treat the dir
658 * index as orphan entry that needs to be whited out.
659 */
660 if (err == -ESTALE)
661 goto orphan;
662 else if (!err)
e8f9e5b7 663 err = -ESTALE;
415543d5 664 goto fail;
e8f9e5b7 665 }
415543d5 666
610afc0b 667 err = ovl_verify_fh(ofs, upper, OVL_XATTR_ORIGIN, fh);
e8f9e5b7 668 dput(upper);
415543d5
AG
669 if (err)
670 goto fail;
671
e8f9e5b7
AG
672 /* Check if non-dir index is orphan and don't warn before cleaning it */
673 if (!d_is_dir(index) && d_inode(index)->i_nlink == 1) {
8a22efa1 674 err = ovl_check_origin_fh(ofs, fh, false, index, &stack);
e8f9e5b7
AG
675 if (err)
676 goto fail;
677
610afc0b 678 if (ovl_get_nlink(ofs, origin.dentry, index, 0) == 0)
24f0b172 679 goto orphan;
e8f9e5b7 680 }
caf70cb2 681
415543d5 682out:
e8f9e5b7 683 dput(origin.dentry);
415543d5
AG
684 kfree(fh);
685 return err;
686
687fail:
1bd0a3ae 688 pr_warn_ratelimited("failed to verify index (%pd2, ftype=%x, err=%i)\n",
61b67471 689 index, d_inode(index)->i_mode & S_IFMT, err);
415543d5 690 goto out;
24f0b172
AG
691
692orphan:
1bd0a3ae 693 pr_warn_ratelimited("orphan index entry (%pd2, ftype=%x, nlink=%u)\n",
24f0b172
AG
694 index, d_inode(index)->i_mode & S_IFMT,
695 d_inode(index)->i_nlink);
696 err = -ENOENT;
697 goto out;
415543d5
AG
698}
699
5b02bfc1 700int ovl_get_index_name_fh(const struct ovl_fh *fh, struct qstr *name)
91ffe7be
AG
701{
702 char *n, *s;
703
cbe7fba8 704 n = kcalloc(fh->fb.len, 2, GFP_KERNEL);
91ffe7be
AG
705 if (!n)
706 return -ENOMEM;
707
cbe7fba8 708 s = bin2hex(n, fh->buf, fh->fb.len);
91ffe7be
AG
709 *name = (struct qstr) QSTR_INIT(n, s - n);
710
711 return 0;
712
713}
714
359f392c
AG
715/*
716 * Lookup in indexdir for the index entry of a lower real inode or a copy up
717 * origin inode. The index entry name is the hex representation of the lower
718 * inode file handle.
719 *
720 * If the index dentry in negative, then either no lower aliases have been
721 * copied up yet, or aliases have been copied up in older kernels and are
722 * not indexed.
723 *
724 * If the index dentry for a copy up origin inode is positive, but points
725 * to an inode different than the upper inode, then either the upper inode
726 * has been copied up and not indexed or it was indexed, but since then
4f119628 727 * index dir was cleared. Either way, that index cannot be used to identify
359f392c
AG
728 * the overlay inode.
729 */
1cdb0cb6
PT
730int ovl_get_index_name(struct ovl_fs *ofs, struct dentry *origin,
731 struct qstr *name)
359f392c 732{
359f392c 733 struct ovl_fh *fh;
91ffe7be 734 int err;
359f392c 735
1cdb0cb6 736 fh = ovl_encode_real_fh(ofs, origin, false);
359f392c
AG
737 if (IS_ERR(fh))
738 return PTR_ERR(fh);
739
91ffe7be 740 err = ovl_get_index_name_fh(fh, name);
359f392c 741
91ffe7be 742 kfree(fh);
359f392c 743 return err;
91ffe7be
AG
744}
745
746/* Lookup index by file handle for NFS export */
747struct dentry *ovl_get_index_fh(struct ovl_fs *ofs, struct ovl_fh *fh)
748{
749 struct dentry *index;
750 struct qstr name;
751 int err;
752
753 err = ovl_get_index_name_fh(fh, &name);
754 if (err)
755 return ERR_PTR(err);
756
6c2d4798 757 index = lookup_positive_unlocked(name.name, ofs->indexdir, name.len);
91ffe7be
AG
758 kfree(name.name);
759 if (IS_ERR(index)) {
760 if (PTR_ERR(index) == -ENOENT)
761 index = NULL;
762 return index;
763 }
764
6c2d4798 765 if (ovl_is_whiteout(index))
91ffe7be
AG
766 err = -ESTALE;
767 else if (ovl_dentry_weird(index))
768 err = -EIO;
769 else
770 return index;
359f392c 771
91ffe7be
AG
772 dput(index);
773 return ERR_PTR(err);
359f392c
AG
774}
775
06170154
AG
776struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper,
777 struct dentry *origin, bool verify)
359f392c 778{
359f392c
AG
779 struct dentry *index;
780 struct inode *inode;
781 struct qstr name;
ad1d615c 782 bool is_dir = d_is_dir(origin);
359f392c
AG
783 int err;
784
1cdb0cb6 785 err = ovl_get_index_name(ofs, origin, &name);
359f392c
AG
786 if (err)
787 return ERR_PTR(err);
788
4609e1f1 789 index = lookup_one_positive_unlocked(ovl_upper_mnt_idmap(ofs), name.name,
ba9ea771 790 ofs->indexdir, name.len);
359f392c 791 if (IS_ERR(index)) {
e0082a0f 792 err = PTR_ERR(index);
7937a56f
AG
793 if (err == -ENOENT) {
794 index = NULL;
795 goto out;
796 }
1bd0a3ae 797 pr_warn_ratelimited("failed inode index lookup (ino=%lu, key=%.*s, err=%i);\n"
359f392c
AG
798 "overlayfs: mount with '-o index=off' to disable inodes index.\n",
799 d_inode(origin)->i_ino, name.len, name.name,
800 err);
801 goto out;
802 }
803
0e082555 804 inode = d_inode(index);
6c2d4798 805 if (ovl_is_whiteout(index) && !verify) {
06170154
AG
806 /*
807 * When index lookup is called with !verify for decoding an
808 * overlay file handle, a whiteout index implies that decode
809 * should treat file handle as stale and no need to print a
810 * warning about it.
811 */
812 dput(index);
813 index = ERR_PTR(-ESTALE);
814 goto out;
0e082555 815 } else if (ovl_dentry_weird(index) || ovl_is_whiteout(index) ||
6e3e2c43 816 inode_wrong_type(inode, d_inode(origin)->i_mode)) {
0e082555
AG
817 /*
818 * Index should always be of the same file type as origin
819 * except for the case of a whiteout index. A whiteout
820 * index should only exist if all lower aliases have been
821 * unlinked, which means that finding a lower origin on lookup
822 * whose index is a whiteout should be treated as an error.
823 */
1bd0a3ae 824 pr_warn_ratelimited("bad index found (index=%pd2, ftype=%x, origin ftype=%x).\n",
0e082555
AG
825 index, d_inode(index)->i_mode & S_IFMT,
826 d_inode(origin)->i_mode & S_IFMT);
359f392c 827 goto fail;
06170154 828 } else if (is_dir && verify) {
ad1d615c 829 if (!upper) {
1bd0a3ae 830 pr_warn_ratelimited("suspected uncovered redirected dir found (origin=%pd2, index=%pd2).\n",
ad1d615c
AG
831 origin, index);
832 goto fail;
833 }
359f392c 834
ad1d615c 835 /* Verify that dir index 'upper' xattr points to upper dir */
610afc0b 836 err = ovl_verify_upper(ofs, index, upper, false);
ad1d615c
AG
837 if (err) {
838 if (err == -ESTALE) {
1bd0a3ae 839 pr_warn_ratelimited("suspected multiply redirected dir found (upper=%pd2, origin=%pd2, index=%pd2).\n",
ad1d615c
AG
840 upper, origin, index);
841 }
842 goto fail;
843 }
844 } else if (upper && d_inode(upper) != inode) {
845 goto out_dput;
846 }
359f392c
AG
847out:
848 kfree(name.name);
849 return index;
850
6eaf0111
AG
851out_dput:
852 dput(index);
853 index = NULL;
854 goto out;
855
359f392c
AG
856fail:
857 dput(index);
858 index = ERR_PTR(-EIO);
859 goto out;
860}
861
bbb1e54d
MS
862/*
863 * Returns next layer in stack starting from top.
864 * Returns -1 if this is the last layer.
865 */
866int ovl_path_next(int idx, struct dentry *dentry, struct path *path)
867{
a6ff2bc0 868 struct ovl_entry *oe = OVL_E(dentry);
5522c9c7 869 struct ovl_path *lowerstack = ovl_lowerstack(oe);
bbb1e54d
MS
870
871 BUG_ON(idx < 0);
872 if (idx == 0) {
873 ovl_path_upper(dentry, path);
874 if (path->dentry)
5522c9c7 875 return ovl_numlower(oe) ? 1 : -1;
bbb1e54d
MS
876 idx++;
877 }
5522c9c7
AG
878 BUG_ON(idx > ovl_numlower(oe));
879 path->dentry = lowerstack[idx - 1].dentry;
880 path->mnt = lowerstack[idx - 1].layer->mnt;
bbb1e54d 881
5522c9c7 882 return (idx < ovl_numlower(oe)) ? idx + 1 : -1;
bbb1e54d
MS
883}
884
9678e630 885/* Fix missing 'origin' xattr */
610afc0b
MS
886static int ovl_fix_origin(struct ovl_fs *ofs, struct dentry *dentry,
887 struct dentry *lower, struct dentry *upper)
9678e630 888{
5b02bfc1 889 const struct ovl_fh *fh;
9678e630
AG
890 int err;
891
610afc0b 892 if (ovl_check_origin_xattr(ofs, upper))
9678e630
AG
893 return 0;
894
5b02bfc1
AG
895 fh = ovl_get_origin_fh(ofs, lower);
896 if (IS_ERR(fh))
897 return PTR_ERR(fh);
898
9678e630
AG
899 err = ovl_want_write(dentry);
900 if (err)
5b02bfc1 901 goto out;
9678e630 902
5b02bfc1 903 err = ovl_set_origin_fh(ofs, fh, upper);
9678e630
AG
904 if (!err)
905 err = ovl_set_impure(dentry->d_parent, upper->d_parent);
906
907 ovl_drop_write(dentry);
5b02bfc1
AG
908out:
909 kfree(fh);
9678e630
AG
910 return err;
911}
912
184996e9
AL
913static int ovl_maybe_validate_verity(struct dentry *dentry)
914{
f01d0889 915 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
184996e9
AL
916 struct inode *inode = d_inode(dentry);
917 struct path datapath, metapath;
918 int err;
919
920 if (!ofs->config.verity_mode ||
921 !ovl_is_metacopy_dentry(dentry) ||
922 ovl_test_flag(OVL_VERIFIED_DIGEST, inode))
923 return 0;
924
925 if (!ovl_test_flag(OVL_HAS_DIGEST, inode)) {
926 if (ofs->config.verity_mode == OVL_VERITY_REQUIRE) {
927 pr_warn_ratelimited("metacopy file '%pd' has no digest specified\n",
928 dentry);
929 return -EIO;
930 }
931 return 0;
932 }
933
934 ovl_path_lowerdata(dentry, &datapath);
935 if (!datapath.dentry)
936 return -EIO;
937
938 ovl_path_real(dentry, &metapath);
939 if (!metapath.dentry)
940 return -EIO;
941
942 err = ovl_inode_lock_interruptible(inode);
943 if (err)
944 return err;
945
946 if (!ovl_test_flag(OVL_VERIFIED_DIGEST, inode)) {
947 const struct cred *old_cred;
948
949 old_cred = ovl_override_creds(dentry->d_sb);
950
951 err = ovl_validate_verity(ofs, &metapath, &datapath);
952 if (err == 0)
953 ovl_set_flag(OVL_VERIFIED_DIGEST, inode);
954
955 revert_creds(old_cred);
956 }
957
958 ovl_inode_unlock(inode);
959
960 return err;
961}
962
42dd69ae 963/* Lazy lookup of lowerdata */
184996e9 964static int ovl_maybe_lookup_lowerdata(struct dentry *dentry)
42dd69ae
AG
965{
966 struct inode *inode = d_inode(dentry);
967 const char *redirect = ovl_lowerdata_redirect(inode);
968 struct ovl_path datapath = {};
969 const struct cred *old_cred;
970 int err;
971
972 if (!redirect || ovl_dentry_lowerdata(dentry))
973 return 0;
974
975 if (redirect[0] != '/')
976 return -EIO;
977
978 err = ovl_inode_lock_interruptible(inode);
979 if (err)
980 return err;
981
982 err = 0;
983 /* Someone got here before us? */
984 if (ovl_dentry_lowerdata(dentry))
985 goto out;
986
987 old_cred = ovl_override_creds(dentry->d_sb);
988 err = ovl_lookup_data_layers(dentry, redirect, &datapath);
989 revert_creds(old_cred);
990 if (err)
991 goto out_err;
992
993 err = ovl_dentry_set_lowerdata(dentry, &datapath);
994 if (err)
995 goto out_err;
996
997out:
998 ovl_inode_unlock(inode);
999 dput(datapath.dentry);
1000
1001 return err;
1002
1003out_err:
1004 pr_warn_ratelimited("lazy lowerdata lookup failed (%pd2, err=%i)\n",
1005 dentry, err);
1006 goto out;
1007}
1008
184996e9
AL
1009int ovl_verify_lowerdata(struct dentry *dentry)
1010{
1011 int err;
1012
1013 err = ovl_maybe_lookup_lowerdata(dentry);
1014 if (err)
1015 return err;
1016
1017 return ovl_maybe_validate_verity(dentry);
1018}
1019
bbb1e54d
MS
1020struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
1021 unsigned int flags)
1022{
0af950f5 1023 struct ovl_entry *oe = NULL;
bbb1e54d 1024 const struct cred *old_cred;
f01d0889 1025 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
a6ff2bc0
AG
1026 struct ovl_entry *poe = OVL_E(dentry->d_parent);
1027 struct ovl_entry *roe = OVL_E(dentry->d_sb->s_root);
9d3dfea3 1028 struct ovl_path *stack = NULL, *origin_path = NULL;
bbb1e54d 1029 struct dentry *upperdir, *upperdentry = NULL;
ad1d615c 1030 struct dentry *origin = NULL;
359f392c 1031 struct dentry *index = NULL;
bbb1e54d
MS
1032 unsigned int ctr = 0;
1033 struct inode *inode = NULL;
1034 bool upperopaque = false;
02b69b28 1035 char *upperredirect = NULL;
bbb1e54d
MS
1036 struct dentry *this;
1037 unsigned int i;
1038 int err;
6815f479 1039 bool uppermetacopy = false;
184996e9 1040 int metacopy_size = 0;
e28edc46 1041 struct ovl_lookup_data d = {
146d62e5 1042 .sb = dentry->d_sb,
e28edc46
MS
1043 .name = dentry->d_name,
1044 .is_dir = false,
1045 .opaque = false,
1046 .stop = false,
af5f2396 1047 .last = ovl_redirect_follow(ofs) ? false : !ovl_numlower(poe),
02b69b28 1048 .redirect = NULL,
bf070890 1049 .metacopy = 0,
e28edc46 1050 };
bbb1e54d 1051
6b2d5fe4
MS
1052 if (dentry->d_name.len > ofs->namelen)
1053 return ERR_PTR(-ENAMETOOLONG);
1054
bbb1e54d 1055 old_cred = ovl_override_creds(dentry->d_sb);
09d8b586 1056 upperdir = ovl_dentry_upper(dentry->d_parent);
bbb1e54d 1057 if (upperdir) {
dad7017a 1058 d.mnt = ovl_upper_mnt(ofs);
1434a65e 1059 err = ovl_lookup_layer(upperdir, &d, &upperdentry, true);
e28edc46 1060 if (err)
bbb1e54d
MS
1061 goto out;
1062
bccece1e 1063 if (upperdentry && upperdentry->d_flags & DCACHE_OP_REAL) {
e28edc46
MS
1064 dput(upperdentry);
1065 err = -EREMOTE;
1066 goto out;
bbb1e54d 1067 }
a9d01957 1068 if (upperdentry && !d.is_dir) {
f7d3daca
AG
1069 /*
1070 * Lookup copy up origin by decoding origin file handle.
1071 * We may get a disconnected dentry, which is fine,
1072 * because we only need to hold the origin inode in
1073 * cache and use its inode number. We may even get a
1074 * connected dentry, that is not under any of the lower
1075 * layers root. That is also fine for using it's inode
1076 * number - it's the same as if we held a reference
1077 * to a dentry in lower layer that was moved under us.
1078 */
d78a0dcf 1079 err = ovl_check_origin(ofs, upperdentry, &origin_path);
a9d01957 1080 if (err)
5455f92b 1081 goto out_put_upper;
9d3dfea3
VG
1082
1083 if (d.metacopy)
6815f479 1084 uppermetacopy = true;
184996e9 1085 metacopy_size = d.metacopy;
a9d01957 1086 }
02b69b28
MS
1087
1088 if (d.redirect) {
0ce5cdc9 1089 err = -ENOMEM;
02b69b28
MS
1090 upperredirect = kstrdup(d.redirect, GFP_KERNEL);
1091 if (!upperredirect)
1092 goto out_put_upper;
1093 if (d.redirect[0] == '/')
c22205d0 1094 poe = roe;
02b69b28 1095 }
e28edc46 1096 upperopaque = d.opaque;
bbb1e54d
MS
1097 }
1098
5522c9c7 1099 if (!d.stop && ovl_numlower(poe)) {
bbb1e54d 1100 err = -ENOMEM;
163db0da 1101 stack = ovl_stack_alloc(ofs->numlayer - 1);
bbb1e54d
MS
1102 if (!stack)
1103 goto out_put_upper;
1104 }
1105
5522c9c7
AG
1106 for (i = 0; !d.stop && i < ovl_numlower(poe); i++) {
1107 struct ovl_path lower = ovl_lowerstack(poe)[i];
bbb1e54d 1108
af5f2396 1109 if (!ovl_redirect_follow(ofs))
5522c9c7 1110 d.last = i == ovl_numlower(poe) - 1;
5436ab0a 1111 else if (d.is_dir || !ofs->numdatalayer)
5522c9c7 1112 d.last = lower.layer->idx == ovl_numlower(roe);
452061fd 1113
dad7017a 1114 d.mnt = lower.layer->mnt;
1434a65e 1115 err = ovl_lookup_layer(lower.dentry, &d, &this, false);
e28edc46 1116 if (err)
bbb1e54d 1117 goto out_put;
6b2d5fe4 1118
bbb1e54d
MS
1119 if (!this)
1120 continue;
bbb1e54d 1121
6815f479 1122 if ((uppermetacopy || d.metacopy) && !ofs->config.metacopy) {
eaab1d45 1123 dput(this);
6815f479
VG
1124 err = -EPERM;
1125 pr_warn_ratelimited("refusing to follow metacopy origin for (%pd2)\n", dentry);
1126 goto out_put;
1127 }
1128
9678e630
AG
1129 /*
1130 * If no origin fh is stored in upper of a merge dir, store fh
1131 * of lower dir and set upper parent "impure".
1132 */
9d3dfea3 1133 if (upperdentry && !ctr && !ofs->noxattr && d.is_dir) {
610afc0b 1134 err = ovl_fix_origin(ofs, dentry, this, upperdentry);
9678e630
AG
1135 if (err) {
1136 dput(this);
1137 goto out_put;
1138 }
1139 }
1140
37b12916
AG
1141 /*
1142 * When "verify_lower" feature is enabled, do not merge with a
ad1d615c
AG
1143 * lower dir that does not match a stored origin xattr. In any
1144 * case, only verified origin is used for index lookup.
9d3dfea3
VG
1145 *
1146 * For non-dir dentry, if index=on, then ensure origin
1147 * matches the dentry found using path based lookup,
1148 * otherwise error out.
37b12916 1149 */
9d3dfea3
VG
1150 if (upperdentry && !ctr &&
1151 ((d.is_dir && ovl_verify_lower(dentry->d_sb)) ||
1152 (!d.is_dir && ofs->config.index && origin_path))) {
610afc0b 1153 err = ovl_verify_origin(ofs, upperdentry, this, false);
37b12916
AG
1154 if (err) {
1155 dput(this);
9d3dfea3
VG
1156 if (d.is_dir)
1157 break;
1158 goto out_put;
37b12916 1159 }
ad1d615c 1160 origin = this;
37b12916
AG
1161 }
1162
184996e9
AL
1163 if (!upperdentry && !d.is_dir && !ctr && d.metacopy)
1164 metacopy_size = d.metacopy;
1165
21d8d66a
VG
1166 if (d.metacopy && ctr) {
1167 /*
1168 * Do not store intermediate metacopy dentries in
1169 * lower chain, except top most lower metacopy dentry.
1170 * Continue the loop so that if there is an absolute
1171 * redirect on this dentry, poe can be reset to roe.
1172 */
1173 dput(this);
1174 this = NULL;
1175 } else {
1176 stack[ctr].dentry = this;
1177 stack[ctr].layer = lower.layer;
1178 ctr++;
1179 }
02b69b28 1180
438c84c2
MS
1181 /*
1182 * Following redirects can have security consequences: it's like
1183 * a symlink into the lower layer without the permission checks.
1184 * This is only a problem if the upper layer is untrusted (e.g
1185 * comes from an USB drive). This can allow a non-readable file
1186 * or directory to become readable.
1187 *
1188 * Only following redirects when redirects are enabled disables
1189 * this attack vector when not necessary.
1190 */
1191 err = -EPERM;
af5f2396 1192 if (d.redirect && !ovl_redirect_follow(ofs)) {
1bd0a3ae 1193 pr_warn_ratelimited("refusing to follow redirect for (%pd2)\n",
f8167817 1194 dentry);
438c84c2
MS
1195 goto out_put;
1196 }
1197
d1fe96c0
VG
1198 if (d.stop)
1199 break;
1200
c22205d0
AG
1201 if (d.redirect && d.redirect[0] == '/' && poe != roe) {
1202 poe = roe;
02b69b28 1203 /* Find the current layer on the root dentry */
d583ed7d 1204 i = lower.layer->idx - 1;
02b69b28 1205 }
bbb1e54d
MS
1206 }
1207
42dd69ae 1208 /* Defer lookup of lowerdata in data-only layers to first access */
5436ab0a 1209 if (d.metacopy && ctr && ofs->numdatalayer && d.absolute_redirect) {
bf070890 1210 d.metacopy = 0;
42dd69ae 1211 ctr++;
5436ab0a
AG
1212 }
1213
6815f479
VG
1214 /*
1215 * For regular non-metacopy upper dentries, there is no lower
1216 * path based lookup, hence ctr will be zero. If a dentry is found
1217 * using ORIGIN xattr on upper, install it in stack.
1218 *
1219 * For metacopy dentry, path based lookup will find lower dentries.
1220 * Just make sure a corresponding data dentry has been found.
1221 */
1222 if (d.metacopy || (uppermetacopy && !ctr)) {
0a8d0b64
KL
1223 pr_warn_ratelimited("metacopy with no lower data found - abort lookup (%pd2)\n",
1224 dentry);
6815f479
VG
1225 err = -EIO;
1226 goto out_put;
9d3dfea3
VG
1227 } else if (!d.is_dir && upperdentry && !ctr && origin_path) {
1228 if (WARN_ON(stack != NULL)) {
1229 err = -EIO;
1230 goto out_put;
1231 }
1232 stack = origin_path;
1233 ctr = 1;
59fb2013 1234 origin = origin_path->dentry;
9d3dfea3
VG
1235 origin_path = NULL;
1236 }
1237
ad1d615c 1238 /*
59fb2013 1239 * Always lookup index if there is no-upperdentry.
9d3dfea3 1240 *
59fb2013
VG
1241 * For the case of upperdentry, we have set origin by now if it
1242 * needed to be set. There are basically three cases.
1243 *
1244 * For directories, lookup index by lower inode and verify it matches
1245 * upper inode. We only trust dir index if we verified that lower dir
1246 * matches origin, otherwise dir index entries may be inconsistent
1247 * and we ignore them.
1248 *
1249 * For regular upper, we already set origin if upper had ORIGIN
1250 * xattr. There is no verification though as there is no path
1251 * based dentry lookup in lower in this case.
1252 *
1253 * For metacopy upper, we set a verified origin already if index
1254 * is enabled and if upper had an ORIGIN xattr.
9d3dfea3 1255 *
ad1d615c 1256 */
59fb2013 1257 if (!upperdentry && ctr)
ad1d615c 1258 origin = stack[0].dentry;
359f392c 1259
ad1d615c
AG
1260 if (origin && ovl_indexdir(dentry->d_sb) &&
1261 (!d.is_dir || ovl_index_all(dentry->d_sb))) {
06170154 1262 index = ovl_lookup_index(ofs, upperdentry, origin, true);
359f392c
AG
1263 if (IS_ERR(index)) {
1264 err = PTR_ERR(index);
1265 index = NULL;
1266 goto out_put;
1267 }
1268 }
1269
0af950f5
AG
1270 if (ctr) {
1271 oe = ovl_alloc_entry(ctr);
1272 err = -ENOMEM;
1273 if (!oe)
1274 goto out_put;
bbb1e54d 1275
0af950f5
AG
1276 ovl_stack_cpy(ovl_lowerstack(oe), stack, ctr);
1277 }
bbb1e54d 1278
c62520a8
AG
1279 if (upperopaque)
1280 ovl_dentry_set_opaque(dentry);
1281
55acc661
MS
1282 if (upperdentry)
1283 ovl_dentry_set_upper_alias(dentry);
0a2d0d3f 1284 else if (index) {
dad7017a
CB
1285 struct path upperpath = {
1286 .dentry = upperdentry = dget(index),
1287 .mnt = ovl_upper_mnt(ofs),
1288 };
1289
cf4ef780
SG
1290 /*
1291 * It's safe to assign upperredirect here: the previous
1292 * assignment of happens only if upperdentry is non-NULL, and
1293 * this one only if upperdentry is NULL.
1294 */
dad7017a 1295 upperredirect = ovl_get_redirect_xattr(ofs, &upperpath, 0);
0a2d0d3f
VG
1296 if (IS_ERR(upperredirect)) {
1297 err = PTR_ERR(upperredirect);
1298 upperredirect = NULL;
1299 goto out_free_oe;
1300 }
bf070890 1301 err = ovl_check_metacopy_xattr(ofs, &upperpath, NULL);
4518dfcf
AG
1302 if (err < 0)
1303 goto out_free_oe;
1304 uppermetacopy = err;
184996e9 1305 metacopy_size = err;
0a2d0d3f 1306 }
359f392c 1307
e6d2ebdd 1308 if (upperdentry || ctr) {
ac6a52eb
VG
1309 struct ovl_inode_params oip = {
1310 .upperdentry = upperdentry,
0af950f5 1311 .oe = oe,
ac6a52eb 1312 .index = index,
9cec54c8 1313 .redirect = upperredirect,
ac6a52eb
VG
1314 };
1315
2b21da92
AG
1316 /* Store lowerdata redirect for lazy lookup */
1317 if (ctr > 1 && !d.is_dir && !stack[ctr - 1].dentry) {
1318 oip.lowerdata_redirect = d.redirect;
1319 d.redirect = NULL;
1320 }
ac6a52eb 1321 inode = ovl_get_inode(dentry->d_sb, &oip);
b9ac5c27
MS
1322 err = PTR_ERR(inode);
1323 if (IS_ERR(inode))
bbb1e54d 1324 goto out_free_oe;
28166ab3
VG
1325 if (upperdentry && !uppermetacopy)
1326 ovl_set_flag(OVL_UPPERDATA, inode);
184996e9
AL
1327
1328 if (metacopy_size > OVL_METACOPY_MIN_SIZE)
1329 ovl_set_flag(OVL_HAS_DIGEST, inode);
bbb1e54d
MS
1330 }
1331
0af950f5 1332 ovl_dentry_init_reval(dentry, upperdentry, OVL_I_E(inode));
f4288844 1333
bbb1e54d 1334 revert_creds(old_cred);
9d3dfea3
VG
1335 if (origin_path) {
1336 dput(origin_path->dentry);
1337 kfree(origin_path);
1338 }
359f392c 1339 dput(index);
163db0da 1340 ovl_stack_free(stack, ctr);
02b69b28 1341 kfree(d.redirect);
829c28be 1342 return d_splice_alias(inode, dentry);
bbb1e54d
MS
1343
1344out_free_oe:
163db0da 1345 ovl_free_entry(oe);
bbb1e54d 1346out_put:
359f392c 1347 dput(index);
163db0da 1348 ovl_stack_free(stack, ctr);
bbb1e54d 1349out_put_upper:
9d3dfea3
VG
1350 if (origin_path) {
1351 dput(origin_path->dentry);
1352 kfree(origin_path);
1353 }
bbb1e54d 1354 dput(upperdentry);
02b69b28 1355 kfree(upperredirect);
bbb1e54d 1356out:
02b69b28 1357 kfree(d.redirect);
bbb1e54d
MS
1358 revert_creds(old_cred);
1359 return ERR_PTR(err);
1360}
1361
1362bool ovl_lower_positive(struct dentry *dentry)
1363{
a6ff2bc0 1364 struct ovl_entry *poe = OVL_E(dentry->d_parent);
bbb1e54d 1365 const struct qstr *name = &dentry->d_name;
6d0a8a90 1366 const struct cred *old_cred;
bbb1e54d
MS
1367 unsigned int i;
1368 bool positive = false;
1369 bool done = false;
1370
1371 /*
1372 * If dentry is negative, then lower is positive iff this is a
1373 * whiteout.
1374 */
1375 if (!dentry->d_inode)
c62520a8 1376 return ovl_dentry_is_opaque(dentry);
bbb1e54d
MS
1377
1378 /* Negative upper -> positive lower */
09d8b586 1379 if (!ovl_dentry_upper(dentry))
bbb1e54d
MS
1380 return true;
1381
6d0a8a90 1382 old_cred = ovl_override_creds(dentry->d_sb);
bbb1e54d 1383 /* Positive upper -> have to look up lower to see whether it exists */
5522c9c7 1384 for (i = 0; !done && !positive && i < ovl_numlower(poe); i++) {
bbb1e54d 1385 struct dentry *this;
5522c9c7 1386 struct ovl_path *parentpath = &ovl_lowerstack(poe)[i];
bbb1e54d 1387
5522c9c7
AG
1388 this = lookup_one_positive_unlocked(
1389 mnt_idmap(parentpath->layer->mnt),
1390 name->name, parentpath->dentry, name->len);
bbb1e54d
MS
1391 if (IS_ERR(this)) {
1392 switch (PTR_ERR(this)) {
1393 case -ENOENT:
1394 case -ENAMETOOLONG:
1395 break;
1396
1397 default:
1398 /*
1399 * Assume something is there, we just couldn't
1400 * access it.
1401 */
1402 positive = true;
1403 break;
1404 }
1405 } else {
bc8df7a3
AL
1406 struct path path = {
1407 .dentry = this,
1408 .mnt = parentpath->layer->mnt,
1409 };
1410 positive = !ovl_path_is_whiteout(OVL_FS(dentry->d_sb), &path);
6c2d4798 1411 done = true;
bbb1e54d
MS
1412 dput(this);
1413 }
1414 }
6d0a8a90 1415 revert_creds(old_cred);
bbb1e54d
MS
1416
1417 return positive;
1418}