sys.c 16.6 KB
Newer Older
D
David Teigland 已提交
1 2
/*
 * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3
 * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
D
David Teigland 已提交
4 5 6
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
7
 * of the GNU General Public License version 2.
D
David Teigland 已提交
8 9 10 11 12 13 14 15 16
 */

#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/buffer_head.h>
#include <linux/module.h>
#include <linux/kobject.h>
#include <asm/uaccess.h>
17
#include <linux/gfs2_ondisk.h>
18
#include <linux/genhd.h>
D
David Teigland 已提交
19 20

#include "gfs2.h"
21
#include "incore.h"
D
David Teigland 已提交
22 23 24 25
#include "sys.h"
#include "super.h"
#include "glock.h"
#include "quota.h"
26
#include "util.h"
27
#include "glops.h"
28
#include "recovery.h"
D
David Teigland 已提交
29

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
struct gfs2_attr {
	struct attribute attr;
	ssize_t (*show)(struct gfs2_sbd *, char *);
	ssize_t (*store)(struct gfs2_sbd *, const char *, size_t);
};

static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr,
			      char *buf)
{
	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
	struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
	return a->show ? a->show(sdp, buf) : 0;
}

static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr,
			       const char *buf, size_t len)
{
	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
	struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr);
	return a->store ? a->store(sdp, buf, len) : len;
}

52
static const struct sysfs_ops gfs2_attr_ops = {
53 54 55 56 57 58 59
	.show  = gfs2_attr_show,
	.store = gfs2_attr_store,
};


static struct kset *gfs2_kset;

D
David Teigland 已提交
60 61
static ssize_t id_show(struct gfs2_sbd *sdp, char *buf)
{
62 63
	return snprintf(buf, PAGE_SIZE, "%u:%u\n",
			MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev));
D
David Teigland 已提交
64 65 66 67
}

static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf)
{
68
	return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname);
D
David Teigland 已提交
69 70
}

71 72 73 74 75 76 77 78 79 80 81 82 83
static int gfs2_uuid_valid(const u8 *uuid)
{
	int i;

	for (i = 0; i < 16; i++) {
		if (uuid[i])
			return 1;
	}
	return 0;
}

static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf)
{
84 85
	struct super_block *s = sdp->sd_vfs;
	const u8 *uuid = s->s_uuid;
86 87 88
	buf[0] = '\0';
	if (!gfs2_uuid_valid(uuid))
		return 0;
89
	return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid);
90 91
}

D
David Teigland 已提交
92 93 94 95
static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf)
{
	unsigned int count;

96
	mutex_lock(&sdp->sd_freeze_lock);
D
David Teigland 已提交
97
	count = sdp->sd_freeze_count;
98
	mutex_unlock(&sdp->sd_freeze_lock);
D
David Teigland 已提交
99

100
	return snprintf(buf, PAGE_SIZE, "%u\n", count);
D
David Teigland 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
}

static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	ssize_t ret = len;
	int error = 0;
	int n = simple_strtol(buf, NULL, 0);

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	switch (n) {
	case 0:
		gfs2_unfreeze_fs(sdp);
		break;
	case 1:
		error = gfs2_freeze_fs(sdp);
		break;
	default:
		ret = -EINVAL;
	}

	if (error)
		fs_warn(sdp, "freeze %d error %d", n, error);

	return ret;
}

static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf)
{
	unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags);
132
	return snprintf(buf, PAGE_SIZE, "%u\n", b);
D
David Teigland 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
}

static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	if (simple_strtol(buf, NULL, 0) != 1)
		return -EINVAL;

	gfs2_lm_withdraw(sdp,
		"GFS2: fsid=%s: withdrawing from cluster at user's request\n",
		sdp->sd_fsname);
	return len;
}

static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf,
				 size_t len)
{
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	if (simple_strtol(buf, NULL, 0) != 1)
		return -EINVAL;

158
	gfs2_statfs_sync(sdp->sd_vfs, 0);
D
David Teigland 已提交
159 160 161 162 163 164 165 166 167 168 169 170
	return len;
}

static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf,
				size_t len)
{
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	if (simple_strtol(buf, NULL, 0) != 1)
		return -EINVAL;

171
	gfs2_quota_sync(sdp->sd_vfs, 0);
D
David Teigland 已提交
172 173 174 175 176 177
	return len;
}

