blob: 8e37a07b9eff5cc74bc7aa6b6462bcac52170dc0 [file] [log] [blame]
Amir Goldstein8ed5eec2017-07-12 14:17:16 +03001/*
2 * Overlayfs NFS export support.
3 *
4 * Amir Goldstein <amir73il@gmail.com>
5 *
6 * Copyright (C) 2017-2018 CTERA Networks. All Rights Reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
11 */
12
13#include <linux/fs.h>
14#include <linux/cred.h>
15#include <linux/mount.h>
16#include <linux/namei.h>
17#include <linux/xattr.h>
18#include <linux/exportfs.h>
19#include <linux/ratelimit.h>
20#include "overlayfs.h"
21
Amir Goldsteinb305e842018-01-18 13:14:55 +020022/*
23 * We only need to encode origin if there is a chance that the same object was
24 * encoded pre copy up and then we need to stay consistent with the same
25 * encoding also after copy up. If non-pure upper is not indexed, then it was
26 * copied up before NFS export was enabled. In that case we don't need to worry
27 * about staying consistent with pre copy up encoding and we encode an upper
28 * file handle. Overlay root dentry is a private case of non-indexed upper.
29 *
30 * The following table summarizes the different file handle encodings used for
31 * different overlay object types:
32 *
33 * Object type | Encoding
34 * --------------------------------
35 * Pure upper | U
36 * Non-indexed upper | U
Amir Goldstein05e1f112018-01-18 13:15:26 +020037 * Indexed upper | L (*)
38 * Non-upper | L (*)
Amir Goldsteinb305e842018-01-18 13:14:55 +020039 *
40 * U = upper file handle
41 * L = lower file handle
Amir Goldstein05e1f112018-01-18 13:15:26 +020042 *
43 * (*) Connecting an overlay dir from real lower dentry is not always
44 * possible when there are redirects in lower layers. To mitigate this case,
45 * we copy up the lower dir first and then encode an upper dir file handle.
Amir Goldsteinb305e842018-01-18 13:14:55 +020046 */
47static bool ovl_should_encode_origin(struct dentry *dentry)
48{
Amir Goldstein05e1f112018-01-18 13:15:26 +020049 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
50
Amir Goldsteinb305e842018-01-18 13:14:55 +020051 if (!ovl_dentry_lower(dentry))
52 return false;
53
Amir Goldstein05e1f112018-01-18 13:15:26 +020054 /*
55 * Decoding a merge dir, whose origin's parent is under a redirected
56 * lower dir is not always possible. As a simple aproximation, we do
57 * not encode lower dir file handles when overlay has multiple lower
58 * layers and origin is below the topmost lower layer.
59 *
60 * TODO: copy up only the parent that is under redirected lower.
61 */
62 if (d_is_dir(dentry) && ofs->upper_mnt &&
63 OVL_E(dentry)->lowerstack[0].layer->idx > 1)
64 return false;
65
Amir Goldsteinb305e842018-01-18 13:14:55 +020066 /* Decoding a non-indexed upper from origin is not implemented */
67 if (ovl_dentry_upper(dentry) &&
68 !ovl_test_flag(OVL_INDEX, d_inode(dentry)))
69 return false;
70
71 return true;
72}
73
Amir Goldstein05e1f112018-01-18 13:15:26 +020074static int ovl_encode_maybe_copy_up(struct dentry *dentry)
75{
76 int err;
77
78 if (ovl_dentry_upper(dentry))
79 return 0;
80
81 err = ovl_want_write(dentry);
82 if (err)
83 return err;
84
85 err = ovl_copy_up(dentry);
86
87 ovl_drop_write(dentry);
88 return err;
89}
90
Amir Goldstein8ed5eec2017-07-12 14:17:16 +030091static int ovl_d_to_fh(struct dentry *dentry, char *buf, int buflen)
92{
Amir Goldstein8ed5eec2017-07-12 14:17:16 +030093 struct dentry *origin = ovl_dentry_lower(dentry);
94 struct ovl_fh *fh = NULL;
95 int err;
96
Amir Goldstein05e1f112018-01-18 13:15:26 +020097 /*
98 * If we should not encode a lower dir file handle, copy up and encode
99 * an upper dir file handle.
100 */
101 if (!ovl_should_encode_origin(dentry)) {
102 err = ovl_encode_maybe_copy_up(dentry);
103 if (err)
104 goto fail;
Amir Goldstein8ed5eec2017-07-12 14:17:16 +0300105
Amir Goldstein05e1f112018-01-18 13:15:26 +0200106 origin = NULL;
107 }
108
Amir Goldstein03e1c582017-12-28 19:35:21 +0200109 /* Encode an upper or origin file handle */
110 fh = ovl_encode_fh(origin ?: ovl_dentry_upper(dentry), !origin);
Amir Goldstein8ed5eec2017-07-12 14:17:16 +0300111
112 err = -EOVERFLOW;
113 if (fh->len > buflen)
114 goto fail;
115
116 memcpy(buf, (char *)fh, fh->len);
117 err = fh->len;
118
119out:
120 kfree(fh);
121 return err;
122
123fail:
124 pr_warn_ratelimited("overlayfs: failed to encode file handle (%pd2, err=%i, buflen=%d, len=%d, type=%d)\n",
125 dentry, err, buflen, fh ? (int)fh->len : 0,
126 fh ? fh->type : 0);
127 goto out;
128}
129
130static int ovl_dentry_to_fh(struct dentry *dentry, u32 *fid, int *max_len)
131{
132 int res, len = *max_len << 2;
133
134 res = ovl_d_to_fh(dentry, (char *)fid, len);
135 if (res <= 0)
136 return FILEID_INVALID;
137
138 len = res;
139
140 /* Round up to dwords */
141 *max_len = (len + 3) >> 2;
142 return OVL_FILEID;
143}
144
145static int ovl_encode_inode_fh(struct inode *inode, u32 *fid, int *max_len,
146 struct inode *parent)
147{
148 struct dentry *dentry;
149 int type;
150
151 /* TODO: encode connectable file handles */
152 if (parent)
153 return FILEID_INVALID;
154
155 dentry = d_find_any_alias(inode);
156 if (WARN_ON(!dentry))
157 return FILEID_INVALID;
158
159 type = ovl_dentry_to_fh(dentry, fid, max_len);
160
161 dput(dentry);
162 return type;
163}
164
Amir Goldstein8556a422018-01-19 01:03:23 +0200165/*
166 * Find or instantiate an overlay dentry from real dentries.
167 */
168static struct dentry *ovl_obtain_alias(struct super_block *sb,
169 struct dentry *upper,
170 struct ovl_path *lowerpath)
171{
172 struct inode *inode;
173 struct dentry *dentry;
174 struct ovl_entry *oe;
175 void *fsdata = &oe;
176
177 /* TODO: obtain non pure-upper */
178 if (lowerpath)
179 return ERR_PTR(-EIO);
180
181 inode = ovl_get_inode(sb, dget(upper), NULL, NULL, 0);
182 if (IS_ERR(inode)) {
183 dput(upper);
184 return ERR_CAST(inode);
185 }
186
187 dentry = d_find_any_alias(inode);
188 if (!dentry) {
189 dentry = d_alloc_anon(inode->i_sb);
190 if (!dentry)
191 goto nomem;
192 oe = ovl_alloc_entry(0);
193 if (!oe)
194 goto nomem;
195
196 dentry->d_fsdata = oe;
197 ovl_dentry_set_upper_alias(dentry);
198 }
199
200 return d_instantiate_anon(dentry, inode);
201
202nomem:
203 iput(inode);
204 dput(dentry);
205 return ERR_PTR(-ENOMEM);
206}
207
Amir Goldstein3985b702017-12-28 18:36:16 +0200208/*
209 * Lookup a child overlay dentry to get a connected overlay dentry whose real
210 * dentry is @real. If @real is on upper layer, we lookup a child overlay
211 * dentry with the same name as the real dentry. Otherwise, we need to consult
212 * index for lookup.
213 */
214static struct dentry *ovl_lookup_real_one(struct dentry *connected,
215 struct dentry *real,
216 struct ovl_layer *layer)
217{
218 struct inode *dir = d_inode(connected);
219 struct dentry *this, *parent = NULL;
220 struct name_snapshot name;
221 int err;
222
223 /* TODO: lookup by lower real dentry */
224 if (layer->idx)
225 return ERR_PTR(-EACCES);
226
227 /*
228 * Lookup child overlay dentry by real name. The dir mutex protects us
229 * from racing with overlay rename. If the overlay dentry that is above
230 * real has already been moved to a parent that is not under the
231 * connected overlay dir, we return -ECHILD and restart the lookup of
232 * connected real path from the top.
233 */
234 inode_lock_nested(dir, I_MUTEX_PARENT);
235 err = -ECHILD;
236 parent = dget_parent(real);
237 if (ovl_dentry_upper(connected) != parent)
238 goto fail;
239
240 /*
241 * We also need to take a snapshot of real dentry name to protect us
242 * from racing with underlying layer rename. In this case, we don't
243 * care about returning ESTALE, only from dereferencing a free name
244 * pointer because we hold no lock on the real dentry.
245 */
246 take_dentry_name_snapshot(&name, real);
247 this = lookup_one_len(name.name, connected, strlen(name.name));
248 err = PTR_ERR(this);
249 if (IS_ERR(this)) {
250 goto fail;
251 } else if (!this || !this->d_inode) {
252 dput(this);
253 err = -ENOENT;
254 goto fail;
255 } else if (ovl_dentry_upper(this) != real) {
256 dput(this);
257 err = -ESTALE;
258 goto fail;
259 }
260
261out:
262 release_dentry_name_snapshot(&name);
263 dput(parent);
264 inode_unlock(dir);
265 return this;
266
267fail:
268 pr_warn_ratelimited("overlayfs: failed to lookup one by real (%pd2, layer=%d, connected=%pd2, err=%i)\n",
269 real, layer->idx, connected, err);
270 this = ERR_PTR(err);
271 goto out;
272}
273
274/*
275 * Lookup a connected overlay dentry whose real dentry is @real.
276 * If @real is on upper layer, we lookup a child overlay dentry with the same
277 * path the real dentry. Otherwise, we need to consult index for lookup.
278 */
279static struct dentry *ovl_lookup_real(struct super_block *sb,
280 struct dentry *real,
281 struct ovl_layer *layer)
282{
283 struct dentry *connected;
284 int err = 0;
285
286 /* TODO: use index when looking up by lower real dentry */
287 if (layer->idx)
288 return ERR_PTR(-EACCES);
289
290 connected = dget(sb->s_root);
291 while (!err) {
292 struct dentry *next, *this;
293 struct dentry *parent = NULL;
294 struct dentry *real_connected = ovl_dentry_upper(connected);
295
296 if (real_connected == real)
297 break;
298
299 /* Find the topmost dentry not yet connected */
300 next = dget(real);
301 for (;;) {
302 parent = dget_parent(next);
303
304 if (parent == real_connected)
305 break;
306
307 /*
308 * If real has been moved out of 'real_connected',
309 * we will not find 'real_connected' and hit the layer
310 * root. In that case, we need to restart connecting.
311 * This game can go on forever in the worst case. We
312 * may want to consider taking s_vfs_rename_mutex if
313 * this happens more than once.
314 */
315 if (parent == layer->mnt->mnt_root) {
316 dput(connected);
317 connected = dget(sb->s_root);
318 break;
319 }
320
321 /*
322 * If real file has been moved out of the layer root
323 * directory, we will eventully hit the real fs root.
324 * This cannot happen by legit overlay rename, so we
325 * return error in that case.
326 */
327 if (parent == next) {
328 err = -EXDEV;
329 break;
330 }
331
332 dput(next);
333 next = parent;
334 }
335
336 if (!err) {
337 this = ovl_lookup_real_one(connected, next, layer);
338 if (IS_ERR(this))
339 err = PTR_ERR(this);
340
341 /*
342 * Lookup of child in overlay can fail when racing with
343 * overlay rename of child away from 'connected' parent.
344 * In this case, we need to restart the lookup from the
345 * top, because we cannot trust that 'real_connected' is
346 * still an ancestor of 'real'.
347 */
348 if (err == -ECHILD) {
349 this = dget(sb->s_root);
350 err = 0;
351 }
352 if (!err) {
353 dput(connected);
354 connected = this;
355 }
356 }
357
358 dput(parent);
359 dput(next);
360 }
361
362 if (err)
363 goto fail;
364
365 return connected;
366
367fail:
368 pr_warn_ratelimited("overlayfs: failed to lookup by real (%pd2, layer=%d, connected=%pd2, err=%i)\n",
369 real, layer->idx, connected, err);
370 dput(connected);
371 return ERR_PTR(err);
372}
373
374/*
375 * Get an overlay dentry from upper/lower real dentries.
376 */
377static struct dentry *ovl_get_dentry(struct super_block *sb,
378 struct dentry *upper,
379 struct ovl_path *lowerpath)
380{
381 struct ovl_fs *ofs = sb->s_fs_info;
382 struct ovl_layer upper_layer = { .mnt = ofs->upper_mnt };
383
384 /* TODO: get non-upper dentry */
385 if (!upper)
386 return ERR_PTR(-EACCES);
387
388 /*
389 * Obtain a disconnected overlay dentry from a non-dir real upper
390 * dentry.
391 */
392 if (!d_is_dir(upper))
393 return ovl_obtain_alias(sb, upper, NULL);
394
395 /* Removed empty directory? */
396 if ((upper->d_flags & DCACHE_DISCONNECTED) || d_unhashed(upper))
397 return ERR_PTR(-ENOENT);
398
399 /*
400 * If real upper dentry is connected and hashed, get a connected
401 * overlay dentry with the same path as the real upper dentry.
402 */
403 return ovl_lookup_real(sb, upper, &upper_layer);
404}
405
Amir Goldstein8556a422018-01-19 01:03:23 +0200406static struct dentry *ovl_upper_fh_to_d(struct super_block *sb,
407 struct ovl_fh *fh)
408{
409 struct ovl_fs *ofs = sb->s_fs_info;
410 struct dentry *dentry;
411 struct dentry *upper;
412
413 if (!ofs->upper_mnt)
414 return ERR_PTR(-EACCES);
415
416 upper = ovl_decode_fh(fh, ofs->upper_mnt);
417 if (IS_ERR_OR_NULL(upper))
418 return upper;
419
Amir Goldstein3985b702017-12-28 18:36:16 +0200420 dentry = ovl_get_dentry(sb, upper, NULL);
Amir Goldstein8556a422018-01-19 01:03:23 +0200421 dput(upper);
422
423 return dentry;
424}
425
426static struct dentry *ovl_fh_to_dentry(struct super_block *sb, struct fid *fid,
427 int fh_len, int fh_type)
428{
429 struct dentry *dentry = NULL;
430 struct ovl_fh *fh = (struct ovl_fh *) fid;
431 int len = fh_len << 2;
432 unsigned int flags = 0;
433 int err;
434
435 err = -EINVAL;
436 if (fh_type != OVL_FILEID)
437 goto out_err;
438
439 err = ovl_check_fh_len(fh, len);
440 if (err)
441 goto out_err;
442
443 /* TODO: decode non-upper */
444 flags = fh->flags;
445 if (flags & OVL_FH_FLAG_PATH_UPPER)
446 dentry = ovl_upper_fh_to_d(sb, fh);
447 err = PTR_ERR(dentry);
448 if (IS_ERR(dentry) && err != -ESTALE)
449 goto out_err;
450
451 return dentry;
452
453out_err:
454 pr_warn_ratelimited("overlayfs: failed to decode file handle (len=%d, type=%d, flags=%x, err=%i)\n",
455 len, fh_type, flags, err);
456 return ERR_PTR(err);
457}
458
Amir Goldstein3985b702017-12-28 18:36:16 +0200459static struct dentry *ovl_fh_to_parent(struct super_block *sb, struct fid *fid,
460 int fh_len, int fh_type)
461{
462 pr_warn_ratelimited("overlayfs: connectable file handles not supported; use 'no_subtree_check' exportfs option.\n");
463 return ERR_PTR(-EACCES);
464}
465
466static int ovl_get_name(struct dentry *parent, char *name,
467 struct dentry *child)
468{
469 /*
470 * ovl_fh_to_dentry() returns connected dir overlay dentries and
471 * ovl_fh_to_parent() is not implemented, so we should not get here.
472 */
473 WARN_ON_ONCE(1);
474 return -EIO;
475}
476
477static struct dentry *ovl_get_parent(struct dentry *dentry)
478{
479 /*
480 * ovl_fh_to_dentry() returns connected dir overlay dentries, so we
481 * should not get here.
482 */
483 WARN_ON_ONCE(1);
484 return ERR_PTR(-EIO);
485}
486
Amir Goldstein8ed5eec2017-07-12 14:17:16 +0300487const struct export_operations ovl_export_operations = {
488 .encode_fh = ovl_encode_inode_fh,
Amir Goldstein8556a422018-01-19 01:03:23 +0200489 .fh_to_dentry = ovl_fh_to_dentry,
Amir Goldstein3985b702017-12-28 18:36:16 +0200490 .fh_to_parent = ovl_fh_to_parent,
491 .get_name = ovl_get_name,
492 .get_parent = ovl_get_parent,
Amir Goldstein8ed5eec2017-07-12 14:17:16 +0300493};