blob: 4fb9ad80d2600ac5ac53ddd399ff29ec1cb61f89 [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
10#include <linux/sched.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000011#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
14#include <linux/module.h>
15#include <linux/kobject.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016#include <asm/uaccess.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000017#include <linux/gfs2_ondisk.h>
Steven Whitehouse31e54b02009-08-13 12:18:08 +010018#include <linux/genhd.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000019
20#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050021#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "sys.h"
23#include "super.h"
24#include "glock.h"
25#include "quota.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050026#include "util.h"
Steven Whitehouse64d576b2009-02-12 13:31:58 +000027#include "glops.h"
Tejun Heo6ecd7c22010-07-20 22:09:02 +020028#include "recovery.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
Steven Whitehouse48c2b612009-05-13 14:49:48 +010030struct gfs2_attr {
31 struct attribute attr;
32 ssize_t (*show)(struct gfs2_sbd *, char *);
33 ssize_t (*store)(struct gfs2_sbd *, const char *, size_t);
34};
35
36static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr,
37 char *buf)
38{
39 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
40 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
41 return a->show ? a->show(sdp, buf) : 0;
42}
43
44static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr,
45 const char *buf, size_t len)
46{
47 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
48 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
49 return a->store ? a->store(sdp, buf, len) : len;
50}
51
Emese Revfy52cf25d2010-01-19 02:58:23 +010052static const struct sysfs_ops gfs2_attr_ops = {
Steven Whitehouse48c2b612009-05-13 14:49:48 +010053 .show = gfs2_attr_show,
54 .store = gfs2_attr_store,
55};
56
57
58static struct kset *gfs2_kset;
59
David Teiglandb3b94fa2006-01-16 16:50:04 +000060static ssize_t id_show(struct gfs2_sbd *sdp, char *buf)
61{
Bob Petersonc7227e462007-11-02 09:37:15 -050062 return snprintf(buf, PAGE_SIZE, "%u:%u\n",
63 MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev));
David Teiglandb3b94fa2006-01-16 16:50:04 +000064}
65
66static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf)
67{
David Teigland3204a6c2006-09-06 16:57:06 -050068 return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname);
David Teiglandb3b94fa2006-01-16 16:50:04 +000069}
70
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000071static int gfs2_uuid_valid(const u8 *uuid)
72{
73 int i;
74
75 for (i = 0; i < 16; i++) {
76 if (uuid[i])
77 return 1;
78 }
79 return 0;
80}
81
82static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf)
83{
Steven Whitehouse32e471e2011-05-10 15:01:59 +010084 struct super_block *s = sdp->sd_vfs;
85 const u8 *uuid = s->s_uuid;
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000086 buf[0] = '\0';
87 if (!gfs2_uuid_valid(uuid))
88 return 0;
Joe Perchesf0b34ae2009-12-14 18:01:13 -080089 return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000090}
91
David Teiglandb3b94fa2006-01-16 16:50:04 +000092static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
93{
Steven Whitehoused564053f2013-01-11 10:49:34 +000094 struct super_block *sb = sdp->sd_vfs;
95 int frozen = (sb->s_writers.frozen == SB_UNFROZEN) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +000096
Steven Whitehoused564053f2013-01-11 10:49:34 +000097 return snprintf(buf, PAGE_SIZE, "%u\n", frozen);
David Teiglandb3b94fa2006-01-16 16:50:04 +000098}
99
100static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
101{
Steven Whitehoused564053f2013-01-11 10:49:34 +0000102 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103 int n = simple_strtol(buf, NULL, 0);
104
105 if (!capable(CAP_SYS_ADMIN))
106 return -EACCES;
107
108 switch (n) {
109 case 0:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000110 error = thaw_super(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000111 break;
112 case 1:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000113 error = freeze_super(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114 break;
115 default:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000116 return -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 }
118
Steven Whitehoused564053f2013-01-11 10:49:34 +0000119 if (error) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120 fs_warn(sdp, "freeze %d error %d", n, error);
Steven Whitehoused564053f2013-01-11 10:49:34 +0000121 return error;
122 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000123
Steven Whitehoused564053f2013-01-11 10:49:34 +0000124 return len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125}
126
127static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf)
128{
129 unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags);
David Teigland3204a6c2006-09-06 16:57:06 -0500130 return snprintf(buf, PAGE_SIZE, "%u\n", b);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000131}
132
133static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
134{
135 if (!capable(CAP_SYS_ADMIN))
136 return -EACCES;
137
138 if (simple_strtol(buf, NULL, 0) != 1)
139 return -EINVAL;
140
141 gfs2_lm_withdraw(sdp,
142 "GFS2: fsid=%s: withdrawing from cluster at user's request\n",
143 sdp->sd_fsname);
144 return len;
145}
146
147static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
148 size_t len)
149{
150 if (!capable(CAP_SYS_ADMIN))
151 return -EACCES;
152
153 if (simple_strtol(buf, NULL, 0) != 1)
154 return -EINVAL;
155
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100156 gfs2_statfs_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 return len;
158}
159
David Teiglandb3b94fa2006-01-16 16:50:04 +0000160static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
161 size_t len)
162{
163 if (!capable(CAP_SYS_ADMIN))
164 return -EACCES;
165
166 if (simple_strtol(buf, NULL, 0) != 1)
167 return -EINVAL;
168
Jan Karaceed1722012-07-03 16:45:28 +0200169 gfs2_quota_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000170 return len;
171}
172
173static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
174 size_t len)
175{
Steven Whitehouseea762332009-09-15 16:20:30 +0100176 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400177 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178
179 if (!capable(CAP_SYS_ADMIN))
180 return -EACCES;
181
182 id = simple_strtoul(buf, NULL, 0);
183
Steven Whitehouseea762332009-09-15 16:20:30 +0100184 error = gfs2_quota_refresh(sdp, 1, id);
185 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186}
187
188static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
189 size_t len)
190{
Steven Whitehouseea762332009-09-15 16:20:30 +0100191 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400192 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193
194 if (!capable(CAP_SYS_ADMIN))
195 return -EACCES;
196
197 id = simple_strtoul(buf, NULL, 0);
198
Steven Whitehouseea762332009-09-15 16:20:30 +0100199 error = gfs2_quota_refresh(sdp, 0, id);
200 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201}
202
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000203static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
204{
205 struct gfs2_glock *gl;
206 const struct gfs2_glock_operations *glops;
207 unsigned int glmode;
208 unsigned int gltype;
209 unsigned long long glnum;
210 char mode[16];
211 int rv;
212
213 if (!capable(CAP_SYS_ADMIN))
214 return -EACCES;
215
216 rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
217 mode);
218 if (rv != 3)
219 return -EINVAL;
220
221 if (strcmp(mode, "EX") == 0)
222 glmode = LM_ST_UNLOCKED;
223 else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
224 glmode = LM_ST_DEFERRED;
225 else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
226 glmode = LM_ST_SHARED;
227 else
228 return -EINVAL;
229
230 if (gltype > LM_TYPE_JOURNAL)
231 return -EINVAL;
Steven Whitehouse13466982010-10-06 09:58:44 +0100232 if (gltype == LM_TYPE_NONDISK && glnum == GFS2_TRANS_LOCK)
233 glops = &gfs2_trans_glops;
234 else
235 glops = gfs2_glops_list[gltype];
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000236 if (glops == NULL)
237 return -EINVAL;
Steven Whitehouse6a99be52010-05-14 14:05:51 +0100238 if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
Steven Whitehouse913a71d2010-05-06 11:03:29 +0100239 fs_info(sdp, "demote interface used\n");
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000240 rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
241 if (rv)
242 return rv;
243 gfs2_glock_cb(gl, glmode);
244 gfs2_glock_put(gl);
245 return len;
246}
247
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248
249#define GFS2_ATTR(name, mode, show, store) \
250static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
251
252GFS2_ATTR(id, 0444, id_show, NULL);
253GFS2_ATTR(fsname, 0444, fsname_show, NULL);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000254GFS2_ATTR(uuid, 0444, uuid_show, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000256GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
257GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
258GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
259GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
260GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000261GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262
263static struct attribute *gfs2_attrs[] = {
264 &gfs2_attr_id.attr,
265 &gfs2_attr_fsname.attr,
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000266 &gfs2_attr_uuid.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267 &gfs2_attr_freeze.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268 &gfs2_attr_withdraw.attr,
269 &gfs2_attr_statfs_sync.attr,
270 &gfs2_attr_quota_sync.attr,
271 &gfs2_attr_quota_refresh_user.attr,
272 &gfs2_attr_quota_refresh_group.attr,
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000273 &gfs2_attr_demote_rq.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 NULL,
275};
276
Bob Peterson0d515212012-06-13 10:27:41 -0400277static void gfs2_sbd_release(struct kobject *kobj)
278{
279 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
280
281 kfree(sdp);
282}
283
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284static struct kobj_type gfs2_ktype = {
Bob Peterson0d515212012-06-13 10:27:41 -0400285 .release = gfs2_sbd_release,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 .default_attrs = gfs2_attrs,
287 .sysfs_ops = &gfs2_attr_ops,
288};
289
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000290
291/*
292 * lock_module. Originally from lock_dlm
293 */
294
295static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
296{
297 const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
298 return sprintf(buf, "%s\n", ops->lm_proto_name);
299}
300
301static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
302{
303 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
304 ssize_t ret;
305 int val = 0;
306
David Teiglande0c2a9a2012-01-09 17:18:05 -0500307 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000308 val = 1;
309 ret = sprintf(buf, "%d\n", val);
310 return ret;
311}
312
313static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
314{
315 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
316 ssize_t ret = len;
317 int val;
318
319 val = simple_strtol(buf, NULL, 0);
320
321 if (val == 1)
David Teiglande0c2a9a2012-01-09 17:18:05 -0500322 set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000323 else if (val == 0) {
David Teiglande0c2a9a2012-01-09 17:18:05 -0500324 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000325 smp_mb__after_clear_bit();
326 gfs2_glock_thaw(sdp);
327 } else {
328 ret = -EINVAL;
329 }
330 return ret;
331}
332
Steven Whitehousefd95e812013-02-13 12:21:40 +0000333static ssize_t wdack_show(struct gfs2_sbd *sdp, char *buf)
334{
335 int val = completion_done(&sdp->sd_wdack) ? 1 : 0;
336
337 return sprintf(buf, "%d\n", val);
338}
339
340static ssize_t wdack_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
341{
342 ssize_t ret = len;
343 int val;
344
345 val = simple_strtol(buf, NULL, 0);
346
347 if ((val == 1) &&
348 !strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm"))
349 complete(&sdp->sd_wdack);
350 else
351 ret = -EINVAL;
352 return ret;
353}
354
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000355static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
356{
357 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
358 return sprintf(buf, "%d\n", ls->ls_first);
359}
360
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100361static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
362{
363 unsigned first;
364 int rv;
365
366 rv = sscanf(buf, "%u", &first);
367 if (rv != 1 || first > 1)
368 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100369 rv = wait_for_completion_killable(&sdp->sd_locking_init);
370 if (rv)
371 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100372 spin_lock(&sdp->sd_jindex_spin);
373 rv = -EBUSY;
374 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
375 goto out;
376 rv = -EINVAL;
377 if (sdp->sd_args.ar_spectator)
378 goto out;
379 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
380 goto out;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500381 sdp->sd_lockstruct.ls_first = first;
382 rv = 0;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100383out:
384 spin_unlock(&sdp->sd_jindex_spin);
385 return rv ? rv : len;
386}
387
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000388static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
389{
390 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500391 return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags));
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000392}
393
David Teiglande0c2a9a2012-01-09 17:18:05 -0500394int gfs2_recover_set(struct gfs2_sbd *sdp, unsigned jid)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000395{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000396 struct gfs2_jdesc *jd;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100397 int rv;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000398
399 spin_lock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100400 rv = -EBUSY;
401 if (sdp->sd_jdesc->jd_jid == jid)
402 goto out;
403 rv = -ENOENT;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000404 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
405 if (jd->jd_jid != jid)
406 continue;
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200407 rv = gfs2_recover_journal(jd, false);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000408 break;
409 }
Steven Whitehousefe64d512009-05-19 10:01:18 +0100410out:
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000411 spin_unlock(&sdp->sd_jindex_spin);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500412 return rv;
413}
414
415static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
416{
417 unsigned jid;
418 int rv;
419
420 rv = sscanf(buf, "%u", &jid);
421 if (rv != 1)
422 return -EINVAL;
423
David Teigland1a058f52012-05-01 15:50:48 -0500424 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) {
425 rv = -ESHUTDOWN;
426 goto out;
427 }
David Teiglande0c2a9a2012-01-09 17:18:05 -0500428
David Teigland1a058f52012-05-01 15:50:48 -0500429 rv = gfs2_recover_set(sdp, jid);
430out:
Steven Whitehousefe64d512009-05-19 10:01:18 +0100431 return rv ? rv : len;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000432}
433
434static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
435{
436 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
437 return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
438}
439
440static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
441{
442 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
443 return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
444}
445
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100446static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
447{
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100448 return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid);
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100449}
450
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100451static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
452{
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100453 int jid;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100454 int rv;
455
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100456 rv = sscanf(buf, "%d", &jid);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100457 if (rv != 1)
458 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100459 rv = wait_for_completion_killable(&sdp->sd_locking_init);
460 if (rv)
461 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100462 spin_lock(&sdp->sd_jindex_spin);
463 rv = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100464 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
465 goto out;
466 rv = -EBUSY;
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100467 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100468 goto out;
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100469 rv = 0;
470 if (sdp->sd_args.ar_spectator && jid > 0)
471 rv = jid = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100472 sdp->sd_lockstruct.ls_jid = jid;
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100473 clear_bit(SDF_NOJOURNALID, &sdp->sd_flags);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100474 smp_mb__after_clear_bit();
475 wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100476out:
477 spin_unlock(&sdp->sd_jindex_spin);
478 return rv ? rv : len;
479}
480
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000481#define GDLM_ATTR(_name,_mode,_show,_store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100482static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000483
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100484GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
485GDLM_ATTR(block, 0644, block_show, block_store);
Steven Whitehousefd95e812013-02-13 12:21:40 +0000486GDLM_ATTR(withdraw, 0644, wdack_show, wdack_store);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100487GDLM_ATTR(jid, 0644, jid_show, jid_store);
488GDLM_ATTR(first, 0644, lkfirst_show, lkfirst_store);
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100489GDLM_ATTR(first_done, 0444, first_done_show, NULL);
490GDLM_ATTR(recover, 0600, NULL, recover_store);
491GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
492GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000493
494static struct attribute *lock_module_attrs[] = {
495 &gdlm_attr_proto_name.attr,
496 &gdlm_attr_block.attr,
497 &gdlm_attr_withdraw.attr,
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100498 &gdlm_attr_jid.attr,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000499 &gdlm_attr_first.attr,
500 &gdlm_attr_first_done.attr,
501 &gdlm_attr_recover.attr,
502 &gdlm_attr_recover_done.attr,
503 &gdlm_attr_recover_status.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400504 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505};
506
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507/*
David Teiglandb3b94fa2006-01-16 16:50:04 +0000508 * get and set struct gfs2_tune fields
509 */
510
511static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
512{
David Teigland3204a6c2006-09-06 16:57:06 -0500513 return snprintf(buf, PAGE_SIZE, "%u %u\n",
514 sdp->sd_tune.gt_quota_scale_num,
515 sdp->sd_tune.gt_quota_scale_den);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516}
517
518static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
519 size_t len)
520{
521 struct gfs2_tune *gt = &sdp->sd_tune;
522 unsigned int x, y;
523
524 if (!capable(CAP_SYS_ADMIN))
525 return -EACCES;
526
527 if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
528 return -EINVAL;
529
530 spin_lock(&gt->gt_spin);
531 gt->gt_quota_scale_num = x;
532 gt->gt_quota_scale_den = y;
533 spin_unlock(&gt->gt_spin);
534 return len;
535}
536
537static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
538 int check_zero, const char *buf, size_t len)
539{
540 struct gfs2_tune *gt = &sdp->sd_tune;
541 unsigned int x;
542
543 if (!capable(CAP_SYS_ADMIN))
544 return -EACCES;
545
546 x = simple_strtoul(buf, NULL, 0);
547
548 if (check_zero && !x)
549 return -EINVAL;
550
551 spin_lock(&gt->gt_spin);
552 *field = x;
553 spin_unlock(&gt->gt_spin);
554 return len;
555}
556
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557#define TUNE_ATTR_3(name, show, store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100558static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559
560#define TUNE_ATTR_2(name, store) \
561static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
562{ \
David Teigland3204a6c2006-09-06 16:57:06 -0500563 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564} \
565TUNE_ATTR_3(name, name##_show, store)
566
567#define TUNE_ATTR(name, check_zero) \
568static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
569{ \
570 return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
571} \
572TUNE_ATTR_2(name, name##_store)
573
David Teiglandb3b94fa2006-01-16 16:50:04 +0000574TUNE_ATTR(quota_warn_period, 0);
575TUNE_ATTR(quota_quantum, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000576TUNE_ATTR(max_readahead, 0);
577TUNE_ATTR(complain_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578TUNE_ATTR(statfs_slow, 0);
579TUNE_ATTR(new_files_jdata, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580TUNE_ATTR(quota_simul_sync, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581TUNE_ATTR(statfs_quantum, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
583
584static struct attribute *tune_attrs[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585 &tune_attr_quota_warn_period.attr,
586 &tune_attr_quota_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587 &tune_attr_max_readahead.attr,
588 &tune_attr_complain_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 &tune_attr_statfs_slow.attr,
590 &tune_attr_quota_simul_sync.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591 &tune_attr_statfs_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 &tune_attr_quota_scale.attr,
593 &tune_attr_new_files_jdata.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400594 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595};
596
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597static struct attribute_group tune_group = {
598 .name = "tune",
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400599 .attrs = tune_attrs,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600};
601
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000602static struct attribute_group lock_module_group = {
603 .name = "lock_module",
604 .attrs = lock_module_attrs,
605};
606
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
608{
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100609 struct super_block *sb = sdp->sd_vfs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000610 int error;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100611 char ro[20];
612 char spectator[20];
613 char *envp[] = { ro, spectator, NULL };
Bob Peterson0d515212012-06-13 10:27:41 -0400614 int sysfs_frees_sdp = 0;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100615
616 sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
617 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100619 sdp->sd_kobj.kset = gfs2_kset;
Greg Kroah-Hartman901195e2007-12-17 15:54:39 -0400620 error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
621 "%s", sdp->sd_table_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 if (error)
Bob Peterson0d515212012-06-13 10:27:41 -0400623 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000624
Bob Peterson0d515212012-06-13 10:27:41 -0400625 sysfs_frees_sdp = 1; /* Freeing sdp is now done by sysfs calling
626 function gfs2_sbd_release. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627 error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
628 if (error)
Steven Whitehousef6eb5342009-05-26 15:50:25 +0100629 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000630
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000631 error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
632 if (error)
633 goto fail_tune;
634
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100635 error = sysfs_create_link(&sdp->sd_kobj,
636 &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
637 "device");
638 if (error)
639 goto fail_lock_module;
640
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100641 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000642 return 0;
643
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100644fail_lock_module:
645 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000646fail_tune:
647 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400648fail_reg:
Bob Peterson0d515212012-06-13 10:27:41 -0400649 free_percpu(sdp->sd_lkstats);
David Teigland65952fb2006-09-15 13:09:11 -0500650 fs_err(sdp, "error %d adding sysfs files", error);
Bob Peterson0d515212012-06-13 10:27:41 -0400651 if (sysfs_frees_sdp)
652 kobject_put(&sdp->sd_kobj);
653 else
654 kfree(sdp);
655 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 return error;
657}
658
659void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
660{
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100661 sysfs_remove_link(&sdp->sd_kobj, "device");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000663 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800664 kobject_put(&sdp->sd_kobj);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665}
666
Steven Whitehousefdd10622008-11-26 10:26:38 +0000667static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
668 struct kobj_uevent_env *env)
669{
670 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
Steven Whitehouse32e471e2011-05-10 15:01:59 +0100671 struct super_block *s = sdp->sd_vfs;
672 const u8 *uuid = s->s_uuid;
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000673
Steven Whitehousefdd10622008-11-26 10:26:38 +0000674 add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
675 add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100676 if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags))
Steven Whitehousefeb47ca2010-09-29 15:04:18 +0100677 add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid);
Joe Perchesf0b34ae2009-12-14 18:01:13 -0800678 if (gfs2_uuid_valid(uuid))
679 add_uevent_var(env, "UUID=%pUB", uuid);
Steven Whitehousefdd10622008-11-26 10:26:38 +0000680 return 0;
681}
682
Emese Revfy9cd43612009-12-31 14:52:51 +0100683static const struct kset_uevent_ops gfs2_uevent_ops = {
Steven Whitehousefdd10622008-11-26 10:26:38 +0000684 .uevent = gfs2_uevent,
685};
686
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687int gfs2_sys_init(void)
688{
Steven Whitehousefdd10622008-11-26 10:26:38 +0000689 gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100690 if (!gfs2_kset)
691 return -ENOMEM;
692 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693}
694
695void gfs2_sys_uninit(void)
696{
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100697 kset_unregister(gfs2_kset);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000698}
699