sysfs.c 21.2 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

19 20 21 22 23 24
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/buffer_head.h>
#include <linux/kobject.h>
25
#include <linux/bug.h>
26
#include <linux/genhd.h>
27
#include <linux/debugfs.h>
28

C
Chris Mason 已提交
29 30 31
#include "ctree.h"
#include "disk-io.h"
#include "transaction.h"
32
#include "sysfs.h"
33
#include "volumes.h"
34

35
static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj);
36
static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj);
37

38 39
static u64 get_features(struct btrfs_fs_info *fs_info,
			enum btrfs_feature_set set)
40
{
41 42 43 44 45 46 47
	struct btrfs_super_block *disk_super = fs_info->super_copy;
	if (set == FEAT_COMPAT)
		return btrfs_super_compat_flags(disk_super);
	else if (set == FEAT_COMPAT_RO)
		return btrfs_super_compat_ro_flags(disk_super);
	else
		return btrfs_super_incompat_flags(disk_super);
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
static void set_features(struct btrfs_fs_info *fs_info,
			 enum btrfs_feature_set set, u64 features)
{
	struct btrfs_super_block *disk_super = fs_info->super_copy;
	if (set == FEAT_COMPAT)
		btrfs_set_super_compat_flags(disk_super, features);
	else if (set == FEAT_COMPAT_RO)
		btrfs_set_super_compat_ro_flags(disk_super, features);
	else
		btrfs_set_super_incompat_flags(disk_super, features);
}

static int can_modify_feature(struct btrfs_feature_attr *fa)
{
	int val = 0;
	u64 set, clear;
	switch (fa->feature_set) {
	case FEAT_COMPAT:
		set = BTRFS_FEATURE_COMPAT_SAFE_SET;
		clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
		break;
	case FEAT_COMPAT_RO:
		set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
		clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
		break;
	case FEAT_INCOMPAT:
		set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
		clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
		break;
	default:
80 81 82
		printk(KERN_WARNING "btrfs: sysfs: unknown feature set %d\n",
				fa->feature_set);
		return 0;
83 84 85 86 87 88 89 90 91 92
	}

	if (set & fa->feature_bit)
		val |= 1;
	if (clear & fa->feature_bit)
		val |= 2;

	return val;
}

93 94
static ssize_t btrfs_feature_attr_show(struct kobject *kobj,
				       struct kobj_attribute *a, char *buf)
95
{
96
	int val = 0;
97
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
98
	struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
99 100 101 102
	if (fs_info) {
		u64 features = get_features(fs_info, fa->feature_set);
		if (features & fa->feature_bit)
			val = 1;
103 104
	} else
		val = can_modify_feature(fa);
105 106

	return snprintf(buf, PAGE_SIZE, "%d\n", val);
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 132 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 158 159 160 161 162 163 164
static ssize_t btrfs_feature_attr_store(struct kobject *kobj,
					struct kobj_attribute *a,
					const char *buf, size_t count)
{
	struct btrfs_fs_info *fs_info;
	struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
	u64 features, set, clear;
	unsigned long val;
	int ret;

	fs_info = to_fs_info(kobj);
	if (!fs_info)
		return -EPERM;

	ret = kstrtoul(skip_spaces(buf), 0, &val);
	if (ret)
		return ret;

	if (fa->feature_set == FEAT_COMPAT) {
		set = BTRFS_FEATURE_COMPAT_SAFE_SET;
		clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
	} else if (fa->feature_set == FEAT_COMPAT_RO) {
		set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
		clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
	} else {
		set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
		clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
	}

	features = get_features(fs_info, fa->feature_set);

	/* Nothing to do */
	if ((val && (features & fa->feature_bit)) ||
	    (!val && !(features & fa->feature_bit)))
		return count;

	if ((val && !(set & fa->feature_bit)) ||
	    (!val && !(clear & fa->feature_bit))) {
		btrfs_info(fs_info,
			"%sabling feature %s on mounted fs is not supported.",
			val ? "En" : "Dis", fa->kobj_attr.attr.name);
		return -EPERM;
	}

	btrfs_info(fs_info, "%s %s feature flag",
		   val ? "Setting" : "Clearing", fa->kobj_attr.attr.name);

	spin_lock(&fs_info->super_lock);
	features = get_features(fs_info, fa->feature_set);
	if (val)
		features |= fa->feature_bit;
	else
		features &= ~fa->feature_bit;
	set_features(fs_info, fa->feature_set, features);
	spin_unlock(&fs_info->super_lock);

165 166 167 168 169
	/*
	 * We don't want to do full transaction commit from inside sysfs
	 */
	btrfs_set_pending(fs_info, COMMIT);
	wake_up_process(fs_info->transaction_kthread);
170 171 172 173

	return count;
}

174 175
static umode_t btrfs_feature_visible(struct kobject *kobj,
				     struct attribute *attr, int unused)
176
{
177 178 179 180 181 182 183 184 185 186
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
	umode_t mode = attr->mode;

	if (fs_info) {
		struct btrfs_feature_attr *fa;
		u64 features;

		fa = attr_to_btrfs_feature_attr(attr);
		features = get_features(fs_info, fa->feature_set);

187 188 189
		if (can_modify_feature(fa))
			mode |= S_IWUSR;
		else if (!(features & fa->feature_bit))
190 191 192 193
			mode = 0;
	}

	return mode;
194 195 196 197 198 199 200 201 202 203
}

BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref, MIXED_BACKREF);
BTRFS_FEAT_ATTR_INCOMPAT(default_subvol, DEFAULT_SUBVOL);
BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups, MIXED_GROUPS);
BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo, COMPRESS_LZO);
BTRFS_FEAT_ATTR_INCOMPAT(big_metadata, BIG_METADATA);
BTRFS_FEAT_ATTR_INCOMPAT(extended_iref, EXTENDED_IREF);
BTRFS_FEAT_ATTR_INCOMPAT(raid56, RAID56);
BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata, SKINNY_METADATA);
204
BTRFS_FEAT_ATTR_INCOMPAT(no_holes, NO_HOLES);
205
BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree, FREE_SPACE_TREE);
206 207 208 209 210 211 212 213 214 215

