vfsub.h 6.73 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2005-2019 Junjiro R. Okajima
 */

/*
 * sub-routines for VFS
 */

#ifndef __AUFS_VFSUB_H__
#define __AUFS_VFSUB_H__

#ifdef __KERNEL__

#include <linux/fs.h>
16
#include <linux/mount.h>
J. R. Okajima's avatar
J. R. Okajima committed
17
18
#include <linux/posix_acl.h>
#include <linux/xattr.h>
19
20
#include "debug.h"

J. R. Okajima's avatar
J. R. Okajima committed
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* ---------------------------------------------------------------------- */

/* lock subclass for lower inode */
/* default MAX_LOCKDEP_SUBCLASSES(8) is not enough */
/* reduce? gave up. */
enum {
	AuLsc_I_Begin = I_MUTEX_PARENT2, /* 5 */
	AuLsc_I_PARENT,		/* lower inode, parent first */
	AuLsc_I_PARENT2,	/* copyup dirs */
	AuLsc_I_PARENT3,	/* copyup wh */
	AuLsc_I_CHILD,
	AuLsc_I_CHILD2,
	AuLsc_I_End
};

36
37
38
39
/* to debug easier, do not make them inlined functions */
#define MtxMustLock(mtx)	AuDebugOn(!mutex_is_locked(mtx))
#define IMustLock(i)		AuDebugOn(!inode_is_locked(i))

J. R. Okajima's avatar
J. R. Okajima committed
40
/* ---------------------------------------------------------------------- */
J. R. Okajima's avatar
J. R. Okajima committed
41

J. R. Okajima's avatar
J. R. Okajima committed
42
43
44
45
46
47
static inline void vfsub_drop_nlink(struct inode *inode)
{
	AuDebugOn(!inode->i_nlink);
	drop_nlink(inode);
}

J. R. Okajima's avatar
J. R. Okajima committed
48
49
50
51
52
53
54
static inline void vfsub_dead_dir(struct inode *inode)
{
	AuDebugOn(!S_ISDIR(inode->i_mode));
	inode->i_flags |= S_DEAD;
	clear_nlink(inode);
}

J. R. Okajima's avatar
J. R. Okajima committed
55
56
57
int vfsub_sync_filesystem(struct super_block *h_sb, int wait);

/* ---------------------------------------------------------------------- */
J. R. Okajima's avatar
J. R. Okajima committed
58
59
60

struct file *vfsub_dentry_open(struct path *path, int flags);
struct file *vfsub_filp_open(const char *path, int oflags, int mode);
61
62
int vfsub_kern_path(const char *name, unsigned int flags, struct path *path);

J. R. Okajima's avatar
J. R. Okajima committed
63
64
struct dentry *vfsub_lookup_one_len_unlocked(const char *name,
					     struct dentry *parent, int len);
J. R. Okajima's avatar
J. R. Okajima committed
65
66
67
struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent,
				    int len);

68
69
70
71
72
73
struct vfsub_lkup_one_args {
	struct dentry **errp;
	struct qstr *name;
	struct dentry *parent;
};

J. R. Okajima's avatar
J. R. Okajima committed
74
75
76
77
78
79
static inline struct dentry *vfsub_lkup_one(struct qstr *name,
					    struct dentry *parent)
{
	return vfsub_lookup_one_len(name->name, parent, name->len);
}

80
81
void vfsub_call_lkup_one(void *args);

J. R. Okajima's avatar
J. R. Okajima committed
82
83
/* ---------------------------------------------------------------------- */

84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
static inline int vfsub_mnt_want_write(struct vfsmount *mnt)
{
	int err;

	lockdep_off();
	err = mnt_want_write(mnt);
	lockdep_on();
	return err;
}

static inline void vfsub_mnt_drop_write(struct vfsmount *mnt)
{
	lockdep_off();
	mnt_drop_write(mnt);
	lockdep_on();
}

/* ---------------------------------------------------------------------- */

103
104
105
106
107
108
struct au_hinode;
struct dentry *vfsub_lock_rename(struct dentry *d1, struct au_hinode *hdir1,
				 struct dentry *d2, struct au_hinode *hdir2);
void vfsub_unlock_rename(struct dentry *d1, struct au_hinode *hdir1,
			 struct dentry *d2, struct au_hinode *hdir2);

109
110
int vfsub_create(struct inode *dir, struct path *path, int mode,
		 bool want_excl);
J. R. Okajima's avatar
J. R. Okajima committed
111
112
113
int vfsub_symlink(struct inode *dir, struct path *path,
		  const char *symname);
int vfsub_mknod(struct inode *dir, struct path *path, int mode, dev_t dev);
114
115
int vfsub_link(struct dentry *src_dentry, struct inode *dir,
	       struct path *path, struct inode **delegated_inode);
J. R. Okajima's avatar
J. R. Okajima committed
116
117
118
int vfsub_rename(struct inode *src_hdir, struct dentry *src_dentry,
		 struct inode *hdir, struct path *path,
		 struct inode **delegated_inode, unsigned int flags);
