blob: 81b8f135445a8fdc5c90ca5f29f23bd92bf6a212 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Miklos Szeredibbb1e542016-12-16 11:02:56 +01002/*
3 * Copyright (C) 2011 Novell Inc.
4 * Copyright (C) 2016 Red Hat, Inc.
Miklos Szeredibbb1e542016-12-16 11:02:56 +01005 */
6
7#include <linux/fs.h>
8#include <linux/mount.h>
9#include <linux/slab.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010010#include <linux/cred.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010011#include <linux/xattr.h>
Amir Goldstein02bcd152017-06-21 15:28:36 +030012#include <linux/exportfs.h>
13#include <linux/uuid.h>
Amir Goldsteincaf70cb2017-06-21 13:46:12 +030014#include <linux/namei.h>
15#include <linux/ratelimit.h>
Miklos Szeredibbb1e542016-12-16 11:02:56 +010016#include "overlayfs.h"
Miklos Szeredibbb1e542016-12-16 11:02:56 +010017
18int ovl_want_write(struct dentry *dentry)
19{
20 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +020021 return mnt_want_write(ovl_upper_mnt(ofs));
Miklos Szeredibbb1e542016-12-16 11:02:56 +010022}
23
24void ovl_drop_write(struct dentry *dentry)
25{
26 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +020027 mnt_drop_write(ovl_upper_mnt(ofs));
Miklos Szeredibbb1e542016-12-16 11:02:56 +010028}
29
30struct dentry *ovl_workdir(struct dentry *dentry)
31{
32 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
33 return ofs->workdir;
34}
35
36const struct cred *ovl_override_creds(struct super_block *sb)
37{
38 struct ovl_fs *ofs = sb->s_fs_info;
39
40 return override_creds(ofs->creator_cred);
41}
42
Amir Goldsteine487d882017-11-07 13:55:04 +020043/*
44 * Check if underlying fs supports file handles and try to determine encoding
45 * type, in order to deduce maximum inode number used by fs.
46 *
47 * Return 0 if file handles are not supported.
48 * Return 1 (FILEID_INO32_GEN) if fs uses the default 32bit inode encoding.
49 * Return -1 if fs uses a non default encoding with unknown inode size.
50 */
51int ovl_can_decode_fh(struct super_block *sb)
Amir Goldstein02bcd152017-06-21 15:28:36 +030052{
Miklos Szeredic846af02020-12-14 15:26:14 +010053 if (!capable(CAP_DAC_READ_SEARCH))
54 return 0;
55
Amir Goldstein9df085f2018-09-03 09:12:09 +030056 if (!sb->s_export_op || !sb->s_export_op->fh_to_dentry)
Amir Goldsteine487d882017-11-07 13:55:04 +020057 return 0;
58
59 return sb->s_export_op->encode_fh ? -1 : FILEID_INO32_GEN;
Amir Goldstein02bcd152017-06-21 15:28:36 +030060}
61
62struct dentry *ovl_indexdir(struct super_block *sb)
63{
64 struct ovl_fs *ofs = sb->s_fs_info;
65
66 return ofs->indexdir;
67}
68
Amir Goldsteinf168f102018-01-19 11:26:53 +020069/* Index all files on copy up. For now only enabled for NFS export */
70bool ovl_index_all(struct super_block *sb)
71{
72 struct ovl_fs *ofs = sb->s_fs_info;
73
74 return ofs->config.nfs_export && ofs->config.index;
75}
76
77/* Verify lower origin on lookup. For now only enabled for NFS export */
78bool ovl_verify_lower(struct super_block *sb)
79{
80 struct ovl_fs *ofs = sb->s_fs_info;
81
82 return ofs->config.nfs_export && ofs->config.index;
83}
84
Miklos Szeredibbb1e542016-12-16 11:02:56 +010085struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
86{
87 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
88 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
89
90 if (oe)
91 oe->numlower = numlower;
92
93 return oe;
94}
95
96bool ovl_dentry_remote(struct dentry *dentry)
97{
98 return dentry->d_flags &
Miklos Szeredi7925dad2020-03-17 15:04:22 +010099 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100100}
101
Miklos Szeredif4288842020-03-17 15:04:22 +0100102void ovl_dentry_update_reval(struct dentry *dentry, struct dentry *upperdentry,
103 unsigned int mask)
104{
105 struct ovl_entry *oe = OVL_E(dentry);
106 unsigned int i, flags = 0;
107
Miklos Szeredibccece12020-03-17 15:04:22 +0100108 if (upperdentry)
109 flags |= upperdentry->d_flags;
Miklos Szeredif4288842020-03-17 15:04:22 +0100110 for (i = 0; i < oe->numlower; i++)
111 flags |= oe->lowerstack[i].dentry->d_flags;
112
113 spin_lock(&dentry->d_lock);
114 dentry->d_flags &= ~mask;
115 dentry->d_flags |= flags & mask;
116 spin_unlock(&dentry->d_lock);
117}
118
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100119bool ovl_dentry_weird(struct dentry *dentry)
120{
121 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
122 DCACHE_MANAGE_TRANSIT |
123 DCACHE_OP_HASH |
124 DCACHE_OP_COMPARE);
125}
126
127enum ovl_path_type ovl_path_type(struct dentry *dentry)
128{
129 struct ovl_entry *oe = dentry->d_fsdata;
130 enum ovl_path_type type = 0;
131
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200132 if (ovl_dentry_upper(dentry)) {
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100133 type = __OVL_PATH_UPPER;
134
135 /*
Amir Goldstein59548502017-04-23 23:12:34 +0300136 * Non-dir dentry can hold lower dentry of its copy up origin.
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100137 */
Amir Goldstein59548502017-04-23 23:12:34 +0300138 if (oe->numlower) {
Vivek Goyal60124872018-05-11 11:49:32 -0400139 if (ovl_test_flag(OVL_CONST_INO, d_inode(dentry)))
140 type |= __OVL_PATH_ORIGIN;
Vivek Goyal0b17c282018-05-11 11:49:32 -0400141 if (d_is_dir(dentry) ||
142 !ovl_has_upperdata(d_inode(dentry)))
Amir Goldstein59548502017-04-23 23:12:34 +0300143 type |= __OVL_PATH_MERGE;
144 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100145 } else {
146 if (oe->numlower > 1)
147 type |= __OVL_PATH_MERGE;
148 }
149 return type;
150}
151
152void ovl_path_upper(struct dentry *dentry, struct path *path)
153{
154 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100155
Miklos Szeredi08f4c7c2020-06-04 10:48:19 +0200156 path->mnt = ovl_upper_mnt(ofs);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200157 path->dentry = ovl_dentry_upper(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100158}
159
160void ovl_path_lower(struct dentry *dentry, struct path *path)
161{
162 struct ovl_entry *oe = dentry->d_fsdata;
163
Chandan Rajendrab9343632017-07-24 01:57:54 -0500164 if (oe->numlower) {
165 path->mnt = oe->lowerstack[0].layer->mnt;
166 path->dentry = oe->lowerstack[0].dentry;
167 } else {
168 *path = (struct path) { };
169 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100170}
171
Vivek Goyal4f93b422018-05-11 11:49:30 -0400172void ovl_path_lowerdata(struct dentry *dentry, struct path *path)
173{
174 struct ovl_entry *oe = dentry->d_fsdata;
175
176 if (oe->numlower) {
177 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt;
178 path->dentry = oe->lowerstack[oe->numlower - 1].dentry;
179 } else {
180 *path = (struct path) { };
181 }
182}
183
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100184enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
185{
186 enum ovl_path_type type = ovl_path_type(dentry);
187
188 if (!OVL_TYPE_UPPER(type))
189 ovl_path_lower(dentry, path);
190 else
191 ovl_path_upper(dentry, path);
192
193 return type;
194}
195
196struct dentry *ovl_dentry_upper(struct dentry *dentry)
197{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200198 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100199}
200
201struct dentry *ovl_dentry_lower(struct dentry *dentry)
202{
203 struct ovl_entry *oe = dentry->d_fsdata;
204
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200205 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100206}
207
Miklos Szeredi13464162020-01-24 09:46:45 +0100208const struct ovl_layer *ovl_layer_lower(struct dentry *dentry)
Amir Goldsteinda309e82017-11-08 19:39:51 +0200209{
210 struct ovl_entry *oe = dentry->d_fsdata;
211
212 return oe->numlower ? oe->lowerstack[0].layer : NULL;
213}
214
Vivek Goyal647d2532018-05-11 11:49:30 -0400215/*
216 * ovl_dentry_lower() could return either a data dentry or metacopy dentry
Xiong Zhenwu597534e2021-03-18 04:30:27 -0700217 * depending on what is stored in lowerstack[0]. At times we need to find
Vivek Goyal647d2532018-05-11 11:49:30 -0400218 * lower dentry which has data (and not metacopy dentry). This helper
219 * returns the lower data dentry.
220 */
221struct dentry *ovl_dentry_lowerdata(struct dentry *dentry)
222{
223 struct ovl_entry *oe = dentry->d_fsdata;
224
225 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL;
226}
227
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100228struct dentry *ovl_dentry_real(struct dentry *dentry)
229{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200230 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100231}
232
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200233struct dentry *ovl_i_dentry_upper(struct inode *inode)
234{
235 return ovl_upperdentry_dereference(OVL_I(inode));
236}
237
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200238struct inode *ovl_inode_upper(struct inode *inode)
Miklos Szeredi25b77132017-07-04 22:03:16 +0200239{
Miklos Szeredi1d88f182017-07-20 11:08:21 +0200240 struct dentry *upperdentry = ovl_i_dentry_upper(inode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200241
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200242 return upperdentry ? d_inode(upperdentry) : NULL;
Miklos Szeredi25b77132017-07-04 22:03:16 +0200243}
244
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200245struct inode *ovl_inode_lower(struct inode *inode)
246{
247 return OVL_I(inode)->lower;
248}
249
250struct inode *ovl_inode_real(struct inode *inode)
251{
252 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
253}
254
Vivek Goyal2664bd02018-05-11 11:49:30 -0400255/* Return inode which contains lower data. Do not return metacopy */
256struct inode *ovl_inode_lowerdata(struct inode *inode)
257{
258 if (WARN_ON(!S_ISREG(inode->i_mode)))
259 return NULL;
260
261 return OVL_I(inode)->lowerdata ?: ovl_inode_lower(inode);
262}
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200263
Vivek Goyal4823d492018-05-11 11:49:31 -0400264/* Return real inode which contains data. Does not return metacopy inode */
265struct inode *ovl_inode_realdata(struct inode *inode)
266{
267 struct inode *upperinode;
268
269 upperinode = ovl_inode_upper(inode);
270 if (upperinode && ovl_has_upperdata(inode))
271 return upperinode;
272
273 return ovl_inode_lowerdata(inode);
274}
275
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200276struct ovl_dir_cache *ovl_dir_cache(struct inode *inode)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100277{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200278 return OVL_I(inode)->cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100279}
280
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200281void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100282{
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200283 OVL_I(inode)->cache = cache;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100284}
285
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200286void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry)
287{
288 set_bit(flag, &OVL_E(dentry)->flags);
289}
290
291void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry)
292{
293 clear_bit(flag, &OVL_E(dentry)->flags);
294}
295
296bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry)
297{
298 return test_bit(flag, &OVL_E(dentry)->flags);
299}
300
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100301bool ovl_dentry_is_opaque(struct dentry *dentry)
302{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200303 return ovl_dentry_test_flag(OVL_E_OPAQUE, dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100304}
305
306bool ovl_dentry_is_whiteout(struct dentry *dentry)
307{
308 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
309}
310
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100311void ovl_dentry_set_opaque(struct dentry *dentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100312{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200313 ovl_dentry_set_flag(OVL_E_OPAQUE, dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100314}
315
Miklos Szeredi55acc662017-07-04 22:03:18 +0200316/*
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300317 * For hard links and decoded file handles, it's possible for ovl_dentry_upper()
318 * to return positive, while there's no actual upper alias for the inode.
319 * Copy up code needs to know about the existence of the upper alias, so it
320 * can't use ovl_dentry_upper().
Miklos Szeredi55acc662017-07-04 22:03:18 +0200321 */
322bool ovl_dentry_has_upper_alias(struct dentry *dentry)
323{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200324 return ovl_dentry_test_flag(OVL_E_UPPER_ALIAS, dentry);
Miklos Szeredi55acc662017-07-04 22:03:18 +0200325}
326
327void ovl_dentry_set_upper_alias(struct dentry *dentry)
328{
Amir Goldsteinc62520a2018-01-14 19:25:31 +0200329 ovl_dentry_set_flag(OVL_E_UPPER_ALIAS, dentry);
Miklos Szeredi55acc662017-07-04 22:03:18 +0200330}
331
Vivek Goyal0c288872018-05-11 11:49:28 -0400332static bool ovl_should_check_upperdata(struct inode *inode)
333{
334 if (!S_ISREG(inode->i_mode))
335 return false;
336
337 if (!ovl_inode_lower(inode))
338 return false;
339
340 return true;
341}
342
343bool ovl_has_upperdata(struct inode *inode)
344{
345 if (!ovl_should_check_upperdata(inode))
346 return true;
347
348 if (!ovl_test_flag(OVL_UPPERDATA, inode))
349 return false;
350 /*
351 * Pairs with smp_wmb() in ovl_set_upperdata(). Main user of
352 * ovl_has_upperdata() is ovl_copy_up_meta_inode_data(). Make sure
353 * if setting of OVL_UPPERDATA is visible, then effects of writes
354 * before that are visible too.
355 */
356 smp_rmb();
357 return true;
358}
359
360void ovl_set_upperdata(struct inode *inode)
361{
362 /*
363 * Pairs with smp_rmb() in ovl_has_upperdata(). Make sure
364 * if OVL_UPPERDATA flag is visible, then effects of write operations
365 * before it are visible as well.
366 */
367 smp_wmb();
368 ovl_set_flag(OVL_UPPERDATA, inode);
369}
370
371/* Caller should hold ovl_inode->lock */
372bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags)
373{
374 if (!ovl_open_flags_need_copy_up(flags))
375 return false;
376
377 return !ovl_test_flag(OVL_UPPERDATA, d_inode(dentry));
378}
379
380bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags)
381{
382 if (!ovl_open_flags_need_copy_up(flags))
383 return false;
384
385 return !ovl_has_upperdata(d_inode(dentry));
386}
387
Miklos Szeredia6c60652016-12-16 11:02:56 +0100388bool ovl_redirect_dir(struct super_block *sb)
389{
390 struct ovl_fs *ofs = sb->s_fs_info;
391
Amir Goldstein21a22872017-05-17 00:12:41 +0300392 return ofs->config.redirect_dir && !ofs->noxattr;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100393}
394
395const char *ovl_dentry_get_redirect(struct dentry *dentry)
396{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200397 return OVL_I(d_inode(dentry))->redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100398}
399
400void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
401{
Miklos Szeredicf31c462017-07-04 22:03:16 +0200402 struct ovl_inode *oi = OVL_I(d_inode(dentry));
Miklos Szeredia6c60652016-12-16 11:02:56 +0100403
Miklos Szeredicf31c462017-07-04 22:03:16 +0200404 kfree(oi->redirect);
405 oi->redirect = redirect;
Miklos Szeredia6c60652016-12-16 11:02:56 +0100406}
407
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200408void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100409{
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200410 struct inode *upperinode = d_inode(upperdentry);
Miklos Szeredie6d2ebd2017-07-04 22:03:16 +0200411
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200412 WARN_ON(OVL_I(inode)->__upperdentry);
413
Miklos Szeredi25b77132017-07-04 22:03:16 +0200414 /*
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200415 * Make sure upperdentry is consistent before making it visible
Miklos Szeredi25b77132017-07-04 22:03:16 +0200416 */
417 smp_wmb();
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200418 OVL_I(inode)->__upperdentry = upperdentry;
Amir Goldstein31747ed2018-01-14 18:35:40 +0200419 if (inode_unhashed(inode)) {
Miklos Szeredi25b77132017-07-04 22:03:16 +0200420 inode->i_private = upperinode;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100421 __insert_inode_hash(inode, (unsigned long) upperinode);
Miklos Szeredi25b77132017-07-04 22:03:16 +0200422 }
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100423}
424
Amir Goldstein65cd9132021-04-11 12:22:23 +0300425static void ovl_dir_version_inc(struct dentry *dentry, bool impurity)
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100426{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200427 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100428
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200429 WARN_ON(!inode_is_locked(inode));
Amir Goldstein65cd9132021-04-11 12:22:23 +0300430 WARN_ON(!d_is_dir(dentry));
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200431 /*
Amir Goldstein65cd9132021-04-11 12:22:23 +0300432 * Version is used by readdir code to keep cache consistent.
433 * For merge dirs (or dirs with origin) all changes need to be noted.
434 * For non-merge dirs, cache contains only impure entries (i.e. ones
435 * which have been copied up and have origins), so only need to note
436 * changes to impure entries.
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200437 */
Amir Goldstein65cd9132021-04-11 12:22:23 +0300438 if (!ovl_dir_is_real(dentry) || impurity)
Miklos Szeredi4edb83b2017-07-27 21:54:06 +0200439 OVL_I(inode)->version++;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100440}
441
Miklos Szeredid9854c82018-07-18 15:44:40 +0200442void ovl_dir_modified(struct dentry *dentry, bool impurity)
443{
444 /* Copy mtime/ctime */
445 ovl_copyattr(d_inode(ovl_dentry_upper(dentry)), d_inode(dentry));
446
Amir Goldstein65cd9132021-04-11 12:22:23 +0300447 ovl_dir_version_inc(dentry, impurity);
Miklos Szeredid9854c82018-07-18 15:44:40 +0200448}
449
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100450u64 ovl_dentry_version_get(struct dentry *dentry)
451{
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200452 struct inode *inode = d_inode(dentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100453
Miklos Szeredi04a01ac2017-07-04 22:03:16 +0200454 WARN_ON(!inode_is_locked(inode));
455 return OVL_I(inode)->version;
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100456}
457
458bool ovl_is_whiteout(struct dentry *dentry)
459{
460 struct inode *inode = dentry->d_inode;
461
462 return inode && IS_WHITEOUT(inode);
463}
464
465struct file *ovl_path_open(struct path *path, int flags)
466{
Miklos Szeredi56230d92020-06-02 22:20:26 +0200467 struct inode *inode = d_inode(path->dentry);
468 int err, acc_mode;
469
470 if (flags & ~(O_ACCMODE | O_LARGEFILE))
471 BUG();
472
473 switch (flags & O_ACCMODE) {
474 case O_RDONLY:
475 acc_mode = MAY_READ;
476 break;
477 case O_WRONLY:
478 acc_mode = MAY_WRITE;
479 break;
480 default:
481 BUG();
482 }
483
Christian Brauner47291ba2021-01-21 14:19:24 +0100484 err = inode_permission(&init_user_ns, inode, acc_mode | MAY_OPEN);
Miklos Szeredi56230d92020-06-02 22:20:26 +0200485 if (err)
486 return ERR_PTR(err);
487
488 /* O_NOATIME is an optimization, don't fail if not permitted */
Christian Brauner21cb47b2021-01-21 14:19:25 +0100489 if (inode_owner_or_capable(&init_user_ns, inode))
Miklos Szeredi56230d92020-06-02 22:20:26 +0200490 flags |= O_NOATIME;
491
492 return dentry_open(path, flags, current_cred());
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100493}
Amir Goldstein39d3d602017-01-17 06:34:56 +0200494
Vivek Goyal0c288872018-05-11 11:49:28 -0400495/* Caller should hold ovl_inode->lock */
496static bool ovl_already_copied_up_locked(struct dentry *dentry, int flags)
497{
498 bool disconnected = dentry->d_flags & DCACHE_DISCONNECTED;
499
500 if (ovl_dentry_upper(dentry) &&
501 (ovl_dentry_has_upper_alias(dentry) || disconnected) &&
502 !ovl_dentry_needs_data_copy_up_locked(dentry, flags))
503 return true;
504
505 return false;
506}
507
508bool ovl_already_copied_up(struct dentry *dentry, int flags)
Vivek Goyal2002df82018-05-11 11:49:28 -0400509{
510 bool disconnected = dentry->d_flags & DCACHE_DISCONNECTED;
511
512 /*
513 * Check if copy-up has happened as well as for upper alias (in
514 * case of hard links) is there.
515 *
516 * Both checks are lockless:
517 * - false negatives: will recheck under oi->lock
518 * - false positives:
519 * + ovl_dentry_upper() uses memory barriers to ensure the
520 * upper dentry is up-to-date
521 * + ovl_dentry_has_upper_alias() relies on locking of
522 * upper parent i_rwsem to prevent reordering copy-up
523 * with rename.
524 */
525 if (ovl_dentry_upper(dentry) &&
Vivek Goyal0c288872018-05-11 11:49:28 -0400526 (ovl_dentry_has_upper_alias(dentry) || disconnected) &&
527 !ovl_dentry_needs_data_copy_up(dentry, flags))
Vivek Goyal2002df82018-05-11 11:49:28 -0400528 return true;
529
530 return false;
531}
532
Vivek Goyal0c288872018-05-11 11:49:28 -0400533int ovl_copy_up_start(struct dentry *dentry, int flags)
Amir Goldstein39d3d602017-01-17 06:34:56 +0200534{
Amir Goldstein1e92e302018-10-18 18:37:14 +0300535 struct inode *inode = d_inode(dentry);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200536 int err;
537
Amir Goldstein531d3042020-03-02 15:03:35 +0200538 err = ovl_inode_lock_interruptible(inode);
Vivek Goyal0c288872018-05-11 11:49:28 -0400539 if (!err && ovl_already_copied_up_locked(dentry, flags)) {
Amir Goldsteina015daf2017-06-21 15:28:51 +0300540 err = 1; /* Already copied up */
Amir Goldstein1e92e302018-10-18 18:37:14 +0300541 ovl_inode_unlock(inode);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200542 }
Amir Goldstein39d3d602017-01-17 06:34:56 +0200543
544 return err;
545}
546
547void ovl_copy_up_end(struct dentry *dentry)
548{
Amir Goldstein1e92e302018-10-18 18:37:14 +0300549 ovl_inode_unlock(d_inode(dentry));
Amir Goldstein39d3d602017-01-17 06:34:56 +0200550}
Amir Goldstein82b749b2017-05-17 00:12:40 +0300551
Miklos Szeredi610afc02020-09-02 10:58:49 +0200552bool ovl_check_origin_xattr(struct ovl_fs *ofs, struct dentry *dentry)
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300553{
554 int res;
555
Miklos Szeredi610afc02020-09-02 10:58:49 +0200556 res = ovl_do_getxattr(ofs, dentry, OVL_XATTR_ORIGIN, NULL, 0);
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300557
558 /* Zero size value means "copied up but origin unknown" */
559 if (res >= 0)
560 return true;
561
562 return false;
563}
564
Miklos Szeredi610afc02020-09-02 10:58:49 +0200565bool ovl_check_dir_xattr(struct super_block *sb, struct dentry *dentry,
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200566 enum ovl_xattr ox)
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300567{
568 int res;
569 char val;
570
571 if (!d_is_dir(dentry))
572 return false;
573
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200574 res = ovl_do_getxattr(OVL_FS(sb), dentry, ox, &val, 1);
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300575 if (res == 1 && val == 'y')
576 return true;
577
578 return false;
579}
580
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200581#define OVL_XATTR_OPAQUE_POSTFIX "opaque"
582#define OVL_XATTR_REDIRECT_POSTFIX "redirect"
583#define OVL_XATTR_ORIGIN_POSTFIX "origin"
584#define OVL_XATTR_IMPURE_POSTFIX "impure"
585#define OVL_XATTR_NLINK_POSTFIX "nlink"
586#define OVL_XATTR_UPPER_POSTFIX "upper"
587#define OVL_XATTR_METACOPY_POSTFIX "metacopy"
588
589#define OVL_XATTR_TAB_ENTRY(x) \
Miklos Szeredi2d2f2d72020-12-14 15:26:14 +0100590 [x] = { [false] = OVL_XATTR_TRUSTED_PREFIX x ## _POSTFIX, \
591 [true] = OVL_XATTR_USER_PREFIX x ## _POSTFIX }
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200592
Miklos Szeredi2d2f2d72020-12-14 15:26:14 +0100593const char *const ovl_xattr_table[][2] = {
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200594 OVL_XATTR_TAB_ENTRY(OVL_XATTR_OPAQUE),
595 OVL_XATTR_TAB_ENTRY(OVL_XATTR_REDIRECT),
596 OVL_XATTR_TAB_ENTRY(OVL_XATTR_ORIGIN),
597 OVL_XATTR_TAB_ENTRY(OVL_XATTR_IMPURE),
598 OVL_XATTR_TAB_ENTRY(OVL_XATTR_NLINK),
599 OVL_XATTR_TAB_ENTRY(OVL_XATTR_UPPER),
600 OVL_XATTR_TAB_ENTRY(OVL_XATTR_METACOPY),
601};
602
Amir Goldsteina0c236b2021-06-19 12:26:17 +0300603int ovl_check_setxattr(struct ovl_fs *ofs, struct dentry *upperdentry,
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200604 enum ovl_xattr ox, const void *value, size_t size,
Amir Goldstein82b749b2017-05-17 00:12:40 +0300605 int xerr)
606{
607 int err;
Amir Goldstein82b749b2017-05-17 00:12:40 +0300608
609 if (ofs->noxattr)
610 return xerr;
611
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200612 err = ovl_do_setxattr(ofs, upperdentry, ox, value, size);
Amir Goldstein82b749b2017-05-17 00:12:40 +0300613
614 if (err == -EOPNOTSUPP) {
Miklos Szeredi43d193f2020-09-02 10:58:49 +0200615 pr_warn("cannot set %s xattr on upper\n", ovl_xattr(ofs, ox));
Amir Goldstein82b749b2017-05-17 00:12:40 +0300616 ofs->noxattr = true;
617 return xerr;
618 }
619
620 return err;
621}
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300622
623int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
624{
Amir Goldsteina0c236b2021-06-19 12:26:17 +0300625 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300626 int err;
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300627
Miklos Szeredi13c72072017-07-04 22:03:16 +0200628 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300629 return 0;
630
631 /*
632 * Do not fail when upper doesn't support xattrs.
633 * Upper inodes won't have origin nor redirect xattr anyway.
634 */
Amir Goldsteina0c236b2021-06-19 12:26:17 +0300635 err = ovl_check_setxattr(ofs, upperdentry, OVL_XATTR_IMPURE, "y", 1, 0);
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300636 if (!err)
Miklos Szeredi13c72072017-07-04 22:03:16 +0200637 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300638
639 return err;
640}
Miklos Szeredi13c72072017-07-04 22:03:16 +0200641
Amir Goldsteinad0af712017-06-21 15:28:32 +0300642/**
643 * Caller must hold a reference to inode to prevent it from being freed while
644 * it is marked inuse.
645 */
646bool ovl_inuse_trylock(struct dentry *dentry)
647{
648 struct inode *inode = d_inode(dentry);
649 bool locked = false;
650
651 spin_lock(&inode->i_lock);
652 if (!(inode->i_state & I_OVL_INUSE)) {
653 inode->i_state |= I_OVL_INUSE;
654 locked = true;
655 }
656 spin_unlock(&inode->i_lock);
657
658 return locked;
659}
660
661void ovl_inuse_unlock(struct dentry *dentry)
662{
663 if (dentry) {
664 struct inode *inode = d_inode(dentry);
665
666 spin_lock(&inode->i_lock);
667 WARN_ON(!(inode->i_state & I_OVL_INUSE));
668 inode->i_state &= ~I_OVL_INUSE;
669 spin_unlock(&inode->i_lock);
670 }
671}
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300672
Amir Goldstein146d62e2019-04-18 17:42:08 +0300673bool ovl_is_inuse(struct dentry *dentry)
674{
675 struct inode *inode = d_inode(dentry);
676 bool inuse;
677
678 spin_lock(&inode->i_lock);
679 inuse = (inode->i_state & I_OVL_INUSE);
680 spin_unlock(&inode->i_lock);
681
682 return inuse;
683}
684
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300685/*
686 * Does this overlay dentry need to be indexed on copy up?
687 */
688bool ovl_need_index(struct dentry *dentry)
689{
690 struct dentry *lower = ovl_dentry_lower(dentry);
691
692 if (!lower || !ovl_indexdir(dentry->d_sb))
693 return false;
694
Amir Goldsteinfbd2d202017-11-22 00:08:21 +0200695 /* Index all files for NFS export and consistency verification */
Amir Goldstein016b7202018-01-11 14:01:08 +0200696 if (ovl_index_all(dentry->d_sb))
Amir Goldsteinfbd2d202017-11-22 00:08:21 +0200697 return true;
698
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300699 /* Index only lower hardlinks on copy up */
700 if (!d_is_dir(lower) && d_inode(lower)->i_nlink > 1)
701 return true;
702
703 return false;
704}
705
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300706/* Caller must hold OVL_I(inode)->lock */
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300707static void ovl_cleanup_index(struct dentry *dentry)
708{
Pavel Tikhomirov1cdb0cb2020-10-13 17:59:53 +0300709 struct ovl_fs *ofs = OVL_FS(dentry->d_sb);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300710 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
711 struct inode *dir = indexdir->d_inode;
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300712 struct dentry *lowerdentry = ovl_dentry_lower(dentry);
713 struct dentry *upperdentry = ovl_dentry_upper(dentry);
714 struct dentry *index = NULL;
715 struct inode *inode;
Amir Goldstein63e13252018-09-18 16:34:31 +0300716 struct qstr name = { };
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300717 int err;
718
Pavel Tikhomirov1cdb0cb2020-10-13 17:59:53 +0300719 err = ovl_get_index_name(ofs, lowerdentry, &name);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300720 if (err)
721 goto fail;
722
723 inode = d_inode(upperdentry);
Amir Goldstein89a17552017-09-26 07:40:37 +0300724 if (!S_ISDIR(inode->i_mode) && inode->i_nlink != 1) {
lijiazi1bd0a3a2019-12-16 19:12:32 +0800725 pr_warn_ratelimited("cleanup linked index (%pd2, ino=%lu, nlink=%u)\n",
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300726 upperdentry, inode->i_ino, inode->i_nlink);
727 /*
728 * We either have a bug with persistent union nlink or a lower
729 * hardlink was added while overlay is mounted. Adding a lower
730 * hardlink and then unlinking all overlay hardlinks would drop
731 * overlay nlink to zero before all upper inodes are unlinked.
732 * As a safety measure, when that situation is detected, set
733 * the overlay nlink to the index inode nlink minus one for the
734 * index entry itself.
735 */
736 set_nlink(d_inode(dentry), inode->i_nlink - 1);
737 ovl_set_nlink_upper(dentry);
738 goto out;
739 }
740
741 inode_lock_nested(dir, I_MUTEX_PARENT);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300742 index = lookup_one_len(name.name, indexdir, name.len);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300743 err = PTR_ERR(index);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300744 if (IS_ERR(index)) {
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300745 index = NULL;
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300746 } else if (ovl_index_all(dentry->d_sb)) {
747 /* Whiteout orphan index to block future open by handle */
Chengguang Xuc21c8392020-04-24 10:55:17 +0800748 err = ovl_cleanup_and_whiteout(OVL_FS(dentry->d_sb),
749 dir, index);
Amir Goldsteine7dd0e72017-10-24 17:38:33 +0300750 } else {
751 /* Cleanup orphan index entries */
752 err = ovl_cleanup(dir, index);
753 }
Amir Goldstein9f4ec902017-09-24 17:36:26 +0300754
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300755 inode_unlock(dir);
756 if (err)
757 goto fail;
758
759out:
Amir Goldstein63e13252018-09-18 16:34:31 +0300760 kfree(name.name);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300761 dput(index);
762 return;
763
764fail:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800765 pr_err("cleanup index of '%pd2' failed (%i)\n", dentry, err);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300766 goto out;
767}
768
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300769/*
770 * Operations that change overlay inode and upper inode nlink need to be
771 * synchronized with copy up for persistent nlink accounting.
772 */
Amir Goldstein0e329922018-10-18 18:37:13 +0300773int ovl_nlink_start(struct dentry *dentry)
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300774{
Amir Goldstein1e92e302018-10-18 18:37:14 +0300775 struct inode *inode = d_inode(dentry);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300776 const struct cred *old_cred;
777 int err;
778
Amir Goldstein1e92e302018-10-18 18:37:14 +0300779 if (WARN_ON(!inode))
Amir Goldstein0e329922018-10-18 18:37:13 +0300780 return -ENOENT;
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300781
782 /*
783 * With inodes index is enabled, we store the union overlay nlink
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300784 * in an xattr on the index inode. When whiting out an indexed lower,
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300785 * we need to decrement the overlay persistent nlink, but before the
786 * first copy up, we have no upper index inode to store the xattr.
787 *
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300788 * As a workaround, before whiteout/rename over an indexed lower,
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300789 * copy up to create the upper index. Creating the upper index will
790 * initialize the overlay nlink, so it could be dropped if unlink
791 * or rename succeeds.
792 *
793 * TODO: implement metadata only index copy up when called with
794 * ovl_copy_up_flags(dentry, O_PATH).
795 */
Amir Goldstein24b33ee2017-09-26 07:55:26 +0300796 if (ovl_need_index(dentry) && !ovl_dentry_has_upper_alias(dentry)) {
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300797 err = ovl_copy_up(dentry);
798 if (err)
799 return err;
800 }
801
Amir Goldstein531d3042020-03-02 15:03:35 +0200802 err = ovl_inode_lock_interruptible(inode);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300803 if (err)
804 return err;
805
Amir Goldstein1e92e302018-10-18 18:37:14 +0300806 if (d_is_dir(dentry) || !ovl_test_flag(OVL_INDEX, inode))
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300807 goto out;
808
809 old_cred = ovl_override_creds(dentry->d_sb);
810 /*
811 * The overlay inode nlink should be incremented/decremented IFF the
812 * upper operation succeeds, along with nlink change of upper inode.
813 * Therefore, before link/unlink/rename, we store the union nlink
814 * value relative to the upper inode nlink in an upper inode xattr.
815 */
816 err = ovl_set_nlink_upper(dentry);
817 revert_creds(old_cred);
818
819out:
820 if (err)
Amir Goldstein1e92e302018-10-18 18:37:14 +0300821 ovl_inode_unlock(inode);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300822
823 return err;
824}
825
Amir Goldstein0e329922018-10-18 18:37:13 +0300826void ovl_nlink_end(struct dentry *dentry)
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300827{
Amir Goldstein1e92e302018-10-18 18:37:14 +0300828 struct inode *inode = d_inode(dentry);
829
830 if (ovl_test_flag(OVL_INDEX, inode) && inode->i_nlink == 0) {
Amir Goldstein0e329922018-10-18 18:37:13 +0300831 const struct cred *old_cred;
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300832
Amir Goldstein0e329922018-10-18 18:37:13 +0300833 old_cred = ovl_override_creds(dentry->d_sb);
834 ovl_cleanup_index(dentry);
835 revert_creds(old_cred);
Amir Goldsteincaf70cb2017-06-21 13:46:12 +0300836 }
Amir Goldstein0e329922018-10-18 18:37:13 +0300837
Amir Goldstein1e92e302018-10-18 18:37:14 +0300838 ovl_inode_unlock(inode);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300839}
Amir Goldstein5820dc02017-09-25 16:39:55 +0300840
841int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir)
842{
843 /* Workdir should not be the same as upperdir */
844 if (workdir == upperdir)
845 goto err;
846
847 /* Workdir should not be subdir of upperdir and vice versa */
848 if (lock_rename(workdir, upperdir) != NULL)
849 goto err_unlock;
850
851 return 0;
852
853err_unlock:
854 unlock_rename(workdir, upperdir);
855err:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800856 pr_err("failed to lock workdir+upperdir\n");
Amir Goldstein5820dc02017-09-25 16:39:55 +0300857 return -EIO;
858}
Vivek Goyal9d3dfea2018-05-11 11:49:28 -0400859
860/* err < 0, 0 if no metacopy xattr, 1 if metacopy xattr found */
Miklos Szeredi610afc02020-09-02 10:58:49 +0200861int ovl_check_metacopy_xattr(struct ovl_fs *ofs, struct dentry *dentry)
Vivek Goyal9d3dfea2018-05-11 11:49:28 -0400862{
863 int res;
864
865 /* Only regular files can have metacopy xattr */
866 if (!S_ISREG(d_inode(dentry)->i_mode))
867 return 0;
868
Miklos Szeredi610afc02020-09-02 10:58:49 +0200869 res = ovl_do_getxattr(ofs, dentry, OVL_XATTR_METACOPY, NULL, 0);
Vivek Goyal9d3dfea2018-05-11 11:49:28 -0400870 if (res < 0) {
871 if (res == -ENODATA || res == -EOPNOTSUPP)
872 return 0;
Miklos Szeredi87b2c602020-12-14 15:26:14 +0100873 /*
874 * getxattr on user.* may fail with EACCES in case there's no
875 * read permission on the inode. Not much we can do, other than
876 * tell the caller that this is not a metacopy inode.
877 */
878 if (ofs->config.userxattr && res == -EACCES)
879 return 0;
Vivek Goyal9d3dfea2018-05-11 11:49:28 -0400880 goto out;
881 }
882
883 return 1;
884out:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800885 pr_warn_ratelimited("failed to get metacopy (%i)\n", res);
Vivek Goyal9d3dfea2018-05-11 11:49:28 -0400886 return res;
887}
Vivek Goyal67d756c22018-05-11 11:49:30 -0400888
889bool ovl_is_metacopy_dentry(struct dentry *dentry)
890{
891 struct ovl_entry *oe = dentry->d_fsdata;
892
893 if (!d_is_reg(dentry))
894 return false;
895
896 if (ovl_dentry_upper(dentry)) {
897 if (!ovl_has_upperdata(d_inode(dentry)))
898 return true;
899 return false;
900 }
901
902 return (oe->numlower > 1);
903}
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400904
Miklos Szeredi610afc02020-09-02 10:58:49 +0200905char *ovl_get_redirect_xattr(struct ovl_fs *ofs, struct dentry *dentry,
906 int padding)
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400907{
908 int res;
909 char *s, *next, *buf = NULL;
910
Miklos Szeredi610afc02020-09-02 10:58:49 +0200911 res = ovl_do_getxattr(ofs, dentry, OVL_XATTR_REDIRECT, NULL, 0);
Miklos Szeredi92f0d6c2020-09-02 10:58:48 +0200912 if (res == -ENODATA || res == -EOPNOTSUPP)
Vivek Goyal993a0b22019-01-30 14:01:57 -0500913 return NULL;
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400914 if (res < 0)
Miklos Szeredi92f0d6c2020-09-02 10:58:48 +0200915 goto fail;
916 if (res == 0)
917 goto invalid;
918
919 buf = kzalloc(res + padding + 1, GFP_KERNEL);
920 if (!buf)
921 return ERR_PTR(-ENOMEM);
922
Miklos Szeredi610afc02020-09-02 10:58:49 +0200923 res = ovl_do_getxattr(ofs, dentry, OVL_XATTR_REDIRECT, buf, res);
Miklos Szeredi92f0d6c2020-09-02 10:58:48 +0200924 if (res < 0)
925 goto fail;
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400926 if (res == 0)
927 goto invalid;
928
929 if (buf[0] == '/') {
930 for (s = buf; *s++ == '/'; s = next) {
931 next = strchrnul(s, '/');
932 if (s == next)
933 goto invalid;
934 }
935 } else {
936 if (strchr(buf, '/') != NULL)
937 goto invalid;
938 }
939
940 return buf;
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400941invalid:
lijiazi1bd0a3a2019-12-16 19:12:32 +0800942 pr_warn_ratelimited("invalid redirect (%s)\n", buf);
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400943 res = -EINVAL;
Miklos Szeredi92f0d6c2020-09-02 10:58:48 +0200944 goto err_free;
945fail:
946 pr_warn_ratelimited("failed to get redirect (%i)\n", res);
947err_free:
Vivek Goyal993a0b22019-01-30 14:01:57 -0500948 kfree(buf);
949 return ERR_PTR(res);
Vivek Goyal0a2d0d32018-05-11 11:49:32 -0400950}
Sargun Dhillon335d3fc2021-01-07 16:10:43 -0800951
952/*
953 * ovl_sync_status() - Check fs sync status for volatile mounts
954 *
955 * Returns 1 if this is not a volatile mount and a real sync is required.
956 *
957 * Returns 0 if syncing can be skipped because mount is volatile, and no errors
958 * have occurred on the upperdir since the mount.
959 *
960 * Returns -errno if it is a volatile mount, and the error that occurred since
961 * the last mount. If the error code changes, it'll return the latest error
962 * code.
963 */
964
965int ovl_sync_status(struct ovl_fs *ofs)
966{
967 struct vfsmount *mnt;
968
969 if (ovl_should_sync(ofs))
970 return 1;
971
972 mnt = ovl_upper_mnt(ofs);
973 if (!mnt)
974 return 0;
975
976 return errseq_check(&mnt->mnt_sb->s_wb_err, ofs->errseq);
977}