audit: allow audit code to satisfy getname requests from its names_list
authorJeff Layton <jlayton@redhat.com>
Wed, 10 Oct 2012 19:25:28 +0000 (15:25 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 13 Oct 2012 00:15:08 +0000 (20:15 -0400)
Currently, if we call getname() on a userland string more than once,
we'll get multiple copies of the string and multiple audit_names
records.

Add a function that will allow the audit_names code to satisfy getname
requests using info from the audit_names list, avoiding a new allocation
and audit_names records.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namei.c
include/linux/audit.h
kernel/auditsc.c

index ec638d27642f2016cd354dd0972022f46ee92728..5dbc3f83693476396deccfd7d182ef04555f1f81 100644 (file)
@@ -130,6 +130,10 @@ getname_flags(const char __user *filename, int flags, int *empty)
        char *kname;
        int len;
 
+       result = audit_reusename(filename);
+       if (result)
+               return result;
+
        /* FIXME: create dedicated slabcache? */
        result = kzalloc(sizeof(*result), GFP_KERNEL);
        if (unlikely(!result))
index 94d29164803fd5478d4b6a7dd2ccf2bc8155bbfe..d5d7952ab7d8f0fad819d176f0b6fa827048933e 100644 (file)
@@ -471,6 +471,7 @@ extern void __audit_syscall_entry(int arch,
                                  int major, unsigned long a0, unsigned long a1,
                                  unsigned long a2, unsigned long a3);
 extern void __audit_syscall_exit(int ret_success, long ret_value);
+extern struct filename *__audit_reusename(const __user char *uptr);
 extern void __audit_getname(struct filename *name);
 extern void audit_putname(struct filename *name);
 extern void __audit_inode(const char *name, const struct dentry *dentry,
@@ -507,6 +508,12 @@ static inline void audit_syscall_exit(void *pt_regs)
                __audit_syscall_exit(success, return_code);
        }
 }
+static inline struct filename *audit_reusename(const __user char *name)
+{
+       if (unlikely(!audit_dummy_context()))
+               return __audit_reusename(name);
+       return NULL;
+}
 static inline void audit_getname(struct filename *name)
 {
        if (unlikely(!audit_dummy_context()))
@@ -665,6 +672,10 @@ static inline int audit_dummy_context(void)
 {
        return 1;
 }
+static inline struct filename *audit_reusename(const __user char *name)
+{
+       return NULL;
+}
 static inline void audit_getname(struct filename *name)
 { }
 static inline void audit_putname(struct filename *name)
index d4d82319eed58264410c0669bd7efc7a2fd31ff4..521163a5d65f2eb534d1f46f6b8812f4b673f5bb 100644 (file)
@@ -2020,6 +2020,29 @@ static struct audit_names *audit_alloc_name(struct audit_context *context,
        return aname;
 }
 
+/**
+ * audit_reusename - fill out filename with info from existing entry
+ * @uptr: userland ptr to pathname
+ *
+ * Search the audit_names list for the current audit context. If there is an
+ * existing entry with a matching "uptr" then return the filename
+ * associated with that audit_name. If not, return NULL.
+ */
+struct filename *
+__audit_reusename(const __user char *uptr)
+{
+       struct audit_context *context = current->audit_context;
+       struct audit_names *n;
+
+       list_for_each_entry(n, &context->names_list, list) {
+               if (!n->name)
+                       continue;
+               if (n->name->uptr == uptr)
+                       return n->name;
+       }
+       return NULL;
+}
+
 /**
  * audit_getname - add a name to the list
  * @name: name to add