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

/*
 * mount options/flags
 */

#ifndef __AUFS_OPTS_H__
#define __AUFS_OPTS_H__

#ifdef __KERNEL__

#include <linux/path.h>

J. R. Okajima's avatar
J. R. Okajima committed
17
18
struct file;

J. R. Okajima's avatar
J. R. Okajima committed
19
20
21
22
23
/* ---------------------------------------------------------------------- */

/* mount flags */
#define AuOpt_XINO		1		/* external inode number bitmap
						   and translation table */
J. R. Okajima's avatar
J. R. Okajima committed
24
#define AuOpt_TRUNC_XINO	(1 << 1)	/* truncate xino files */
25
26
#define AuOpt_UDBA_NONE		(1 << 2)	/* users direct branch access */
#define AuOpt_UDBA_REVAL	(1 << 3)
J. R. Okajima's avatar
J. R. Okajima committed
27
#define AuOpt_UDBA_HNOTIFY	(1 << 4)
28
#define AuOpt_PLINK		(1 << 6)	/* pseudo-link */
J. R. Okajima's avatar
J. R. Okajima committed
29
30
#define AuOpt_DIRPERM1		(1 << 7)	/* ignore the lower dir's perm
						   bits */
31
#define AuOpt_VERBOSE		(1 << 13)	/* print the cause of error */
32
#define AuOpt_DIO		(1 << 14)	/* direct io */
J. R. Okajima's avatar
J. R. Okajima committed
33

J. R. Okajima's avatar
J. R. Okajima committed
34
35
36
37
38
#ifndef CONFIG_AUFS_HNOTIFY
#undef AuOpt_UDBA_HNOTIFY
#define AuOpt_UDBA_HNOTIFY	0
#endif

39
#define AuOpt_Def	(AuOpt_XINO \
40
			 | AuOpt_UDBA_REVAL \
J. R. Okajima's avatar
J. R. Okajima committed
41
42
43
			 | AuOpt_PLINK \
			 /* | AuOpt_DIRPERM1 */ \
			)
44
#define AuOptMask_UDBA	(AuOpt_UDBA_NONE \
J. R. Okajima's avatar
J. R. Okajima committed
45
46
			 | AuOpt_UDBA_REVAL \
			 | AuOpt_UDBA_HNOTIFY)
J. R. Okajima's avatar
J. R. Okajima committed
47
48
49

