diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/audit.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h index 25f6ae30dd4b..f938335af75e 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
@@ -549,16 +549,20 @@ extern void audit_log_format(struct audit_buffer *ab, | |||
549 | const char *fmt, ...) | 549 | const char *fmt, ...) |
550 | __attribute__((format(printf,2,3))); | 550 | __attribute__((format(printf,2,3))); |
551 | extern void audit_log_end(struct audit_buffer *ab); | 551 | extern void audit_log_end(struct audit_buffer *ab); |
552 | extern void audit_log_hex(struct audit_buffer *ab, | ||
553 | const unsigned char *buf, | ||
554 | size_t len); | ||
555 | extern int audit_string_contains_control(const char *string, | 552 | extern int audit_string_contains_control(const char *string, |
556 | size_t len); | 553 | size_t len); |
554 | extern void audit_log_n_hex(struct audit_buffer *ab, | ||
555 | const unsigned char *buf, | ||
556 | size_t len); | ||
557 | extern void audit_log_n_string(struct audit_buffer *ab, | ||
558 | const char *buf, | ||
559 | size_t n); | ||
560 | #define audit_log_string(a,b) audit_log_n_string(a, b, strlen(b)); | ||
561 | extern void audit_log_n_untrustedstring(struct audit_buffer *ab, | ||
562 | const char *string, | ||
563 | size_t n); | ||
557 | extern void audit_log_untrustedstring(struct audit_buffer *ab, | 564 | extern void audit_log_untrustedstring(struct audit_buffer *ab, |
558 | const char *string); | 565 | const char *string); |
559 | extern void audit_log_n_untrustedstring(struct audit_buffer *ab, | ||
560 | size_t n, | ||
561 | const char *string); | ||
562 | extern void audit_log_d_path(struct audit_buffer *ab, | 566 | extern void audit_log_d_path(struct audit_buffer *ab, |
563 | const char *prefix, | 567 | const char *prefix, |
564 | struct path *path); | 568 | struct path *path); |
@@ -578,9 +582,11 @@ extern int audit_enabled; | |||
578 | #define audit_log_vformat(b,f,a) do { ; } while (0) | 582 | #define audit_log_vformat(b,f,a) do { ; } while (0) |
579 | #define audit_log_format(b,f,...) do { ; } while (0) | 583 | #define audit_log_format(b,f,...) do { ; } while (0) |
580 | #define audit_log_end(b) do { ; } while (0) | 584 | #define audit_log_end(b) do { ; } while (0) |
581 | #define audit_log_hex(a,b,l) do { ; } while (0) | 585 | #define audit_log_n_hex(a,b,l) do { ; } while (0) |
582 | #define audit_log_untrustedstring(a,s) do { ; } while (0) | 586 | #define audit_log_n_string(a,c,l) do { ; } while (0) |
587 | #define audit_log_string(a,c) do { ; } while (0) | ||
583 | #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) | 588 | #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) |
589 | #define audit_log_untrustedstring(a,s) do { ; } while (0) | ||
584 | #define audit_log_d_path(b, p, d) do { ; } while (0) | 590 | #define audit_log_d_path(b, p, d) do { ; } while (0) |
585 | #define audit_enabled 0 | 591 | #define audit_enabled 0 |
586 | #endif | 592 | #endif |