blob: c1321ab3822476a9e0d3e7a4f377663234b27394 [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>
Amir Goldstein3a1e8192017-03-30 15:22:16 +030011#include <linux/uuid.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020012
Miklos Szeredie9be9d52014-10-24 00:14:38 +020013enum ovl_path_type {
Miklos Szeredi38e813d2016-12-16 11:02:55 +010014 __OVL_PATH_UPPER = (1 << 0),
15 __OVL_PATH_MERGE = (1 << 1),
Amir Goldstein59548502017-04-23 23:12:34 +030016 __OVL_PATH_ORIGIN = (1 << 2),
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)
Amir Goldstein59548502017-04-23 23:12:34 +030021#define OVL_TYPE_ORIGIN(type) ((type) & __OVL_PATH_ORIGIN)
Miklos Szeredid837a492016-07-29 12:05:24 +020022
Andreas Gruenbacherfe2b7592016-08-22 17:59:22 +020023#define OVL_XATTR_PREFIX XATTR_TRUSTED_PREFIX "overlay."
24#define OVL_XATTR_OPAQUE OVL_XATTR_PREFIX "opaque"
Miklos Szeredi02b69b22016-12-16 11:02:56 +010025#define OVL_XATTR_REDIRECT OVL_XATTR_PREFIX "redirect"
Amir Goldstein3a1e8192017-03-30 15:22:16 +030026#define OVL_XATTR_ORIGIN OVL_XATTR_PREFIX "origin"
Amir Goldsteinee1d6d372017-05-11 16:42:26 +030027#define OVL_XATTR_IMPURE OVL_XATTR_PREFIX "impure"
Amir Goldstein5f8415d2017-06-20 15:35:14 +030028#define OVL_XATTR_NLINK OVL_XATTR_PREFIX "nlink"
Amir Goldstein3a1e8192017-03-30 15:22:16 +030029
Miklos Szeredi13c72072017-07-04 22:03:16 +020030enum ovl_flag {
31 OVL_IMPURE,
Amir Goldstein359f3922017-06-21 15:28:41 +030032 OVL_INDEX,
Miklos Szeredi13c72072017-07-04 22:03:16 +020033};
34
Amir Goldstein3a1e8192017-03-30 15:22:16 +030035/*
36 * The tuple (fh,uuid) is a universal unique identifier for a copy up origin,
37 * where:
38 * origin.fh - exported file handle of the lower file
39 * origin.uuid - uuid of the lower filesystem
40 */
41#define OVL_FH_VERSION 0
42#define OVL_FH_MAGIC 0xfb
43
44/* CPU byte order required for fid decoding: */
45#define OVL_FH_FLAG_BIG_ENDIAN (1 << 0)
46#define OVL_FH_FLAG_ANY_ENDIAN (1 << 1)
Amir Goldstein54fb3472017-06-21 15:28:38 +030047/* Is the real inode encoded in fid an upper inode? */
48#define OVL_FH_FLAG_PATH_UPPER (1 << 2)
Amir Goldstein3a1e8192017-03-30 15:22:16 +030049
50#define OVL_FH_FLAG_ALL (OVL_FH_FLAG_BIG_ENDIAN | OVL_FH_FLAG_ANY_ENDIAN)
51
52#if defined(__LITTLE_ENDIAN)
53#define OVL_FH_FLAG_CPU_ENDIAN 0
54#elif defined(__BIG_ENDIAN)
55#define OVL_FH_FLAG_CPU_ENDIAN OVL_FH_FLAG_BIG_ENDIAN
56#else
57#error Endianness not defined
58#endif
59
60/* On-disk and in-memeory format for redirect by file handle */
61struct ovl_fh {
62 u8 version; /* 0 */
63 u8 magic; /* 0xfb */
64 u8 len; /* size of this header + size of fid */
65 u8 flags; /* OVL_FH_FLAG_* */
66 u8 type; /* fid_type of fid */
Christoph Hellwig01633fd2017-05-17 09:32:50 +020067 uuid_t uuid; /* uuid of filesystem */
Amir Goldstein3a1e8192017-03-30 15:22:16 +030068 u8 fid[0]; /* file identifier */
69} __packed;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020070
71static inline int ovl_do_rmdir(struct inode *dir, struct dentry *dentry)
72{
73 int err = vfs_rmdir(dir, dentry);
74 pr_debug("rmdir(%pd2) = %i\n", dentry, err);
75 return err;
76}
77
78static inline int ovl_do_unlink(struct inode *dir, struct dentry *dentry)
79{
80 int err = vfs_unlink(dir, dentry, NULL);
81 pr_debug("unlink(%pd2) = %i\n", dentry, err);
82 return err;
83}
84
85static inline int ovl_do_link(struct dentry *old_dentry, struct inode *dir,
86 struct dentry *new_dentry, bool debug)
87{
88 int err = vfs_link(old_dentry, dir, new_dentry, NULL);
89 if (debug) {
90 pr_debug("link(%pd2, %pd2) = %i\n",
91 old_dentry, new_dentry, err);
92 }
93 return err;
94}
95
96static inline int ovl_do_create(struct inode *dir, struct dentry *dentry,
97 umode_t mode, bool debug)
98{
99 int err = vfs_create(dir, dentry, mode, true);
100 if (debug)
101 pr_debug("create(%pd2, 0%o) = %i\n", dentry, mode, err);
102 return err;
103}
104
105static inline int ovl_do_mkdir(struct inode *dir, struct dentry *dentry,
106 umode_t mode, bool debug)
107{
108 int err = vfs_mkdir(dir, dentry, mode);
109 if (debug)
110 pr_debug("mkdir(%pd2, 0%o) = %i\n", dentry, mode, err);
111 return err;
112}
113
114static inline int ovl_do_mknod(struct inode *dir, struct dentry *dentry,
115 umode_t mode, dev_t dev, bool debug)
116{
117 int err = vfs_mknod(dir, dentry, mode, dev);
118 if (debug) {
119 pr_debug("mknod(%pd2, 0%o, 0%o) = %i\n",
120 dentry, mode, dev, err);
121 }
122 return err;
123}
124
125static inline int ovl_do_symlink(struct inode *dir, struct dentry *dentry,
126 const char *oldname, bool debug)
127{
128 int err = vfs_symlink(dir, dentry, oldname);
129 if (debug)
130 pr_debug("symlink(\"%s\", %pd2) = %i\n", oldname, dentry, err);
131 return err;
132}
133
134static inline int ovl_do_setxattr(struct dentry *dentry, const char *name,
135 const void *value, size_t size, int flags)
136{
137 int err = vfs_setxattr(dentry, name, value, size, flags);
138 pr_debug("setxattr(%pd2, \"%s\", \"%*s\", 0x%x) = %i\n",
139 dentry, name, (int) size, (char *) value, flags, err);
140 return err;
141}
142
143static inline int ovl_do_removexattr(struct dentry *dentry, const char *name)
144{
145 int err = vfs_removexattr(dentry, name);
146 pr_debug("removexattr(%pd2, \"%s\") = %i\n", dentry, name, err);
147 return err;
148}
149
150static inline int ovl_do_rename(struct inode *olddir, struct dentry *olddentry,
151 struct inode *newdir, struct dentry *newdentry,
152 unsigned int flags)
153{
154 int err;
155
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200156 pr_debug("rename(%pd2, %pd2, 0x%x)\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200157 olddentry, newdentry, flags);
158
159 err = vfs_rename(olddir, olddentry, newdir, newdentry, NULL, flags);
160
161 if (err) {
Miklos Szeredi2773bf02016-09-27 11:03:58 +0200162 pr_debug("...rename(%pd2, %pd2, ...) = %i\n",
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200163 olddentry, newdentry, err);
164 }
165 return err;
166}
167
168static inline int ovl_do_whiteout(struct inode *dir, struct dentry *dentry)
169{
170 int err = vfs_whiteout(dir, dentry);
171 pr_debug("whiteout(%pd2) = %i\n", dentry, err);
172 return err;
173}
174
Amir Goldsteine7f52422017-01-17 06:34:53 +0200175static inline struct dentry *ovl_do_tmpfile(struct dentry *dentry, umode_t mode)
176{
177 struct dentry *ret = vfs_tmpfile(dentry, mode, 0);
178 int err = IS_ERR(ret) ? PTR_ERR(ret) : 0;
179
180 pr_debug("tmpfile(%pd2, 0%o) = %i\n", dentry, mode, err);
181 return ret;
182}
183
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100184/* util.c */
185int ovl_want_write(struct dentry *dentry);
186void ovl_drop_write(struct dentry *dentry);
187struct dentry *ovl_workdir(struct dentry *dentry);
188const struct cred *ovl_override_creds(struct super_block *sb);
Amir Goldstein7bcd74b2017-03-22 08:42:21 -0400189struct super_block *ovl_same_sb(struct super_block *sb);
Amir Goldstein02bcd152017-06-21 15:28:36 +0300190bool ovl_can_decode_fh(struct super_block *sb);
191struct dentry *ovl_indexdir(struct super_block *sb);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100192struct ovl_entry *ovl_alloc_entry(unsigned int numlower);
193bool ovl_dentry_remote(struct dentry *dentry);
194bool ovl_dentry_weird(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200195enum ovl_path_type ovl_path_type(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200196void ovl_path_upper(struct dentry *dentry, struct path *path);
197void ovl_path_lower(struct dentry *dentry, struct path *path);
198enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200199struct dentry *ovl_dentry_upper(struct dentry *dentry);
200struct dentry *ovl_dentry_lower(struct dentry *dentry);
201struct dentry *ovl_dentry_real(struct dentry *dentry);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200202struct inode *ovl_inode_upper(struct inode *inode);
203struct inode *ovl_inode_lower(struct inode *inode);
204struct inode *ovl_inode_real(struct inode *inode);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200205struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry);
206void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200207bool ovl_dentry_is_opaque(struct dentry *dentry);
Miklos Szeredic412ce42016-12-16 11:02:55 +0100208bool ovl_dentry_is_whiteout(struct dentry *dentry);
Miklos Szeredi5cf5b472016-12-16 11:02:57 +0100209void ovl_dentry_set_opaque(struct dentry *dentry);
Miklos Szeredi55acc662017-07-04 22:03:18 +0200210bool ovl_dentry_has_upper_alias(struct dentry *dentry);
211void ovl_dentry_set_upper_alias(struct dentry *dentry);
Miklos Szeredia6c60652016-12-16 11:02:56 +0100212bool ovl_redirect_dir(struct super_block *sb);
Miklos Szeredia6c60652016-12-16 11:02:56 +0100213const char *ovl_dentry_get_redirect(struct dentry *dentry);
214void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200215void ovl_inode_init(struct inode *inode, struct dentry *upperdentry,
216 struct dentry *lowerdentry);
217void ovl_inode_update(struct inode *inode, struct dentry *upperdentry);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100218void ovl_dentry_version_inc(struct dentry *dentry);
219u64 ovl_dentry_version_get(struct dentry *dentry);
220bool ovl_is_whiteout(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200221struct file *ovl_path_open(struct path *path, int flags);
Amir Goldstein39d3d602017-01-17 06:34:56 +0200222int ovl_copy_up_start(struct dentry *dentry);
223void ovl_copy_up_end(struct dentry *dentry);
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300224bool ovl_check_dir_xattr(struct dentry *dentry, const char *name);
225int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry,
226 const char *name, const void *value, size_t size,
227 int xerr);
228int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry);
Miklos Szeredi13c72072017-07-04 22:03:16 +0200229void ovl_set_flag(unsigned long flag, struct inode *inode);
230bool ovl_test_flag(unsigned long flag, struct inode *inode);
Amir Goldsteinad0af712017-06-21 15:28:32 +0300231bool ovl_inuse_trylock(struct dentry *dentry);
232void ovl_inuse_unlock(struct dentry *dentry);
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300233int ovl_nlink_start(struct dentry *dentry, bool *locked);
234void ovl_nlink_end(struct dentry *dentry, bool locked);
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300235
236static inline bool ovl_is_impuredir(struct dentry *dentry)
237{
238 return ovl_check_dir_xattr(dentry, OVL_XATTR_IMPURE);
239}
240
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200241
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100242/* namei.c */
Amir Goldstein8b88a2e2017-06-21 15:28:37 +0300243int ovl_verify_origin(struct dentry *dentry, struct vfsmount *mnt,
Amir Goldstein54fb3472017-06-21 15:28:38 +0300244 struct dentry *origin, bool is_upper, bool set);
Amir Goldstein415543d2017-06-21 15:28:42 +0300245int ovl_verify_index(struct dentry *index, struct path *lowerstack,
246 unsigned int numlower);
Amir Goldstein359f3922017-06-21 15:28:41 +0300247int ovl_get_index_name(struct dentry *origin, struct qstr *name);
Miklos Szeredibbb1e542016-12-16 11:02:56 +0100248int ovl_path_next(int idx, struct dentry *dentry, struct path *path);
249struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags);
250bool ovl_lower_positive(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200251
252/* readdir.c */
253extern const struct file_operations ovl_dir_operations;
254int ovl_check_empty_dir(struct dentry *dentry, struct list_head *list);
255void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list);
256void ovl_cache_free(struct list_head *list);
Vivek Goyal45aebea2016-02-22 09:28:34 -0500257int ovl_check_d_type_supported(struct path *realpath);
Miklos Szeredieea2fb42016-09-01 11:11:59 +0200258void ovl_workdir_cleanup(struct inode *dir, struct vfsmount *mnt,
259 struct dentry *dentry, int level);
Amir Goldstein415543d2017-06-21 15:28:42 +0300260int ovl_indexdir_cleanup(struct dentry *dentry, struct vfsmount *mnt,
261 struct path *lowerstack, unsigned int numlower);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200262
263/* inode.c */
Amir Goldstein5f8415d2017-06-20 15:35:14 +0300264int ovl_set_nlink_upper(struct dentry *dentry);
265int ovl_set_nlink_lower(struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200266int ovl_setattr(struct dentry *dentry, struct iattr *attr);
Miklos Szeredi5b712092017-05-05 11:38:58 +0200267int ovl_getattr(const struct path *path, struct kstat *stat,
268 u32 request_mask, unsigned int flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200269int ovl_permission(struct inode *inode, int mask);
Andreas Gruenbacher0e585cc2016-08-22 17:22:11 +0200270int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
271 size_t size, int flags);
Andreas Gruenbacher0eb45fc2016-08-22 17:52:55 +0200272int ovl_xattr_get(struct dentry *dentry, const char *name,
273 void *value, size_t size);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200274ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
Vivek Goyal39a25b22016-07-01 16:34:26 -0400275struct posix_acl *ovl_get_acl(struct inode *inode, int type);
Miklos Szeredi2d902672016-06-30 08:53:27 +0200276int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags);
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200277int ovl_update_time(struct inode *inode, struct timespec *ts, int flags);
Miklos Szeredi09562542016-08-08 15:08:49 +0200278bool ovl_is_private_xattr(const char *name);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200279
Miklos Szeredica4c8a32016-12-16 11:02:55 +0100280struct inode *ovl_new_inode(struct super_block *sb, umode_t mode, dev_t rdev);
Miklos Szeredi09d8b582017-07-04 22:03:16 +0200281struct inode *ovl_get_inode(struct dentry *dentry, struct dentry *upperdentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200282static inline void ovl_copyattr(struct inode *from, struct inode *to)
283{
284 to->i_uid = from->i_uid;
285 to->i_gid = from->i_gid;
Vivek Goyal07a2daa2016-07-01 16:34:25 -0400286 to->i_mode = from->i_mode;
Miklos Szeredid719e8f2016-07-29 12:05:23 +0200287 to->i_atime = from->i_atime;
288 to->i_mtime = from->i_mtime;
289 to->i_ctime = from->i_ctime;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200290}
291
292/* dir.c */
293extern const struct inode_operations ovl_dir_inode_operations;
Miklos Szeredi3d275732017-05-19 09:33:49 +0200294struct dentry *ovl_lookup_temp(struct dentry *workdir);
Al Viro32a3d842016-12-04 17:33:17 +0000295struct cattr {
296 dev_t rdev;
297 umode_t mode;
298 const char *link;
299};
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200300int ovl_create_real(struct inode *dir, struct dentry *newdentry,
Al Viro32a3d842016-12-04 17:33:17 +0000301 struct cattr *attr,
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200302 struct dentry *hardlink, bool debug);
Amir Goldstein415543d2017-06-21 15:28:42 +0300303int ovl_cleanup(struct inode *dir, struct dentry *dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200304
305/* copy_up.c */
306int ovl_copy_up(struct dentry *dentry);
Amir Goldstein9aba6522016-11-12 21:36:03 +0200307int ovl_copy_up_flags(struct dentry *dentry, int flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200308int ovl_copy_xattr(struct dentry *old, struct dentry *new);
309int ovl_set_attr(struct dentry *upper, struct kstat *stat);
Amir Goldstein54fb3472017-06-21 15:28:38 +0300310struct ovl_fh *ovl_encode_fh(struct dentry *lower, bool is_upper);