LSM_HOOK(int, 0, binder_transfer_binder, const struct cred *from,
         const struct cred *to)
 LSM_HOOK(int, 0, binder_transfer_file, const struct cred *from,
-        const struct cred *to, struct file *file)
+        const struct cred *to, const struct file *file)
 LSM_HOOK(int, 0, ptrace_access_check, struct task_struct *child,
         unsigned int mode)
 LSM_HOOK(int, 0, ptrace_traceme, struct task_struct *parent)
 
 int security_binder_transfer_binder(const struct cred *from,
                                    const struct cred *to);
 int security_binder_transfer_file(const struct cred *from,
-                                 const struct cred *to, struct file *file);
+                                 const struct cred *to, const struct file *file);
 int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
 int security_ptrace_traceme(struct task_struct *parent);
 int security_capget(const struct task_struct *target,
 
 static inline int security_binder_transfer_file(const struct cred *from,
                                                const struct cred *to,
-                                               struct file *file)
+                                               const struct file *file)
 {
        return 0;
 }
 
  * Return: Returns 0 if permission is granted.
  */
 int security_binder_transfer_file(const struct cred *from,
-                                 const struct cred *to, struct file *file)
+                                 const struct cred *to, const struct file *file)
 {
        return call_int_hook(binder_transfer_file, 0, from, to, file);
 }
 
 }
 
 #ifdef CONFIG_BPF_SYSCALL
-static int bpf_fd_pass(struct file *file, u32 sid);
+static int bpf_fd_pass(const struct file *file, u32 sid);
 #endif
 
 /* Check whether a task can use an open file descriptor to
 }
 
 /* Convert a Linux file to an access vector. */
-static inline u32 file_to_av(struct file *file)
+static inline u32 file_to_av(const struct file *file)
 {
        u32 av = 0;
 
 
 static int selinux_binder_transfer_file(const struct cred *from,
                                        const struct cred *to,
-                                       struct file *file)
+                                       const struct file *file)
 {
        u32 sid = cred_sid(to);
        struct file_security_struct *fsec = selinux_file(file);
  * access the bpf object and that's why we have to add this additional check in
  * selinux_file_receive and selinux_binder_transfer_files.
  */
-static int bpf_fd_pass(struct file *file, u32 sid)
+static int bpf_fd_pass(const struct file *file, u32 sid)
 {
        struct bpf_security_struct *bpfsec;
        struct bpf_prog *prog;