blob: 075aa3a19ff5f1b731fba4ad8a266a39beb8a07a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Theodore Ts'ob5799012015-09-23 12:44:17 -04002/*
3 * linux/fs/ext4/sysfs.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Theodore Ts'o (tytso@mit.edu)
8 *
9 */
10
11#include <linux/time.h>
12#include <linux/fs.h>
13#include <linux/seq_file.h>
Riccardo Schironeb99fee52018-01-11 15:11:32 -050014#include <linux/slab.h>
Theodore Ts'ob5799012015-09-23 12:44:17 -040015#include <linux/proc_fs.h>
Christoph Hellwigc6a564ff2020-03-25 16:48:42 +010016#include <linux/part_stat.h>
Theodore Ts'ob5799012015-09-23 12:44:17 -040017
18#include "ext4.h"
19#include "ext4_jbd2.h"
20
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040021typedef enum {
22 attr_noop,
23 attr_delayed_allocation_blocks,
24 attr_session_write_kbytes,
25 attr_lifetime_write_kbytes,
26 attr_reserved_clusters,
27 attr_inode_readahead,
28 attr_trigger_test_error,
Arnd Bergmann6a0678a2018-07-29 15:51:48 -040029 attr_first_error_time,
30 attr_last_error_time,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040031 attr_feature,
32 attr_pointer_ui,
Theodore Ts'o46f870d62019-11-21 13:09:43 -050033 attr_pointer_ul,
Theodore Ts'o4549b492019-12-23 18:44:49 -050034 attr_pointer_u64,
35 attr_pointer_u8,
36 attr_pointer_string,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040037 attr_pointer_atomic,
Konstantin Khlebnikovbc1d69d2019-02-21 11:49:27 -050038 attr_journal_task,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040039} attr_id_t;
40
41typedef enum {
42 ptr_explicit,
43 ptr_ext4_sb_info_offset,
44 ptr_ext4_super_block_offset,
45} attr_ptr_t;
46
Eric Biggersd6006182017-04-29 23:47:50 -040047static const char proc_dirname[] = "fs/ext4";
Theodore Ts'oebd173b2015-09-23 12:46:17 -040048static struct proc_dir_entry *ext4_proc_root;
49
Theodore Ts'ob5799012015-09-23 12:44:17 -040050struct ext4_attr {
51 struct attribute attr;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040052 short attr_id;
53 short attr_ptr;
Theodore Ts'o4549b492019-12-23 18:44:49 -050054 unsigned short attr_size;
Theodore Ts'ob5799012015-09-23 12:44:17 -040055 union {
56 int offset;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -040057 void *explicit_ptr;
Theodore Ts'ob5799012015-09-23 12:44:17 -040058 } u;
59};
60
Tyson Nottingham6ca06822018-03-30 00:13:10 -040061static ssize_t session_write_kbytes_show(struct ext4_sb_info *sbi, char *buf)
Theodore Ts'ob5799012015-09-23 12:44:17 -040062{
63 struct super_block *sb = sbi->s_buddy_cache->i_sb;
64
Theodore Ts'ob5799012015-09-23 12:44:17 -040065 return snprintf(buf, PAGE_SIZE, "%lu\n",
Christoph Hellwig8446fe92020-11-24 09:36:54 +010066 (part_stat_read(sb->s_bdev, sectors[STAT_WRITE]) -
Theodore Ts'ob5799012015-09-23 12:44:17 -040067 sbi->s_sectors_written_start) >> 1);
68}
69
Tyson Nottingham6ca06822018-03-30 00:13:10 -040070static ssize_t lifetime_write_kbytes_show(struct ext4_sb_info *sbi, char *buf)
Theodore Ts'ob5799012015-09-23 12:44:17 -040071{
72 struct super_block *sb = sbi->s_buddy_cache->i_sb;
73
Theodore Ts'ob5799012015-09-23 12:44:17 -040074 return snprintf(buf, PAGE_SIZE, "%llu\n",
75 (unsigned long long)(sbi->s_kbytes_written +
Christoph Hellwig8446fe92020-11-24 09:36:54 +010076 ((part_stat_read(sb->s_bdev, sectors[STAT_WRITE]) -
Theodore Ts'ob5799012015-09-23 12:44:17 -040077 EXT4_SB(sb)->s_sectors_written_start) >> 1)));
78}
79
Tyson Nottingham6ca06822018-03-30 00:13:10 -040080static ssize_t inode_readahead_blks_store(struct ext4_sb_info *sbi,
Theodore Ts'ob5799012015-09-23 12:44:17 -040081 const char *buf, size_t count)
82{
83 unsigned long t;
84 int ret;
85
86 ret = kstrtoul(skip_spaces(buf), 0, &t);
87 if (ret)
88 return ret;
89
90 if (t && (!is_power_of_2(t) || t > 0x40000000))
91 return -EINVAL;
92
93 sbi->s_inode_readahead_blks = t;
94 return count;
95}
96
Tyson Nottingham6ca06822018-03-30 00:13:10 -040097static ssize_t reserved_clusters_store(struct ext4_sb_info *sbi,
Theodore Ts'ob5799012015-09-23 12:44:17 -040098 const char *buf, size_t count)
99{
100 unsigned long long val;
101 ext4_fsblk_t clusters = (ext4_blocks_count(sbi->s_es) >>
102 sbi->s_cluster_bits);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400103 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400104
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400105 ret = kstrtoull(skip_spaces(buf), 0, &val);
Chao Yu1ea15162017-06-23 01:08:22 -0400106 if (ret || val >= clusters)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400107 return -EINVAL;
108
109 atomic64_set(&sbi->s_resv_clusters, val);
110 return count;
111}
112
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400113static ssize_t trigger_test_error(struct ext4_sb_info *sbi,
Theodore Ts'ob5799012015-09-23 12:44:17 -0400114 const char *buf, size_t count)
115{
116 int len = count;
117
118 if (!capable(CAP_SYS_ADMIN))
119 return -EPERM;
120
121 if (len && buf[len-1] == '\n')
122 len--;
123
124 if (len)
125 ext4_error(sbi->s_sb, "%.*s", len, buf);
126 return count;
127}
128
Konstantin Khlebnikovbc1d69d2019-02-21 11:49:27 -0500129static ssize_t journal_task_show(struct ext4_sb_info *sbi, char *buf)
130{
131 if (!sbi->s_journal)
132 return snprintf(buf, PAGE_SIZE, "<none>\n");
133 return snprintf(buf, PAGE_SIZE, "%d\n",
134 task_pid_vnr(sbi->s_journal->j_task));
135}
136
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400137#define EXT4_ATTR(_name,_mode,_id) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400138static struct ext4_attr ext4_attr_##_name = { \
139 .attr = {.name = __stringify(_name), .mode = _mode }, \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400140 .attr_id = attr_##_id, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400141}
142
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400143#define EXT4_ATTR_FUNC(_name,_mode) EXT4_ATTR(_name,_mode,_name)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400144
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400145#define EXT4_ATTR_FEATURE(_name) EXT4_ATTR(_name, 0444, feature)
Theodore Ts'ob5799012015-09-23 12:44:17 -0400146
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400147#define EXT4_ATTR_OFFSET(_name,_mode,_id,_struct,_elname) \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400148static struct ext4_attr ext4_attr_##_name = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400149 .attr = {.name = __stringify(_name), .mode = _mode }, \
150 .attr_id = attr_##_id, \
151 .attr_ptr = ptr_##_struct##_offset, \
Theodore Ts'ob5799012015-09-23 12:44:17 -0400152 .u = { \
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400153 .offset = offsetof(struct _struct, _elname),\
Theodore Ts'ob5799012015-09-23 12:44:17 -0400154 }, \
155}
156
Theodore Ts'o4549b492019-12-23 18:44:49 -0500157#define EXT4_ATTR_STRING(_name,_mode,_size,_struct,_elname) \
158static struct ext4_attr ext4_attr_##_name = { \
159 .attr = {.name = __stringify(_name), .mode = _mode }, \
160 .attr_id = attr_pointer_string, \
161 .attr_size = _size, \
162 .attr_ptr = ptr_##_struct##_offset, \
163 .u = { \
164 .offset = offsetof(struct _struct, _elname),\
165 }, \
166}
167
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400168#define EXT4_RO_ATTR_ES_UI(_name,_elname) \
169 EXT4_ATTR_OFFSET(_name, 0444, pointer_ui, ext4_super_block, _elname)
170
Theodore Ts'o4549b492019-12-23 18:44:49 -0500171#define EXT4_RO_ATTR_ES_U8(_name,_elname) \
172 EXT4_ATTR_OFFSET(_name, 0444, pointer_u8, ext4_super_block, _elname)
173
174#define EXT4_RO_ATTR_ES_U64(_name,_elname) \
175 EXT4_ATTR_OFFSET(_name, 0444, pointer_u64, ext4_super_block, _elname)
176
177#define EXT4_RO_ATTR_ES_STRING(_name,_elname,_size) \
178 EXT4_ATTR_STRING(_name, 0444, _size, ext4_super_block, _elname)
179
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400180#define EXT4_RW_ATTR_SBI_UI(_name,_elname) \
181 EXT4_ATTR_OFFSET(_name, 0644, pointer_ui, ext4_sb_info, _elname)
182
Theodore Ts'o46f870d62019-11-21 13:09:43 -0500183#define EXT4_RW_ATTR_SBI_UL(_name,_elname) \
184 EXT4_ATTR_OFFSET(_name, 0644, pointer_ul, ext4_sb_info, _elname)
185
Dmitry Monakhov1cf006e2020-07-25 12:33:13 +0000186#define EXT4_RO_ATTR_SBI_ATOMIC(_name,_elname) \
187 EXT4_ATTR_OFFSET(_name, 0444, pointer_atomic, ext4_sb_info, _elname)
188
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400189#define EXT4_ATTR_PTR(_name,_mode,_id,_ptr) \
190static struct ext4_attr ext4_attr_##_name = { \
191 .attr = {.name = __stringify(_name), .mode = _mode }, \
192 .attr_id = attr_##_id, \
193 .attr_ptr = ptr_explicit, \
194 .u = { \
195 .explicit_ptr = _ptr, \
196 }, \
197}
198
199#define ATTR_LIST(name) &ext4_attr_##name.attr
200
201EXT4_ATTR_FUNC(delayed_allocation_blocks, 0444);
202EXT4_ATTR_FUNC(session_write_kbytes, 0444);
203EXT4_ATTR_FUNC(lifetime_write_kbytes, 0444);
204EXT4_ATTR_FUNC(reserved_clusters, 0644);
205
206EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, inode_readahead,
207 ext4_sb_info, s_inode_readahead_blks);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400208EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
209EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
210EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
211EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
212EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
213EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
214EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
brookxu27bc4462020-08-17 15:36:15 +0800215EXT4_RW_ATTR_SBI_UI(mb_max_inode_prealloc, s_mb_max_inode_prealloc);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400216EXT4_RW_ATTR_SBI_UI(extent_max_zeroout_kb, s_extent_max_zeroout_kb);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400217EXT4_ATTR(trigger_fs_error, 0200, trigger_test_error);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400218EXT4_RW_ATTR_SBI_UI(err_ratelimit_interval_ms, s_err_ratelimit_state.interval);
219EXT4_RW_ATTR_SBI_UI(err_ratelimit_burst, s_err_ratelimit_state.burst);
220EXT4_RW_ATTR_SBI_UI(warning_ratelimit_interval_ms, s_warning_ratelimit_state.interval);
221EXT4_RW_ATTR_SBI_UI(warning_ratelimit_burst, s_warning_ratelimit_state.burst);
222EXT4_RW_ATTR_SBI_UI(msg_ratelimit_interval_ms, s_msg_ratelimit_state.interval);
223EXT4_RW_ATTR_SBI_UI(msg_ratelimit_burst, s_msg_ratelimit_state.burst);
Theodore Ts'o46f870d62019-11-21 13:09:43 -0500224#ifdef CONFIG_EXT4_DEBUG
225EXT4_RW_ATTR_SBI_UL(simulate_fail, s_simulate_fail);
226#endif
Dmitry Monakhov1cf006e2020-07-25 12:33:13 +0000227EXT4_RO_ATTR_SBI_ATOMIC(warning_count, s_warning_count);
228EXT4_RO_ATTR_SBI_ATOMIC(msg_count, s_msg_count);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400229EXT4_RO_ATTR_ES_UI(errors_count, s_error_count);
Theodore Ts'o4549b492019-12-23 18:44:49 -0500230EXT4_RO_ATTR_ES_U8(first_error_errcode, s_first_error_errcode);
231EXT4_RO_ATTR_ES_U8(last_error_errcode, s_last_error_errcode);
232EXT4_RO_ATTR_ES_UI(first_error_ino, s_first_error_ino);
233EXT4_RO_ATTR_ES_UI(last_error_ino, s_last_error_ino);
234EXT4_RO_ATTR_ES_U64(first_error_block, s_first_error_block);
235EXT4_RO_ATTR_ES_U64(last_error_block, s_last_error_block);
236EXT4_RO_ATTR_ES_UI(first_error_line, s_first_error_line);
237EXT4_RO_ATTR_ES_UI(last_error_line, s_last_error_line);
238EXT4_RO_ATTR_ES_STRING(first_error_func, s_first_error_func, 32);
239EXT4_RO_ATTR_ES_STRING(last_error_func, s_last_error_func, 32);
Arnd Bergmann6a0678a2018-07-29 15:51:48 -0400240EXT4_ATTR(first_error_time, 0444, first_error_time);
241EXT4_ATTR(last_error_time, 0444, last_error_time);
Konstantin Khlebnikovbc1d69d2019-02-21 11:49:27 -0500242EXT4_ATTR(journal_task, 0444, journal_task);
Alex Zhuravlevcfd73232020-04-21 10:54:07 +0300243EXT4_RW_ATTR_SBI_UI(mb_prefetch, s_mb_prefetch);
244EXT4_RW_ATTR_SBI_UI(mb_prefetch_limit, s_mb_prefetch_limit);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400245
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400246static unsigned int old_bump_val = 128;
247EXT4_ATTR_PTR(max_writeback_mb_bump, 0444, pointer_ui, &old_bump_val);
248
Theodore Ts'ob5799012015-09-23 12:44:17 -0400249static struct attribute *ext4_attrs[] = {
250 ATTR_LIST(delayed_allocation_blocks),
251 ATTR_LIST(session_write_kbytes),
252 ATTR_LIST(lifetime_write_kbytes),
253 ATTR_LIST(reserved_clusters),
254 ATTR_LIST(inode_readahead_blks),
255 ATTR_LIST(inode_goal),
256 ATTR_LIST(mb_stats),
257 ATTR_LIST(mb_max_to_scan),
258 ATTR_LIST(mb_min_to_scan),
259 ATTR_LIST(mb_order2_req),
260 ATTR_LIST(mb_stream_req),
261 ATTR_LIST(mb_group_prealloc),
brookxu27bc4462020-08-17 15:36:15 +0800262 ATTR_LIST(mb_max_inode_prealloc),
Theodore Ts'ob5799012015-09-23 12:44:17 -0400263 ATTR_LIST(max_writeback_mb_bump),
264 ATTR_LIST(extent_max_zeroout_kb),
265 ATTR_LIST(trigger_fs_error),
266 ATTR_LIST(err_ratelimit_interval_ms),
267 ATTR_LIST(err_ratelimit_burst),
268 ATTR_LIST(warning_ratelimit_interval_ms),
269 ATTR_LIST(warning_ratelimit_burst),
270 ATTR_LIST(msg_ratelimit_interval_ms),
271 ATTR_LIST(msg_ratelimit_burst),
272 ATTR_LIST(errors_count),
Dmitry Monakhov1cf006e2020-07-25 12:33:13 +0000273 ATTR_LIST(warning_count),
274 ATTR_LIST(msg_count),
Theodore Ts'o4549b492019-12-23 18:44:49 -0500275 ATTR_LIST(first_error_ino),
276 ATTR_LIST(last_error_ino),
277 ATTR_LIST(first_error_block),
278 ATTR_LIST(last_error_block),
279 ATTR_LIST(first_error_line),
280 ATTR_LIST(last_error_line),
281 ATTR_LIST(first_error_func),
282 ATTR_LIST(last_error_func),
283 ATTR_LIST(first_error_errcode),
284 ATTR_LIST(last_error_errcode),
Theodore Ts'ob5799012015-09-23 12:44:17 -0400285 ATTR_LIST(first_error_time),
286 ATTR_LIST(last_error_time),
Konstantin Khlebnikovbc1d69d2019-02-21 11:49:27 -0500287 ATTR_LIST(journal_task),
Theodore Ts'o46f870d62019-11-21 13:09:43 -0500288#ifdef CONFIG_EXT4_DEBUG
289 ATTR_LIST(simulate_fail),
290#endif
Alex Zhuravlevcfd73232020-04-21 10:54:07 +0300291 ATTR_LIST(mb_prefetch),
292 ATTR_LIST(mb_prefetch_limit),
Theodore Ts'ob5799012015-09-23 12:44:17 -0400293 NULL,
294};
Kimberly Brown78e96052019-07-02 17:38:55 -0400295ATTRIBUTE_GROUPS(ext4);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400296
297/* Features this copy of ext4 supports */
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400298EXT4_ATTR_FEATURE(lazy_itable_init);
299EXT4_ATTR_FEATURE(batched_discard);
300EXT4_ATTR_FEATURE(meta_bg_resize);
Chandan Rajendra643fa962018-12-12 15:20:12 +0530301#ifdef CONFIG_FS_ENCRYPTION
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400302EXT4_ATTR_FEATURE(encryption);
Eric Biggersed318a62020-05-12 16:32:50 -0700303EXT4_ATTR_FEATURE(test_dummy_encryption_v2);
Eric Biggersc4704a42016-10-12 23:24:51 -0400304#endif
Theodore Ts'odb90f412019-05-06 14:03:52 -0400305#ifdef CONFIG_UNICODE
306EXT4_ATTR_FEATURE(casefold);
307#endif
Eric Biggersc93d8f82019-07-22 09:26:24 -0700308#ifdef CONFIG_FS_VERITY
309EXT4_ATTR_FEATURE(verity);
310#endif
Darrick J. Wong8c81bd82015-10-17 16:16:02 -0400311EXT4_ATTR_FEATURE(metadata_csum_seed);
Theodore Ts'o66948752020-10-28 13:39:13 -0400312EXT4_ATTR_FEATURE(fast_commit);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400313
314static struct attribute *ext4_feat_attrs[] = {
315 ATTR_LIST(lazy_itable_init),
316 ATTR_LIST(batched_discard),
317 ATTR_LIST(meta_bg_resize),
Chandan Rajendra643fa962018-12-12 15:20:12 +0530318#ifdef CONFIG_FS_ENCRYPTION
Theodore Ts'ob5799012015-09-23 12:44:17 -0400319 ATTR_LIST(encryption),
Eric Biggersed318a62020-05-12 16:32:50 -0700320 ATTR_LIST(test_dummy_encryption_v2),
Eric Biggersc4704a42016-10-12 23:24:51 -0400321#endif
Theodore Ts'odb90f412019-05-06 14:03:52 -0400322#ifdef CONFIG_UNICODE
323 ATTR_LIST(casefold),
324#endif
Eric Biggersc93d8f82019-07-22 09:26:24 -0700325#ifdef CONFIG_FS_VERITY
326 ATTR_LIST(verity),
327#endif
Darrick J. Wong8c81bd82015-10-17 16:16:02 -0400328 ATTR_LIST(metadata_csum_seed),
Theodore Ts'o66948752020-10-28 13:39:13 -0400329 ATTR_LIST(fast_commit),
Theodore Ts'ob5799012015-09-23 12:44:17 -0400330 NULL,
331};
Kimberly Brown78e96052019-07-02 17:38:55 -0400332ATTRIBUTE_GROUPS(ext4_feat);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400333
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400334static void *calc_ptr(struct ext4_attr *a, struct ext4_sb_info *sbi)
335{
336 switch (a->attr_ptr) {
337 case ptr_explicit:
338 return a->u.explicit_ptr;
339 case ptr_ext4_sb_info_offset:
340 return (void *) (((char *) sbi) + a->u.offset);
341 case ptr_ext4_super_block_offset:
342 return (void *) (((char *) sbi->s_es) + a->u.offset);
343 }
344 return NULL;
345}
346
Arnd Bergmann6a0678a2018-07-29 15:51:48 -0400347static ssize_t __print_tstamp(char *buf, __le32 lo, __u8 hi)
348{
Theodore Ts'o4549b492019-12-23 18:44:49 -0500349 return snprintf(buf, PAGE_SIZE, "%lld\n",
Arnd Bergmann6a0678a2018-07-29 15:51:48 -0400350 ((time64_t)hi << 32) + le32_to_cpu(lo));
351}
352
353#define print_tstamp(buf, es, tstamp) \
354 __print_tstamp(buf, (es)->tstamp, (es)->tstamp ## _hi)
355
Theodore Ts'ob5799012015-09-23 12:44:17 -0400356static ssize_t ext4_attr_show(struct kobject *kobj,
357 struct attribute *attr, char *buf)
358{
359 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
360 s_kobj);
361 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400362 void *ptr = calc_ptr(a, sbi);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400363
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400364 switch (a->attr_id) {
365 case attr_delayed_allocation_blocks:
366 return snprintf(buf, PAGE_SIZE, "%llu\n",
367 (s64) EXT4_C2B(sbi,
368 percpu_counter_sum(&sbi->s_dirtyclusters_counter)));
369 case attr_session_write_kbytes:
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400370 return session_write_kbytes_show(sbi, buf);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400371 case attr_lifetime_write_kbytes:
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400372 return lifetime_write_kbytes_show(sbi, buf);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400373 case attr_reserved_clusters:
374 return snprintf(buf, PAGE_SIZE, "%llu\n",
375 (unsigned long long)
376 atomic64_read(&sbi->s_resv_clusters));
377 case attr_inode_readahead:
378 case attr_pointer_ui:
379 if (!ptr)
380 return 0;
Arnd Bergmanna4d2aad2018-07-29 15:48:00 -0400381 if (a->attr_ptr == ptr_ext4_super_block_offset)
382 return snprintf(buf, PAGE_SIZE, "%u\n",
383 le32_to_cpup(ptr));
384 else
385 return snprintf(buf, PAGE_SIZE, "%u\n",
386 *((unsigned int *) ptr));
Theodore Ts'o46f870d62019-11-21 13:09:43 -0500387 case attr_pointer_ul:
388 if (!ptr)
389 return 0;
390 return snprintf(buf, PAGE_SIZE, "%lu\n",
391 *((unsigned long *) ptr));
Theodore Ts'o4549b492019-12-23 18:44:49 -0500392 case attr_pointer_u8:
393 if (!ptr)
394 return 0;
395 return snprintf(buf, PAGE_SIZE, "%u\n",
396 *((unsigned char *) ptr));
397 case attr_pointer_u64:
398 if (!ptr)
399 return 0;
400 if (a->attr_ptr == ptr_ext4_super_block_offset)
401 return snprintf(buf, PAGE_SIZE, "%llu\n",
402 le64_to_cpup(ptr));
403 else
404 return snprintf(buf, PAGE_SIZE, "%llu\n",
405 *((unsigned long long *) ptr));
406 case attr_pointer_string:
407 if (!ptr)
408 return 0;
409 return snprintf(buf, PAGE_SIZE, "%.*s\n", a->attr_size,
410 (char *) ptr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400411 case attr_pointer_atomic:
412 if (!ptr)
413 return 0;
414 return snprintf(buf, PAGE_SIZE, "%d\n",
415 atomic_read((atomic_t *) ptr));
416 case attr_feature:
417 return snprintf(buf, PAGE_SIZE, "supported\n");
Arnd Bergmann6a0678a2018-07-29 15:51:48 -0400418 case attr_first_error_time:
419 return print_tstamp(buf, sbi->s_es, s_first_error_time);
420 case attr_last_error_time:
421 return print_tstamp(buf, sbi->s_es, s_last_error_time);
Konstantin Khlebnikovbc1d69d2019-02-21 11:49:27 -0500422 case attr_journal_task:
423 return journal_task_show(sbi, buf);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400424 }
425
426 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400427}
428
429static ssize_t ext4_attr_store(struct kobject *kobj,
430 struct attribute *attr,
431 const char *buf, size_t len)
432{
433 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
434 s_kobj);
435 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400436 void *ptr = calc_ptr(a, sbi);
437 unsigned long t;
438 int ret;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400439
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400440 switch (a->attr_id) {
441 case attr_reserved_clusters:
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400442 return reserved_clusters_store(sbi, buf, len);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400443 case attr_pointer_ui:
444 if (!ptr)
445 return 0;
446 ret = kstrtoul(skip_spaces(buf), 0, &t);
447 if (ret)
448 return ret;
Arnd Bergmanna4d2aad2018-07-29 15:48:00 -0400449 if (a->attr_ptr == ptr_ext4_super_block_offset)
450 *((__le32 *) ptr) = cpu_to_le32(t);
451 else
452 *((unsigned int *) ptr) = t;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400453 return len;
Theodore Ts'o46f870d62019-11-21 13:09:43 -0500454 case attr_pointer_ul:
455 if (!ptr)
456 return 0;
457 ret = kstrtoul(skip_spaces(buf), 0, &t);
458 if (ret)
459 return ret;
460 *((unsigned long *) ptr) = t;
461 return len;
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400462 case attr_inode_readahead:
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400463 return inode_readahead_blks_store(sbi, buf, len);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400464 case attr_trigger_test_error:
Tyson Nottingham6ca06822018-03-30 00:13:10 -0400465 return trigger_test_error(sbi, buf, len);
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400466 }
467 return 0;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400468}
469
470static void ext4_sb_release(struct kobject *kobj)
471{
472 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
473 s_kobj);
474 complete(&sbi->s_kobj_unregister);
475}
476
477static const struct sysfs_ops ext4_attr_ops = {
478 .show = ext4_attr_show,
479 .store = ext4_attr_store,
480};
481
482static struct kobj_type ext4_sb_ktype = {
Kimberly Brown78e96052019-07-02 17:38:55 -0400483 .default_groups = ext4_groups,
Theodore Ts'ob5799012015-09-23 12:44:17 -0400484 .sysfs_ops = &ext4_attr_ops,
485 .release = ext4_sb_release,
486};
487
Theodore Ts'ob5799012015-09-23 12:44:17 -0400488static struct kobj_type ext4_feat_ktype = {
Kimberly Brown78e96052019-07-02 17:38:55 -0400489 .default_groups = ext4_feat_groups,
Theodore Ts'o76d33bc2015-09-23 12:45:17 -0400490 .sysfs_ops = &ext4_attr_ops,
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500491 .release = (void (*)(struct kobject *))kfree,
Theodore Ts'ob5799012015-09-23 12:44:17 -0400492};
493
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400494static struct kobject *ext4_root;
495
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500496static struct kobject *ext4_feat;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400497
498int ext4_register_sysfs(struct super_block *sb)
499{
500 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400501 int err;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400502
Theodore Ts'ob5799012015-09-23 12:44:17 -0400503 init_completion(&sbi->s_kobj_unregister);
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400504 err = kobject_init_and_add(&sbi->s_kobj, &ext4_sb_ktype, ext4_root,
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400505 "%s", sb->s_id);
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500506 if (err) {
507 kobject_put(&sbi->s_kobj);
508 wait_for_completion(&sbi->s_kobj_unregister);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400509 return err;
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500510 }
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400511
512 if (ext4_proc_root)
513 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400514 if (sbi->s_proc) {
Christoph Hellwig247dbed2018-04-11 11:37:23 +0200515 proc_create_single_data("options", S_IRUGO, sbi->s_proc,
516 ext4_seq_options_show, sb);
517 proc_create_single_data("es_shrinker_info", S_IRUGO,
518 sbi->s_proc, ext4_seq_es_shrinker_info_show,
519 sb);
Harshad Shirwadkarce8c59d2020-10-15 13:38:01 -0700520 proc_create_single_data("fc_info", 0444, sbi->s_proc,
521 ext4_fc_info_show, sb);
Christoph Hellwig247dbed2018-04-11 11:37:23 +0200522 proc_create_seq_data("mb_groups", S_IRUGO, sbi->s_proc,
523 &ext4_mb_seq_groups_ops, sb);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400524 }
525 return 0;
526}
527
528void ext4_unregister_sysfs(struct super_block *sb)
529{
530 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400531
Christoph Hellwig247dbed2018-04-11 11:37:23 +0200532 if (sbi->s_proc)
533 remove_proc_subtree(sb->s_id, ext4_proc_root);
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400534 kobject_del(&sbi->s_kobj);
Theodore Ts'ob5799012015-09-23 12:44:17 -0400535}
536
537int __init ext4_init_sysfs(void)
538{
539 int ret;
540
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400541 ext4_root = kobject_create_and_add("ext4", fs_kobj);
542 if (!ext4_root)
Riccardo Schirone5dc39712018-01-11 15:34:04 -0500543 return -ENOMEM;
544
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500545 ext4_feat = kzalloc(sizeof(*ext4_feat), GFP_KERNEL);
546 if (!ext4_feat) {
547 ret = -ENOMEM;
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400548 goto root_err;
Riccardo Schirone95c4df02018-01-11 14:28:13 -0500549 }
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500550
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500551 ret = kobject_init_and_add(ext4_feat, &ext4_feat_ktype,
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400552 ext4_root, "features");
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500553 if (ret)
554 goto feat_err;
555
556 ext4_proc_root = proc_mkdir(proc_dirname, NULL);
557 return ret;
558
559feat_err:
560 kobject_put(ext4_feat);
Tyson Nottinghamc2e5df72018-03-30 00:03:38 -0400561 ext4_feat = NULL;
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400562root_err:
563 kobject_put(ext4_root);
564 ext4_root = NULL;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400565 return ret;
566}
567
568void ext4_exit_sysfs(void)
569{
Riccardo Schironeb99fee52018-01-11 15:11:32 -0500570 kobject_put(ext4_feat);
Tyson Nottinghamc2e5df72018-03-30 00:03:38 -0400571 ext4_feat = NULL;
Tyson Nottinghambc1420a2018-03-30 00:41:34 -0400572 kobject_put(ext4_root);
573 ext4_root = NULL;
Theodore Ts'oebd173b2015-09-23 12:46:17 -0400574 remove_proc_entry(proc_dirname, NULL);
575 ext4_proc_root = NULL;
Theodore Ts'ob5799012015-09-23 12:44:17 -0400576}
577