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