1
2
3
4
5
6
7#include <linux/kernel.h>
8#include <linux/uuid.h>
9#include <linux/fs.h>
10#include "ovl_entry.h"
11
12#undef pr_fmt
13#define pr_fmt(fmt) "overlayfs: " fmt
14
15enum ovl_path_type {
16 __OVL_PATH_UPPER = (1 << 0),
17 __OVL_PATH_MERGE = (1 << 1),
18 __OVL_PATH_ORIGIN = (1 << 2),
19};
20
21#define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER)
22#define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE)
23#define OVL_TYPE_ORIGIN(type) ((type) & __OVL_PATH_ORIGIN)
24
25#define OVL_XATTR_NAMESPACE "overlay."
26#define OVL_XATTR_TRUSTED_PREFIX XATTR_TRUSTED_PREFIX OVL_XATTR_NAMESPACE
27#define OVL_XATTR_USER_PREFIX XATTR_USER_PREFIX OVL_XATTR_NAMESPACE
28
29enum ovl_xattr {
30 OVL_XATTR_OPAQUE,
31 OVL_XATTR_REDIRECT,
32 OVL_XATTR_ORIGIN,
33 OVL_XATTR_IMPURE,
34 OVL_XATTR_NLINK,
35 OVL_XATTR_UPPER,
36 OVL_XATTR_METACOPY,
37};
38
39enum ovl_inode_flag {
40
41 OVL_IMPURE,
42
43 OVL_WHITEOUTS,
44 OVL_INDEX,
45 OVL_UPPERDATA,
46
47 OVL_CONST_INO,
48};
49
50enum ovl_entry_flag {
51 OVL_E_UPPER_ALIAS,
52 OVL_E_OPAQUE,
53 OVL_E_CONNECTED,
54};
55
56enum {
57 OVL_XINO_OFF,
58 OVL_XINO_AUTO,
59 OVL_XINO_ON,
60};
61
62
63
64
65
66
67
68#define OVL_FH_VERSION 0
69#define OVL_FH_MAGIC 0xfb
70
71
72#define OVL_FH_FLAG_BIG_ENDIAN (1 << 0)
73#define OVL_FH_FLAG_ANY_ENDIAN (1 << 1)
74
75#define OVL_FH_FLAG_PATH_UPPER (1 << 2)
76
77#define OVL_FH_FLAG_ALL (OVL_FH_FLAG_BIG_ENDIAN | OVL_FH_FLAG_ANY_ENDIAN | \
78 OVL_FH_FLAG_PATH_UPPER)
79
80#if defined(__LITTLE_ENDIAN)
81#define OVL_FH_FLAG_CPU_ENDIAN 0
82#elif defined(__BIG_ENDIAN)
83#define OVL_FH_FLAG_CPU_ENDIAN OVL_FH_FLAG_BIG_ENDIAN
84#else
85#error Endianness not defined
86#endif
87
88
89#define OVL_FILEID_V0 0xfb
90
91#define OVL_FILEID_V1 0xf8
92
93
94struct ovl_fb {
95 u8 version;
96 u8 magic;
97 u8 len;
98 u8 flags;
99 u8 type;
100 uuid_t uuid;
101 u32 fid[];
102} __packed;
103
104
105struct ovl_fh {
106 u8 padding[3];
107 union {
108 struct ovl_fb fb;
109 u8 buf[0];
110 };
111} __packed;
112
113#define OVL_FH_WIRE_OFFSET offsetof(struct ovl_fh, fb)
114#define OVL_FH_LEN(fh) (OVL_FH_WIRE_OFFSET + (fh)->fb.len)
115#define OVL_FH_FID_OFFSET (OVL_FH_WIRE_OFFSET + \
116 offsetof(struct ovl_fb, fid))
117
118extern const char *const ovl_xattr_table[][2];
119static inline const char *ovl_xattr(struct ovl_fs *ofs, enum ovl_xattr ox)
120{
121 return ovl_xattr_table[ox][ofs->config.userxattr];
122}
123
124static inline int ovl_do_rmdir(struct inode *dir, struct dentry *dentry)
125{
126 int err = vfs_rmdir(&init_user_ns, dir, dentry);
127
128 pr_debug("rmdir(%pd2) = %i\n", dentry, err);
129 return err;
130}
131
132static inline int ovl_do_unlink(struct inode *dir, struct dentry *dentry)
133{
134 int err = vfs_unlink(&init_user_ns, dir, dentry, NULL);
135
136 pr_debug("unlink(%pd2) = %i\n", dentry, err);
137 return err;
138}
139
140static inline int ovl_do_link(struct dentry *old_dentry, struct inode *dir,
141 struct dentry *new_dentry)
142{
143 int err = vfs_link(old_dentry, &init_user_ns, dir, new_dentry, NULL);
144
145 pr_debug("link(%pd2, %pd2) = %i\n", old_dentry, new_dentry, err);
146 return err;
147}
148
149static inline int ovl_do_create(struct inode *dir, struct dentry *dentry,
150 umode_t mode)
151{
152 int err = vfs_create(&init_user_ns, dir, dentry, mode, true);
153
154 pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
155 return err;
156}
157
158static inline int ovl_do_mkdir(struct inode *dir, struct dentry *dentry,
159 umode_t mode)
160{
161 int err = vfs_mkdir(&init_user_ns, dir, dentry, mode);
162 pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
163 return err;
164}
165
166static inline int ovl_do_mknod(struct inode *dir, struct dentry *dentry,
167 umode_t mode, dev_t dev)
168{
169 int err = vfs_mknod(&init_user_ns, dir, dentry, mode, dev);
170
171 pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n", dentry, mode, dev, err);
172 return err;
173}
174
175static inline int ovl_do_symlink(struct inode *dir, struct dentry *dentry,
176 const char *oldname)
177{
178 int err = vfs_symlink(&init_user_ns, dir, dentry, oldname);
179
180 pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
181 return err;
182}
183
184static inline ssize_t ovl_do_getxattr(struct ovl_fs *ofs, struct dentry *dentry,
185 enum ovl_xattr ox, void *value,
186 size_t size)
187{
188 const char *name = ovl_xattr(ofs, ox);
189 int err = vfs_getxattr(&init_user_ns, dentry, name, value, size);
190 int len = (value && err > 0) ? err : 0;
191
192 pr_debug("getxattr(%pd2, \"%s\", \"%*pE\", %zu, 0) = %i\n",
193 dentry, name, min(len, 48), value, size, err);
194 return err;
195}
196
197static inline int ovl_do_setxattr(struct ovl_fs *ofs, struct dentry *dentry,
198 enum ovl_xattr ox, const void *value,
199 size_t size)
200{
201 const char *name = ovl_xattr(ofs, ox);
202 int err = vfs_setxattr(&init_user_ns, dentry, name, value, size, 0);
203 pr_debug("setxattr(%pd2, \"%s\", \"%*pE\", %zu, 0) = %i\n",
204 dentry, name, min((int)size, 48), value, size, err);
205 return err;
206}
207
208static inline int ovl_do_removexattr(struct ovl_fs *ofs, struct dentry *dentry,
209 enum ovl_xattr ox)
210{
211 const char *name = ovl_xattr(ofs, ox);
212 int err = vfs_removexattr(&init_user_ns, dentry, name);
213 pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
214 return err;
215}
216
217static inline int ovl_do_rename(struct inode *olddir, struct dentry *olddentry,
218 struct inode *newdir, struct dentry *newdentry,
219 unsigned int flags)
220{
221 int err;
222 struct renamedata rd = {
223 .old_mnt_userns = &init_user_ns,
224 .old_dir = olddir,
225 .old_dentry = olddentry,
226 .new_mnt_userns = &init_user_ns,
227 .new_dir = newdir,
228 .new_dentry = newdentry,
229 .flags = flags,
230 };
231
232 pr_debug("rename(%pd2, %pd2, 0x%x)\n", olddentry, newdentry, flags);
233 err = vfs_rename(&rd);
234 if (err) {
235 pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
236 olddentry, newdentry, err);
237 }
238 return err;
239}
240
241static inline int ovl_do_whiteout(struct inode *dir, struct dentry *dentry)
242{
243 int err = vfs_whiteout(&init_user_ns, dir, dentry);
244 pr_debug("whiteout(%pd2) = %i\n", dentry, err);
245 return err;
246}
247
248static inline struct dentry *ovl_do_tmpfile(struct dentry *dentry, umode_t mode)
249{
250 struct dentry *ret = vfs_tmpfile(&init_user_ns, dentry, mode, 0);
251 int err = PTR_ERR_OR_ZERO(ret);
252
253 pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err);
254 return ret;
255}
256
257static inline bool ovl_open_flags_need_copy_up(int flags)
258{
259 if (!flags)
260 return false;
261
262 return ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC));
263}
264
265
266int ovl_want_write(struct dentry *dentry);
267void ovl_drop_write(struct dentry *dentry);
268struct dentry *ovl_workdir(struct dentry *dentry);
269const struct cred *ovl_override_creds(struct super_block *sb);
270int ovl_can_decode_fh(struct super_block *sb);
271struct dentry *ovl_indexdir(struct super_block *sb);
272bool ovl_index_all(struct super_block *sb);
273bool ovl_verify_lower(struct super_block *sb);
274struct ovl_entry *ovl_alloc_entry(unsigned int numlower);
275bool ovl_dentry_remote(struct dentry *dentry);
276void ovl_dentry_update_reval(struct dentry *dentry, struct dentry *upperdentry,
277 unsigned int mask);
278bool ovl_dentry_weird(struct dentry *dentry);
279enum ovl_path_type ovl_path_type(struct dentry *dentry);
280void ovl_path_upper(struct dentry *dentry, struct path *path);
281void ovl_path_lower(struct dentry *dentry, struct path *path);
282void ovl_path_lowerdata(struct dentry *dentry, struct path *path);
283enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
284struct dentry *ovl_dentry_upper(struct dentry *dentry);
285struct dentry *ovl_dentry_lower(struct dentry *dentry);
286struct dentry *ovl_dentry_lowerdata(struct dentry *dentry);
287const struct ovl_layer *ovl_layer_lower(struct dentry *dentry);
288struct dentry *ovl_dentry_real(struct dentry *dentry);
289struct dentry *ovl_i_dentry_upper(struct inode *inode);
290struct inode *ovl_inode_upper(struct inode *inode);
291struct inode *ovl_inode_lower(struct inode *inode);
292struct inode *ovl_inode_lowerdata(struct inode *inode);
293struct inode *ovl_inode_real(struct inode *inode);
294struct inode *ovl_inode_realdata(struct inode *inode);
295struct ovl_dir_cache *ovl_dir_cache(struct inode *inode);
296void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache);
297void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry);
298void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry);
299bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry);
300bool ovl_dentry_is_opaque(struct dentry *dentry);
301bool ovl_dentry_is_whiteout(struct dentry *dentry);
302void ovl_dentry_set_opaque(struct dentry *dentry);
303bool ovl_dentry_has_upper_alias(struct dentry *dentry);
304void ovl_dentry_set_upper_alias(struct dentry *dentry);
305bool ovl_dentry_needs_data_copy_up(struct dentry *dentry, int flags);
306bool ovl_dentry_needs_data_copy_up_locked(struct dentry *dentry, int flags);
307bool ovl_has_upperdata(struct inode *inode);
308void ovl_set_upperdata(struct inode *inode);
309bool ovl_redirect_dir(struct super_block *sb);
310const char *ovl_dentry_get_redirect(struct dentry *dentry);
311void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect);
312void ovl_inode_update(struct inode *inode, struct dentry *upperdentry);
313void ovl_dir_modified(struct dentry *dentry, bool impurity);
314u64 ovl_dentry_version_get(struct dentry *dentry);
315bool ovl_is_whiteout(struct dentry *dentry);
316struct file *ovl_path_open(struct path *path, int flags);
317int ovl_copy_up_start(struct dentry *dentry, int flags);
318void ovl_copy_up_end(struct dentry *dentry);
319bool ovl_already_copied_up(struct dentry *dentry, int flags);
320bool ovl_check_origin_xattr(struct ovl_fs *ofs, struct dentry *dentry);
321bool ovl_check_dir_xattr(struct super_block *sb, struct dentry *dentry,
322 enum ovl_xattr ox);
323int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
324 enum ovl_xattr ox, const void *value, size_t size,
325 int xerr);
326int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry);
327bool ovl_inuse_trylock(struct dentry *dentry);
328void ovl_inuse_unlock(struct dentry *dentry);
329bool ovl_is_inuse(struct dentry *dentry);
330bool ovl_need_index(struct dentry *dentry);
331int ovl_nlink_start(struct dentry *dentry);
332void ovl_nlink_end(struct dentry *dentry);
333int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir);
334int ovl_check_metacopy_xattr(struct ovl_fs *ofs, struct dentry *dentry);
335bool ovl_is_metacopy_dentry(struct dentry *dentry);
336char *ovl_get_redirect_xattr(struct ovl_fs *ofs, struct dentry *dentry,
337 int padding);
338int ovl_sync_status(struct ovl_fs *ofs);
339
340static inline void ovl_set_flag(unsigned long flag, struct inode *inode)
341{
342 set_bit(flag, &OVL_I(inode)->flags);
343}
344
345static inline void ovl_clear_flag(unsigned long flag, struct inode *inode)
346{
347 clear_bit(flag, &OVL_I(inode)->flags);
348}
349
350static inline bool ovl_test_flag(unsigned long flag, struct inode *inode)
351{
352 return test_bit(flag, &OVL_I(inode)->flags);
353}
354
355static inline bool ovl_is_impuredir(struct super_block *sb,
356 struct dentry *dentry)
357{
358 return ovl_check_dir_xattr(sb, dentry, OVL_XATTR_IMPURE);
359}
360
361
362
363
364
365
366static inline bool ovl_xino_warn(struct super_block *sb)
367{
368 return OVL_FS(sb)->config.xino == OVL_XINO_ON;
369}
370
371
372static inline bool ovl_same_fs(struct super_block *sb)
373{
374 return OVL_FS(sb)->xino_mode == 0;
375}
376
377
378static inline bool ovl_same_dev(struct super_block *sb)
379{
380 return OVL_FS(sb)->xino_mode >= 0;
381}
382
383static inline unsigned int ovl_xino_bits(struct super_block *sb)
384{
385 return ovl_same_dev(sb) ? OVL_FS(sb)->xino_mode : 0;
386}
387
388static inline void ovl_inode_lock(struct inode *inode)
389{
390 mutex_lock(&OVL_I(inode)->lock);
391}
392
393static inline int ovl_inode_lock_interruptible(struct inode *inode)
394{
395 return mutex_lock_interruptible(&OVL_I(inode)->lock);
396}
397
398static inline void ovl_inode_unlock(struct inode *inode)
399{
400 mutex_unlock(&OVL_I(inode)->lock);
401}
402
403
404
405int ovl_check_fb_len(struct ovl_fb *fb, int fb_len);
406
407static inline int ovl_check_fh_len(struct ovl_fh *fh, int fh_len)
408{
409 if (fh_len < sizeof(struct ovl_fh))
410 return -EINVAL;
411
412 return ovl_check_fb_len(&fh->fb, fh_len - OVL_FH_WIRE_OFFSET);
413}
414
415struct dentry *ovl_decode_real_fh(struct ovl_fs *ofs, struct ovl_fh *fh,
416 struct vfsmount *mnt, bool connected);
417int ovl_check_origin_fh(struct ovl_fs *ofs, struct ovl_fh *fh, bool connected,
418 struct dentry *upperdentry, struct ovl_path **stackp);
419int ovl_verify_set_fh(struct ovl_fs *ofs, struct dentry *dentry,
420 enum ovl_xattr ox, struct dentry *real, bool is_upper,
421 bool set);
422struct dentry *ovl_index_upper(struct ovl_fs *ofs, struct dentry *index);
423int ovl_verify_index(struct ovl_fs *ofs, struct dentry *index);
424int ovl_get_index_name(struct ovl_fs *ofs, struct dentry *origin,
425 struct qstr *name);
426struct dentry *ovl_get_index_fh(struct ovl_fs *ofs, struct ovl_fh *fh);
427struct dentry *ovl_lookup_index(struct ovl_fs *ofs, struct dentry *upper,
428 struct dentry *origin, bool verify);
429int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
430struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
431 unsigned int flags);
432bool ovl_lower_positive(struct dentry *dentry);
433
434static inline int ovl_verify_origin(struct ovl_fs *ofs, struct dentry *upper,
435 struct dentry *origin, bool set)
436{
437 return ovl_verify_set_fh(ofs, upper, OVL_XATTR_ORIGIN, origin,
438 false, set);
439}
440
441static inline int ovl_verify_upper(struct ovl_fs *ofs, struct dentry *index,
442 struct dentry *upper, bool set)
443{
444 return ovl_verify_set_fh(ofs, index, OVL_XATTR_UPPER, upper, true, set);
445}
446
447
448extern const struct file_operations ovl_dir_operations;
449struct file *ovl_dir_real_file(const struct file *file, bool want_upper);
450int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
451void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
452void ovl_cache_free(struct list_head *list);
453void ovl_dir_cache_free(struct inode *inode);
454int ovl_check_d_type_supported(struct path *realpath);
455int ovl_workdir_cleanup(struct inode *dir, struct vfsmount *mnt,
456 struct dentry *dentry, int level);
457int ovl_indexdir_cleanup(struct ovl_fs *ofs);
458
459
460
461
462
463
464
465
466static inline bool ovl_dir_is_real(struct dentry *dir)
467{
468 return !ovl_test_flag(OVL_WHITEOUTS, d_inode(dir));
469}
470
471
472int ovl_set_nlink_upper(struct dentry *dentry);
473int ovl_set_nlink_lower(struct dentry *dentry);
474unsigned int ovl_get_nlink(struct ovl_fs *ofs, struct dentry *lowerdentry,
475 struct dentry *upperdentry,
476 unsigned int fallback);
477int ovl_setattr(struct user_namespace *mnt_userns, struct dentry *dentry,
478 struct iattr *attr);
479int ovl_getattr(struct user_namespace *mnt_userns, const struct path *path,
480 struct kstat *stat, u32 request_mask, unsigned int flags);
481int ovl_permission(struct user_namespace *mnt_userns, struct inode *inode,
482 int mask);
483int ovl_xattr_set(struct dentry *dentry, struct inode *inode, const char *name,
484 const void *value, size_t size, int flags);
485int ovl_xattr_get(struct dentry *dentry, struct inode *inode, const char *name,
486 void *value, size_t size);
487ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
488struct posix_acl *ovl_get_acl(struct inode *inode, int type);
489int ovl_update_time(struct inode *inode, struct timespec64 *ts, int flags);
490bool ovl_is_private_xattr(struct super_block *sb, const char *name);
491
492struct ovl_inode_params {
493 struct inode *newinode;
494 struct dentry *upperdentry;
495 struct ovl_path *lowerpath;
496 bool index;
497 unsigned int numlower;
498 char *redirect;
499 struct dentry *lowerdata;
500};
501void ovl_inode_init(struct inode *inode, struct ovl_inode_params *oip,
502 unsigned long ino, int fsid);
503struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev);
504struct inode *ovl_lookup_inode(struct super_block *sb, struct dentry *real,
505 bool is_upper);
506bool ovl_lookup_trap_inode(struct super_block *sb, struct dentry *dir);
507struct inode *ovl_get_trap_inode(struct super_block *sb, struct dentry *dir);
508struct inode *ovl_get_inode(struct super_block *sb,
509 struct ovl_inode_params *oip);
510static inline void ovl_copyattr(struct inode *from, struct inode *to)
511{
512 to->i_uid = from->i_uid;
513 to->i_gid = from->i_gid;
514 to->i_mode = from->i_mode;
515 to->i_atime = from->i_atime;
516 to->i_mtime = from->i_mtime;
517 to->i_ctime = from->i_ctime;
518 i_size_write(to, i_size_read(from));
519}
520
521static inline void ovl_copyflags(struct inode *from, struct inode *to)
522{
523 unsigned int mask = S_SYNC | S_IMMUTABLE | S_APPEND | S_NOATIME;
524
525 inode_set_flags(to, from->i_flags & mask, mask);
526}
527
528
529extern const struct inode_operations ovl_dir_inode_operations;
530int ovl_cleanup_and_whiteout(struct ovl_fs *ofs, struct inode *dir,
531 struct dentry *dentry);
532struct ovl_cattr {
533 dev_t rdev;
534 umode_t mode;
535 const char *link;
536 struct dentry *hardlink;
537};
538
539#define OVL_CATTR(m) (&(struct ovl_cattr) { .mode = (m) })
540
541struct dentry *ovl_create_real(struct inode *dir, struct dentry *newdentry,
542 struct ovl_cattr *attr);
543int ovl_cleanup(struct inode *dir, struct dentry *dentry);
544struct dentry *ovl_lookup_temp(struct dentry *workdir);
545struct dentry *ovl_create_temp(struct dentry *workdir, struct ovl_cattr *attr);
546
547
548extern const struct file_operations ovl_file_operations;
549int __init ovl_aio_request_cache_init(void);
550void ovl_aio_request_cache_destroy(void);
551int ovl_fileattr_get(struct dentry *dentry, struct fileattr *fa);
552int ovl_fileattr_set(struct user_namespace *mnt_userns,
553 struct dentry *dentry, struct fileattr *fa);
554
555
556int ovl_copy_up(struct dentry *dentry);
557int ovl_copy_up_with_data(struct dentry *dentry);
558int ovl_maybe_copy_up(struct dentry *dentry, int flags);
559int ovl_copy_xattr(struct super_block *sb, struct dentry *old,
560 struct dentry *new);
561int ovl_set_attr(struct dentry *upper, struct kstat *stat);
562struct ovl_fh *ovl_encode_real_fh(struct ovl_fs *ofs, struct dentry *real,
563 bool is_upper);
564int ovl_set_origin(struct ovl_fs *ofs, struct dentry *dentry,
565 struct dentry *lower, struct dentry *upper);
566
567
568extern const struct export_operations ovl_export_operations;
569