blob: f183d1db78bd8273971c079b368c962b634c331f [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
12struct ovl_entry;
13
14enum ovl_path_type {
Miklos Szeredi38e813d2016-12-16 11:02:55 +010015 __OVL_PATH_UPPER = (1 << 0),
16 __OVL_PATH_MERGE = (1 << 1),
Miklos Szeredie9be9d52014-10-24 00:14:38 +020017};
18
Miklos Szeredi1afaba12014-12-13 00:59:42 +010019#define OVL_TYPE_UPPER(type) ((type) & __OVL_PATH_UPPER)
20#define OVL_TYPE_MERGE(type) ((type) & __OVL_PATH_MERGE)
Miklos Szeredi1afaba12014-12-13 00:59:42 +010021#define OVL_TYPE_MERGE_OR_LOWER(type) \
22 (OVL_TYPE_MERGE(type) || !OVL_TYPE_UPPER(type))
23
Miklos Szeredid837a492016-07-29 12:05:24 +020024
Andreas Gruenbacherfe2b7592016-08-22 17:59:22 +020025#define OVL_XATTR_PREFIX XATTR_TRUSTED_PREFIX "overlay."
26#define OVL_XATTR_OPAQUE OVL_XATTR_PREFIX "opaque"
Miklos Szeredie9be9d52014-10-24 00:14:38 +020027
Miklos Szeredi39b681f2016-07-29 12:05:24 +020028#define OVL_ISUPPER_MASK 1UL
29
Miklos Szeredie9be9d52014-10-24 00:14:38 +020030static inline int ovl_do_rmdir(struct inode *dir, struct dentry *dentry)
31{
32 int err = vfs_rmdir(dir, dentry);
33 pr_debug("rmdir(%pd2) = %i\n", dentry, err);
34 return err;
35}
36
37static inline int ovl_do_unlink(struct inode *dir, struct dentry *dentry)
38{
39 int err = vfs_unlink(dir, dentry, NULL);
40 pr_debug("unlink(%pd2) = %i\n", dentry, err);
41 return err;
42}
43
44static inline int ovl_do_link(struct dentry *old_dentry, struct inode *dir,
45 struct dentry *new_dentry, bool debug)
46{
47 int err = vfs_link(old_dentry, dir, new_dentry, NULL);
48 if (debug) {
49 pr_debug("link(%pd2, %pd2) = %i\n",
50 old_dentry, new_dentry, err);
51 }
52 return err;
53}
54
55static inline int ovl_do_create(struct inode *dir, struct dentry *dentry,
56 umode_t mode, bool debug)
57{
58 int err = vfs_create(dir, dentry, mode, true);
59 if (debug)
60 pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
61 return err;
62}
63
64static inline int ovl_do_mkdir(struct inode *dir, struct dentry *dentry,
65 umode_t mode, bool debug)
66{
67 int err = vfs_mkdir(dir, dentry, mode);
68 if (debug)
69 pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
70 return err;
71}
72
73static inline int ovl_do_mknod(struct inode *dir, struct dentry *dentry,
74 umode_t mode, dev_t dev, bool debug)
75{
76 int err = vfs_mknod(dir, dentry, mode, dev);
77 if (debug) {
78 pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n",
79 dentry, mode, dev, err);
80 }
81 return err;
82}
83
84static inline int ovl_do_symlink(struct inode *dir, struct dentry *dentry,
85 const char *oldname, bool debug)
86{
87 int err = vfs_symlink(dir, dentry, oldname);
88 if (debug)
89 pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
90 return err;
91}
92
93static inline int ovl_do_setxattr(struct dentry *dentry, const char *name,
94 const void *value, size_t size, int flags)
95{
96 int err = vfs_setxattr(dentry, name, value, size, flags);
97 pr_debug("setxattr(%pd2, \"%s\", \"%*s\", 0x%x) = %i\n",
98 dentry, name, (int) size, (char *) value, flags, err);
99 return err;
100}
101
102static inline int ovl_do_removexattr(struct dentry *dentry, const char *name)
103{
104 int err = vfs_removexattr(dentry, name);
105 pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
106 return err;
107}
108
109static inline int ovl_do_rename(struct inode *olddir, struct dentry *olddentry,
110 struct inode *newdir, struct dentry *newdentry,
111 unsigned int flags)
112{
113 int err;
114
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200115 pr_debug("rename(%pd2, %pd2, 0x%x)\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200116 olddentry, newdentry, flags);
117
118 err = vfs_rename(olddir, olddentry, newdir, newdentry, NULL, flags);
119
120 if (err) {
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200121 pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200122 olddentry, newdentry, err);
123 }
124 return err;
125}
126
127static inline int ovl_do_whiteout(struct inode *dir, struct dentry *dentry)
128{
129 int err = vfs_whiteout(dir, dentry);
130 pr_debug("whiteout(%pd2) = %i\n", dentry, err);
131 return err;
132}
133
Miklos Szeredi39b681f2016-07-29 12:05:24 +0200134static inline struct inode *ovl_inode_real(struct inode *inode, bool *is_upper)
135{
136 unsigned long x = (unsigned long) READ_ONCE(inode->i_private);
137
138 if (is_upper)
139 *is_upper = x & OVL_ISUPPER_MASK;
140
141 return (struct inode *) (x & ~OVL_ISUPPER_MASK);
142}
143
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200144enum ovl_path_type ovl_path_type(struct dentry *dentry);
145u64 ovl_dentry_version_get(struct dentry *dentry);
146void ovl_dentry_version_inc(struct dentry *dentry);
147void ovl_path_upper(struct dentry *dentry, struct path *path);
148void ovl_path_lower(struct dentry *dentry, struct path *path);
149enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
Miklos Szeredi5ef88da2014-12-13 00:59:43 +0100150int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200151struct dentry *ovl_dentry_upper(struct dentry *dentry);
152struct dentry *ovl_dentry_lower(struct dentry *dentry);
153struct dentry *ovl_dentry_real(struct dentry *dentry);
Miklos Szeredi8d3095f2015-10-12 17:11:44 +0200154struct vfsmount *ovl_entry_mnt_real(struct ovl_entry *oe, struct inode *inode,
155 bool is_upper);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200156struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry);
157void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache);
158struct dentry *ovl_workdir(struct dentry *dentry);
159int ovl_want_write(struct dentry *dentry);
160void ovl_drop_write(struct dentry *dentry);
161bool ovl_dentry_is_opaque(struct dentry *dentry);
Miklos Szeredi2aff4532016-12-16 11:02:55 +0100162bool ovl_lower_positive(struct dentry *dentry);
Miklos Szeredic412ce42016-12-16 11:02:55 +0100163bool ovl_dentry_is_whiteout(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200164void ovl_dentry_set_opaque(struct dentry *dentry, bool opaque);
165bool ovl_is_whiteout(struct dentry *dentry);
Antonio Murdaca3fe6e522016-04-07 15:48:25 +0200166const struct cred *ovl_override_creds(struct super_block *sb);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200167void ovl_dentry_update(struct dentry *dentry, struct dentry *upperdentry);
Miklos Szeredi39b681f2016-07-29 12:05:24 +0200168void ovl_inode_update(struct inode *inode, struct inode *upperinode);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200169struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
170 unsigned int flags);
171struct file *ovl_path_open(struct path *path, int flags);
172
173struct dentry *ovl_upper_create(struct dentry *upperdir, struct dentry *dentry,
174 struct kstat *stat, const char *link);
175
176/* readdir.c */
177extern const struct file_operations ovl_dir_operations;
178int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
179void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
180void ovl_cache_free(struct list_head *list);
Vivek Goyal45aebea2016-02-22 09:28:34 -0500181int ovl_check_d_type_supported(struct path *realpath);
Miklos Szeredieea2fb42016-09-01 11:11:59 +0200182void ovl_workdir_cleanup(struct inode *dir, struct vfsmount *mnt,
183 struct dentry *dentry, int level);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200184
185/* inode.c */
186int ovl_setattr(struct dentry *dentry, struct iattr *attr);
187int ovl_permission(struct inode *inode, int mask);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200188int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
189 size_t size, int flags);
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200190int ovl_xattr_get(struct dentry *dentry, const char *name,
191 void *value, size_t size);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200192ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
Vivek Goyal39a25b22016-07-01 16:34:26 -0400193struct posix_acl *ovl_get_acl(struct inode *inode, int type);
Miklos Szeredi2d902672016-06-30 08:53:27 +0200194int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags);
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200195int ovl_update_time(struct inode *inode, struct timespec *ts, int flags);
Miklos Szeredi09562542016-08-08 15:08:49 +0200196bool ovl_is_private_xattr(const char *name);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200197
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100198struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev);
Miklos Szeredi51f7e522016-07-29 12:05:24 +0200199struct inode *ovl_get_inode(struct super_block *sb, struct inode *realinode);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200200static inline void ovl_copyattr(struct inode *from, struct inode *to)
201{
202 to->i_uid = from->i_uid;
203 to->i_gid = from->i_gid;
Vivek Goyal07a2daa2016-07-01 16:34:25 -0400204 to->i_mode = from->i_mode;
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200205 to->i_atime = from->i_atime;
206 to->i_mtime = from->i_mtime;
207 to->i_ctime = from->i_ctime;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200208}
209
210/* dir.c */
211extern const struct inode_operations ovl_dir_inode_operations;
212struct dentry *ovl_lookup_temp(struct dentry *workdir, struct dentry *dentry);
213int ovl_create_real(struct inode *dir, struct dentry *newdentry,
214 struct kstat *stat, const char *link,
215 struct dentry *hardlink, bool debug);
216void ovl_cleanup(struct inode *dir, struct dentry *dentry);
217
218/* copy_up.c */
219int ovl_copy_up(struct dentry *dentry);
220int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
Al Viro0f7ff2d2015-12-06 12:31:07 -0500221 struct path *lowerpath, struct kstat *stat);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200222int ovl_copy_xattr(struct dentry *old, struct dentry *new);
223int ovl_set_attr(struct dentry *upper, struct kstat *stat);