#define au_opt_test(flags, name)	(flags & AuOpt_##name)
#define au_opt_set(flags, name) do { \
50
51
52
53
54
	BUILD_BUG_ON(AuOpt_##name & AuOptMask_UDBA); \
	((flags) |= AuOpt_##name); \
} while (0)
#define au_opt_set_udba(flags, name) do { \
	(flags) &= ~AuOptMask_UDBA; \
J. R. Okajima's avatar
J. R. Okajima committed
55
56
57
58
59
60
	((flags) |= AuOpt_##name); \
} while (0)
#define au_opt_clr(flags, name) do { \
	((flags) &= ~AuOpt_##name); \
} while (0)

61
62
63
64
65
66
67
68
69
static inline unsigned int au_opts_plink(unsigned int mntflags)
{
#ifdef CONFIG_PROC_FS
	return mntflags;
#else
	return mntflags & ~AuOpt_PLINK;
#endif
}

J. R. Okajima's avatar
J. R. Okajima committed
70
71
/* ---------------------------------------------------------------------- */

72
73
74
/* policies to select one among multiple writable branches */
enum {
	AuWbrCreate_TDP,	/* top down parent */
75
76
77
78
79
80
81
82
83
84
85
	AuWbrCreate_RR,		/* round robin */
	AuWbrCreate_MFS,	/* most free space */
	AuWbrCreate_MFSV,	/* mfs with seconds */
	AuWbrCreate_MFSRR,	/* mfs then rr */
	AuWbrCreate_MFSRRV,	/* mfs then rr with seconds */
	AuWbrCreate_TDMFS,	/* top down regardless parent and mfs */
	AuWbrCreate_TDMFSV,	/* top down regardless parent and mfs */
	AuWbrCreate_PMFS,	/* parent and mfs */
	AuWbrCreate_PMFSV,	/* parent and mfs with seconds */
	AuWbrCreate_PMFSRR,	/* parent, mfs and round-robin */
	AuWbrCreate_PMFSRRV,	/* plus seconds */
86
87
88
89
90
91

	AuWbrCreate_Def = AuWbrCreate_TDP
};

enum {
	AuWbrCopyup_TDP,	/* top down parent */
92
93
	AuWbrCopyup_BUP,	/* bottom up parent */
	AuWbrCopyup_BU,		/* bottom up */
94
95
96
97
98
99

	AuWbrCopyup_Def = AuWbrCopyup_TDP
};

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

100
101
102
103
104
105
106
struct au_opt_add {
	aufs_bindex_t	bindex;
	char		*pathname;
	int		perm;
	struct path	path;
};

107
108
109
110
111
struct au_opt_del {
	char		*pathname;
	struct path	h_path;
};

112
113
114
115
116
117
struct au_opt_mod {
	char		*path;
	int		perm;
	struct dentry	*h_root;
};

J. R. Okajima's avatar
J. R. Okajima committed
118
119
120
121
122
struct au_opt_xino {
	char		*path;
	struct file	*file;
};

J. R. Okajima's avatar
J. R. Okajima committed
123
124
125
126
struct au_opt_xino_itrunc {
	aufs_bindex_t	bindex;
};

127
128
struct au_opt_wbr_create {
	int			wbr_create;
129
130
	int			mfs_second;
	unsigned long long	mfsrr_watermark;
131
132
};

133
134
135
struct au_opt {
	int type;
	union {
J. R. Okajima's avatar
J. R. Okajima committed
136
		struct au_opt_xino	xino;
J. R. Okajima's avatar
J. R. Okajima committed
137
		struct au_opt_xino_itrunc xino_itrunc;
138
		struct au_opt_add	add;
139
		struct au_opt_del	del;
140
		struct au_opt_mod	mod;
J. R. Okajima's avatar
J. R. Okajima committed
141
		int			dirwh;
142
143
144
		int			rdcache;
		unsigned int		rdblk;
		unsigned int		rdhash;
J. R. Okajima's avatar
J. R. Okajima committed
145
		int			udba;
146
147
		struct au_opt_wbr_create wbr_create;
		int			wbr_copyup;
148
149
150
151
		/* add more later */
	};
};

J. R. Okajima's avatar
J. R. Okajima committed
152
/* opts flags */
153
154
#define AuOpts_REMOUNT		1
#define AuOpts_REFRESH		(1 << 1)
J. R. Okajima's avatar
J. R. Okajima committed
155
#define AuOpts_TRUNC_XIB	(1 << 2)
156
#define AuOpts_REFRESH_DYAOP	(1 << 3)
157
#define AuOpts_REFRESH_IDOP	(1 << 4)
J. R. Okajima's avatar
J. R. Okajima committed
158
159
160
161
162
163
#define au_ftest_opts(flags, name)	((flags) & AuOpts_##name)
#define au_fset_opts(flags, name) \
	do { (flags) |= AuOpts_##name; } while (0)
#define au_fclr_opts(flags, name) \
	do { (flags) &= ~AuOpts_##name; } while (0)

164
165
166
struct au_opts {
	struct au_opt	*opt;
	int		max_opt;
167

J. R. Okajima's avatar
J. R. Okajima committed
168
	unsigned int	given_udba;
J. R. Okajima's avatar
J. R. Okajima committed
169
	unsigned int	flags;
170
	unsigned long	sb_flags;
171
172
};

173
174
175
176
/* ---------------------------------------------------------------------- */

/* opts.c */
void au_optstr_br_perm(au_br_perm_str_t *str, int perm);
177
const char *au_optstr_udba(int udba);
178
179
const char *au_optstr_wbr_copyup(int wbr_copyup);
const char *au_optstr_wbr_create(int wbr_create);
180
181
182
183

void au_opts_free(struct au_opts *opts);
struct super_block;
int au_opts_parse(struct super_block *sb, char *str, struct au_opts *opts);
184
185
int au_opts_verify(struct super_block *sb, unsigned long sb_flags,
		   unsigned int pending);
186
int au_opts_mount(struct super_block *sb, struct au_opts *opts);
187
int au_opts_remount(struct super_block *sb, struct au_opts *opts);
188

189
190
unsigned int au_opt_udba(struct super_block *sb);

191
192
#endif /* __KERNEL__ */
#endif /* __AUFS_OPTS_H__ */