]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - fs/overlayfs/util.c
c80b4bf1e64f1ce06244d98a0a8823cabdc7df8e
[mirror_ubuntu-bionic-kernel.git] / fs / overlayfs / util.c
1 /*
2 * Copyright (C) 2011 Novell Inc.
3 * Copyright (C) 2016 Red Hat, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
9
10 #include <linux/fs.h>
11 #include <linux/mount.h>
12 #include <linux/slab.h>
13 #include <linux/cred.h>
14 #include <linux/xattr.h>
15 #include <linux/exportfs.h>
16 #include <linux/uuid.h>
17 #include "overlayfs.h"
18 #include "ovl_entry.h"
19
20 int ovl_want_write(struct dentry *dentry)
21 {
22 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
23 return mnt_want_write(ofs->upper_mnt);
24 }
25
26 void ovl_drop_write(struct dentry *dentry)
27 {
28 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
29 mnt_drop_write(ofs->upper_mnt);
30 }
31
32 struct dentry *ovl_workdir(struct dentry *dentry)
33 {
34 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
35 return ofs->workdir;
36 }
37
38 const struct cred *ovl_override_creds(struct super_block *sb)
39 {
40 struct ovl_fs *ofs = sb->s_fs_info;
41
42 return override_creds(ofs->creator_cred);
43 }
44
45 struct super_block *ovl_same_sb(struct super_block *sb)
46 {
47 struct ovl_fs *ofs = sb->s_fs_info;
48
49 return ofs->same_sb;
50 }
51
52 bool ovl_can_decode_fh(struct super_block *sb)
53 {
54 return (sb->s_export_op && sb->s_export_op->fh_to_dentry &&
55 !uuid_is_null(&sb->s_uuid));
56 }
57
58 struct dentry *ovl_indexdir(struct super_block *sb)
59 {
60 struct ovl_fs *ofs = sb->s_fs_info;
61
62 return ofs->indexdir;
63 }
64
65 struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
66 {
67 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
68 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
69
70 if (oe)
71 oe->numlower = numlower;
72
73 return oe;
74 }
75
76 bool ovl_dentry_remote(struct dentry *dentry)
77 {
78 return dentry->d_flags &
79 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE |
80 DCACHE_OP_REAL);
81 }
82
83 bool ovl_dentry_weird(struct dentry *dentry)
84 {
85 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
86 DCACHE_MANAGE_TRANSIT |
87 DCACHE_OP_HASH |
88 DCACHE_OP_COMPARE);
89 }
90
91 enum ovl_path_type ovl_path_type(struct dentry *dentry)
92 {
93 struct ovl_entry *oe = dentry->d_fsdata;
94 enum ovl_path_type type = 0;
95
96 if (ovl_dentry_upper(dentry)) {
97 type = __OVL_PATH_UPPER;
98
99 /*
100 * Non-dir dentry can hold lower dentry of its copy up origin.
101 */
102 if (oe->numlower) {
103 type |= __OVL_PATH_ORIGIN;
104 if (d_is_dir(dentry))
105 type |= __OVL_PATH_MERGE;
106 }
107 } else {
108 if (oe->numlower > 1)
109 type |= __OVL_PATH_MERGE;
110 }
111 return type;
112 }
113
114 void ovl_path_upper(struct dentry *dentry, struct path *path)
115 {
116 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
117
118 path->mnt = ofs->upper_mnt;
119 path->dentry = ovl_dentry_upper(dentry);
120 }
121
122 void ovl_path_lower(struct dentry *dentry, struct path *path)
123 {
124 struct ovl_entry *oe = dentry->d_fsdata;
125
126 *path = oe->numlower ? oe->lowerstack[0] : (struct path) { };
127 }
128
129 enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
130 {
131 enum ovl_path_type type = ovl_path_type(dentry);
132
133 if (!OVL_TYPE_UPPER(type))
134 ovl_path_lower(dentry, path);
135 else
136 ovl_path_upper(dentry, path);
137
138 return type;
139 }
140
141 struct dentry *ovl_dentry_upper(struct dentry *dentry)
142 {
143 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry)));
144 }
145
146 struct dentry *ovl_dentry_lower(struct dentry *dentry)
147 {
148 struct ovl_entry *oe = dentry->d_fsdata;
149
150 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
151 }
152
153 struct dentry *ovl_dentry_real(struct dentry *dentry)
154 {
155 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry);
156 }
157
158 struct inode *ovl_inode_upper(struct inode *inode)
159 {
160 struct dentry *upperdentry = ovl_upperdentry_dereference(OVL_I(inode));
161
162 return upperdentry ? d_inode(upperdentry) : NULL;
163 }
164
165 struct inode *ovl_inode_lower(struct inode *inode)
166 {
167 return OVL_I(inode)->lower;
168 }
169
170 struct inode *ovl_inode_real(struct inode *inode)
171 {
172 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode);
173 }
174
175
176 struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry)
177 {
178 return OVL_I(d_inode(dentry))->cache;
179 }
180
181 void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache)
182 {
183 OVL_I(d_inode(dentry))->cache = cache;
184 }
185
186 bool ovl_dentry_is_opaque(struct dentry *dentry)
187 {
188 struct ovl_entry *oe = dentry->d_fsdata;
189 return oe->opaque;
190 }
191
192 bool ovl_dentry_is_whiteout(struct dentry *dentry)
193 {
194 return !dentry->d_inode && ovl_dentry_is_opaque(dentry);
195 }
196
197 void ovl_dentry_set_opaque(struct dentry *dentry)
198 {
199 struct ovl_entry *oe = dentry->d_fsdata;
200
201 oe->opaque = true;
202 }
203
204 bool ovl_redirect_dir(struct super_block *sb)
205 {
206 struct ovl_fs *ofs = sb->s_fs_info;
207
208 return ofs->config.redirect_dir && !ofs->noxattr;
209 }
210
211 const char *ovl_dentry_get_redirect(struct dentry *dentry)
212 {
213 return OVL_I(d_inode(dentry))->redirect;
214 }
215
216 void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect)
217 {
218 struct ovl_inode *oi = OVL_I(d_inode(dentry));
219
220 kfree(oi->redirect);
221 oi->redirect = redirect;
222 }
223
224 void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
225 struct dentry *lowerdentry)
226 {
227 if (upperdentry)
228 OVL_I(inode)->__upperdentry = upperdentry;
229 if (lowerdentry)
230 OVL_I(inode)->lower = d_inode(lowerdentry);
231
232 ovl_copyattr(d_inode(upperdentry ?: lowerdentry), inode);
233 }
234
235 void ovl_inode_update(struct inode *inode, struct dentry *upperdentry)
236 {
237 struct inode *upperinode = d_inode(upperdentry);
238
239 WARN_ON(OVL_I(inode)->__upperdentry);
240
241 /*
242 * Make sure upperdentry is consistent before making it visible
243 */
244 smp_wmb();
245 OVL_I(inode)->__upperdentry = upperdentry;
246 if (!S_ISDIR(upperinode->i_mode) && inode_unhashed(inode)) {
247 inode->i_private = upperinode;
248 __insert_inode_hash(inode, (unsigned long) upperinode);
249 }
250 }
251
252 void ovl_dentry_version_inc(struct dentry *dentry)
253 {
254 struct inode *inode = d_inode(dentry);
255
256 WARN_ON(!inode_is_locked(inode));
257 OVL_I(inode)->version++;
258 }
259
260 u64 ovl_dentry_version_get(struct dentry *dentry)
261 {
262 struct inode *inode = d_inode(dentry);
263
264 WARN_ON(!inode_is_locked(inode));
265 return OVL_I(inode)->version;
266 }
267
268 bool ovl_is_whiteout(struct dentry *dentry)
269 {
270 struct inode *inode = dentry->d_inode;
271
272 return inode && IS_WHITEOUT(inode);
273 }
274
275 struct file *ovl_path_open(struct path *path, int flags)
276 {
277 return dentry_open(path, flags | O_NOATIME, current_cred());
278 }
279
280 int ovl_copy_up_start(struct dentry *dentry)
281 {
282 struct ovl_inode *oi = OVL_I(d_inode(dentry));
283 int err;
284
285 err = mutex_lock_interruptible(&oi->lock);
286 if (!err && ovl_dentry_upper(dentry)) {
287 err = 1; /* Already copied up */
288 mutex_unlock(&oi->lock);
289 }
290
291 return err;
292 }
293
294 void ovl_copy_up_end(struct dentry *dentry)
295 {
296 mutex_unlock(&OVL_I(d_inode(dentry))->lock);
297 }
298
299 bool ovl_check_dir_xattr(struct dentry *dentry, const char *name)
300 {
301 int res;
302 char val;
303
304 if (!d_is_dir(dentry))
305 return false;
306
307 res = vfs_getxattr(dentry, name, &val, 1);
308 if (res == 1 && val == 'y')
309 return true;
310
311 return false;
312 }
313
314 int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
315 const char *name, const void *value, size_t size,
316 int xerr)
317 {
318 int err;
319 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
320
321 if (ofs->noxattr)
322 return xerr;
323
324 err = ovl_do_setxattr(upperdentry, name, value, size, 0);
325
326 if (err == -EOPNOTSUPP) {
327 pr_warn("overlayfs: cannot set %s xattr on upper\n", name);
328 ofs->noxattr = true;
329 return xerr;
330 }
331
332 return err;
333 }
334
335 int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry)
336 {
337 int err;
338
339 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry)))
340 return 0;
341
342 /*
343 * Do not fail when upper doesn't support xattrs.
344 * Upper inodes won't have origin nor redirect xattr anyway.
345 */
346 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE,
347 "y", 1, 0);
348 if (!err)
349 ovl_set_flag(OVL_IMPURE, d_inode(dentry));
350
351 return err;
352 }
353
354 void ovl_set_flag(unsigned long flag, struct inode *inode)
355 {
356 set_bit(flag, &OVL_I(inode)->flags);
357 }
358
359 bool ovl_test_flag(unsigned long flag, struct inode *inode)
360 {
361 return test_bit(flag, &OVL_I(inode)->flags);
362 }
363
364 /**
365 * Caller must hold a reference to inode to prevent it from being freed while
366 * it is marked inuse.
367 */
368 bool ovl_inuse_trylock(struct dentry *dentry)
369 {
370 struct inode *inode = d_inode(dentry);
371 bool locked = false;
372
373 spin_lock(&inode->i_lock);
374 if (!(inode->i_state & I_OVL_INUSE)) {
375 inode->i_state |= I_OVL_INUSE;
376 locked = true;
377 }
378 spin_unlock(&inode->i_lock);
379
380 return locked;
381 }
382
383 void ovl_inuse_unlock(struct dentry *dentry)
384 {
385 if (dentry) {
386 struct inode *inode = d_inode(dentry);
387
388 spin_lock(&inode->i_lock);
389 WARN_ON(!(inode->i_state & I_OVL_INUSE));
390 inode->i_state &= ~I_OVL_INUSE;
391 spin_unlock(&inode->i_lock);
392 }
393 }