blob: be1b8aca5906347049bebd3b1825225e46bd5a2a [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>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/module.h>
16#include <linux/kobject.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017#include <asm/uaccess.h>
Steven Whitehousef057f6c2009-01-12 10:43:39 +000018#include <linux/gfs2_ondisk.h>
Steven Whitehouse31e54b02009-08-13 12:18:08 +010019#include <linux/genhd.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000023#include "sys.h"
24#include "super.h"
25#include "glock.h"
26#include "quota.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050027#include "util.h"
Steven Whitehouse64d576b2009-02-12 13:31:58 +000028#include "glops.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
52static struct sysfs_ops gfs2_attr_ops = {
53 .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 Petersonc7227e42007-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{
84 const u8 *uuid = sdp->sd_sb.sb_uuid;
85 buf[0] = '\0';
86 if (!gfs2_uuid_valid(uuid))
87 return 0;
88 return snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X-%02X%02X-"
89 "%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X\n",
90 uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5],
91 uuid[6], uuid[7], uuid[8], uuid[9], uuid[10], uuid[11],
92 uuid[12], uuid[13], uuid[14], uuid[15]);
93}
94
David Teiglandb3b94fa2006-01-16 16:50:04 +000095static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
96{
97 unsigned int count;
98
Steven Whitehousef55ab262006-02-21 12:51:39 +000099 mutex_lock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100 count = sdp->sd_freeze_count;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000101 mutex_unlock(&sdp->sd_freeze_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102
David Teigland3204a6c2006-09-06 16:57:06 -0500103 return snprintf(buf, PAGE_SIZE, "%u\n", count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104}
105
106static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
107{
108 ssize_t ret = len;
109 int error = 0;
110 int n = simple_strtol(buf, NULL, 0);
111
112 if (!capable(CAP_SYS_ADMIN))
113 return -EACCES;
114
115 switch (n) {
116 case 0:
117 gfs2_unfreeze_fs(sdp);
118 break;
119 case 1:
120 error = gfs2_freeze_fs(sdp);
121 break;
122 default:
123 ret = -EINVAL;
124 }
125
126 if (error)
127 fs_warn(sdp, "freeze %d error %d", n, error);
128
129 return ret;
130}
131
132static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf)
133{
134 unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags);
David Teigland3204a6c2006-09-06 16:57:06 -0500135 return snprintf(buf, PAGE_SIZE, "%u\n", b);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136}
137
138static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
139{
140 if (!capable(CAP_SYS_ADMIN))
141 return -EACCES;
142
143 if (simple_strtol(buf, NULL, 0) != 1)
144 return -EINVAL;
145
146 gfs2_lm_withdraw(sdp,
147 "GFS2: fsid=%s: withdrawing from cluster at user's request\n",
148 sdp->sd_fsname);
149 return len;
150}
151
152static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
153 size_t len)
154{
155 if (!capable(CAP_SYS_ADMIN))
156 return -EACCES;
157
158 if (simple_strtol(buf, NULL, 0) != 1)
159 return -EINVAL;
160
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100161 gfs2_statfs_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000162 return len;
163}
164
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
166 size_t len)
167{
168 if (!capable(CAP_SYS_ADMIN))
169 return -EACCES;
170
171 if (simple_strtol(buf, NULL, 0) != 1)
172 return -EINVAL;
173
Steven Whitehouse8c42d632009-09-11 14:36:44 +0100174 gfs2_quota_sync(sdp->sd_vfs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 return len;
176}
177
178static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
179 size_t len)
180{
Steven Whitehousecd915492006-09-04 12:49:07 -0400181 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000182
183 if (!capable(CAP_SYS_ADMIN))
184 return -EACCES;
185
186 id = simple_strtoul(buf, NULL, 0);
187
188 gfs2_quota_refresh(sdp, 1, id);
189 return len;
190}
191
192static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
193 size_t len)
194{
Steven Whitehousecd915492006-09-04 12:49:07 -0400195 u32 id;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000196
197 if (!capable(CAP_SYS_ADMIN))
198 return -EACCES;
199
200 id = simple_strtoul(buf, NULL, 0);
201
202 gfs2_quota_refresh(sdp, 0, id);
203 return len;
204}
205
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000206static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
207{
208 struct gfs2_glock *gl;
209 const struct gfs2_glock_operations *glops;
210 unsigned int glmode;
211 unsigned int gltype;
212 unsigned long long glnum;
213 char mode[16];
214 int rv;
215
216 if (!capable(CAP_SYS_ADMIN))
217 return -EACCES;
218
219 rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
220 mode);
221 if (rv != 3)
222 return -EINVAL;
223
224 if (strcmp(mode, "EX") == 0)
225 glmode = LM_ST_UNLOCKED;
226 else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
227 glmode = LM_ST_DEFERRED;
228 else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
229 glmode = LM_ST_SHARED;
230 else
231 return -EINVAL;
232
233 if (gltype > LM_TYPE_JOURNAL)
234 return -EINVAL;
235 glops = gfs2_glops_list[gltype];
236 if (glops == NULL)
237 return -EINVAL;
238 rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
239 if (rv)
240 return rv;
241 gfs2_glock_cb(gl, glmode);
242 gfs2_glock_put(gl);
243 return len;
244}
245
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246
247#define GFS2_ATTR(name, mode, show, store) \
248static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)
249
250GFS2_ATTR(id, 0444, id_show, NULL);
251GFS2_ATTR(fsname, 0444, fsname_show, NULL);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000252GFS2_ATTR(uuid, 0444, uuid_show, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253GFS2_ATTR(freeze, 0644, freeze_show, freeze_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000254GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
255GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store);
256GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store);
257GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store);
258GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store);
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000259GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260
261static struct attribute *gfs2_attrs[] = {
262 &gfs2_attr_id.attr,
263 &gfs2_attr_fsname.attr,
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000264 &gfs2_attr_uuid.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 &gfs2_attr_freeze.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 &gfs2_attr_withdraw.attr,
267 &gfs2_attr_statfs_sync.attr,
268 &gfs2_attr_quota_sync.attr,
269 &gfs2_attr_quota_refresh_user.attr,
270 &gfs2_attr_quota_refresh_group.attr,
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000271 &gfs2_attr_demote_rq.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272 NULL,
273};
274
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275static struct kobj_type gfs2_ktype = {
276 .default_attrs = gfs2_attrs,
277 .sysfs_ops = &gfs2_attr_ops,
278};
279
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000280
281/*
282 * lock_module. Originally from lock_dlm
283 */
284
285static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
286{
287 const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
288 return sprintf(buf, "%s\n", ops->lm_proto_name);
289}
290
291static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
292{
293 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
294 ssize_t ret;
295 int val = 0;
296
297 if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))
298 val = 1;
299 ret = sprintf(buf, "%d\n", val);
300 return ret;
301}
302
303static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
304{
305 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
306 ssize_t ret = len;
307 int val;
308
309 val = simple_strtol(buf, NULL, 0);
310
311 if (val == 1)
312 set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
313 else if (val == 0) {
314 clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags);
315 smp_mb__after_clear_bit();
316 gfs2_glock_thaw(sdp);
317 } else {
318 ret = -EINVAL;
319 }
320 return ret;
321}
322
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000323static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
324{
325 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
326 return sprintf(buf, "%d\n", ls->ls_first);
327}
328
329static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
330{
331 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
332 return sprintf(buf, "%d\n", ls->ls_first_done);
333}
334
Steven Whitehousefe64d512009-05-19 10:01:18 +0100335static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000336{
Steven Whitehousefe64d512009-05-19 10:01:18 +0100337 unsigned jid;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000338 struct gfs2_jdesc *jd;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100339 int rv;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000340
Steven Whitehousefe64d512009-05-19 10:01:18 +0100341 rv = sscanf(buf, "%u", &jid);
342 if (rv != 1)
343 return -EINVAL;
344
345 rv = -ESHUTDOWN;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000346 spin_lock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100347 if (test_bit(SDF_NORECOVERY, &sdp->sd_flags))
348 goto out;
349 rv = -EBUSY;
350 if (sdp->sd_jdesc->jd_jid == jid)
351 goto out;
352 rv = -ENOENT;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000353 list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
354 if (jd->jd_jid != jid)
355 continue;
Steven Whitehousefe64d512009-05-19 10:01:18 +0100356 rv = slow_work_enqueue(&jd->jd_work);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000357 break;
358 }
Steven Whitehousefe64d512009-05-19 10:01:18 +0100359out:
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000360 spin_unlock(&sdp->sd_jindex_spin);
Steven Whitehousefe64d512009-05-19 10:01:18 +0100361 return rv ? rv : len;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000362}
363
364static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
365{
366 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
367 return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
368}
369
370static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
371{
372 struct lm_lockstruct *ls = &sdp->sd_lockstruct;
373 return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
374}
375
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100376static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
377{
378 return sprintf(buf, "%u\n", sdp->sd_lockstruct.ls_jid);
379}
380
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000381#define GDLM_ATTR(_name,_mode,_show,_store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100382static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000383
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100384GDLM_ATTR(proto_name, 0444, proto_name_show, NULL);
385GDLM_ATTR(block, 0644, block_show, block_store);
386GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store);
Steven Whitehoused7e623d2009-08-11 11:20:11 +0100387GDLM_ATTR(jid, 0444, jid_show, NULL);
388GDLM_ATTR(first, 0444, lkfirst_show, NULL);
389GDLM_ATTR(first_done, 0444, first_done_show, NULL);
390GDLM_ATTR(recover, 0600, NULL, recover_store);
391GDLM_ATTR(recover_done, 0444, recover_done_show, NULL);
392GDLM_ATTR(recover_status, 0444, recover_status_show, NULL);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000393
394static struct attribute *lock_module_attrs[] = {
395 &gdlm_attr_proto_name.attr,
396 &gdlm_attr_block.attr,
397 &gdlm_attr_withdraw.attr,
Steven Whitehousee1b28aa2009-05-26 15:41:27 +0100398 &gdlm_attr_jid.attr,
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000399 &gdlm_attr_first.attr,
400 &gdlm_attr_first_done.attr,
401 &gdlm_attr_recover.attr,
402 &gdlm_attr_recover_done.attr,
403 &gdlm_attr_recover_status.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400404 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405};
406
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407/*
David Teiglandb3b94fa2006-01-16 16:50:04 +0000408 * get and set struct gfs2_tune fields
409 */
410
411static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
412{
David Teigland3204a6c2006-09-06 16:57:06 -0500413 return snprintf(buf, PAGE_SIZE, "%u %u\n",
414 sdp->sd_tune.gt_quota_scale_num,
415 sdp->sd_tune.gt_quota_scale_den);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000416}
417
418static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
419 size_t len)
420{
421 struct gfs2_tune *gt = &sdp->sd_tune;
422 unsigned int x, y;
423
424 if (!capable(CAP_SYS_ADMIN))
425 return -EACCES;
426
427 if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
428 return -EINVAL;
429
430 spin_lock(&gt->gt_spin);
431 gt->gt_quota_scale_num = x;
432 gt->gt_quota_scale_den = y;
433 spin_unlock(&gt->gt_spin);
434 return len;
435}
436
437static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
438 int check_zero, const char *buf, size_t len)
439{
440 struct gfs2_tune *gt = &sdp->sd_tune;
441 unsigned int x;
442
443 if (!capable(CAP_SYS_ADMIN))
444 return -EACCES;
445
446 x = simple_strtoul(buf, NULL, 0);
447
448 if (check_zero && !x)
449 return -EINVAL;
450
451 spin_lock(&gt->gt_spin);
452 *field = x;
453 spin_unlock(&gt->gt_spin);
454 return len;
455}
456
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457#define TUNE_ATTR_3(name, show, store) \
Steven Whitehouse48c2b612009-05-13 14:49:48 +0100458static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459
460#define TUNE_ATTR_2(name, store) \
461static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf) \
462{ \
David Teigland3204a6c2006-09-06 16:57:06 -0500463 return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name); \
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464} \
465TUNE_ATTR_3(name, name##_show, store)
466
467#define TUNE_ATTR(name, check_zero) \
468static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
469{ \
470 return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len); \
471} \
472TUNE_ATTR_2(name, name##_store)
473
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474TUNE_ATTR(incore_log_blocks, 0);
475TUNE_ATTR(log_flush_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476TUNE_ATTR(quota_warn_period, 0);
477TUNE_ATTR(quota_quantum, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478TUNE_ATTR(max_readahead, 0);
479TUNE_ATTR(complain_secs, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480TUNE_ATTR(statfs_slow, 0);
481TUNE_ATTR(new_files_jdata, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000482TUNE_ATTR(quota_simul_sync, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000483TUNE_ATTR(stall_secs, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484TUNE_ATTR(statfs_quantum, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000485TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);
486
487static struct attribute *tune_attrs[] = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488 &tune_attr_incore_log_blocks.attr,
489 &tune_attr_log_flush_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490 &tune_attr_quota_warn_period.attr,
491 &tune_attr_quota_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492 &tune_attr_max_readahead.attr,
493 &tune_attr_complain_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 &tune_attr_statfs_slow.attr,
495 &tune_attr_quota_simul_sync.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000496 &tune_attr_stall_secs.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 &tune_attr_statfs_quantum.attr,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000498 &tune_attr_quota_scale.attr,
499 &tune_attr_new_files_jdata.attr,
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400500 NULL,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000501};
502
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503static struct attribute_group tune_group = {
504 .name = "tune",
Steven Whitehouseea67eed2006-09-05 10:53:09 -0400505 .attrs = tune_attrs,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000506};
507
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000508static struct attribute_group lock_module_group = {
509 .name = "lock_module",
510 .attrs = lock_module_attrs,
511};
512
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
514{
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100515 struct super_block *sb = sdp->sd_vfs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516 int error;
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100517 char ro[20];
518 char spectator[20];
519 char *envp[] = { ro, spectator, NULL };
520
521 sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
522 sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100524 sdp->sd_kobj.kset = gfs2_kset;
Greg Kroah-Hartman901195e2007-12-17 15:54:39 -0400525 error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
526 "%s", sdp->sd_table_name);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 if (error)
528 goto fail;
529
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530 error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
531 if (error)
Steven Whitehousef6eb5342009-05-26 15:50:25 +0100532 goto fail_reg;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000534 error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
535 if (error)
536 goto fail_tune;
537
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100538 error = sysfs_create_link(&sdp->sd_kobj,
539 &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
540 "device");
541 if (error)
542 goto fail_lock_module;
543
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100544 kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545 return 0;
546
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100547fail_lock_module:
548 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000549fail_tune:
550 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400551fail_reg:
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800552 kobject_put(&sdp->sd_kobj);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400553fail:
David Teigland65952fb2006-09-15 13:09:11 -0500554 fs_err(sdp, "error %d adding sysfs files", error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000555 return error;
556}
557
558void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
559{
Steven Whitehouse31e54b02009-08-13 12:18:08 +0100560 sysfs_remove_link(&sdp->sd_kobj, "device");
David Teiglandb3b94fa2006-01-16 16:50:04 +0000561 sysfs_remove_group(&sdp->sd_kobj, &tune_group);
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000562 sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800563 kobject_put(&sdp->sd_kobj);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000564}
565
Steven Whitehousefdd10622008-11-26 10:26:38 +0000566static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
567 struct kobj_uevent_env *env)
568{
569 struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000570 const u8 *uuid = sdp->sd_sb.sb_uuid;
571
Steven Whitehousefdd10622008-11-26 10:26:38 +0000572 add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
573 add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
Steven Whitehouse440d6da2009-07-31 12:16:25 +0100574 if (!sdp->sd_args.ar_spectator)
575 add_uevent_var(env, "JOURNALID=%u", sdp->sd_lockstruct.ls_jid);
Steven Whitehouse02e3cc72009-02-10 13:48:30 +0000576 if (gfs2_uuid_valid(uuid)) {
577 add_uevent_var(env, "UUID=%02X%02X%02X%02X-%02X%02X-%02X%02X-"
578 "%02X%02X-%02X%02X%02X%02X%02X%02X",
579 uuid[0], uuid[1], uuid[2], uuid[3], uuid[4],
580 uuid[5], uuid[6], uuid[7], uuid[8], uuid[9],
581 uuid[10], uuid[11], uuid[12], uuid[13],
582 uuid[14], uuid[15]);
583 }
Steven Whitehousefdd10622008-11-26 10:26:38 +0000584 return 0;
585}
586
587static struct kset_uevent_ops gfs2_uevent_ops = {
588 .uevent = gfs2_uevent,
589};
590
David Teiglandb3b94fa2006-01-16 16:50:04 +0000591int gfs2_sys_init(void)
592{
Steven Whitehousefdd10622008-11-26 10:26:38 +0000593 gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100594 if (!gfs2_kset)
595 return -ENOMEM;
596 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597}
598
599void gfs2_sys_uninit(void)
600{
Greg Kroah-Hartman9bec1012007-10-29 20:13:17 +0100601 kset_unregister(gfs2_kset);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602}
603