Commit b556f8ad authored by Eric Paris's avatar Eric Paris Committed by Al Viro

Audit: standardize string audit interfaces

This patch standardized the string auditing interfaces.  No userspace
changes will be visible and this is all just cleanup and consistancy
work.  We have the following string audit interfaces to use:

void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf, size_t len);

void audit_log_n_string(struct audit_buffer *ab, const char *buf, size_t n);
void audit_log_string(struct audit_buffer *ab, const char *buf);

void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string, size_t n);
void audit_log_untrustedstring(struct audit_buffer *ab, const char *string);

This may be the first step to possibly fixing some of the issues that
people have with the string output from the kernel audit system.  But we
still don't have an agreed upon solution to that problem.
Signed-off-by: default avatarEric Paris <eparis@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent f09ac9db
...@@ -92,7 +92,7 @@ static void tty_audit_buf_push(struct task_struct *tsk, uid_t loginuid, ...@@ -92,7 +92,7 @@ static void tty_audit_buf_push(struct task_struct *tsk, uid_t loginuid,
get_task_comm(name, tsk); get_task_comm(name, tsk);
audit_log_untrustedstring(ab, name); audit_log_untrustedstring(ab, name);
audit_log_format(ab, " data="); audit_log_format(ab, " data=");
audit_log_n_untrustedstring(ab, buf->valid, buf->data); audit_log_n_untrustedstring(ab, buf->data, buf->valid);
audit_log_end(ab); audit_log_end(ab);
} }
buf->valid = 0; buf->valid = 0;
......
...@@ -549,16 +549,20 @@ extern void audit_log_format(struct audit_buffer *ab, ...@@ -549,16 +549,20 @@ extern void audit_log_format(struct audit_buffer *ab,
const char *fmt, ...) const char *fmt, ...)
__attribute__((format(printf,2,3))); __attribute__((format(printf,2,3)));
extern void audit_log_end(struct audit_buffer *ab); extern void audit_log_end(struct audit_buffer *ab);
extern void audit_log_hex(struct audit_buffer *ab,
const unsigned char *buf,
size_t len);
extern int audit_string_contains_control(const char *string, extern int audit_string_contains_control(const char *string,
size_t len); size_t len);
extern void audit_log_n_hex(struct audit_buffer *ab,
const unsigned char *buf,
size_t len);
extern void audit_log_n_string(struct audit_buffer *ab,
const char *buf,
size_t n);
#define audit_log_string(a,b) audit_log_n_string(a, b, strlen(b));
extern void audit_log_n_untrustedstring(struct audit_buffer *ab,
const char *string,
size_t n);
extern void audit_log_untrustedstring(struct audit_buffer *ab, extern void audit_log_untrustedstring(struct audit_buffer *ab,
const char *string); const char *string);
extern void audit_log_n_untrustedstring(struct audit_buffer *ab,
size_t n,
const char *string);
extern void audit_log_d_path(struct audit_buffer *ab, extern void audit_log_d_path(struct audit_buffer *ab,
const char *prefix, const char *prefix,
struct path *path); struct path *path);
...@@ -578,9 +582,11 @@ extern int audit_enabled; ...@@ -578,9 +582,11 @@ extern int audit_enabled;
#define audit_log_vformat(b,f,a) do { ; } while (0) #define audit_log_vformat(b,f,a) do { ; } while (0)
#define audit_log_format(b,f,...) do { ; } while (0) #define audit_log_format(b,f,...) do { ; } while (0)
#define audit_log_end(b) do { ; } while (0) #define audit_log_end(b) do { ; } while (0)
#define audit_log_hex(a,b,l) do { ; } while (0) #define audit_log_n_hex(a,b,l) do { ; } while (0)
#define audit_log_untrustedstring(a,s) do { ; } while (0) #define audit_log_n_string(a,c,l) do { ; } while (0)
#define audit_log_string(a,c) do { ; } while (0)
#define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0)
#define audit_log_untrustedstring(a,s) do { ; } while (0)
#define audit_log_d_path(b, p, d) do { ; } while (0) #define audit_log_d_path(b, p, d) do { ; } while (0)
#define audit_enabled 0 #define audit_enabled 0
#endif #endif
......
...@@ -757,8 +757,7 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh) ...@@ -757,8 +757,7 @@ static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
audit_log_format(ab, " msg="); audit_log_format(ab, " msg=");
size = nlmsg_len(nlh); size = nlmsg_len(nlh);
audit_log_n_untrustedstring(ab, size, audit_log_n_untrustedstring(ab, data, size);
data);
} }
audit_set_pid(ab, pid); audit_set_pid(ab, pid);
audit_log_end(ab); audit_log_end(ab);
...@@ -1293,7 +1292,7 @@ void audit_log_format(struct audit_buffer *ab, const char *fmt, ...) ...@@ -1293,7 +1292,7 @@ void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
* This function will take the passed buf and convert it into a string of * This function will take the passed buf and convert it into a string of
* ascii hex digits. The new string is placed onto the skb. * ascii hex digits. The new string is placed onto the skb.
*/ */
void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf,
size_t len) size_t len)
{ {
int i, avail, new_len; int i, avail, new_len;
...@@ -1329,8 +1328,8 @@ void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, ...@@ -1329,8 +1328,8 @@ void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf,
* Format a string of no more than slen characters into the audit buffer, * Format a string of no more than slen characters into the audit buffer,
* enclosed in quote marks. * enclosed in quote marks.
*/ */
static void audit_log_n_string(struct audit_buffer *ab, size_t slen, void audit_log_n_string(struct audit_buffer *ab, const char *string,
const char *string) size_t slen)
{ {
int avail, new_len; int avail, new_len;
unsigned char *ptr; unsigned char *ptr;
...@@ -1386,13 +1385,13 @@ int audit_string_contains_control(const char *string, size_t len) ...@@ -1386,13 +1385,13 @@ int audit_string_contains_control(const char *string, size_t len)
* The caller specifies the number of characters in the string to log, which may * The caller specifies the number of characters in the string to log, which may
* or may not be the entire string. * or may not be the entire string.
*/ */
void audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len, void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string,
const char *string) size_t len)
{ {
if (audit_string_contains_control(string, len)) if (audit_string_contains_control(string, len))
audit_log_hex(ab, string, len); audit_log_n_hex(ab, string, len);
else else
audit_log_n_string(ab, len, string); audit_log_n_string(ab, string, len);
} }
/** /**
...@@ -1405,7 +1404,7 @@ void audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len, ...@@ -1405,7 +1404,7 @@ void audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len,
*/ */
void audit_log_untrustedstring(struct audit_buffer *ab, const char *string) void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
{ {
audit_log_n_untrustedstring(ab, strlen(string), string); audit_log_n_untrustedstring(ab, string, strlen(string));
} }
/* This is a helper-function to print the escaped d_path */ /* This is a helper-function to print the escaped d_path */
......
...@@ -1095,7 +1095,7 @@ static int audit_log_single_execve_arg(struct audit_context *context, ...@@ -1095,7 +1095,7 @@ static int audit_log_single_execve_arg(struct audit_context *context,
audit_log_format(*ab, "[%d]", i); audit_log_format(*ab, "[%d]", i);
audit_log_format(*ab, "="); audit_log_format(*ab, "=");
if (has_cntl) if (has_cntl)
audit_log_hex(*ab, buf, to_send); audit_log_n_hex(*ab, buf, to_send);
else else
audit_log_format(*ab, "\"%s\"", buf); audit_log_format(*ab, "\"%s\"", buf);
audit_log_format(*ab, "\n"); audit_log_format(*ab, "\n");
...@@ -1307,7 +1307,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts ...@@ -1307,7 +1307,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts
struct audit_aux_data_sockaddr *axs = (void *)aux; struct audit_aux_data_sockaddr *axs = (void *)aux;
audit_log_format(ab, "saddr="); audit_log_format(ab, "saddr=");
audit_log_hex(ab, axs->a, axs->len); audit_log_n_hex(ab, axs->a, axs->len);
break; } break; }
case AUDIT_FD_PAIR: { case AUDIT_FD_PAIR: {
...@@ -1371,8 +1371,8 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts ...@@ -1371,8 +1371,8 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts
default: default:
/* log the name's directory component */ /* log the name's directory component */
audit_log_format(ab, " name="); audit_log_format(ab, " name=");
audit_log_n_untrustedstring(ab, n->name_len, audit_log_n_untrustedstring(ab, n->name,
n->name); n->name_len);
} }
} else } else
audit_log_format(ab, " name=(null)"); audit_log_format(ab, " name=(null)");
......
...@@ -646,7 +646,7 @@ void avc_audit(u32 ssid, u32 tsid, ...@@ -646,7 +646,7 @@ void avc_audit(u32 ssid, u32 tsid,
if (*p) if (*p)
audit_log_untrustedstring(ab, p); audit_log_untrustedstring(ab, p);
else else
audit_log_hex(ab, p, len); audit_log_n_hex(ab, p, len);
break; break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment