blob: e6d8d482422f9d8519fa38103743ccc836c9d778 [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{
94 unsigned int count;
95
Steven Whitehousef55ab262006-02-21 12:51:39 +000096 mutex_lock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000097 count = sdp->sd_freeze_count;
Steven Whitehousef55ab262006-02-21 12:51:39 +000098 mutex_unlock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
David Teigland3204a6c2006-09-06 16:57:06 -0500100 return snprintf(buf, PAGE_SIZE, "%u\n", count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101}
102
103static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
104{
105 ssize_t ret = len;
106 int error = 0;
107 int n = simple_strtol(buf, NULL, 0);
108
109 if (!capable(CAP_SYS_ADMIN))
110 return -EACCES;
111
112 switch (n) {
113 case 0:
114 gfs2_unfreeze_fs(sdp);
115 break;
116 case 1:
117 error = gfs2_freeze_fs(sdp);
118 break;
119 default:
120 ret = -EINVAL;
121 }
122
123 if (error)
124 fs_warn(sdp, "freeze %d error %d", n, error);
125
126 return ret;
127}
128
129static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf)
130{
131 unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags);
David Teigland3204a6c2006-09-06 16:57:06 -0500132 return snprintf(buf, PAGE_SIZE, "%u\n", b);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133}
134
135static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
136{
137 if (!capable(CAP_SYS_ADMIN))
138 return -EACCES;
139
140 if (simple_strtol(buf, NULL, 0) != 1)
141 return -EINVAL;
142
143 gfs2_lm_withdraw(sdp,
144 "GFS2: fsid=%s: withdrawing from cluster at user's request\n",
145 sdp->sd_fsname);
146 return len;
147}
148
149static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
150 size_t len)
151{
152 if (!capable(CAP_SYS_ADMIN))
153 return -EACCES;
154
155 if (simple_strtol(buf, NULL, 0) != 1)
156 return -EINVAL;
157
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100158 gfs2_statfs_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000159 return len;
160}
161
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
163 size_t len)
164{
165 if (!capable(CAP_SYS_ADMIN))
166 return -EACCES;
167
168 if (simple_strtol(buf, NULL, 0) != 1)
169 return -EINVAL;
170
Jan Karaceed1722012-07-03 16:45:28 +0200171 gfs2_quota_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172 return len;
173}
174
175static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
176 size_t len)
177{
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800178 struct kqid qid;
Steven Whitehouseea762332009-09-15 16:20:30 +0100179 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400180 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181
182 if (!capable(CAP_SYS_ADMIN))
183 return -EACCES;
184
185 id = simple_strtoul(buf, NULL, 0);
186
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800187 qid = make_kqid(current_user_ns(), USRQUOTA, id);
188 if (!qid_valid(qid))
189 return -EINVAL;
190
191 error = gfs2_quota_refresh(sdp, qid);
Steven Whitehouseea762332009-09-15 16:20:30 +0100192 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193}
194
195static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
196 size_t len)
197{
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800198 struct kqid qid;
Steven Whitehouseea762332009-09-15 16:20:30 +0100199 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400200 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201
202 if (!capable(CAP_SYS_ADMIN))
203 return -EACCES;
204
205 id = simple_strtoul(buf, NULL, 0);
206
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800207 qid = make_kqid(current_user_ns(), GRPQUOTA, id);
208 if (!qid_valid(qid))
209 return -EINVAL;
210
211 error = gfs2_quota_refresh(sdp, qid);
Steven Whitehouseea762332009-09-15 16:20:30 +0100212 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000213}
214
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000215static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
216{
217 struct gfs2_glock *gl;
218 const struct gfs2_glock_operations *glops;
219 unsigned int glmode;
220 unsigned int gltype;
221 unsigned long long glnum;
222 char mode[16];
223 int rv;
224
225 if (!capable(CAP_SYS_ADMIN))
226 return -EACCES;
227
228 rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
229 mode);
230 if (rv != 3)
231 return -EINVAL;
232
233 if (strcmp(mode, "EX") == 0)
234 glmode = LM_ST_UNLOCKED;
235 else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
236 glmode = LM_ST_DEFERRED;
237 else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
238 glmode = LM_ST_SHARED;
239 else
240 return -EINVAL;
241
242 if (gltype > LM_TYPE_JOURNAL)
243 return -EINVAL;
Steven Whitehouse13466982010-10-06 09:58:44 +0100244 if (gltype == LM_TYPE_NONDISK && glnum == GFS2_TRANS_LOCK)
245 glops = &gfs2_trans_glops;
246 else
247 glops = gfs2_glops_list[gltype];
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000248 if (glops == NULL)
249 return -EINVAL;
Steven Whitehouse6a99be52010-05-14 14:05:51 +0100250 if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
Steven Whitehouse913a71d2010-05-06 11:03:29 +0100251 fs_info(sdp, "demote interface used\n");
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000252 rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
253 if (rv)
254 return rv;
255 gfs2_glock_cb(gl, glmode);
256 gfs2_glock_put(gl);
257 return len;
258}
259
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260
261#define GFS2_ATTR(name, mode, show, store) \
262static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
263
264GFS2_ATTR(id, 0444, id_show, NULL);
265GFS2_ATTR(fsname, 0444, fsname_show, NULL);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000266GFS2_ATTR(uuid, 0444, uuid_show, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000268GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
269GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
270GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
271GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
272GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000273GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274
275static struct attribute *gfs2_attrs[] = {
276 &gfs2_attr_id.attr,
277 &gfs2_attr_fsname.attr,
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000278 &gfs2_attr_uuid.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 &gfs2_attr_freeze.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000280 &gfs2_attr_withdraw.attr,
281 &gfs2_attr_statfs_sync.attr,
282 &gfs2_attr_quota_sync.attr,
283 &gfs2_attr_quota_refresh_user.attr,
284 &gfs2_attr_quota_refresh_group.attr,
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000285 &gfs2_attr_demote_rq.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 NULL,
287};
288
Bob Peterson0d515212012-06-13 10:27:41 -0400289static void gfs2_sbd_release(struct kobject *kobj)
290{
291 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
292
293 kfree(sdp);
294}
295
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296static struct kobj_type gfs2_ktype = {
Bob Peterson0d515212012-06-13 10:27:41 -0400297 .release = gfs2_sbd_release,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000298 .default_attrs = gfs2_attrs,
299 .sysfs_ops = &gfs2_attr_ops,
300};
301
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000302
303/*
304 * lock_module. Originally from lock_dlm
305 */
306
307static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
308{
309 const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
310 return sprintf(buf, "%s\n", ops->lm_proto_name);
311}
312
313static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
314{
315 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
316 ssize_t ret;
317 int val = 0;
318
David Teiglande0c2a9a2012-01-09 17:18:05 -0500319 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000320 val = 1;
321 ret = sprintf(buf, "%d\n", val);
322 return ret;
323}
324
325static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
326{
327 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
328 ssize_t ret = len;
329 int val;
330
331 val = simple_strtol(buf, NULL, 0);
332
333 if (val == 1)
David Teiglande0c2a9a2012-01-09 17:18:05 -0500334 set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000335 else if (val == 0) {
David Teiglande0c2a9a2012-01-09 17:18:05 -0500336 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000337 smp_mb__after_clear_bit();
338 gfs2_glock_thaw(sdp);
339 } else {
340 ret = -EINVAL;
341 }
342 return ret;
343}
344
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000345static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
346{
347 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
348 return sprintf(buf, "%d\n", ls->ls_first);
349}
350
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100351static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
352{
353 unsigned first;
354 int rv;
355
356 rv = sscanf(buf, "%u", &first);
357 if (rv != 1 || first > 1)
358 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100359 rv = wait_for_completion_killable(&sdp->sd_locking_init);
360 if (rv)
361 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100362 spin_lock(&sdp->sd_jindex_spin);
363 rv = -EBUSY;
364 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
365 goto out;
366 rv = -EINVAL;
367 if (sdp->sd_args.ar_spectator)
368 goto out;
369 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
370 goto out;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500371 sdp->sd_lockstruct.ls_first = first;
372 rv = 0;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100373out:
374 spin_unlock(&sdp->sd_jindex_spin);
375 return rv ? rv : len;
376}
377
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000378static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
379{
380 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500381 return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags));
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000382}
383
David Teiglande0c2a9a2012-01-09 17:18:05 -0500384int gfs2_recover_set(struct gfs2_sbd *sdp, unsigned jid)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000385{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000386 struct gfs2_jdesc *jd;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100387 int rv;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000388
389 spin_lock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100390 rv = -EBUSY;
391 if (sdp->sd_jdesc->jd_jid == jid)
392 goto out;
393 rv = -ENOENT;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000394 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
395 if (jd->jd_jid != jid)
396 continue;
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200397 rv = gfs2_recover_journal(jd, false);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000398 break;
399 }
Steven Whitehousefe64d512009-05-19 10:01:18 +0100400out:
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000401 spin_unlock(&sdp->sd_jindex_spin);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500402 return rv;
403}
404
405static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
406{
407 unsigned jid;
408 int rv;
409
410 rv = sscanf(buf, "%u", &jid);
411 if (rv != 1)
412 return -EINVAL;
413
David Teigland1a058f52012-05-01 15:50:48 -0500414 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) {
415 rv = -ESHUTDOWN;
416 goto out;
417 }
David Teiglande0c2a9a2012-01-09 17:18:05 -0500418
David Teigland1a058f52012-05-01 15:50:48 -0500419 rv = gfs2_recover_set(sdp, jid);
420out:
Steven Whitehousefe64d512009-05-19 10:01:18 +0100421 return rv ? rv : len;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000422}
423
424static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
425{
426 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
427 return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
428}
429
430static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
431{
432 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
433 return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
434}
435
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100436static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
437{
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100438 return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid);
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100439}
440
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100441static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
442{
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100443 int jid;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100444 int rv;
445
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100446 rv = sscanf(buf, "%d", &jid);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100447 if (rv != 1)
448 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100449 rv = wait_for_completion_killable(&sdp->sd_locking_init);
450 if (rv)
451 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100452 spin_lock(&sdp->sd_jindex_spin);
453 rv = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100454 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
455 goto out;
456 rv = -EBUSY;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100457 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100458 goto out;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100459 rv = 0;
460 if (sdp->sd_args.ar_spectator && jid > 0)
461 rv = jid = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100462 sdp->sd_lockstruct.ls_jid = jid;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100463 clear_bit(SDF_NOJOURNALID, &sdp->sd_flags);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100464 smp_mb__after_clear_bit();
465 wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100466out:
467 spin_unlock(&sdp->sd_jindex_spin);
468 return rv ? rv : len;
469}
470
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000471#define GDLM_ATTR(_name,_mode,_show,_store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100472static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000473
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100474GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
475GDLM_ATTR(block, 0644, block_show, block_store);
476GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100477GDLM_ATTR(jid, 0644, jid_show, jid_store);
478GDLM_ATTR(first, 0644, lkfirst_show, lkfirst_store);
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100479GDLM_ATTR(first_done, 0444, first_done_show, NULL);
480GDLM_ATTR(recover, 0600, NULL, recover_store);
481GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
482GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000483
484static struct attribute *lock_module_attrs[] = {
485 &gdlm_attr_proto_name.attr,
486 &gdlm_attr_block.attr,
487 &gdlm_attr_withdraw.attr,
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100488 &gdlm_attr_jid.attr,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000489 &gdlm_attr_first.attr,
490 &gdlm_attr_first_done.attr,
491 &gdlm_attr_recover.attr,
492 &gdlm_attr_recover_done.attr,
493 &gdlm_attr_recover_status.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400494 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495};
496
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497/*
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 * get and set struct gfs2_tune fields
499 */
500
501static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
502{
David Teigland3204a6c2006-09-06 16:57:06 -0500503 return snprintf(buf, PAGE_SIZE, "%u %u\n",
504 sdp->sd_tune.gt_quota_scale_num,
505 sdp->sd_tune.gt_quota_scale_den);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506}
507
508static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
509 size_t len)
510{
511 struct gfs2_tune *gt = &sdp->sd_tune;
512 unsigned int x, y;
513
514 if (!capable(CAP_SYS_ADMIN))
515 return -EACCES;
516
517 if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
518 return -EINVAL;
519
520 spin_lock(&gt->gt_spin);
521 gt->gt_quota_scale_num = x;
522 gt->gt_quota_scale_den = y;
523 spin_unlock(&gt->gt_spin);
524 return len;
525}
526
527static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
528 int check_zero, const char *buf, size_t len)
529{
530 struct gfs2_tune *gt = &sdp->sd_tune;
531 unsigned int x;
532
533 if (!capable(CAP_SYS_ADMIN))
534 return -EACCES;
535
536 x = simple_strtoul(buf, NULL, 0);
537
538 if (check_zero && !x)
539 return -EINVAL;
540
541 spin_lock(&gt->gt_spin);
542 *field = x;
543 spin_unlock(&gt->gt_spin);
544 return len;
545}
546
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547#define TUNE_ATTR_3(name, show, store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100548static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549
550#define TUNE_ATTR_2(name, store) \
551static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
552{ \
David Teigland3204a6c2006-09-06 16:57:06 -0500553 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554} \
555TUNE_ATTR_3(name, name##_show, store)
556
557#define TUNE_ATTR(name, check_zero) \
558static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
559{ \
560 return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
561} \
562TUNE_ATTR_2(name, name##_store)
563
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564TUNE_ATTR(quota_warn_period, 0);
565TUNE_ATTR(quota_quantum, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566TUNE_ATTR(max_readahead, 0);
567TUNE_ATTR(complain_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568TUNE_ATTR(statfs_slow, 0);
569TUNE_ATTR(new_files_jdata, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570TUNE_ATTR(quota_simul_sync, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571TUNE_ATTR(statfs_quantum, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
573
574static struct attribute *tune_attrs[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575 &tune_attr_quota_warn_period.attr,
576 &tune_attr_quota_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 &tune_attr_max_readahead.attr,
578 &tune_attr_complain_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579 &tune_attr_statfs_slow.attr,
580 &tune_attr_quota_simul_sync.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581 &tune_attr_statfs_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 &tune_attr_quota_scale.attr,
583 &tune_attr_new_files_jdata.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400584 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585};
586
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587static struct attribute_group tune_group = {
588 .name = "tune",
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400589 .attrs = tune_attrs,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000590};
591
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000592static struct attribute_group lock_module_group = {
593 .name = "lock_module",
594 .attrs = lock_module_attrs,
595};
596
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
598{
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100599 struct super_block *sb = sdp->sd_vfs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600 int error;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100601 char ro[20];
602 char spectator[20];
603 char *envp[] = { ro, spectator, NULL };
Bob Peterson0d515212012-06-13 10:27:41 -0400604 int sysfs_frees_sdp = 0;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100605
606 sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
607 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100609 sdp->sd_kobj.kset = gfs2_kset;
Greg Kroah-Hartman901195e2007-12-17 15:54:39 -0400610 error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
611 "%s", sdp->sd_table_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612 if (error)
Bob Peterson0d515212012-06-13 10:27:41 -0400613 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000614
Bob Peterson0d515212012-06-13 10:27:41 -0400615 sysfs_frees_sdp = 1; /* Freeing sdp is now done by sysfs calling
616 function gfs2_sbd_release. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
618 if (error)
Steven Whitehousef6eb5342009-05-26 15:50:25 +0100619 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000621 error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
622 if (error)
623 goto fail_tune;
624
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100625 error = sysfs_create_link(&sdp->sd_kobj,
626 &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
627 "device");
628 if (error)
629 goto fail_lock_module;
630
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100631 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000632 return 0;
633
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100634fail_lock_module:
635 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000636fail_tune:
637 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400638fail_reg:
Bob Peterson0d515212012-06-13 10:27:41 -0400639 free_percpu(sdp->sd_lkstats);
David Teigland65952fb2006-09-15 13:09:11 -0500640 fs_err(sdp, "error %d adding sysfs files", error);
Bob Peterson0d515212012-06-13 10:27:41 -0400641 if (sysfs_frees_sdp)
642 kobject_put(&sdp->sd_kobj);
643 else
644 kfree(sdp);
645 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000646 return error;
647}
648
649void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
650{
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100651 sysfs_remove_link(&sdp->sd_kobj, "device");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000653 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800654 kobject_put(&sdp->sd_kobj);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000655}
656
Steven Whitehousefdd10622008-11-26 10:26:38 +0000657static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
658 struct kobj_uevent_env *env)
659{
660 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
Steven Whitehouse32e471e2011-05-10 15:01:59 +0100661 struct super_block *s = sdp->sd_vfs;
662 const u8 *uuid = s->s_uuid;
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000663
Steven Whitehousefdd10622008-11-26 10:26:38 +0000664 add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
665 add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100666 if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags))
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100667 add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid);
Joe Perchesf0b34ae2009-12-14 18:01:13 -0800668 if (gfs2_uuid_valid(uuid))
669 add_uevent_var(env, "UUID=%pUB", uuid);
Steven Whitehousefdd10622008-11-26 10:26:38 +0000670 return 0;
671}
672
Emese Revfy9cd43612009-12-31 14:52:51 +0100673static const struct kset_uevent_ops gfs2_uevent_ops = {
Steven Whitehousefdd10622008-11-26 10:26:38 +0000674 .uevent = gfs2_uevent,
675};
676
David Teiglandb3b94fa2006-01-16 16:50:04 +0000677int gfs2_sys_init(void)
678{
Steven Whitehousefdd10622008-11-26 10:26:38 +0000679 gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100680 if (!gfs2_kset)
681 return -ENOMEM;
682 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683}
684
685void gfs2_sys_uninit(void)
686{
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100687 kset_unregister(gfs2_kset);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000688}
689