static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf,
					size_t len)
{
178
	int error;
179
	u32 id;
D
David Teigland 已提交
180 181 182 183 184 185

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	id = simple_strtoul(buf, NULL, 0);

186 187
	error = gfs2_quota_refresh(sdp, 1, id);
	return error ? error : len;
D
David Teigland 已提交
188 189 190 191 192
}

static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf,
					 size_t len)
{
193
	int error;
194
	u32 id;
D
David Teigland 已提交
195 196 197 198 199 200

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	id = simple_strtoul(buf, NULL, 0);

201 202
	error = gfs2_quota_refresh(sdp, 0, id);
	return error ? error : len;
D
David Teigland 已提交
203 204
}

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	struct gfs2_glock *gl;
	const struct gfs2_glock_operations *glops;
	unsigned int glmode;
	unsigned int gltype;
	unsigned long long glnum;
	char mode[16];
	int rv;

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum,
		    mode);
	if (rv != 3)
		return -EINVAL;

	if (strcmp(mode, "EX") == 0)
		glmode = LM_ST_UNLOCKED;
	else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0))
		glmode = LM_ST_DEFERRED;
	else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0))
		glmode = LM_ST_SHARED;
	else
		return -EINVAL;

	if (gltype > LM_TYPE_JOURNAL)
		return -EINVAL;
234 235 236 237
	if (gltype == LM_TYPE_NONDISK && glnum == GFS2_TRANS_LOCK)
		glops = &gfs2_trans_glops;
	else
		glops = gfs2_glops_list[gltype];
238 239
	if (glops == NULL)
		return -EINVAL;
S
Steven Whitehouse 已提交
240
	if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags))
241
		fs_info(sdp, "demote interface used\n");
242 243 244 245 246 247 248 249
	rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl);
	if (rv)
		return rv;
	gfs2_glock_cb(gl, glmode);
	gfs2_glock_put(gl);
	return len;
}

D
David Teigland 已提交
250 251 252 253 254 255

#define GFS2_ATTR(name, mode, show, store) \
static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store)

GFS2_ATTR(id,                  0444, id_show,       NULL);
GFS2_ATTR(fsname,              0444, fsname_show,   NULL);
256
GFS2_ATTR(uuid,                0444, uuid_show,     NULL);
D
David Teigland 已提交
257 258 259 260 261 262
GFS2_ATTR(freeze,              0644, freeze_show,   freeze_store);
GFS2_ATTR(withdraw,            0644, withdraw_show, withdraw_store);
GFS2_ATTR(statfs_sync,         0200, NULL,          statfs_sync_store);
GFS2_ATTR(quota_sync,          0200, NULL,          quota_sync_store);
GFS2_ATTR(quota_refresh_user,  0200, NULL,          quota_refresh_user_store);
GFS2_ATTR(quota_refresh_group, 0200, NULL,          quota_refresh_group_store);
263
GFS2_ATTR(demote_rq,           0200, NULL,	    demote_rq_store);
D
David Teigland 已提交
264 265 266 267

static struct attribute *gfs2_attrs[] = {
	&gfs2_attr_id.attr,
	&gfs2_attr_fsname.attr,
268
	&gfs2_attr_uuid.attr,
D
David Teigland 已提交
269 270 271 272 273 274
	&gfs2_attr_freeze.attr,
	&gfs2_attr_withdraw.attr,
	&gfs2_attr_statfs_sync.attr,
	&gfs2_attr_quota_sync.attr,
	&gfs2_attr_quota_refresh_user.attr,
	&gfs2_attr_quota_refresh_group.attr,
275
	&gfs2_attr_demote_rq.attr,
D
David Teigland 已提交
276 277 278
	NULL,
};

B
Bob Peterson 已提交
279 280 281 282 283 284 285
static void gfs2_sbd_release(struct kobject *kobj)
{
	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);

	kfree(sdp);
}

D
David Teigland 已提交
286
static struct kobj_type gfs2_ktype = {
B
Bob Peterson 已提交
287
	.release = gfs2_sbd_release,
D
David Teigland 已提交
288 289 290 291
	.default_attrs = gfs2_attrs,
	.sysfs_ops     = &gfs2_attr_ops,
};

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308

