blob: 277a55c8299a2976d29c0c664b8f08371d36dc49 [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>
Ingo Molnar5b825c32017-02-02 17:54:15 +010011#include <linux/cred.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010012#include <linux/namei.h>
13#include <linux/xattr.h>
Miklos Szeredi02b69b22016-12-16 11:02:56 +010014#include <linux/ratelimit.h>
Amir Goldsteina9d01952017-04-30 14:46:31 +030015#include <linux/mount.h>
16#include <linux/exportfs.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010017#include "overlayfs.h"
18#include "ovl_entry.h"
19
Miklos Szeredie28edc42016-12-16 11:02:56 +010020struct ovl_lookup_data {
21 struct qstr name;
22 bool is_dir;
23 bool opaque;
24 bool stop;
25 bool last;
Miklos Szeredi02b69b22016-12-16 11:02:56 +010026 char *redirect;
Miklos Szeredie28edc42016-12-16 11:02:56 +010027};
Miklos Szeredibbb1e542016-12-16 11:02:56 +010028
Miklos Szeredi02b69b22016-12-16 11:02:56 +010029static 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_TEMPORARY);
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
Amir Goldsteina9d01952017-04-30 14:46:31 +030086static int ovl_acceptable(void *ctx, struct dentry *dentry)
87{
88 return 1;
89}
90
91static struct dentry *ovl_get_origin(struct dentry *dentry,
92 struct vfsmount *mnt)
93{
94 int res;
95 struct ovl_fh *fh = NULL;
96 struct dentry *origin = NULL;
97 int bytes;
98
99 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0);
100 if (res < 0) {
101 if (res == -ENODATA || res == -EOPNOTSUPP)
102 return NULL;
103 goto fail;
104 }
105 /* Zero size value means "copied up but origin unknown" */
106 if (res == 0)
107 return NULL;
108
109 fh = kzalloc(res, GFP_TEMPORARY);
110 if (!fh)
111 return ERR_PTR(-ENOMEM);
112
113 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, fh, res);
114 if (res < 0)
115 goto fail;
116
117 if (res < sizeof(struct ovl_fh) || res < fh->len)
118 goto invalid;
119
120 if (fh->magic != OVL_FH_MAGIC)
121 goto invalid;
122
123 /* Treat larger version and unknown flags as "origin unknown" */
124 if (fh->version > OVL_FH_VERSION || fh->flags & ~OVL_FH_FLAG_ALL)
125 goto out;
126
127 /* Treat endianness mismatch as "origin unknown" */
128 if (!(fh->flags & OVL_FH_FLAG_ANY_ENDIAN) &&
129 (fh->flags & OVL_FH_FLAG_BIG_ENDIAN) != OVL_FH_FLAG_CPU_ENDIAN)
130 goto out;
131
132 bytes = (fh->len - offsetof(struct ovl_fh, fid));
133
134 /*
135 * Make sure that the stored uuid matches the uuid of the lower
136 * layer where file handle will be decoded.
137 */
Christoph Hellwig85787092017-05-10 15:06:33 +0200138 if (!uuid_equal(&fh->uuid, &mnt->mnt_sb->s_uuid))
Amir Goldsteina9d01952017-04-30 14:46:31 +0300139 goto out;
140
141 origin = exportfs_decode_fh(mnt, (struct fid *)fh->fid,
142 bytes >> 2, (int)fh->type,
143 ovl_acceptable, NULL);
144 if (IS_ERR(origin)) {
145 /* Treat stale file handle as "origin unknown" */
146 if (origin == ERR_PTR(-ESTALE))
147 origin = NULL;
148 goto out;
149 }
150
151 if (ovl_dentry_weird(origin) ||
152 ((d_inode(origin)->i_mode ^ d_inode(dentry)->i_mode) & S_IFMT)) {
153 dput(origin);
154 origin = NULL;
155 goto invalid;
156 }
157
158out:
159 kfree(fh);
160 return origin;
161
162fail:
163 pr_warn_ratelimited("overlayfs: failed to get origin (%i)\n", res);
164 goto out;
165invalid:
166 pr_warn_ratelimited("overlayfs: invalid origin (%*phN)\n", res, fh);
167 goto out;
168}
169
Amir Goldsteinee1d6d372017-05-11 16:42:26 +0300170static bool ovl_is_opaquedir(struct dentry *dentry)
171{
172 return ovl_check_dir_xattr(dentry, OVL_XATTR_OPAQUE);
173}
174
Miklos Szeredie28edc42016-12-16 11:02:56 +0100175static int ovl_lookup_single(struct dentry *base, struct ovl_lookup_data *d,
176 const char *name, unsigned int namelen,
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100177 size_t prelen, const char *post,
Miklos Szeredie28edc42016-12-16 11:02:56 +0100178 struct dentry **ret)
179{
180 struct dentry *this;
181 int err;
182
183 this = lookup_one_len_unlocked(name, base, namelen);
184 if (IS_ERR(this)) {
185 err = PTR_ERR(this);
186 this = NULL;
187 if (err == -ENOENT || err == -ENAMETOOLONG)
188 goto out;
189 goto out_err;
190 }
191 if (!this->d_inode)
192 goto put_and_out;
193
194 if (ovl_dentry_weird(this)) {
195 /* Don't support traversing automounts and other weirdness */
196 err = -EREMOTE;
197 goto out_err;
198 }
199 if (ovl_is_whiteout(this)) {
200 d->stop = d->opaque = true;
201 goto put_and_out;
202 }
203 if (!d_can_lookup(this)) {
204 d->stop = true;
205 if (d->is_dir)
206 goto put_and_out;
207 goto out;
208 }
209 d->is_dir = true;
210 if (!d->last && ovl_is_opaquedir(this)) {
211 d->stop = d->opaque = true;
212 goto out;
213 }
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100214 err = ovl_check_redirect(this, d, prelen, post);
215 if (err)
216 goto out_err;
Miklos Szeredie28edc42016-12-16 11:02:56 +0100217out:
218 *ret = this;
219 return 0;
220
221put_and_out:
222 dput(this);
223 this = NULL;
224 goto out;
225
226out_err:
227 dput(this);
228 return err;
229}
230
231static int ovl_lookup_layer(struct dentry *base, struct ovl_lookup_data *d,
232 struct dentry **ret)
233{
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100234 /* Counting down from the end, since the prefix can change */
235 size_t rem = d->name.len - 1;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100236 struct dentry *dentry = NULL;
237 int err;
238
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100239 if (d->name.name[0] != '/')
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100240 return ovl_lookup_single(base, d, d->name.name, d->name.len,
241 0, "", ret);
242
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100243 while (!IS_ERR_OR_NULL(base) && d_can_lookup(base)) {
244 const char *s = d->name.name + d->name.len - rem;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100245 const char *next = strchrnul(s, '/');
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100246 size_t thislen = next - s;
247 bool end = !next[0];
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100248
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100249 /* Verify we did not go off the rails */
250 if (WARN_ON(s[-1] != '/'))
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100251 return -EIO;
252
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100253 err = ovl_lookup_single(base, d, s, thislen,
254 d->name.len - rem, next, &base);
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100255 dput(dentry);
256 if (err)
257 return err;
258 dentry = base;
Amir Goldstein4c7d0c92017-01-18 15:19:54 +0100259 if (end)
260 break;
261
262 rem -= thislen + 1;
263
264 if (WARN_ON(rem >= d->name.len))
265 return -EIO;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100266 }
267 *ret = dentry;
268 return 0;
Miklos Szeredie28edc42016-12-16 11:02:56 +0100269}
270
Amir Goldsteina9d01952017-04-30 14:46:31 +0300271
272static int ovl_check_origin(struct dentry *dentry, struct dentry *upperdentry,
273 struct path **stackp, unsigned int *ctrp)
274{
275 struct super_block *same_sb = ovl_same_sb(dentry->d_sb);
276 struct ovl_entry *roe = dentry->d_sb->s_root->d_fsdata;
277 struct vfsmount *mnt;
278 struct dentry *origin;
279
280 if (!same_sb || !roe->numlower)
281 return 0;
282
283 /*
284 * Since all layers are on the same fs, we use the first layer for
285 * decoding the file handle. We may get a disconnected dentry,
286 * which is fine, because we only need to hold the origin inode in
287 * cache and use its inode number. We may even get a connected dentry,
288 * that is not under the first layer's root. That is also fine for
289 * using it's inode number - it's the same as if we held a reference
290 * to a dentry in first layer that was moved under us.
291 */
292 mnt = roe->lowerstack[0].mnt;
293
294 origin = ovl_get_origin(upperdentry, mnt);
295 if (IS_ERR_OR_NULL(origin))
296 return PTR_ERR(origin);
297
298 BUG_ON(*stackp || *ctrp);
299 *stackp = kmalloc(sizeof(struct path), GFP_TEMPORARY);
300 if (!*stackp) {
301 dput(origin);
302 return -ENOMEM;
303 }
304 **stackp = (struct path) { .dentry = origin, .mnt = mnt };
305 *ctrp = 1;
306
307 return 0;
308}
309
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100310/*
311 * Returns next layer in stack starting from top.
312 * Returns -1 if this is the last layer.
313 */
314int ovl_path_next(int idx, struct dentry *dentry, struct path *path)
315{
316 struct ovl_entry *oe = dentry->d_fsdata;
317
318 BUG_ON(idx < 0);
319 if (idx == 0) {
320 ovl_path_upper(dentry, path);
321 if (path->dentry)
322 return oe->numlower ? 1 : -1;
323 idx++;
324 }
325 BUG_ON(idx > oe->numlower);
326 *path = oe->lowerstack[idx - 1];
327
328 return (idx < oe->numlower) ? idx + 1 : -1;
329}
330
331struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
332 unsigned int flags)
333{
334 struct ovl_entry *oe;
335 const struct cred *old_cred;
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100336 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100337 struct ovl_entry *poe = dentry->d_parent->d_fsdata;
Amir Goldsteinc22205d2017-04-26 23:40:52 +0300338 struct ovl_entry *roe = dentry->d_sb->s_root->d_fsdata;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100339 struct path *stack = NULL;
340 struct dentry *upperdir, *upperdentry = NULL;
341 unsigned int ctr = 0;
342 struct inode *inode = NULL;
343 bool upperopaque = false;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100344 char *upperredirect = NULL;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100345 struct dentry *this;
346 unsigned int i;
347 int err;
Miklos Szeredie28edc42016-12-16 11:02:56 +0100348 struct ovl_lookup_data d = {
349 .name = dentry->d_name,
350 .is_dir = false,
351 .opaque = false,
352 .stop = false,
353 .last = !poe->numlower,
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100354 .redirect = NULL,
Miklos Szeredie28edc42016-12-16 11:02:56 +0100355 };
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100356
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100357 if (dentry->d_name.len > ofs->namelen)
358 return ERR_PTR(-ENAMETOOLONG);
359
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100360 old_cred = ovl_override_creds(dentry->d_sb);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200361 upperdir = ovl_dentry_upper(dentry->d_parent);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100362 if (upperdir) {
Miklos Szeredie28edc42016-12-16 11:02:56 +0100363 err = ovl_lookup_layer(upperdir, &d, &upperdentry);
364 if (err)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100365 goto out;
366
Miklos Szeredie28edc42016-12-16 11:02:56 +0100367 if (upperdentry && unlikely(ovl_dentry_remote(upperdentry))) {
368 dput(upperdentry);
369 err = -EREMOTE;
370 goto out;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100371 }
Amir Goldsteina9d01952017-04-30 14:46:31 +0300372 if (upperdentry && !d.is_dir) {
373 BUG_ON(!d.stop || d.redirect);
374 err = ovl_check_origin(dentry, upperdentry,
375 &stack, &ctr);
376 if (err)
377 goto out;
378 }
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100379
380 if (d.redirect) {
381 upperredirect = kstrdup(d.redirect, GFP_KERNEL);
382 if (!upperredirect)
383 goto out_put_upper;
384 if (d.redirect[0] == '/')
Amir Goldsteinc22205d2017-04-26 23:40:52 +0300385 poe = roe;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100386 }
Miklos Szeredie28edc42016-12-16 11:02:56 +0100387 upperopaque = d.opaque;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100388 }
389
Miklos Szeredie28edc42016-12-16 11:02:56 +0100390 if (!d.stop && poe->numlower) {
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100391 err = -ENOMEM;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100392 stack = kcalloc(ofs->numlower, sizeof(struct path),
Miklos Szeredie28edc42016-12-16 11:02:56 +0100393 GFP_TEMPORARY);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100394 if (!stack)
395 goto out_put_upper;
396 }
397
Miklos Szeredie28edc42016-12-16 11:02:56 +0100398 for (i = 0; !d.stop && i < poe->numlower; i++) {
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100399 struct path lowerpath = poe->lowerstack[i];
400
Miklos Szeredie28edc42016-12-16 11:02:56 +0100401 d.last = i == poe->numlower - 1;
402 err = ovl_lookup_layer(lowerpath.dentry, &d, &this);
403 if (err)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100404 goto out_put;
Miklos Szeredi6b2d5fe2016-12-16 11:02:56 +0100405
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100406 if (!this)
407 continue;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100408
409 stack[ctr].dentry = this;
410 stack[ctr].mnt = lowerpath.mnt;
411 ctr++;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100412
413 if (d.stop)
414 break;
415
Amir Goldsteinc22205d2017-04-26 23:40:52 +0300416 if (d.redirect && d.redirect[0] == '/' && poe != roe) {
417 poe = roe;
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100418
419 /* Find the current layer on the root dentry */
420 for (i = 0; i < poe->numlower; i++)
421 if (poe->lowerstack[i].mnt == lowerpath.mnt)
422 break;
423 if (WARN_ON(i == poe->numlower))
424 break;
425 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100426 }
427
428 oe = ovl_alloc_entry(ctr);
429 err = -ENOMEM;
430 if (!oe)
431 goto out_put;
432
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100433 oe->opaque = upperopaque;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100434 memcpy(oe->lowerstack, stack, sizeof(struct path) * ctr);
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200435 dentry->d_fsdata = oe;
436
437 if (upperdentry || ctr) {
438 err = -ENOMEM;
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200439 inode = ovl_get_inode(dentry, upperdentry);
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200440 if (!inode)
441 goto out_free_oe;
Miklos Szeredicf31c462017-07-04 22:03:16 +0200442
443 OVL_I(inode)->redirect = upperredirect;
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200444 }
445
446 revert_creds(old_cred);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100447 kfree(stack);
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100448 kfree(d.redirect);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100449 d_add(dentry, inode);
450
451 return NULL;
452
453out_free_oe:
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200454 dentry->d_fsdata = NULL;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100455 kfree(oe);
456out_put:
457 for (i = 0; i < ctr; i++)
458 dput(stack[i].dentry);
459 kfree(stack);
460out_put_upper:
461 dput(upperdentry);
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100462 kfree(upperredirect);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100463out:
Miklos Szeredi02b69b22016-12-16 11:02:56 +0100464 kfree(d.redirect);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100465 revert_creds(old_cred);
466 return ERR_PTR(err);
467}
468
469bool ovl_lower_positive(struct dentry *dentry)
470{
471 struct ovl_entry *oe = dentry->d_fsdata;
472 struct ovl_entry *poe = dentry->d_parent->d_fsdata;
473 const struct qstr *name = &dentry->d_name;
474 unsigned int i;
475 bool positive = false;
476 bool done = false;
477
478 /*
479 * If dentry is negative, then lower is positive iff this is a
480 * whiteout.
481 */
482 if (!dentry->d_inode)
483 return oe->opaque;
484
485 /* Negative upper -> positive lower */
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200486 if (!ovl_dentry_upper(dentry))
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100487 return true;
488
489 /* Positive upper -> have to look up lower to see whether it exists */
490 for (i = 0; !done && !positive && i < poe->numlower; i++) {
491 struct dentry *this;
492 struct dentry *lowerdir = poe->lowerstack[i].dentry;
493
494 this = lookup_one_len_unlocked(name->name, lowerdir,
495 name->len);
496 if (IS_ERR(this)) {
497 switch (PTR_ERR(this)) {
498 case -ENOENT:
499 case -ENAMETOOLONG:
500 break;
501
502 default:
503 /*
504 * Assume something is there, we just couldn't
505 * access it.
506 */
507 positive = true;
508 break;
509 }
510 } else {
511 if (this->d_inode) {
512 positive = !ovl_is_whiteout(this);
513 done = true;
514 }
515 dput(this);
516 }
517 }
518
519 return positive;
520}