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