/*
 * lock_module. Originally from lock_dlm
 */

static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf)
{
	const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops;
	return sprintf(buf, "%s\n", ops->lm_proto_name);
}

static ssize_t block_show(struct gfs2_sbd *sdp, char *buf)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
	ssize_t ret;
	int val = 0;

309
	if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))
310 311 312 313 314 315 316 317 318 319 320 321 322 323
		val = 1;
	ret = sprintf(buf, "%d\n", val);
	return ret;
}

static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
	ssize_t ret = len;
	int val;

	val = simple_strtol(buf, NULL, 0);

	if (val == 1)
324
		set_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
325
	else if (val == 0) {
326
		clear_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags);
327 328 329 330 331 332 333 334 335 336 337 338 339 340
		smp_mb__after_clear_bit();
		gfs2_glock_thaw(sdp);
	} else {
		ret = -EINVAL;
	}
	return ret;
}

static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
	return sprintf(buf, "%d\n", ls->ls_first);
}

341 342 343 344 345 346 347 348
static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	unsigned first;
	int rv;

	rv = sscanf(buf, "%u", &first);
	if (rv != 1 || first > 1)
		return -EINVAL;
349 350 351
	rv = wait_for_completion_killable(&sdp->sd_locking_init);
	if (rv)
		return rv;
352 353 354 355 356 357 358 359 360
	spin_lock(&sdp->sd_jindex_spin);
	rv = -EBUSY;
	if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
		goto out;
	rv = -EINVAL;
	if (sdp->sd_args.ar_spectator)
		goto out;
	if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
		goto out;
361 362
	sdp->sd_lockstruct.ls_first = first;
	rv = 0;
363 364 365 366 367
out:
        spin_unlock(&sdp->sd_jindex_spin);
        return rv ? rv : len;
}

368 369 370
static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
371
	return sprintf(buf, "%d\n", !!test_bit(DFL_FIRST_MOUNT_DONE, &ls->ls_recover_flags));
372 373
}

374
int gfs2_recover_set(struct gfs2_sbd *sdp, unsigned jid)
375 376
{
	struct gfs2_jdesc *jd;
377 378
	int rv;

379
	spin_lock(&sdp->sd_jindex_spin);
380 381 382 383
	rv = -EBUSY;
	if (sdp->sd_jdesc->jd_jid == jid)
		goto out;
	rv = -ENOENT;
384 385 386
	list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) {
		if (jd->jd_jid != jid)
			continue;
387
		rv = gfs2_recover_journal(jd, false);
388 389
		break;
	}
390
out:
391
	spin_unlock(&sdp->sd_jindex_spin);
392 393 394 395 396 397 398 399 400 401 402 403
	return rv;
}

static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
	unsigned jid;
	int rv;

	rv = sscanf(buf, "%u", &jid);
	if (rv != 1)
		return -EINVAL;

404 405 406 407
	if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) {
		rv = -ESHUTDOWN;
		goto out;
	}
408

409 410
	rv = gfs2_recover_set(sdp, jid);
out:
411
	return rv ? rv : len;
412 413 414 415 416 417 418 419 420 421 422 423 424 425
}

static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
	return sprintf(buf, "%d\n", ls->ls_recover_jid_done);
}

static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf)
{
	struct lm_lockstruct *ls = &sdp->sd_lockstruct;
	return sprintf(buf, "%d\n", ls->ls_recover_jid_status);
}

426 427
static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf)
{
428
	return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid);
429 430
}

431 432
static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len)
{
433
        int jid;
434 435
	int rv;

436
	rv = sscanf(buf, "%d", &jid);
437 438
	if (rv != 1)
		return -EINVAL;
439 440 441
	rv = wait_for_completion_killable(&sdp->sd_locking_init);
	if (rv)
		return rv;
442 443 444 445 446
	spin_lock(&sdp->sd_jindex_spin);
	rv = -EINVAL;
	if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL)
		goto out;
	rv = -EBUSY;
447
	if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0)
448
		goto out;
449 450 451
	rv = 0;
	if (sdp->sd_args.ar_spectator && jid > 0)
		rv = jid = -EINVAL;
