aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2012-01-06 17:07:10 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-01-17 16:17:04 -0500
commitc158a35c8a681cf68d36f22f058f9f5466386c71 (patch)
tree54a7fe4d21a30848539b2bf94c885f0a0b123717 /kernel/auditsc.c
parent41fdc3054e23e3229edea27053522fe052d02ec2 (diff)
audit: no leading space in audit_log_d_path prefix
audit_log_d_path() injects an additional space before the prefix, which serves no purpose and doesn't mix well with other audit_log*() functions that do not sneak extra characters into the log. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r--kernel/auditsc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 86584ecb1039..caaea6e944f8 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -1171,7 +1171,7 @@ static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk
1171 while (vma) { 1171 while (vma) {
1172 if ((vma->vm_flags & VM_EXECUTABLE) && 1172 if ((vma->vm_flags & VM_EXECUTABLE) &&
1173 vma->vm_file) { 1173 vma->vm_file) {
1174 audit_log_d_path(ab, "exe=", 1174 audit_log_d_path(ab, " exe=",
1175 &vma->vm_file->f_path); 1175 &vma->vm_file->f_path);
1176 break; 1176 break;
1177 } 1177 }
@@ -1540,7 +1540,7 @@ static void audit_log_name(struct audit_context *context, struct audit_names *n,
1540 case 0: 1540 case 0:
1541 /* name was specified as a relative path and the 1541 /* name was specified as a relative path and the
1542 * directory component is the cwd */ 1542 * directory component is the cwd */
1543 audit_log_d_path(ab, "name=", &context->pwd); 1543 audit_log_d_path(ab, " name=", &context->pwd);
1544 break; 1544 break;
1545 default: 1545 default:
1546 /* log the name's directory component */ 1546 /* log the name's directory component */
@@ -1725,7 +1725,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts
1725 if (context->pwd.dentry && context->pwd.mnt) { 1725 if (context->pwd.dentry && context->pwd.mnt) {
1726 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); 1726 ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
1727 if (ab) { 1727 if (ab) {
1728 audit_log_d_path(ab, "cwd=", &context->pwd); 1728 audit_log_d_path(ab, " cwd=", &context->pwd);
1729 audit_log_end(ab); 1729 audit_log_end(ab);
1730 } 1730 }
1731 } 1731 }