blob: 87ac08964683b2fe90581f3f633bb77ed508bdad [file] [log] [blame]
Theodore Ts'ob5799012015-09-23 12:44:17 -04001/*
2 * linux/fs/ext4/sysfs.c
3 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Theodore Ts'o (tytso@mit.edu)
7 *
8 */
9
10#include <linux/time.h>
11#include <linux/fs.h>
12#include <linux/seq_file.h>
13#include <linux/proc_fs.h>
14
15#include "ext4.h"
16#include "ext4_jbd2.h"
17
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040018typedef enum {
19 attr_noop,
20 attr_delayed_allocation_blocks,
21 attr_session_write_kbytes,
22 attr_lifetime_write_kbytes,
23 attr_reserved_clusters,
24 attr_inode_readahead,
25 attr_trigger_test_error,
26 attr_feature,
27 attr_pointer_ui,
28 attr_pointer_atomic,
29} attr_id_t;
30
31typedef enum {
32 ptr_explicit,
33 ptr_ext4_sb_info_offset,
34 ptr_ext4_super_block_offset,
35} attr_ptr_t;
36
Theodore Ts'ob5799012015-09-23 12:44:17 -040037struct ext4_attr {
38 struct attribute attr;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040039 short attr_id;
40 short attr_ptr;
Theodore Ts'ob5799012015-09-23 12:44:17 -040041 union {
42 int offset;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040043 void *explicit_ptr;
Theodore Ts'ob5799012015-09-23 12:44:17 -040044 } u;
45};
46
Theodore Ts'ob5799012015-09-23 12:44:17 -040047static ssize_t session_write_kbytes_show(struct ext4_attr *a,
48 struct ext4_sb_info *sbi, char *buf)
49{
50 struct super_block *sb = sbi->s_buddy_cache->i_sb;
51
52 if (!sb->s_bdev->bd_part)
53 return snprintf(buf, PAGE_SIZE, "0\n");
54 return snprintf(buf, PAGE_SIZE, "%lu\n",
55 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
56 sbi->s_sectors_written_start) >> 1);
57}
58
59static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
60 struct ext4_sb_info *sbi, char *buf)
61{
62 struct super_block *sb = sbi->s_buddy_cache->i_sb;
63
64 if (!sb->s_bdev->bd_part)
65 return snprintf(buf, PAGE_SIZE, "0\n");
66 return snprintf(buf, PAGE_SIZE, "%llu\n",
67 (unsigned long long)(sbi->s_kbytes_written +
68 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
69 EXT4_SB(sb)->s_sectors_written_start) >> 1)));
70}
71
72static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
73 struct ext4_sb_info *sbi,
74 const char *buf, size_t count)
75{
76 unsigned long t;
77 int ret;
78
79 ret = kstrtoul(skip_spaces(buf), 0, &t);
80 if (ret)
81 return ret;
82
83 if (t && (!is_power_of_2(t) || t > 0x40000000))
84 return -EINVAL;
85
86 sbi->s_inode_readahead_blks = t;
87 return count;
88}
89
Theodore Ts'ob5799012015-09-23 12:44:17 -040090static ssize_t reserved_clusters_store(struct ext4_attr *a,
91 struct ext4_sb_info *sbi,
92 const char *buf, size_t count)
93{
94 unsigned long long val;
95 ext4_fsblk_t clusters = (ext4_blocks_count(sbi->s_es) >>
96 sbi->s_cluster_bits);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040097 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -040098
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040099 ret = kstrtoull(skip_spaces(buf), 0, &val);
100 if (!ret || val >= clusters)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400101 return -EINVAL;
102
103 atomic64_set(&sbi->s_resv_clusters, val);
104 return count;
105}
106
107static ssize_t trigger_test_error(struct ext4_attr *a,
108 struct ext4_sb_info *sbi,
109 const char *buf, size_t count)
110{
111 int len = count;
112
113 if (!capable(CAP_SYS_ADMIN))
114 return -EPERM;
115
116 if (len && buf[len-1] == '\n')
117 len--;
118
119 if (len)
120 ext4_error(sbi->s_sb, "%.*s", len, buf);
121 return count;
122}
123
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400124#define EXT4_ATTR(_name,_mode,_id) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400125static struct ext4_attr ext4_attr_##_name = { \
126 .attr = {.name = __stringify(_name), .mode = _mode }, \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400127 .attr_id = attr_##_id, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400128}
129
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400130#define EXT4_ATTR_FUNC(_name,_mode) EXT4_ATTR(_name,_mode,_name)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400131
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400132#define EXT4_ATTR_FEATURE(_name) EXT4_ATTR(_name, 0444, feature)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400133
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400134#define EXT4_ATTR_OFFSET(_name,_mode,_id,_struct,_elname) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400135static struct ext4_attr ext4_attr_##_name = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400136 .attr = {.name = __stringify(_name), .mode = _mode }, \
137 .attr_id = attr_##_id, \
138 .attr_ptr = ptr_##_struct##_offset, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400139 .u = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400140 .offset = offsetof(struct _struct, _elname),\
Theodore Ts'ob5799012015-09-23 12:44:17 -0400141 }, \
142}
143
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400144#define EXT4_RO_ATTR_ES_UI(_name,_elname) \
145 EXT4_ATTR_OFFSET(_name, 0444, pointer_ui, ext4_super_block, _elname)
146
147#define EXT4_RW_ATTR_SBI_UI(_name,_elname) \
148 EXT4_ATTR_OFFSET(_name, 0644, pointer_ui, ext4_sb_info, _elname)
149
150#define EXT4_ATTR_PTR(_name,_mode,_id,_ptr) \
151static struct ext4_attr ext4_attr_##_name = { \
152 .attr = {.name = __stringify(_name), .mode = _mode }, \
153 .attr_id = attr_##_id, \
154 .attr_ptr = ptr_explicit, \
155 .u = { \
156 .explicit_ptr = _ptr, \
157 }, \
158}
159
160#define ATTR_LIST(name) &ext4_attr_##name.attr
161
162EXT4_ATTR_FUNC(delayed_allocation_blocks, 0444);
163EXT4_ATTR_FUNC(session_write_kbytes, 0444);
164EXT4_ATTR_FUNC(lifetime_write_kbytes, 0444);
165EXT4_ATTR_FUNC(reserved_clusters, 0644);
166
167EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, inode_readahead,
168 ext4_sb_info, s_inode_readahead_blks);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400169EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
170EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
171EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
172EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
173EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
174EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
175EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400176EXT4_RW_ATTR_SBI_UI(extent_max_zeroout_kb, s_extent_max_zeroout_kb);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400177EXT4_ATTR(trigger_fs_error, 0200, trigger_test_error);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400178EXT4_RW_ATTR_SBI_UI(err_ratelimit_interval_ms, s_err_ratelimit_state.interval);
179EXT4_RW_ATTR_SBI_UI(err_ratelimit_burst, s_err_ratelimit_state.burst);
180EXT4_RW_ATTR_SBI_UI(warning_ratelimit_interval_ms, s_warning_ratelimit_state.interval);
181EXT4_RW_ATTR_SBI_UI(warning_ratelimit_burst, s_warning_ratelimit_state.burst);
182EXT4_RW_ATTR_SBI_UI(msg_ratelimit_interval_ms, s_msg_ratelimit_state.interval);
183EXT4_RW_ATTR_SBI_UI(msg_ratelimit_burst, s_msg_ratelimit_state.burst);
184EXT4_RO_ATTR_ES_UI(errors_count, s_error_count);
185EXT4_RO_ATTR_ES_UI(first_error_time, s_first_error_time);
186EXT4_RO_ATTR_ES_UI(last_error_time, s_last_error_time);
187
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400188static unsigned int old_bump_val = 128;
189EXT4_ATTR_PTR(max_writeback_mb_bump, 0444, pointer_ui, &old_bump_val);
190
Theodore Ts'ob5799012015-09-23 12:44:17 -0400191static struct attribute *ext4_attrs[] = {
192 ATTR_LIST(delayed_allocation_blocks),
193 ATTR_LIST(session_write_kbytes),
194 ATTR_LIST(lifetime_write_kbytes),
195 ATTR_LIST(reserved_clusters),
196 ATTR_LIST(inode_readahead_blks),
197 ATTR_LIST(inode_goal),
198 ATTR_LIST(mb_stats),
199 ATTR_LIST(mb_max_to_scan),
200 ATTR_LIST(mb_min_to_scan),
201 ATTR_LIST(mb_order2_req),
202 ATTR_LIST(mb_stream_req),
203 ATTR_LIST(mb_group_prealloc),
204 ATTR_LIST(max_writeback_mb_bump),
205 ATTR_LIST(extent_max_zeroout_kb),
206 ATTR_LIST(trigger_fs_error),
207 ATTR_LIST(err_ratelimit_interval_ms),
208 ATTR_LIST(err_ratelimit_burst),
209 ATTR_LIST(warning_ratelimit_interval_ms),
210 ATTR_LIST(warning_ratelimit_burst),
211 ATTR_LIST(msg_ratelimit_interval_ms),
212 ATTR_LIST(msg_ratelimit_burst),
213 ATTR_LIST(errors_count),
214 ATTR_LIST(first_error_time),
215 ATTR_LIST(last_error_time),
216 NULL,
217};
218
219/* Features this copy of ext4 supports */
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400220EXT4_ATTR_FEATURE(lazy_itable_init);
221EXT4_ATTR_FEATURE(batched_discard);
222EXT4_ATTR_FEATURE(meta_bg_resize);
223EXT4_ATTR_FEATURE(encryption);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400224
225static struct attribute *ext4_feat_attrs[] = {
226 ATTR_LIST(lazy_itable_init),
227 ATTR_LIST(batched_discard),
228 ATTR_LIST(meta_bg_resize),
229 ATTR_LIST(encryption),
230 NULL,
231};
232
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400233static void *calc_ptr(struct ext4_attr *a, struct ext4_sb_info *sbi)
234{
235 switch (a->attr_ptr) {
236 case ptr_explicit:
237 return a->u.explicit_ptr;
238 case ptr_ext4_sb_info_offset:
239 return (void *) (((char *) sbi) + a->u.offset);
240 case ptr_ext4_super_block_offset:
241 return (void *) (((char *) sbi->s_es) + a->u.offset);
242 }
243 return NULL;
244}
245
Theodore Ts'ob5799012015-09-23 12:44:17 -0400246static ssize_t ext4_attr_show(struct kobject *kobj,
247 struct attribute *attr, char *buf)
248{
249 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
250 s_kobj);
251 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400252 void *ptr = calc_ptr(a, sbi);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400253
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400254 switch (a->attr_id) {
255 case attr_delayed_allocation_blocks:
256 return snprintf(buf, PAGE_SIZE, "%llu\n",
257 (s64) EXT4_C2B(sbi,
258 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
259 case attr_session_write_kbytes:
260 return session_write_kbytes_show(a, sbi, buf);
261 case attr_lifetime_write_kbytes:
262 return lifetime_write_kbytes_show(a, sbi, buf);
263 case attr_reserved_clusters:
264 return snprintf(buf, PAGE_SIZE, "%llu\n",
265 (unsigned long long)
266 atomic64_read(&sbi->s_resv_clusters));
267 case attr_inode_readahead:
268 case attr_pointer_ui:
269 if (!ptr)
270 return 0;
271 return snprintf(buf, PAGE_SIZE, "%u\n",
272 *((unsigned int *) ptr));
273 case attr_pointer_atomic:
274 if (!ptr)
275 return 0;
276 return snprintf(buf, PAGE_SIZE, "%d\n",
277 atomic_read((atomic_t *) ptr));
278 case attr_feature:
279 return snprintf(buf, PAGE_SIZE, "supported\n");
280 }
281
282 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400283}
284
285static ssize_t ext4_attr_store(struct kobject *kobj,
286 struct attribute *attr,
287 const char *buf, size_t len)
288{
289 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
290 s_kobj);
291 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400292 void *ptr = calc_ptr(a, sbi);
293 unsigned long t;
294 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400295
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400296 switch (a->attr_id) {
297 case attr_reserved_clusters:
298 return reserved_clusters_store(a, sbi, buf, len);
299 case attr_pointer_ui:
300 if (!ptr)
301 return 0;
302 ret = kstrtoul(skip_spaces(buf), 0, &t);
303 if (ret)
304 return ret;
305 *((unsigned int *) ptr) = t;
306 return len;
307 case attr_inode_readahead:
308 return inode_readahead_blks_store(a, sbi, buf, len);
309 case attr_trigger_test_error:
310 return trigger_test_error(a, sbi, buf, len);
311 }
312 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400313}
314
315static void ext4_sb_release(struct kobject *kobj)
316{
317 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
318 s_kobj);
319 complete(&sbi->s_kobj_unregister);
320}
321
322static const struct sysfs_ops ext4_attr_ops = {
323 .show = ext4_attr_show,
324 .store = ext4_attr_store,
325};
326
327static struct kobj_type ext4_sb_ktype = {
328 .default_attrs = ext4_attrs,
329 .sysfs_ops = &ext4_attr_ops,
330 .release = ext4_sb_release,
331};
332
333static struct kobj_type ext4_ktype = {
334 .sysfs_ops = &ext4_attr_ops,
335};
336
337static struct kset ext4_kset = {
338 .kobj = {.ktype = &ext4_ktype},
339};
340
Theodore Ts'ob5799012015-09-23 12:44:17 -0400341static struct kobj_type ext4_feat_ktype = {
342 .default_attrs = ext4_feat_attrs,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400343 .sysfs_ops = &ext4_attr_ops,
Theodore Ts'ob5799012015-09-23 12:44:17 -0400344};
345
346static struct kobject ext4_feat = {
347 .kset = &ext4_kset,
348};
349
350int ext4_register_sysfs(struct super_block *sb)
351{
352 struct ext4_sb_info *sbi = EXT4_SB(sb);
353
354 sbi->s_kobj.kset = &ext4_kset;
355 init_completion(&sbi->s_kobj_unregister);
356 return kobject_init_and_add(&sbi->s_kobj, &ext4_sb_ktype, NULL,
357 "%s", sb->s_id);
358}
359
360int __init ext4_init_sysfs(void)
361{
362 int ret;
363
364 kobject_set_name(&ext4_kset.kobj, "ext4");
365 ext4_kset.kobj.parent = fs_kobj;
366 ret = kset_register(&ext4_kset);
367 if (ret)
368 return ret;
369
370 ret = kobject_init_and_add(&ext4_feat, &ext4_feat_ktype,
371 NULL, "features");
372 if (ret)
373 kset_unregister(&ext4_kset);
374 return ret;
375}
376
377void ext4_exit_sysfs(void)
378{
379 kobject_put(&ext4_feat);
380 kset_unregister(&ext4_kset);
381}
382