]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/overlayfs/overlayfs.h
UBUNTU: SAUCE: overlayfs: Skip permission checking for trusted.overlayfs.* xattrs
[mirror_ubuntu-zesty-kernel.git] / fs / overlayfs / overlayfs.h
CommitLineData
e9be9d5e
MS
1/*
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
12struct ovl_entry;
13
14enum ovl_path_type {
1afaba1e
MS
15 __OVL_PATH_PURE = (1 << 0),
16 __OVL_PATH_UPPER = (1 << 1),
17 __OVL_PATH_MERGE = (1 << 2),
e9be9d5e
MS
18};
19
1afaba1e
MS
20#define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER)
21#define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE)
22#define OVL_TYPE_PURE_UPPER(type) ((type) & __OVL_PATH_PURE)
23#define OVL_TYPE_MERGE_OR_LOWER(type) \
24 (OVL_TYPE_MERGE(type) || !OVL_TYPE_UPPER(type))
25
d837a49b 26
fe2b7595
AG
27#define OVL_XATTR_PREFIX XATTR_TRUSTED_PREFIX "overlay."
28#define OVL_XATTR_OPAQUE OVL_XATTR_PREFIX "opaque"
e9be9d5e 29
39b681f8
MS
30#define OVL_ISUPPER_MASK 1UL
31
e9be9d5e
MS
32static inline int ovl_do_rmdir(struct inode *dir, struct dentry *dentry)
33{
34 int err = vfs_rmdir(dir, dentry);
35 pr_debug("rmdir(%pd2) = %i\n", dentry, err);
36 return err;
37}
38
39static inline int ovl_do_unlink(struct inode *dir, struct dentry *dentry)
40{
41 int err = vfs_unlink(dir, dentry, NULL);
42 pr_debug("unlink(%pd2) = %i\n", dentry, err);
43 return err;
44}
45
46static inline int ovl_do_link(struct dentry *old_dentry, struct inode *dir,
47 struct dentry *new_dentry, bool debug)
48{
49 int err = vfs_link(old_dentry, dir, new_dentry, NULL);
50 if (debug) {
51 pr_debug("link(%pd2, %pd2) = %i\n",
52 old_dentry, new_dentry, err);
53 }
54 return err;
55}
56
57static inline int ovl_do_create(struct inode *dir, struct dentry *dentry,
58 umode_t mode, bool debug)
59{
60 int err = vfs_create(dir, dentry, mode, true);
61 if (debug)
62 pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
63 return err;
64}
65
66static inline int ovl_do_mkdir(struct inode *dir, struct dentry *dentry,
67 umode_t mode, bool debug)
68{
69 int err = vfs_mkdir(dir, dentry, mode);
70 if (debug)
71 pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
72 return err;
73}
74
75static inline int ovl_do_mknod(struct inode *dir, struct dentry *dentry,
76 umode_t mode, dev_t dev, bool debug)
77{
78 int err = vfs_mknod(dir, dentry, mode, dev);
79 if (debug) {
80 pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n",
81 dentry, mode, dev, err);
82 }
83 return err;
84}
85
86static inline int ovl_do_symlink(struct inode *dir, struct dentry *dentry,
87 const char *oldname, bool debug)
88{
89 int err = vfs_symlink(dir, dentry, oldname);
90 if (debug)
91 pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
92 return err;
93}
94
95static inline int ovl_do_setxattr(struct dentry *dentry, const char *name,
96 const void *value, size_t size, int flags)
97{
acb0bcdb
SF
98 struct inode *inode = dentry->d_inode;
99 int err;
100
101 inode_lock(inode);
102 err = __vfs_setxattr_noperm(dentry, name, value, size, flags);
103 inode_unlock(inode);
104
e9be9d5e
MS
105 pr_debug("setxattr(%pd2, \"%s\", \"%*s\", 0x%x) = %i\n",
106 dentry, name, (int) size, (char *) value, flags, err);
107 return err;
108}
109
110static inline int ovl_do_removexattr(struct dentry *dentry, const char *name)
111{
acb0bcdb
SF
112 struct inode *inode = dentry->d_inode;
113 int err;
114
115 inode_lock(inode);
116 err = __vfs_removexattr_noperm(dentry, name);
117 inode_unlock(inode);
118
e9be9d5e
MS
119 pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
120 return err;
121}
122
123static inline int ovl_do_rename(struct inode *olddir, struct dentry *olddentry,
124 struct inode *newdir, struct dentry *newdentry,
125 unsigned int flags)
126{
127 int err;
128
2773bf00 129 pr_debug("rename(%pd2, %pd2, 0x%x)\n",
e9be9d5e
MS
130 olddentry, newdentry, flags);
131
132 err = vfs_rename(olddir, olddentry, newdir, newdentry, NULL, flags);
133
134 if (err) {
2773bf00 135 pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
e9be9d5e
MS
136 olddentry, newdentry, err);
137 }
138 return err;
139}
140
141static inline int ovl_do_whiteout(struct inode *dir, struct dentry *dentry)
142{
143 int err = vfs_whiteout(dir, dentry);
144 pr_debug("whiteout(%pd2) = %i\n", dentry, err);
145 return err;
146}
147
39b681f8
MS
148static inline struct inode *ovl_inode_real(struct inode *inode, bool *is_upper)
149{
150 unsigned long x = (unsigned long) READ_ONCE(inode->i_private);
151
152 if (is_upper)
153 *is_upper = x & OVL_ISUPPER_MASK;
154
155 return (struct inode *) (x & ~OVL_ISUPPER_MASK);
156}
157
e9be9d5e
MS
158enum ovl_path_type ovl_path_type(struct dentry *dentry);
159u64 ovl_dentry_version_get(struct dentry *dentry);
160void ovl_dentry_version_inc(struct dentry *dentry);
161void ovl_path_upper(struct dentry *dentry, struct path *path);
162void ovl_path_lower(struct dentry *dentry, struct path *path);
163enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
5ef88da5 164int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
e9be9d5e
MS
165struct dentry *ovl_dentry_upper(struct dentry *dentry);
166struct dentry *ovl_dentry_lower(struct dentry *dentry);
167struct dentry *ovl_dentry_real(struct dentry *dentry);
8d3095f4
MS
168struct vfsmount *ovl_entry_mnt_real(struct ovl_entry *oe, struct inode *inode,
169 bool is_upper);
e9be9d5e
MS
170struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry);
171void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache);
172struct dentry *ovl_workdir(struct dentry *dentry);
173int ovl_want_write(struct dentry *dentry);
174void ovl_drop_write(struct dentry *dentry);
175bool ovl_dentry_is_opaque(struct dentry *dentry);
176void ovl_dentry_set_opaque(struct dentry *dentry, bool opaque);
177bool ovl_is_whiteout(struct dentry *dentry);
3fe6e52f 178const struct cred *ovl_override_creds(struct super_block *sb);
e9be9d5e 179void ovl_dentry_update(struct dentry *dentry, struct dentry *upperdentry);
39b681f8 180void ovl_inode_update(struct inode *inode, struct inode *upperinode);
e9be9d5e
MS
181struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
182 unsigned int flags);
183struct file *ovl_path_open(struct path *path, int flags);
184
185struct dentry *ovl_upper_create(struct dentry *upperdir, struct dentry *dentry,
186 struct kstat *stat, const char *link);
187
188/* readdir.c */
189extern const struct file_operations ovl_dir_operations;
190int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
191void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
192void ovl_cache_free(struct list_head *list);
45aebeaf 193int ovl_check_d_type_supported(struct path *realpath);
eea2fb48
MS
194void ovl_workdir_cleanup(struct inode *dir, struct vfsmount *mnt,
195 struct dentry *dentry, int level);
e9be9d5e
MS
196
197/* inode.c */
198int ovl_setattr(struct dentry *dentry, struct iattr *attr);
199int ovl_permission(struct inode *inode, int mask);
0e585ccc
AG
200int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
201 size_t size, int flags);
0eb45fc3
AG
202int ovl_xattr_get(struct dentry *dentry, const char *name,
203 void *value, size_t size);
e9be9d5e 204ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
39a25b2b 205struct posix_acl *ovl_get_acl(struct inode *inode, int type);
2d902671 206int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags);
d719e8f2 207int ovl_update_time(struct inode *inode, struct timespec *ts, int flags);
0956254a 208bool ovl_is_private_xattr(const char *name);
e9be9d5e 209
39b681f8 210struct inode *ovl_new_inode(struct super_block *sb, umode_t mode);
51f7e52d 211struct inode *ovl_get_inode(struct super_block *sb, struct inode *realinode);
e9be9d5e
MS
212static inline void ovl_copyattr(struct inode *from, struct inode *to)
213{
214 to->i_uid = from->i_uid;
215 to->i_gid = from->i_gid;
07a2daab 216 to->i_mode = from->i_mode;
d719e8f2
MS
217 to->i_atime = from->i_atime;
218 to->i_mtime = from->i_mtime;
219 to->i_ctime = from->i_ctime;
e9be9d5e
MS
220}
221
222/* dir.c */
223extern const struct inode_operations ovl_dir_inode_operations;
224struct dentry *ovl_lookup_temp(struct dentry *workdir, struct dentry *dentry);
225int ovl_create_real(struct inode *dir, struct dentry *newdentry,
226 struct kstat *stat, const char *link,
227 struct dentry *hardlink, bool debug);
228void ovl_cleanup(struct inode *dir, struct dentry *dentry);
229
230/* copy_up.c */
231int ovl_copy_up(struct dentry *dentry);
232int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
0f7ff2da 233 struct path *lowerpath, struct kstat *stat);
e9be9d5e
MS
234int ovl_copy_xattr(struct dentry *old, struct dentry *new);
235int ovl_set_attr(struct dentry *upper, struct kstat *stat);