mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
net: bridge: constify 'struct bin_attribute'
The sysfs core now allows instances of 'struct bin_attribute' to be moved into read-only memory. Make use of that to protect them against accidental or malicious modifications. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Reviewed-by: Simon Horman <horms@kernel.org> Acked-by: Nikolay Aleksandrov <razor@blackwall.org> Link: https://patch.msgid.link/20241216-sysfs-const-bin_attr-net-v1-1-ec460b91f274@weissschuh.net Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
d3c9510dc9
commit
a2558b410d
@ -1002,7 +1002,7 @@ static const struct attribute_group bridge_group = {
|
|||||||
* Returns the number of bytes read.
|
* Returns the number of bytes read.
|
||||||
*/
|
*/
|
||||||
static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
|
static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
|
||||||
struct bin_attribute *bin_attr,
|
const struct bin_attribute *bin_attr,
|
||||||
char *buf, loff_t off, size_t count)
|
char *buf, loff_t off, size_t count)
|
||||||
{
|
{
|
||||||
struct device *dev = kobj_to_dev(kobj);
|
struct device *dev = kobj_to_dev(kobj);
|
||||||
@ -1023,10 +1023,10 @@ static ssize_t brforward_read(struct file *filp, struct kobject *kobj,
|
|||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct bin_attribute bridge_forward = {
|
static const struct bin_attribute bridge_forward = {
|
||||||
.attr = { .name = SYSFS_BRIDGE_FDB,
|
.attr = { .name = SYSFS_BRIDGE_FDB,
|
||||||
.mode = 0444, },
|
.mode = 0444, },
|
||||||
.read = brforward_read,
|
.read_new = brforward_read,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user