xref: /openbmc/linux/fs/overlayfs/export.c (revision aa5b395b)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Overlayfs NFS export support.
4  *
5  * Amir Goldstein <amir73il@gmail.com>
6  *
7  * Copyright (C) 2017-2018 CTERA Networks. All Rights Reserved.
8  */
9 
10 #include <linux/fs.h>
11 #include <linux/cred.h>
12 #include <linux/mount.h>
13 #include <linux/namei.h>
14 #include <linux/xattr.h>
15 #include <linux/exportfs.h>
16 #include <linux/ratelimit.h>
17 #include "overlayfs.h"
18 
19 static int ovl_encode_maybe_copy_up(struct dentry *dentry)
20 {
21 	int err;
22 
23 	if (ovl_dentry_upper(dentry))
24 		return 0;
25 
26 	err = ovl_want_write(dentry);
27 	if (!err) {
28 		err = ovl_copy_up(dentry);
29 		ovl_drop_write(dentry);
30 	}
31 
32 	if (err) {
33 		pr_warn_ratelimited("overlayfs: failed to copy up on encode (%pd2, err=%i)\n",
34 				    dentry, err);
35 	}
36 
37 	return err;
38 }
39 
40 /*
41  * Before encoding a non-upper directory file handle from real layer N, we need
42  * to check if it will be possible to reconnect an overlay dentry from the real
43  * lower decoded dentry. This is done by following the overlay ancestry up to a
44  * "layer N connected" ancestor and verifying that all parents along the way are
45  * "layer N connectable". If an ancestor that is NOT "layer N connectable" is
46  * found, we need to copy up an ancestor, which is "layer N connectable", thus
47  * making that ancestor "layer N connected". For example:
48  *
49  * layer 1: /a
50  * layer 2: /a/b/c
51  *
52  * The overlay dentry /a is NOT "layer 2 connectable", because if dir /a is
53  * copied up and renamed, upper dir /a will be indexed by lower dir /a from
54  * layer 1. The dir /a from layer 2 will never be indexed, so the algorithm (*)
55  * in ovl_lookup_real_ancestor() will not be able to lookup a connected overlay
56  * dentry from the connected lower dentry /a/b/c.
57  *
58  * To avoid this problem on decode time, we need to copy up an ancestor of
59  * /a/b/c, which is "layer 2 connectable", on encode time. That ancestor is
60  * /a/b. After copy up (and index) of /a/b, it will become "layer 2 connected"
61  * and when the time comes to decode the file handle from lower dentry /a/b/c,
62  * ovl_lookup_real_ancestor() will find the indexed ancestor /a/b and decoding
63  * a connected overlay dentry will be accomplished.
64  *
65  * (*) the algorithm in ovl_lookup_real_ancestor() can be improved to lookup an
66  * entry /a in the lower layers above layer N and find the indexed dir /a from
67  * layer 1. If that improvement is made, then the check for "layer N connected"
68  * will need to verify there are no redirects in lower layers above N. In the
69  * example above, /a will be "layer 2 connectable". However, if layer 2 dir /a
70  * is a target of a layer 1 redirect, then /a will NOT be "layer 2 connectable":
71  *
72  * layer 1: /A (redirect = /a)
73  * layer 2: /a/b/c
74  */
75 
76 /* Return the lowest layer for encoding a connectable file handle */
77 static int ovl_connectable_layer(struct dentry *dentry)
78 {
79 	struct ovl_entry *oe = OVL_E(dentry);
80 
81 	/* We can get overlay root from root of any layer */
82 	if (dentry == dentry->d_sb->s_root)
83 		return oe->numlower;
84 
85 	/*
86 	 * If it's an unindexed merge dir, then it's not connectable with any
87 	 * lower layer
88 	 */
89 	if (ovl_dentry_upper(dentry) &&
90 	    !ovl_test_flag(OVL_INDEX, d_inode(dentry)))
91 		return 0;
92 
93 	/* We can get upper/overlay path from indexed/lower dentry */
94 	return oe->lowerstack[0].layer->idx;
95 }
96 
97 /*
98  * @dentry is "connected" if all ancestors up to root or a "connected" ancestor
99  * have the same uppermost lower layer as the origin's layer. We may need to
100  * copy up a "connectable" ancestor to make it "connected". A "connected" dentry
101  * cannot become non "connected", so cache positive result in dentry flags.
102  *
103  * Return the connected origin layer or < 0 on error.
104  */
105 static int ovl_connect_layer(struct dentry *dentry)
106 {
107 	struct dentry *next, *parent = NULL;
108 	int origin_layer;
109 	int err = 0;
110 
111 	if (WARN_ON(dentry == dentry->d_sb->s_root) ||
112 	    WARN_ON(!ovl_dentry_lower(dentry)))
113 		return -EIO;
114 
115 	origin_layer = OVL_E(dentry)->lowerstack[0].layer->idx;
116 	if (ovl_dentry_test_flag(OVL_E_CONNECTED, dentry))
117 		return origin_layer;
118 
119 	/* Find the topmost origin layer connectable ancestor of @dentry */
120 	next = dget(dentry);
121 	for (;;) {
122 		parent = dget_parent(next);
123 		if (WARN_ON(parent == next)) {
124 			err = -EIO;
125 			break;
126 		}
127 
128 		/*
129 		 * If @parent is not origin layer connectable, then copy up
130 		 * @next which is origin layer connectable and we are done.
131 		 */
132 		if (ovl_connectable_layer(parent) < origin_layer) {
133 			err = ovl_encode_maybe_copy_up(next);
134 			break;
135 		}
136 
137 		/* If @parent is connected or indexed we are done */
138 		if (ovl_dentry_test_flag(OVL_E_CONNECTED, parent) ||
139 		    ovl_test_flag(OVL_INDEX, d_inode(parent)))
140 			break;
141 
142 		dput(next);
143 		next = parent;
144 	}
145 
146 	dput(parent);
147 	dput(next);
148 
149 	if (!err)
150 		ovl_dentry_set_flag(OVL_E_CONNECTED, dentry);
151 
152 	return err ?: origin_layer;
153 }
154 
155 /*
156  * We only need to encode origin if there is a chance that the same object was
157  * encoded pre copy up and then we need to stay consistent with the same
158  * encoding also after copy up. If non-pure upper is not indexed, then it was
159  * copied up before NFS export was enabled. In that case we don't need to worry
160  * about staying consistent with pre copy up encoding and we encode an upper
161  * file handle. Overlay root dentry is a private case of non-indexed upper.
162  *
163  * The following table summarizes the different file handle encodings used for
164  * different overlay object types:
165  *
166  *  Object type		| Encoding
167  * --------------------------------
168  *  Pure upper		| U
169  *  Non-indexed upper	| U
170  *  Indexed upper	| L (*)
171  *  Non-upper		| L (*)
172  *
173  * U = upper file handle
174  * L = lower file handle
175  *
176  * (*) Connecting an overlay dir from real lower dentry is not always
177  * possible when there are redirects in lower layers and non-indexed merge dirs.
178  * To mitigate those case, we may copy up the lower dir ancestor before encode
179  * a lower dir file handle.
180  *
181  * Return 0 for upper file handle, > 0 for lower file handle or < 0 on error.
182  */
183 static int ovl_check_encode_origin(struct dentry *dentry)
184 {
185 	struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
186 
187 	/* Upper file handle for pure upper */
188 	if (!ovl_dentry_lower(dentry))
189 		return 0;
190 
191 	/*
192 	 * Upper file handle for non-indexed upper.
193 	 *
194 	 * Root is never indexed, so if there's an upper layer, encode upper for
195 	 * root.
196 	 */
197 	if (ovl_dentry_upper(dentry) &&
198 	    !ovl_test_flag(OVL_INDEX, d_inode(dentry)))
199 		return 0;
200 
201 	/*
202 	 * Decoding a merge dir, whose origin's ancestor is under a redirected
203 	 * lower dir or under a non-indexed upper is not always possible.
204 	 * ovl_connect_layer() will try to make origin's layer "connected" by
205 	 * copying up a "connectable" ancestor.
206 	 */
207 	if (d_is_dir(dentry) && ofs->upper_mnt)
208 		return ovl_connect_layer(dentry);
209 
210 	/* Lower file handle for indexed and non-upper dir/non-dir */
211 	return 1;
212 }
213 
214 static int ovl_dentry_to_fid(struct dentry *dentry, u32 *fid, int buflen)
215 {
216 	struct ovl_fh *fh = NULL;
217 	int err, enc_lower;
218 	int len;
219 
220 	/*
221 	 * Check if we should encode a lower or upper file handle and maybe
222 	 * copy up an ancestor to make lower file handle connectable.
223 	 */
224 	err = enc_lower = ovl_check_encode_origin(dentry);
225 	if (enc_lower < 0)
226 		goto fail;
227 
228 	/* Encode an upper or lower file handle */
229 	fh = ovl_encode_real_fh(enc_lower ? ovl_dentry_lower(dentry) :
230 				ovl_dentry_upper(dentry), !enc_lower);
231 	if (IS_ERR(fh))
232 		return PTR_ERR(fh);
233 
234 	err = -EOVERFLOW;
235 	len = OVL_FH_LEN(fh);
236 	if (len > buflen)
237 		goto fail;
238 
239 	memcpy(fid, fh, len);
240 	err = len;
241 
242 out:
243 	kfree(fh);
244 	return err;
245 
246 fail:
247 	pr_warn_ratelimited("overlayfs: failed to encode file handle (%pd2, err=%i, buflen=%d, len=%d, type=%d)\n",
248 			    dentry, err, buflen, fh ? (int)fh->fb.len : 0,
249 			    fh ? fh->fb.type : 0);
250 	goto out;
251 }
252 
253 static int ovl_encode_fh(struct inode *inode, u32 *fid, int *max_len,
254 			 struct inode *parent)
255 {
256 	struct dentry *dentry;
257 	int bytes = *max_len << 2;
258 
259 	/* TODO: encode connectable file handles */
260 	if (parent)
261 		return FILEID_INVALID;
262 
263 	dentry = d_find_any_alias(inode);
264 	if (WARN_ON(!dentry))
265 		return FILEID_INVALID;
266 
267 	bytes = ovl_dentry_to_fid(dentry, fid, bytes);
268 	dput(dentry);
269 	if (bytes <= 0)
270 		return FILEID_INVALID;
271 
272 	*max_len = bytes >> 2;
273 
274 	return OVL_FILEID_V1;
275 }
276 
277 /*
278  * Find or instantiate an overlay dentry from real dentries and index.
279  */
280 static struct dentry *ovl_obtain_alias(struct super_block *sb,
281 				       struct dentry *upper_alias,
282 				       struct ovl_path *lowerpath,
283 				       struct dentry *index)
284 {
285 	struct dentry *lower = lowerpath ? lowerpath->dentry : NULL;
286 	struct dentry *upper = upper_alias ?: index;
287 	struct dentry *dentry;
288 	struct inode *inode;
289 	struct ovl_entry *oe;
290 	struct ovl_inode_params oip = {
291 		.lowerpath = lowerpath,
292 		.index = index,
293 		.numlower = !!lower
294 	};
295 
296 	/* We get overlay directory dentries with ovl_lookup_real() */
297 	if (d_is_dir(upper ?: lower))
298 		return ERR_PTR(-EIO);
299 
300 	oip.upperdentry = dget(upper);
301 	inode = ovl_get_inode(sb, &oip);
302 	if (IS_ERR(inode)) {
303 		dput(upper);
304 		return ERR_CAST(inode);
305 	}
306 
307 	if (upper)
308 		ovl_set_flag(OVL_UPPERDATA, inode);
309 
310 	dentry = d_find_any_alias(inode);
311 	if (!dentry) {
312 		dentry = d_alloc_anon(inode->i_sb);
313 		if (!dentry)
314 			goto nomem;
315 		oe = ovl_alloc_entry(lower ? 1 : 0);
316 		if (!oe)
317 			goto nomem;
318 
319 		if (lower) {
320 			oe->lowerstack->dentry = dget(lower);
321 			oe->lowerstack->layer = lowerpath->layer;
322 		}
323 		dentry->d_fsdata = oe;
324 		if (upper_alias)
325 			ovl_dentry_set_upper_alias(dentry);
326 	}
327 
328 	return d_instantiate_anon(dentry, inode);
329 
330 nomem:
331 	iput(inode);
332 	dput(dentry);
333 	return ERR_PTR(-ENOMEM);
334 }
335 
336 /* Get the upper or lower dentry in stach whose on layer @idx */
337 static struct dentry *ovl_dentry_real_at(struct dentry *dentry, int idx)
338 {
339 	struct ovl_entry *oe = dentry->d_fsdata;
340 	int i;
341 
342 	if (!idx)
343 		return ovl_dentry_upper(dentry);
344 
345 	for (i = 0; i < oe->numlower; i++) {
346 		if (oe->lowerstack[i].layer->idx == idx)
347 			return oe->lowerstack[i].dentry;
348 	}
349 
350 	return NULL;
351 }
352 
353 /*
354  * Lookup a child overlay dentry to get a connected overlay dentry whose real
355  * dentry is @real. If @real is on upper layer, we lookup a child overlay
356  * dentry with the same name as the real dentry. Otherwise, we need to consult
357  * index for lookup.
358  */
359 static struct dentry *ovl_lookup_real_one(struct dentry *connected,
360 					  struct dentry *real,
361 					  struct ovl_layer *layer)
362 {
363 	struct inode *dir = d_inode(connected);
364 	struct dentry *this, *parent = NULL;
365 	struct name_snapshot name;
366 	int err;
367 
368 	/*
369 	 * Lookup child overlay dentry by real name. The dir mutex protects us
370 	 * from racing with overlay rename. If the overlay dentry that is above
371 	 * real has already been moved to a parent that is not under the
372 	 * connected overlay dir, we return -ECHILD and restart the lookup of
373 	 * connected real path from the top.
374 	 */
375 	inode_lock_nested(dir, I_MUTEX_PARENT);
376 	err = -ECHILD;
377 	parent = dget_parent(real);
378 	if (ovl_dentry_real_at(connected, layer->idx) != parent)
379 		goto fail;
380 
381 	/*
382 	 * We also need to take a snapshot of real dentry name to protect us
383 	 * from racing with underlying layer rename. In this case, we don't
384 	 * care about returning ESTALE, only from dereferencing a free name
385 	 * pointer because we hold no lock on the real dentry.
386 	 */
387 	take_dentry_name_snapshot(&name, real);
388 	this = lookup_one_len(name.name.name, connected, name.name.len);
389 	err = PTR_ERR(this);
390 	if (IS_ERR(this)) {
391 		goto fail;
392 	} else if (!this || !this->d_inode) {
393 		dput(this);
394 		err = -ENOENT;
395 		goto fail;
396 	} else if (ovl_dentry_real_at(this, layer->idx) != real) {
397 		dput(this);
398 		err = -ESTALE;
399 		goto fail;
400 	}
401 
402 out:
403 	release_dentry_name_snapshot(&name);
404 	dput(parent);
405 	inode_unlock(dir);
406 	return this;
407 
408 fail:
409 	pr_warn_ratelimited("overlayfs: failed to lookup one by real (%pd2, layer=%d, connected=%pd2, err=%i)\n",
410 			    real, layer->idx, connected, err);
411 	this = ERR_PTR(err);
412 	goto out;
413 }
414 
415 static struct dentry *ovl_lookup_real(struct super_block *sb,
416 				      struct dentry *real,
417 				      struct ovl_layer *layer);
418 
419 /*
420  * Lookup an indexed or hashed overlay dentry by real inode.
421  */
422 static struct dentry *ovl_lookup_real_inode(struct super_block *sb,
423 					    struct dentry *real,
424 					    struct ovl_layer *layer)
425 {
426 	struct ovl_fs *ofs = sb->s_fs_info;
427 	struct ovl_layer upper_layer = { .mnt = ofs->upper_mnt };
428 	struct dentry *index = NULL;
429 	struct dentry *this = NULL;
430 	struct inode *inode;
431 
432 	/*
433 	 * Decoding upper dir from index is expensive, so first try to lookup
434 	 * overlay dentry in inode/dcache.
435 	 */
436 	inode = ovl_lookup_inode(sb, real, !layer->idx);
437 	if (IS_ERR(inode))
438 		return ERR_CAST(inode);
439 	if (inode) {
440 		this = d_find_any_alias(inode);
441 		iput(inode);
442 	}
443 
444 	/*
445 	 * For decoded lower dir file handle, lookup index by origin to check
446 	 * if lower dir was copied up and and/or removed.
447 	 */
448 	if (!this && layer->idx && ofs->indexdir && !WARN_ON(!d_is_dir(real))) {
449 		index = ovl_lookup_index(ofs, NULL, real, false);
450 		if (IS_ERR(index))
451 			return index;
452 	}
453 
454 	/* Get connected upper overlay dir from index */
455 	if (index) {
456 		struct dentry *upper = ovl_index_upper(ofs, index);
457 
458 		dput(index);
459 		if (IS_ERR_OR_NULL(upper))
460 			return upper;
461 
462 		/*
463 		 * ovl_lookup_real() in lower layer may call recursively once to
464 		 * ovl_lookup_real() in upper layer. The first level call walks
465 		 * back lower parents to the topmost indexed parent. The second
466 		 * recursive call walks back from indexed upper to the topmost
467 		 * connected/hashed upper parent (or up to root).
468 		 */
469 		this = ovl_lookup_real(sb, upper, &upper_layer);
470 		dput(upper);
471 	}
472 
473 	if (IS_ERR_OR_NULL(this))
474 		return this;
475 
476 	if (WARN_ON(ovl_dentry_real_at(this, layer->idx) != real)) {
477 		dput(this);
478 		this = ERR_PTR(-EIO);
479 	}
480 
481 	return this;
482 }
483 
484 /*
485  * Lookup an indexed or hashed overlay dentry, whose real dentry is an
486  * ancestor of @real.
487  */
488 static struct dentry *ovl_lookup_real_ancestor(struct super_block *sb,
489 					       struct dentry *real,
490 					       struct ovl_layer *layer)
491 {
492 	struct dentry *next, *parent = NULL;
493 	struct dentry *ancestor = ERR_PTR(-EIO);
494 
495 	if (real == layer->mnt->mnt_root)
496 		return dget(sb->s_root);
497 
498 	/* Find the topmost indexed or hashed ancestor */
499 	next = dget(real);
500 	for (;;) {
501 		parent = dget_parent(next);
502 
503 		/*
504 		 * Lookup a matching overlay dentry in inode/dentry
505 		 * cache or in index by real inode.
506 		 */
507 		ancestor = ovl_lookup_real_inode(sb, next, layer);
508 		if (ancestor)
509 			break;
510 
511 		if (parent == layer->mnt->mnt_root) {
512 			ancestor = dget(sb->s_root);
513 			break;
514 		}
515 
516 		/*
517 		 * If @real has been moved out of the layer root directory,
518 		 * we will eventully hit the real fs root. This cannot happen
519 		 * by legit overlay rename, so we return error in that case.
520 		 */
521 		if (parent == next) {
522 			ancestor = ERR_PTR(-EXDEV);
523 			break;
524 		}
525 
526 		dput(next);
527 		next = parent;
528 	}
529 
530 	dput(parent);
531 	dput(next);
532 
533 	return ancestor;
534 }
535 
536 /*
537  * Lookup a connected overlay dentry whose real dentry is @real.
538  * If @real is on upper layer, we lookup a child overlay dentry with the same
539  * path the real dentry. Otherwise, we need to consult index for lookup.
540  */
541 static struct dentry *ovl_lookup_real(struct super_block *sb,
542 				      struct dentry *real,
543 				      struct ovl_layer *layer)
544 {
545 	struct dentry *connected;
546 	int err = 0;
547 
548 	connected = ovl_lookup_real_ancestor(sb, real, layer);
549 	if (IS_ERR(connected))
550 		return connected;
551 
552 	while (!err) {
553 		struct dentry *next, *this;
554 		struct dentry *parent = NULL;
555 		struct dentry *real_connected = ovl_dentry_real_at(connected,
556 								   layer->idx);
557 
558 		if (real_connected == real)
559 			break;
560 
561 		/* Find the topmost dentry not yet connected */
562 		next = dget(real);
563 		for (;;) {
564 			parent = dget_parent(next);
565 
566 			if (parent == real_connected)
567 				break;
568 
569 			/*
570 			 * If real has been moved out of 'real_connected',
571 			 * we will not find 'real_connected' and hit the layer
572 			 * root. In that case, we need to restart connecting.
573 			 * This game can go on forever in the worst case. We
574 			 * may want to consider taking s_vfs_rename_mutex if
575 			 * this happens more than once.
576 			 */
577 			if (parent == layer->mnt->mnt_root) {
578 				dput(connected);
579 				connected = dget(sb->s_root);
580 				break;
581 			}
582 
583 			/*
584 			 * If real file has been moved out of the layer root
585 			 * directory, we will eventully hit the real fs root.
586 			 * This cannot happen by legit overlay rename, so we
587 			 * return error in that case.
588 			 */
589 			if (parent == next) {
590 				err = -EXDEV;
591 				break;
592 			}
593 
594 			dput(next);
595 			next = parent;
596 		}
597 
598 		if (!err) {
599 			this = ovl_lookup_real_one(connected, next, layer);
600 			if (IS_ERR(this))
601 				err = PTR_ERR(this);
602 
603 			/*
604 			 * Lookup of child in overlay can fail when racing with
605 			 * overlay rename of child away from 'connected' parent.
606 			 * In this case, we need to restart the lookup from the
607 			 * top, because we cannot trust that 'real_connected' is
608 			 * still an ancestor of 'real'. There is a good chance
609 			 * that the renamed overlay ancestor is now in cache, so
610 			 * ovl_lookup_real_ancestor() will find it and we can
611 			 * continue to connect exactly from where lookup failed.
612 			 */
613 			if (err == -ECHILD) {
614 				this = ovl_lookup_real_ancestor(sb, real,
615 								layer);
616 				err = PTR_ERR_OR_ZERO(this);
617 			}
618 			if (!err) {
619 				dput(connected);
620 				connected = this;
621 			}
622 		}
623 
624 		dput(parent);
625 		dput(next);
626 	}
627 
628 	if (err)
629 		goto fail;
630 
631 	return connected;
632 
633 fail:
634 	pr_warn_ratelimited("overlayfs: failed to lookup by real (%pd2, layer=%d, connected=%pd2, err=%i)\n",
635 			    real, layer->idx, connected, err);
636 	dput(connected);
637 	return ERR_PTR(err);
638 }
639 
640 /*
641  * Get an overlay dentry from upper/lower real dentries and index.
642  */
643 static struct dentry *ovl_get_dentry(struct super_block *sb,
644 				     struct dentry *upper,
645 				     struct ovl_path *lowerpath,
646 				     struct dentry *index)
647 {
648 	struct ovl_fs *ofs = sb->s_fs_info;
649 	struct ovl_layer upper_layer = { .mnt = ofs->upper_mnt };
650 	struct ovl_layer *layer = upper ? &upper_layer : lowerpath->layer;
651 	struct dentry *real = upper ?: (index ?: lowerpath->dentry);
652 
653 	/*
654 	 * Obtain a disconnected overlay dentry from a non-dir real dentry
655 	 * and index.
656 	 */
657 	if (!d_is_dir(real))
658 		return ovl_obtain_alias(sb, upper, lowerpath, index);
659 
660 	/* Removed empty directory? */
661 	if ((real->d_flags & DCACHE_DISCONNECTED) || d_unhashed(real))
662 		return ERR_PTR(-ENOENT);
663 
664 	/*
665 	 * If real dentry is connected and hashed, get a connected overlay
666 	 * dentry whose real dentry is @real.
667 	 */
668 	return ovl_lookup_real(sb, real, layer);
669 }
670 
671 static struct dentry *ovl_upper_fh_to_d(struct super_block *sb,
672 					struct ovl_fh *fh)
673 {
674 	struct ovl_fs *ofs = sb->s_fs_info;
675 	struct dentry *dentry;
676 	struct dentry *upper;
677 
678 	if (!ofs->upper_mnt)
679 		return ERR_PTR(-EACCES);
680 
681 	upper = ovl_decode_real_fh(fh, ofs->upper_mnt, true);
682 	if (IS_ERR_OR_NULL(upper))
683 		return upper;
684 
685 	dentry = ovl_get_dentry(sb, upper, NULL, NULL);
686 	dput(upper);
687 
688 	return dentry;
689 }
690 
691 static struct dentry *ovl_lower_fh_to_d(struct super_block *sb,
692 					struct ovl_fh *fh)
693 {
694 	struct ovl_fs *ofs = sb->s_fs_info;
695 	struct ovl_path origin = { };
696 	struct ovl_path *stack = &origin;
697 	struct dentry *dentry = NULL;
698 	struct dentry *index = NULL;
699 	struct inode *inode;
700 	int err;
701 
702 	/* First lookup overlay inode in inode cache by origin fh */
703 	err = ovl_check_origin_fh(ofs, fh, false, NULL, &stack);
704 	if (err)
705 		return ERR_PTR(err);
706 
707 	if (!d_is_dir(origin.dentry) ||
708 	    !(origin.dentry->d_flags & DCACHE_DISCONNECTED)) {
709 		inode = ovl_lookup_inode(sb, origin.dentry, false);
710 		err = PTR_ERR(inode);
711 		if (IS_ERR(inode))
712 			goto out_err;
713 		if (inode) {
714 			dentry = d_find_any_alias(inode);
715 			iput(inode);
716 			if (dentry)
717 				goto out;
718 		}
719 	}
720 
721 	/* Then lookup indexed upper/whiteout by origin fh */
722 	if (ofs->indexdir) {
723 		index = ovl_get_index_fh(ofs, fh);
724 		err = PTR_ERR(index);
725 		if (IS_ERR(index)) {
726 			index = NULL;
727 			goto out_err;
728 		}
729 	}
730 
731 	/* Then try to get a connected upper dir by index */
732 	if (index && d_is_dir(index)) {
733 		struct dentry *upper = ovl_index_upper(ofs, index);
734 
735 		err = PTR_ERR(upper);
736 		if (IS_ERR_OR_NULL(upper))
737 			goto out_err;
738 
739 		dentry = ovl_get_dentry(sb, upper, NULL, NULL);
740 		dput(upper);
741 		goto out;
742 	}
743 
744 	/* Find origin.dentry again with ovl_acceptable() layer check */
745 	if (d_is_dir(origin.dentry)) {
746 		dput(origin.dentry);
747 		origin.dentry = NULL;
748 		err = ovl_check_origin_fh(ofs, fh, true, NULL, &stack);
749 		if (err)
750 			goto out_err;
751 	}
752 	if (index) {
753 		err = ovl_verify_origin(index, origin.dentry, false);
754 		if (err)
755 			goto out_err;
756 	}
757 
758 	/* Get a connected non-upper dir or disconnected non-dir */
759 	dentry = ovl_get_dentry(sb, NULL, &origin, index);
760 
761 out:
762 	dput(origin.dentry);
763 	dput(index);
764 	return dentry;
765 
766 out_err:
767 	dentry = ERR_PTR(err);
768 	goto out;
769 }
770 
771 static struct ovl_fh *ovl_fid_to_fh(struct fid *fid, int buflen, int fh_type)
772 {
773 	struct ovl_fh *fh;
774 
775 	/* If on-wire inner fid is aligned - nothing to do */
776 	if (fh_type == OVL_FILEID_V1)
777 		return (struct ovl_fh *)fid;
778 
779 	if (fh_type != OVL_FILEID_V0)
780 		return ERR_PTR(-EINVAL);
781 
782 	fh = kzalloc(buflen, GFP_KERNEL);
783 	if (!fh)
784 		return ERR_PTR(-ENOMEM);
785 
786 	/* Copy unaligned inner fh into aligned buffer */
787 	memcpy(&fh->fb, fid, buflen - OVL_FH_WIRE_OFFSET);
788 	return fh;
789 }
790 
791 static struct dentry *ovl_fh_to_dentry(struct super_block *sb, struct fid *fid,
792 				       int fh_len, int fh_type)
793 {
794 	struct dentry *dentry = NULL;
795 	struct ovl_fh *fh = NULL;
796 	int len = fh_len << 2;
797 	unsigned int flags = 0;
798 	int err;
799 
800 	fh = ovl_fid_to_fh(fid, len, fh_type);
801 	err = PTR_ERR(fh);
802 	if (IS_ERR(fh))
803 		goto out_err;
804 
805 	err = ovl_check_fh_len(fh, len);
806 	if (err)
807 		goto out_err;
808 
809 	flags = fh->fb.flags;
810 	dentry = (flags & OVL_FH_FLAG_PATH_UPPER) ?
811 		 ovl_upper_fh_to_d(sb, fh) :
812 		 ovl_lower_fh_to_d(sb, fh);
813 	err = PTR_ERR(dentry);
814 	if (IS_ERR(dentry) && err != -ESTALE)
815 		goto out_err;
816 
817 out:
818 	/* We may have needed to re-align OVL_FILEID_V0 */
819 	if (!IS_ERR_OR_NULL(fh) && fh != (void *)fid)
820 		kfree(fh);
821 
822 	return dentry;
823 
824 out_err:
825 	pr_warn_ratelimited("overlayfs: failed to decode file handle (len=%d, type=%d, flags=%x, err=%i)\n",
826 			    fh_len, fh_type, flags, err);
827 	dentry = ERR_PTR(err);
828 	goto out;
829 }
830 
831 static struct dentry *ovl_fh_to_parent(struct super_block *sb, struct fid *fid,
832 				       int fh_len, int fh_type)
833 {
834 	pr_warn_ratelimited("overlayfs: connectable file handles not supported; use 'no_subtree_check' exportfs option.\n");
835 	return ERR_PTR(-EACCES);
836 }
837 
838 static int ovl_get_name(struct dentry *parent, char *name,
839 			struct dentry *child)
840 {
841 	/*
842 	 * ovl_fh_to_dentry() returns connected dir overlay dentries and
843 	 * ovl_fh_to_parent() is not implemented, so we should not get here.
844 	 */
845 	WARN_ON_ONCE(1);
846 	return -EIO;
847 }
848 
849 static struct dentry *ovl_get_parent(struct dentry *dentry)
850 {
851 	/*
852 	 * ovl_fh_to_dentry() returns connected dir overlay dentries, so we
853 	 * should not get here.
854 	 */
855 	WARN_ON_ONCE(1);
856 	return ERR_PTR(-EIO);
857 }
858 
859 const struct export_operations ovl_export_operations = {
860 	.encode_fh	= ovl_encode_fh,
861 	.fh_to_dentry	= ovl_fh_to_dentry,
862 	.fh_to_parent	= ovl_fh_to_parent,
863 	.get_name	= ovl_get_name,
864 	.get_parent	= ovl_get_parent,
865 };
866