lsm: constify the 'file' parameter in security_binder_transfer_file()
authorKhadija Kamran <kamrankhadijadj@gmail.com>
Sat, 12 Aug 2023 15:31:08 +0000 (20:31 +0500)
committerPaul Moore <paul@paul-moore.com>
Tue, 15 Aug 2023 20:04:34 +0000 (16:04 -0400)
commit8e4672d6f902d5c4db1e87e8aa9f530149d85bc6
tree8b2450fcb8a618c672456e1b90801b3f8ebf1e09
parent6672efbb685f7c9c9df005beb839e1942fd6b34e
lsm: constify the 'file' parameter in security_binder_transfer_file()

SELinux registers the implementation for the "binder_transfer_file"
hook. Looking at the function implementation we observe that the
parameter "file" is not changing.

Mark the "file" parameter of LSM hook security_binder_transfer_file() as
"const" since it will not be changing in the LSM hook.

Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com>
[PM: subject line whitespace fix]
Signed-off-by: Paul Moore <paul@paul-moore.com>
include/linux/lsm_hook_defs.h
include/linux/security.h
security/security.c
security/selinux/hooks.c