blob: 741dc0b6931fe90fc62874989c93e659f7e7a4ef [file] [log] [blame]
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001/*
2 *
3 * Copyright (C) 2011 Novell 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/kernel.h>
11
Miklos Szeredie9be9d52014-10-24 00:14:38 +020012enum ovl_path_type {
Miklos Szeredi38e813d2016-12-16 11:02:55 +010013 __OVL_PATH_UPPER = (1 << 0),
14 __OVL_PATH_MERGE = (1 << 1),
Miklos Szeredie9be9d52014-10-24 00:14:38 +020015};
16
Miklos Szeredi1afaba12014-12-13 00:59:42 +010017#define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER)
18#define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE)
Miklos Szeredid837a492016-07-29 12:05:24 +020019
Andreas Gruenbacherfe2b7592016-08-22 17:59:22 +020020#define OVL_XATTR_PREFIX XATTR_TRUSTED_PREFIX "overlay."
21#define OVL_XATTR_OPAQUE OVL_XATTR_PREFIX "opaque"
Miklos Szeredi02b69b22016-12-16 11:02:56 +010022#define OVL_XATTR_REDIRECT OVL_XATTR_PREFIX "redirect"
Miklos Szeredie9be9d52014-10-24 00:14:38 +020023
Miklos Szeredi39b681f2016-07-29 12:05:24 +020024#define OVL_ISUPPER_MASK 1UL
25
Miklos Szeredie9be9d52014-10-24 00:14:38 +020026static inline int ovl_do_rmdir(struct inode *dir, struct dentry *dentry)
27{
28 int err = vfs_rmdir(dir, dentry);
29 pr_debug("rmdir(%pd2) = %i\n", dentry, err);
30 return err;
31}
32
33static inline int ovl_do_unlink(struct inode *dir, struct dentry *dentry)
34{
35 int err = vfs_unlink(dir, dentry, NULL);
36 pr_debug("unlink(%pd2) = %i\n", dentry, err);
37 return err;
38}
39
40static inline int ovl_do_link(struct dentry *old_dentry, struct inode *dir,
41 struct dentry *new_dentry, bool debug)
42{
43 int err = vfs_link(old_dentry, dir, new_dentry, NULL);
44 if (debug) {
45 pr_debug("link(%pd2, %pd2) = %i\n",
46 old_dentry, new_dentry, err);
47 }
48 return err;
49}
50
51static inline int ovl_do_create(struct inode *dir, struct dentry *dentry,
52 umode_t mode, bool debug)
53{
54 int err = vfs_create(dir, dentry, mode, true);
55 if (debug)
56 pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
57 return err;
58}
59
60static inline int ovl_do_mkdir(struct inode *dir, struct dentry *dentry,
61 umode_t mode, bool debug)
62{
63 int err = vfs_mkdir(dir, dentry, mode);
64 if (debug)
65 pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
66 return err;
67}
68
69static inline int ovl_do_mknod(struct inode *dir, struct dentry *dentry,
70 umode_t mode, dev_t dev, bool debug)
71{
72 int err = vfs_mknod(dir, dentry, mode, dev);
73 if (debug) {
74 pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n",
75 dentry, mode, dev, err);
76 }
77 return err;
78}
79
80static inline int ovl_do_symlink(struct inode *dir, struct dentry *dentry,
81 const char *oldname, bool debug)
82{
83 int err = vfs_symlink(dir, dentry, oldname);
84 if (debug)
85 pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
86 return err;
87}
88
89static inline int ovl_do_setxattr(struct dentry *dentry, const char *name,
90 const void *value, size_t size, int flags)
91{
92 int err = vfs_setxattr(dentry, name, value, size, flags);
93 pr_debug("setxattr(%pd2, \"%s\", \"%*s\", 0x%x) = %i\n",
94 dentry, name, (int) size, (char *) value, flags, err);
95 return err;
96}
97
98static inline int ovl_do_removexattr(struct dentry *dentry, const char *name)
99{
100 int err = vfs_removexattr(dentry, name);
101 pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
102 return err;
103}
104
105static inline int ovl_do_rename(struct inode *olddir, struct dentry *olddentry,
106 struct inode *newdir, struct dentry *newdentry,
107 unsigned int flags)
108{
109 int err;
110
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200111 pr_debug("rename(%pd2, %pd2, 0x%x)\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200112 olddentry, newdentry, flags);
113
114 err = vfs_rename(olddir, olddentry, newdir, newdentry, NULL, flags);
115
116 if (err) {
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200117 pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200118 olddentry, newdentry, err);
119 }
120 return err;
121}
122
123static inline int ovl_do_whiteout(struct inode *dir, struct dentry *dentry)
124{
125 int err = vfs_whiteout(dir, dentry);
126 pr_debug("whiteout(%pd2) = %i\n", dentry, err);
127 return err;
128}
129
Amir Goldsteine7f52422017-01-17 06:34:53 +0200130static inline struct dentry *ovl_do_tmpfile(struct dentry *dentry, umode_t mode)
131{
132 struct dentry *ret = vfs_tmpfile(dentry, mode, 0);
133 int err = IS_ERR(ret) ? PTR_ERR(ret) : 0;
134
135 pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err);
136 return ret;
137}
138
Miklos Szeredi39b681f2016-07-29 12:05:24 +0200139static inline struct inode *ovl_inode_real(struct inode *inode, bool *is_upper)
140{
141 unsigned long x = (unsigned long) READ_ONCE(inode->i_private);
142
143 if (is_upper)
144 *is_upper = x & OVL_ISUPPER_MASK;
145
146 return (struct inode *) (x & ~OVL_ISUPPER_MASK);
147}
148
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100149/* util.c */
150int ovl_want_write(struct dentry *dentry);
151void ovl_drop_write(struct dentry *dentry);
152struct dentry *ovl_workdir(struct dentry *dentry);
153const struct cred *ovl_override_creds(struct super_block *sb);
154struct ovl_entry *ovl_alloc_entry(unsigned int numlower);
155bool ovl_dentry_remote(struct dentry *dentry);
156bool ovl_dentry_weird(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200157enum ovl_path_type ovl_path_type(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200158void ovl_path_upper(struct dentry *dentry, struct path *path);
159void ovl_path_lower(struct dentry *dentry, struct path *path);
160enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200161struct dentry *ovl_dentry_upper(struct dentry *dentry);
162struct dentry *ovl_dentry_lower(struct dentry *dentry);
163struct dentry *ovl_dentry_real(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200164struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry);
165void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200166bool ovl_dentry_is_opaque(struct dentry *dentry);
Miklos Szeredic412ce42016-12-16 11:02:55 +0100167bool ovl_dentry_is_whiteout(struct dentry *dentry);
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100168void ovl_dentry_set_opaque(struct dentry *dentry);
Miklos Szeredia6c60652016-12-16 11:02:56 +0100169bool ovl_redirect_dir(struct super_block *sb);
170void ovl_clear_redirect_dir(struct super_block *sb);
171const char *ovl_dentry_get_redirect(struct dentry *dentry);
172void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200173void ovl_dentry_update(struct dentry *dentry, struct dentry *upperdentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100174void ovl_inode_init(struct inode *inode, struct inode *realinode,
175 bool is_upper);
Miklos Szeredi39b681f2016-07-29 12:05:24 +0200176void ovl_inode_update(struct inode *inode, struct inode *upperinode);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100177void ovl_dentry_version_inc(struct dentry *dentry);
178u64 ovl_dentry_version_get(struct dentry *dentry);
179bool ovl_is_whiteout(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200180struct file *ovl_path_open(struct path *path, int flags);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200181int ovl_copy_up_start(struct dentry *dentry);
182void ovl_copy_up_end(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200183
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100184/* namei.c */
185int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
186struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags);
187bool ovl_lower_positive(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200188
189/* readdir.c */
190extern const struct file_operations ovl_dir_operations;
191int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
192void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
193void ovl_cache_free(struct list_head *list);
Vivek Goyal45aebea2016-02-22 09:28:34 -0500194int ovl_check_d_type_supported(struct path *realpath);
Miklos Szeredieea2fb42016-09-01 11:11:59 +0200195void ovl_workdir_cleanup(struct inode *dir, struct vfsmount *mnt,
196 struct dentry *dentry, int level);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200197
198/* inode.c */
199int ovl_setattr(struct dentry *dentry, struct iattr *attr);
200int ovl_permission(struct inode *inode, int mask);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200201int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
202 size_t size, int flags);
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200203int ovl_xattr_get(struct dentry *dentry, const char *name,
204 void *value, size_t size);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200205ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
Vivek Goyal39a25b22016-07-01 16:34:26 -0400206struct posix_acl *ovl_get_acl(struct inode *inode, int type);
Miklos Szeredi2d902672016-06-30 08:53:27 +0200207int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags);
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200208int ovl_update_time(struct inode *inode, struct timespec *ts, int flags);
Miklos Szeredi09562542016-08-08 15:08:49 +0200209bool ovl_is_private_xattr(const char *name);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200210
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100211struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev);
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200212struct inode *ovl_get_inode(struct super_block *sb, struct inode *realinode);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200213static inline void ovl_copyattr(struct inode *from, struct inode *to)
214{
215 to->i_uid = from->i_uid;
216 to->i_gid = from->i_gid;
Vivek Goyal07a2daa2016-07-01 16:34:25 -0400217 to->i_mode = from->i_mode;
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200218 to->i_atime = from->i_atime;
219 to->i_mtime = from->i_mtime;
220 to->i_ctime = from->i_ctime;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200221}
222
223/* dir.c */
224extern const struct inode_operations ovl_dir_inode_operations;
225struct dentry *ovl_lookup_temp(struct dentry *workdir, struct dentry *dentry);
Al Viro32a3d842016-12-04 17:33:17 +0000226struct cattr {
227 dev_t rdev;
228 umode_t mode;
229 const char *link;
230};
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200231int ovl_create_real(struct inode *dir, struct dentry *newdentry,
Al Viro32a3d842016-12-04 17:33:17 +0000232 struct cattr *attr,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200233 struct dentry *hardlink, bool debug);
234void ovl_cleanup(struct inode *dir, struct dentry *dentry);
235
236/* copy_up.c */
237int ovl_copy_up(struct dentry *dentry);
Amir Goldstein9aba6522016-11-12 21:36:03 +0200238int ovl_copy_up_flags(struct dentry *dentry, int flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200239int ovl_copy_xattr(struct dentry *old, struct dentry *new);
240int ovl_set_attr(struct dentry *upper, struct kstat *stat);