blob: de25d5577e5dd48869354f8e1e1a2e0ec514e35d [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/sched.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000013#include <linux/spinlock.h>
14#include <linux/completion.h>
15#include <linux/buffer_head.h>
16#include <linux/module.h>
17#include <linux/kobject.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018#include <asm/uaccess.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000019#include <linux/gfs2_ondisk.h>
Steven Whitehouse31e54b02009-08-13 12:18:08 +010020#include <linux/genhd.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "sys.h"
25#include "super.h"
26#include "glock.h"
27#include "quota.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050028#include "util.h"
Steven Whitehouse64d576b2009-02-12 13:31:58 +000029#include "glops.h"
Tejun Heo6ecd7c22010-07-20 22:09:02 +020030#include "recovery.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
Steven Whitehouse48c2b612009-05-13 14:49:48 +010032struct gfs2_attr {
33 struct attribute attr;
34 ssize_t (*show)(struct gfs2_sbd *, char *);
35 ssize_t (*store)(struct gfs2_sbd *, const char *, size_t);
36};
37
38static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr,
39 char *buf)
40{
41 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
42 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
43 return a->show ? a->show(sdp, buf) : 0;
44}
45
46static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr,
47 const char *buf, size_t len)
48{
49 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
50 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
51 return a->store ? a->store(sdp, buf, len) : len;
52}
53
Emese Revfy52cf25d2010-01-19 02:58:23 +010054static const struct sysfs_ops gfs2_attr_ops = {
Steven Whitehouse48c2b612009-05-13 14:49:48 +010055 .show = gfs2_attr_show,
56 .store = gfs2_attr_store,
57};
58
59
60static struct kset *gfs2_kset;
61
David Teiglandb3b94fa2006-01-16 16:50:04 +000062static ssize_t id_show(struct gfs2_sbd *sdp, char *buf)
63{
Bob Petersonc7227e462007-11-02 09:37:15 -050064 return snprintf(buf, PAGE_SIZE, "%u:%u\n",
65 MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev));
David Teiglandb3b94fa2006-01-16 16:50:04 +000066}
67
68static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf)
69{
David Teigland3204a6c2006-09-06 16:57:06 -050070 return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname);
David Teiglandb3b94fa2006-01-16 16:50:04 +000071}
72
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000073static int gfs2_uuid_valid(const u8 *uuid)
74{
75 int i;
76
77 for (i = 0; i < 16; i++) {
78 if (uuid[i])
79 return 1;
80 }
81 return 0;
82}
83
84static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf)
85{
Steven Whitehouse32e471e2011-05-10 15:01:59 +010086 struct super_block *s = sdp->sd_vfs;
87 const u8 *uuid = s->s_uuid;
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000088 buf[0] = '\0';
89 if (!gfs2_uuid_valid(uuid))
90 return 0;
Joe Perchesf0b34ae2009-12-14 18:01:13 -080091 return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000092}
93
David Teiglandb3b94fa2006-01-16 16:50:04 +000094static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
95{
Steven Whitehoused564053f2013-01-11 10:49:34 +000096 struct super_block *sb = sdp->sd_vfs;
97 int frozen = (sb->s_writers.frozen == SB_UNFROZEN) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +000098
Steven Whitehoused564053f2013-01-11 10:49:34 +000099 return snprintf(buf, PAGE_SIZE, "%u\n", frozen);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100}
101
102static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
103{
Steven Whitehoused564053f2013-01-11 10:49:34 +0000104 int error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105 int n = simple_strtol(buf, NULL, 0);
106
107 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100108 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109
110 switch (n) {
111 case 0:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000112 error = thaw_super(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000113 break;
114 case 1:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000115 error = freeze_super(sdp->sd_vfs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116 break;
117 default:
Steven Whitehoused564053f2013-01-11 10:49:34 +0000118 return -EINVAL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000119 }
120
Steven Whitehoused564053f2013-01-11 10:49:34 +0000121 if (error) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122 fs_warn(sdp, "freeze %d error %d", n, error);
Steven Whitehoused564053f2013-01-11 10:49:34 +0000123 return error;
124 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125
Steven Whitehoused564053f2013-01-11 10:49:34 +0000126 return len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127}
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))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100138 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139
140 if (simple_strtol(buf, NULL, 0) != 1)
141 return -EINVAL;
142
Joe Perchescb94eb02014-03-06 12:17:21 -0800143 gfs2_lm_withdraw(sdp, "withdrawing from cluster at user's request\n");
144
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 return len;
146}
147
148static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
149 size_t len)
150{
151 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100152 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153
154 if (simple_strtol(buf, NULL, 0) != 1)
155 return -EINVAL;
156
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100157 gfs2_statfs_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000158 return len;
159}
160
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
162 size_t len)
163{
164 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100165 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166
167 if (simple_strtol(buf, NULL, 0) != 1)
168 return -EINVAL;
169
Jan Karaceed1722012-07-03 16:45:28 +0200170 gfs2_quota_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 return len;
172}
173
174static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
175 size_t len)
176{
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800177 struct kqid qid;
Steven Whitehouseea762332009-09-15 16:20:30 +0100178 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400179 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180
181 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100182 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183
184 id = simple_strtoul(buf, NULL, 0);
185
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800186 qid = make_kqid(current_user_ns(), USRQUOTA, id);
187 if (!qid_valid(qid))
188 return -EINVAL;
189
190 error = gfs2_quota_refresh(sdp, qid);
Steven Whitehouseea762332009-09-15 16:20:30 +0100191 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192}
193
194static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
195 size_t len)
196{
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800197 struct kqid qid;
Steven Whitehouseea762332009-09-15 16:20:30 +0100198 int error;
Steven Whitehousecd915492006-09-04 12:49:07 -0400199 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000200
201 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100202 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203
204 id = simple_strtoul(buf, NULL, 0);
205
Eric W. Biedermaned87dab2013-01-31 19:42:40 -0800206 qid = make_kqid(current_user_ns(), GRPQUOTA, id);
207 if (!qid_valid(qid))
208 return -EINVAL;
209
210 error = gfs2_quota_refresh(sdp, qid);
Steven Whitehouseea762332009-09-15 16:20:30 +0100211 return error ? error : len;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212}
213
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000214static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
215{
216 struct gfs2_glock *gl;
217 const struct gfs2_glock_operations *glops;
218 unsigned int glmode;
219 unsigned int gltype;
220 unsigned long long glnum;
221 char mode[16];
222 int rv;
223
224 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100225 return -EPERM;
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000226
227 rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
228 mode);
229 if (rv != 3)
230 return -EINVAL;
231
232 if (strcmp(mode, "EX") == 0)
233 glmode = LM_ST_UNLOCKED;
234 else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
235 glmode = LM_ST_DEFERRED;
236 else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
237 glmode = LM_ST_SHARED;
238 else
239 return -EINVAL;
240
241 if (gltype > LM_TYPE_JOURNAL)
242 return -EINVAL;
Steven Whitehouse13466982010-10-06 09:58:44 +0100243 if (gltype == LM_TYPE_NONDISK && glnum == GFS2_TRANS_LOCK)
244 glops = &gfs2_trans_glops;
245 else
246 glops = gfs2_glops_list[gltype];
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000247 if (glops == NULL)
248 return -EINVAL;
Steven Whitehouse6a99be52010-05-14 14:05:51 +0100249 if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
Steven Whitehouse913a71d2010-05-06 11:03:29 +0100250 fs_info(sdp, "demote interface used\n");
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000251 rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
252 if (rv)
253 return rv;
254 gfs2_glock_cb(gl, glmode);
255 gfs2_glock_put(gl);
256 return len;
257}
258
David Teiglandb3b94fa2006-01-16 16:50:04 +0000259
260#define GFS2_ATTR(name, mode, show, store) \
261static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
262
263GFS2_ATTR(id, 0444, id_show, NULL);
264GFS2_ATTR(fsname, 0444, fsname_show, NULL);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000265GFS2_ATTR(uuid, 0444, uuid_show, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
268GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
269GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
270GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
271GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000272GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
274static struct attribute *gfs2_attrs[] = {
275 &gfs2_attr_id.attr,
276 &gfs2_attr_fsname.attr,
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000277 &gfs2_attr_uuid.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 &gfs2_attr_freeze.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 &gfs2_attr_withdraw.attr,
280 &gfs2_attr_statfs_sync.attr,
281 &gfs2_attr_quota_sync.attr,
282 &gfs2_attr_quota_refresh_user.attr,
283 &gfs2_attr_quota_refresh_group.attr,
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000284 &gfs2_attr_demote_rq.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 NULL,
286};
287
Bob Peterson0d515212012-06-13 10:27:41 -0400288static void gfs2_sbd_release(struct kobject *kobj)
289{
290 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
291
292 kfree(sdp);
293}
294
David Teiglandb3b94fa2006-01-16 16:50:04 +0000295static struct kobj_type gfs2_ktype = {
Bob Peterson0d515212012-06-13 10:27:41 -0400296 .release = gfs2_sbd_release,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000297 .default_attrs = gfs2_attrs,
298 .sysfs_ops = &gfs2_attr_ops,
299};
300
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000301
302/*
303 * lock_module. Originally from lock_dlm
304 */
305
306static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
307{
308 const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
309 return sprintf(buf, "%s\n", ops->lm_proto_name);
310}
311
312static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
313{
314 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
315 ssize_t ret;
316 int val = 0;
317
David Teiglande0c2a9a2012-01-09 17:18:05 -0500318 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000319 val = 1;
320 ret = sprintf(buf, "%d\n", val);
321 return ret;
322}
323
324static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
325{
326 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
327 ssize_t ret = len;
328 int val;
329
330 val = simple_strtol(buf, NULL, 0);
331
332 if (val == 1)
David Teiglande0c2a9a2012-01-09 17:18:05 -0500333 set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000334 else if (val == 0) {
David Teiglande0c2a9a2012-01-09 17:18:05 -0500335 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000336 smp_mb__after_clear_bit();
337 gfs2_glock_thaw(sdp);
338 } else {
339 ret = -EINVAL;
340 }
341 return ret;
342}
343
Steven Whitehousefd95e812013-02-13 12:21:40 +0000344static ssize_t wdack_show(struct gfs2_sbd *sdp, char *buf)
345{
346 int val = completion_done(&sdp->sd_wdack) ? 1 : 0;
347
348 return sprintf(buf, "%d\n", val);
349}
350
351static ssize_t wdack_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
352{
353 ssize_t ret = len;
354 int val;
355
356 val = simple_strtol(buf, NULL, 0);
357
358 if ((val == 1) &&
359 !strcmp(sdp->sd_lockstruct.ls_ops->lm_proto_name, "lock_dlm"))
360 complete(&sdp->sd_wdack);
361 else
362 ret = -EINVAL;
363 return ret;
364}
365
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000366static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
367{
368 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
369 return sprintf(buf, "%d\n", ls->ls_first);
370}
371
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100372static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
373{
374 unsigned first;
375 int rv;
376
377 rv = sscanf(buf, "%u", &first);
378 if (rv != 1 || first > 1)
379 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100380 rv = wait_for_completion_killable(&sdp->sd_locking_init);
381 if (rv)
382 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100383 spin_lock(&sdp->sd_jindex_spin);
384 rv = -EBUSY;
385 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
386 goto out;
387 rv = -EINVAL;
388 if (sdp->sd_args.ar_spectator)
389 goto out;
390 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
391 goto out;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500392 sdp->sd_lockstruct.ls_first = first;
393 rv = 0;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100394out:
395 spin_unlock(&sdp->sd_jindex_spin);
396 return rv ? rv : len;
397}
398
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000399static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
400{
401 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
David Teiglande0c2a9a2012-01-09 17:18:05 -0500402 return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags));
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000403}
404
David Teiglande0c2a9a2012-01-09 17:18:05 -0500405int gfs2_recover_set(struct gfs2_sbd *sdp, unsigned jid)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000406{
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000407 struct gfs2_jdesc *jd;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100408 int rv;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000409
410 spin_lock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100411 rv = -EBUSY;
412 if (sdp->sd_jdesc->jd_jid == jid)
413 goto out;
414 rv = -ENOENT;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000415 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
416 if (jd->jd_jid != jid)
417 continue;
Tejun Heo6ecd7c22010-07-20 22:09:02 +0200418 rv = gfs2_recover_journal(jd, false);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000419 break;
420 }
Steven Whitehousefe64d512009-05-19 10:01:18 +0100421out:
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000422 spin_unlock(&sdp->sd_jindex_spin);
David Teiglande0c2a9a2012-01-09 17:18:05 -0500423 return rv;
424}
425
426static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
427{
428 unsigned jid;
429 int rv;
430
431 rv = sscanf(buf, "%u", &jid);
432 if (rv != 1)
433 return -EINVAL;
434
David Teigland1a058f52012-05-01 15:50:48 -0500435 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) {
436 rv = -ESHUTDOWN;
437 goto out;
438 }
David Teiglande0c2a9a2012-01-09 17:18:05 -0500439
David Teigland1a058f52012-05-01 15:50:48 -0500440 rv = gfs2_recover_set(sdp, jid);
441out:
Steven Whitehousefe64d512009-05-19 10:01:18 +0100442 return rv ? rv : len;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000443}
444
445static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
446{
447 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
448 return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
449}
450
451static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
452{
453 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
454 return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
455}
456
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100457static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
458{
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100459 return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid);
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100460}
461
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100462static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
463{
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100464 int jid;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100465 int rv;
466
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100467 rv = sscanf(buf, "%d", &jid);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100468 if (rv != 1)
469 return -EINVAL;
Steven Whitehouse3942ae52011-07-11 08:53:30 +0100470 rv = wait_for_completion_killable(&sdp->sd_locking_init);
471 if (rv)
472 return rv;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100473 spin_lock(&sdp->sd_jindex_spin);
474 rv = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100475 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
476 goto out;
477 rv = -EBUSY;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100478 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100479 goto out;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100480 rv = 0;
481 if (sdp->sd_args.ar_spectator && jid > 0)
482 rv = jid = -EINVAL;
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100483 sdp->sd_lockstruct.ls_jid = jid;
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100484 clear_bit(SDF_NOJOURNALID, &sdp->sd_flags);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100485 smp_mb__after_clear_bit();
486 wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100487out:
488 spin_unlock(&sdp->sd_jindex_spin);
489 return rv ? rv : len;
490}
491
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000492#define GDLM_ATTR(_name,_mode,_show,_store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100493static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000494
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100495GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
496GDLM_ATTR(block, 0644, block_show, block_store);
Steven Whitehousefd95e812013-02-13 12:21:40 +0000497GDLM_ATTR(withdraw, 0644, wdack_show, wdack_store);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100498GDLM_ATTR(jid, 0644, jid_show, jid_store);
499GDLM_ATTR(first, 0644, lkfirst_show, lkfirst_store);
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100500GDLM_ATTR(first_done, 0444, first_done_show, NULL);
501GDLM_ATTR(recover, 0600, NULL, recover_store);
502GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
503GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000504
505static struct attribute *lock_module_attrs[] = {
506 &gdlm_attr_proto_name.attr,
507 &gdlm_attr_block.attr,
508 &gdlm_attr_withdraw.attr,
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100509 &gdlm_attr_jid.attr,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000510 &gdlm_attr_first.attr,
511 &gdlm_attr_first_done.attr,
512 &gdlm_attr_recover.attr,
513 &gdlm_attr_recover_done.attr,
514 &gdlm_attr_recover_status.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400515 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516};
517
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518/*
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519 * get and set struct gfs2_tune fields
520 */
521
522static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
523{
David Teigland3204a6c2006-09-06 16:57:06 -0500524 return snprintf(buf, PAGE_SIZE, "%u %u\n",
525 sdp->sd_tune.gt_quota_scale_num,
526 sdp->sd_tune.gt_quota_scale_den);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527}
528
529static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
530 size_t len)
531{
532 struct gfs2_tune *gt = &sdp->sd_tune;
533 unsigned int x, y;
534
535 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100536 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537
538 if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
539 return -EINVAL;
540
541 spin_lock(&gt->gt_spin);
542 gt->gt_quota_scale_num = x;
543 gt->gt_quota_scale_den = y;
544 spin_unlock(&gt->gt_spin);
545 return len;
546}
547
548static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
549 int check_zero, const char *buf, size_t len)
550{
551 struct gfs2_tune *gt = &sdp->sd_tune;
552 unsigned int x;
553
554 if (!capable(CAP_SYS_ADMIN))
Zhao Hongjiang41735812013-02-20 13:13:55 +1100555 return -EPERM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556
557 x = simple_strtoul(buf, NULL, 0);
558
559 if (check_zero && !x)
560 return -EINVAL;
561
562 spin_lock(&gt->gt_spin);
563 *field = x;
564 spin_unlock(&gt->gt_spin);
565 return len;
566}
567
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568#define TUNE_ATTR_3(name, show, store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100569static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570
571#define TUNE_ATTR_2(name, store) \
572static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
573{ \
David Teigland3204a6c2006-09-06 16:57:06 -0500574 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575} \
576TUNE_ATTR_3(name, name##_show, store)
577
578#define TUNE_ATTR(name, check_zero) \
579static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
580{ \
581 return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
582} \
583TUNE_ATTR_2(name, name##_store)
584
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585TUNE_ATTR(quota_warn_period, 0);
586TUNE_ATTR(quota_quantum, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587TUNE_ATTR(max_readahead, 0);
588TUNE_ATTR(complain_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589TUNE_ATTR(statfs_slow, 0);
590TUNE_ATTR(new_files_jdata, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591TUNE_ATTR(statfs_quantum, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
593
594static struct attribute *tune_attrs[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595 &tune_attr_quota_warn_period.attr,
596 &tune_attr_quota_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597 &tune_attr_max_readahead.attr,
598 &tune_attr_complain_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 &tune_attr_statfs_slow.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600 &tune_attr_statfs_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601 &tune_attr_quota_scale.attr,
602 &tune_attr_new_files_jdata.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400603 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604};
605
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606static struct attribute_group tune_group = {
607 .name = "tune",
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400608 .attrs = tune_attrs,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609};
610
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000611static struct attribute_group lock_module_group = {
612 .name = "lock_module",
613 .attrs = lock_module_attrs,
614};
615
David Teiglandb3b94fa2006-01-16 16:50:04 +0000616int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
617{
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100618 struct super_block *sb = sdp->sd_vfs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619 int error;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100620 char ro[20];
621 char spectator[20];
622 char *envp[] = { ro, spectator, NULL };
Bob Peterson0d515212012-06-13 10:27:41 -0400623 int sysfs_frees_sdp = 0;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100624
625 sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
626 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100628 sdp->sd_kobj.kset = gfs2_kset;
Greg Kroah-Hartman901195e2007-12-17 15:54:39 -0400629 error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
630 "%s", sdp->sd_table_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000631 if (error)
Bob Peterson0d515212012-06-13 10:27:41 -0400632 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633
Bob Peterson0d515212012-06-13 10:27:41 -0400634 sysfs_frees_sdp = 1; /* Freeing sdp is now done by sysfs calling
635 function gfs2_sbd_release. */
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636 error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
637 if (error)
Steven Whitehousef6eb5342009-05-26 15:50:25 +0100638 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000639
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000640 error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
641 if (error)
642 goto fail_tune;
643
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100644 error = sysfs_create_link(&sdp->sd_kobj,
645 &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
646 "device");
647 if (error)
648 goto fail_lock_module;
649
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100650 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000651 return 0;
652
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100653fail_lock_module:
654 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000655fail_tune:
656 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400657fail_reg:
Bob Peterson0d515212012-06-13 10:27:41 -0400658 free_percpu(sdp->sd_lkstats);
David Teigland65952fb2006-09-15 13:09:11 -0500659 fs_err(sdp, "error %d adding sysfs files", error);
Bob Peterson0d515212012-06-13 10:27:41 -0400660 if (sysfs_frees_sdp)
661 kobject_put(&sdp->sd_kobj);
662 else
663 kfree(sdp);
664 sb->s_fs_info = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665 return error;
666}
667
668void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
669{
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100670 sysfs_remove_link(&sdp->sd_kobj, "device");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000672 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800673 kobject_put(&sdp->sd_kobj);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000674}
675
Steven Whitehousefdd10622008-11-26 10:26:38 +0000676static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
677 struct kobj_uevent_env *env)
678{
679 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
Steven Whitehouse32e471e2011-05-10 15:01:59 +0100680 struct super_block *s = sdp->sd_vfs;
681 const u8 *uuid = s->s_uuid;
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000682
Steven Whitehousefdd10622008-11-26 10:26:38 +0000683 add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
684 add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100685 if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags))
Steven Whitehousefeb47ca92010-09-29 15:04:18 +0100686 add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid);
Joe Perchesf0b34ae2009-12-14 18:01:13 -0800687 if (gfs2_uuid_valid(uuid))
688 add_uevent_var(env, "UUID=%pUB", uuid);
Steven Whitehousefdd10622008-11-26 10:26:38 +0000689 return 0;
690}
691
Emese Revfy9cd43612009-12-31 14:52:51 +0100692static const struct kset_uevent_ops gfs2_uevent_ops = {
Steven Whitehousefdd10622008-11-26 10:26:38 +0000693 .uevent = gfs2_uevent,
694};
695
David Teiglandb3b94fa2006-01-16 16:50:04 +0000696int gfs2_sys_init(void)
697{
Steven Whitehousefdd10622008-11-26 10:26:38 +0000698 gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100699 if (!gfs2_kset)
700 return -ENOMEM;
701 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000702}
703
704void gfs2_sys_uninit(void)
705{
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100706 kset_unregister(gfs2_kset);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000707}
708