static struct attribute *btrfs_supported_feature_attrs[] = {
	BTRFS_FEAT_ATTR_PTR(mixed_backref),
	BTRFS_FEAT_ATTR_PTR(default_subvol),
	BTRFS_FEAT_ATTR_PTR(mixed_groups),
	BTRFS_FEAT_ATTR_PTR(compress_lzo),
	BTRFS_FEAT_ATTR_PTR(big_metadata),
	BTRFS_FEAT_ATTR_PTR(extended_iref),
	BTRFS_FEAT_ATTR_PTR(raid56),
	BTRFS_FEAT_ATTR_PTR(skinny_metadata),
216
	BTRFS_FEAT_ATTR_PTR(no_holes),
217
	BTRFS_FEAT_ATTR_PTR(free_space_tree),
218 219 220 221 222
	NULL
};

static const struct attribute_group btrfs_feature_attr_group = {
	.name = "features",
223
	.is_visible = btrfs_feature_visible,
224 225
	.attrs = btrfs_supported_feature_attrs,
};
226

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
static ssize_t btrfs_show_u64(u64 *value_ptr, spinlock_t *lock, char *buf)
{
	u64 val;
	if (lock)
		spin_lock(lock);
	val = *value_ptr;
	if (lock)
		spin_unlock(lock);
	return snprintf(buf, PAGE_SIZE, "%llu\n", val);
}

static ssize_t global_rsv_size_show(struct kobject *kobj,
				    struct kobj_attribute *ka, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
	struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
	return btrfs_show_u64(&block_rsv->size, &block_rsv->lock, buf);
}
245
BTRFS_ATTR(global_rsv_size, global_rsv_size_show);
246 247 248 249 250 251 252 253

static ssize_t global_rsv_reserved_show(struct kobject *kobj,
					struct kobj_attribute *a, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
	struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
	return btrfs_show_u64(&block_rsv->reserved, &block_rsv->lock, buf);
}
254
BTRFS_ATTR(global_rsv_reserved, global_rsv_reserved_show);
255 256

