diff options
| author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2023-05-01 15:20:08 -0700 | 
|---|---|---|
| committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2023-05-01 15:20:08 -0700 | 
| commit | 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e (patch) | |
| tree | d57f3a63479a07b4e0cece029886e76e04feb984 /include/linux/ima.h | |
| parent | 5dc63e56a9cf8df0b59c234a505a1653f1bdf885 (diff) | |
| parent | 53bea86b5712c7491bb3dae12e271666df0a308c (diff) | |
Merge branch 'next' into for-linus
Prepare input updates for 6.4 merge window.
Diffstat (limited to 'include/linux/ima.h')
| -rw-r--r-- | include/linux/ima.h | 28 | 
1 files changed, 15 insertions, 13 deletions
diff --git a/include/linux/ima.h b/include/linux/ima.h index 5a0b2a285a18..86b57757c7b1 100644 --- a/include/linux/ima.h +++ b/include/linux/ima.h @@ -18,10 +18,11 @@ struct linux_binprm;  extern enum hash_algo ima_get_current_hash_algo(void);  extern int ima_bprm_check(struct linux_binprm *bprm);  extern int ima_file_check(struct file *file, int mask); -extern void ima_post_create_tmpfile(struct user_namespace *mnt_userns, +extern void ima_post_create_tmpfile(struct mnt_idmap *idmap,  				    struct inode *inode);  extern void ima_file_free(struct file *file); -extern int ima_file_mmap(struct file *file, unsigned long prot); +extern int ima_file_mmap(struct file *file, unsigned long reqprot, +			 unsigned long prot, unsigned long flags);  extern int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot);  extern int ima_load_data(enum kernel_load_data_id id, bool contents);  extern int ima_post_load_data(char *buf, loff_t size, @@ -30,7 +31,7 @@ extern int ima_read_file(struct file *file, enum kernel_read_file_id id,  			 bool contents);  extern int ima_post_read_file(struct file *file, void *buf, loff_t size,  			      enum kernel_read_file_id id); -extern void ima_post_path_mknod(struct user_namespace *mnt_userns, +extern void ima_post_path_mknod(struct mnt_idmap *idmap,  				struct dentry *dentry);  extern int ima_file_hash(struct file *file, char *buf, size_t buf_size);  extern int ima_inode_hash(struct inode *inode, char *buf, size_t buf_size); @@ -66,7 +67,7 @@ static inline int ima_file_check(struct file *file, int mask)  	return 0;  } -static inline void ima_post_create_tmpfile(struct user_namespace *mnt_userns, +static inline void ima_post_create_tmpfile(struct mnt_idmap *idmap,  					   struct inode *inode)  {  } @@ -76,7 +77,8 @@ static inline void ima_file_free(struct file *file)  	return;  } -static inline int ima_file_mmap(struct file *file, unsigned long prot) +static inline int ima_file_mmap(struct file *file, unsigned long reqprot, +				unsigned long prot, unsigned long flags)  {  	return 0;  } @@ -111,7 +113,7 @@ static inline int ima_post_read_file(struct file *file, void *buf, loff_t size,  	return 0;  } -static inline void ima_post_path_mknod(struct user_namespace *mnt_userns, +static inline void ima_post_path_mknod(struct mnt_idmap *idmap,  				       struct dentry *dentry)  {  	return; @@ -183,18 +185,18 @@ static inline void ima_post_key_create_or_update(struct key *keyring,  #ifdef CONFIG_IMA_APPRAISE  extern bool is_ima_appraise_enabled(void); -extern void ima_inode_post_setattr(struct user_namespace *mnt_userns, +extern void ima_inode_post_setattr(struct mnt_idmap *idmap,  				   struct dentry *dentry);  extern int ima_inode_setxattr(struct dentry *dentry, const char *xattr_name,  		       const void *xattr_value, size_t xattr_value_len); -extern int ima_inode_set_acl(struct user_namespace *mnt_userns, +extern int ima_inode_set_acl(struct mnt_idmap *idmap,  			     struct dentry *dentry, const char *acl_name,  			     struct posix_acl *kacl); -static inline int ima_inode_remove_acl(struct user_namespace *mnt_userns, +static inline int ima_inode_remove_acl(struct mnt_idmap *idmap,  				       struct dentry *dentry,  				       const char *acl_name)  { -	return ima_inode_set_acl(mnt_userns, dentry, acl_name, NULL); +	return ima_inode_set_acl(idmap, dentry, acl_name, NULL);  }  extern int ima_inode_removexattr(struct dentry *dentry, const char *xattr_name);  #else @@ -203,7 +205,7 @@ static inline bool is_ima_appraise_enabled(void)  	return 0;  } -static inline void ima_inode_post_setattr(struct user_namespace *mnt_userns, +static inline void ima_inode_post_setattr(struct mnt_idmap *idmap,  					  struct dentry *dentry)  {  	return; @@ -217,7 +219,7 @@ static inline int ima_inode_setxattr(struct dentry *dentry,  	return 0;  } -static inline int ima_inode_set_acl(struct user_namespace *mnt_userns, +static inline int ima_inode_set_acl(struct mnt_idmap *idmap,  				    struct dentry *dentry, const char *acl_name,  				    struct posix_acl *kacl)  { @@ -231,7 +233,7 @@ static inline int ima_inode_removexattr(struct dentry *dentry,  	return 0;  } -static inline int ima_inode_remove_acl(struct user_namespace *mnt_userns, +static inline int ima_inode_remove_acl(struct mnt_idmap *idmap,  				       struct dentry *dentry,  				       const char *acl_name)  {  | 
