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> |
| 25 | |
Chris Mason | bae45de | 2007-04-04 21:22:22 -0400 | [diff] [blame] | 26 | #include "ctree.h" |
| 27 | #include "disk-io.h" |
| 28 | #include "transaction.h" |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 29 | #include "sysfs.h" |
| 30 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 31 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 32 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 33 | static u64 get_features(struct btrfs_fs_info *fs_info, |
| 34 | enum btrfs_feature_set set) |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 35 | { |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 36 | struct btrfs_super_block *disk_super = fs_info->super_copy; |
| 37 | if (set == FEAT_COMPAT) |
| 38 | return btrfs_super_compat_flags(disk_super); |
| 39 | else if (set == FEAT_COMPAT_RO) |
| 40 | return btrfs_super_compat_ro_flags(disk_super); |
| 41 | else |
| 42 | return btrfs_super_incompat_flags(disk_super); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 43 | } |
| 44 | |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 45 | static ssize_t btrfs_feature_attr_show(struct kobject *kobj, |
| 46 | struct kobj_attribute *a, char *buf) |
| 47 | { |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 48 | int val = 0; |
| 49 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 50 | if (fs_info) { |
| 51 | struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a); |
| 52 | u64 features = get_features(fs_info, fa->feature_set); |
| 53 | if (features & fa->feature_bit) |
| 54 | val = 1; |
| 55 | } |
| 56 | |
| 57 | return snprintf(buf, PAGE_SIZE, "%d\n", val); |
| 58 | } |
| 59 | |
| 60 | static umode_t btrfs_feature_visible(struct kobject *kobj, |
| 61 | struct attribute *attr, int unused) |
| 62 | { |
| 63 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 64 | umode_t mode = attr->mode; |
| 65 | |
| 66 | if (fs_info) { |
| 67 | struct btrfs_feature_attr *fa; |
| 68 | u64 features; |
| 69 | |
| 70 | fa = attr_to_btrfs_feature_attr(attr); |
| 71 | features = get_features(fs_info, fa->feature_set); |
| 72 | |
| 73 | if (!(features & fa->feature_bit)) |
| 74 | mode = 0; |
| 75 | } |
| 76 | |
| 77 | return mode; |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | BTRFS_FEAT_ATTR_INCOMPAT(mixed_backref, MIXED_BACKREF); |
| 81 | BTRFS_FEAT_ATTR_INCOMPAT(default_subvol, DEFAULT_SUBVOL); |
| 82 | BTRFS_FEAT_ATTR_INCOMPAT(mixed_groups, MIXED_GROUPS); |
| 83 | BTRFS_FEAT_ATTR_INCOMPAT(compress_lzo, COMPRESS_LZO); |
| 84 | BTRFS_FEAT_ATTR_INCOMPAT(compress_lzov2, COMPRESS_LZOv2); |
| 85 | BTRFS_FEAT_ATTR_INCOMPAT(big_metadata, BIG_METADATA); |
| 86 | BTRFS_FEAT_ATTR_INCOMPAT(extended_iref, EXTENDED_IREF); |
| 87 | BTRFS_FEAT_ATTR_INCOMPAT(raid56, RAID56); |
| 88 | BTRFS_FEAT_ATTR_INCOMPAT(skinny_metadata, SKINNY_METADATA); |
| 89 | |
| 90 | static struct attribute *btrfs_supported_feature_attrs[] = { |
| 91 | BTRFS_FEAT_ATTR_PTR(mixed_backref), |
| 92 | BTRFS_FEAT_ATTR_PTR(default_subvol), |
| 93 | BTRFS_FEAT_ATTR_PTR(mixed_groups), |
| 94 | BTRFS_FEAT_ATTR_PTR(compress_lzo), |
| 95 | BTRFS_FEAT_ATTR_PTR(compress_lzov2), |
| 96 | BTRFS_FEAT_ATTR_PTR(big_metadata), |
| 97 | BTRFS_FEAT_ATTR_PTR(extended_iref), |
| 98 | BTRFS_FEAT_ATTR_PTR(raid56), |
| 99 | BTRFS_FEAT_ATTR_PTR(skinny_metadata), |
| 100 | NULL |
| 101 | }; |
| 102 | |
| 103 | static const struct attribute_group btrfs_feature_attr_group = { |
| 104 | .name = "features", |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 105 | .is_visible = btrfs_feature_visible, |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 106 | .attrs = btrfs_supported_feature_attrs, |
| 107 | }; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 108 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 109 | static void btrfs_release_super_kobj(struct kobject *kobj) |
| 110 | { |
| 111 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
| 112 | complete(&fs_info->kobj_unregister); |
| 113 | } |
| 114 | |
| 115 | static struct kobj_type btrfs_ktype = { |
| 116 | .sysfs_ops = &kobj_sysfs_ops, |
| 117 | .release = btrfs_release_super_kobj, |
| 118 | }; |
| 119 | |
| 120 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj) |
| 121 | { |
| 122 | if (kobj->ktype != &btrfs_ktype) |
| 123 | return NULL; |
| 124 | return container_of(kobj, struct btrfs_fs_info, super_kobj); |
| 125 | } |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 126 | |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 127 | void btrfs_sysfs_remove_one(struct btrfs_fs_info *fs_info) |
| 128 | { |
| 129 | kobject_del(&fs_info->super_kobj); |
| 130 | kobject_put(&fs_info->super_kobj); |
| 131 | wait_for_completion(&fs_info->kobj_unregister); |
| 132 | } |
| 133 | |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 134 | /* /sys/fs/btrfs/ entry */ |
| 135 | static struct kset *btrfs_kset; |
| 136 | |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 137 | int btrfs_sysfs_add_one(struct btrfs_fs_info *fs_info) |
| 138 | { |
| 139 | int error; |
| 140 | |
| 141 | init_completion(&fs_info->kobj_unregister); |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 142 | fs_info->super_kobj.kset = btrfs_kset; |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 143 | error = kobject_init_and_add(&fs_info->super_kobj, &btrfs_ktype, NULL, |
| 144 | "%pU", fs_info->fsid); |
Jeff Mahoney | 510d736 | 2013-11-01 13:06:59 -0400 | [diff] [blame^] | 145 | |
| 146 | error = sysfs_create_group(&fs_info->super_kobj, |
| 147 | &btrfs_feature_attr_group); |
| 148 | if (error) |
| 149 | btrfs_sysfs_remove_one(fs_info); |
Jeff Mahoney | 5ac1d20 | 2013-11-01 13:06:58 -0400 | [diff] [blame] | 150 | return error; |
| 151 | } |
| 152 | |
Christoph Hellwig | b214107 | 2008-09-05 16:43:31 -0400 | [diff] [blame] | 153 | int btrfs_init_sysfs(void) |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 154 | { |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 155 | int ret; |
Greg KH | e3fe4e7 | 2008-02-20 14:14:16 -0500 | [diff] [blame] | 156 | btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj); |
| 157 | if (!btrfs_kset) |
| 158 | return -ENOMEM; |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 159 | |
| 160 | ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
| 161 | if (ret) { |
| 162 | kset_unregister(btrfs_kset); |
| 163 | return ret; |
| 164 | } |
| 165 | |
Greg KH | e3fe4e7 | 2008-02-20 14:14:16 -0500 | [diff] [blame] | 166 | return 0; |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 167 | } |
| 168 | |
Christoph Hellwig | b214107 | 2008-09-05 16:43:31 -0400 | [diff] [blame] | 169 | void btrfs_exit_sysfs(void) |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 170 | { |
Jeff Mahoney | 079b72b | 2013-11-01 13:06:57 -0400 | [diff] [blame] | 171 | sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
Greg KH | e3fe4e7 | 2008-02-20 14:14:16 -0500 | [diff] [blame] | 172 | kset_unregister(btrfs_kset); |
Josef Bacik | 58176a9 | 2007-08-29 15:47:34 -0400 | [diff] [blame] | 173 | } |
Chris Mason | 55d4741 | 2008-02-20 16:02:51 -0500 | [diff] [blame] | 174 | |