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