AUDIT: Escape comm when logging task info
authorDavid Woodhouse <dwmw2@shinybook.infradead.org>
Mon, 23 May 2005 20:57:41 +0000 (21:57 +0100)
committerDavid Woodhouse <dwmw2@shinybook.infradead.org>
Mon, 23 May 2005 20:57:41 +0000 (21:57 +0100)
It comes from the user; it needs to be escaped.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
kernel/auditsc.c

index 5fc4f52..b45677e 100644 (file)
@@ -650,7 +650,8 @@ static void audit_log_task_info(struct audit_buffer *ab)
        struct vm_area_struct *vma;
 
        get_task_comm(name, current);
-       audit_log_format(ab, " comm=%s", name);
+       audit_log_format(ab, " comm=");
+       audit_log_untrustedstring(ab, name);
 
        if (!mm)
                return;