#define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj)
257
#define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj)
258 259 260 261 262 263 264 265 266 267 268 269

static ssize_t raid_bytes_show(struct kobject *kobj,
			       struct kobj_attribute *attr, char *buf);
BTRFS_RAID_ATTR(total_bytes, raid_bytes_show);
BTRFS_RAID_ATTR(used_bytes, raid_bytes_show);

static ssize_t raid_bytes_show(struct kobject *kobj,
			       struct kobj_attribute *attr, char *buf)

{
	struct btrfs_space_info *sinfo = to_space_info(kobj->parent);
	struct btrfs_block_group_cache *block_group;
270
	int index = to_raid_kobj(kobj)->raid_type;
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
	u64 val = 0;

	down_read(&sinfo->groups_sem);
	list_for_each_entry(block_group, &sinfo->block_groups[index], list) {
		if (&attr->attr == BTRFS_RAID_ATTR_PTR(total_bytes))
			val += block_group->key.offset;
		else
			val += btrfs_block_group_used(&block_group->item);
	}
	up_read(&sinfo->groups_sem);
	return snprintf(buf, PAGE_SIZE, "%llu\n", val);
}

static struct attribute *raid_attributes[] = {
	BTRFS_RAID_ATTR_PTR(total_bytes),
	BTRFS_RAID_ATTR_PTR(used_bytes),
	NULL
};

static void release_raid_kobj(struct kobject *kobj)
{
292
	kfree(to_raid_kobj(kobj));
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
}

struct kobj_type btrfs_raid_ktype = {
	.sysfs_ops = &kobj_sysfs_ops,
	.release = release_raid_kobj,
	.default_attrs = raid_attributes,
};

#define SPACE_INFO_ATTR(field)						\
static ssize_t btrfs_space_info_show_##field(struct kobject *kobj,	\
					     struct kobj_attribute *a,	\
					     char *buf)			\
{									\
	struct btrfs_space_info *sinfo = to_space_info(kobj);		\
	return btrfs_show_u64(&sinfo->field, &sinfo->lock, buf);	\
}									\
309
BTRFS_ATTR(field, btrfs_space_info_show_##field)
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327

static ssize_t btrfs_space_info_show_total_bytes_pinned(struct kobject *kobj,
						       struct kobj_attribute *a,
						       char *buf)
{
	struct btrfs_space_info *sinfo = to_space_info(kobj);
	s64 val = percpu_counter_sum(&sinfo->total_bytes_pinned);
	return snprintf(buf, PAGE_SIZE, "%lld\n", val);
}

SPACE_INFO_ATTR(flags);
SPACE_INFO_ATTR(total_bytes);
SPACE_INFO_ATTR(bytes_used);
SPACE_INFO_ATTR(bytes_pinned);
SPACE_INFO_ATTR(bytes_reserved);
SPACE_INFO_ATTR(bytes_may_use);
SPACE_INFO_ATTR(disk_used);
SPACE_INFO_ATTR(disk_total);
328
BTRFS_ATTR(total_bytes_pinned, btrfs_space_info_show_total_bytes_pinned);
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361

static struct attribute *space_info_attrs[] = {
	BTRFS_ATTR_PTR(flags),
	BTRFS_ATTR_PTR(total_bytes),
	BTRFS_ATTR_PTR(bytes_used),
	BTRFS_ATTR_PTR(bytes_pinned),
	BTRFS_ATTR_PTR(bytes_reserved),
	BTRFS_ATTR_PTR(bytes_may_use),
	BTRFS_ATTR_PTR(disk_used),
	BTRFS_ATTR_PTR(disk_total),
	BTRFS_ATTR_PTR(total_bytes_pinned),
	NULL,
};

static void space_info_release(struct kobject *kobj)
{
	struct btrfs_space_info *sinfo = to_space_info(kobj);
	percpu_counter_destroy(&sinfo->total_bytes_pinned);
	kfree(sinfo);
}

struct kobj_type space_info_ktype = {
	.sysfs_ops = &kobj_sysfs_ops,
	.release = space_info_release,
	.default_attrs = space_info_attrs,
};

static const struct attribute *allocation_attrs[] = {
	BTRFS_ATTR_PTR(global_rsv_reserved),
	BTRFS_ATTR_PTR(global_rsv_size),
	NULL,
};

J
Jeff Mahoney 已提交
362 363 364 365
static ssize_t btrfs_label_show(struct kobject *kobj,
				struct kobj_attribute *a, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
366 367
	char *label = fs_info->super_copy->label;
	return snprintf(buf, PAGE_SIZE, label[0] ? "%s\n" : "%s", label);
J
Jeff Mahoney 已提交
368 369 370 371 372 373 374
}

static ssize_t btrfs_label_store(struct kobject *kobj,
				 struct kobj_attribute *a,
				 const char *buf, size_t len)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);
