diff options
Diffstat (limited to 'security/tomoyo/common.h')
-rw-r--r-- | security/tomoyo/common.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/security/tomoyo/common.h b/security/tomoyo/common.h index 9b106e9adbec..f4da7a8034a3 100644 --- a/security/tomoyo/common.h +++ b/security/tomoyo/common.h | |||
@@ -804,14 +804,8 @@ bool tomoyo_read_no_rewrite_policy(struct tomoyo_io_buffer *head); | |||
804 | bool tomoyo_tokenize(char *buffer, char *w[], size_t size); | 804 | bool tomoyo_tokenize(char *buffer, char *w[], size_t size); |
805 | /* Write domain policy violation warning message to console? */ | 805 | /* Write domain policy violation warning message to console? */ |
806 | bool tomoyo_verbose_mode(const struct tomoyo_domain_info *domain); | 806 | bool tomoyo_verbose_mode(const struct tomoyo_domain_info *domain); |
807 | /* Convert double path operation to operation name. */ | ||
808 | const char *tomoyo_path22keyword(const u8 operation); | ||
809 | const char *tomoyo_path_number2keyword(const u8 operation); | ||
810 | const char *tomoyo_mkdev2keyword(const u8 operation); | ||
811 | /* Get the last component of the given domainname. */ | 807 | /* Get the last component of the given domainname. */ |
812 | const char *tomoyo_get_last_name(const struct tomoyo_domain_info *domain); | 808 | const char *tomoyo_get_last_name(const struct tomoyo_domain_info *domain); |
813 | /* Convert single path operation to operation name. */ | ||
814 | const char *tomoyo_path2keyword(const u8 operation); | ||
815 | /* Fill "struct tomoyo_request_info". */ | 809 | /* Fill "struct tomoyo_request_info". */ |
816 | int tomoyo_init_request_info(struct tomoyo_request_info *r, | 810 | int tomoyo_init_request_info(struct tomoyo_request_info *r, |
817 | struct tomoyo_domain_info *domain, | 811 | struct tomoyo_domain_info *domain, |
@@ -985,6 +979,11 @@ extern bool tomoyo_policy_loaded; | |||
985 | /* The kernel's domain. */ | 979 | /* The kernel's domain. */ |
986 | extern struct tomoyo_domain_info tomoyo_kernel_domain; | 980 | extern struct tomoyo_domain_info tomoyo_kernel_domain; |
987 | 981 | ||
982 | extern const char *tomoyo_path_keyword[TOMOYO_MAX_PATH_OPERATION]; | ||
983 | extern const char *tomoyo_mkdev_keyword[TOMOYO_MAX_MKDEV_OPERATION]; | ||
984 | extern const char *tomoyo_path2_keyword[TOMOYO_MAX_PATH2_OPERATION]; | ||
985 | extern const char *tomoyo_path_number_keyword[TOMOYO_MAX_PATH_NUMBER_OPERATION]; | ||
986 | |||
988 | extern unsigned int tomoyo_quota_for_query; | 987 | extern unsigned int tomoyo_quota_for_query; |
989 | extern unsigned int tomoyo_query_memory_size; | 988 | extern unsigned int tomoyo_query_memory_size; |
990 | 989 | ||