blob: 8c0f16e301f6c8e1361073bbe5b021003ba06218 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050014#include <linux/gfs2_ondisk.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020015#include <linux/lm_interface.h>
Josef Bacik476c0062007-04-23 11:55:39 -040016#include <linux/parser.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000020#include "mount.h"
21#include "sys.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023
Josef Bacik476c0062007-04-23 11:55:39 -040024enum {
25 Opt_lockproto,
26 Opt_locktable,
27 Opt_hostdata,
28 Opt_spectator,
29 Opt_ignore_local_fs,
30 Opt_localflocks,
31 Opt_localcaching,
32 Opt_debug,
33 Opt_nodebug,
34 Opt_upgrade,
Josef Bacik476c0062007-04-23 11:55:39 -040035 Opt_acl,
36 Opt_noacl,
37 Opt_quota_off,
38 Opt_quota_account,
39 Opt_quota_on,
40 Opt_suiddir,
41 Opt_nosuiddir,
42 Opt_data_writeback,
43 Opt_data_ordered,
Steven Whitehouse9b8df982008-08-08 13:45:13 +010044 Opt_meta,
Benjamin Marzinski9a5ad132007-08-17 20:22:07 -050045 Opt_err,
Josef Bacik476c0062007-04-23 11:55:39 -040046};
47
Steven Whitehousea447c092008-10-13 10:46:57 +010048static const match_table_t tokens = {
Josef Bacik476c0062007-04-23 11:55:39 -040049 {Opt_lockproto, "lockproto=%s"},
50 {Opt_locktable, "locktable=%s"},
51 {Opt_hostdata, "hostdata=%s"},
52 {Opt_spectator, "spectator"},
53 {Opt_ignore_local_fs, "ignore_local_fs"},
54 {Opt_localflocks, "localflocks"},
55 {Opt_localcaching, "localcaching"},
56 {Opt_debug, "debug"},
57 {Opt_nodebug, "nodebug"},
58 {Opt_upgrade, "upgrade"},
Josef Bacik476c0062007-04-23 11:55:39 -040059 {Opt_acl, "acl"},
60 {Opt_noacl, "noacl"},
61 {Opt_quota_off, "quota=off"},
62 {Opt_quota_account, "quota=account"},
63 {Opt_quota_on, "quota=on"},
64 {Opt_suiddir, "suiddir"},
65 {Opt_nosuiddir, "nosuiddir"},
66 {Opt_data_writeback, "data=writeback"},
Benjamin Marzinski9a5ad132007-08-17 20:22:07 -050067 {Opt_data_ordered, "data=ordered"},
Steven Whitehouse9b8df982008-08-08 13:45:13 +010068 {Opt_meta, "meta"},
Benjamin Marzinski9a5ad132007-08-17 20:22:07 -050069 {Opt_err, NULL}
Josef Bacik476c0062007-04-23 11:55:39 -040070};
71
David Teiglandb3b94fa2006-01-16 16:50:04 +000072/**
73 * gfs2_mount_args - Parse mount options
74 * @sdp:
75 * @data:
76 *
77 * Return: errno
78 */
79
80int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount)
81{
82 struct gfs2_args *args = &sdp->sd_args;
83 char *data = data_arg;
84 char *options, *o, *v;
85 int error = 0;
86
Steven Whitehoused18c4d62007-07-19 16:12:50 +010087 if (!remount) {
88 /* If someone preloaded options, use those instead */
89 spin_lock(&gfs2_sys_margs_lock);
90 if (gfs2_sys_margs) {
91 data = gfs2_sys_margs;
92 gfs2_sys_margs = NULL;
93 }
94 spin_unlock(&gfs2_sys_margs_lock);
Bob Peterson569a7b62007-06-27 10:15:56 -050095
Steven Whitehoused18c4d62007-07-19 16:12:50 +010096 /* Set some defaults */
Steven Whitehoused18c4d62007-07-19 16:12:50 +010097 args->ar_quota = GFS2_QUOTA_DEFAULT;
98 args->ar_data = GFS2_DATA_DEFAULT;
99 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100
101 /* Split the options into tokens with the "," character and
102 process them */
103
104 for (options = data; (o = strsep(&options, ",")); ) {
Steven Whitehouse97cc10252008-11-20 13:39:47 +0000105 int token;
Josef Bacik476c0062007-04-23 11:55:39 -0400106 substring_t tmp[MAX_OPT_ARGS];
107
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108 if (!*o)
109 continue;
110
Josef Bacik476c0062007-04-23 11:55:39 -0400111 token = match_token(o, tokens, tmp);
112 switch (token) {
113 case Opt_lockproto:
114 v = match_strdup(&tmp[0]);
115 if (!v) {
116 fs_info(sdp, "no memory for lockproto\n");
117 error = -ENOMEM;
118 goto out_error;
119 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120
Josef Bacik476c0062007-04-23 11:55:39 -0400121 if (remount && strcmp(v, args->ar_lockproto)) {
122 kfree(v);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123 goto cant_remount;
Josef Bacik476c0062007-04-23 11:55:39 -0400124 }
125
David Teiglandb3b94fa2006-01-16 16:50:04 +0000126 strncpy(args->ar_lockproto, v, GFS2_LOCKNAME_LEN);
127 args->ar_lockproto[GFS2_LOCKNAME_LEN - 1] = 0;
Josef Bacik476c0062007-04-23 11:55:39 -0400128 kfree(v);
129 break;
130 case Opt_locktable:
131 v = match_strdup(&tmp[0]);
132 if (!v) {
133 fs_info(sdp, "no memory for locktable\n");
134 error = -ENOMEM;
135 goto out_error;
136 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000137
Josef Bacik476c0062007-04-23 11:55:39 -0400138 if (remount && strcmp(v, args->ar_locktable)) {
139 kfree(v);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 goto cant_remount;
Josef Bacik476c0062007-04-23 11:55:39 -0400141 }
142
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 strncpy(args->ar_locktable, v, GFS2_LOCKNAME_LEN);
Josef Bacik476c0062007-04-23 11:55:39 -0400144 args->ar_locktable[GFS2_LOCKNAME_LEN - 1] = 0;
145 kfree(v);
146 break;
147 case Opt_hostdata:
148 v = match_strdup(&tmp[0]);
149 if (!v) {
150 fs_info(sdp, "no memory for hostdata\n");
151 error = -ENOMEM;
152 goto out_error;
153 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154
Josef Bacik476c0062007-04-23 11:55:39 -0400155 if (remount && strcmp(v, args->ar_hostdata)) {
156 kfree(v);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 goto cant_remount;
Josef Bacik476c0062007-04-23 11:55:39 -0400158 }
159
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160 strncpy(args->ar_hostdata, v, GFS2_LOCKNAME_LEN);
161 args->ar_hostdata[GFS2_LOCKNAME_LEN - 1] = 0;
Josef Bacik476c0062007-04-23 11:55:39 -0400162 kfree(v);
163 break;
164 case Opt_spectator:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165 if (remount && !args->ar_spectator)
166 goto cant_remount;
167 args->ar_spectator = 1;
168 sdp->sd_vfs->s_flags |= MS_RDONLY;
Josef Bacik476c0062007-04-23 11:55:39 -0400169 break;
170 case Opt_ignore_local_fs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 if (remount && !args->ar_ignore_local_fs)
172 goto cant_remount;
173 args->ar_ignore_local_fs = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400174 break;
175 case Opt_localflocks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000176 if (remount && !args->ar_localflocks)
177 goto cant_remount;
178 args->ar_localflocks = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400179 break;
180 case Opt_localcaching:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 if (remount && !args->ar_localcaching)
182 goto cant_remount;
183 args->ar_localcaching = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400184 break;
185 case Opt_debug:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 args->ar_debug = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400187 break;
188 case Opt_nodebug:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189 args->ar_debug = 0;
Josef Bacik476c0062007-04-23 11:55:39 -0400190 break;
191 case Opt_upgrade:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192 if (remount && !args->ar_upgrade)
193 goto cant_remount;
194 args->ar_upgrade = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400195 break;
Josef Bacik476c0062007-04-23 11:55:39 -0400196 case Opt_acl:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 args->ar_posix_acl = 1;
198 sdp->sd_vfs->s_flags |= MS_POSIXACL;
Josef Bacik476c0062007-04-23 11:55:39 -0400199 break;
200 case Opt_noacl:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 args->ar_posix_acl = 0;
202 sdp->sd_vfs->s_flags &= ~MS_POSIXACL;
Josef Bacik476c0062007-04-23 11:55:39 -0400203 break;
204 case Opt_quota_off:
205 args->ar_quota = GFS2_QUOTA_OFF;
206 break;
207 case Opt_quota_account:
208 args->ar_quota = GFS2_QUOTA_ACCOUNT;
209 break;
210 case Opt_quota_on:
211 args->ar_quota = GFS2_QUOTA_ON;
212 break;
213 case Opt_suiddir:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214 args->ar_suiddir = 1;
Josef Bacik476c0062007-04-23 11:55:39 -0400215 break;
216 case Opt_nosuiddir:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 args->ar_suiddir = 0;
Josef Bacik476c0062007-04-23 11:55:39 -0400218 break;
219 case Opt_data_writeback:
220 args->ar_data = GFS2_DATA_WRITEBACK;
221 break;
222 case Opt_data_ordered:
223 args->ar_data = GFS2_DATA_ORDERED;
224 break;
Steven Whitehouse9b8df982008-08-08 13:45:13 +0100225 case Opt_meta:
226 if (remount && args->ar_meta != 1)
227 goto cant_remount;
228 args->ar_meta = 1;
229 break;
Benjamin Marzinski9a5ad132007-08-17 20:22:07 -0500230 case Opt_err:
Josef Bacik476c0062007-04-23 11:55:39 -0400231 default:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000232 fs_info(sdp, "unknown option: %s\n", o);
233 error = -EINVAL;
Josef Bacik476c0062007-04-23 11:55:39 -0400234 goto out_error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235 }
236 }
237
Josef Bacik476c0062007-04-23 11:55:39 -0400238out_error:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 if (error)
240 fs_info(sdp, "invalid mount option(s)\n");
241
242 if (data != data_arg)
243 kfree(data);
244
245 return error;
246
Steven Whitehousea91ea692006-09-04 12:04:26 -0400247cant_remount:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 fs_info(sdp, "can't remount with option %s\n", o);
249 return -EINVAL;
250}
251