]>
Commit | Line | Data |
---|---|---|
6cbd5570 CM |
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 | ||
58176a96 JB |
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> | |
58176a96 | 24 | #include <linux/kobject.h> |
79da4fa4 | 25 | #include <linux/bug.h> |
29e5be24 | 26 | #include <linux/genhd.h> |
1bae3098 | 27 | #include <linux/debugfs.h> |
58176a96 | 28 | |
bae45de0 CM |
29 | #include "ctree.h" |
30 | #include "disk-io.h" | |
31 | #include "transaction.h" | |
079b72bc | 32 | #include "sysfs.h" |
29e5be24 | 33 | #include "volumes.h" |
079b72bc | 34 | |
510d7360 | 35 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj); |
2e7910d6 | 36 | static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj); |
5ac1d209 | 37 | |
510d7360 JM |
38 | static u64 get_features(struct btrfs_fs_info *fs_info, |
39 | enum btrfs_feature_set set) | |
5ac1d209 | 40 | { |
510d7360 JM |
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); | |
5ac1d209 JM |
48 | } |
49 | ||
ba631941 JM |
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: | |
62e85577 | 80 | pr_warn("btrfs: sysfs: unknown feature set %d\n", |
cc37bb04 DS |
81 | fa->feature_set); |
82 | return 0; | |
ba631941 JM |
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 | ||
510d7360 JM |
93 | static ssize_t btrfs_feature_attr_show(struct kobject *kobj, |
94 | struct kobj_attribute *a, char *buf) | |
5ac1d209 | 95 | { |
510d7360 | 96 | int val = 0; |
5ac1d209 | 97 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); |
ba631941 | 98 | struct btrfs_feature_attr *fa = to_btrfs_feature_attr(a); |
510d7360 | 99 | if (fs_info) { |
510d7360 JM |
100 | u64 features = get_features(fs_info, fa->feature_set); |
101 | if (features & fa->feature_bit) | |
102 | val = 1; | |
ba631941 JM |
103 | } else |
104 | val = can_modify_feature(fa); | |
510d7360 JM |
105 | |
106 | return snprintf(buf, PAGE_SIZE, "%d\n", val); | |
5ac1d209 JM |
107 | } |
108 | ||
ba631941 JM |
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); | |
ba631941 JM |
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 | ||
bc98a42c | 123 | if (sb_rdonly(fs_info->sb)) |
ee611138 DS |
124 | return -EROFS; |
125 | ||
ba631941 JM |
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 | ||
ba631941 JM |
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 | ||
0eae2747 DS |
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); | |
ba631941 JM |
173 | |
174 | return count; | |
175 | } | |
176 | ||
510d7360 JM |
177 | static umode_t btrfs_feature_visible(struct kobject *kobj, |
178 | struct attribute *attr, int unused) | |
079b72bc | 179 | { |
510d7360 JM |
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 | ||
ba631941 JM |
190 | if (can_modify_feature(fa)) |
191 | mode |= S_IWUSR; | |
192 | else if (!(features & fa->feature_bit)) | |
510d7360 JM |
193 | mode = 0; |
194 | } | |
195 | ||
196 | return mode; | |
079b72bc JM |
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); | |
5c1aab1d | 203 | BTRFS_FEAT_ATTR_INCOMPAT(compress_zstd, COMPRESS_ZSTD); |
079b72bc JM |
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); | |
c736c095 | 208 | BTRFS_FEAT_ATTR_INCOMPAT(no_holes, NO_HOLES); |
3b5bb73b | 209 | BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree, FREE_SPACE_TREE); |
079b72bc JM |
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), | |
5c1aab1d | 216 | BTRFS_FEAT_ATTR_PTR(compress_zstd), |
079b72bc JM |
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), | |
c736c095 | 221 | BTRFS_FEAT_ATTR_PTR(no_holes), |
3b5bb73b | 222 | BTRFS_FEAT_ATTR_PTR(free_space_tree), |
079b72bc JM |
223 | NULL |
224 | }; | |
225 | ||
226 | static const struct attribute_group btrfs_feature_attr_group = { | |
227 | .name = "features", | |
510d7360 | 228 | .is_visible = btrfs_feature_visible, |
079b72bc JM |
229 | .attrs = btrfs_supported_feature_attrs, |
230 | }; | |
58176a96 | 231 | |
6ab0a202 JM |
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 | } | |
a969f4cc | 250 | BTRFS_ATTR(allocation, global_rsv_size, global_rsv_size_show); |
6ab0a202 JM |
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 | } | |
a969f4cc | 259 | BTRFS_ATTR(allocation, global_rsv_reserved, global_rsv_reserved_show); |
6ab0a202 JM |
260 | |
261 | #define to_space_info(_kobj) container_of(_kobj, struct btrfs_space_info, kobj) | |
c1895442 | 262 | #define to_raid_kobj(_kobj) container_of(_kobj, struct raid_kobject, kobj) |
6ab0a202 JM |
263 | |
264 | static ssize_t raid_bytes_show(struct kobject *kobj, | |
265 | struct kobj_attribute *attr, char *buf); | |
a969f4cc HK |
266 | BTRFS_ATTR(raid, total_bytes, raid_bytes_show); |
267 | BTRFS_ATTR(raid, used_bytes, raid_bytes_show); | |
6ab0a202 JM |
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; | |
c1895442 | 275 | int index = to_raid_kobj(kobj)->raid_type; |
6ab0a202 JM |
276 | u64 val = 0; |
277 | ||
278 | down_read(&sinfo->groups_sem); | |
279 | list_for_each_entry(block_group, &sinfo->block_groups[index], list) { | |
a969f4cc | 280 | if (&attr->attr == BTRFS_ATTR_PTR(raid, total_bytes)) |
6ab0a202 JM |
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[] = { | |
a969f4cc HK |
290 | BTRFS_ATTR_PTR(raid, total_bytes), |
291 | BTRFS_ATTR_PTR(raid, used_bytes), | |
6ab0a202 JM |
292 | NULL |
293 | }; | |
294 | ||
295 | static void release_raid_kobj(struct kobject *kobj) | |
296 | { | |
c1895442 | 297 | kfree(to_raid_kobj(kobj)); |
6ab0a202 JM |
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 | } \ | |
a969f4cc | 314 | BTRFS_ATTR(space_info, field, btrfs_space_info_show_##field) |
6ab0a202 JM |
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); | |
c1fd5c30 | 331 | SPACE_INFO_ATTR(bytes_readonly); |
6ab0a202 JM |
332 | SPACE_INFO_ATTR(disk_used); |
333 | SPACE_INFO_ATTR(disk_total); | |
a969f4cc HK |
334 | BTRFS_ATTR(space_info, total_bytes_pinned, |
335 | btrfs_space_info_show_total_bytes_pinned); | |
6ab0a202 JM |
336 | |
337 | static struct attribute *space_info_attrs[] = { | |
a969f4cc HK |
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), | |
6ab0a202 JM |
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[] = { | |
a969f4cc HK |
365 | BTRFS_ATTR_PTR(allocation, global_rsv_reserved), |
366 | BTRFS_ATTR_PTR(allocation, global_rsv_size), | |
6ab0a202 JM |
367 | NULL, |
368 | }; | |
369 | ||
f8ba9c11 JM |
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); | |
48fcc3ff | 374 | char *label = fs_info->super_copy->label; |
ee17fc80 DS |
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; | |
f8ba9c11 JM |
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); | |
48fcc3ff | 389 | size_t p_len; |
f8ba9c11 | 390 | |
66ac9fe7 DS |
391 | if (!fs_info) |
392 | return -EPERM; | |
393 | ||
bc98a42c | 394 | if (sb_rdonly(fs_info->sb)) |
79aec2b8 AJ |
395 | return -EROFS; |
396 | ||
48fcc3ff ST |
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) | |
f8ba9c11 | 404 | return -EINVAL; |
f8ba9c11 | 405 | |
a6f69dc8 | 406 | spin_lock(&fs_info->super_lock); |
48fcc3ff ST |
407 | memset(fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE); |
408 | memcpy(fs_info->super_copy->label, buf, p_len); | |
a6f69dc8 | 409 | spin_unlock(&fs_info->super_lock); |
f8ba9c11 | 410 | |
a6f69dc8 DS |
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); | |
f8ba9c11 | 416 | |
a6f69dc8 | 417 | return len; |
f8ba9c11 | 418 | } |
a969f4cc | 419 | BTRFS_ATTR_RW(, label, btrfs_label_show, btrfs_label_store); |
f8ba9c11 | 420 | |
df93589a DS |
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 | ||
3c181c12 | 426 | return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->nodesize); |
df93589a DS |
427 | } |
428 | ||
a969f4cc | 429 | BTRFS_ATTR(, nodesize, btrfs_nodesize_show); |
df93589a DS |
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 | ||
3c181c12 | 436 | return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->sectorsize); |
df93589a DS |
437 | } |
438 | ||
a969f4cc | 439 | BTRFS_ATTR(, sectorsize, btrfs_sectorsize_show); |
df93589a DS |
440 | |
441 | static ssize_t btrfs_clone_alignment_show(struct kobject *kobj, | |
442 | struct kobj_attribute *a, char *buf) | |
443 | { | |
444 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); | |
445 | ||
3c181c12 | 446 | return snprintf(buf, PAGE_SIZE, "%u\n", fs_info->sectorsize); |
df93589a DS |
447 | } |
448 | ||
a969f4cc | 449 | BTRFS_ATTR(, clone_alignment, btrfs_clone_alignment_show); |
df93589a | 450 | |
2723480a SD |
451 | static ssize_t quota_override_show(struct kobject *kobj, |
452 | struct kobj_attribute *a, char *buf) | |
453 | { | |
454 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); | |
455 | int quota_override; | |
456 | ||
457 | quota_override = test_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); | |
458 | return snprintf(buf, PAGE_SIZE, "%d\n", quota_override); | |
459 | } | |
460 | ||
461 | static ssize_t quota_override_store(struct kobject *kobj, | |
462 | struct kobj_attribute *a, | |
463 | const char *buf, size_t len) | |
464 | { | |
465 | struct btrfs_fs_info *fs_info = to_fs_info(kobj); | |
466 | unsigned long knob; | |
467 | int err; | |
468 | ||
469 | if (!fs_info) | |
470 | return -EPERM; | |
471 | ||
472 | if (!capable(CAP_SYS_RESOURCE)) | |
473 | return -EPERM; | |
474 | ||
475 | err = kstrtoul(buf, 10, &knob); | |
476 | if (err) | |
477 | return err; | |
478 | if (knob > 1) | |
479 | return -EINVAL; | |
480 | ||
481 | if (knob) | |
482 | set_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); | |
483 | else | |
484 | clear_bit(BTRFS_FS_QUOTA_OVERRIDE, &fs_info->flags); | |
485 | ||
486 | return len; | |
487 | } | |
488 | ||
a969f4cc | 489 | BTRFS_ATTR_RW(, quota_override, quota_override_show, quota_override_store); |
2723480a | 490 | |
0dd2906f | 491 | static const struct attribute *btrfs_attrs[] = { |
a969f4cc HK |
492 | BTRFS_ATTR_PTR(, label), |
493 | BTRFS_ATTR_PTR(, nodesize), | |
494 | BTRFS_ATTR_PTR(, sectorsize), | |
495 | BTRFS_ATTR_PTR(, clone_alignment), | |
496 | BTRFS_ATTR_PTR(, quota_override), | |
f8ba9c11 JM |
497 | NULL, |
498 | }; | |
499 | ||
c1b7e474 | 500 | static void btrfs_release_fsid_kobj(struct kobject *kobj) |
510d7360 | 501 | { |
2e7910d6 | 502 | struct btrfs_fs_devices *fs_devs = to_fs_devs(kobj); |
248d200d | 503 | |
c1b7e474 | 504 | memset(&fs_devs->fsid_kobj, 0, sizeof(struct kobject)); |
2e7910d6 | 505 | complete(&fs_devs->kobj_unregister); |
510d7360 JM |
506 | } |
507 | ||
508 | static struct kobj_type btrfs_ktype = { | |
509 | .sysfs_ops = &kobj_sysfs_ops, | |
c1b7e474 | 510 | .release = btrfs_release_fsid_kobj, |
510d7360 JM |
511 | }; |
512 | ||
2e7910d6 AJ |
513 | static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj) |
514 | { | |
515 | if (kobj->ktype != &btrfs_ktype) | |
516 | return NULL; | |
c1b7e474 | 517 | return container_of(kobj, struct btrfs_fs_devices, fsid_kobj); |
2e7910d6 AJ |
518 | } |
519 | ||
510d7360 JM |
520 | static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj) |
521 | { | |
522 | if (kobj->ktype != &btrfs_ktype) | |
523 | return NULL; | |
2e7910d6 | 524 | return to_fs_devs(kobj)->fs_info; |
510d7360 | 525 | } |
58176a96 | 526 | |
e453d989 JM |
527 | #define NUM_FEATURE_BITS 64 |
528 | static char btrfs_unknown_feature_names[3][NUM_FEATURE_BITS][13]; | |
529 | static struct btrfs_feature_attr btrfs_feature_attrs[3][NUM_FEATURE_BITS]; | |
530 | ||
e8c9f186 | 531 | static const u64 supported_feature_masks[3] = { |
e453d989 JM |
532 | [FEAT_COMPAT] = BTRFS_FEATURE_COMPAT_SUPP, |
533 | [FEAT_COMPAT_RO] = BTRFS_FEATURE_COMPAT_RO_SUPP, | |
534 | [FEAT_INCOMPAT] = BTRFS_FEATURE_INCOMPAT_SUPP, | |
535 | }; | |
536 | ||
537 | static int addrm_unknown_feature_attrs(struct btrfs_fs_info *fs_info, bool add) | |
538 | { | |
539 | int set; | |
540 | ||
541 | for (set = 0; set < FEAT_MAX; set++) { | |
542 | int i; | |
543 | struct attribute *attrs[2]; | |
544 | struct attribute_group agroup = { | |
545 | .name = "features", | |
546 | .attrs = attrs, | |
547 | }; | |
548 | u64 features = get_features(fs_info, set); | |
549 | features &= ~supported_feature_masks[set]; | |
550 | ||
551 | if (!features) | |
552 | continue; | |
553 | ||
554 | attrs[1] = NULL; | |
555 | for (i = 0; i < NUM_FEATURE_BITS; i++) { | |
556 | struct btrfs_feature_attr *fa; | |
557 | ||
558 | if (!(features & (1ULL << i))) | |
559 | continue; | |
560 | ||
561 | fa = &btrfs_feature_attrs[set][i]; | |
562 | attrs[0] = &fa->kobj_attr.attr; | |
563 | if (add) { | |
564 | int ret; | |
c1b7e474 | 565 | ret = sysfs_merge_group(&fs_info->fs_devices->fsid_kobj, |
e453d989 JM |
566 | &agroup); |
567 | if (ret) | |
568 | return ret; | |
569 | } else | |
c1b7e474 | 570 | sysfs_unmerge_group(&fs_info->fs_devices->fsid_kobj, |
e453d989 JM |
571 | &agroup); |
572 | } | |
573 | ||
574 | } | |
575 | return 0; | |
576 | } | |
577 | ||
2e3e1281 | 578 | static void __btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs) |
5ac1d209 | 579 | { |
2e7910d6 AJ |
580 | if (fs_devs->device_dir_kobj) { |
581 | kobject_del(fs_devs->device_dir_kobj); | |
582 | kobject_put(fs_devs->device_dir_kobj); | |
583 | fs_devs->device_dir_kobj = NULL; | |
aaf13305 AJ |
584 | } |
585 | ||
c1b7e474 AJ |
586 | if (fs_devs->fsid_kobj.state_initialized) { |
587 | kobject_del(&fs_devs->fsid_kobj); | |
588 | kobject_put(&fs_devs->fsid_kobj); | |
f90fc547 AJ |
589 | wait_for_completion(&fs_devs->kobj_unregister); |
590 | } | |
5ac1d209 JM |
591 | } |
592 | ||
2e3e1281 | 593 | /* when fs_devs is NULL it will remove all fsid kobject */ |
1d1c1be3 | 594 | void btrfs_sysfs_remove_fsid(struct btrfs_fs_devices *fs_devs) |
2e3e1281 AJ |
595 | { |
596 | struct list_head *fs_uuids = btrfs_get_fs_uuids(); | |
597 | ||
598 | if (fs_devs) { | |
599 | __btrfs_sysfs_remove_fsid(fs_devs); | |
600 | return; | |
601 | } | |
602 | ||
603 | list_for_each_entry(fs_devs, fs_uuids, list) { | |
604 | __btrfs_sysfs_remove_fsid(fs_devs); | |
605 | } | |
606 | } | |
607 | ||
6618a59b | 608 | void btrfs_sysfs_remove_mounted(struct btrfs_fs_info *fs_info) |
e453d989 | 609 | { |
5a13f430 AJ |
610 | btrfs_reset_fs_info_ptr(fs_info); |
611 | ||
e453d989 JM |
612 | if (fs_info->space_info_kobj) { |
613 | sysfs_remove_files(fs_info->space_info_kobj, allocation_attrs); | |
614 | kobject_del(fs_info->space_info_kobj); | |
615 | kobject_put(fs_info->space_info_kobj); | |
616 | } | |
e453d989 | 617 | addrm_unknown_feature_attrs(fs_info, false); |
c1b7e474 AJ |
618 | sysfs_remove_group(&fs_info->fs_devices->fsid_kobj, &btrfs_feature_attr_group); |
619 | sysfs_remove_files(&fs_info->fs_devices->fsid_kobj, btrfs_attrs); | |
32576040 | 620 | btrfs_sysfs_rm_device_link(fs_info->fs_devices, NULL); |
e453d989 JM |
621 | } |
622 | ||
79da4fa4 JM |
623 | const char * const btrfs_feature_set_names[3] = { |
624 | [FEAT_COMPAT] = "compat", | |
625 | [FEAT_COMPAT_RO] = "compat_ro", | |
626 | [FEAT_INCOMPAT] = "incompat", | |
627 | }; | |
628 | ||
3b02a68a JM |
629 | char *btrfs_printable_features(enum btrfs_feature_set set, u64 flags) |
630 | { | |
631 | size_t bufsize = 4096; /* safe max, 64 names * 64 bytes */ | |
632 | int len = 0; | |
633 | int i; | |
634 | char *str; | |
635 | ||
636 | str = kmalloc(bufsize, GFP_KERNEL); | |
637 | if (!str) | |
638 | return str; | |
639 | ||
640 | for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) { | |
641 | const char *name; | |
642 | ||
643 | if (!(flags & (1ULL << i))) | |
644 | continue; | |
645 | ||
646 | name = btrfs_feature_attrs[set][i].kobj_attr.attr.name; | |
647 | len += snprintf(str + len, bufsize - len, "%s%s", | |
648 | len ? "," : "", name); | |
649 | } | |
650 | ||
651 | return str; | |
652 | } | |
653 | ||
79da4fa4 JM |
654 | static void init_feature_attrs(void) |
655 | { | |
656 | struct btrfs_feature_attr *fa; | |
657 | int set, i; | |
658 | ||
659 | BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names) != | |
660 | ARRAY_SIZE(btrfs_feature_attrs)); | |
661 | BUILD_BUG_ON(ARRAY_SIZE(btrfs_unknown_feature_names[0]) != | |
662 | ARRAY_SIZE(btrfs_feature_attrs[0])); | |
663 | ||
3b02a68a JM |
664 | memset(btrfs_feature_attrs, 0, sizeof(btrfs_feature_attrs)); |
665 | memset(btrfs_unknown_feature_names, 0, | |
666 | sizeof(btrfs_unknown_feature_names)); | |
667 | ||
79da4fa4 JM |
668 | for (i = 0; btrfs_supported_feature_attrs[i]; i++) { |
669 | struct btrfs_feature_attr *sfa; | |
670 | struct attribute *a = btrfs_supported_feature_attrs[i]; | |
3b02a68a | 671 | int bit; |
79da4fa4 | 672 | sfa = attr_to_btrfs_feature_attr(a); |
3b02a68a JM |
673 | bit = ilog2(sfa->feature_bit); |
674 | fa = &btrfs_feature_attrs[sfa->feature_set][bit]; | |
79da4fa4 JM |
675 | |
676 | fa->kobj_attr.attr.name = sfa->kobj_attr.attr.name; | |
677 | } | |
678 | ||
679 | for (set = 0; set < FEAT_MAX; set++) { | |
680 | for (i = 0; i < ARRAY_SIZE(btrfs_feature_attrs[set]); i++) { | |
681 | char *name = btrfs_unknown_feature_names[set][i]; | |
682 | fa = &btrfs_feature_attrs[set][i]; | |
683 | ||
684 | if (fa->kobj_attr.attr.name) | |
685 | continue; | |
686 | ||
687 | snprintf(name, 13, "%s:%u", | |
688 | btrfs_feature_set_names[set], i); | |
689 | ||
690 | fa->kobj_attr.attr.name = name; | |
691 | fa->kobj_attr.attr.mode = S_IRUGO; | |
692 | fa->feature_set = set; | |
693 | fa->feature_bit = 1ULL << i; | |
694 | } | |
695 | } | |
696 | } | |
697 | ||
e7e1aa9c AJ |
698 | /* when one_device is NULL, it removes all device links */ |
699 | ||
32576040 | 700 | int btrfs_sysfs_rm_device_link(struct btrfs_fs_devices *fs_devices, |
99994cde AJ |
701 | struct btrfs_device *one_device) |
702 | { | |
703 | struct hd_struct *disk; | |
704 | struct kobject *disk_kobj; | |
705 | ||
6c14a164 | 706 | if (!fs_devices->device_dir_kobj) |
99994cde AJ |
707 | return -EINVAL; |
708 | ||
87fa3bb0 | 709 | if (one_device && one_device->bdev) { |
99994cde AJ |
710 | disk = one_device->bdev->bd_part; |
711 | disk_kobj = &part_to_dev(disk)->kobj; | |
712 | ||
6c14a164 | 713 | sysfs_remove_link(fs_devices->device_dir_kobj, |
99994cde AJ |
714 | disk_kobj->name); |
715 | } | |
716 | ||
e7e1aa9c AJ |
717 | if (one_device) |
718 | return 0; | |
719 | ||
720 | list_for_each_entry(one_device, | |
6c14a164 | 721 | &fs_devices->devices, dev_list) { |
e7e1aa9c AJ |
722 | if (!one_device->bdev) |
723 | continue; | |
724 | disk = one_device->bdev->bd_part; | |
725 | disk_kobj = &part_to_dev(disk)->kobj; | |
726 | ||
6c14a164 | 727 | sysfs_remove_link(fs_devices->device_dir_kobj, |
e7e1aa9c AJ |
728 | disk_kobj->name); |
729 | } | |
730 | ||
99994cde AJ |
731 | return 0; |
732 | } | |
733 | ||
2e7910d6 | 734 | int btrfs_sysfs_add_device(struct btrfs_fs_devices *fs_devs) |
29e5be24 | 735 | { |
2e7910d6 AJ |
736 | if (!fs_devs->device_dir_kobj) |
737 | fs_devs->device_dir_kobj = kobject_create_and_add("devices", | |
c1b7e474 | 738 | &fs_devs->fsid_kobj); |
0d39376a | 739 | |
2e7910d6 | 740 | if (!fs_devs->device_dir_kobj) |
29e5be24 JM |
741 | return -ENOMEM; |
742 | ||
00c921c2 AJ |
743 | return 0; |
744 | } | |
745 | ||
e3bd6973 | 746 | int btrfs_sysfs_add_device_link(struct btrfs_fs_devices *fs_devices, |
1ba43816 | 747 | struct btrfs_device *one_device) |
00c921c2 AJ |
748 | { |
749 | int error = 0; | |
00c921c2 AJ |
750 | struct btrfs_device *dev; |
751 | ||
29e5be24 | 752 | list_for_each_entry(dev, &fs_devices->devices, dev_list) { |
f085381e AJ |
753 | struct hd_struct *disk; |
754 | struct kobject *disk_kobj; | |
755 | ||
756 | if (!dev->bdev) | |
757 | continue; | |
758 | ||
0d39376a AJ |
759 | if (one_device && one_device != dev) |
760 | continue; | |
761 | ||
f085381e AJ |
762 | disk = dev->bdev->bd_part; |
763 | disk_kobj = &part_to_dev(disk)->kobj; | |
29e5be24 | 764 | |
2e7910d6 | 765 | error = sysfs_create_link(fs_devices->device_dir_kobj, |
29e5be24 JM |
766 | disk_kobj, disk_kobj->name); |
767 | if (error) | |
768 | break; | |
769 | } | |
770 | ||
771 | return error; | |
772 | } | |
773 | ||
510d7360 JM |
774 | /* /sys/fs/btrfs/ entry */ |
775 | static struct kset *btrfs_kset; | |
776 | ||
1bae3098 DS |
777 | /* /sys/kernel/debug/btrfs */ |
778 | static struct dentry *btrfs_debugfs_root_dentry; | |
779 | ||
780 | /* Debugging tunables and exported data */ | |
781 | u64 btrfs_debugfs_test; | |
782 | ||
72059215 AJ |
783 | /* |
784 | * Can be called by the device discovery thread. | |
785 | * And parent can be specified for seed device | |
786 | */ | |
0c10e2d4 | 787 | int btrfs_sysfs_add_fsid(struct btrfs_fs_devices *fs_devs, |
72059215 | 788 | struct kobject *parent) |
5ac1d209 JM |
789 | { |
790 | int error; | |
791 | ||
2e7910d6 | 792 | init_completion(&fs_devs->kobj_unregister); |
c1b7e474 AJ |
793 | fs_devs->fsid_kobj.kset = btrfs_kset; |
794 | error = kobject_init_and_add(&fs_devs->fsid_kobj, | |
24bd69cb | 795 | &btrfs_ktype, parent, "%pU", fs_devs->fsid); |
72059215 AJ |
796 | return error; |
797 | } | |
798 | ||
96f3136e | 799 | int btrfs_sysfs_add_mounted(struct btrfs_fs_info *fs_info) |
72059215 AJ |
800 | { |
801 | int error; | |
2e7910d6 | 802 | struct btrfs_fs_devices *fs_devs = fs_info->fs_devices; |
c1b7e474 | 803 | struct kobject *fsid_kobj = &fs_devs->fsid_kobj; |
72059215 | 804 | |
5a13f430 AJ |
805 | btrfs_set_fs_info_ptr(fs_info); |
806 | ||
e3bd6973 | 807 | error = btrfs_sysfs_add_device_link(fs_devs, NULL); |
b7c35e81 | 808 | if (error) |
aaf13305 | 809 | return error; |
aaf13305 | 810 | |
c1b7e474 | 811 | error = sysfs_create_files(fsid_kobj, btrfs_attrs); |
e453d989 | 812 | if (error) { |
32576040 | 813 | btrfs_sysfs_rm_device_link(fs_devs, NULL); |
e453d989 JM |
814 | return error; |
815 | } | |
79da4fa4 | 816 | |
c1b7e474 | 817 | error = sysfs_create_group(fsid_kobj, |
0dd2906f AJ |
818 | &btrfs_feature_attr_group); |
819 | if (error) | |
820 | goto failure; | |
821 | ||
e453d989 | 822 | error = addrm_unknown_feature_attrs(fs_info, true); |
79da4fa4 JM |
823 | if (error) |
824 | goto failure; | |
825 | ||
6ab0a202 | 826 | fs_info->space_info_kobj = kobject_create_and_add("allocation", |
c1b7e474 | 827 | fsid_kobj); |
6ab0a202 JM |
828 | if (!fs_info->space_info_kobj) { |
829 | error = -ENOMEM; | |
830 | goto failure; | |
831 | } | |
832 | ||
833 | error = sysfs_create_files(fs_info->space_info_kobj, allocation_attrs); | |
834 | if (error) | |
835 | goto failure; | |
836 | ||
79da4fa4 JM |
837 | return 0; |
838 | failure: | |
6618a59b | 839 | btrfs_sysfs_remove_mounted(fs_info); |
5ac1d209 JM |
840 | return error; |
841 | } | |
842 | ||
444e7516 DS |
843 | |
844 | /* | |
845 | * Change per-fs features in /sys/fs/btrfs/UUID/features to match current | |
846 | * values in superblock. Call after any changes to incompat/compat_ro flags | |
847 | */ | |
848 | void btrfs_sysfs_feature_update(struct btrfs_fs_info *fs_info, | |
849 | u64 bit, enum btrfs_feature_set set) | |
850 | { | |
851 | struct btrfs_fs_devices *fs_devs; | |
852 | struct kobject *fsid_kobj; | |
853 | u64 features; | |
854 | int ret; | |
855 | ||
856 | if (!fs_info) | |
857 | return; | |
858 | ||
859 | features = get_features(fs_info, set); | |
860 | ASSERT(bit & supported_feature_masks[set]); | |
861 | ||
862 | fs_devs = fs_info->fs_devices; | |
863 | fsid_kobj = &fs_devs->fsid_kobj; | |
864 | ||
bf609206 DS |
865 | if (!fsid_kobj->state_initialized) |
866 | return; | |
867 | ||
444e7516 DS |
868 | /* |
869 | * FIXME: this is too heavy to update just one value, ideally we'd like | |
870 | * to use sysfs_update_group but some refactoring is needed first. | |
871 | */ | |
872 | sysfs_remove_group(fsid_kobj, &btrfs_feature_attr_group); | |
873 | ret = sysfs_create_group(fsid_kobj, &btrfs_feature_attr_group); | |
874 | } | |
875 | ||
1bae3098 DS |
876 | static int btrfs_init_debugfs(void) |
877 | { | |
878 | #ifdef CONFIG_DEBUG_FS | |
879 | btrfs_debugfs_root_dentry = debugfs_create_dir("btrfs", NULL); | |
880 | if (!btrfs_debugfs_root_dentry) | |
881 | return -ENOMEM; | |
882 | ||
b0de6c4c DS |
883 | /* |
884 | * Example code, how to export data through debugfs. | |
885 | * | |
886 | * file: /sys/kernel/debug/btrfs/test | |
887 | * contents of: btrfs_debugfs_test | |
888 | */ | |
889 | #ifdef CONFIG_BTRFS_DEBUG | |
07f6a480 | 890 | debugfs_create_u64("test", S_IRUGO | S_IWUSR, btrfs_debugfs_root_dentry, |
1bae3098 | 891 | &btrfs_debugfs_test); |
b0de6c4c DS |
892 | #endif |
893 | ||
1bae3098 DS |
894 | #endif |
895 | return 0; | |
896 | } | |
897 | ||
f5c29bd9 | 898 | int __init btrfs_init_sysfs(void) |
58176a96 | 899 | { |
079b72bc | 900 | int ret; |
1bae3098 | 901 | |
e3fe4e71 GKH |
902 | btrfs_kset = kset_create_and_add("btrfs", NULL, fs_kobj); |
903 | if (!btrfs_kset) | |
904 | return -ENOMEM; | |
079b72bc | 905 | |
1bae3098 DS |
906 | ret = btrfs_init_debugfs(); |
907 | if (ret) | |
001a648d | 908 | goto out1; |
79da4fa4 | 909 | |
1bae3098 | 910 | init_feature_attrs(); |
079b72bc | 911 | ret = sysfs_create_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
001a648d FM |
912 | if (ret) |
913 | goto out2; | |
914 | ||
915 | return 0; | |
916 | out2: | |
917 | debugfs_remove_recursive(btrfs_debugfs_root_dentry); | |
918 | out1: | |
919 | kset_unregister(btrfs_kset); | |
079b72bc | 920 | |
1bae3098 | 921 | return ret; |
58176a96 JB |
922 | } |
923 | ||
b214107e | 924 | void btrfs_exit_sysfs(void) |
58176a96 | 925 | { |
079b72bc | 926 | sysfs_remove_group(&btrfs_kset->kobj, &btrfs_feature_attr_group); |
e3fe4e71 | 927 | kset_unregister(btrfs_kset); |
1bae3098 | 928 | debugfs_remove_recursive(btrfs_debugfs_root_dentry); |
58176a96 | 929 | } |
55d47414 | 930 |