452
	sdp->sd_lockstruct.ls_jid = jid;
453
	clear_bit(SDF_NOJOURNALID, &sdp->sd_flags);
454 455 456 457 458 459 460
	smp_mb__after_clear_bit();
	wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID);
out:
	spin_unlock(&sdp->sd_jindex_spin);
	return rv ? rv : len;
}

461
#define GDLM_ATTR(_name,_mode,_show,_store) \
462
static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store)
463

464 465 466
GDLM_ATTR(proto_name,		0444, proto_name_show,		NULL);
GDLM_ATTR(block,		0644, block_show,		block_store);
GDLM_ATTR(withdraw,		0644, withdraw_show,		withdraw_store);
467 468
GDLM_ATTR(jid,			0644, jid_show,			jid_store);
GDLM_ATTR(first,		0644, lkfirst_show,		lkfirst_store);
469 470 471 472
GDLM_ATTR(first_done,		0444, first_done_show,		NULL);
GDLM_ATTR(recover,		0600, NULL,			recover_store);
GDLM_ATTR(recover_done,		0444, recover_done_show,	NULL);
GDLM_ATTR(recover_status,	0444, recover_status_show,	NULL);
473 474 475 476 477

static struct attribute *lock_module_attrs[] = {
	&gdlm_attr_proto_name.attr,
	&gdlm_attr_block.attr,
	&gdlm_attr_withdraw.attr,
478
	&gdlm_attr_jid.attr,
479 480 481 482 483
	&gdlm_attr_first.attr,
	&gdlm_attr_first_done.attr,
	&gdlm_attr_recover.attr,
	&gdlm_attr_recover_done.attr,
	&gdlm_attr_recover_status.attr,
484
	NULL,
D
David Teigland 已提交
485 486 487 488 489 490 491 492
};

/*
 * get and set struct gfs2_tune fields
 */

static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf)
{
493 494 495
	return snprintf(buf, PAGE_SIZE, "%u %u\n",
			sdp->sd_tune.gt_quota_scale_num,
			sdp->sd_tune.gt_quota_scale_den);
D
David Teigland 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
}

static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf,
				 size_t len)
{
	struct gfs2_tune *gt = &sdp->sd_tune;
	unsigned int x, y;

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	if (sscanf(buf, "%u %u", &x, &y) != 2 || !y)
		return -EINVAL;

	spin_lock(&gt->gt_spin);
	gt->gt_quota_scale_num = x;
	gt->gt_quota_scale_den = y;
	spin_unlock(&gt->gt_spin);
	return len;
}

static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field,
			int check_zero, const char *buf, size_t len)
{
	struct gfs2_tune *gt = &sdp->sd_tune;
	unsigned int x;

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	x = simple_strtoul(buf, NULL, 0);

	if (check_zero && !x)
		return -EINVAL;

	spin_lock(&gt->gt_spin);
	*field = x;
	spin_unlock(&gt->gt_spin);
	return len;
}

#define TUNE_ATTR_3(name, show, store)                                        \
538
static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store)
D
David Teigland 已提交
539 540 541 542

#define TUNE_ATTR_2(name, store)                                              \
static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf)                   \
{                                                                             \
543
	return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name);      \
D
David Teigland 已提交
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
}                                                                             \
TUNE_ATTR_3(name, name##_show, store)

#define TUNE_ATTR(name, check_zero)                                           \
static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\
{                                                                             \
	return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len);  \
}                                                                             \
TUNE_ATTR_2(name, name##_store)

TUNE_ATTR(quota_warn_period, 0);
TUNE_ATTR(quota_quantum, 0);
TUNE_ATTR(max_readahead, 0);
TUNE_ATTR(complain_secs, 0);
TUNE_ATTR(statfs_slow, 0);
TUNE_ATTR(new_files_jdata, 0);
TUNE_ATTR(quota_simul_sync, 1);
TUNE_ATTR(statfs_quantum, 1);
TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store);

static struct attribute *tune_attrs[] = {
	&tune_attr_quota_warn_period.attr,
	&tune_attr_quota_quantum.attr,
	&tune_attr_max_readahead.attr,
	&tune_attr_complain_secs.attr,
	&tune_attr_statfs_slow.attr,
	&tune_attr_quota_simul_sync.attr,
	&tune_attr_statfs_quantum.attr,
	&tune_attr_quota_scale.attr,
	&tune_attr_new_files_jdata.attr,
574
	NULL,
D
David Teigland 已提交
575 576 577 578
};