119
120
int vfsub_mkdir(struct inode *dir, struct path *path, int mode);
int vfsub_rmdir(struct inode *dir, struct path *path);
121
122
123

/* ---------------------------------------------------------------------- */

124
125
126
127
128
129
130
131
ssize_t vfsub_read_u(struct file *file, char __user *ubuf, size_t count,
		     loff_t *ppos);
ssize_t vfsub_read_k(struct file *file, void *kbuf, size_t count,
			loff_t *ppos);
ssize_t vfsub_write_u(struct file *file, const char __user *ubuf, size_t count,
		      loff_t *ppos);
ssize_t vfsub_write_k(struct file *file, void *kbuf, size_t count,
		      loff_t *ppos);
J. R. Okajima's avatar
J. R. Okajima committed
132
int vfsub_iterate_dir(struct file *file, struct dir_context *ctx);
133

J. R. Okajima's avatar
J. R. Okajima committed
134
135
136
137
138
static inline loff_t vfsub_f_size_read(struct file *file)
{
	return i_size_read(file_inode(file));
}

J. R. Okajima's avatar
J. R. Okajima committed
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
static inline unsigned int vfsub_file_flags(struct file *file)
{
	unsigned int flags;

	spin_lock(&file->f_lock);
	flags = file->f_flags;
	spin_unlock(&file->f_lock);

	return flags;
}

static inline int vfsub_file_execed(struct file *file)
{
	/* todo: direct access f_flags */
	return !!(vfsub_file_flags(file) & __FMODE_EXEC);
}

J. R. Okajima's avatar
J. R. Okajima committed
156
157
158
159
160
161
162
163
164
165
166
167
#if 0 /* reserved */
static inline void vfsub_touch_atime(struct vfsmount *h_mnt,
				     struct dentry *h_dentry)
{
	struct path h_path = {
		.dentry	= h_dentry,
		.mnt	= h_mnt
	};
	touch_atime(&h_path);
}
#endif

168
169
170
171
172
173
174
static inline int vfsub_update_time(struct inode *h_inode,
				    struct timespec64 *ts, int flags)
{
	return update_time(h_inode, ts, flags);
	/* no vfsub_update_h_iattr() since we don't have struct path */
}

J. R. Okajima's avatar
J. R. Okajima committed
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#ifdef CONFIG_FS_POSIX_ACL
static inline int vfsub_acl_chmod(struct inode *h_inode, umode_t h_mode)
{
	int err;

	err = posix_acl_chmod(h_inode, h_mode);
	if (err == -EOPNOTSUPP)
		err = 0;
	return err;
}
#else
AuStubInt0(vfsub_acl_chmod, struct inode *h_inode, umode_t h_mode);
#endif

J. R. Okajima's avatar
J. R. Okajima committed
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
 * re-use branch fs's ioctl(FICLONE) while aufs itself doesn't support such
 * ioctl.
 */
static inline loff_t vfsub_clone_file_range(struct file *src, struct file *dst,
					    loff_t len)
{
	loff_t err;

	lockdep_off();
	err = vfs_clone_file_range(src, 0, dst, 0, len, /*remap_flags*/0);
	lockdep_on();

	return err;
}

/* ---------------------------------------------------------------------- */

static inline loff_t vfsub_llseek(struct file *file, loff_t offset, int origin)
{
	loff_t err;

	lockdep_off();
	err = vfs_llseek(file, offset, origin);
	lockdep_on();
	return err;
}

J. R. Okajima's avatar
J. R. Okajima committed
217
218
/* ---------------------------------------------------------------------- */

219
220
int vfsub_sio_mkdir(struct inode *dir, struct path *path, int mode);
int vfsub_sio_rmdir(struct inode *dir, struct path *path);
J. R. Okajima's avatar
J. R. Okajima committed
221
222
223
224
int vfsub_sio_notify_change(struct path *path, struct iattr *ia,
			    struct inode **delegated_inode);
int vfsub_notify_change(struct path *path, struct iattr *ia,
			struct inode **delegated_inode);
J. R. Okajima's avatar
J. R. Okajima committed
225
226
227
int vfsub_unlink(struct inode *dir, struct path *path,
		 struct inode **delegated_inode, int force);

J. R. Okajima's avatar
J. R. Okajima committed
228
229
230
231
232
static inline int vfsub_getattr(const struct path *path, struct kstat *st)
{
	return vfs_getattr(path, st, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
}

J. R. Okajima's avatar
J. R. Okajima committed
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/* ---------------------------------------------------------------------- */

static inline int vfsub_setxattr(struct dentry *dentry, const char *name,
				 const void *value, size_t size, int flags)
{
	int err;

	lockdep_off();
	err = vfs_setxattr(dentry, name, value, size, flags);
	lockdep_on();

	return err;
}

static inline int vfsub_removexattr(struct dentry *dentry, const char *name)
{
	int err;

	lockdep_off();
	err = vfs_removexattr(dentry, name);
	lockdep_on();

	return err;
}

258
259
#endif /* __KERNEL__ */
#endif /* __AUFS_VFSUB_H__ */