blob: d019d0d55e00eb6a79f5cc24abfaabb2ebcd71d6 [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"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
Steven Whitehouse48c2b612009-05-13 14:49:48 +010029struct gfs2_attr {
30 struct attribute attr;
31 ssize_t (*show)(struct gfs2_sbd *, char *);
32 ssize_t (*store)(struct gfs2_sbd *, const char *, size_t);
33};
34
35static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr,
36 char *buf)
37{
38 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
39 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
40 return a->show ? a->show(sdp, buf) : 0;
41}
42
43static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr,
44 const char *buf, size_t len)
45{
46 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
47 struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
48 return a->store ? a->store(sdp, buf, len) : len;
49}
50
Emese Revfy52cf25d2010-01-19 02:58:23 +010051static const struct sysfs_ops gfs2_attr_ops = {
Steven Whitehouse48c2b612009-05-13 14:49:48 +010052 .show = gfs2_attr_show,
53 .store = gfs2_attr_store,
54};
55
56
57static struct kset *gfs2_kset;
58
David Teiglandb3b94fa2006-01-16 16:50:04 +000059static ssize_t id_show(struct gfs2_sbd *sdp, char *buf)
60{
Bob Petersonc7227e462007-11-02 09:37:15 -050061 return snprintf(buf, PAGE_SIZE, "%u:%u\n",
62 MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev));
David Teiglandb3b94fa2006-01-16 16:50:04 +000063}
64
65static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf)
66{
David Teigland3204a6c2006-09-06 16:57:06 -050067 return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname);
David Teiglandb3b94fa2006-01-16 16:50:04 +000068}
69
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000070static int gfs2_uuid_valid(const u8 *uuid)
71{
72 int i;
73
74 for (i = 0; i < 16; i++) {
75 if (uuid[i])
76 return 1;
77 }
78 return 0;
79}
80
81static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf)
82{
83 const u8 *uuid = sdp->sd_sb.sb_uuid;
84 buf[0] = '\0';
85 if (!gfs2_uuid_valid(uuid))
86 return 0;
Joe Perchesf0b34ae2009-12-14 18:01:13 -080087 return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +000088}
89
David Teiglandb3b94fa2006-01-16 16:50:04 +000090static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
91{
92 unsigned int count;
93
Steven Whitehousef55ab262006-02-21 12:51:39 +000094 mutex_lock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000095 count = sdp->sd_freeze_count;
Steven Whitehousef55ab262006-02-21 12:51:39 +000096 mutex_unlock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +000097
David Teigland3204a6c2006-09-06 16:57:06 -050098 return snprintf(buf, PAGE_SIZE, "%u\n", count);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099}
100
101static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
102{
103 ssize_t ret = len;
104 int error = 0;
105 int n = simple_strtol(buf, NULL, 0);
106
107 if (!capable(CAP_SYS_ADMIN))
108 return -EACCES;
109
110 switch (n) {
111 case 0:
112 gfs2_unfreeze_fs(sdp);
113 break;
114 case 1:
115 error = gfs2_freeze_fs(sdp);
116 break;
117 default:
118 ret = -EINVAL;
119 }
120
121 if (error)
122 fs_warn(sdp, "freeze %d error %d", n, error);
123
124 return ret;
125}
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
Christoph Hellwig5fb324a2010-02-16 03:44:52 -0500169 gfs2_quota_sync(sdp->sd_vfs, 0, 1);
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;
232 glops = gfs2_glops_list[gltype];
233 if (glops == NULL)
234 return -EINVAL;
Steven Whitehouse6a99be52010-05-14 14:05:51 +0100235 if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
Steven Whitehouse913a71d2010-05-06 11:03:29 +0100236 fs_info(sdp, "demote interface used\n");
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000237 rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
238 if (rv)
239 return rv;
240 gfs2_glock_cb(gl, glmode);
241 gfs2_glock_put(gl);
242 return len;
243}
244
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245
246#define GFS2_ATTR(name, mode, show, store) \
247static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
248
249GFS2_ATTR(id, 0444, id_show, NULL);
250GFS2_ATTR(fsname, 0444, fsname_show, NULL);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000251GFS2_ATTR(uuid, 0444, uuid_show, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000252GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
254GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
255GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
256GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
257GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000258GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000259
260static struct attribute *gfs2_attrs[] = {
261 &gfs2_attr_id.attr,
262 &gfs2_attr_fsname.attr,
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000263 &gfs2_attr_uuid.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000264 &gfs2_attr_freeze.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 &gfs2_attr_withdraw.attr,
266 &gfs2_attr_statfs_sync.attr,
267 &gfs2_attr_quota_sync.attr,
268 &gfs2_attr_quota_refresh_user.attr,
269 &gfs2_attr_quota_refresh_group.attr,
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000270 &gfs2_attr_demote_rq.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000271 NULL,
272};
273
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274static struct kobj_type gfs2_ktype = {
275 .default_attrs = gfs2_attrs,
276 .sysfs_ops = &gfs2_attr_ops,
277};
278
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000279
280/*
281 * lock_module. Originally from lock_dlm
282 */
283
284static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
285{
286 const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
287 return sprintf(buf, "%s\n", ops->lm_proto_name);
288}
289
290static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
291{
292 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
293 ssize_t ret;
294 int val = 0;
295
296 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))
297 val = 1;
298 ret = sprintf(buf, "%d\n", val);
299 return ret;
300}
301
302static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
303{
304 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
305 ssize_t ret = len;
306 int val;
307
308 val = simple_strtol(buf, NULL, 0);
309
310 if (val == 1)
311 set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
312 else if (val == 0) {
313 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
314 smp_mb__after_clear_bit();
315 gfs2_glock_thaw(sdp);
316 } else {
317 ret = -EINVAL;
318 }
319 return ret;
320}
321
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000322static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
323{
324 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
325 return sprintf(buf, "%d\n", ls->ls_first);
326}
327
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100328static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
329{
330 unsigned first;
331 int rv;
332
333 rv = sscanf(buf, "%u", &first);
334 if (rv != 1 || first > 1)
335 return -EINVAL;
336 spin_lock(&sdp->sd_jindex_spin);
337 rv = -EBUSY;
338 if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
339 goto out;
340 rv = -EINVAL;
341 if (sdp->sd_args.ar_spectator)
342 goto out;
343 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
344 goto out;
345 sdp->sd_lockstruct.ls_first = first;
346 rv = 0;
347out:
348 spin_unlock(&sdp->sd_jindex_spin);
349 return rv ? rv : len;
350}
351
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000352static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
353{
354 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
355 return sprintf(buf, "%d\n", ls->ls_first_done);
356}
357
Steven Whitehousefe64d512009-05-19 10:01:18 +0100358static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000359{
Steven Whitehousefe64d512009-05-19 10:01:18 +0100360 unsigned jid;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000361 struct gfs2_jdesc *jd;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100362 int rv;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000363
Steven Whitehousefe64d512009-05-19 10:01:18 +0100364 rv = sscanf(buf, "%u", &jid);
365 if (rv != 1)
366 return -EINVAL;
367
368 rv = -ESHUTDOWN;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000369 spin_lock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100370 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags))
371 goto out;
372 rv = -EBUSY;
373 if (sdp->sd_jdesc->jd_jid == jid)
374 goto out;
375 rv = -ENOENT;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000376 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
377 if (jd->jd_jid != jid)
378 continue;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100379 rv = slow_work_enqueue(&jd->jd_work);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000380 break;
381 }
Steven Whitehousefe64d512009-05-19 10:01:18 +0100382out:
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000383 spin_unlock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100384 return rv ? rv : len;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000385}
386
387static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
388{
389 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
390 return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
391}
392
393static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
394{
395 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
396 return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
397}
398
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100399static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
400{
401 return sprintf(buf, "%u\n", sdp->sd_lockstruct.ls_jid);
402}
403
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100404static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
405{
406 unsigned jid;
407 int rv;
408
409 rv = sscanf(buf, "%u", &jid);
410 if (rv != 1)
411 return -EINVAL;
412
413 spin_lock(&sdp->sd_jindex_spin);
414 rv = -EINVAL;
415 if (sdp->sd_args.ar_spectator)
416 goto out;
417 if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
418 goto out;
419 rv = -EBUSY;
420 if (test_and_clear_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
421 goto out;
422 sdp->sd_lockstruct.ls_jid = jid;
423 smp_mb__after_clear_bit();
424 wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID);
425 rv = 0;
426out:
427 spin_unlock(&sdp->sd_jindex_spin);
428 return rv ? rv : len;
429}
430
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000431#define GDLM_ATTR(_name,_mode,_show,_store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100432static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000433
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100434GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
435GDLM_ATTR(block, 0644, block_show, block_store);
436GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100437GDLM_ATTR(jid, 0644, jid_show, jid_store);
438GDLM_ATTR(first, 0644, lkfirst_show, lkfirst_store);
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100439GDLM_ATTR(first_done, 0444, first_done_show, NULL);
440GDLM_ATTR(recover, 0600, NULL, recover_store);
441GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
442GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000443
444static struct attribute *lock_module_attrs[] = {
445 &gdlm_attr_proto_name.attr,
446 &gdlm_attr_block.attr,
447 &gdlm_attr_withdraw.attr,
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100448 &gdlm_attr_jid.attr,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000449 &gdlm_attr_first.attr,
450 &gdlm_attr_first_done.attr,
451 &gdlm_attr_recover.attr,
452 &gdlm_attr_recover_done.attr,
453 &gdlm_attr_recover_status.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400454 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000455};
456
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457/*
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458 * get and set struct gfs2_tune fields
459 */
460
461static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
462{
David Teigland3204a6c2006-09-06 16:57:06 -0500463 return snprintf(buf, PAGE_SIZE, "%u %u\n",
464 sdp->sd_tune.gt_quota_scale_num,
465 sdp->sd_tune.gt_quota_scale_den);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466}
467
468static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
469 size_t len)
470{
471 struct gfs2_tune *gt = &sdp->sd_tune;
472 unsigned int x, y;
473
474 if (!capable(CAP_SYS_ADMIN))
475 return -EACCES;
476
477 if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
478 return -EINVAL;
479
480 spin_lock(&gt->gt_spin);
481 gt->gt_quota_scale_num = x;
482 gt->gt_quota_scale_den = y;
483 spin_unlock(&gt->gt_spin);
484 return len;
485}
486
487static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
488 int check_zero, const char *buf, size_t len)
489{
490 struct gfs2_tune *gt = &sdp->sd_tune;
491 unsigned int x;
492
493 if (!capable(CAP_SYS_ADMIN))
494 return -EACCES;
495
496 x = simple_strtoul(buf, NULL, 0);
497
498 if (check_zero && !x)
499 return -EINVAL;
500
501 spin_lock(&gt->gt_spin);
502 *field = x;
503 spin_unlock(&gt->gt_spin);
504 return len;
505}
506
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507#define TUNE_ATTR_3(name, show, store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100508static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509
510#define TUNE_ATTR_2(name, store) \
511static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
512{ \
David Teigland3204a6c2006-09-06 16:57:06 -0500513 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
David Teiglandb3b94fa2006-01-16 16:50:04 +0000514} \
515TUNE_ATTR_3(name, name##_show, store)
516
517#define TUNE_ATTR(name, check_zero) \
518static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
519{ \
520 return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
521} \
522TUNE_ATTR_2(name, name##_store)
523
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524TUNE_ATTR(quota_warn_period, 0);
525TUNE_ATTR(quota_quantum, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526TUNE_ATTR(max_readahead, 0);
527TUNE_ATTR(complain_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528TUNE_ATTR(statfs_slow, 0);
529TUNE_ATTR(new_files_jdata, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530TUNE_ATTR(quota_simul_sync, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000531TUNE_ATTR(statfs_quantum, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000532TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
533
534static struct attribute *tune_attrs[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000535 &tune_attr_quota_warn_period.attr,
536 &tune_attr_quota_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000537 &tune_attr_max_readahead.attr,
538 &tune_attr_complain_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000539 &tune_attr_statfs_slow.attr,
540 &tune_attr_quota_simul_sync.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000541 &tune_attr_statfs_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542 &tune_attr_quota_scale.attr,
543 &tune_attr_new_files_jdata.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400544 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545};
546
David Teiglandb3b94fa2006-01-16 16:50:04 +0000547static struct attribute_group tune_group = {
548 .name = "tune",
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400549 .attrs = tune_attrs,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550};
551
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000552static struct attribute_group lock_module_group = {
553 .name = "lock_module",
554 .attrs = lock_module_attrs,
555};
556
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
558{
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100559 struct super_block *sb = sdp->sd_vfs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 int error;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100561 char ro[20];
562 char spectator[20];
563 char *envp[] = { ro, spectator, NULL };
564
565 sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
566 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000567
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100568 sdp->sd_kobj.kset = gfs2_kset;
Greg Kroah-Hartman901195e2007-12-17 15:54:39 -0400569 error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
570 "%s", sdp->sd_table_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571 if (error)
572 goto fail;
573
David Teiglandb3b94fa2006-01-16 16:50:04 +0000574 error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
575 if (error)
Steven Whitehousef6eb5342009-05-26 15:50:25 +0100576 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000578 error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
579 if (error)
580 goto fail_tune;
581
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100582 error = sysfs_create_link(&sdp->sd_kobj,
583 &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
584 "device");
585 if (error)
586 goto fail_lock_module;
587
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100588 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 return 0;
590
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100591fail_lock_module:
592 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000593fail_tune:
594 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400595fail_reg:
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800596 kobject_put(&sdp->sd_kobj);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400597fail:
David Teigland65952fb2006-09-15 13:09:11 -0500598 fs_err(sdp, "error %d adding sysfs files", error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000599 return error;
600}
601
602void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
603{
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100604 sysfs_remove_link(&sdp->sd_kobj, "device");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000606 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800607 kobject_put(&sdp->sd_kobj);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608}
609
Steven Whitehousefdd10622008-11-26 10:26:38 +0000610static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
611 struct kobj_uevent_env *env)
612{
613 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000614 const u8 *uuid = sdp->sd_sb.sb_uuid;
615
Steven Whitehousefdd10622008-11-26 10:26:38 +0000616 add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
617 add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
Steven Whitehouseba6e9362010-06-14 10:01:30 +0100618 if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags))
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100619 add_uevent_var(env, "JOURNALID=%u", sdp->sd_lockstruct.ls_jid);
Joe Perchesf0b34ae2009-12-14 18:01:13 -0800620 if (gfs2_uuid_valid(uuid))
621 add_uevent_var(env, "UUID=%pUB", uuid);
Steven Whitehousefdd10622008-11-26 10:26:38 +0000622 return 0;
623}
624
Emese Revfy9cd43612009-12-31 14:52:51 +0100625static const struct kset_uevent_ops gfs2_uevent_ops = {
Steven Whitehousefdd10622008-11-26 10:26:38 +0000626 .uevent = gfs2_uevent,
627};
628
David Teiglandb3b94fa2006-01-16 16:50:04 +0000629int gfs2_sys_init(void)
630{
Steven Whitehousefdd10622008-11-26 10:26:38 +0000631 gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100632 if (!gfs2_kset)
633 return -ENOMEM;
634 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000635}
636
637void gfs2_sys_uninit(void)
638{
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100639 kset_unregister(gfs2_kset);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000640}
641