]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/hfsplus/options.c | |
3 | * | |
4 | * Copyright (C) 2001 | |
5 | * Brad Boyer ([email protected]) | |
6 | * (C) 2003 Ardis Technologies <[email protected]> | |
7 | * | |
8 | * Option parsing | |
9 | */ | |
10 | ||
11 | #include <linux/string.h> | |
12 | #include <linux/kernel.h> | |
13 | #include <linux/sched.h> | |
14 | #include <linux/parser.h> | |
15 | #include <linux/nls.h> | |
717dd80e RZ |
16 | #include <linux/mount.h> |
17 | #include <linux/seq_file.h> | |
5a0e3ad6 | 18 | #include <linux/slab.h> |
1da177e4 LT |
19 | #include "hfsplus_fs.h" |
20 | ||
21 | enum { | |
22 | opt_creator, opt_type, | |
23 | opt_umask, opt_uid, opt_gid, | |
24 | opt_part, opt_session, opt_nls, | |
25 | opt_nodecompose, opt_decompose, | |
34a2d313 | 26 | opt_barrier, opt_nobarrier, |
b0b623c3 | 27 | opt_force, opt_err |
1da177e4 LT |
28 | }; |
29 | ||
a447c093 | 30 | static const match_table_t tokens = { |
1da177e4 LT |
31 | { opt_creator, "creator=%s" }, |
32 | { opt_type, "type=%s" }, | |
33 | { opt_umask, "umask=%o" }, | |
34 | { opt_uid, "uid=%u" }, | |
35 | { opt_gid, "gid=%u" }, | |
36 | { opt_part, "part=%u" }, | |
37 | { opt_session, "session=%u" }, | |
38 | { opt_nls, "nls=%s" }, | |
39 | { opt_decompose, "decompose" }, | |
40 | { opt_nodecompose, "nodecompose" }, | |
34a2d313 CH |
41 | { opt_barrier, "barrier" }, |
42 | { opt_nobarrier, "nobarrier" }, | |
b0b623c3 | 43 | { opt_force, "force" }, |
1da177e4 LT |
44 | { opt_err, NULL } |
45 | }; | |
46 | ||
47 | /* Initialize an options object to reasonable defaults */ | |
717dd80e | 48 | void hfsplus_fill_defaults(struct hfsplus_sb_info *opts) |
1da177e4 LT |
49 | { |
50 | if (!opts) | |
51 | return; | |
52 | ||
53 | opts->creator = HFSPLUS_DEF_CR_TYPE; | |
54 | opts->type = HFSPLUS_DEF_CR_TYPE; | |
ce3b0f8d | 55 | opts->umask = current_umask(); |
4ac8489a DH |
56 | opts->uid = current_uid(); |
57 | opts->gid = current_gid(); | |
1da177e4 LT |
58 | opts->part = -1; |
59 | opts->session = -1; | |
60 | } | |
61 | ||
62 | /* convert a "four byte character" to a 32 bit int with error checks */ | |
63 | static inline int match_fourchar(substring_t *arg, u32 *result) | |
64 | { | |
65 | if (arg->to - arg->from != 4) | |
66 | return -EINVAL; | |
67 | memcpy(result, arg->from, 4); | |
68 | return 0; | |
69 | } | |
70 | ||
6f80dfe5 CH |
71 | int hfsplus_parse_options_remount(char *input, int *force) |
72 | { | |
73 | char *p; | |
74 | substring_t args[MAX_OPT_ARGS]; | |
75 | int token; | |
76 | ||
77 | if (!input) | |
78 | return 0; | |
79 | ||
80 | while ((p = strsep(&input, ",")) != NULL) { | |
81 | if (!*p) | |
82 | continue; | |
83 | ||
84 | token = match_token(p, tokens, args); | |
85 | switch (token) { | |
86 | case opt_force: | |
87 | *force = 1; | |
88 | break; | |
89 | default: | |
90 | break; | |
91 | } | |
92 | } | |
93 | ||
94 | return 1; | |
95 | } | |
96 | ||
1da177e4 LT |
97 | /* Parse options from mount. Returns 0 on failure */ |
98 | /* input is the options passed to mount() as a string */ | |
717dd80e | 99 | int hfsplus_parse_options(char *input, struct hfsplus_sb_info *sbi) |
1da177e4 LT |
100 | { |
101 | char *p; | |
102 | substring_t args[MAX_OPT_ARGS]; | |
103 | int tmp, token; | |
104 | ||
105 | if (!input) | |
106 | goto done; | |
107 | ||
108 | while ((p = strsep(&input, ",")) != NULL) { | |
109 | if (!*p) | |
110 | continue; | |
111 | ||
112 | token = match_token(p, tokens, args); | |
113 | switch (token) { | |
114 | case opt_creator: | |
115 | if (match_fourchar(&args[0], &sbi->creator)) { | |
634725a9 | 116 | printk(KERN_ERR "hfs: creator requires a 4 character value\n"); |
1da177e4 LT |
117 | return 0; |
118 | } | |
119 | break; | |
120 | case opt_type: | |
121 | if (match_fourchar(&args[0], &sbi->type)) { | |
634725a9 | 122 | printk(KERN_ERR "hfs: type requires a 4 character value\n"); |
1da177e4 LT |
123 | return 0; |
124 | } | |
125 | break; | |
126 | case opt_umask: | |
127 | if (match_octal(&args[0], &tmp)) { | |
634725a9 | 128 | printk(KERN_ERR "hfs: umask requires a value\n"); |
1da177e4 LT |
129 | return 0; |
130 | } | |
131 | sbi->umask = (umode_t)tmp; | |
132 | break; | |
133 | case opt_uid: | |
134 | if (match_int(&args[0], &tmp)) { | |
634725a9 | 135 | printk(KERN_ERR "hfs: uid requires an argument\n"); |
1da177e4 LT |
136 | return 0; |
137 | } | |
138 | sbi->uid = (uid_t)tmp; | |
139 | break; | |
140 | case opt_gid: | |
141 | if (match_int(&args[0], &tmp)) { | |
634725a9 | 142 | printk(KERN_ERR "hfs: gid requires an argument\n"); |
1da177e4 LT |
143 | return 0; |
144 | } | |
145 | sbi->gid = (gid_t)tmp; | |
146 | break; | |
147 | case opt_part: | |
148 | if (match_int(&args[0], &sbi->part)) { | |
634725a9 | 149 | printk(KERN_ERR "hfs: part requires an argument\n"); |
1da177e4 LT |
150 | return 0; |
151 | } | |
152 | break; | |
153 | case opt_session: | |
154 | if (match_int(&args[0], &sbi->session)) { | |
634725a9 | 155 | printk(KERN_ERR "hfs: session requires an argument\n"); |
1da177e4 LT |
156 | return 0; |
157 | } | |
158 | break; | |
159 | case opt_nls: | |
160 | if (sbi->nls) { | |
634725a9 | 161 | printk(KERN_ERR "hfs: unable to change nls mapping\n"); |
1da177e4 LT |
162 | return 0; |
163 | } | |
164 | p = match_strdup(&args[0]); | |
cd6fda36 JM |
165 | if (p) |
166 | sbi->nls = load_nls(p); | |
1da177e4 | 167 | if (!sbi->nls) { |
2753cc28 AS |
168 | printk(KERN_ERR "hfs: unable to load " |
169 | "nls mapping \"%s\"\n", | |
170 | p); | |
1da177e4 LT |
171 | kfree(p); |
172 | return 0; | |
173 | } | |
174 | kfree(p); | |
175 | break; | |
176 | case opt_decompose: | |
84adede3 | 177 | clear_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags); |
1da177e4 LT |
178 | break; |
179 | case opt_nodecompose: | |
84adede3 | 180 | set_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags); |
1da177e4 | 181 | break; |
34a2d313 CH |
182 | case opt_barrier: |
183 | clear_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags); | |
184 | break; | |
185 | case opt_nobarrier: | |
186 | set_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags); | |
187 | break; | |
b0b623c3 | 188 | case opt_force: |
84adede3 | 189 | set_bit(HFSPLUS_SB_FORCE, &sbi->flags); |
b0b623c3 | 190 | break; |
1da177e4 LT |
191 | default: |
192 | return 0; | |
193 | } | |
194 | } | |
195 | ||
196 | done: | |
197 | if (!sbi->nls) { | |
198 | /* try utf8 first, as this is the old default behaviour */ | |
199 | sbi->nls = load_nls("utf8"); | |
200 | if (!sbi->nls) | |
201 | sbi->nls = load_nls_default(); | |
202 | if (!sbi->nls) | |
203 | return 0; | |
204 | } | |
205 | ||
206 | return 1; | |
207 | } | |
717dd80e RZ |
208 | |
209 | int hfsplus_show_options(struct seq_file *seq, struct vfsmount *mnt) | |
210 | { | |
dd73a01a | 211 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(mnt->mnt_sb); |
717dd80e RZ |
212 | |
213 | if (sbi->creator != HFSPLUS_DEF_CR_TYPE) | |
214 | seq_printf(seq, ",creator=%.4s", (char *)&sbi->creator); | |
215 | if (sbi->type != HFSPLUS_DEF_CR_TYPE) | |
216 | seq_printf(seq, ",type=%.4s", (char *)&sbi->type); | |
2753cc28 AS |
217 | seq_printf(seq, ",umask=%o,uid=%u,gid=%u", sbi->umask, |
218 | sbi->uid, sbi->gid); | |
717dd80e RZ |
219 | if (sbi->part >= 0) |
220 | seq_printf(seq, ",part=%u", sbi->part); | |
221 | if (sbi->session >= 0) | |
222 | seq_printf(seq, ",session=%u", sbi->session); | |
223 | if (sbi->nls) | |
224 | seq_printf(seq, ",nls=%s", sbi->nls->charset); | |
84adede3 | 225 | if (test_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags)) |
717dd80e | 226 | seq_printf(seq, ",nodecompose"); |
34a2d313 CH |
227 | if (test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags)) |
228 | seq_printf(seq, ",nobarrier"); | |
717dd80e RZ |
229 | return 0; |
230 | } |