blob: 047e05c575601bb9699138be91f21f81fa17b82a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/hfsplus/options.c
4 *
5 * Copyright (C) 2001
6 * Brad Boyer (flar@allandria.com)
7 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 *
9 * Option parsing
10 */
11
12#include <linux/string.h>
13#include <linux/kernel.h>
14#include <linux/sched.h>
15#include <linux/parser.h>
16#include <linux/nls.h>
Roman Zippel717dd80e2005-09-06 15:18:48 -070017#include <linux/mount.h>
18#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "hfsplus_fs.h"
21
22enum {
23 opt_creator, opt_type,
24 opt_umask, opt_uid, opt_gid,
25 opt_part, opt_session, opt_nls,
26 opt_nodecompose, opt_decompose,
Christoph Hellwig34a2d312010-11-23 14:38:21 +010027 opt_barrier, opt_nobarrier,
Roman Zippelb0b623c2005-11-29 19:34:41 -080028 opt_force, opt_err
Linus Torvalds1da177e2005-04-16 15:20:36 -070029};
30
Steven Whitehousea447c092008-10-13 10:46:57 +010031static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 { opt_creator, "creator=%s" },
33 { opt_type, "type=%s" },
34 { opt_umask, "umask=%o" },
35 { opt_uid, "uid=%u" },
36 { opt_gid, "gid=%u" },
37 { opt_part, "part=%u" },
38 { opt_session, "session=%u" },
39 { opt_nls, "nls=%s" },
40 { opt_decompose, "decompose" },
41 { opt_nodecompose, "nodecompose" },
Christoph Hellwig34a2d312010-11-23 14:38:21 +010042 { opt_barrier, "barrier" },
43 { opt_nobarrier, "nobarrier" },
Roman Zippelb0b623c2005-11-29 19:34:41 -080044 { opt_force, "force" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 { opt_err, NULL }
46};
47
48/* Initialize an options object to reasonable defaults */
Roman Zippel717dd80e2005-09-06 15:18:48 -070049void hfsplus_fill_defaults(struct hfsplus_sb_info *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 if (!opts)
52 return;
53
54 opts->creator = HFSPLUS_DEF_CR_TYPE;
55 opts->type = HFSPLUS_DEF_CR_TYPE;
Al Viroce3b0f82009-03-29 19:08:22 -040056 opts->umask = current_umask();
David Howells4ac84892008-11-14 10:38:54 +110057 opts->uid = current_uid();
58 opts->gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 opts->part = -1;
60 opts->session = -1;
61}
62
63/* convert a "four byte character" to a 32 bit int with error checks */
64static inline int match_fourchar(substring_t *arg, u32 *result)
65{
66 if (arg->to - arg->from != 4)
67 return -EINVAL;
68 memcpy(result, arg->from, 4);
69 return 0;
70}
71
Christoph Hellwig6f80dfe2010-11-07 23:01:17 +010072int hfsplus_parse_options_remount(char *input, int *force)
73{
74 char *p;
75 substring_t args[MAX_OPT_ARGS];
76 int token;
77
78 if (!input)
Vyacheslav Dubeykobd2c0032014-03-03 15:38:35 -080079 return 1;
Christoph Hellwig6f80dfe2010-11-07 23:01:17 +010080
81 while ((p = strsep(&input, ",")) != NULL) {
82 if (!*p)
83 continue;
84
85 token = match_token(p, tokens, args);
86 switch (token) {
87 case opt_force:
88 *force = 1;
89 break;
90 default:
91 break;
92 }
93 }
94
95 return 1;
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* Parse options from mount. Returns 0 on failure */
99/* input is the options passed to mount() as a string */
Roman Zippel717dd80e2005-09-06 15:18:48 -0700100int hfsplus_parse_options(char *input, struct hfsplus_sb_info *sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 char *p;
103 substring_t args[MAX_OPT_ARGS];
104 int tmp, token;
105
106 if (!input)
107 goto done;
108
109 while ((p = strsep(&input, ",")) != NULL) {
110 if (!*p)
111 continue;
112
113 token = match_token(p, tokens, args);
114 switch (token) {
115 case opt_creator:
116 if (match_fourchar(&args[0], &sbi->creator)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700117 pr_err("creator requires a 4 character value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119 }
120 break;
121 case opt_type:
122 if (match_fourchar(&args[0], &sbi->type)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700123 pr_err("type requires a 4 character value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return 0;
125 }
126 break;
127 case opt_umask:
128 if (match_octal(&args[0], &tmp)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700129 pr_err("umask requires a value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return 0;
131 }
132 sbi->umask = (umode_t)tmp;
133 break;
134 case opt_uid:
135 if (match_int(&args[0], &tmp)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700136 pr_err("uid requires an argument\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return 0;
138 }
Eric W. Biederman16525e32012-02-07 16:27:17 -0800139 sbi->uid = make_kuid(current_user_ns(), (uid_t)tmp);
140 if (!uid_valid(sbi->uid)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700141 pr_err("invalid uid specified\n");
Eric W. Biederman16525e32012-02-07 16:27:17 -0800142 return 0;
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 break;
145 case opt_gid:
146 if (match_int(&args[0], &tmp)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700147 pr_err("gid requires an argument\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149 }
Eric W. Biederman16525e32012-02-07 16:27:17 -0800150 sbi->gid = make_kgid(current_user_ns(), (gid_t)tmp);
151 if (!gid_valid(sbi->gid)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700152 pr_err("invalid gid specified\n");
Eric W. Biederman16525e32012-02-07 16:27:17 -0800153 return 0;
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156 case opt_part:
157 if (match_int(&args[0], &sbi->part)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700158 pr_err("part requires an argument\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
160 }
161 break;
162 case opt_session:
163 if (match_int(&args[0], &sbi->session)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700164 pr_err("session requires an argument\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166 }
167 break;
168 case opt_nls:
169 if (sbi->nls) {
Joe Perchesd6142672013-04-30 15:27:55 -0700170 pr_err("unable to change nls mapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return 0;
172 }
173 p = match_strdup(&args[0]);
Jim Meyeringcd6fda32008-04-29 00:59:08 -0700174 if (p)
175 sbi->nls = load_nls(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (!sbi->nls) {
Fabian Frederickd8983ca2014-06-06 14:36:26 -0700177 pr_err("unable to load nls mapping \"%s\"\n",
178 p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 kfree(p);
180 return 0;
181 }
182 kfree(p);
183 break;
184 case opt_decompose:
Christoph Hellwig84adede2010-10-01 05:45:20 +0200185 clear_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 break;
187 case opt_nodecompose:
Christoph Hellwig84adede2010-10-01 05:45:20 +0200188 set_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 break;
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100190 case opt_barrier:
191 clear_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags);
192 break;
193 case opt_nobarrier:
194 set_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags);
195 break;
Roman Zippelb0b623c2005-11-29 19:34:41 -0800196 case opt_force:
Christoph Hellwig84adede2010-10-01 05:45:20 +0200197 set_bit(HFSPLUS_SB_FORCE, &sbi->flags);
Roman Zippelb0b623c2005-11-29 19:34:41 -0800198 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 default:
200 return 0;
201 }
202 }
203
204done:
205 if (!sbi->nls) {
206 /* try utf8 first, as this is the old default behaviour */
207 sbi->nls = load_nls("utf8");
208 if (!sbi->nls)
209 sbi->nls = load_nls_default();
210 if (!sbi->nls)
211 return 0;
212 }
213
214 return 1;
215}
Roman Zippel717dd80e2005-09-06 15:18:48 -0700216
Al Viro34c80b12011-12-08 21:32:45 -0500217int hfsplus_show_options(struct seq_file *seq, struct dentry *root)
Roman Zippel717dd80e2005-09-06 15:18:48 -0700218{
Al Viro34c80b12011-12-08 21:32:45 -0500219 struct hfsplus_sb_info *sbi = HFSPLUS_SB(root->d_sb);
Roman Zippel717dd80e2005-09-06 15:18:48 -0700220
221 if (sbi->creator != HFSPLUS_DEF_CR_TYPE)
Kees Cooka068acf2015-09-04 15:44:57 -0700222 seq_show_option_n(seq, "creator", (char *)&sbi->creator, 4);
Roman Zippel717dd80e2005-09-06 15:18:48 -0700223 if (sbi->type != HFSPLUS_DEF_CR_TYPE)
Kees Cooka068acf2015-09-04 15:44:57 -0700224 seq_show_option_n(seq, "type", (char *)&sbi->type, 4);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200225 seq_printf(seq, ",umask=%o,uid=%u,gid=%u", sbi->umask,
Eric W. Biederman16525e32012-02-07 16:27:17 -0800226 from_kuid_munged(&init_user_ns, sbi->uid),
227 from_kgid_munged(&init_user_ns, sbi->gid));
Roman Zippel717dd80e2005-09-06 15:18:48 -0700228 if (sbi->part >= 0)
229 seq_printf(seq, ",part=%u", sbi->part);
230 if (sbi->session >= 0)
231 seq_printf(seq, ",session=%u", sbi->session);
232 if (sbi->nls)
233 seq_printf(seq, ",nls=%s", sbi->nls->charset);
Christoph Hellwig84adede2010-10-01 05:45:20 +0200234 if (test_bit(HFSPLUS_SB_NODECOMPOSE, &sbi->flags))
Fabian Frederickd8983ca2014-06-06 14:36:26 -0700235 seq_puts(seq, ",nodecompose");
Christoph Hellwig34a2d312010-11-23 14:38:21 +0100236 if (test_bit(HFSPLUS_SB_NOBARRIER, &sbi->flags))
Fabian Frederickd8983ca2014-06-06 14:36:26 -0700237 seq_puts(seq, ",nobarrier");
Roman Zippel717dd80e2005-09-06 15:18:48 -0700238 return 0;
239}