From 041593a1b6f5e2e39bdcc2dba3c78c753b959144 Mon Sep 17 00:00:00 2001 From: pjd Date: Thu, 7 Feb 2013 00:24:23 +0000 Subject: Add AUDIT_ARG_SOCKADDR() macro so we can start using the audit_arg_sockaddr() function, which is currently unused. Sponsored by: The FreeBSD Foundation --- sys/security/audit/audit.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys/security/audit/audit.h b/sys/security/audit/audit.h index 69f6c32..f43f6c8 100644 --- a/sys/security/audit/audit.h +++ b/sys/security/audit/audit.h @@ -261,6 +261,11 @@ void audit_thread_free(struct thread *td); audit_arg_socket((sodomain), (sotype), (soprotocol)); \ } while (0) +#define AUDIT_ARG_SOCKADDR(td, sa) do { \ + if (AUDITING_TD(curthread)) \ + audit_arg_sockaddr((td), (sa)); \ +} while (0) + #define AUDIT_ARG_SUID(suid) do { \ if (AUDITING_TD(curthread)) \ audit_arg_suid((suid)); \ @@ -353,6 +358,7 @@ void audit_thread_free(struct thread *td); #define AUDIT_ARG_SIGNUM(signum) #define AUDIT_ARG_SGID(sgid) #define AUDIT_ARG_SOCKET(sodomain, sotype, soprotocol) +#define AUDIT_ARG_SOCKADDR(td, sa) #define AUDIT_ARG_SUID(suid) #define AUDIT_ARG_TEXT(text) #define AUDIT_ARG_UID(uid) -- cgit v1.1