2018-06-06 02:42:14 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2005-11-02 03:58:39 +00:00
|
|
|
* Copyright (c) 2001-2005 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#include "xfs.h"
|
2011-01-12 00:35:42 +00:00
|
|
|
#include "xfs_error.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static struct ctl_table_header *xfs_table_header;
|
|
|
|
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
|
|
STATIC int
|
|
|
|
xfs_stats_clear_proc_handler(
|
sysctl: treewide: constify the ctl_table argument of proc_handlers
const qualify the struct ctl_table argument in the proc_handler function
signatures. This is a prerequisite to moving the static ctl_table
structs into .rodata data which will ensure that proc_handler function
pointers cannot be modified.
This patch has been generated by the following coccinelle script:
```
virtual patch
@r1@
identifier ctl, write, buffer, lenp, ppos;
identifier func !~ "appldata_(timer|interval)_handler|sched_(rt|rr)_handler|rds_tcp_skbuf_handler|proc_sctp_do_(hmac_alg|rto_min|rto_max|udp_port|alpha_beta|auth|probe_interval)";
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos);
@r2@
identifier func, ctl, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos)
{ ... }
@r3@
identifier func;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int , void *, size_t *, loff_t *);
@r4@
identifier func, ctl;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int , void *, size_t *, loff_t *);
@r5@
identifier func, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int write, void *buffer, size_t *lenp, loff_t *ppos);
```
* Code formatting was adjusted in xfs_sysctl.c to comply with code
conventions. The xfs_stats_clear_proc_handler,
xfs_panic_mask_proc_handler and xfs_deprecated_dointvec_minmax where
adjusted.
* The ctl_table argument in proc_watchdog_common was const qualified.
This is called from a proc_handler itself and is calling back into
another proc_handler, making it necessary to change it as part of the
proc_handler migration.
Co-developed-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Co-developed-by: Joel Granados <j.granados@samsung.com>
Signed-off-by: Joel Granados <j.granados@samsung.com>
2024-07-24 18:59:29 +00:00
|
|
|
const struct ctl_table *ctl,
|
2013-06-14 02:37:50 +00:00
|
|
|
int write,
|
2020-04-24 06:43:38 +00:00
|
|
|
void *buffer,
|
2013-06-14 02:37:50 +00:00
|
|
|
size_t *lenp,
|
|
|
|
loff_t *ppos)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2015-10-11 18:15:45 +00:00
|
|
|
int ret, *valp = ctl->data;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-09-23 22:57:19 +00:00
|
|
|
ret = proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!ret && write && *valp) {
|
2015-10-11 18:19:45 +00:00
|
|
|
xfs_stats_clearall(xfsstats.xs_stats);
|
2005-04-16 22:20:36 +00:00
|
|
|
xfs_stats_clear = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2011-01-12 00:35:42 +00:00
|
|
|
|
|
|
|
STATIC int
|
|
|
|
xfs_panic_mask_proc_handler(
|
sysctl: treewide: constify the ctl_table argument of proc_handlers
const qualify the struct ctl_table argument in the proc_handler function
signatures. This is a prerequisite to moving the static ctl_table
structs into .rodata data which will ensure that proc_handler function
pointers cannot be modified.
This patch has been generated by the following coccinelle script:
```
virtual patch
@r1@
identifier ctl, write, buffer, lenp, ppos;
identifier func !~ "appldata_(timer|interval)_handler|sched_(rt|rr)_handler|rds_tcp_skbuf_handler|proc_sctp_do_(hmac_alg|rto_min|rto_max|udp_port|alpha_beta|auth|probe_interval)";
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos);
@r2@
identifier func, ctl, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos)
{ ... }
@r3@
identifier func;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int , void *, size_t *, loff_t *);
@r4@
identifier func, ctl;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int , void *, size_t *, loff_t *);
@r5@
identifier func, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int write, void *buffer, size_t *lenp, loff_t *ppos);
```
* Code formatting was adjusted in xfs_sysctl.c to comply with code
conventions. The xfs_stats_clear_proc_handler,
xfs_panic_mask_proc_handler and xfs_deprecated_dointvec_minmax where
adjusted.
* The ctl_table argument in proc_watchdog_common was const qualified.
This is called from a proc_handler itself and is calling back into
another proc_handler, making it necessary to change it as part of the
proc_handler migration.
Co-developed-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Co-developed-by: Joel Granados <j.granados@samsung.com>
Signed-off-by: Joel Granados <j.granados@samsung.com>
2024-07-24 18:59:29 +00:00
|
|
|
const struct ctl_table *ctl,
|
2013-06-14 02:37:50 +00:00
|
|
|
int write,
|
2020-04-24 06:43:38 +00:00
|
|
|
void *buffer,
|
2013-06-14 02:37:50 +00:00
|
|
|
size_t *lenp,
|
|
|
|
loff_t *ppos)
|
2011-01-12 00:35:42 +00:00
|
|
|
{
|
|
|
|
int ret, *valp = ctl->data;
|
|
|
|
|
|
|
|
ret = proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
|
|
|
|
if (!ret && write) {
|
|
|
|
xfs_panic_mask = *valp;
|
|
|
|
#ifdef DEBUG
|
|
|
|
xfs_panic_mask |= (XFS_PTAG_SHUTDOWN_CORRUPT | XFS_PTAG_LOGRES);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* CONFIG_PROC_FS */
|
|
|
|
|
2020-09-25 18:11:37 +00:00
|
|
|
STATIC int
|
2021-02-12 17:14:47 +00:00
|
|
|
xfs_deprecated_dointvec_minmax(
|
sysctl: treewide: constify the ctl_table argument of proc_handlers
const qualify the struct ctl_table argument in the proc_handler function
signatures. This is a prerequisite to moving the static ctl_table
structs into .rodata data which will ensure that proc_handler function
pointers cannot be modified.
This patch has been generated by the following coccinelle script:
```
virtual patch
@r1@
identifier ctl, write, buffer, lenp, ppos;
identifier func !~ "appldata_(timer|interval)_handler|sched_(rt|rr)_handler|rds_tcp_skbuf_handler|proc_sctp_do_(hmac_alg|rto_min|rto_max|udp_port|alpha_beta|auth|probe_interval)";
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos);
@r2@
identifier func, ctl, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int write, void *buffer, size_t *lenp, loff_t *ppos)
{ ... }
@r3@
identifier func;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int , void *, size_t *, loff_t *);
@r4@
identifier func, ctl;
@@
int func(
- struct ctl_table *ctl
+ const struct ctl_table *ctl
,int , void *, size_t *, loff_t *);
@r5@
identifier func, write, buffer, lenp, ppos;
@@
int func(
- struct ctl_table *
+ const struct ctl_table *
,int write, void *buffer, size_t *lenp, loff_t *ppos);
```
* Code formatting was adjusted in xfs_sysctl.c to comply with code
conventions. The xfs_stats_clear_proc_handler,
xfs_panic_mask_proc_handler and xfs_deprecated_dointvec_minmax where
adjusted.
* The ctl_table argument in proc_watchdog_common was const qualified.
This is called from a proc_handler itself and is calling back into
another proc_handler, making it necessary to change it as part of the
proc_handler migration.
Co-developed-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Co-developed-by: Joel Granados <j.granados@samsung.com>
Signed-off-by: Joel Granados <j.granados@samsung.com>
2024-07-24 18:59:29 +00:00
|
|
|
const struct ctl_table *ctl,
|
2020-09-25 18:11:37 +00:00
|
|
|
int write,
|
|
|
|
void *buffer,
|
|
|
|
size_t *lenp,
|
|
|
|
loff_t *ppos)
|
|
|
|
{
|
|
|
|
if (write) {
|
2021-02-12 17:14:47 +00:00
|
|
|
printk_ratelimited(KERN_WARNING
|
|
|
|
"XFS: %s sysctl option is deprecated.\n",
|
2020-09-25 18:11:37 +00:00
|
|
|
ctl->procname);
|
|
|
|
}
|
|
|
|
return proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
|
|
|
|
}
|
|
|
|
|
2013-06-14 02:37:50 +00:00
|
|
|
static struct ctl_table xfs_table[] = {
|
2007-02-10 07:36:59 +00:00
|
|
|
{
|
|
|
|
.procname = "irix_sgid_inherit",
|
|
|
|
.data = &xfs_params.sgid_inherit.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2021-02-12 17:14:47 +00:00
|
|
|
.proc_handler = xfs_deprecated_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.sgid_inherit.min,
|
|
|
|
.extra2 = &xfs_params.sgid_inherit.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "irix_symlink_mode",
|
|
|
|
.data = &xfs_params.symlink_mode.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2021-02-12 17:14:47 +00:00
|
|
|
.proc_handler = xfs_deprecated_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.symlink_mode.min,
|
|
|
|
.extra2 = &xfs_params.symlink_mode.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "panic_mask",
|
|
|
|
.data = &xfs_params.panic_mask.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2011-01-12 00:35:42 +00:00
|
|
|
.proc_handler = xfs_panic_mask_proc_handler,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.panic_mask.min,
|
|
|
|
.extra2 = &xfs_params.panic_mask.max
|
|
|
|
},
|
2006-06-09 04:54:19 +00:00
|
|
|
|
2007-02-10 07:36:59 +00:00
|
|
|
{
|
|
|
|
.procname = "error_level",
|
|
|
|
.data = &xfs_params.error_level.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.error_level.min,
|
|
|
|
.extra2 = &xfs_params.error_level.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "xfssyncd_centisecs",
|
|
|
|
.data = &xfs_params.syncd_timer.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.syncd_timer.min,
|
|
|
|
.extra2 = &xfs_params.syncd_timer.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "inherit_sync",
|
|
|
|
.data = &xfs_params.inherit_sync.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.inherit_sync.min,
|
|
|
|
.extra2 = &xfs_params.inherit_sync.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "inherit_nodump",
|
|
|
|
.data = &xfs_params.inherit_nodump.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.inherit_nodump.min,
|
|
|
|
.extra2 = &xfs_params.inherit_nodump.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "inherit_noatime",
|
|
|
|
.data = &xfs_params.inherit_noatim.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.inherit_noatim.min,
|
|
|
|
.extra2 = &xfs_params.inherit_noatim.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "inherit_nosymlinks",
|
|
|
|
.data = &xfs_params.inherit_nosym.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.inherit_nosym.min,
|
|
|
|
.extra2 = &xfs_params.inherit_nosym.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "rotorstep",
|
|
|
|
.data = &xfs_params.rotorstep.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.rotorstep.min,
|
|
|
|
.extra2 = &xfs_params.rotorstep.max
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.procname = "inherit_nodefrag",
|
|
|
|
.data = &xfs_params.inherit_nodfrg.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.inherit_nodfrg.min,
|
|
|
|
.extra2 = &xfs_params.inherit_nodfrg.max
|
|
|
|
},
|
2007-07-11 01:09:12 +00:00
|
|
|
{
|
|
|
|
.procname = "filestream_centisecs",
|
|
|
|
.data = &xfs_params.fstrm_timer.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2007-07-11 01:09:12 +00:00
|
|
|
.extra1 = &xfs_params.fstrm_timer.min,
|
|
|
|
.extra2 = &xfs_params.fstrm_timer.max,
|
|
|
|
},
|
2012-11-06 14:50:47 +00:00
|
|
|
{
|
|
|
|
.procname = "speculative_prealloc_lifetime",
|
2021-01-23 00:48:43 +00:00
|
|
|
.data = &xfs_params.blockgc_timer.val,
|
2012-11-06 14:50:47 +00:00
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
|
|
|
.proc_handler = proc_dointvec_minmax,
|
2021-01-23 00:48:43 +00:00
|
|
|
.extra1 = &xfs_params.blockgc_timer.min,
|
|
|
|
.extra2 = &xfs_params.blockgc_timer.max,
|
2016-10-03 16:11:46 +00:00
|
|
|
},
|
2021-02-12 17:14:47 +00:00
|
|
|
{
|
|
|
|
.procname = "speculative_cow_prealloc_lifetime",
|
|
|
|
.data = &xfs_params.blockgc_timer.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
|
|
|
.proc_handler = xfs_deprecated_dointvec_minmax,
|
|
|
|
.extra1 = &xfs_params.blockgc_timer.min,
|
|
|
|
.extra2 = &xfs_params.blockgc_timer.max,
|
|
|
|
},
|
2005-04-16 22:20:36 +00:00
|
|
|
/* please keep this the last entry */
|
|
|
|
#ifdef CONFIG_PROC_FS
|
2007-02-10 07:36:59 +00:00
|
|
|
{
|
|
|
|
.procname = "stats_clear",
|
|
|
|
.data = &xfs_params.stats_clear.val,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-11-16 11:11:48 +00:00
|
|
|
.proc_handler = xfs_stats_clear_proc_handler,
|
2007-02-10 07:36:59 +00:00
|
|
|
.extra1 = &xfs_params.stats_clear.min,
|
|
|
|
.extra2 = &xfs_params.stats_clear.max
|
|
|
|
},
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* CONFIG_PROC_FS */
|
|
|
|
};
|
|
|
|
|
2008-07-18 07:11:46 +00:00
|
|
|
int
|
2005-04-16 22:20:36 +00:00
|
|
|
xfs_sysctl_register(void)
|
|
|
|
{
|
2023-03-10 08:42:26 +00:00
|
|
|
xfs_table_header = register_sysctl("fs/xfs", xfs_table);
|
2008-07-18 07:11:46 +00:00
|
|
|
if (!xfs_table_header)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xfs_sysctl_unregister(void)
|
|
|
|
{
|
2008-07-18 07:11:46 +00:00
|
|
|
unregister_sysctl_table(xfs_table_header);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|