static struct attribute_group tune_group = {
	.name = "tune",
579
	.attrs = tune_attrs,
D
David Teigland 已提交
580 581
};

582 583 584 585 586
static struct attribute_group lock_module_group = {
	.name = "lock_module",
	.attrs = lock_module_attrs,
};

D
David Teigland 已提交
587 588
int gfs2_sys_fs_add(struct gfs2_sbd *sdp)
{
589
	struct super_block *sb = sdp->sd_vfs;
D
David Teigland 已提交
590
	int error;
591 592 593
	char ro[20];
	char spectator[20];
	char *envp[] = { ro, spectator, NULL };
B
Bob Peterson 已提交
594
	int sysfs_frees_sdp = 0;
595 596 597

	sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0);
	sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0);
D
David Teigland 已提交
598

599
	sdp->sd_kobj.kset = gfs2_kset;
600 601
	error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL,
				     "%s", sdp->sd_table_name);
D
David Teigland 已提交
602
	if (error)
B
Bob Peterson 已提交
603
		goto fail_reg;
D
David Teigland 已提交
604

B
Bob Peterson 已提交
605 606
	sysfs_frees_sdp = 1; /* Freeing sdp is now done by sysfs calling
				function gfs2_sbd_release. */
D
David Teigland 已提交
607 608
	error = sysfs_create_group(&sdp->sd_kobj, &tune_group);
	if (error)
609
		goto fail_reg;
D
David Teigland 已提交
610

611 612 613 614
	error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group);
	if (error)
		goto fail_tune;

615 616 617 618 619 620
	error = sysfs_create_link(&sdp->sd_kobj,
				  &disk_to_dev(sb->s_bdev->bd_disk)->kobj,
				  "device");
	if (error)
		goto fail_lock_module;

621
	kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp);
D
David Teigland 已提交
622 623
	return 0;

624 625
fail_lock_module:
	sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
626 627
fail_tune:
	sysfs_remove_group(&sdp->sd_kobj, &tune_group);
628
fail_reg:
B
Bob Peterson 已提交
629
	free_percpu(sdp->sd_lkstats);
630
	fs_err(sdp, "error %d adding sysfs files", error);
B
Bob Peterson 已提交
631 632 633 634 635
	if (sysfs_frees_sdp)
		kobject_put(&sdp->sd_kobj);
	else
		kfree(sdp);
	sb->s_fs_info = NULL;
D
David Teigland 已提交
636 637 638 639 640
	return error;
}

void gfs2_sys_fs_del(struct gfs2_sbd *sdp)
{
641
	sysfs_remove_link(&sdp->sd_kobj, "device");
D
David Teigland 已提交
642
	sysfs_remove_group(&sdp->sd_kobj, &tune_group);
643
	sysfs_remove_group(&sdp->sd_kobj, &lock_module_group);
644
	kobject_put(&sdp->sd_kobj);
D
David Teigland 已提交
645 646
}

647 648 649 650
static int gfs2_uevent(struct kset *kset, struct kobject *kobj,
		       struct kobj_uevent_env *env)
{
	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj);
651 652
	struct super_block *s = sdp->sd_vfs;
	const u8 *uuid = s->s_uuid;
653

654 655
	add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name);
	add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name);
656
	if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags))
657
		add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid);
658 659
	if (gfs2_uuid_valid(uuid))
		add_uevent_var(env, "UUID=%pUB", uuid);
660 661 662
	return 0;
}

663
static const struct kset_uevent_ops gfs2_uevent_ops = {
664 665 666
	.uevent = gfs2_uevent,
};

D
David Teigland 已提交
667 668
int gfs2_sys_init(void)
{
669
	gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj);
670 671 672
	if (!gfs2_kset)
		return -ENOMEM;
	return 0;
D
David Teigland 已提交
673 674 675 676
}

void gfs2_sys_uninit(void)
{
677
	kset_unregister(gfs2_kset);
D
David Teigland 已提交
678 679
}