375
	size_t p_len;
J
Jeff Mahoney 已提交
376

377 378 379
	if (fs_info->sb->s_flags & MS_RDONLY)
		return -EROFS;

380 381 382 383 384 385 386
	/*
	 * p_len is the len until the first occurrence of either
	 * '\n' or '\0'
	 */
	p_len = strcspn(buf, "\n");

	if (p_len >= BTRFS_LABEL_SIZE)
J
Jeff Mahoney 已提交
387 388
		return -EINVAL;

389
	spin_lock(&fs_info->super_lock);
390 391
	memset(fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE);
	memcpy(fs_info->super_copy->label, buf, p_len);
392
	spin_unlock(&fs_info->super_lock);
J
Jeff Mahoney 已提交
393

394 395 396 397 398
	/*
	 * We don't want to do full transaction commit from inside sysfs
	 */
	btrfs_set_pending(fs_info, COMMIT);
	wake_up_process(fs_info->transaction_kthread);
J
Jeff Mahoney 已提交
399

400
	return len;
J
Jeff Mahoney 已提交
401
}
402
BTRFS_ATTR_RW(label, btrfs_label_show, btrfs_label_store);
J
Jeff Mahoney 已提交
403

404 405 406 407 408 409 410 411
static ssize_t btrfs_nodesize_show(struct kobject *kobj,
				struct kobj_attribute *a, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);

	return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->nodesize);
}

412
BTRFS_ATTR(nodesize, btrfs_nodesize_show);
413 414 415 416 417 418 419 420 421

static ssize_t btrfs_sectorsize_show(struct kobject *kobj,
				struct kobj_attribute *a, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);

	return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
}

422
BTRFS_ATTR(sectorsize, btrfs_sectorsize_show);
423 424 425 426 427 428 429 430 431

static ssize_t btrfs_clone_alignment_show(struct kobject *kobj,
				struct kobj_attribute *a, char *buf)
{
	struct btrfs_fs_info *fs_info = to_fs_info(kobj);

	return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
}

432
BTRFS_ATTR(clone_alignment, btrfs_clone_alignment_show);
433

434
static const struct attribute *btrfs_attrs[] = {
J
Jeff Mahoney 已提交
435
	BTRFS_ATTR_PTR(label),
436 437 438
	BTRFS_ATTR_PTR(nodesize),
	BTRFS_ATTR_PTR(sectorsize),
	BTRFS_ATTR_PTR(clone_alignment),
J
Jeff Mahoney 已提交
439 440 441
	NULL,
};

442
static void btrfs_release_fsid_kobj(struct kobject *kobj)
443
{
444
	struct btrfs_fs_devices *fs_devs = to_fs_devs(kobj);
445

446
	memset(&fs_devs->fsid_kobj, 0, sizeof(struct kobject));
447
	complete(&fs_devs->kobj_unregister);
448 449 450 451
}

static struct kobj_type btrfs_ktype = {
	.sysfs_ops	= &kobj_sysfs_ops,
452
	.release	= btrfs_release_fsid_kobj,
453 454
};

455 456 457 458
static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj)
{
	if (kobj->ktype != &btrfs_ktype)
		return NULL;
459
	return container_of(kobj, struct btrfs_fs_devices, fsid_kobj);
460 461
}

