blob: 83c0c5d5368bcfd7d75b8c40d943dec12c73e542 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Josef Bacik58176a92007-08-29 15:47:34 -040019#include <linux/sched.h>
20#include <linux/slab.h>
21#include <linux/spinlock.h>
22#include <linux/completion.h>
23#include <linux/buffer_head.h>
Josef Bacik58176a92007-08-29 15:47:34 -040024#include <linux/kobject.h>
Jeff Mahoney79da4fa2013-11-01 13:07:00 -040025#include <linux/bug.h>
Jeff Mahoney29e5be22013-11-01 13:07:05 -040026#include <linux/genhd.h>
David Sterba1bae3092014-02-05 15:36:18 +010027#include <linux/debugfs.h>
Josef Bacik58176a92007-08-29 15:47:34 -040028
Chris Masonbae45de2007-04-04 21:22:22 -040029#include "ctree.h"
30#include "disk-io.h"
31#include "transaction.h"
Jeff Mahoney079b72b2013-11-01 13:06:57 -040032#include "sysfs.h"
Jeff Mahoney29e5be22013-11-01 13:07:05 -040033#include "volumes.h"
Jeff Mahoney079b72b2013-11-01 13:06:57 -040034
Jeff Mahoney510d7362013-11-01 13:06:59 -040035static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040036
Jeff Mahoney510d7362013-11-01 13:06:59 -040037static u64 get_features(struct btrfs_fs_info *fs_info,
38 enum btrfs_feature_set set)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040039{
Jeff Mahoney510d7362013-11-01 13:06:59 -040040 struct btrfs_super_block *disk_super = fs_info->super_copy;
41 if (set == FEAT_COMPAT)
42 return btrfs_super_compat_flags(disk_super);
43 else if (set == FEAT_COMPAT_RO)
44 return btrfs_super_compat_ro_flags(disk_super);
45 else
46 return btrfs_super_incompat_flags(disk_super);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040047}
48
Jeff Mahoneyba631942013-11-01 13:07:01 -040049static void set_features(struct btrfs_fs_info *fs_info,
50 enum btrfs_feature_set set, u64 features)
51{
52 struct btrfs_super_block *disk_super = fs_info->super_copy;
53 if (set == FEAT_COMPAT)
54 btrfs_set_super_compat_flags(disk_super, features);
55 else if (set == FEAT_COMPAT_RO)
56 btrfs_set_super_compat_ro_flags(disk_super, features);
57 else
58 btrfs_set_super_incompat_flags(disk_super, features);
59}
60
61static int can_modify_feature(struct btrfs_feature_attr *fa)
62{
63 int val = 0;
64 u64 set, clear;
65 switch (fa->feature_set) {
66 case FEAT_COMPAT:
67 set = BTRFS_FEATURE_COMPAT_SAFE_SET;
68 clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
69 break;
70 case FEAT_COMPAT_RO:
71 set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
72 clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
73 break;
74 case FEAT_INCOMPAT:
75 set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
76 clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
77 break;
78 default:
David Sterbacc37bb02013-11-19 13:36:21 +010079 printk(KERN_WARNING "btrfs: sysfs: unknown feature set %d\n",
80 fa->feature_set);
81 return 0;
Jeff Mahoneyba631942013-11-01 13:07:01 -040082 }
83
84 if (set & fa->feature_bit)
85 val |= 1;
86 if (clear & fa->feature_bit)
87 val |= 2;
88
89 return val;
90}
91
Jeff Mahoney079b72b2013-11-01 13:06:57 -040092static ssize_t btrfs_feature_attr_show(struct kobject *kobj,
93 struct kobj_attribute *a, char *buf)
94{
Jeff Mahoney510d7362013-11-01 13:06:59 -040095 int val = 0;
96 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Jeff Mahoneyba631942013-11-01 13:07:01 -040097 struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
Jeff Mahoney510d7362013-11-01 13:06:59 -040098 if (fs_info) {
Jeff Mahoney510d7362013-11-01 13:06:59 -040099 u64 features = get_features(fs_info, fa->feature_set);
100 if (features & fa->feature_bit)
101 val = 1;
Jeff Mahoneyba631942013-11-01 13:07:01 -0400102 } else
103 val = can_modify_feature(fa);
Jeff Mahoney510d7362013-11-01 13:06:59 -0400104
105 return snprintf(buf, PAGE_SIZE, "%d\n", val);
106}
107
Jeff Mahoneyba631942013-11-01 13:07:01 -0400108static ssize_t btrfs_feature_attr_store(struct kobject *kobj,
109 struct kobj_attribute *a,
110 const char *buf, size_t count)
111{
112 struct btrfs_fs_info *fs_info;
113 struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
Jeff Mahoneyba631942013-11-01 13:07:01 -0400114 u64 features, set, clear;
115 unsigned long val;
116 int ret;
117
118 fs_info = to_fs_info(kobj);
119 if (!fs_info)
120 return -EPERM;
121
122 ret = kstrtoul(skip_spaces(buf), 0, &val);
123 if (ret)
124 return ret;
125
126 if (fa->feature_set == FEAT_COMPAT) {
127 set = BTRFS_FEATURE_COMPAT_SAFE_SET;
128 clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
129 } else if (fa->feature_set == FEAT_COMPAT_RO) {
130 set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
131 clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
132 } else {
133 set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
134 clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
135 }
136
137 features = get_features(fs_info, fa->feature_set);
138
139 /* Nothing to do */
140 if ((val && (features & fa->feature_bit)) ||
141 (!val && !(features & fa->feature_bit)))
142 return count;
143
144 if ((val && !(set & fa->feature_bit)) ||
145 (!val && !(clear & fa->feature_bit))) {
146 btrfs_info(fs_info,
147 "%sabling feature %s on mounted fs is not supported.",
148 val ? "En" : "Dis", fa->kobj_attr.attr.name);
149 return -EPERM;
150 }
151
152 btrfs_info(fs_info, "%s %s feature flag",
153 val ? "Setting" : "Clearing", fa->kobj_attr.attr.name);
154
Jeff Mahoneyba631942013-11-01 13:07:01 -0400155 spin_lock(&fs_info->super_lock);
156 features = get_features(fs_info, fa->feature_set);
157 if (val)
158 features |= fa->feature_bit;
159 else
160 features &= ~fa->feature_bit;
161 set_features(fs_info, fa->feature_set, features);
162 spin_unlock(&fs_info->super_lock);
163
David Sterba0eae2742014-11-12 14:22:21 +0100164 /*
165 * We don't want to do full transaction commit from inside sysfs
166 */
167 btrfs_set_pending(fs_info, COMMIT);
168 wake_up_process(fs_info->transaction_kthread);
Jeff Mahoneyba631942013-11-01 13:07:01 -0400169
170 return count;
171}
172
Jeff Mahoney510d7362013-11-01 13:06:59 -0400173static umode_t btrfs_feature_visible(struct kobject *kobj,
174 struct attribute *attr, int unused)
175{
176 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
177 umode_t mode = attr->mode;
178
179 if (fs_info) {
180 struct btrfs_feature_attr *fa;
181 u64 features;
182
183 fa = attr_to_btrfs_feature_attr(attr);
184 features = get_features(fs_info, fa->feature_set);
185
Jeff Mahoneyba631942013-11-01 13:07:01 -0400186 if (can_modify_feature(fa))
187 mode |= S_IWUSR;
188 else if (!(features & fa->feature_bit))
Jeff Mahoney510d7362013-11-01 13:06:59 -0400189 mode = 0;
190 }
191
192 return mode;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400193}
194
195BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref, MIXED_BACKREF);
196BTRFS_FEAT_ATTR_INCOMPAT(default_subvol, DEFAULT_SUBVOL);
197BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups, MIXED_GROUPS);
198BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo, COMPRESS_LZO);
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400199BTRFS_FEAT_ATTR_INCOMPAT(big_metadata, BIG_METADATA);
200BTRFS_FEAT_ATTR_INCOMPAT(extended_iref, EXTENDED_IREF);
201BTRFS_FEAT_ATTR_INCOMPAT(raid56, RAID56);
202BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata, SKINNY_METADATA);
David Sterbac736c092014-01-21 18:56:09 +0100203BTRFS_FEAT_ATTR_INCOMPAT(no_holes, NO_HOLES);
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400204
205static struct attribute *btrfs_supported_feature_attrs[] = {
206 BTRFS_FEAT_ATTR_PTR(mixed_backref),
207 BTRFS_FEAT_ATTR_PTR(default_subvol),
208 BTRFS_FEAT_ATTR_PTR(mixed_groups),
209 BTRFS_FEAT_ATTR_PTR(compress_lzo),
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400210 BTRFS_FEAT_ATTR_PTR(big_metadata),
211 BTRFS_FEAT_ATTR_PTR(extended_iref),
212 BTRFS_FEAT_ATTR_PTR(raid56),
213 BTRFS_FEAT_ATTR_PTR(skinny_metadata),
David Sterbac736c092014-01-21 18:56:09 +0100214 BTRFS_FEAT_ATTR_PTR(no_holes),
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400215 NULL
216};
217
218static const struct attribute_group btrfs_feature_attr_group = {
219 .name = "features",
Jeff Mahoney510d7362013-11-01 13:06:59 -0400220 .is_visible = btrfs_feature_visible,
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400221 .attrs = btrfs_supported_feature_attrs,
222};
Josef Bacik58176a92007-08-29 15:47:34 -0400223
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400224static ssize_t btrfs_show_u64(u64 *value_ptr, spinlock_t *lock, char *buf)
225{
226 u64 val;
227 if (lock)
228 spin_lock(lock);
229 val = *value_ptr;
230 if (lock)
231 spin_unlock(lock);
232 return snprintf(buf, PAGE_SIZE, "%llu\n", val);
233}
234
235static ssize_t global_rsv_size_show(struct kobject *kobj,
236 struct kobj_attribute *ka, char *buf)
237{
238 struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
239 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
240 return btrfs_show_u64(&block_rsv->size, &block_rsv->lock, buf);
241}
Anand Jain98b3d382014-07-30 20:04:08 +0800242BTRFS_ATTR(global_rsv_size, global_rsv_size_show);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400243
244static ssize_t global_rsv_reserved_show(struct kobject *kobj,
245 struct kobj_attribute *a, char *buf)
246{
247 struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
248 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
249 return btrfs_show_u64(&block_rsv->reserved, &block_rsv->lock, buf);
250}
Anand Jain98b3d382014-07-30 20:04:08 +0800251BTRFS_ATTR(global_rsv_reserved, global_rsv_reserved_show);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400252
253#define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj)
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400254#define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400255
256static ssize_t raid_bytes_show(struct kobject *kobj,
257 struct kobj_attribute *attr, char *buf);
258BTRFS_RAID_ATTR(total_bytes, raid_bytes_show);
259BTRFS_RAID_ATTR(used_bytes, raid_bytes_show);
260
261static ssize_t raid_bytes_show(struct kobject *kobj,
262 struct kobj_attribute *attr, char *buf)
263
264{
265 struct btrfs_space_info *sinfo = to_space_info(kobj->parent);
266 struct btrfs_block_group_cache *block_group;
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400267 int index = to_raid_kobj(kobj)->raid_type;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400268 u64 val = 0;
269
270 down_read(&sinfo->groups_sem);
271 list_for_each_entry(block_group, &sinfo->block_groups[index], list) {
272 if (&attr->attr == BTRFS_RAID_ATTR_PTR(total_bytes))
273 val += block_group->key.offset;
274 else
275 val += btrfs_block_group_used(&block_group->item);
276 }
277 up_read(&sinfo->groups_sem);
278 return snprintf(buf, PAGE_SIZE, "%llu\n", val);
279}
280
281static struct attribute *raid_attributes[] = {
282 BTRFS_RAID_ATTR_PTR(total_bytes),
283 BTRFS_RAID_ATTR_PTR(used_bytes),
284 NULL
285};
286
287static void release_raid_kobj(struct kobject *kobj)
288{
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400289 kfree(to_raid_kobj(kobj));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400290}
291
292struct kobj_type btrfs_raid_ktype = {
293 .sysfs_ops = &kobj_sysfs_ops,
294 .release = release_raid_kobj,
295 .default_attrs = raid_attributes,
296};
297
298#define SPACE_INFO_ATTR(field) \
299static ssize_t btrfs_space_info_show_##field(struct kobject *kobj, \
300 struct kobj_attribute *a, \
301 char *buf) \
302{ \
303 struct btrfs_space_info *sinfo = to_space_info(kobj); \
304 return btrfs_show_u64(&sinfo->field, &sinfo->lock, buf); \
305} \
Anand Jain98b3d382014-07-30 20:04:08 +0800306BTRFS_ATTR(field, btrfs_space_info_show_##field)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400307
308static ssize_t btrfs_space_info_show_total_bytes_pinned(struct kobject *kobj,
309 struct kobj_attribute *a,
310 char *buf)
311{
312 struct btrfs_space_info *sinfo = to_space_info(kobj);
313 s64 val = percpu_counter_sum(&sinfo->total_bytes_pinned);
314 return snprintf(buf, PAGE_SIZE, "%lld\n", val);
315}
316
317SPACE_INFO_ATTR(flags);
318SPACE_INFO_ATTR(total_bytes);
319SPACE_INFO_ATTR(bytes_used);
320SPACE_INFO_ATTR(bytes_pinned);
321SPACE_INFO_ATTR(bytes_reserved);
322SPACE_INFO_ATTR(bytes_may_use);
323SPACE_INFO_ATTR(disk_used);
324SPACE_INFO_ATTR(disk_total);
Anand Jain98b3d382014-07-30 20:04:08 +0800325BTRFS_ATTR(total_bytes_pinned, btrfs_space_info_show_total_bytes_pinned);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400326
327static struct attribute *space_info_attrs[] = {
328 BTRFS_ATTR_PTR(flags),
329 BTRFS_ATTR_PTR(total_bytes),
330 BTRFS_ATTR_PTR(bytes_used),
331 BTRFS_ATTR_PTR(bytes_pinned),
332 BTRFS_ATTR_PTR(bytes_reserved),
333 BTRFS_ATTR_PTR(bytes_may_use),
334 BTRFS_ATTR_PTR(disk_used),
335 BTRFS_ATTR_PTR(disk_total),
336 BTRFS_ATTR_PTR(total_bytes_pinned),
337 NULL,
338};
339
340static void space_info_release(struct kobject *kobj)
341{
342 struct btrfs_space_info *sinfo = to_space_info(kobj);
343 percpu_counter_destroy(&sinfo->total_bytes_pinned);
344 kfree(sinfo);
345}
346
347struct kobj_type space_info_ktype = {
348 .sysfs_ops = &kobj_sysfs_ops,
349 .release = space_info_release,
350 .default_attrs = space_info_attrs,
351};
352
353static const struct attribute *allocation_attrs[] = {
354 BTRFS_ATTR_PTR(global_rsv_reserved),
355 BTRFS_ATTR_PTR(global_rsv_size),
356 NULL,
357};
358
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400359static ssize_t btrfs_label_show(struct kobject *kobj,
360 struct kobj_attribute *a, char *buf)
361{
362 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900363 char *label = fs_info->super_copy->label;
364 return snprintf(buf, PAGE_SIZE, label[0] ? "%s\n" : "%s", label);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400365}
366
367static ssize_t btrfs_label_store(struct kobject *kobj,
368 struct kobj_attribute *a,
369 const char *buf, size_t len)
370{
371 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900372 size_t p_len;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400373
Anand Jain79aec2b2014-07-30 20:04:10 +0800374 if (fs_info->sb->s_flags & MS_RDONLY)
375 return -EROFS;
376
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900377 /*
378 * p_len is the len until the first occurrence of either
379 * '\n' or '\0'
380 */
381 p_len = strcspn(buf, "\n");
382
383 if (p_len >= BTRFS_LABEL_SIZE)
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400384 return -EINVAL;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400385
David Sterbaa6f69dc2014-05-30 19:29:05 +0200386 spin_lock(&fs_info->super_lock);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900387 memset(fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE);
388 memcpy(fs_info->super_copy->label, buf, p_len);
David Sterbaa6f69dc2014-05-30 19:29:05 +0200389 spin_unlock(&fs_info->super_lock);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400390
David Sterbaa6f69dc2014-05-30 19:29:05 +0200391 /*
392 * We don't want to do full transaction commit from inside sysfs
393 */
394 btrfs_set_pending(fs_info, COMMIT);
395 wake_up_process(fs_info->transaction_kthread);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400396
David Sterbaa6f69dc2014-05-30 19:29:05 +0200397 return len;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400398}
Anand Jain20ee0822014-07-30 20:04:09 +0800399BTRFS_ATTR_RW(label, btrfs_label_show, btrfs_label_store);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400400
David Sterbadf935892014-05-07 18:17:16 +0200401static ssize_t btrfs_nodesize_show(struct kobject *kobj,
402 struct kobj_attribute *a, char *buf)
403{
404 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
405
406 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->nodesize);
407}
408
Anand Jain98b3d382014-07-30 20:04:08 +0800409BTRFS_ATTR(nodesize, btrfs_nodesize_show);
David Sterbadf935892014-05-07 18:17:16 +0200410
411static ssize_t btrfs_sectorsize_show(struct kobject *kobj,
412 struct kobj_attribute *a, char *buf)
413{
414 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
415
416 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
417}
418
Anand Jain98b3d382014-07-30 20:04:08 +0800419BTRFS_ATTR(sectorsize, btrfs_sectorsize_show);
David Sterbadf935892014-05-07 18:17:16 +0200420
421static ssize_t btrfs_clone_alignment_show(struct kobject *kobj,
422 struct kobj_attribute *a, char *buf)
423{
424 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
425
426 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
427}
428
Anand Jain98b3d382014-07-30 20:04:08 +0800429BTRFS_ATTR(clone_alignment, btrfs_clone_alignment_show);
David Sterbadf935892014-05-07 18:17:16 +0200430
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400431static struct attribute *btrfs_attrs[] = {
432 BTRFS_ATTR_PTR(label),
David Sterbadf935892014-05-07 18:17:16 +0200433 BTRFS_ATTR_PTR(nodesize),
434 BTRFS_ATTR_PTR(sectorsize),
435 BTRFS_ATTR_PTR(clone_alignment),
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400436 NULL,
437};
438
Jeff Mahoney510d7362013-11-01 13:06:59 -0400439static void btrfs_release_super_kobj(struct kobject *kobj)
440{
441 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Anand Jain248d2002015-03-10 06:38:19 +0800442
443 memset(&fs_info->super_kobj, 0, sizeof(struct kobject));
Jeff Mahoney510d7362013-11-01 13:06:59 -0400444 complete(&fs_info->kobj_unregister);
445}
446
447static struct kobj_type btrfs_ktype = {
448 .sysfs_ops = &kobj_sysfs_ops,
449 .release = btrfs_release_super_kobj,
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400450 .default_attrs = btrfs_attrs,
Jeff Mahoney510d7362013-11-01 13:06:59 -0400451};
452
453static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj)
454{
455 if (kobj->ktype != &btrfs_ktype)
456 return NULL;
457 return container_of(kobj, struct btrfs_fs_info, super_kobj);
458}
Josef Bacik58176a92007-08-29 15:47:34 -0400459
Jeff Mahoneye453d982013-11-21 10:37:16 -0500460#define NUM_FEATURE_BITS 64
461static char btrfs_unknown_feature_names[3][NUM_FEATURE_BITS][13];
462static struct btrfs_feature_attr btrfs_feature_attrs[3][NUM_FEATURE_BITS];
463
David Sterbae8c9f182015-01-02 18:23:10 +0100464static const u64 supported_feature_masks[3] = {
Jeff Mahoneye453d982013-11-21 10:37:16 -0500465 [FEAT_COMPAT] = BTRFS_FEATURE_COMPAT_SUPP,
466 [FEAT_COMPAT_RO] = BTRFS_FEATURE_COMPAT_RO_SUPP,
467 [FEAT_INCOMPAT] = BTRFS_FEATURE_INCOMPAT_SUPP,
468};
469
470static int addrm_unknown_feature_attrs(struct btrfs_fs_info *fs_info, bool add)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400471{
Jeff Mahoneye453d982013-11-21 10:37:16 -0500472 int set;
473
474 for (set = 0; set < FEAT_MAX; set++) {
475 int i;
476 struct attribute *attrs[2];
477 struct attribute_group agroup = {
478 .name = "features",
479 .attrs = attrs,
480 };
481 u64 features = get_features(fs_info, set);
482 features &= ~supported_feature_masks[set];
483
484 if (!features)
485 continue;
486
487 attrs[1] = NULL;
488 for (i = 0; i < NUM_FEATURE_BITS; i++) {
489 struct btrfs_feature_attr *fa;
490
491 if (!(features & (1ULL << i)))
492 continue;
493
494 fa = &btrfs_feature_attrs[set][i];
495 attrs[0] = &fa->kobj_attr.attr;
496 if (add) {
497 int ret;
498 ret = sysfs_merge_group(&fs_info->super_kobj,
499 &agroup);
500 if (ret)
501 return ret;
502 } else
503 sysfs_unmerge_group(&fs_info->super_kobj,
504 &agroup);
505 }
506
507 }
508 return 0;
509}
510
Anand Jain3a08f3b2015-03-10 06:38:25 +0800511static void btrfs_sysfs_remove_fsid(struct btrfs_fs_info *fs_info)
Jeff Mahoneye453d982013-11-21 10:37:16 -0500512{
Anand Jainaaf13302015-03-10 06:38:24 +0800513 if (fs_info->device_dir_kobj) {
514 btrfs_kobj_rm_device(fs_info, NULL);
515 kobject_del(fs_info->device_dir_kobj);
516 kobject_put(fs_info->device_dir_kobj);
517 fs_info->device_dir_kobj = NULL;
518 }
519
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400520 kobject_del(&fs_info->super_kobj);
521 kobject_put(&fs_info->super_kobj);
522 wait_for_completion(&fs_info->kobj_unregister);
523}
524
Jeff Mahoneye453d982013-11-21 10:37:16 -0500525void btrfs_sysfs_remove_one(struct btrfs_fs_info *fs_info)
526{
527 if (fs_info->space_info_kobj) {
528 sysfs_remove_files(fs_info->space_info_kobj, allocation_attrs);
529 kobject_del(fs_info->space_info_kobj);
530 kobject_put(fs_info->space_info_kobj);
531 }
Jeff Mahoneye453d982013-11-21 10:37:16 -0500532 addrm_unknown_feature_attrs(fs_info, false);
533 sysfs_remove_group(&fs_info->super_kobj, &btrfs_feature_attr_group);
Anand Jain3a08f3b2015-03-10 06:38:25 +0800534 btrfs_sysfs_remove_fsid(fs_info);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500535}
536
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400537const char * const btrfs_feature_set_names[3] = {
538 [FEAT_COMPAT] = "compat",
539 [FEAT_COMPAT_RO] = "compat_ro",
540 [FEAT_INCOMPAT] = "incompat",
541};
542
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400543char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags)
544{
545 size_t bufsize = 4096; /* safe max, 64 names * 64 bytes */
546 int len = 0;
547 int i;
548 char *str;
549
550 str = kmalloc(bufsize, GFP_KERNEL);
551 if (!str)
552 return str;
553
554 for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
555 const char *name;
556
557 if (!(flags & (1ULL << i)))
558 continue;
559
560 name = btrfs_feature_attrs[set][i].kobj_attr.attr.name;
561 len += snprintf(str + len, bufsize - len, "%s%s",
562 len ? "," : "", name);
563 }
564
565 return str;
566}
567
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400568static void init_feature_attrs(void)
569{
570 struct btrfs_feature_attr *fa;
571 int set, i;
572
573 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names) !=
574 ARRAY_SIZE(btrfs_feature_attrs));
575 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names[0]) !=
576 ARRAY_SIZE(btrfs_feature_attrs[0]));
577
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400578 memset(btrfs_feature_attrs, 0, sizeof(btrfs_feature_attrs));
579 memset(btrfs_unknown_feature_names, 0,
580 sizeof(btrfs_unknown_feature_names));
581
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400582 for (i = 0; btrfs_supported_feature_attrs[i]; i++) {
583 struct btrfs_feature_attr *sfa;
584 struct attribute *a = btrfs_supported_feature_attrs[i];
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400585 int bit;
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400586 sfa = attr_to_btrfs_feature_attr(a);
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400587 bit = ilog2(sfa->feature_bit);
588 fa = &btrfs_feature_attrs[sfa->feature_set][bit];
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400589
590 fa->kobj_attr.attr.name = sfa->kobj_attr.attr.name;
591 }
592
593 for (set = 0; set < FEAT_MAX; set++) {
594 for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
595 char *name = btrfs_unknown_feature_names[set][i];
596 fa = &btrfs_feature_attrs[set][i];
597
598 if (fa->kobj_attr.attr.name)
599 continue;
600
601 snprintf(name, 13, "%s:%u",
602 btrfs_feature_set_names[set], i);
603
604 fa->kobj_attr.attr.name = name;
605 fa->kobj_attr.attr.mode = S_IRUGO;
606 fa->feature_set = set;
607 fa->feature_bit = 1ULL << i;
608 }
609 }
610}
611
Anand Jaine7e1aa92015-03-10 06:38:21 +0800612/* when one_device is NULL, it removes all device links */
613
Anand Jain99994cd2014-06-03 11:36:00 +0800614int btrfs_kobj_rm_device(struct btrfs_fs_info *fs_info,
615 struct btrfs_device *one_device)
616{
617 struct hd_struct *disk;
618 struct kobject *disk_kobj;
619
620 if (!fs_info->device_dir_kobj)
621 return -EINVAL;
622
Liu Bo87fa3bb2014-07-29 19:09:39 +0800623 if (one_device && one_device->bdev) {
Anand Jain99994cd2014-06-03 11:36:00 +0800624 disk = one_device->bdev->bd_part;
625 disk_kobj = &part_to_dev(disk)->kobj;
626
627 sysfs_remove_link(fs_info->device_dir_kobj,
628 disk_kobj->name);
629 }
630
Anand Jaine7e1aa92015-03-10 06:38:21 +0800631 if (one_device)
632 return 0;
633
634 list_for_each_entry(one_device,
635 &fs_info->fs_devices->devices, dev_list) {
636 if (!one_device->bdev)
637 continue;
638 disk = one_device->bdev->bd_part;
639 disk_kobj = &part_to_dev(disk)->kobj;
640
641 sysfs_remove_link(fs_info->device_dir_kobj,
642 disk_kobj->name);
643 }
644
Anand Jain99994cd2014-06-03 11:36:00 +0800645 return 0;
646}
647
Anand Jain0d393762014-06-03 11:36:01 +0800648int btrfs_kobj_add_device(struct btrfs_fs_info *fs_info,
649 struct btrfs_device *one_device)
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400650{
651 int error = 0;
652 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
653 struct btrfs_device *dev;
654
Anand Jain0d393762014-06-03 11:36:01 +0800655 if (!fs_info->device_dir_kobj)
656 fs_info->device_dir_kobj = kobject_create_and_add("devices",
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400657 &fs_info->super_kobj);
Anand Jain0d393762014-06-03 11:36:01 +0800658
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400659 if (!fs_info->device_dir_kobj)
660 return -ENOMEM;
661
662 list_for_each_entry(dev, &fs_devices->devices, dev_list) {
Anand Jainf0853812014-01-15 17:22:28 +0800663 struct hd_struct *disk;
664 struct kobject *disk_kobj;
665
666 if (!dev->bdev)
667 continue;
668
Anand Jain0d393762014-06-03 11:36:01 +0800669 if (one_device && one_device != dev)
670 continue;
671
Anand Jainf0853812014-01-15 17:22:28 +0800672 disk = dev->bdev->bd_part;
673 disk_kobj = &part_to_dev(disk)->kobj;
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400674
675 error = sysfs_create_link(fs_info->device_dir_kobj,
676 disk_kobj, disk_kobj->name);
677 if (error)
678 break;
679 }
680
681 return error;
682}
683
Jeff Mahoney510d7362013-11-01 13:06:59 -0400684/* /sys/fs/btrfs/ entry */
685static struct kset *btrfs_kset;
686
David Sterba1bae3092014-02-05 15:36:18 +0100687/* /sys/kernel/debug/btrfs */
688static struct dentry *btrfs_debugfs_root_dentry;
689
690/* Debugging tunables and exported data */
691u64 btrfs_debugfs_test;
692
Anand Jain72059212015-03-10 06:38:26 +0800693/*
694 * Can be called by the device discovery thread.
695 * And parent can be specified for seed device
696 */
697int btrfs_sysfs_add_fsid(struct btrfs_fs_info *fs_info,
698 struct kobject *parent)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400699{
700 int error;
701
702 init_completion(&fs_info->kobj_unregister);
Jeff Mahoney510d7362013-11-01 13:06:59 -0400703 fs_info->super_kobj.kset = btrfs_kset;
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400704 error = kobject_init_and_add(&fs_info->super_kobj, &btrfs_ktype, NULL,
705 "%pU", fs_info->fsid);
Anand Jain72059212015-03-10 06:38:26 +0800706 return error;
707}
708
709int btrfs_sysfs_add_one(struct btrfs_fs_info *fs_info)
710{
711 int error;
712
713 error = btrfs_sysfs_add_fsid(fs_info, NULL);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500714 if (error)
715 return error;
Jeff Mahoney510d7362013-11-01 13:06:59 -0400716
Anand Jainaaf13302015-03-10 06:38:24 +0800717 error = btrfs_kobj_add_device(fs_info, NULL);
718 if (error) {
Anand Jain3a08f3b2015-03-10 06:38:25 +0800719 btrfs_sysfs_remove_fsid(fs_info);
Anand Jainaaf13302015-03-10 06:38:24 +0800720 return error;
721 }
722
Jeff Mahoney510d7362013-11-01 13:06:59 -0400723 error = sysfs_create_group(&fs_info->super_kobj,
724 &btrfs_feature_attr_group);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500725 if (error) {
Anand Jain3a08f3b2015-03-10 06:38:25 +0800726 btrfs_sysfs_remove_fsid(fs_info);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500727 return error;
728 }
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400729
Jeff Mahoneye453d982013-11-21 10:37:16 -0500730 error = addrm_unknown_feature_attrs(fs_info, true);
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400731 if (error)
732 goto failure;
733
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400734 fs_info->space_info_kobj = kobject_create_and_add("allocation",
735 &fs_info->super_kobj);
736 if (!fs_info->space_info_kobj) {
737 error = -ENOMEM;
738 goto failure;
739 }
740
741 error = sysfs_create_files(fs_info->space_info_kobj, allocation_attrs);
742 if (error)
743 goto failure;
744
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400745 return 0;
746failure:
747 btrfs_sysfs_remove_one(fs_info);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400748 return error;
749}
750
David Sterba1bae3092014-02-05 15:36:18 +0100751static int btrfs_init_debugfs(void)
752{
753#ifdef CONFIG_DEBUG_FS
754 btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL);
755 if (!btrfs_debugfs_root_dentry)
756 return -ENOMEM;
757
758 debugfs_create_u64("test", S_IRUGO | S_IWUGO, btrfs_debugfs_root_dentry,
759 &btrfs_debugfs_test);
760#endif
761 return 0;
762}
763
Christoph Hellwigb2141072008-09-05 16:43:31 -0400764int btrfs_init_sysfs(void)
Josef Bacik58176a92007-08-29 15:47:34 -0400765{
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400766 int ret;
David Sterba1bae3092014-02-05 15:36:18 +0100767
Greg KHe3fe4e72008-02-20 14:14:16 -0500768 btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj);
769 if (!btrfs_kset)
770 return -ENOMEM;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400771
David Sterba1bae3092014-02-05 15:36:18 +0100772 ret = btrfs_init_debugfs();
773 if (ret)
Filipe Manana001a6482015-01-23 18:27:00 +0000774 goto out1;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400775
David Sterba1bae3092014-02-05 15:36:18 +0100776 init_feature_attrs();
777 ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
Filipe Manana001a6482015-01-23 18:27:00 +0000778 if (ret)
779 goto out2;
780
781 return 0;
782out2:
783 debugfs_remove_recursive(btrfs_debugfs_root_dentry);
784out1:
785 kset_unregister(btrfs_kset);
David Sterba1bae3092014-02-05 15:36:18 +0100786
787 return ret;
Josef Bacik58176a92007-08-29 15:47:34 -0400788}
789
Christoph Hellwigb2141072008-09-05 16:43:31 -0400790void btrfs_exit_sysfs(void)
Josef Bacik58176a92007-08-29 15:47:34 -0400791{
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400792 sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
Greg KHe3fe4e72008-02-20 14:14:16 -0500793 kset_unregister(btrfs_kset);
David Sterba1bae3092014-02-05 15:36:18 +0100794 debugfs_remove_recursive(btrfs_debugfs_root_dentry);
Josef Bacik58176a92007-08-29 15:47:34 -0400795}
Chris Mason55d47412008-02-20 16:02:51 -0500796