1
2
3
4
5
6
7
8
9
10#include <linux/fs.h>
11#include <linux/cred.h>
12#include <linux/namei.h>
13#include <linux/xattr.h>
14#include <linux/ratelimit.h>
15#include <linux/mount.h>
16#include <linux/exportfs.h>
17#include "overlayfs.h"
18#include "ovl_entry.h"
19
20struct ovl_lookup_data {
21 struct qstr name;
22 bool is_dir;
23 bool opaque;
24 bool stop;
25 bool last;
26 char *redirect;
27};
28
29static int ovl_check_redirect(struct dentry *dentry, struct ovl_lookup_data *d,
30 size_t prelen, const char *post)
31{
32 int res;
33 char *s, *next, *buf = NULL;
34
35 res = vfs_getxattr(dentry, OVL_XATTR_REDIRECT, NULL, 0);
36 if (res < 0) {
37 if (res == -ENODATA || res == -EOPNOTSUPP)
38 return 0;
39 goto fail;
40 }
41 buf = kzalloc(prelen + res + strlen(post) + 1, GFP_KERNEL);
42 if (!buf)
43 return -ENOMEM;
44
45 if (res == 0)
46 goto invalid;
47
48 res = vfs_getxattr(dentry, OVL_XATTR_REDIRECT, buf, res);
49 if (res < 0)
50 goto fail;
51 if (res == 0)
52 goto invalid;
53 if (buf[0] == '/') {
54 for (s = buf; *s++ == '/'; s = next) {
55 next = strchrnul(s, '/');
56 if (s == next)
57 goto invalid;
58 }
59 } else {
60 if (strchr(buf, '/') != NULL)
61 goto invalid;
62
63 memmove(buf + prelen, buf, res);
64 memcpy(buf, d->name.name, prelen);
65 }
66
67 strcat(buf, post);
68 kfree(d->redirect);
69 d->redirect = buf;
70 d->name.name = d->redirect;
71 d->name.len = strlen(d->redirect);
72
73 return 0;
74
75err_free:
76 kfree(buf);
77 return 0;
78fail:
79 pr_warn_ratelimited("overlayfs: failed to get redirect (%i)\n", res);
80 goto err_free;
81invalid:
82 pr_warn_ratelimited("overlayfs: invalid redirect (%s)\n", buf);
83 goto err_free;
84}
85
86static int ovl_acceptable(void *ctx, struct dentry *dentry)
87{
88 return 1;
89}
90
91static struct ovl_fh *ovl_get_origin_fh(struct dentry *dentry)
92{
93 int res;
94 struct ovl_fh *fh = NULL;
95
96 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
97 if (res < 0) {
98 if (res == -ENODATA || res == -EOPNOTSUPP)
99 return NULL;
100 goto fail;
101 }
102
103 if (res == 0)
104 return NULL;
105
106 fh = kzalloc(res, GFP_KERNEL);
107 if (!fh)
108 return ERR_PTR(-ENOMEM);
109
110 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, fh, res);
111 if (res < 0)
112 goto fail;
113
114 if (res < sizeof(struct ovl_fh) || res < fh->len)
115 goto invalid;
116
117 if (fh->magic != OVL_FH_MAGIC)
118 goto invalid;
119
120
121 if (fh->version > OVL_FH_VERSION || fh->flags & ~OVL_FH_FLAG_ALL)
122 goto out;
123
124
125 if (!(fh->flags & OVL_FH_FLAG_ANY_ENDIAN) &&
126 (fh->flags & OVL_FH_FLAG_BIG_ENDIAN) != OVL_FH_FLAG_CPU_ENDIAN)
127 goto out;
128
129 return fh;
130
131out:
132 kfree(fh);
133 return NULL;
134
135fail:
136 pr_warn_ratelimited("overlayfs: failed to get origin (%i)\n", res);
137 goto out;
138invalid:
139 pr_warn_ratelimited("overlayfs: invalid origin (%*phN)\n", res, fh);
140 goto out;
141}
142
143static struct dentry *ovl_get_origin(struct dentry *dentry,
144 struct vfsmount *mnt)
145{
146 struct dentry *origin = NULL;
147 struct ovl_fh *fh = ovl_get_origin_fh(dentry);
148 int bytes;
149
150 if (IS_ERR_OR_NULL(fh))
151 return (struct dentry *)fh;
152
153
154
155
156
157 if (!uuid_equal(&fh->uuid, &mnt->mnt_sb->s_uuid))
158 goto out;
159
160 bytes = (fh->len - offsetof(struct ovl_fh, fid));
161 origin = exportfs_decode_fh(mnt, (struct fid *)fh->fid,
162 bytes >> 2, (int)fh->type,
163 ovl_acceptable, NULL);
164 if (IS_ERR(origin)) {
165
166 if (origin == ERR_PTR(-ESTALE))
167 origin = NULL;
168 goto out;
169 }
170
171 if (ovl_dentry_weird(origin) ||
172 ((d_inode(origin)->i_mode ^ d_inode(dentry)->i_mode) & S_IFMT))
173 goto invalid;
174
175out:
176 kfree(fh);
177 return origin;
178
179invalid:
180 pr_warn_ratelimited("overlayfs: invalid origin (%pd2)\n", origin);
181 dput(origin);
182 origin = NULL;
183 goto out;
184}
185
186static bool ovl_is_opaquedir(struct dentry *dentry)
187{
188 return ovl_check_dir_xattr(dentry, OVL_XATTR_OPAQUE);
189}
190
191static int ovl_lookup_single(struct dentry *base, struct ovl_lookup_data *d,
192 const char *name, unsigned int namelen,
193 size_t prelen, const char *post,
194 struct dentry **ret)
195{
196 struct dentry *this;
197 int err;
198
199 this = lookup_one_len_unlocked(name, base, namelen);
200 if (IS_ERR(this)) {
201 err = PTR_ERR(this);
202 this = NULL;
203 if (err == -ENOENT || err == -ENAMETOOLONG)
204 goto out;
205 goto out_err;
206 }
207 if (!this->d_inode)
208 goto put_and_out;
209
210 if (ovl_dentry_weird(this)) {
211
212 err = -EREMOTE;
213 goto out_err;
214 }
215 if (ovl_is_whiteout(this)) {
216 d->stop = d->opaque = true;
217 goto put_and_out;
218 }
219 if (!d_can_lookup(this)) {
220 d->stop = true;
221 if (d->is_dir)
222 goto put_and_out;
223 goto out;
224 }
225 d->is_dir = true;
226 if (!d->last && ovl_is_opaquedir(this)) {
227 d->stop = d->opaque = true;
228 goto out;
229 }
230 err = ovl_check_redirect(this, d, prelen, post);
231 if (err)
232 goto out_err;
233out:
234 *ret = this;
235 return 0;
236
237put_and_out:
238 dput(this);
239 this = NULL;
240 goto out;
241
242out_err:
243 dput(this);
244 return err;
245}
246
247static int ovl_lookup_layer(struct dentry *base, struct ovl_lookup_data *d,
248 struct dentry **ret)
249{
250
251 size_t rem = d->name.len - 1;
252 struct dentry *dentry = NULL;
253 int err;
254
255 if (d->name.name[0] != '/')
256 return ovl_lookup_single(base, d, d->name.name, d->name.len,
257 0, "", ret);
258
259 while (!IS_ERR_OR_NULL(base) && d_can_lookup(base)) {
260 const char *s = d->name.name + d->name.len - rem;
261 const char *next = strchrnul(s, '/');
262 size_t thislen = next - s;
263 bool end = !next[0];
264
265
266 if (WARN_ON(s[-1] != '/'))
267 return -EIO;
268
269 err = ovl_lookup_single(base, d, s, thislen,
270 d->name.len - rem, next, &base);
271 dput(dentry);
272 if (err)
273 return err;
274 dentry = base;
275 if (end)
276 break;
277
278 rem -= thislen + 1;
279
280 if (WARN_ON(rem >= d->name.len))
281 return -EIO;
282 }
283 *ret = dentry;
284 return 0;
285}
286
287
288static int ovl_check_origin(struct dentry *upperdentry,
289 struct path *lowerstack, unsigned int numlower,
290 struct path **stackp, unsigned int *ctrp)
291{
292 struct vfsmount *mnt;
293 struct dentry *origin = NULL;
294 int i;
295
296
297 for (i = 0; i < numlower; i++) {
298 mnt = lowerstack[i].mnt;
299 origin = ovl_get_origin(upperdentry, mnt);
300 if (IS_ERR(origin))
301 return PTR_ERR(origin);
302
303 if (origin)
304 break;
305 }
306
307 if (!origin)
308 return 0;
309
310 BUG_ON(*ctrp);
311 if (!*stackp)
312 *stackp = kmalloc(sizeof(struct path), GFP_KERNEL);
313 if (!*stackp) {
314 dput(origin);
315 return -ENOMEM;
316 }
317 **stackp = (struct path) { .dentry = origin, .mnt = mnt };
318 *ctrp = 1;
319
320 return 0;
321}
322
323
324
325
326
327static int ovl_verify_origin_fh(struct dentry *dentry, const struct ovl_fh *fh)
328{
329 struct ovl_fh *ofh = ovl_get_origin_fh(dentry);
330 int err = 0;
331
332 if (!ofh)
333 return -ENODATA;
334
335 if (IS_ERR(ofh))
336 return PTR_ERR(ofh);
337
338 if (fh->len != ofh->len || memcmp(fh, ofh, fh->len))
339 err = -ESTALE;
340
341 kfree(ofh);
342 return err;
343}
344
345
346
347
348
349
350
351
352
353int ovl_verify_origin(struct dentry *dentry, struct vfsmount *mnt,
354 struct dentry *origin, bool is_upper, bool set)
355{
356 struct inode *inode;
357 struct ovl_fh *fh;
358 int err;
359
360 fh = ovl_encode_fh(origin, is_upper);
361 err = PTR_ERR(fh);
362 if (IS_ERR(fh))
363 goto fail;
364
365 err = ovl_verify_origin_fh(dentry, fh);
366 if (set && err == -ENODATA)
367 err = ovl_do_setxattr(dentry, OVL_XATTR_ORIGIN, fh, fh->len, 0);
368 if (err)
369 goto fail;
370
371out:
372 kfree(fh);
373 return err;
374
375fail:
376 inode = d_inode(origin);
377 pr_warn_ratelimited("overlayfs: failed to verify origin (%pd2, ino=%lu, err=%i)\n",
378 origin, inode ? inode->i_ino : 0, err);
379 goto out;
380}
381
382
383
384
385
386
387int ovl_verify_index(struct dentry *index, struct path *lowerstack,
388 unsigned int numlower)
389{
390 struct ovl_fh *fh = NULL;
391 size_t len;
392 struct path origin = { };
393 struct path *stack = &origin;
394 unsigned int ctr = 0;
395 int err;
396
397 if (!d_inode(index))
398 return 0;
399
400
401
402
403
404
405
406
407
408
409
410
411 err = -EINVAL;
412 if (d_is_dir(index) || ovl_is_whiteout(index))
413 goto fail;
414
415 if (index->d_name.len < sizeof(struct ovl_fh)*2)
416 goto fail;
417
418 err = -ENOMEM;
419 len = index->d_name.len / 2;
420 fh = kzalloc(len, GFP_KERNEL);
421 if (!fh)
422 goto fail;
423
424 err = -EINVAL;
425 if (hex2bin((u8 *)fh, index->d_name.name, len) || len != fh->len)
426 goto fail;
427
428 err = ovl_verify_origin_fh(index, fh);
429 if (err)
430 goto fail;
431
432 err = ovl_check_origin(index, lowerstack, numlower, &stack, &ctr);
433 if (!err && !ctr)
434 err = -ESTALE;
435 if (err)
436 goto fail;
437
438
439 if (d_inode(index)->i_nlink == 1 &&
440 ovl_get_nlink(index, origin.dentry, 0) == 0)
441 err = -ENOENT;
442
443 dput(origin.dentry);
444out:
445 kfree(fh);
446 return err;
447
448fail:
449 pr_warn_ratelimited("overlayfs: failed to verify index (%pd2, ftype=%x, err=%i)\n",
450 index, d_inode(index)->i_mode & S_IFMT, err);
451 goto out;
452}
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469int ovl_get_index_name(struct dentry *origin, struct qstr *name)
470{
471 int err;
472 struct ovl_fh *fh;
473 char *n, *s;
474
475 fh = ovl_encode_fh(origin, false);
476 if (IS_ERR(fh))
477 return PTR_ERR(fh);
478
479 err = -ENOMEM;
480 n = kzalloc(fh->len * 2, GFP_KERNEL);
481 if (n) {
482 s = bin2hex(n, fh, fh->len);
483 *name = (struct qstr) QSTR_INIT(n, s - n);
484 err = 0;
485 }
486 kfree(fh);
487
488 return err;
489
490}
491
492static struct dentry *ovl_lookup_index(struct dentry *dentry,
493 struct dentry *upper,
494 struct dentry *origin)
495{
496 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
497 struct dentry *index;
498 struct inode *inode;
499 struct qstr name;
500 int err;
501
502 err = ovl_get_index_name(origin, &name);
503 if (err)
504 return ERR_PTR(err);
505
506 index = lookup_one_len_unlocked(name.name, ofs->indexdir, name.len);
507 if (IS_ERR(index)) {
508 err = PTR_ERR(index);
509 if (err == -ENOENT) {
510 index = NULL;
511 goto out;
512 }
513 pr_warn_ratelimited("overlayfs: failed inode index lookup (ino=%lu, key=%*s, err=%i);\n"
514 "overlayfs: mount with '-o index=off' to disable inodes index.\n",
515 d_inode(origin)->i_ino, name.len, name.name,
516 err);
517 goto out;
518 }
519
520 inode = d_inode(index);
521 if (d_is_negative(index)) {
522 goto out_dput;
523 } else if (upper && d_inode(upper) != inode) {
524 goto out_dput;
525 } else if (ovl_dentry_weird(index) || ovl_is_whiteout(index) ||
526 ((inode->i_mode ^ d_inode(origin)->i_mode) & S_IFMT)) {
527
528
529
530
531
532
533
534 pr_warn_ratelimited("overlayfs: bad index found (index=%pd2, ftype=%x, origin ftype=%x).\n",
535 index, d_inode(index)->i_mode & S_IFMT,
536 d_inode(origin)->i_mode & S_IFMT);
537 goto fail;
538 }
539
540out:
541 kfree(name.name);
542 return index;
543
544out_dput:
545 dput(index);
546 index = NULL;
547 goto out;
548
549fail:
550 dput(index);
551 index = ERR_PTR(-EIO);
552 goto out;
553}
554
555
556
557
558
559int ovl_path_next(int idx, struct dentry *dentry, struct path *path)
560{
561 struct ovl_entry *oe = dentry->d_fsdata;
562
563 BUG_ON(idx < 0);
564 if (idx == 0) {
565 ovl_path_upper(dentry, path);
566 if (path->dentry)
567 return oe->numlower ? 1 : -1;
568 idx++;
569 }
570 BUG_ON(idx > oe->numlower);
571 *path = oe->lowerstack[idx - 1];
572
573 return (idx < oe->numlower) ? idx + 1 : -1;
574}
575
576struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
577 unsigned int flags)
578{
579 struct ovl_entry *oe;
580 const struct cred *old_cred;
581 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
582 struct ovl_entry *poe = dentry->d_parent->d_fsdata;
583 struct ovl_entry *roe = dentry->d_sb->s_root->d_fsdata;
584 struct path *stack = NULL;
585 struct dentry *upperdir, *upperdentry = NULL;
586 struct dentry *index = NULL;
587 unsigned int ctr = 0;
588 struct inode *inode = NULL;
589 bool upperopaque = false;
590 char *upperredirect = NULL;
591 struct dentry *this;
592 unsigned int i;
593 int err;
594 struct ovl_lookup_data d = {
595 .name = dentry->d_name,
596 .is_dir = false,
597 .opaque = false,
598 .stop = false,
599 .last = !poe->numlower,
600 .redirect = NULL,
601 };
602
603 if (dentry->d_name.len > ofs->namelen)
604 return ERR_PTR(-ENAMETOOLONG);
605
606 old_cred = ovl_override_creds(dentry->d_sb);
607 upperdir = ovl_dentry_upper(dentry->d_parent);
608 if (upperdir) {
609 err = ovl_lookup_layer(upperdir, &d, &upperdentry);
610 if (err)
611 goto out;
612
613 if (upperdentry && unlikely(ovl_dentry_remote(upperdentry))) {
614 dput(upperdentry);
615 err = -EREMOTE;
616 goto out;
617 }
618 if (upperdentry && !d.is_dir) {
619 BUG_ON(!d.stop || d.redirect);
620
621
622
623
624
625
626
627
628
629
630 err = ovl_check_origin(upperdentry, roe->lowerstack,
631 roe->numlower, &stack, &ctr);
632 if (err)
633 goto out;
634 }
635
636 if (d.redirect) {
637 err = -ENOMEM;
638 upperredirect = kstrdup(d.redirect, GFP_KERNEL);
639 if (!upperredirect)
640 goto out_put_upper;
641 if (d.redirect[0] == '/')
642 poe = roe;
643 }
644 upperopaque = d.opaque;
645 }
646
647 if (!d.stop && poe->numlower) {
648 err = -ENOMEM;
649 stack = kcalloc(ofs->numlower, sizeof(struct path),
650 GFP_KERNEL);
651 if (!stack)
652 goto out_put_upper;
653 }
654
655 for (i = 0; !d.stop && i < poe->numlower; i++) {
656 struct path lowerpath = poe->lowerstack[i];
657
658 d.last = i == poe->numlower - 1;
659 err = ovl_lookup_layer(lowerpath.dentry, &d, &this);
660 if (err)
661 goto out_put;
662
663 if (!this)
664 continue;
665
666 stack[ctr].dentry = this;
667 stack[ctr].mnt = lowerpath.mnt;
668 ctr++;
669
670 if (d.stop)
671 break;
672
673 if (d.redirect && d.redirect[0] == '/' && poe != roe) {
674 poe = roe;
675
676
677 for (i = 0; i < poe->numlower; i++)
678 if (poe->lowerstack[i].mnt == lowerpath.mnt)
679 break;
680 if (WARN_ON(i == poe->numlower))
681 break;
682 }
683 }
684
685
686 if (ctr && !d.is_dir && ovl_indexdir(dentry->d_sb)) {
687 struct dentry *origin = stack[0].dentry;
688
689 index = ovl_lookup_index(dentry, upperdentry, origin);
690 if (IS_ERR(index)) {
691 err = PTR_ERR(index);
692 index = NULL;
693 goto out_put;
694 }
695 }
696
697 oe = ovl_alloc_entry(ctr);
698 err = -ENOMEM;
699 if (!oe)
700 goto out_put;
701
702 oe->opaque = upperopaque;
703 memcpy(oe->lowerstack, stack, sizeof(struct path) * ctr);
704 dentry->d_fsdata = oe;
705
706 if (upperdentry)
707 ovl_dentry_set_upper_alias(dentry);
708 else if (index)
709 upperdentry = dget(index);
710
711 if (upperdentry || ctr) {
712 inode = ovl_get_inode(dentry, upperdentry, index);
713 err = PTR_ERR(inode);
714 if (IS_ERR(inode))
715 goto out_free_oe;
716
717 OVL_I(inode)->redirect = upperredirect;
718 if (index)
719 ovl_set_flag(OVL_INDEX, inode);
720 }
721
722 revert_creds(old_cred);
723 dput(index);
724 kfree(stack);
725 kfree(d.redirect);
726 d_add(dentry, inode);
727
728 return NULL;
729
730out_free_oe:
731 dentry->d_fsdata = NULL;
732 kfree(oe);
733out_put:
734 dput(index);
735 for (i = 0; i < ctr; i++)
736 dput(stack[i].dentry);
737 kfree(stack);
738out_put_upper:
739 dput(upperdentry);
740 kfree(upperredirect);
741out:
742 kfree(d.redirect);
743 revert_creds(old_cred);
744 return ERR_PTR(err);
745}
746
747bool ovl_lower_positive(struct dentry *dentry)
748{
749 struct ovl_entry *oe = dentry->d_fsdata;
750 struct ovl_entry *poe = dentry->d_parent->d_fsdata;
751 const struct qstr *name = &dentry->d_name;
752 unsigned int i;
753 bool positive = false;
754 bool done = false;
755
756
757
758
759
760 if (!dentry->d_inode)
761 return oe->opaque;
762
763
764 if (!ovl_dentry_upper(dentry))
765 return true;
766
767
768 for (i = 0; !done && !positive && i < poe->numlower; i++) {
769 struct dentry *this;
770 struct dentry *lowerdir = poe->lowerstack[i].dentry;
771
772 this = lookup_one_len_unlocked(name->name, lowerdir,
773 name->len);
774 if (IS_ERR(this)) {
775 switch (PTR_ERR(this)) {
776 case -ENOENT:
777 case -ENAMETOOLONG:
778 break;
779
780 default:
781
782
783
784
785 positive = true;
786 break;
787 }
788 } else {
789 if (this->d_inode) {
790 positive = !ovl_is_whiteout(this);
791 done = true;
792 }
793 dput(this);
794 }
795 }
796
797 return positive;
798}
799