From 0a8623b8f9fa625da81364cf3b87d2799171f83e Mon Sep 17 00:00:00 2001From: William Roberts <wroberts@tresys.com>Date: Tue, 22 Oct 2013 14:23:27 -0700Subject: [PATCH] audit: Add cmdline to taskinfo outputOn some devices, the cmdline and task info vary. For instance, onAndroid, the cmdline is set to the package name, and the task infois the name of the VM, which is not very helpful.Change-Id: I98a417c9ab3b95664c49aa1c7513cfd8296b6a2aSigned-off-by: William Roberts <wroberts@tresys.com>---fs/proc/base.c | 2 +-include/linux/proc_fs.h | 1 +kernel/auditsc.c | 24 ++++++++++++++++++++++++3 files changed, 26 insertions(+), 1 deletion(-)diff --git a/fs/proc/base.c b/fs/proc/base.cindex 2f198da..25b73d3 100644--- a/fs/proc/base.c+++ b/fs/proc/base.c@@ -209,7 +209,7 @@ struct mm_struct *mm_for_maps(struct task_struct *task)return mm_access(task, PTRACE_MODE_READ);}-static int proc_pid_cmdline(struct task_struct *task, char * buffer)+int proc_pid_cmdline(struct task_struct *task, char *buffer){int res = 0;unsigned int len;diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.hindex 85c5073..d85ac14 100644--- a/include/linux/proc_fs.h+++ b/include/linux/proc_fs.h@@ -118,6 +118,7 @@ struct pid_namespace;extern int pid_ns_prepare_proc(struct pid_namespace *ns);extern void pid_ns_release_proc(struct pid_namespace *ns);+extern int proc_pid_cmdline(struct task_struct *task, char *buffer);/** proc_tty.cdiff --git a/kernel/auditsc.c b/kernel/auditsc.cindex 27ad9dd..7f2bf41 100644--- a/kernel/auditsc.c+++ b/kernel/auditsc.c@@ -67,6 +67,7 @@#include <linux/syscalls.h>#include <linux/capability.h>#include <linux/fs_struct.h>+#include <linux/proc_fs.h>#include "audit.h"@@ -1158,6 +1159,8 @@ static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tskchar name[sizeof(tsk->comm)];struct mm_struct *mm = tsk->mm;struct vm_area_struct *vma;+ unsigned long page;+ int len;/* tsk == current */@@ -1179,6 +1182,27 @@ static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk}up_read(&mm->mmap_sem);}++ /* Get the process cmdline */+ page = __get_free_page(GFP_TEMPORARY);+ if (!page)+ goto out;++ len = proc_pid_cmdline(tsk, (char *)page);+ if (len <= 0)+ goto free;++ /*+ * Ensure NULL terminated! Application could+ * could be using setproctitle(3).+ */+ ((char *)page)[len-1] = '\0';++ audit_log_format(ab, " cmdline=");+ audit_log_untrustedstring(ab, (char *)page);+free:+ free_page(page);+out:audit_log_task_context(ab);}--1.7.9.5