mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
jfs: move jfs_xattr_handlers to .rodata
This makes it harder for accidental or malicious changes to jfs_xattr_handlers at runtime. Cc: Dave Kleikamp <shaggy@kernel.org> Cc: jfs-discussion@lists.sourceforge.net Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com> Link: https://lore.kernel.org/r/20230930050033.41174-17-wedsonaf@gmail.com Reviewed-by: Dave Kleikamp <dave.kleikamp@oracle.com> Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
13a75c3abc
commit
ea780283e2
@ -46,7 +46,7 @@ extern int __jfs_setxattr(tid_t, struct inode *, const char *, const void *,
|
|||||||
extern ssize_t __jfs_getxattr(struct inode *, const char *, void *, size_t);
|
extern ssize_t __jfs_getxattr(struct inode *, const char *, void *, size_t);
|
||||||
extern ssize_t jfs_listxattr(struct dentry *, char *, size_t);
|
extern ssize_t jfs_listxattr(struct dentry *, char *, size_t);
|
||||||
|
|
||||||
extern const struct xattr_handler *jfs_xattr_handlers[];
|
extern const struct xattr_handler * const jfs_xattr_handlers[];
|
||||||
|
|
||||||
#ifdef CONFIG_JFS_SECURITY
|
#ifdef CONFIG_JFS_SECURITY
|
||||||
extern int jfs_init_security(tid_t, struct inode *, struct inode *,
|
extern int jfs_init_security(tid_t, struct inode *, struct inode *,
|
||||||
|
@ -985,7 +985,7 @@ static const struct xattr_handler jfs_trusted_xattr_handler = {
|
|||||||
.set = jfs_xattr_set,
|
.set = jfs_xattr_set,
|
||||||
};
|
};
|
||||||
|
|
||||||
const struct xattr_handler *jfs_xattr_handlers[] = {
|
const struct xattr_handler * const jfs_xattr_handlers[] = {
|
||||||
&jfs_os2_xattr_handler,
|
&jfs_os2_xattr_handler,
|
||||||
&jfs_user_xattr_handler,
|
&jfs_user_xattr_handler,
|
||||||
&jfs_security_xattr_handler,
|
&jfs_security_xattr_handler,
|
||||||
|
Loading…
Reference in New Issue
Block a user