462 463 464 465
static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj)
{
	if (kobj->ktype != &btrfs_ktype)
		return NULL;
466
	return to_fs_devs(kobj)->fs_info;
467
}
468

469 470 471 472
#define NUM_FEATURE_BITS 64
static char btrfs_unknown_feature_names[3][NUM_FEATURE_BITS][13];
static struct btrfs_feature_attr btrfs_feature_attrs[3][NUM_FEATURE_BITS];

473
static const u64 supported_feature_masks[3] = {
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
	[FEAT_COMPAT]    = BTRFS_FEATURE_COMPAT_SUPP,
	[FEAT_COMPAT_RO] = BTRFS_FEATURE_COMPAT_RO_SUPP,
	[FEAT_INCOMPAT]  = BTRFS_FEATURE_INCOMPAT_SUPP,
};

static int addrm_unknown_feature_attrs(struct btrfs_fs_info *fs_info, bool add)
{
	int set;

	for (set = 0; set < FEAT_MAX; set++) {
		int i;
		struct attribute *attrs[2];
		struct attribute_group agroup = {
			.name = "features",
			.attrs = attrs,
		};
		u64 features = get_features(fs_info, set);
		features &= ~supported_feature_masks[set];

		if (!features)
			continue;

		attrs[1] = NULL;
		for (i = 0; i < NUM_FEATURE_BITS; i++) {
			struct btrfs_feature_attr *fa;

			if (!(features & (1ULL << i)))
				continue;

			fa = &btrfs_feature_attrs[set][i];
			attrs[0] = &fa->kobj_attr.attr;
			if (add) {
				int ret;
507
				ret = sysfs_merge_group(&fs_info->fs_devices->fsid_kobj,
508 509 510 511
							&agroup);
				if (ret)
					return ret;
			} else
512
				sysfs_unmerge_group(&fs_info->fs_devices->fsid_kobj,
513 514 515 516 517 518 519
						    &agroup);
		}

	}
	return 0;
}

520
static void __btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs)
521
{
522 523 524 525
	if (fs_devs->device_dir_kobj) {
		kobject_del(fs_devs->device_dir_kobj);
		kobject_put(fs_devs->device_dir_kobj);
		fs_devs->device_dir_kobj = NULL;
526 527
	}

528 529 530
	if (fs_devs->fsid_kobj.state_initialized) {
		kobject_del(&fs_devs->fsid_kobj);
		kobject_put(&fs_devs->fsid_kobj);
531 532
		wait_for_completion(&fs_devs->kobj_unregister);
	}
533 534
}

535
/* when fs_devs is NULL it will remove all fsid kobject */
536
void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs)
537 538 539 540 541 542 543 544 545 546 547 548 549
{
	struct list_head *fs_uuids = btrfs_get_fs_uuids();

	if (fs_devs) {
		__btrfs_sysfs_remove_fsid(fs_devs);
		return;
	}

	list_for_each_entry(fs_devs, fs_uuids, list) {
		__btrfs_sysfs_remove_fsid(fs_devs);
	}
}

550
void btrfs_sysfs_remove_mounted(struct btrfs_fs_info *fs_info)
551
{
552 553
	btrfs_reset_fs_info_ptr(fs_info);

554 555 556 557 558 559
	if (fs_info->space_info_kobj) {
		sysfs_remove_files(fs_info->space_info_kobj, allocation_attrs);
		kobject_del(fs_info->space_info_kobj);
		kobject_put(fs_info->space_info_kobj);
	}
	addrm_unknown_feature_attrs(fs_info, false);
560 561
	sysfs_remove_group(&fs_info->fs_devices->fsid_kobj, &btrfs_feature_attr_group);
	sysfs_remove_files(&fs_info->fs_devices->fsid_kobj, btrfs_attrs);
562
	btrfs_sysfs_rm_device_link(fs_info->fs_devices, NULL);
563 564
}

565 566 567 568 569 570
const char * const btrfs_feature_set_names[3] = {
	[FEAT_COMPAT]	 = "compat",
	[FEAT_COMPAT_RO] = "compat_ro",
	[FEAT_INCOMPAT]	 = "incompat",
};

