diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ima.h | 6 | ||||
-rw-r--r-- | include/linux/security.h | 17 |
2 files changed, 23 insertions, 0 deletions
diff --git a/include/linux/ima.h b/include/linux/ima.h index 1b7f268cddce..7cf5e9b32550 100644 --- a/include/linux/ima.h +++ b/include/linux/ima.h | |||
@@ -19,6 +19,7 @@ extern int ima_file_check(struct file *file, int mask); | |||
19 | extern void ima_file_free(struct file *file); | 19 | extern void ima_file_free(struct file *file); |
20 | extern int ima_file_mmap(struct file *file, unsigned long prot); | 20 | extern int ima_file_mmap(struct file *file, unsigned long prot); |
21 | extern int ima_module_check(struct file *file); | 21 | extern int ima_module_check(struct file *file); |
22 | extern int ima_fw_from_file(struct file *file, char *buf, size_t size); | ||
22 | 23 | ||
23 | #else | 24 | #else |
24 | static inline int ima_bprm_check(struct linux_binprm *bprm) | 25 | static inline int ima_bprm_check(struct linux_binprm *bprm) |
@@ -46,6 +47,11 @@ static inline int ima_module_check(struct file *file) | |||
46 | return 0; | 47 | return 0; |
47 | } | 48 | } |
48 | 49 | ||
50 | static inline int ima_fw_from_file(struct file *file, char *buf, size_t size) | ||
51 | { | ||
52 | return 0; | ||
53 | } | ||
54 | |||
49 | #endif /* CONFIG_IMA */ | 55 | #endif /* CONFIG_IMA */ |
50 | 56 | ||
51 | #ifdef CONFIG_IMA_APPRAISE | 57 | #ifdef CONFIG_IMA_APPRAISE |
diff --git a/include/linux/security.h b/include/linux/security.h index 59820f8782a1..0ae4b147718a 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
@@ -702,6 +702,15 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
702 | * @inode points to the inode to use as a reference. | 702 | * @inode points to the inode to use as a reference. |
703 | * The current task must be the one that nominated @inode. | 703 | * The current task must be the one that nominated @inode. |
704 | * Return 0 if successful. | 704 | * Return 0 if successful. |
705 | * @kernel_fw_from_file: | ||
706 | * Load firmware from userspace (not called for built-in firmware). | ||
707 | * @file contains the file structure pointing to the file containing | ||
708 | * the firmware to load. This argument will be NULL if the firmware | ||
709 | * was loaded via the uevent-triggered blob-based interface exposed | ||
710 | * by CONFIG_FW_LOADER_USER_HELPER. | ||
711 | * @buf pointer to buffer containing firmware contents. | ||
712 | * @size length of the firmware contents. | ||
713 | * Return 0 if permission is granted. | ||
705 | * @kernel_module_request: | 714 | * @kernel_module_request: |
706 | * Ability to trigger the kernel to automatically upcall to userspace for | 715 | * Ability to trigger the kernel to automatically upcall to userspace for |
707 | * userspace to load a kernel module with the given name. | 716 | * userspace to load a kernel module with the given name. |
@@ -1568,6 +1577,7 @@ struct security_operations { | |||
1568 | void (*cred_transfer)(struct cred *new, const struct cred *old); | 1577 | void (*cred_transfer)(struct cred *new, const struct cred *old); |
1569 | int (*kernel_act_as)(struct cred *new, u32 secid); | 1578 | int (*kernel_act_as)(struct cred *new, u32 secid); |
1570 | int (*kernel_create_files_as)(struct cred *new, struct inode *inode); | 1579 | int (*kernel_create_files_as)(struct cred *new, struct inode *inode); |
1580 | int (*kernel_fw_from_file)(struct file *file, char *buf, size_t size); | ||
1571 | int (*kernel_module_request)(char *kmod_name); | 1581 | int (*kernel_module_request)(char *kmod_name); |
1572 | int (*kernel_module_from_file)(struct file *file); | 1582 | int (*kernel_module_from_file)(struct file *file); |
1573 | int (*task_fix_setuid) (struct cred *new, const struct cred *old, | 1583 | int (*task_fix_setuid) (struct cred *new, const struct cred *old, |
@@ -1840,6 +1850,7 @@ int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp); | |||
1840 | void security_transfer_creds(struct cred *new, const struct cred *old); | 1850 | void security_transfer_creds(struct cred *new, const struct cred *old); |
1841 | int security_kernel_act_as(struct cred *new, u32 secid); | 1851 | int security_kernel_act_as(struct cred *new, u32 secid); |
1842 | int security_kernel_create_files_as(struct cred *new, struct inode *inode); | 1852 | int security_kernel_create_files_as(struct cred *new, struct inode *inode); |
1853 | int security_kernel_fw_from_file(struct file *file, char *buf, size_t size); | ||
1843 | int security_kernel_module_request(char *kmod_name); | 1854 | int security_kernel_module_request(char *kmod_name); |
1844 | int security_kernel_module_from_file(struct file *file); | 1855 | int security_kernel_module_from_file(struct file *file); |
1845 | int security_task_fix_setuid(struct cred *new, const struct cred *old, | 1856 | int security_task_fix_setuid(struct cred *new, const struct cred *old, |
@@ -2366,6 +2377,12 @@ static inline int security_kernel_create_files_as(struct cred *cred, | |||
2366 | return 0; | 2377 | return 0; |
2367 | } | 2378 | } |
2368 | 2379 | ||
2380 | static inline int security_kernel_fw_from_file(struct file *file, | ||
2381 | char *buf, size_t size) | ||
2382 | { | ||
2383 | return 0; | ||
2384 | } | ||
2385 | |||
2369 | static inline int security_kernel_module_request(char *kmod_name) | 2386 | static inline int security_kernel_module_request(char *kmod_name) |
2370 | { | 2387 | { |
2371 | return 0; | 2388 | return 0; |