opts.h 3.37 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
#define AuOpt_PLINK		(1 << 6)	/* pseudo-link */
J. R. Okajima's avatar
J. R. Okajima committed
26

27
28
#define AuOpt_Def	(AuOpt_XINO \
			 | AuOpt_PLINK)
J. R. Okajima's avatar
J. R. Okajima committed
29
30
31
32
33
34
35
36
37

#define au_opt_test(flags, name)	(flags & AuOpt_##name)
#define au_opt_set(flags, name) do { \
	((flags) |= AuOpt_##name); \
} while (0)
#define au_opt_clr(flags, name) do { \
	((flags) &= ~AuOpt_##name); \
} while (0)

38
39
40
41
42
43
44
45
46
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
47
48
/* ---------------------------------------------------------------------- */

49
50
51
/* policies to select one among multiple writable branches */
enum {
	AuWbrCreate_TDP,	/* top down parent */
52
53
54
55
56
57
58
59
60
61
62
	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 */
63
64
65
66
67
68

	AuWbrCreate_Def = AuWbrCreate_TDP
};

enum {
	AuWbrCopyup_TDP,	/* top down parent */
69
70
	AuWbrCopyup_BUP,	/* bottom up parent */
	AuWbrCopyup_BU,		/* bottom up */
71
72
73
74
75
76

	AuWbrCopyup_Def = AuWbrCopyup_TDP
};

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

77
78
79
80
81
82
83
struct au_opt_add {
	aufs_bindex_t	bindex;
	char		*pathname;
	int		perm;
	struct path	path;
};

J. R. Okajima's avatar
J. R. Okajima committed
84
85
86
87
88
struct au_opt_xino {
	char		*path;
	struct file	*file;
};

J. R. Okajima's avatar
J. R. Okajima committed
89
90
91
92
struct au_opt_xino_itrunc {
	aufs_bindex_t	bindex;
};

93
94
struct au_opt_wbr_create {
	int			wbr_create;
95
96
	int			mfs_second;
	unsigned long long	mfsrr_watermark;
97
98
};

99
100
101
struct au_opt {
	int type;
	union {
J. R. Okajima's avatar
J. R. Okajima committed
102
		struct au_opt_xino	xino;
J. R. Okajima's avatar
J. R. Okajima committed
103
		struct au_opt_xino_itrunc xino_itrunc;
104
		struct au_opt_add	add;
105
106
		struct au_opt_wbr_create wbr_create;
		int			wbr_copyup;
107
108
109
110
		/* add more later */
	};
};

J. R. Okajima's avatar
J. R. Okajima committed
111
112
113
114
115
116
117
118
/* opts flags */
#define AuOpts_TRUNC_XIB	(1 << 2)
#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)

119
120
121
struct au_opts {
	struct au_opt	*opt;
	int		max_opt;
122

J. R. Okajima's avatar
J. R. Okajima committed
123
	unsigned int	flags;
124
	unsigned long	sb_flags;
125
126
};

127
128
129
130
/* ---------------------------------------------------------------------- */

/* opts.c */
void au_optstr_br_perm(au_br_perm_str_t *str, int perm);
131
132
const char *au_optstr_wbr_copyup(int wbr_copyup);
const char *au_optstr_wbr_create(int wbr_create);
133
134
135
136

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);
137
138
int au_opts_verify(struct super_block *sb, unsigned long sb_flags,
		   unsigned int pending);
139
140
int au_opts_mount(struct super_block *sb, struct au_opts *opts);

141
142
#endif /* __KERNEL__ */
#endif /* __AUFS_OPTS_H__ */