David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2007 Oracle. All rights reserved. |
Chris Mason | 6cbd557 | 2007-06-12 09:07:21 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 6 | #include <linux/sched.h> |
| 7 | #include <linux/slab.h> |
| 8 | #include <linux/spinlock.h> |
| 9 | #include <linux/completion.h> |
| 10 | #include <linux/buffer_head.h> |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 11 | #include <linux/kobject.h> |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 12 | #include <linux/bug.h> |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 13 | #include <linux/genhd.h> |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 14 | #include <linux/debugfs.h> |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 15 | |
Chris Mason | bae45de | 2007-04-04 21:22:22 -0400 | [diff] [blame] | 16 | #include "ctree.h" |
| 17 | #include "disk-io.h" |
| 18 | #include "transaction.h" |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 19 | #include "sysfs.h" |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 20 | #include "volumes.h" |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 21 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 22 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj); |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 23 | static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 24 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 25 | static u64 get_features(struct btrfs_fs_info *fs_info, |
| 26 | enum btrfs_feature_set set) |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 27 | { |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 28 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
| 29 | if (set == FEAT_COMPAT) |
| 30 | return btrfs_super_compat_flags(disk_super); |
| 31 | else if (set == FEAT_COMPAT_RO) |
| 32 | return btrfs_super_compat_ro_flags(disk_super); |
| 33 | else |
| 34 | return btrfs_super_incompat_flags(disk_super); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 35 | } |
| 36 | |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 37 | static void set_features(struct btrfs_fs_info *fs_info, |
| 38 | enum btrfs_feature_set set, u64 features) |
| 39 | { |
| 40 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
| 41 | if (set == FEAT_COMPAT) |
| 42 | btrfs_set_super_compat_flags(disk_super, features); |
| 43 | else if (set == FEAT_COMPAT_RO) |
| 44 | btrfs_set_super_compat_ro_flags(disk_super, features); |
| 45 | else |
| 46 | btrfs_set_super_incompat_flags(disk_super, features); |
| 47 | } |
| 48 | |
| 49 | static int can_modify_feature(struct btrfs_feature_attr *fa) |
| 50 | { |
| 51 | int val = 0; |
| 52 | u64 set, clear; |
| 53 | switch (fa->feature_set) { |
| 54 | case FEAT_COMPAT: |
| 55 | set = BTRFS_FEATURE_COMPAT_SAFE_SET; |
| 56 | clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR; |
| 57 | break; |
| 58 | case FEAT_COMPAT_RO: |
| 59 | set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET; |
| 60 | clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR; |
| 61 | break; |
| 62 | case FEAT_INCOMPAT: |
| 63 | set = BTRFS_FEATURE_INCOMPAT_SAFE_SET; |
| 64 | clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR; |
| 65 | break; |
| 66 | default: |
Jeff Mahoney | 62e8557 | 2016-09-20 10:05:01 -0400 | [diff] [blame] | 67 | pr_warn("btrfs: sysfs: unknown feature set %d\n", |
David Sterba | cc37bb0 | 2013-11-19 13:36:21 +0100 | [diff] [blame] | 68 | fa->feature_set); |
| 69 | return 0; |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | if (set & fa->feature_bit) |
| 73 | val |= 1; |
| 74 | if (clear & fa->feature_bit) |
| 75 | val |= 2; |
| 76 | |
| 77 | return val; |
| 78 | } |
| 79 | |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 80 | static ssize_t btrfs_feature_attr_show(struct kobject *kobj, |
| 81 | struct kobj_attribute *a, char *buf) |
| 82 | { |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 83 | int val = 0; |
| 84 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 85 | struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a); |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 86 | if (fs_info) { |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 87 | u64 features = get_features(fs_info, fa->feature_set); |
| 88 | if (features & fa->feature_bit) |
| 89 | val = 1; |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 90 | } else |
| 91 | val = can_modify_feature(fa); |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 92 | |
| 93 | return snprintf(buf, PAGE_SIZE, "%d\n", val); |
| 94 | } |
| 95 | |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 96 | static ssize_t btrfs_feature_attr_store(struct kobject *kobj, |
| 97 | struct kobj_attribute *a, |
| 98 | const char *buf, size_t count) |
| 99 | { |
| 100 | struct btrfs_fs_info *fs_info; |
| 101 | struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a); |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 102 | u64 features, set, clear; |
| 103 | unsigned long val; |
| 104 | int ret; |
| 105 | |
| 106 | fs_info = to_fs_info(kobj); |
| 107 | if (!fs_info) |
| 108 | return -EPERM; |
| 109 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 110 | if (sb_rdonly(fs_info->sb)) |
David Sterba | ee61113 | 2015-01-23 18:43:31 +0100 | [diff] [blame] | 111 | return -EROFS; |
| 112 | |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 113 | ret = kstrtoul(skip_spaces(buf), 0, &val); |
| 114 | if (ret) |
| 115 | return ret; |
| 116 | |
| 117 | if (fa->feature_set == FEAT_COMPAT) { |
| 118 | set = BTRFS_FEATURE_COMPAT_SAFE_SET; |
| 119 | clear = BTRFS_FEATURE_COMPAT_SAFE_CLEAR; |
| 120 | } else if (fa->feature_set == FEAT_COMPAT_RO) { |
| 121 | set = BTRFS_FEATURE_COMPAT_RO_SAFE_SET; |
| 122 | clear = BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR; |
| 123 | } else { |
| 124 | set = BTRFS_FEATURE_INCOMPAT_SAFE_SET; |
| 125 | clear = BTRFS_FEATURE_INCOMPAT_SAFE_CLEAR; |
| 126 | } |
| 127 | |
| 128 | features = get_features(fs_info, fa->feature_set); |
| 129 | |
| 130 | /* Nothing to do */ |
| 131 | if ((val && (features & fa->feature_bit)) || |
| 132 | (!val && !(features & fa->feature_bit))) |
| 133 | return count; |
| 134 | |
| 135 | if ((val && !(set & fa->feature_bit)) || |
| 136 | (!val && !(clear & fa->feature_bit))) { |
| 137 | btrfs_info(fs_info, |
| 138 | "%sabling feature %s on mounted fs is not supported.", |
| 139 | val ? "En" : "Dis", fa->kobj_attr.attr.name); |
| 140 | return -EPERM; |
| 141 | } |
| 142 | |
| 143 | btrfs_info(fs_info, "%s %s feature flag", |
| 144 | val ? "Setting" : "Clearing", fa->kobj_attr.attr.name); |
| 145 | |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 146 | spin_lock(&fs_info->super_lock); |
| 147 | features = get_features(fs_info, fa->feature_set); |
| 148 | if (val) |
| 149 | features |= fa->feature_bit; |
| 150 | else |
| 151 | features &= ~fa->feature_bit; |
| 152 | set_features(fs_info, fa->feature_set, features); |
| 153 | spin_unlock(&fs_info->super_lock); |
| 154 | |
David Sterba | 0eae274 | 2014-11-12 14:22:21 +0100 | [diff] [blame] | 155 | /* |
| 156 | * We don't want to do full transaction commit from inside sysfs |
| 157 | */ |
| 158 | btrfs_set_pending(fs_info, COMMIT); |
| 159 | wake_up_process(fs_info->transaction_kthread); |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 160 | |
| 161 | return count; |
| 162 | } |
| 163 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 164 | static umode_t btrfs_feature_visible(struct kobject *kobj, |
| 165 | struct attribute *attr, int unused) |
| 166 | { |
| 167 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 168 | umode_t mode = attr->mode; |
| 169 | |
| 170 | if (fs_info) { |
| 171 | struct btrfs_feature_attr *fa; |
| 172 | u64 features; |
| 173 | |
| 174 | fa = attr_to_btrfs_feature_attr(attr); |
| 175 | features = get_features(fs_info, fa->feature_set); |
| 176 | |
Jeff Mahoney | ba63194 | 2013-11-01 13:07:01 -0400 | [diff] [blame] | 177 | if (can_modify_feature(fa)) |
| 178 | mode |= S_IWUSR; |
| 179 | else if (!(features & fa->feature_bit)) |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 180 | mode = 0; |
| 181 | } |
| 182 | |
| 183 | return mode; |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref, MIXED_BACKREF); |
| 187 | BTRFS_FEAT_ATTR_INCOMPAT(default_subvol, DEFAULT_SUBVOL); |
| 188 | BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups, MIXED_GROUPS); |
| 189 | BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo, COMPRESS_LZO); |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 190 | BTRFS_FEAT_ATTR_INCOMPAT(compress_zstd, COMPRESS_ZSTD); |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 191 | BTRFS_FEAT_ATTR_INCOMPAT(big_metadata, BIG_METADATA); |
| 192 | BTRFS_FEAT_ATTR_INCOMPAT(extended_iref, EXTENDED_IREF); |
| 193 | BTRFS_FEAT_ATTR_INCOMPAT(raid56, RAID56); |
| 194 | BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata, SKINNY_METADATA); |
David Sterba | c736c09 | 2014-01-21 18:56:09 +0100 | [diff] [blame] | 195 | BTRFS_FEAT_ATTR_INCOMPAT(no_holes, NO_HOLES); |
David Sterba | 3b5bb73 | 2016-01-21 18:36:46 +0100 | [diff] [blame] | 196 | BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree, FREE_SPACE_TREE); |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 197 | |
| 198 | static struct attribute *btrfs_supported_feature_attrs[] = { |
| 199 | BTRFS_FEAT_ATTR_PTR(mixed_backref), |
| 200 | BTRFS_FEAT_ATTR_PTR(default_subvol), |
| 201 | BTRFS_FEAT_ATTR_PTR(mixed_groups), |
| 202 | BTRFS_FEAT_ATTR_PTR(compress_lzo), |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 203 | BTRFS_FEAT_ATTR_PTR(compress_zstd), |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 204 | BTRFS_FEAT_ATTR_PTR(big_metadata), |
| 205 | BTRFS_FEAT_ATTR_PTR(extended_iref), |
| 206 | BTRFS_FEAT_ATTR_PTR(raid56), |
| 207 | BTRFS_FEAT_ATTR_PTR(skinny_metadata), |
David Sterba | c736c09 | 2014-01-21 18:56:09 +0100 | [diff] [blame] | 208 | BTRFS_FEAT_ATTR_PTR(no_holes), |
David Sterba | 3b5bb73 | 2016-01-21 18:36:46 +0100 | [diff] [blame] | 209 | BTRFS_FEAT_ATTR_PTR(free_space_tree), |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 210 | NULL |
| 211 | }; |
| 212 | |
| 213 | static const struct attribute_group btrfs_feature_attr_group = { |
| 214 | .name = "features", |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 215 | .is_visible = btrfs_feature_visible, |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 216 | .attrs = btrfs_supported_feature_attrs, |
| 217 | }; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 218 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 219 | static ssize_t btrfs_show_u64(u64 *value_ptr, spinlock_t *lock, char *buf) |
| 220 | { |
| 221 | u64 val; |
| 222 | if (lock) |
| 223 | spin_lock(lock); |
| 224 | val = *value_ptr; |
| 225 | if (lock) |
| 226 | spin_unlock(lock); |
| 227 | return snprintf(buf, PAGE_SIZE, "%llu\n", val); |
| 228 | } |
| 229 | |
| 230 | static ssize_t global_rsv_size_show(struct kobject *kobj, |
| 231 | struct kobj_attribute *ka, char *buf) |
| 232 | { |
| 233 | struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent); |
| 234 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 235 | return btrfs_show_u64(&block_rsv->size, &block_rsv->lock, buf); |
| 236 | } |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 237 | BTRFS_ATTR(allocation, global_rsv_size, global_rsv_size_show); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 238 | |
| 239 | static ssize_t global_rsv_reserved_show(struct kobject *kobj, |
| 240 | struct kobj_attribute *a, char *buf) |
| 241 | { |
| 242 | struct btrfs_fs_info *fs_info = to_fs_info(kobj->parent); |
| 243 | struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv; |
| 244 | return btrfs_show_u64(&block_rsv->reserved, &block_rsv->lock, buf); |
| 245 | } |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 246 | BTRFS_ATTR(allocation, global_rsv_reserved, global_rsv_reserved_show); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 247 | |
| 248 | #define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj) |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 249 | #define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 250 | |
| 251 | static ssize_t raid_bytes_show(struct kobject *kobj, |
| 252 | struct kobj_attribute *attr, char *buf); |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 253 | BTRFS_ATTR(raid, total_bytes, raid_bytes_show); |
| 254 | BTRFS_ATTR(raid, used_bytes, raid_bytes_show); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 255 | |
| 256 | static ssize_t raid_bytes_show(struct kobject *kobj, |
| 257 | struct kobj_attribute *attr, char *buf) |
| 258 | |
| 259 | { |
| 260 | struct btrfs_space_info *sinfo = to_space_info(kobj->parent); |
| 261 | struct btrfs_block_group_cache *block_group; |
Jeff Mahoney | 75cb379 | 2018-03-20 15:25:26 -0400 | [diff] [blame] | 262 | int index = btrfs_bg_flags_to_raid_index(to_raid_kobj(kobj)->flags); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 263 | u64 val = 0; |
| 264 | |
| 265 | down_read(&sinfo->groups_sem); |
| 266 | list_for_each_entry(block_group, &sinfo->block_groups[index], list) { |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 267 | if (&attr->attr == BTRFS_ATTR_PTR(raid, total_bytes)) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 268 | val += block_group->key.offset; |
| 269 | else |
| 270 | val += btrfs_block_group_used(&block_group->item); |
| 271 | } |
| 272 | up_read(&sinfo->groups_sem); |
| 273 | return snprintf(buf, PAGE_SIZE, "%llu\n", val); |
| 274 | } |
| 275 | |
| 276 | static struct attribute *raid_attributes[] = { |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 277 | BTRFS_ATTR_PTR(raid, total_bytes), |
| 278 | BTRFS_ATTR_PTR(raid, used_bytes), |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 279 | NULL |
| 280 | }; |
| 281 | |
| 282 | static void release_raid_kobj(struct kobject *kobj) |
| 283 | { |
Jeff Mahoney | c189544 | 2014-05-27 12:59:57 -0400 | [diff] [blame] | 284 | kfree(to_raid_kobj(kobj)); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | struct kobj_type btrfs_raid_ktype = { |
| 288 | .sysfs_ops = &kobj_sysfs_ops, |
| 289 | .release = release_raid_kobj, |
| 290 | .default_attrs = raid_attributes, |
| 291 | }; |
| 292 | |
| 293 | #define SPACE_INFO_ATTR(field) \ |
| 294 | static ssize_t btrfs_space_info_show_##field(struct kobject *kobj, \ |
| 295 | struct kobj_attribute *a, \ |
| 296 | char *buf) \ |
| 297 | { \ |
| 298 | struct btrfs_space_info *sinfo = to_space_info(kobj); \ |
| 299 | return btrfs_show_u64(&sinfo->field, &sinfo->lock, buf); \ |
| 300 | } \ |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 301 | BTRFS_ATTR(space_info, field, btrfs_space_info_show_##field) |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 302 | |
| 303 | static ssize_t btrfs_space_info_show_total_bytes_pinned(struct kobject *kobj, |
| 304 | struct kobj_attribute *a, |
| 305 | char *buf) |
| 306 | { |
| 307 | struct btrfs_space_info *sinfo = to_space_info(kobj); |
| 308 | s64 val = percpu_counter_sum(&sinfo->total_bytes_pinned); |
| 309 | return snprintf(buf, PAGE_SIZE, "%lld\n", val); |
| 310 | } |
| 311 | |
| 312 | SPACE_INFO_ATTR(flags); |
| 313 | SPACE_INFO_ATTR(total_bytes); |
| 314 | SPACE_INFO_ATTR(bytes_used); |
| 315 | SPACE_INFO_ATTR(bytes_pinned); |
| 316 | SPACE_INFO_ATTR(bytes_reserved); |
| 317 | SPACE_INFO_ATTR(bytes_may_use); |
Wang Xiaoguang | c1fd5c3 | 2016-06-21 11:12:56 +0800 | [diff] [blame] | 318 | SPACE_INFO_ATTR(bytes_readonly); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 319 | SPACE_INFO_ATTR(disk_used); |
| 320 | SPACE_INFO_ATTR(disk_total); |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 321 | BTRFS_ATTR(space_info, total_bytes_pinned, |
| 322 | btrfs_space_info_show_total_bytes_pinned); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 323 | |
| 324 | static struct attribute *space_info_attrs[] = { |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 325 | BTRFS_ATTR_PTR(space_info, flags), |
| 326 | BTRFS_ATTR_PTR(space_info, total_bytes), |
| 327 | BTRFS_ATTR_PTR(space_info, bytes_used), |
| 328 | BTRFS_ATTR_PTR(space_info, bytes_pinned), |
| 329 | BTRFS_ATTR_PTR(space_info, bytes_reserved), |
| 330 | BTRFS_ATTR_PTR(space_info, bytes_may_use), |
| 331 | BTRFS_ATTR_PTR(space_info, bytes_readonly), |
| 332 | BTRFS_ATTR_PTR(space_info, disk_used), |
| 333 | BTRFS_ATTR_PTR(space_info, disk_total), |
| 334 | BTRFS_ATTR_PTR(space_info, total_bytes_pinned), |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 335 | NULL, |
| 336 | }; |
| 337 | |
| 338 | static void space_info_release(struct kobject *kobj) |
| 339 | { |
| 340 | struct btrfs_space_info *sinfo = to_space_info(kobj); |
| 341 | percpu_counter_destroy(&sinfo->total_bytes_pinned); |
| 342 | kfree(sinfo); |
| 343 | } |
| 344 | |
| 345 | struct kobj_type space_info_ktype = { |
| 346 | .sysfs_ops = &kobj_sysfs_ops, |
| 347 | .release = space_info_release, |
| 348 | .default_attrs = space_info_attrs, |
| 349 | }; |
| 350 | |
| 351 | static const struct attribute *allocation_attrs[] = { |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 352 | BTRFS_ATTR_PTR(allocation, global_rsv_reserved), |
| 353 | BTRFS_ATTR_PTR(allocation, global_rsv_size), |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 354 | NULL, |
| 355 | }; |
| 356 | |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 357 | static ssize_t btrfs_label_show(struct kobject *kobj, |
| 358 | struct kobj_attribute *a, char *buf) |
| 359 | { |
| 360 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
Satoru Takeuchi | 48fcc3f | 2014-07-01 17:00:07 +0900 | [diff] [blame] | 361 | char *label = fs_info->super_copy->label; |
David Sterba | ee17fc8 | 2016-04-26 16:22:06 +0200 | [diff] [blame] | 362 | ssize_t ret; |
| 363 | |
| 364 | spin_lock(&fs_info->super_lock); |
| 365 | ret = snprintf(buf, PAGE_SIZE, label[0] ? "%s\n" : "%s", label); |
| 366 | spin_unlock(&fs_info->super_lock); |
| 367 | |
| 368 | return ret; |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | static ssize_t btrfs_label_store(struct kobject *kobj, |
| 372 | struct kobj_attribute *a, |
| 373 | const char *buf, size_t len) |
| 374 | { |
| 375 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
Satoru Takeuchi | 48fcc3f | 2014-07-01 17:00:07 +0900 | [diff] [blame] | 376 | size_t p_len; |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 377 | |
David Sterba | 66ac9fe | 2016-04-26 16:03:57 +0200 | [diff] [blame] | 378 | if (!fs_info) |
| 379 | return -EPERM; |
| 380 | |
David Howells | bc98a42 | 2017-07-17 08:45:34 +0100 | [diff] [blame] | 381 | if (sb_rdonly(fs_info->sb)) |
Anand Jain | 79aec2b | 2014-07-30 20:04:10 +0800 | [diff] [blame] | 382 | return -EROFS; |
| 383 | |
Satoru Takeuchi | 48fcc3f | 2014-07-01 17:00:07 +0900 | [diff] [blame] | 384 | /* |
| 385 | * p_len is the len until the first occurrence of either |
| 386 | * '\n' or '\0' |
| 387 | */ |
| 388 | p_len = strcspn(buf, "\n"); |
| 389 | |
| 390 | if (p_len >= BTRFS_LABEL_SIZE) |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 391 | return -EINVAL; |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 392 | |
David Sterba | a6f69dc | 2014-05-30 19:29:05 +0200 | [diff] [blame] | 393 | spin_lock(&fs_info->super_lock); |
Satoru Takeuchi | 48fcc3f | 2014-07-01 17:00:07 +0900 | [diff] [blame] | 394 | memset(fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE); |
| 395 | memcpy(fs_info->super_copy->label, buf, p_len); |
David Sterba | a6f69dc | 2014-05-30 19:29:05 +0200 | [diff] [blame] | 396 | spin_unlock(&fs_info->super_lock); |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 397 | |
David Sterba | a6f69dc | 2014-05-30 19:29:05 +0200 | [diff] [blame] | 398 | /* |
| 399 | * We don't want to do full transaction commit from inside sysfs |
| 400 | */ |
| 401 | btrfs_set_pending(fs_info, COMMIT); |
| 402 | wake_up_process(fs_info->transaction_kthread); |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 403 | |
David Sterba | a6f69dc | 2014-05-30 19:29:05 +0200 | [diff] [blame] | 404 | return len; |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 405 | } |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 406 | BTRFS_ATTR_RW(, label, btrfs_label_show, btrfs_label_store); |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 407 | |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 408 | static ssize_t btrfs_nodesize_show(struct kobject *kobj, |
| 409 | struct kobj_attribute *a, char *buf) |
| 410 | { |
| 411 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 412 | |
David Sterba | 093e037 | 2018-03-16 14:31:43 +0100 | [diff] [blame] | 413 | return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->super_copy->nodesize); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 414 | } |
| 415 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 416 | BTRFS_ATTR(, nodesize, btrfs_nodesize_show); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 417 | |
| 418 | static ssize_t btrfs_sectorsize_show(struct kobject *kobj, |
| 419 | struct kobj_attribute *a, char *buf) |
| 420 | { |
| 421 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 422 | |
David Sterba | 093e037 | 2018-03-16 14:31:43 +0100 | [diff] [blame] | 423 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 424 | fs_info->super_copy->sectorsize); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 425 | } |
| 426 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 427 | BTRFS_ATTR(, sectorsize, btrfs_sectorsize_show); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 428 | |
| 429 | static ssize_t btrfs_clone_alignment_show(struct kobject *kobj, |
| 430 | struct kobj_attribute *a, char *buf) |
| 431 | { |
| 432 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 433 | |
David Sterba | 093e037 | 2018-03-16 14:31:43 +0100 | [diff] [blame] | 434 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 435 | fs_info->super_copy->sectorsize); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 436 | } |
| 437 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 438 | BTRFS_ATTR(, clone_alignment, btrfs_clone_alignment_show); |
David Sterba | df93589 | 2014-05-07 18:17:16 +0200 | [diff] [blame] | 439 | |
Sargun Dhillon | 2723480 | 2017-05-11 21:18:03 +0000 | [diff] [blame] | 440 | static ssize_t quota_override_show(struct kobject *kobj, |
| 441 | struct kobj_attribute *a, char *buf) |
| 442 | { |
| 443 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 444 | int quota_override; |
| 445 | |
| 446 | quota_override = test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); |
| 447 | return snprintf(buf, PAGE_SIZE, "%d\n", quota_override); |
| 448 | } |
| 449 | |
| 450 | static ssize_t quota_override_store(struct kobject *kobj, |
| 451 | struct kobj_attribute *a, |
| 452 | const char *buf, size_t len) |
| 453 | { |
| 454 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 455 | unsigned long knob; |
| 456 | int err; |
| 457 | |
| 458 | if (!fs_info) |
| 459 | return -EPERM; |
| 460 | |
| 461 | if (!capable(CAP_SYS_RESOURCE)) |
| 462 | return -EPERM; |
| 463 | |
| 464 | err = kstrtoul(buf, 10, &knob); |
| 465 | if (err) |
| 466 | return err; |
| 467 | if (knob > 1) |
| 468 | return -EINVAL; |
| 469 | |
| 470 | if (knob) |
| 471 | set_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); |
| 472 | else |
| 473 | clear_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); |
| 474 | |
| 475 | return len; |
| 476 | } |
| 477 | |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 478 | BTRFS_ATTR_RW(, quota_override, quota_override_show, quota_override_store); |
Sargun Dhillon | 2723480 | 2017-05-11 21:18:03 +0000 | [diff] [blame] | 479 | |
Anand Jain | 0dd2906 | 2015-03-10 06:38:27 +0800 | [diff] [blame] | 480 | static const struct attribute *btrfs_attrs[] = { |
Hans van Kranenburg | a969f4c | 2017-10-08 22:30:58 +0200 | [diff] [blame] | 481 | BTRFS_ATTR_PTR(, label), |
| 482 | BTRFS_ATTR_PTR(, nodesize), |
| 483 | BTRFS_ATTR_PTR(, sectorsize), |
| 484 | BTRFS_ATTR_PTR(, clone_alignment), |
| 485 | BTRFS_ATTR_PTR(, quota_override), |
Jeff Mahoney | f8ba9c1 | 2013-11-01 13:07:06 -0400 | [diff] [blame] | 486 | NULL, |
| 487 | }; |
| 488 | |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 489 | static void btrfs_release_fsid_kobj(struct kobject *kobj) |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 490 | { |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 491 | struct btrfs_fs_devices *fs_devs = to_fs_devs(kobj); |
Anand Jain | 248d200 | 2015-03-10 06:38:19 +0800 | [diff] [blame] | 492 | |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 493 | memset(&fs_devs->fsid_kobj, 0, sizeof(struct kobject)); |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 494 | complete(&fs_devs->kobj_unregister); |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | static struct kobj_type btrfs_ktype = { |
| 498 | .sysfs_ops = &kobj_sysfs_ops, |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 499 | .release = btrfs_release_fsid_kobj, |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 500 | }; |
| 501 | |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 502 | static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj) |
| 503 | { |
| 504 | if (kobj->ktype != &btrfs_ktype) |
| 505 | return NULL; |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 506 | return container_of(kobj, struct btrfs_fs_devices, fsid_kobj); |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 507 | } |
| 508 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 509 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj) |
| 510 | { |
| 511 | if (kobj->ktype != &btrfs_ktype) |
| 512 | return NULL; |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 513 | return to_fs_devs(kobj)->fs_info; |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 514 | } |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 515 | |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 516 | #define NUM_FEATURE_BITS 64 |
| 517 | static char btrfs_unknown_feature_names[3][NUM_FEATURE_BITS][13]; |
| 518 | static struct btrfs_feature_attr btrfs_feature_attrs[3][NUM_FEATURE_BITS]; |
| 519 | |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 520 | static const u64 supported_feature_masks[3] = { |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 521 | [FEAT_COMPAT] = BTRFS_FEATURE_COMPAT_SUPP, |
| 522 | [FEAT_COMPAT_RO] = BTRFS_FEATURE_COMPAT_RO_SUPP, |
| 523 | [FEAT_INCOMPAT] = BTRFS_FEATURE_INCOMPAT_SUPP, |
| 524 | }; |
| 525 | |
| 526 | static int addrm_unknown_feature_attrs(struct btrfs_fs_info *fs_info, bool add) |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 527 | { |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 528 | int set; |
| 529 | |
| 530 | for (set = 0; set < FEAT_MAX; set++) { |
| 531 | int i; |
| 532 | struct attribute *attrs[2]; |
| 533 | struct attribute_group agroup = { |
| 534 | .name = "features", |
| 535 | .attrs = attrs, |
| 536 | }; |
| 537 | u64 features = get_features(fs_info, set); |
| 538 | features &= ~supported_feature_masks[set]; |
| 539 | |
| 540 | if (!features) |
| 541 | continue; |
| 542 | |
| 543 | attrs[1] = NULL; |
| 544 | for (i = 0; i < NUM_FEATURE_BITS; i++) { |
| 545 | struct btrfs_feature_attr *fa; |
| 546 | |
| 547 | if (!(features & (1ULL << i))) |
| 548 | continue; |
| 549 | |
| 550 | fa = &btrfs_feature_attrs[set][i]; |
| 551 | attrs[0] = &fa->kobj_attr.attr; |
| 552 | if (add) { |
| 553 | int ret; |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 554 | ret = sysfs_merge_group(&fs_info->fs_devices->fsid_kobj, |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 555 | &agroup); |
| 556 | if (ret) |
| 557 | return ret; |
| 558 | } else |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 559 | sysfs_unmerge_group(&fs_info->fs_devices->fsid_kobj, |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 560 | &agroup); |
| 561 | } |
| 562 | |
| 563 | } |
| 564 | return 0; |
| 565 | } |
| 566 | |
Anand Jain | 2e3e128 | 2015-03-10 06:38:32 +0800 | [diff] [blame] | 567 | static void __btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs) |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 568 | { |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 569 | if (fs_devs->device_dir_kobj) { |
| 570 | kobject_del(fs_devs->device_dir_kobj); |
| 571 | kobject_put(fs_devs->device_dir_kobj); |
| 572 | fs_devs->device_dir_kobj = NULL; |
Anand Jain | aaf1330 | 2015-03-10 06:38:24 +0800 | [diff] [blame] | 573 | } |
| 574 | |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 575 | if (fs_devs->fsid_kobj.state_initialized) { |
| 576 | kobject_del(&fs_devs->fsid_kobj); |
| 577 | kobject_put(&fs_devs->fsid_kobj); |
Anand Jain | f90fc54 | 2015-06-22 18:18:32 +0800 | [diff] [blame] | 578 | wait_for_completion(&fs_devs->kobj_unregister); |
| 579 | } |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 580 | } |
| 581 | |
Anand Jain | 2e3e128 | 2015-03-10 06:38:32 +0800 | [diff] [blame] | 582 | /* when fs_devs is NULL it will remove all fsid kobject */ |
Anand Jain | 1d1c1be | 2015-03-10 06:38:37 +0800 | [diff] [blame] | 583 | void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs) |
Anand Jain | 2e3e128 | 2015-03-10 06:38:32 +0800 | [diff] [blame] | 584 | { |
| 585 | struct list_head *fs_uuids = btrfs_get_fs_uuids(); |
| 586 | |
| 587 | if (fs_devs) { |
| 588 | __btrfs_sysfs_remove_fsid(fs_devs); |
| 589 | return; |
| 590 | } |
| 591 | |
| 592 | list_for_each_entry(fs_devs, fs_uuids, list) { |
| 593 | __btrfs_sysfs_remove_fsid(fs_devs); |
| 594 | } |
| 595 | } |
| 596 | |
Anand Jain | 6618a59 | 2015-08-14 18:32:47 +0800 | [diff] [blame] | 597 | void btrfs_sysfs_remove_mounted(struct btrfs_fs_info *fs_info) |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 598 | { |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 599 | btrfs_reset_fs_info_ptr(fs_info); |
| 600 | |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 601 | if (fs_info->space_info_kobj) { |
| 602 | sysfs_remove_files(fs_info->space_info_kobj, allocation_attrs); |
| 603 | kobject_del(fs_info->space_info_kobj); |
| 604 | kobject_put(fs_info->space_info_kobj); |
| 605 | } |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 606 | addrm_unknown_feature_attrs(fs_info, false); |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 607 | sysfs_remove_group(&fs_info->fs_devices->fsid_kobj, &btrfs_feature_attr_group); |
| 608 | sysfs_remove_files(&fs_info->fs_devices->fsid_kobj, btrfs_attrs); |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 609 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, NULL); |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 610 | } |
| 611 | |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 612 | const char * const btrfs_feature_set_names[3] = { |
| 613 | [FEAT_COMPAT] = "compat", |
| 614 | [FEAT_COMPAT_RO] = "compat_ro", |
| 615 | [FEAT_INCOMPAT] = "incompat", |
| 616 | }; |
| 617 | |
Jeff Mahoney | 3b02a68 | 2013-11-01 13:07:02 -0400 | [diff] [blame] | 618 | char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags) |
| 619 | { |
| 620 | size_t bufsize = 4096; /* safe max, 64 names * 64 bytes */ |
| 621 | int len = 0; |
| 622 | int i; |
| 623 | char *str; |
| 624 | |
| 625 | str = kmalloc(bufsize, GFP_KERNEL); |
| 626 | if (!str) |
| 627 | return str; |
| 628 | |
| 629 | for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) { |
| 630 | const char *name; |
| 631 | |
| 632 | if (!(flags & (1ULL << i))) |
| 633 | continue; |
| 634 | |
| 635 | name = btrfs_feature_attrs[set][i].kobj_attr.attr.name; |
| 636 | len += snprintf(str + len, bufsize - len, "%s%s", |
| 637 | len ? "," : "", name); |
| 638 | } |
| 639 | |
| 640 | return str; |
| 641 | } |
| 642 | |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 643 | static void init_feature_attrs(void) |
| 644 | { |
| 645 | struct btrfs_feature_attr *fa; |
| 646 | int set, i; |
| 647 | |
| 648 | BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names) != |
| 649 | ARRAY_SIZE(btrfs_feature_attrs)); |
| 650 | BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names[0]) != |
| 651 | ARRAY_SIZE(btrfs_feature_attrs[0])); |
| 652 | |
Jeff Mahoney | 3b02a68 | 2013-11-01 13:07:02 -0400 | [diff] [blame] | 653 | memset(btrfs_feature_attrs, 0, sizeof(btrfs_feature_attrs)); |
| 654 | memset(btrfs_unknown_feature_names, 0, |
| 655 | sizeof(btrfs_unknown_feature_names)); |
| 656 | |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 657 | for (i = 0; btrfs_supported_feature_attrs[i]; i++) { |
| 658 | struct btrfs_feature_attr *sfa; |
| 659 | struct attribute *a = btrfs_supported_feature_attrs[i]; |
Jeff Mahoney | 3b02a68 | 2013-11-01 13:07:02 -0400 | [diff] [blame] | 660 | int bit; |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 661 | sfa = attr_to_btrfs_feature_attr(a); |
Jeff Mahoney | 3b02a68 | 2013-11-01 13:07:02 -0400 | [diff] [blame] | 662 | bit = ilog2(sfa->feature_bit); |
| 663 | fa = &btrfs_feature_attrs[sfa->feature_set][bit]; |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 664 | |
| 665 | fa->kobj_attr.attr.name = sfa->kobj_attr.attr.name; |
| 666 | } |
| 667 | |
| 668 | for (set = 0; set < FEAT_MAX; set++) { |
| 669 | for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) { |
| 670 | char *name = btrfs_unknown_feature_names[set][i]; |
| 671 | fa = &btrfs_feature_attrs[set][i]; |
| 672 | |
| 673 | if (fa->kobj_attr.attr.name) |
| 674 | continue; |
| 675 | |
| 676 | snprintf(name, 13, "%s:%u", |
| 677 | btrfs_feature_set_names[set], i); |
| 678 | |
| 679 | fa->kobj_attr.attr.name = name; |
| 680 | fa->kobj_attr.attr.mode = S_IRUGO; |
| 681 | fa->feature_set = set; |
| 682 | fa->feature_bit = 1ULL << i; |
| 683 | } |
| 684 | } |
| 685 | } |
| 686 | |
Anand Jain | e7e1aa9 | 2015-03-10 06:38:21 +0800 | [diff] [blame] | 687 | /* when one_device is NULL, it removes all device links */ |
| 688 | |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 689 | int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices *fs_devices, |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 690 | struct btrfs_device *one_device) |
| 691 | { |
| 692 | struct hd_struct *disk; |
| 693 | struct kobject *disk_kobj; |
| 694 | |
Anand Jain | 6c14a16 | 2015-03-10 06:38:34 +0800 | [diff] [blame] | 695 | if (!fs_devices->device_dir_kobj) |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 696 | return -EINVAL; |
| 697 | |
Liu Bo | 87fa3bb | 2014-07-29 19:09:39 +0800 | [diff] [blame] | 698 | if (one_device && one_device->bdev) { |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 699 | disk = one_device->bdev->bd_part; |
| 700 | disk_kobj = &part_to_dev(disk)->kobj; |
| 701 | |
Anand Jain | 6c14a16 | 2015-03-10 06:38:34 +0800 | [diff] [blame] | 702 | sysfs_remove_link(fs_devices->device_dir_kobj, |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 703 | disk_kobj->name); |
| 704 | } |
| 705 | |
Anand Jain | e7e1aa9 | 2015-03-10 06:38:21 +0800 | [diff] [blame] | 706 | if (one_device) |
| 707 | return 0; |
| 708 | |
| 709 | list_for_each_entry(one_device, |
Anand Jain | 6c14a16 | 2015-03-10 06:38:34 +0800 | [diff] [blame] | 710 | &fs_devices->devices, dev_list) { |
Anand Jain | e7e1aa9 | 2015-03-10 06:38:21 +0800 | [diff] [blame] | 711 | if (!one_device->bdev) |
| 712 | continue; |
| 713 | disk = one_device->bdev->bd_part; |
| 714 | disk_kobj = &part_to_dev(disk)->kobj; |
| 715 | |
Anand Jain | 6c14a16 | 2015-03-10 06:38:34 +0800 | [diff] [blame] | 716 | sysfs_remove_link(fs_devices->device_dir_kobj, |
Anand Jain | e7e1aa9 | 2015-03-10 06:38:21 +0800 | [diff] [blame] | 717 | disk_kobj->name); |
| 718 | } |
| 719 | |
Anand Jain | 99994cd | 2014-06-03 11:36:00 +0800 | [diff] [blame] | 720 | return 0; |
| 721 | } |
| 722 | |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 723 | int btrfs_sysfs_add_device(struct btrfs_fs_devices *fs_devs) |
Anand Jain | 00c921c | 2015-03-10 06:38:28 +0800 | [diff] [blame] | 724 | { |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 725 | if (!fs_devs->device_dir_kobj) |
| 726 | fs_devs->device_dir_kobj = kobject_create_and_add("devices", |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 727 | &fs_devs->fsid_kobj); |
Anand Jain | 00c921c | 2015-03-10 06:38:28 +0800 | [diff] [blame] | 728 | |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 729 | if (!fs_devs->device_dir_kobj) |
Anand Jain | 00c921c | 2015-03-10 06:38:28 +0800 | [diff] [blame] | 730 | return -ENOMEM; |
| 731 | |
| 732 | return 0; |
| 733 | } |
| 734 | |
Anand Jain | e3bd697 | 2015-08-14 18:32:48 +0800 | [diff] [blame] | 735 | int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices, |
Anand Jain | 1ba4381 | 2015-03-10 06:38:33 +0800 | [diff] [blame] | 736 | struct btrfs_device *one_device) |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 737 | { |
| 738 | int error = 0; |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 739 | struct btrfs_device *dev; |
| 740 | |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 741 | list_for_each_entry(dev, &fs_devices->devices, dev_list) { |
Anand Jain | f085381 | 2014-01-15 17:22:28 +0800 | [diff] [blame] | 742 | struct hd_struct *disk; |
| 743 | struct kobject *disk_kobj; |
| 744 | |
| 745 | if (!dev->bdev) |
| 746 | continue; |
| 747 | |
Anand Jain | 0d39376 | 2014-06-03 11:36:01 +0800 | [diff] [blame] | 748 | if (one_device && one_device != dev) |
| 749 | continue; |
| 750 | |
Anand Jain | f085381 | 2014-01-15 17:22:28 +0800 | [diff] [blame] | 751 | disk = dev->bdev->bd_part; |
| 752 | disk_kobj = &part_to_dev(disk)->kobj; |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 753 | |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 754 | error = sysfs_create_link(fs_devices->device_dir_kobj, |
Jeff Mahoney | 29e5be2 | 2013-11-01 13:07:05 -0400 | [diff] [blame] | 755 | disk_kobj, disk_kobj->name); |
| 756 | if (error) |
| 757 | break; |
| 758 | } |
| 759 | |
| 760 | return error; |
| 761 | } |
| 762 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 763 | /* /sys/fs/btrfs/ entry */ |
| 764 | static struct kset *btrfs_kset; |
| 765 | |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 766 | /* /sys/kernel/debug/btrfs */ |
| 767 | static struct dentry *btrfs_debugfs_root_dentry; |
| 768 | |
| 769 | /* Debugging tunables and exported data */ |
| 770 | u64 btrfs_debugfs_test; |
| 771 | |
Anand Jain | 7205921 | 2015-03-10 06:38:26 +0800 | [diff] [blame] | 772 | /* |
| 773 | * Can be called by the device discovery thread. |
| 774 | * And parent can be specified for seed device |
| 775 | */ |
Anand Jain | 0c10e2d | 2015-03-10 06:38:35 +0800 | [diff] [blame] | 776 | int btrfs_sysfs_add_fsid(struct btrfs_fs_devices *fs_devs, |
Anand Jain | 7205921 | 2015-03-10 06:38:26 +0800 | [diff] [blame] | 777 | struct kobject *parent) |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 778 | { |
| 779 | int error; |
| 780 | |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 781 | init_completion(&fs_devs->kobj_unregister); |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 782 | fs_devs->fsid_kobj.kset = btrfs_kset; |
| 783 | error = kobject_init_and_add(&fs_devs->fsid_kobj, |
Anand Jain | 24bd69c | 2015-03-10 06:38:39 +0800 | [diff] [blame] | 784 | &btrfs_ktype, parent, "%pU", fs_devs->fsid); |
Anand Jain | 7205921 | 2015-03-10 06:38:26 +0800 | [diff] [blame] | 785 | return error; |
| 786 | } |
| 787 | |
Anand Jain | 96f3136 | 2015-08-14 18:32:46 +0800 | [diff] [blame] | 788 | int btrfs_sysfs_add_mounted(struct btrfs_fs_info *fs_info) |
Anand Jain | 7205921 | 2015-03-10 06:38:26 +0800 | [diff] [blame] | 789 | { |
| 790 | int error; |
Anand Jain | 2e7910d | 2015-03-10 06:38:29 +0800 | [diff] [blame] | 791 | struct btrfs_fs_devices *fs_devs = fs_info->fs_devices; |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 792 | struct kobject *fsid_kobj = &fs_devs->fsid_kobj; |
Anand Jain | 7205921 | 2015-03-10 06:38:26 +0800 | [diff] [blame] | 793 | |
Anand Jain | 5a13f43 | 2015-03-10 06:38:31 +0800 | [diff] [blame] | 794 | btrfs_set_fs_info_ptr(fs_info); |
| 795 | |
Anand Jain | e3bd697 | 2015-08-14 18:32:48 +0800 | [diff] [blame] | 796 | error = btrfs_sysfs_add_device_link(fs_devs, NULL); |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 797 | if (error) |
| 798 | return error; |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame] | 799 | |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 800 | error = sysfs_create_files(fsid_kobj, btrfs_attrs); |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 801 | if (error) { |
Anand Jain | 3257604 | 2015-08-14 18:32:49 +0800 | [diff] [blame] | 802 | btrfs_sysfs_rm_device_link(fs_devs, NULL); |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 803 | return error; |
| 804 | } |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 805 | |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 806 | error = sysfs_create_group(fsid_kobj, |
Anand Jain | 0dd2906 | 2015-03-10 06:38:27 +0800 | [diff] [blame] | 807 | &btrfs_feature_attr_group); |
| 808 | if (error) |
| 809 | goto failure; |
| 810 | |
Jeff Mahoney | e453d98 | 2013-11-21 10:37:16 -0500 | [diff] [blame] | 811 | error = addrm_unknown_feature_attrs(fs_info, true); |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 812 | if (error) |
| 813 | goto failure; |
| 814 | |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 815 | fs_info->space_info_kobj = kobject_create_and_add("allocation", |
Anand Jain | c1b7e47 | 2015-08-14 18:32:50 +0800 | [diff] [blame] | 816 | fsid_kobj); |
Jeff Mahoney | 6ab0a20 | 2013-11-01 13:07:04 -0400 | [diff] [blame] | 817 | if (!fs_info->space_info_kobj) { |
| 818 | error = -ENOMEM; |
| 819 | goto failure; |
| 820 | } |
| 821 | |
| 822 | error = sysfs_create_files(fs_info->space_info_kobj, allocation_attrs); |
| 823 | if (error) |
| 824 | goto failure; |
| 825 | |
Jeff Mahoney | 79da4fa | 2013-11-01 13:07:00 -0400 | [diff] [blame] | 826 | return 0; |
| 827 | failure: |
Anand Jain | 6618a59 | 2015-08-14 18:32:47 +0800 | [diff] [blame] | 828 | btrfs_sysfs_remove_mounted(fs_info); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 829 | return error; |
| 830 | } |
| 831 | |
David Sterba | 444e751 | 2016-01-21 18:50:40 +0100 | [diff] [blame] | 832 | |
| 833 | /* |
| 834 | * Change per-fs features in /sys/fs/btrfs/UUID/features to match current |
| 835 | * values in superblock. Call after any changes to incompat/compat_ro flags |
| 836 | */ |
| 837 | void btrfs_sysfs_feature_update(struct btrfs_fs_info *fs_info, |
| 838 | u64 bit, enum btrfs_feature_set set) |
| 839 | { |
| 840 | struct btrfs_fs_devices *fs_devs; |
| 841 | struct kobject *fsid_kobj; |
| 842 | u64 features; |
| 843 | int ret; |
| 844 | |
| 845 | if (!fs_info) |
| 846 | return; |
| 847 | |
| 848 | features = get_features(fs_info, set); |
| 849 | ASSERT(bit & supported_feature_masks[set]); |
| 850 | |
| 851 | fs_devs = fs_info->fs_devices; |
| 852 | fsid_kobj = &fs_devs->fsid_kobj; |
| 853 | |
David Sterba | bf60920 | 2016-01-27 14:06:29 +0100 | [diff] [blame] | 854 | if (!fsid_kobj->state_initialized) |
| 855 | return; |
| 856 | |
David Sterba | 444e751 | 2016-01-21 18:50:40 +0100 | [diff] [blame] | 857 | /* |
| 858 | * FIXME: this is too heavy to update just one value, ideally we'd like |
| 859 | * to use sysfs_update_group but some refactoring is needed first. |
| 860 | */ |
| 861 | sysfs_remove_group(fsid_kobj, &btrfs_feature_attr_group); |
| 862 | ret = sysfs_create_group(fsid_kobj, &btrfs_feature_attr_group); |
| 863 | } |
| 864 | |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 865 | static int btrfs_init_debugfs(void) |
| 866 | { |
| 867 | #ifdef CONFIG_DEBUG_FS |
| 868 | btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL); |
| 869 | if (!btrfs_debugfs_root_dentry) |
| 870 | return -ENOMEM; |
| 871 | |
David Sterba | b0de6c4 | 2016-09-01 14:37:53 +0200 | [diff] [blame] | 872 | /* |
| 873 | * Example code, how to export data through debugfs. |
| 874 | * |
| 875 | * file: /sys/kernel/debug/btrfs/test |
| 876 | * contents of: btrfs_debugfs_test |
| 877 | */ |
| 878 | #ifdef CONFIG_BTRFS_DEBUG |
Eric Sandeen | 07f6a48 | 2016-08-31 16:49:29 -0500 | [diff] [blame] | 879 | debugfs_create_u64("test", S_IRUGO | S_IWUSR, btrfs_debugfs_root_dentry, |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 880 | &btrfs_debugfs_test); |
| 881 | #endif |
David Sterba | b0de6c4 | 2016-09-01 14:37:53 +0200 | [diff] [blame] | 882 | |
| 883 | #endif |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 884 | return 0; |
| 885 | } |
| 886 | |
Liu Bo | f5c29bd | 2017-11-02 17:21:50 -0600 | [diff] [blame] | 887 | int __init btrfs_init_sysfs(void) |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 888 | { |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 889 | int ret; |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 890 | |
Greg KH | e3fe4e7 | 2008-02-20 14:14:16 -0500 | [diff] [blame] | 891 | btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj); |
| 892 | if (!btrfs_kset) |
| 893 | return -ENOMEM; |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 894 | |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 895 | ret = btrfs_init_debugfs(); |
| 896 | if (ret) |
Filipe Manana | 001a648 | 2015-01-23 18:27:00 +0000 | [diff] [blame] | 897 | goto out1; |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 898 | |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 899 | init_feature_attrs(); |
| 900 | ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
Filipe Manana | 001a648 | 2015-01-23 18:27:00 +0000 | [diff] [blame] | 901 | if (ret) |
| 902 | goto out2; |
| 903 | |
| 904 | return 0; |
| 905 | out2: |
| 906 | debugfs_remove_recursive(btrfs_debugfs_root_dentry); |
| 907 | out1: |
| 908 | kset_unregister(btrfs_kset); |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 909 | |
| 910 | return ret; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 911 | } |
| 912 | |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 913 | void __cold btrfs_exit_sysfs(void) |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 914 | { |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 915 | sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
Greg KH | e3fe4e7 | 2008-02-20 14:14:16 -0500 | [diff] [blame] | 916 | kset_unregister(btrfs_kset); |
David Sterba | 1bae309 | 2014-02-05 15:36:18 +0100 | [diff] [blame] | 917 | debugfs_remove_recursive(btrfs_debugfs_root_dentry); |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 918 | } |
Chris Mason | 55d4741 | 2008-02-20 16:02:51 -0500 | [diff] [blame] | 919 | |