blob: 6a6bb600b1ff43375490980f4dfc46e4b16601c2 [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);
Anand Jain2e7910d2015-03-10 06:38:29 +080036static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040037
Jeff Mahoney510d7362013-11-01 13:06:59 -040038static u64 get_features(struct btrfs_fs_info *fs_info,
39 enum btrfs_feature_set set)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040040{
Jeff Mahoney510d7362013-11-01 13:06:59 -040041 struct btrfs_super_block *disk_super = fs_info->super_copy;
42 if (set == FEAT_COMPAT)
43 return btrfs_super_compat_flags(disk_super);
44 else if (set == FEAT_COMPAT_RO)
45 return btrfs_super_compat_ro_flags(disk_super);
46 else
47 return btrfs_super_incompat_flags(disk_super);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -040048}
49
Jeff Mahoneyba631942013-11-01 13:07:01 -040050static void set_features(struct btrfs_fs_info *fs_info,
51 enum btrfs_feature_set set, u64 features)
52{
53 struct btrfs_super_block *disk_super = fs_info->super_copy;
54 if (set == FEAT_COMPAT)
55 btrfs_set_super_compat_flags(disk_super, features);
56 else if (set == FEAT_COMPAT_RO)
57 btrfs_set_super_compat_ro_flags(disk_super, features);
58 else
59 btrfs_set_super_incompat_flags(disk_super, features);
60}
61
62static int can_modify_feature(struct btrfs_feature_attr *fa)
63{
64 int val = 0;
65 u64 set, clear;
66 switch (fa->feature_set) {
67 case FEAT_COMPAT:
68 set = BTRFS_FEATURE_COMPAT_SAFE_SET;
69 clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
70 break;
71 case FEAT_COMPAT_RO:
72 set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
73 clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
74 break;
75 case FEAT_INCOMPAT:
76 set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
77 clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
78 break;
79 default:
David Sterbacc37bb02013-11-19 13:36:21 +010080 printk(KERN_WARNING "btrfs: sysfs: unknown feature set %d\n",
81 fa->feature_set);
82 return 0;
Jeff Mahoneyba631942013-11-01 13:07:01 -040083 }
84
85 if (set & fa->feature_bit)
86 val |= 1;
87 if (clear & fa->feature_bit)
88 val |= 2;
89
90 return val;
91}
92
Jeff Mahoney079b72b2013-11-01 13:06:57 -040093static ssize_t btrfs_feature_attr_show(struct kobject *kobj,
94 struct kobj_attribute *a, char *buf)
95{
Jeff Mahoney510d7362013-11-01 13:06:59 -040096 int val = 0;
97 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Jeff Mahoneyba631942013-11-01 13:07:01 -040098 struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
Jeff Mahoney510d7362013-11-01 13:06:59 -040099 if (fs_info) {
Jeff Mahoney510d7362013-11-01 13:06:59 -0400100 u64 features = get_features(fs_info, fa->feature_set);
101 if (features & fa->feature_bit)
102 val = 1;
Jeff Mahoneyba631942013-11-01 13:07:01 -0400103 } else
104 val = can_modify_feature(fa);
Jeff Mahoney510d7362013-11-01 13:06:59 -0400105
106 return snprintf(buf, PAGE_SIZE, "%d\n", val);
107}
108
Jeff Mahoneyba631942013-11-01 13:07:01 -0400109static ssize_t btrfs_feature_attr_store(struct kobject *kobj,
110 struct kobj_attribute *a,
111 const char *buf, size_t count)
112{
113 struct btrfs_fs_info *fs_info;
114 struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a);
Jeff Mahoneyba631942013-11-01 13:07:01 -0400115 u64 features, set, clear;
116 unsigned long val;
117 int ret;
118
119 fs_info = to_fs_info(kobj);
120 if (!fs_info)
121 return -EPERM;
122
David Sterbaee611132015-01-23 18:43:31 +0100123 if (fs_info->sb->s_flags & MS_RDONLY)
124 return -EROFS;
125
Jeff Mahoneyba631942013-11-01 13:07:01 -0400126 ret = kstrtoul(skip_spaces(buf), 0, &val);
127 if (ret)
128 return ret;
129
130 if (fa->feature_set == FEAT_COMPAT) {
131 set = BTRFS_FEATURE_COMPAT_SAFE_SET;
132 clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR;
133 } else if (fa->feature_set == FEAT_COMPAT_RO) {
134 set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET;
135 clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR;
136 } else {
137 set = BTRFS_FEATURE_INCOMPAT_SAFE_SET;
138 clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR;
139 }
140
141 features = get_features(fs_info, fa->feature_set);
142
143 /* Nothing to do */
144 if ((val && (features & fa->feature_bit)) ||
145 (!val && !(features & fa->feature_bit)))
146 return count;
147
148 if ((val && !(set & fa->feature_bit)) ||
149 (!val && !(clear & fa->feature_bit))) {
150 btrfs_info(fs_info,
151 "%sabling feature %s on mounted fs is not supported.",
152 val ? "En" : "Dis", fa->kobj_attr.attr.name);
153 return -EPERM;
154 }
155
156 btrfs_info(fs_info, "%s %s feature flag",
157 val ? "Setting" : "Clearing", fa->kobj_attr.attr.name);
158
Jeff Mahoneyba631942013-11-01 13:07:01 -0400159 spin_lock(&fs_info->super_lock);
160 features = get_features(fs_info, fa->feature_set);
161 if (val)
162 features |= fa->feature_bit;
163 else
164 features &= ~fa->feature_bit;
165 set_features(fs_info, fa->feature_set, features);
166 spin_unlock(&fs_info->super_lock);
167
David Sterba0eae2742014-11-12 14:22:21 +0100168 /*
169 * We don't want to do full transaction commit from inside sysfs
170 */
171 btrfs_set_pending(fs_info, COMMIT);
172 wake_up_process(fs_info->transaction_kthread);
Jeff Mahoneyba631942013-11-01 13:07:01 -0400173
174 return count;
175}
176
Jeff Mahoney510d7362013-11-01 13:06:59 -0400177static umode_t btrfs_feature_visible(struct kobject *kobj,
178 struct attribute *attr, int unused)
179{
180 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
181 umode_t mode = attr->mode;
182
183 if (fs_info) {
184 struct btrfs_feature_attr *fa;
185 u64 features;
186
187 fa = attr_to_btrfs_feature_attr(attr);
188 features = get_features(fs_info, fa->feature_set);
189
Jeff Mahoneyba631942013-11-01 13:07:01 -0400190 if (can_modify_feature(fa))
191 mode |= S_IWUSR;
192 else if (!(features & fa->feature_bit))
Jeff Mahoney510d7362013-11-01 13:06:59 -0400193 mode = 0;
194 }
195
196 return mode;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400197}
198
199BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref, MIXED_BACKREF);
200BTRFS_FEAT_ATTR_INCOMPAT(default_subvol, DEFAULT_SUBVOL);
201BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups, MIXED_GROUPS);
202BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo, COMPRESS_LZO);
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400203BTRFS_FEAT_ATTR_INCOMPAT(big_metadata, BIG_METADATA);
204BTRFS_FEAT_ATTR_INCOMPAT(extended_iref, EXTENDED_IREF);
205BTRFS_FEAT_ATTR_INCOMPAT(raid56, RAID56);
206BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata, SKINNY_METADATA);
David Sterbac736c092014-01-21 18:56:09 +0100207BTRFS_FEAT_ATTR_INCOMPAT(no_holes, NO_HOLES);
David Sterba3b5bb732016-01-21 18:36:46 +0100208BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree, FREE_SPACE_TREE);
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400209
210static struct attribute *btrfs_supported_feature_attrs[] = {
211 BTRFS_FEAT_ATTR_PTR(mixed_backref),
212 BTRFS_FEAT_ATTR_PTR(default_subvol),
213 BTRFS_FEAT_ATTR_PTR(mixed_groups),
214 BTRFS_FEAT_ATTR_PTR(compress_lzo),
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400215 BTRFS_FEAT_ATTR_PTR(big_metadata),
216 BTRFS_FEAT_ATTR_PTR(extended_iref),
217 BTRFS_FEAT_ATTR_PTR(raid56),
218 BTRFS_FEAT_ATTR_PTR(skinny_metadata),
David Sterbac736c092014-01-21 18:56:09 +0100219 BTRFS_FEAT_ATTR_PTR(no_holes),
David Sterba3b5bb732016-01-21 18:36:46 +0100220 BTRFS_FEAT_ATTR_PTR(free_space_tree),
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400221 NULL
222};
223
224static const struct attribute_group btrfs_feature_attr_group = {
225 .name = "features",
Jeff Mahoney510d7362013-11-01 13:06:59 -0400226 .is_visible = btrfs_feature_visible,
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400227 .attrs = btrfs_supported_feature_attrs,
228};
Josef Bacik58176a92007-08-29 15:47:34 -0400229
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400230static ssize_t btrfs_show_u64(u64 *value_ptr, spinlock_t *lock, char *buf)
231{
232 u64 val;
233 if (lock)
234 spin_lock(lock);
235 val = *value_ptr;
236 if (lock)
237 spin_unlock(lock);
238 return snprintf(buf, PAGE_SIZE, "%llu\n", val);
239}
240
241static ssize_t global_rsv_size_show(struct kobject *kobj,
242 struct kobj_attribute *ka, char *buf)
243{
244 struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
245 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
246 return btrfs_show_u64(&block_rsv->size, &block_rsv->lock, buf);
247}
Anand Jain98b3d382014-07-30 20:04:08 +0800248BTRFS_ATTR(global_rsv_size, global_rsv_size_show);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400249
250static ssize_t global_rsv_reserved_show(struct kobject *kobj,
251 struct kobj_attribute *a, char *buf)
252{
253 struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent);
254 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
255 return btrfs_show_u64(&block_rsv->reserved, &block_rsv->lock, buf);
256}
Anand Jain98b3d382014-07-30 20:04:08 +0800257BTRFS_ATTR(global_rsv_reserved, global_rsv_reserved_show);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400258
259#define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj)
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400260#define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400261
262static ssize_t raid_bytes_show(struct kobject *kobj,
263 struct kobj_attribute *attr, char *buf);
264BTRFS_RAID_ATTR(total_bytes, raid_bytes_show);
265BTRFS_RAID_ATTR(used_bytes, raid_bytes_show);
266
267static ssize_t raid_bytes_show(struct kobject *kobj,
268 struct kobj_attribute *attr, char *buf)
269
270{
271 struct btrfs_space_info *sinfo = to_space_info(kobj->parent);
272 struct btrfs_block_group_cache *block_group;
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400273 int index = to_raid_kobj(kobj)->raid_type;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400274 u64 val = 0;
275
276 down_read(&sinfo->groups_sem);
277 list_for_each_entry(block_group, &sinfo->block_groups[index], list) {
278 if (&attr->attr == BTRFS_RAID_ATTR_PTR(total_bytes))
279 val += block_group->key.offset;
280 else
281 val += btrfs_block_group_used(&block_group->item);
282 }
283 up_read(&sinfo->groups_sem);
284 return snprintf(buf, PAGE_SIZE, "%llu\n", val);
285}
286
287static struct attribute *raid_attributes[] = {
288 BTRFS_RAID_ATTR_PTR(total_bytes),
289 BTRFS_RAID_ATTR_PTR(used_bytes),
290 NULL
291};
292
293static void release_raid_kobj(struct kobject *kobj)
294{
Jeff Mahoneyc1895442014-05-27 12:59:57 -0400295 kfree(to_raid_kobj(kobj));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400296}
297
298struct kobj_type btrfs_raid_ktype = {
299 .sysfs_ops = &kobj_sysfs_ops,
300 .release = release_raid_kobj,
301 .default_attrs = raid_attributes,
302};
303
304#define SPACE_INFO_ATTR(field) \
305static ssize_t btrfs_space_info_show_##field(struct kobject *kobj, \
306 struct kobj_attribute *a, \
307 char *buf) \
308{ \
309 struct btrfs_space_info *sinfo = to_space_info(kobj); \
310 return btrfs_show_u64(&sinfo->field, &sinfo->lock, buf); \
311} \
Anand Jain98b3d382014-07-30 20:04:08 +0800312BTRFS_ATTR(field, btrfs_space_info_show_##field)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400313
314static ssize_t btrfs_space_info_show_total_bytes_pinned(struct kobject *kobj,
315 struct kobj_attribute *a,
316 char *buf)
317{
318 struct btrfs_space_info *sinfo = to_space_info(kobj);
319 s64 val = percpu_counter_sum(&sinfo->total_bytes_pinned);
320 return snprintf(buf, PAGE_SIZE, "%lld\n", val);
321}
322
323SPACE_INFO_ATTR(flags);
324SPACE_INFO_ATTR(total_bytes);
325SPACE_INFO_ATTR(bytes_used);
326SPACE_INFO_ATTR(bytes_pinned);
327SPACE_INFO_ATTR(bytes_reserved);
328SPACE_INFO_ATTR(bytes_may_use);
329SPACE_INFO_ATTR(disk_used);
330SPACE_INFO_ATTR(disk_total);
Anand Jain98b3d382014-07-30 20:04:08 +0800331BTRFS_ATTR(total_bytes_pinned, btrfs_space_info_show_total_bytes_pinned);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400332
333static struct attribute *space_info_attrs[] = {
334 BTRFS_ATTR_PTR(flags),
335 BTRFS_ATTR_PTR(total_bytes),
336 BTRFS_ATTR_PTR(bytes_used),
337 BTRFS_ATTR_PTR(bytes_pinned),
338 BTRFS_ATTR_PTR(bytes_reserved),
339 BTRFS_ATTR_PTR(bytes_may_use),
340 BTRFS_ATTR_PTR(disk_used),
341 BTRFS_ATTR_PTR(disk_total),
342 BTRFS_ATTR_PTR(total_bytes_pinned),
343 NULL,
344};
345
346static void space_info_release(struct kobject *kobj)
347{
348 struct btrfs_space_info *sinfo = to_space_info(kobj);
349 percpu_counter_destroy(&sinfo->total_bytes_pinned);
350 kfree(sinfo);
351}
352
353struct kobj_type space_info_ktype = {
354 .sysfs_ops = &kobj_sysfs_ops,
355 .release = space_info_release,
356 .default_attrs = space_info_attrs,
357};
358
359static const struct attribute *allocation_attrs[] = {
360 BTRFS_ATTR_PTR(global_rsv_reserved),
361 BTRFS_ATTR_PTR(global_rsv_size),
362 NULL,
363};
364
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400365static ssize_t btrfs_label_show(struct kobject *kobj,
366 struct kobj_attribute *a, char *buf)
367{
368 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900369 char *label = fs_info->super_copy->label;
370 return snprintf(buf, PAGE_SIZE, label[0] ? "%s\n" : "%s", label);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400371}
372
373static ssize_t btrfs_label_store(struct kobject *kobj,
374 struct kobj_attribute *a,
375 const char *buf, size_t len)
376{
377 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900378 size_t p_len;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400379
Anand Jain79aec2b2014-07-30 20:04:10 +0800380 if (fs_info->sb->s_flags & MS_RDONLY)
381 return -EROFS;
382
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900383 /*
384 * p_len is the len until the first occurrence of either
385 * '\n' or '\0'
386 */
387 p_len = strcspn(buf, "\n");
388
389 if (p_len >= BTRFS_LABEL_SIZE)
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400390 return -EINVAL;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400391
David Sterbaa6f69dc2014-05-30 19:29:05 +0200392 spin_lock(&fs_info->super_lock);
Satoru Takeuchi48fcc3f2014-07-01 17:00:07 +0900393 memset(fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE);
394 memcpy(fs_info->super_copy->label, buf, p_len);
David Sterbaa6f69dc2014-05-30 19:29:05 +0200395 spin_unlock(&fs_info->super_lock);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400396
David Sterbaa6f69dc2014-05-30 19:29:05 +0200397 /*
398 * We don't want to do full transaction commit from inside sysfs
399 */
400 btrfs_set_pending(fs_info, COMMIT);
401 wake_up_process(fs_info->transaction_kthread);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400402
David Sterbaa6f69dc2014-05-30 19:29:05 +0200403 return len;
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400404}
Anand Jain20ee0822014-07-30 20:04:09 +0800405BTRFS_ATTR_RW(label, btrfs_label_show, btrfs_label_store);
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400406
David Sterbadf935892014-05-07 18:17:16 +0200407static ssize_t btrfs_nodesize_show(struct kobject *kobj,
408 struct kobj_attribute *a, char *buf)
409{
410 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
411
412 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->nodesize);
413}
414
Anand Jain98b3d382014-07-30 20:04:08 +0800415BTRFS_ATTR(nodesize, btrfs_nodesize_show);
David Sterbadf935892014-05-07 18:17:16 +0200416
417static ssize_t btrfs_sectorsize_show(struct kobject *kobj,
418 struct kobj_attribute *a, char *buf)
419{
420 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
421
422 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
423}
424
Anand Jain98b3d382014-07-30 20:04:08 +0800425BTRFS_ATTR(sectorsize, btrfs_sectorsize_show);
David Sterbadf935892014-05-07 18:17:16 +0200426
427static ssize_t btrfs_clone_alignment_show(struct kobject *kobj,
428 struct kobj_attribute *a, char *buf)
429{
430 struct btrfs_fs_info *fs_info = to_fs_info(kobj);
431
432 return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->sectorsize);
433}
434
Anand Jain98b3d382014-07-30 20:04:08 +0800435BTRFS_ATTR(clone_alignment, btrfs_clone_alignment_show);
David Sterbadf935892014-05-07 18:17:16 +0200436
Anand Jain0dd29062015-03-10 06:38:27 +0800437static const struct attribute *btrfs_attrs[] = {
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400438 BTRFS_ATTR_PTR(label),
David Sterbadf935892014-05-07 18:17:16 +0200439 BTRFS_ATTR_PTR(nodesize),
440 BTRFS_ATTR_PTR(sectorsize),
441 BTRFS_ATTR_PTR(clone_alignment),
Jeff Mahoneyf8ba9c12013-11-01 13:07:06 -0400442 NULL,
443};
444
Anand Jainc1b7e472015-08-14 18:32:50 +0800445static void btrfs_release_fsid_kobj(struct kobject *kobj)
Jeff Mahoney510d7362013-11-01 13:06:59 -0400446{
Anand Jain2e7910d2015-03-10 06:38:29 +0800447 struct btrfs_fs_devices *fs_devs = to_fs_devs(kobj);
Anand Jain248d2002015-03-10 06:38:19 +0800448
Anand Jainc1b7e472015-08-14 18:32:50 +0800449 memset(&fs_devs->fsid_kobj, 0, sizeof(struct kobject));
Anand Jain2e7910d2015-03-10 06:38:29 +0800450 complete(&fs_devs->kobj_unregister);
Jeff Mahoney510d7362013-11-01 13:06:59 -0400451}
452
453static struct kobj_type btrfs_ktype = {
454 .sysfs_ops = &kobj_sysfs_ops,
Anand Jainc1b7e472015-08-14 18:32:50 +0800455 .release = btrfs_release_fsid_kobj,
Jeff Mahoney510d7362013-11-01 13:06:59 -0400456};
457
Anand Jain2e7910d2015-03-10 06:38:29 +0800458static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj)
459{
460 if (kobj->ktype != &btrfs_ktype)
461 return NULL;
Anand Jainc1b7e472015-08-14 18:32:50 +0800462 return container_of(kobj, struct btrfs_fs_devices, fsid_kobj);
Anand Jain2e7910d2015-03-10 06:38:29 +0800463}
464
Jeff Mahoney510d7362013-11-01 13:06:59 -0400465static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj)
466{
467 if (kobj->ktype != &btrfs_ktype)
468 return NULL;
Anand Jain2e7910d2015-03-10 06:38:29 +0800469 return to_fs_devs(kobj)->fs_info;
Jeff Mahoney510d7362013-11-01 13:06:59 -0400470}
Josef Bacik58176a92007-08-29 15:47:34 -0400471
Jeff Mahoneye453d982013-11-21 10:37:16 -0500472#define NUM_FEATURE_BITS 64
473static char btrfs_unknown_feature_names[3][NUM_FEATURE_BITS][13];
474static struct btrfs_feature_attr btrfs_feature_attrs[3][NUM_FEATURE_BITS];
475
David Sterbae8c9f182015-01-02 18:23:10 +0100476static const u64 supported_feature_masks[3] = {
Jeff Mahoneye453d982013-11-21 10:37:16 -0500477 [FEAT_COMPAT] = BTRFS_FEATURE_COMPAT_SUPP,
478 [FEAT_COMPAT_RO] = BTRFS_FEATURE_COMPAT_RO_SUPP,
479 [FEAT_INCOMPAT] = BTRFS_FEATURE_INCOMPAT_SUPP,
480};
481
482static int addrm_unknown_feature_attrs(struct btrfs_fs_info *fs_info, bool add)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400483{
Jeff Mahoneye453d982013-11-21 10:37:16 -0500484 int set;
485
486 for (set = 0; set < FEAT_MAX; set++) {
487 int i;
488 struct attribute *attrs[2];
489 struct attribute_group agroup = {
490 .name = "features",
491 .attrs = attrs,
492 };
493 u64 features = get_features(fs_info, set);
494 features &= ~supported_feature_masks[set];
495
496 if (!features)
497 continue;
498
499 attrs[1] = NULL;
500 for (i = 0; i < NUM_FEATURE_BITS; i++) {
501 struct btrfs_feature_attr *fa;
502
503 if (!(features & (1ULL << i)))
504 continue;
505
506 fa = &btrfs_feature_attrs[set][i];
507 attrs[0] = &fa->kobj_attr.attr;
508 if (add) {
509 int ret;
Anand Jainc1b7e472015-08-14 18:32:50 +0800510 ret = sysfs_merge_group(&fs_info->fs_devices->fsid_kobj,
Jeff Mahoneye453d982013-11-21 10:37:16 -0500511 &agroup);
512 if (ret)
513 return ret;
514 } else
Anand Jainc1b7e472015-08-14 18:32:50 +0800515 sysfs_unmerge_group(&fs_info->fs_devices->fsid_kobj,
Jeff Mahoneye453d982013-11-21 10:37:16 -0500516 &agroup);
517 }
518
519 }
520 return 0;
521}
522
Anand Jain2e3e1282015-03-10 06:38:32 +0800523static void __btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs)
Jeff Mahoneye453d982013-11-21 10:37:16 -0500524{
Anand Jain2e7910d2015-03-10 06:38:29 +0800525 if (fs_devs->device_dir_kobj) {
526 kobject_del(fs_devs->device_dir_kobj);
527 kobject_put(fs_devs->device_dir_kobj);
528 fs_devs->device_dir_kobj = NULL;
Anand Jainaaf13302015-03-10 06:38:24 +0800529 }
530
Anand Jainc1b7e472015-08-14 18:32:50 +0800531 if (fs_devs->fsid_kobj.state_initialized) {
532 kobject_del(&fs_devs->fsid_kobj);
533 kobject_put(&fs_devs->fsid_kobj);
Anand Jainf90fc542015-06-22 18:18:32 +0800534 wait_for_completion(&fs_devs->kobj_unregister);
535 }
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400536}
537
Anand Jain2e3e1282015-03-10 06:38:32 +0800538/* when fs_devs is NULL it will remove all fsid kobject */
Anand Jain1d1c1be2015-03-10 06:38:37 +0800539void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs)
Anand Jain2e3e1282015-03-10 06:38:32 +0800540{
541 struct list_head *fs_uuids = btrfs_get_fs_uuids();
542
543 if (fs_devs) {
544 __btrfs_sysfs_remove_fsid(fs_devs);
545 return;
546 }
547
548 list_for_each_entry(fs_devs, fs_uuids, list) {
549 __btrfs_sysfs_remove_fsid(fs_devs);
550 }
551}
552
Anand Jain6618a592015-08-14 18:32:47 +0800553void btrfs_sysfs_remove_mounted(struct btrfs_fs_info *fs_info)
Jeff Mahoneye453d982013-11-21 10:37:16 -0500554{
Anand Jain5a13f432015-03-10 06:38:31 +0800555 btrfs_reset_fs_info_ptr(fs_info);
556
Jeff Mahoneye453d982013-11-21 10:37:16 -0500557 if (fs_info->space_info_kobj) {
558 sysfs_remove_files(fs_info->space_info_kobj, allocation_attrs);
559 kobject_del(fs_info->space_info_kobj);
560 kobject_put(fs_info->space_info_kobj);
561 }
Jeff Mahoneye453d982013-11-21 10:37:16 -0500562 addrm_unknown_feature_attrs(fs_info, false);
Anand Jainc1b7e472015-08-14 18:32:50 +0800563 sysfs_remove_group(&fs_info->fs_devices->fsid_kobj, &btrfs_feature_attr_group);
564 sysfs_remove_files(&fs_info->fs_devices->fsid_kobj, btrfs_attrs);
Anand Jain32576042015-08-14 18:32:49 +0800565 btrfs_sysfs_rm_device_link(fs_info->fs_devices, NULL);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500566}
567
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400568const char * const btrfs_feature_set_names[3] = {
569 [FEAT_COMPAT] = "compat",
570 [FEAT_COMPAT_RO] = "compat_ro",
571 [FEAT_INCOMPAT] = "incompat",
572};
573
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400574char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags)
575{
576 size_t bufsize = 4096; /* safe max, 64 names * 64 bytes */
577 int len = 0;
578 int i;
579 char *str;
580
581 str = kmalloc(bufsize, GFP_KERNEL);
582 if (!str)
583 return str;
584
585 for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
586 const char *name;
587
588 if (!(flags & (1ULL << i)))
589 continue;
590
591 name = btrfs_feature_attrs[set][i].kobj_attr.attr.name;
592 len += snprintf(str + len, bufsize - len, "%s%s",
593 len ? "," : "", name);
594 }
595
596 return str;
597}
598
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400599static void init_feature_attrs(void)
600{
601 struct btrfs_feature_attr *fa;
602 int set, i;
603
604 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names) !=
605 ARRAY_SIZE(btrfs_feature_attrs));
606 BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names[0]) !=
607 ARRAY_SIZE(btrfs_feature_attrs[0]));
608
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400609 memset(btrfs_feature_attrs, 0, sizeof(btrfs_feature_attrs));
610 memset(btrfs_unknown_feature_names, 0,
611 sizeof(btrfs_unknown_feature_names));
612
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400613 for (i = 0; btrfs_supported_feature_attrs[i]; i++) {
614 struct btrfs_feature_attr *sfa;
615 struct attribute *a = btrfs_supported_feature_attrs[i];
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400616 int bit;
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400617 sfa = attr_to_btrfs_feature_attr(a);
Jeff Mahoney3b02a682013-11-01 13:07:02 -0400618 bit = ilog2(sfa->feature_bit);
619 fa = &btrfs_feature_attrs[sfa->feature_set][bit];
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400620
621 fa->kobj_attr.attr.name = sfa->kobj_attr.attr.name;
622 }
623
624 for (set = 0; set < FEAT_MAX; set++) {
625 for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) {
626 char *name = btrfs_unknown_feature_names[set][i];
627 fa = &btrfs_feature_attrs[set][i];
628
629 if (fa->kobj_attr.attr.name)
630 continue;
631
632 snprintf(name, 13, "%s:%u",
633 btrfs_feature_set_names[set], i);
634
635 fa->kobj_attr.attr.name = name;
636 fa->kobj_attr.attr.mode = S_IRUGO;
637 fa->feature_set = set;
638 fa->feature_bit = 1ULL << i;
639 }
640 }
641}
642
Anand Jaine7e1aa92015-03-10 06:38:21 +0800643/* when one_device is NULL, it removes all device links */
644
Anand Jain32576042015-08-14 18:32:49 +0800645int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices *fs_devices,
Anand Jain99994cd2014-06-03 11:36:00 +0800646 struct btrfs_device *one_device)
647{
648 struct hd_struct *disk;
649 struct kobject *disk_kobj;
650
Anand Jain6c14a162015-03-10 06:38:34 +0800651 if (!fs_devices->device_dir_kobj)
Anand Jain99994cd2014-06-03 11:36:00 +0800652 return -EINVAL;
653
Liu Bo87fa3bb2014-07-29 19:09:39 +0800654 if (one_device && one_device->bdev) {
Anand Jain99994cd2014-06-03 11:36:00 +0800655 disk = one_device->bdev->bd_part;
656 disk_kobj = &part_to_dev(disk)->kobj;
657
Anand Jain6c14a162015-03-10 06:38:34 +0800658 sysfs_remove_link(fs_devices->device_dir_kobj,
Anand Jain99994cd2014-06-03 11:36:00 +0800659 disk_kobj->name);
660 }
661
Anand Jaine7e1aa92015-03-10 06:38:21 +0800662 if (one_device)
663 return 0;
664
665 list_for_each_entry(one_device,
Anand Jain6c14a162015-03-10 06:38:34 +0800666 &fs_devices->devices, dev_list) {
Anand Jaine7e1aa92015-03-10 06:38:21 +0800667 if (!one_device->bdev)
668 continue;
669 disk = one_device->bdev->bd_part;
670 disk_kobj = &part_to_dev(disk)->kobj;
671
Anand Jain6c14a162015-03-10 06:38:34 +0800672 sysfs_remove_link(fs_devices->device_dir_kobj,
Anand Jaine7e1aa92015-03-10 06:38:21 +0800673 disk_kobj->name);
674 }
675
Anand Jain99994cd2014-06-03 11:36:00 +0800676 return 0;
677}
678
Anand Jain2e7910d2015-03-10 06:38:29 +0800679int btrfs_sysfs_add_device(struct btrfs_fs_devices *fs_devs)
Anand Jain00c921c2015-03-10 06:38:28 +0800680{
Anand Jain2e7910d2015-03-10 06:38:29 +0800681 if (!fs_devs->device_dir_kobj)
682 fs_devs->device_dir_kobj = kobject_create_and_add("devices",
Anand Jainc1b7e472015-08-14 18:32:50 +0800683 &fs_devs->fsid_kobj);
Anand Jain00c921c2015-03-10 06:38:28 +0800684
Anand Jain2e7910d2015-03-10 06:38:29 +0800685 if (!fs_devs->device_dir_kobj)
Anand Jain00c921c2015-03-10 06:38:28 +0800686 return -ENOMEM;
687
688 return 0;
689}
690
Anand Jaine3bd6972015-08-14 18:32:48 +0800691int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices,
Anand Jain1ba43812015-03-10 06:38:33 +0800692 struct btrfs_device *one_device)
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400693{
694 int error = 0;
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400695 struct btrfs_device *dev;
696
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400697 list_for_each_entry(dev, &fs_devices->devices, dev_list) {
Anand Jainf0853812014-01-15 17:22:28 +0800698 struct hd_struct *disk;
699 struct kobject *disk_kobj;
700
701 if (!dev->bdev)
702 continue;
703
Anand Jain0d393762014-06-03 11:36:01 +0800704 if (one_device && one_device != dev)
705 continue;
706
Anand Jainf0853812014-01-15 17:22:28 +0800707 disk = dev->bdev->bd_part;
708 disk_kobj = &part_to_dev(disk)->kobj;
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400709
Anand Jain2e7910d2015-03-10 06:38:29 +0800710 error = sysfs_create_link(fs_devices->device_dir_kobj,
Jeff Mahoney29e5be22013-11-01 13:07:05 -0400711 disk_kobj, disk_kobj->name);
712 if (error)
713 break;
714 }
715
716 return error;
717}
718
Jeff Mahoney510d7362013-11-01 13:06:59 -0400719/* /sys/fs/btrfs/ entry */
720static struct kset *btrfs_kset;
721
David Sterba1bae3092014-02-05 15:36:18 +0100722/* /sys/kernel/debug/btrfs */
723static struct dentry *btrfs_debugfs_root_dentry;
724
725/* Debugging tunables and exported data */
726u64 btrfs_debugfs_test;
727
Anand Jain72059212015-03-10 06:38:26 +0800728/*
729 * Can be called by the device discovery thread.
730 * And parent can be specified for seed device
731 */
Anand Jain0c10e2d2015-03-10 06:38:35 +0800732int btrfs_sysfs_add_fsid(struct btrfs_fs_devices *fs_devs,
Anand Jain72059212015-03-10 06:38:26 +0800733 struct kobject *parent)
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400734{
735 int error;
736
Anand Jain2e7910d2015-03-10 06:38:29 +0800737 init_completion(&fs_devs->kobj_unregister);
Anand Jainc1b7e472015-08-14 18:32:50 +0800738 fs_devs->fsid_kobj.kset = btrfs_kset;
739 error = kobject_init_and_add(&fs_devs->fsid_kobj,
Anand Jain24bd69c2015-03-10 06:38:39 +0800740 &btrfs_ktype, parent, "%pU", fs_devs->fsid);
Anand Jain72059212015-03-10 06:38:26 +0800741 return error;
742}
743
Anand Jain96f31362015-08-14 18:32:46 +0800744int btrfs_sysfs_add_mounted(struct btrfs_fs_info *fs_info)
Anand Jain72059212015-03-10 06:38:26 +0800745{
746 int error;
Anand Jain2e7910d2015-03-10 06:38:29 +0800747 struct btrfs_fs_devices *fs_devs = fs_info->fs_devices;
Anand Jainc1b7e472015-08-14 18:32:50 +0800748 struct kobject *fsid_kobj = &fs_devs->fsid_kobj;
Anand Jain72059212015-03-10 06:38:26 +0800749
Anand Jain5a13f432015-03-10 06:38:31 +0800750 btrfs_set_fs_info_ptr(fs_info);
751
Anand Jaine3bd6972015-08-14 18:32:48 +0800752 error = btrfs_sysfs_add_device_link(fs_devs, NULL);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500753 if (error)
754 return error;
Jeff Mahoney510d7362013-11-01 13:06:59 -0400755
Anand Jainc1b7e472015-08-14 18:32:50 +0800756 error = sysfs_create_files(fsid_kobj, btrfs_attrs);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500757 if (error) {
Anand Jain32576042015-08-14 18:32:49 +0800758 btrfs_sysfs_rm_device_link(fs_devs, NULL);
Jeff Mahoneye453d982013-11-21 10:37:16 -0500759 return error;
760 }
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400761
Anand Jainc1b7e472015-08-14 18:32:50 +0800762 error = sysfs_create_group(fsid_kobj,
Anand Jain0dd29062015-03-10 06:38:27 +0800763 &btrfs_feature_attr_group);
764 if (error)
765 goto failure;
766
Jeff Mahoneye453d982013-11-21 10:37:16 -0500767 error = addrm_unknown_feature_attrs(fs_info, true);
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400768 if (error)
769 goto failure;
770
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400771 fs_info->space_info_kobj = kobject_create_and_add("allocation",
Anand Jainc1b7e472015-08-14 18:32:50 +0800772 fsid_kobj);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -0400773 if (!fs_info->space_info_kobj) {
774 error = -ENOMEM;
775 goto failure;
776 }
777
778 error = sysfs_create_files(fs_info->space_info_kobj, allocation_attrs);
779 if (error)
780 goto failure;
781
Jeff Mahoney79da4fa2013-11-01 13:07:00 -0400782 return 0;
783failure:
Anand Jain6618a592015-08-14 18:32:47 +0800784 btrfs_sysfs_remove_mounted(fs_info);
Jeff Mahoney5ac1d202013-11-01 13:06:58 -0400785 return error;
786}
787
David Sterba444e7512016-01-21 18:50:40 +0100788
789/*
790 * Change per-fs features in /sys/fs/btrfs/UUID/features to match current
791 * values in superblock. Call after any changes to incompat/compat_ro flags
792 */
793void btrfs_sysfs_feature_update(struct btrfs_fs_info *fs_info,
794 u64 bit, enum btrfs_feature_set set)
795{
796 struct btrfs_fs_devices *fs_devs;
797 struct kobject *fsid_kobj;
798 u64 features;
799 int ret;
800
801 if (!fs_info)
802 return;
803
804 features = get_features(fs_info, set);
805 ASSERT(bit & supported_feature_masks[set]);
806
807 fs_devs = fs_info->fs_devices;
808 fsid_kobj = &fs_devs->fsid_kobj;
809
David Sterbabf609202016-01-27 14:06:29 +0100810 if (!fsid_kobj->state_initialized)
811 return;
812
David Sterba444e7512016-01-21 18:50:40 +0100813 /*
814 * FIXME: this is too heavy to update just one value, ideally we'd like
815 * to use sysfs_update_group but some refactoring is needed first.
816 */
817 sysfs_remove_group(fsid_kobj, &btrfs_feature_attr_group);
818 ret = sysfs_create_group(fsid_kobj, &btrfs_feature_attr_group);
819}
820
David Sterba1bae3092014-02-05 15:36:18 +0100821static int btrfs_init_debugfs(void)
822{
823#ifdef CONFIG_DEBUG_FS
824 btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL);
825 if (!btrfs_debugfs_root_dentry)
826 return -ENOMEM;
827
828 debugfs_create_u64("test", S_IRUGO | S_IWUGO, btrfs_debugfs_root_dentry,
829 &btrfs_debugfs_test);
830#endif
831 return 0;
832}
833
Christoph Hellwigb2141072008-09-05 16:43:31 -0400834int btrfs_init_sysfs(void)
Josef Bacik58176a92007-08-29 15:47:34 -0400835{
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400836 int ret;
David Sterba1bae3092014-02-05 15:36:18 +0100837
Greg KHe3fe4e72008-02-20 14:14:16 -0500838 btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj);
839 if (!btrfs_kset)
840 return -ENOMEM;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400841
David Sterba1bae3092014-02-05 15:36:18 +0100842 ret = btrfs_init_debugfs();
843 if (ret)
Filipe Manana001a6482015-01-23 18:27:00 +0000844 goto out1;
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400845
David Sterba1bae3092014-02-05 15:36:18 +0100846 init_feature_attrs();
847 ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
Filipe Manana001a6482015-01-23 18:27:00 +0000848 if (ret)
849 goto out2;
850
851 return 0;
852out2:
853 debugfs_remove_recursive(btrfs_debugfs_root_dentry);
854out1:
855 kset_unregister(btrfs_kset);
David Sterba1bae3092014-02-05 15:36:18 +0100856
857 return ret;
Josef Bacik58176a92007-08-29 15:47:34 -0400858}
859
Christoph Hellwigb2141072008-09-05 16:43:31 -0400860void btrfs_exit_sysfs(void)
Josef Bacik58176a92007-08-29 15:47:34 -0400861{
Jeff Mahoney079b72b2013-11-01 13:06:57 -0400862 sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group);
Greg KHe3fe4e72008-02-20 14:14:16 -0500863 kset_unregister(btrfs_kset);
David Sterba1bae3092014-02-05 15:36:18 +0100864 debugfs_remove_recursive(btrfs_debugfs_root_dentry);
Josef Bacik58176a92007-08-29 15:47:34 -0400865}
Chris Mason55d47412008-02-20 16:02:51 -0500866