571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags)
{
	size_t bufsize = 4096; /* safe max, 64 names * 64 bytes */
	int len = 0;
	int i;
	char *str;

	str = kmalloc(bufsize, GFP_KERNEL);
	if (!str)
		return str;

	for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
		const char *name;

		if (!(flags & (1ULL << i)))
			continue;

		name = btrfs_feature_attrs[set][i].kobj_attr.attr.name;
		len += snprintf(str + len, bufsize - len, "%s%s",
				len ? "," : "", name);
	}

	return str;
}

596 597 598 599 600 601 602 603 604 605
static void init_feature_attrs(void)
{
	struct btrfs_feature_attr *fa;
	int set, i;

	BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names) !=
		     ARRAY_SIZE(btrfs_feature_attrs));
	BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names[0]) !=
		     ARRAY_SIZE(btrfs_feature_attrs[0]));

606 607 608 609
	memset(btrfs_feature_attrs, 0, sizeof(btrfs_feature_attrs));
	memset(btrfs_unknown_feature_names, 0,
	       sizeof(btrfs_unknown_feature_names));

610 611 612
	for (i = 0; btrfs_supported_feature_attrs[i]; i++) {
		struct btrfs_feature_attr *sfa;
		struct attribute *a = btrfs_supported_feature_attrs[i];
613
		int bit;
614
		sfa = attr_to_btrfs_feature_attr(a);
615 616
		bit = ilog2(sfa->feature_bit);
		fa = &btrfs_feature_attrs[sfa->feature_set][bit];
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639

		fa->kobj_attr.attr.name = sfa->kobj_attr.attr.name;
	}

	for (set = 0; set < FEAT_MAX; set++) {
		for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
			char *name = btrfs_unknown_feature_names[set][i];
			fa = &btrfs_feature_attrs[set][i];

			if (fa->kobj_attr.attr.name)
				continue;

			snprintf(name, 13, "%s:%u",
				 btrfs_feature_set_names[set], i);

			fa->kobj_attr.attr.name = name;
			fa->kobj_attr.attr.mode = S_IRUGO;
			fa->feature_set = set;
			fa->feature_bit = 1ULL << i;
		}
	}
}

640 641
/* when one_device is NULL, it removes all device links */

642
int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices *fs_devices,
643 644 645 646 647
		struct btrfs_device *one_device)
{
	struct hd_struct *disk;
	struct kobject *disk_kobj;

648
	if (!fs_devices->device_dir_kobj)
649 650
		return -EINVAL;

651
	if (one_device && one_device->bdev) {
652 653 654
		disk = one_device->bdev->bd_part;
		disk_kobj = &part_to_dev(disk)->kobj;

655
		sysfs_remove_link(fs_devices->device_dir_kobj,
656 657 658
						disk_kobj->name);
	}

659 660 661 662
	if (one_device)
		return 0;

	list_for_each_entry(one_device,
663
			&fs_devices->devices, dev_list) {
664 665 666 667 668
		if (!one_device->bdev)
			continue;
		disk = one_device->bdev->bd_part;
		disk_kobj = &part_to_dev(disk)->kobj;

669
		sysfs_remove_link(fs_devices->device_dir_kobj,
670 671 672
						disk_kobj->name);
	}

673 674 675
	return 0;
}

676
int btrfs_sysfs_add_device(struct btrfs_fs_devices *fs_devs)
677
{
678 679
	if (!fs_devs->device_dir_kobj)
		fs_devs->device_dir_kobj = kobject_create_and_add("devices",
680
						&fs_devs->fsid_kobj);
681

682
	if (!fs_devs->device_dir_kobj)
683 684
		return -ENOMEM;

685 686 687
	return 0;
}

688
int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices,
689
				struct btrfs_device *one_device)
690 691 692 693
{
	int error = 0;
	struct btrfs_device *dev;

694
	list_for_each_entry(dev, &fs_devices->devices, dev_list) {
695 696 697 698 699 700
		struct hd_struct *disk;
		struct kobject *disk_kobj;

		if (!dev->bdev)
			continue;

701 702 703
		if (one_device && one_device != dev)
			continue;

704 705
		disk = dev->bdev->bd_part;
		disk_kobj = &part_to_dev(disk)->kobj;
706

707
		error = sysfs_create_link(fs_devices->device_dir_kobj,
708 709 710 711 712 713 714 715
					  disk_kobj, disk_kobj->name);
		if (error)
			break;
	}

	return error;
}

716 717 718
/* /sys/fs/btrfs/ entry */
static struct kset *btrfs_kset;

719 720 721 722 723 724
/* /sys/kernel/debug/btrfs */
static struct dentry *btrfs_debugfs_root_dentry;

/* Debugging tunables and exported data */
u64 btrfs_debugfs_test;

725 726 727 728
/*
 * Can be called by the device discovery thread.
 * And parent can be specified for seed device
 */
729
int btrfs_sysfs_add_fsid(struct btrfs_fs_devices *fs_devs,
730
				struct kobject *parent)
731 732 733
{
	int error;

734
	init_completion(&fs_devs->kobj_unregister);
735 736
	fs_devs->fsid_kobj.kset = btrfs_kset;
	error = kobject_init_and_add(&fs_devs->fsid_kobj,
737
				&btrfs_ktype, parent, "%pU", fs_devs->fsid);
738 739 740
	return error;
}

741
int btrfs_sysfs_add_mounted(struct btrfs_fs_info *fs_info)
742 743
{
	int error;
744
	struct btrfs_fs_devices *fs_devs = fs_info->fs_devices;
745
	struct kobject *fsid_kobj = &fs_devs->fsid_kobj;
746

747 748
	btrfs_set_fs_info_ptr(fs_info);

749
	error = btrfs_sysfs_add_device_link(fs_devs, NULL);
750
	if (error)
751 752
		return error;

753
	error = sysfs_create_files(fsid_kobj, btrfs_attrs);
754
	if (error) {
755
		btrfs_sysfs_rm_device_link(fs_devs, NULL);
756 757
		return error;
	}
758

759
	error = sysfs_create_group(fsid_kobj,
760 761 762 763
				   &btrfs_feature_attr_group);
	if (error)
		goto failure;

764
	error = addrm_unknown_feature_attrs(fs_info, true);
765 766 767
	if (error)
		goto failure;

768
	fs_info->space_info_kobj = kobject_create_and_add("allocation",
769
						  fsid_kobj);
770 771 772 773 774 775 776 777 778
	if (!fs_info->space_info_kobj) {
		error = -ENOMEM;
		goto failure;
	}

	error = sysfs_create_files(fs_info->space_info_kobj, allocation_attrs);
	if (error)
		goto failure;

779 780
	return 0;
failure:
781
	btrfs_sysfs_remove_mounted(fs_info);
782 783 784
	return error;
}

785 786 787 788 789 790 791 792 793 794 795 796 797
static int btrfs_init_debugfs(void)
{
#ifdef CONFIG_DEBUG_FS
	btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL);
	if (!btrfs_debugfs_root_dentry)
		return -ENOMEM;

	debugfs_create_u64("test", S_IRUGO | S_IWUGO, btrfs_debugfs_root_dentry,
			&btrfs_debugfs_test);
#endif
	return 0;
}

C
Christoph Hellwig 已提交
798
int btrfs_init_sysfs(void)
799
{
800
	int ret;
801

802 803 804
	btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj);
	if (!btrfs_kset)
		return -ENOMEM;
805

806 807
	ret = btrfs_init_debugfs();
	if (ret)
808
		goto out1;
809

810
	init_feature_attrs();
811
	ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
812 813 814 815 816 817 818 819
	if (ret)
		goto out2;

	return 0;
out2:
	debugfs_remove_recursive(btrfs_debugfs_root_dentry);
out1:
	kset_unregister(btrfs_kset);
820

821
	return ret;
822 823
}

C
Christoph Hellwig 已提交
824
void btrfs_exit_sysfs(void)
825
{
826
	sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
827
	kset_unregister(btrfs_kset);
828
	debugfs_remove_recursive(btrfs_debugfs_root_dentry);
829
}
830