| 85c8721 | 2005-04-29 16:23:29 +0100 | [diff] [blame] | 1 | /* audit.c -- Auditing support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Gateway between the kernel (e.g., selinux) and the user-space audit daemon. |
| 3 | * System-call specific features have moved to auditsc.c |
| 4 | * |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 5 | * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * All Rights Reserved. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | * Written by Rickard E. (Rik) Faith <faith@redhat.com> |
| 23 | * |
| 24 | * Goals: 1) Integrate fully with SELinux. |
| 25 | * 2) Minimal run-time overhead: |
| 26 | * a) Minimal when syscall auditing is disabled (audit_enable=0). |
| 27 | * b) Small when syscall auditing is enabled and no audit record |
| 28 | * is generated (defer as much work as possible to record |
| 29 | * generation time): |
| 30 | * i) context is allocated, |
| 31 | * ii) names from getname are stored without a copy, and |
| 32 | * iii) inode information stored from path_lookup. |
| 33 | * 3) Ability to disable syscall auditing at boot time (audit=0). |
| 34 | * 4) Usable by other parts of the kernel (if audit_log* is called, |
| 35 | * then a syscall record will be generated automatically for the |
| 36 | * current syscall). |
| 37 | * 5) Netlink interface to user-space. |
| 38 | * 6) Support low-overhead kernel-based filtering to minimize the |
| 39 | * information that must be passed to user-space. |
| 40 | * |
| 85c8721 | 2005-04-29 16:23:29 +0100 | [diff] [blame] | 41 | * Example user-space utilities: http://people.redhat.com/sgrubb/audit/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | */ |
| 43 | |
| 44 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/types.h> |
Alan Cox | 715b49e | 2006-01-18 17:44:07 -0800 | [diff] [blame] | 46 | #include <asm/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/mm.h> |
| 48 | #include <linux/module.h> |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 49 | #include <linux/err.h> |
| 50 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | #include <linux/audit.h> |
| 53 | |
| 54 | #include <net/sock.h> |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 55 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/skbuff.h> |
| 57 | #include <linux/netlink.h> |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 58 | #include <linux/selinux.h> |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 59 | #include <linux/inotify.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 60 | #include <linux/freezer.h> |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 61 | #include <linux/tty.h> |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 62 | |
| 63 | #include "audit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | /* No auditing will take place until audit_initialized != 0. |
| 66 | * (Initialization happens after skb_init is called.) */ |
| 67 | static int audit_initialized; |
| 68 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 69 | #define AUDIT_OFF 0 |
| 70 | #define AUDIT_ON 1 |
| 71 | #define AUDIT_LOCKED 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | int audit_enabled; |
| 73 | |
| 74 | /* Default state when kernel boots without any parameters. */ |
| 75 | static int audit_default; |
| 76 | |
| 77 | /* If auditing cannot proceed, audit_failure selects what happens. */ |
| 78 | static int audit_failure = AUDIT_FAIL_PRINTK; |
| 79 | |
| 80 | /* If audit records are to be written to the netlink socket, audit_pid |
| 81 | * contains the (non-zero) pid. */ |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 82 | int audit_pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 84 | /* If audit_rate_limit is non-zero, limit the rate of sending audit records |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | * to that number per second. This prevents DoS attacks, but results in |
| 86 | * audit records being dropped. */ |
| 87 | static int audit_rate_limit; |
| 88 | |
| 89 | /* Number of outstanding audit_buffers allowed. */ |
| 90 | static int audit_backlog_limit = 64; |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 91 | static int audit_backlog_wait_time = 60 * HZ; |
| 92 | static int audit_backlog_wait_overflow = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 94 | /* The identity of the user shutting down the audit system. */ |
| 95 | uid_t audit_sig_uid = -1; |
| 96 | pid_t audit_sig_pid = -1; |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 97 | u32 audit_sig_sid = 0; |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | /* Records can be lost in several ways: |
| 100 | 0) [suppressed in audit_alloc] |
| 101 | 1) out of memory in audit_log_start [kmalloc of struct audit_buffer] |
| 102 | 2) out of memory in audit_log_move [alloc_skb] |
| 103 | 3) suppressed due to audit_rate_limit |
| 104 | 4) suppressed due to audit_backlog_limit |
| 105 | */ |
| 106 | static atomic_t audit_lost = ATOMIC_INIT(0); |
| 107 | |
| 108 | /* The netlink socket. */ |
| 109 | static struct sock *audit_sock; |
| 110 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 111 | /* Inotify handle. */ |
| 112 | struct inotify_handle *audit_ih; |
| 113 | |
| 114 | /* Hash for inode-based rules */ |
| 115 | struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS]; |
| 116 | |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 117 | /* The audit_freelist is a list of pre-allocated audit buffers (if more |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of |
| 119 | * being placed on the freelist). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | static DEFINE_SPINLOCK(audit_freelist_lock); |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 121 | static int audit_freelist_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | static LIST_HEAD(audit_freelist); |
| 123 | |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 124 | static struct sk_buff_head audit_skb_queue; |
| 125 | static struct task_struct *kauditd_task; |
| 126 | static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait); |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 127 | static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 129 | /* Serialize requests from userspace. */ |
| 130 | static DEFINE_MUTEX(audit_cmd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | |
| 132 | /* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting |
| 133 | * audit records. Since printk uses a 1024 byte buffer, this buffer |
| 134 | * should be at least that large. */ |
| 135 | #define AUDIT_BUFSIZ 1024 |
| 136 | |
| 137 | /* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the |
| 138 | * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */ |
| 139 | #define AUDIT_MAXFREE (2*NR_CPUS) |
| 140 | |
| 141 | /* The audit_buffer is used when formatting an audit record. The caller |
| 142 | * locks briefly to get the record off the freelist or to allocate the |
| 143 | * buffer, and locks briefly to send the buffer to the netlink layer or |
| 144 | * to place it on a transmit queue. Multiple audit_buffers can be in |
| 145 | * use simultaneously. */ |
| 146 | struct audit_buffer { |
| 147 | struct list_head list; |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 148 | struct sk_buff *skb; /* formatted skb ready to send */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | struct audit_context *ctx; /* NULL or associated context */ |
Al Viro | 9796fdd | 2005-10-21 03:22:03 -0400 | [diff] [blame] | 150 | gfp_t gfp_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | }; |
| 152 | |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 153 | static void audit_set_pid(struct audit_buffer *ab, pid_t pid) |
| 154 | { |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 155 | struct nlmsghdr *nlh = nlmsg_hdr(ab->skb); |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 156 | nlh->nlmsg_pid = pid; |
| 157 | } |
| 158 | |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 159 | void audit_panic(const char *message) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | switch (audit_failure) |
| 162 | { |
| 163 | case AUDIT_FAIL_SILENT: |
| 164 | break; |
| 165 | case AUDIT_FAIL_PRINTK: |
| 166 | printk(KERN_ERR "audit: %s\n", message); |
| 167 | break; |
| 168 | case AUDIT_FAIL_PANIC: |
| 169 | panic("audit: %s\n", message); |
| 170 | break; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | static inline int audit_rate_check(void) |
| 175 | { |
| 176 | static unsigned long last_check = 0; |
| 177 | static int messages = 0; |
| 178 | static DEFINE_SPINLOCK(lock); |
| 179 | unsigned long flags; |
| 180 | unsigned long now; |
| 181 | unsigned long elapsed; |
| 182 | int retval = 0; |
| 183 | |
| 184 | if (!audit_rate_limit) return 1; |
| 185 | |
| 186 | spin_lock_irqsave(&lock, flags); |
| 187 | if (++messages < audit_rate_limit) { |
| 188 | retval = 1; |
| 189 | } else { |
| 190 | now = jiffies; |
| 191 | elapsed = now - last_check; |
| 192 | if (elapsed > HZ) { |
| 193 | last_check = now; |
| 194 | messages = 0; |
| 195 | retval = 1; |
| 196 | } |
| 197 | } |
| 198 | spin_unlock_irqrestore(&lock, flags); |
| 199 | |
| 200 | return retval; |
| 201 | } |
| 202 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 203 | /** |
| 204 | * audit_log_lost - conditionally log lost audit message event |
| 205 | * @message: the message stating reason for lost audit message |
| 206 | * |
| 207 | * Emit at least 1 message per second, even if audit_rate_check is |
| 208 | * throttling. |
| 209 | * Always increment the lost messages counter. |
| 210 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | void audit_log_lost(const char *message) |
| 212 | { |
| 213 | static unsigned long last_msg = 0; |
| 214 | static DEFINE_SPINLOCK(lock); |
| 215 | unsigned long flags; |
| 216 | unsigned long now; |
| 217 | int print; |
| 218 | |
| 219 | atomic_inc(&audit_lost); |
| 220 | |
| 221 | print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit); |
| 222 | |
| 223 | if (!print) { |
| 224 | spin_lock_irqsave(&lock, flags); |
| 225 | now = jiffies; |
| 226 | if (now - last_msg > HZ) { |
| 227 | print = 1; |
| 228 | last_msg = now; |
| 229 | } |
| 230 | spin_unlock_irqrestore(&lock, flags); |
| 231 | } |
| 232 | |
| 233 | if (print) { |
| 234 | printk(KERN_WARNING |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 235 | "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | atomic_read(&audit_lost), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | audit_rate_limit, |
| 238 | audit_backlog_limit); |
| 239 | audit_panic(message); |
| 240 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 243 | static int audit_log_config_change(char *function_name, int new, int old, |
| 244 | uid_t loginuid, u32 sid, int allow_changes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 246 | struct audit_buffer *ab; |
| 247 | int rc = 0; |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 248 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 249 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE); |
| 250 | audit_log_format(ab, "%s=%d old=%d by auid=%u", function_name, new, |
| 251 | old, loginuid); |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 252 | if (sid) { |
| 253 | char *ctx = NULL; |
| 254 | u32 len; |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 255 | |
| 256 | rc = selinux_sid_to_string(sid, &ctx, &len); |
| 257 | if (rc) { |
| 258 | audit_log_format(ab, " sid=%u", sid); |
| 259 | allow_changes = 0; /* Something weird, deny request */ |
| 260 | } else { |
| 261 | audit_log_format(ab, " subj=%s", ctx); |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 262 | kfree(ctx); |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 263 | } |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 264 | } |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 265 | audit_log_format(ab, " res=%d", allow_changes); |
| 266 | audit_log_end(ab); |
| 267 | return rc; |
| 268 | } |
| 269 | |
| 270 | static int audit_do_config_change(char *function_name, int *to_change, |
| 271 | int new, uid_t loginuid, u32 sid) |
| 272 | { |
| 273 | int allow_changes, rc = 0, old = *to_change; |
| 274 | |
| 275 | /* check if we are locked */ |
| 276 | if (audit_enabled == AUDIT_LOCKED) |
| 277 | allow_changes = 0; |
| 278 | else |
| 279 | allow_changes = 1; |
| 280 | |
| 281 | if (audit_enabled != AUDIT_OFF) { |
| 282 | rc = audit_log_config_change(function_name, new, old, |
| 283 | loginuid, sid, allow_changes); |
| 284 | if (rc) |
| 285 | allow_changes = 0; |
| 286 | } |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 287 | |
| 288 | /* If we are allowed, make the change */ |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 289 | if (allow_changes == 1) |
| 290 | *to_change = new; |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 291 | /* Not allowed, update reason */ |
| 292 | else if (rc == 0) |
| 293 | rc = -EPERM; |
| 294 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 297 | static int audit_set_rate_limit(int limit, uid_t loginuid, u32 sid) |
| 298 | { |
| 299 | return audit_do_config_change("audit_rate_limit", &audit_rate_limit, |
| 300 | limit, loginuid, sid); |
| 301 | } |
| 302 | |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 303 | static int audit_set_backlog_limit(int limit, uid_t loginuid, u32 sid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | { |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 305 | return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit, |
| 306 | limit, loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 309 | static int audit_set_enabled(int state, uid_t loginuid, u32 sid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 311 | if (state < AUDIT_OFF || state > AUDIT_LOCKED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | return -EINVAL; |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 313 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 314 | return audit_do_config_change("audit_enabled", &audit_enabled, state, |
| 315 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 318 | static int audit_set_failure(int state, uid_t loginuid, u32 sid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (state != AUDIT_FAIL_SILENT |
| 321 | && state != AUDIT_FAIL_PRINTK |
| 322 | && state != AUDIT_FAIL_PANIC) |
| 323 | return -EINVAL; |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 324 | |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 325 | return audit_do_config_change("audit_failure", &audit_failure, state, |
| 326 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Adrian Bunk | 97a41e2 | 2006-01-08 01:02:17 -0800 | [diff] [blame] | 329 | static int kauditd_thread(void *dummy) |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 330 | { |
| 331 | struct sk_buff *skb; |
| 332 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 333 | set_freezable(); |
Andrew Morton | 4899b8b | 2006-10-06 00:43:48 -0700 | [diff] [blame] | 334 | while (!kthread_should_stop()) { |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 335 | skb = skb_dequeue(&audit_skb_queue); |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 336 | wake_up(&audit_backlog_wait); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 337 | if (skb) { |
| 338 | if (audit_pid) { |
| 339 | int err = netlink_unicast(audit_sock, skb, audit_pid, 0); |
| 340 | if (err < 0) { |
| 341 | BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */ |
| 342 | printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid); |
| 343 | audit_pid = 0; |
| 344 | } |
| 345 | } else { |
David Woodhouse | e1b09eb | 2005-06-24 17:24:11 +0100 | [diff] [blame] | 346 | printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0)); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 347 | kfree_skb(skb); |
| 348 | } |
| 349 | } else { |
| 350 | DECLARE_WAITQUEUE(wait, current); |
| 351 | set_current_state(TASK_INTERRUPTIBLE); |
| 352 | add_wait_queue(&kauditd_wait, &wait); |
| 353 | |
Pierre Ossman | 7a4ae74 | 2005-12-12 00:37:22 -0800 | [diff] [blame] | 354 | if (!skb_queue_len(&audit_skb_queue)) { |
| 355 | try_to_freeze(); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 356 | schedule(); |
Pierre Ossman | 7a4ae74 | 2005-12-12 00:37:22 -0800 | [diff] [blame] | 357 | } |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 358 | |
| 359 | __set_current_state(TASK_RUNNING); |
| 360 | remove_wait_queue(&kauditd_wait, &wait); |
| 361 | } |
| 362 | } |
Andrew Morton | 4899b8b | 2006-10-06 00:43:48 -0700 | [diff] [blame] | 363 | return 0; |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 364 | } |
| 365 | |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 366 | static int audit_prepare_user_tty(pid_t pid, uid_t loginuid) |
| 367 | { |
| 368 | struct task_struct *tsk; |
| 369 | int err; |
| 370 | |
| 371 | read_lock(&tasklist_lock); |
| 372 | tsk = find_task_by_pid(pid); |
| 373 | err = -ESRCH; |
| 374 | if (!tsk) |
| 375 | goto out; |
| 376 | err = 0; |
| 377 | |
| 378 | spin_lock_irq(&tsk->sighand->siglock); |
| 379 | if (!tsk->signal->audit_tty) |
| 380 | err = -EPERM; |
| 381 | spin_unlock_irq(&tsk->sighand->siglock); |
| 382 | if (err) |
| 383 | goto out; |
| 384 | |
| 385 | tty_audit_push_task(tsk, loginuid); |
| 386 | out: |
| 387 | read_unlock(&tasklist_lock); |
| 388 | return err; |
| 389 | } |
| 390 | |
Al Viro | 9044e6b | 2006-05-22 01:09:24 -0400 | [diff] [blame] | 391 | int audit_send_list(void *_dest) |
| 392 | { |
| 393 | struct audit_netlink_list *dest = _dest; |
| 394 | int pid = dest->pid; |
| 395 | struct sk_buff *skb; |
| 396 | |
| 397 | /* wait for parent to finish and send an ACK */ |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 398 | mutex_lock(&audit_cmd_mutex); |
| 399 | mutex_unlock(&audit_cmd_mutex); |
Al Viro | 9044e6b | 2006-05-22 01:09:24 -0400 | [diff] [blame] | 400 | |
| 401 | while ((skb = __skb_dequeue(&dest->q)) != NULL) |
| 402 | netlink_unicast(audit_sock, skb, pid, 0); |
| 403 | |
| 404 | kfree(dest); |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 409 | #ifdef CONFIG_AUDIT_TREE |
| 410 | static int prune_tree_thread(void *unused) |
| 411 | { |
| 412 | mutex_lock(&audit_cmd_mutex); |
| 413 | audit_prune_trees(); |
| 414 | mutex_unlock(&audit_cmd_mutex); |
| 415 | return 0; |
| 416 | } |
| 417 | |
| 418 | void audit_schedule_prune(void) |
| 419 | { |
| 420 | kthread_run(prune_tree_thread, NULL, "audit_prune_tree"); |
| 421 | } |
| 422 | #endif |
| 423 | |
Al Viro | 9044e6b | 2006-05-22 01:09:24 -0400 | [diff] [blame] | 424 | struct sk_buff *audit_make_reply(int pid, int seq, int type, int done, |
| 425 | int multi, void *payload, int size) |
| 426 | { |
| 427 | struct sk_buff *skb; |
| 428 | struct nlmsghdr *nlh; |
| 429 | int len = NLMSG_SPACE(size); |
| 430 | void *data; |
| 431 | int flags = multi ? NLM_F_MULTI : 0; |
| 432 | int t = done ? NLMSG_DONE : type; |
| 433 | |
| 434 | skb = alloc_skb(len, GFP_KERNEL); |
| 435 | if (!skb) |
| 436 | return NULL; |
| 437 | |
| 438 | nlh = NLMSG_PUT(skb, pid, seq, t, size); |
| 439 | nlh->nlmsg_flags = flags; |
| 440 | data = NLMSG_DATA(nlh); |
| 441 | memcpy(data, payload, size); |
| 442 | return skb; |
| 443 | |
| 444 | nlmsg_failure: /* Used by NLMSG_PUT */ |
| 445 | if (skb) |
| 446 | kfree_skb(skb); |
| 447 | return NULL; |
| 448 | } |
| 449 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 450 | /** |
| 451 | * audit_send_reply - send an audit reply message via netlink |
| 452 | * @pid: process id to send reply to |
| 453 | * @seq: sequence number |
| 454 | * @type: audit message type |
| 455 | * @done: done (last) flag |
| 456 | * @multi: multi-part message flag |
| 457 | * @payload: payload data |
| 458 | * @size: payload size |
| 459 | * |
| 460 | * Allocates an skb, builds the netlink message, and sends it to the pid. |
| 461 | * No failure notifications. |
| 462 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | void audit_send_reply(int pid, int seq, int type, int done, int multi, |
| 464 | void *payload, int size) |
| 465 | { |
| 466 | struct sk_buff *skb; |
Al Viro | 9044e6b | 2006-05-22 01:09:24 -0400 | [diff] [blame] | 467 | skb = audit_make_reply(pid, seq, type, done, multi, payload, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | if (!skb) |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 469 | return; |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 470 | /* Ignore failure. It'll only happen if the sender goes away, |
| 471 | because our timeout is set to infinite. */ |
| 472 | netlink_unicast(audit_sock, skb, pid, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | /* |
| 477 | * Check for appropriate CAP_AUDIT_ capabilities on incoming audit |
| 478 | * control messages. |
| 479 | */ |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 480 | static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | { |
| 482 | int err = 0; |
| 483 | |
| 484 | switch (msg_type) { |
| 485 | case AUDIT_GET: |
| 486 | case AUDIT_LIST: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 487 | case AUDIT_LIST_RULES: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | case AUDIT_SET: |
| 489 | case AUDIT_ADD: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 490 | case AUDIT_ADD_RULE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | case AUDIT_DEL: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 492 | case AUDIT_DEL_RULE: |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 493 | case AUDIT_SIGNAL_INFO: |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 494 | case AUDIT_TTY_GET: |
| 495 | case AUDIT_TTY_SET: |
Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 496 | case AUDIT_TRIM: |
| 497 | case AUDIT_MAKE_EQUIV: |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 498 | if (security_netlink_recv(skb, CAP_AUDIT_CONTROL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | err = -EPERM; |
| 500 | break; |
Steve Grubb | 0547410 | 2005-05-21 00:18:37 +0100 | [diff] [blame] | 501 | case AUDIT_USER: |
Robert P. J. Day | 039b6b3 | 2007-05-08 00:29:20 -0700 | [diff] [blame] | 502 | case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG: |
| 503 | case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2: |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 504 | if (security_netlink_recv(skb, CAP_AUDIT_WRITE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | err = -EPERM; |
| 506 | break; |
| 507 | default: /* bad msg */ |
| 508 | err = -EINVAL; |
| 509 | } |
| 510 | |
| 511 | return err; |
| 512 | } |
| 513 | |
| 514 | static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
| 515 | { |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 516 | u32 uid, pid, seq, sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | void *data; |
| 518 | struct audit_status *status_get, status_set; |
| 519 | int err; |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 520 | struct audit_buffer *ab; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | u16 msg_type = nlh->nlmsg_type; |
Serge Hallyn | c94c257 | 2005-04-29 16:27:17 +0100 | [diff] [blame] | 522 | uid_t loginuid; /* loginuid of sender */ |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 523 | struct audit_sig_info *sig_data; |
| 524 | char *ctx; |
| 525 | u32 len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
Darrel Goeddel | c7bdb54 | 2006-06-27 13:26:11 -0700 | [diff] [blame] | 527 | err = audit_netlink_ok(skb, msg_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | if (err) |
| 529 | return err; |
| 530 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 531 | /* As soon as there's any sign of userspace auditd, |
| 532 | * start kauditd to talk to it */ |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 533 | if (!kauditd_task) |
| 534 | kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd"); |
| 535 | if (IS_ERR(kauditd_task)) { |
| 536 | err = PTR_ERR(kauditd_task); |
| 537 | kauditd_task = NULL; |
| 538 | return err; |
| 539 | } |
| 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | pid = NETLINK_CREDS(skb)->pid; |
| 542 | uid = NETLINK_CREDS(skb)->uid; |
Serge Hallyn | c94c257 | 2005-04-29 16:27:17 +0100 | [diff] [blame] | 543 | loginuid = NETLINK_CB(skb).loginuid; |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 544 | sid = NETLINK_CB(skb).sid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | seq = nlh->nlmsg_seq; |
| 546 | data = NLMSG_DATA(nlh); |
| 547 | |
| 548 | switch (msg_type) { |
| 549 | case AUDIT_GET: |
| 550 | status_set.enabled = audit_enabled; |
| 551 | status_set.failure = audit_failure; |
| 552 | status_set.pid = audit_pid; |
| 553 | status_set.rate_limit = audit_rate_limit; |
| 554 | status_set.backlog_limit = audit_backlog_limit; |
| 555 | status_set.lost = atomic_read(&audit_lost); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 556 | status_set.backlog = skb_queue_len(&audit_skb_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0, |
| 558 | &status_set, sizeof(status_set)); |
| 559 | break; |
| 560 | case AUDIT_SET: |
| 561 | if (nlh->nlmsg_len < sizeof(struct audit_status)) |
| 562 | return -EINVAL; |
| 563 | status_get = (struct audit_status *)data; |
| 564 | if (status_get->mask & AUDIT_STATUS_ENABLED) { |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 565 | err = audit_set_enabled(status_get->enabled, |
| 566 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | if (err < 0) return err; |
| 568 | } |
| 569 | if (status_get->mask & AUDIT_STATUS_FAILURE) { |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 570 | err = audit_set_failure(status_get->failure, |
| 571 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | if (err < 0) return err; |
| 573 | } |
| 574 | if (status_get->mask & AUDIT_STATUS_PID) { |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 575 | int new_pid = status_get->pid; |
| 576 | |
| 577 | if (audit_enabled != AUDIT_OFF) |
| 578 | audit_log_config_change("audit_pid", new_pid, |
| 579 | audit_pid, loginuid, |
| 580 | sid, 1); |
| 581 | |
| 582 | audit_pid = new_pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | } |
| 584 | if (status_get->mask & AUDIT_STATUS_RATE_LIMIT) |
Serge E. Hallyn | 5d136a0 | 2006-04-27 16:45:14 -0500 | [diff] [blame] | 585 | err = audit_set_rate_limit(status_get->rate_limit, |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 586 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT) |
Serge E. Hallyn | 5d136a0 | 2006-04-27 16:45:14 -0500 | [diff] [blame] | 588 | err = audit_set_backlog_limit(status_get->backlog_limit, |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 589 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | break; |
Steve Grubb | 0547410 | 2005-05-21 00:18:37 +0100 | [diff] [blame] | 591 | case AUDIT_USER: |
Robert P. J. Day | 039b6b3 | 2007-05-08 00:29:20 -0700 | [diff] [blame] | 592 | case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG: |
| 593 | case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2: |
David Woodhouse | 4a4cd63 | 2005-06-22 14:56:47 +0100 | [diff] [blame] | 594 | if (!audit_enabled && msg_type != AUDIT_USER_AVC) |
| 595 | return 0; |
David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 596 | |
David Woodhouse | 5bb289b | 2005-06-24 14:14:05 +0100 | [diff] [blame] | 597 | err = audit_filter_user(&NETLINK_CB(skb), msg_type); |
David Woodhouse | 4a4cd63 | 2005-06-22 14:56:47 +0100 | [diff] [blame] | 598 | if (err == 1) { |
| 599 | err = 0; |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 600 | if (msg_type == AUDIT_USER_TTY) { |
| 601 | err = audit_prepare_user_tty(pid, loginuid); |
| 602 | if (err) |
| 603 | break; |
| 604 | } |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 605 | ab = audit_log_start(NULL, GFP_KERNEL, msg_type); |
David Woodhouse | 4a4cd63 | 2005-06-22 14:56:47 +0100 | [diff] [blame] | 606 | if (ab) { |
| 607 | audit_log_format(ab, |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 608 | "user pid=%d uid=%u auid=%u", |
| 609 | pid, uid, loginuid); |
| 610 | if (sid) { |
Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 611 | if (selinux_sid_to_string( |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 612 | sid, &ctx, &len)) { |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 613 | audit_log_format(ab, |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 614 | " ssid=%u", sid); |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 615 | /* Maybe call audit_panic? */ |
| 616 | } else |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 617 | audit_log_format(ab, |
Steve Grubb | e7c3497 | 2006-04-03 09:08:13 -0400 | [diff] [blame] | 618 | " subj=%s", ctx); |
| 619 | kfree(ctx); |
| 620 | } |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 621 | if (msg_type != AUDIT_USER_TTY) |
| 622 | audit_log_format(ab, " msg='%.1024s'", |
| 623 | (char *)data); |
| 624 | else { |
| 625 | int size; |
| 626 | |
| 627 | audit_log_format(ab, " msg="); |
| 628 | size = nlmsg_len(nlh); |
| 629 | audit_log_n_untrustedstring(ab, size, |
| 630 | data); |
| 631 | } |
David Woodhouse | 4a4cd63 | 2005-06-22 14:56:47 +0100 | [diff] [blame] | 632 | audit_set_pid(ab, pid); |
| 633 | audit_log_end(ab); |
| 634 | } |
David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 635 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | break; |
| 637 | case AUDIT_ADD: |
| 638 | case AUDIT_DEL: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 639 | if (nlmsg_len(nlh) < sizeof(struct audit_rule)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | return -EINVAL; |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 641 | if (audit_enabled == AUDIT_LOCKED) { |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 642 | ab = audit_log_start(NULL, GFP_KERNEL, |
| 643 | AUDIT_CONFIG_CHANGE); |
| 644 | if (ab) { |
| 645 | audit_log_format(ab, |
| 646 | "pid=%d uid=%u auid=%u", |
| 647 | pid, uid, loginuid); |
| 648 | if (sid) { |
| 649 | if (selinux_sid_to_string( |
| 650 | sid, &ctx, &len)) { |
| 651 | audit_log_format(ab, |
| 652 | " ssid=%u", sid); |
| 653 | /* Maybe call audit_panic? */ |
| 654 | } else |
| 655 | audit_log_format(ab, |
| 656 | " subj=%s", ctx); |
| 657 | kfree(ctx); |
| 658 | } |
| 659 | audit_log_format(ab, " audit_enabled=%d res=0", |
| 660 | audit_enabled); |
| 661 | audit_log_end(ab); |
| 662 | } |
| 663 | return -EPERM; |
| 664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | /* fallthrough */ |
| 666 | case AUDIT_LIST: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid, |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 668 | uid, seq, data, nlmsg_len(nlh), |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 669 | loginuid, sid); |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 670 | break; |
| 671 | case AUDIT_ADD_RULE: |
| 672 | case AUDIT_DEL_RULE: |
| 673 | if (nlmsg_len(nlh) < sizeof(struct audit_rule_data)) |
| 674 | return -EINVAL; |
Eric Paris | 1a6b9f2 | 2008-01-07 17:09:31 -0500 | [diff] [blame^] | 675 | if (audit_enabled == AUDIT_LOCKED) { |
Steve Grubb | 6a01b07 | 2007-01-19 14:39:55 -0500 | [diff] [blame] | 676 | ab = audit_log_start(NULL, GFP_KERNEL, |
| 677 | AUDIT_CONFIG_CHANGE); |
| 678 | if (ab) { |
| 679 | audit_log_format(ab, |
| 680 | "pid=%d uid=%u auid=%u", |
| 681 | pid, uid, loginuid); |
| 682 | if (sid) { |
| 683 | if (selinux_sid_to_string( |
| 684 | sid, &ctx, &len)) { |
| 685 | audit_log_format(ab, |
| 686 | " ssid=%u", sid); |
| 687 | /* Maybe call audit_panic? */ |
| 688 | } else |
| 689 | audit_log_format(ab, |
| 690 | " subj=%s", ctx); |
| 691 | kfree(ctx); |
| 692 | } |
| 693 | audit_log_format(ab, " audit_enabled=%d res=0", |
| 694 | audit_enabled); |
| 695 | audit_log_end(ab); |
| 696 | } |
| 697 | return -EPERM; |
| 698 | } |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 699 | /* fallthrough */ |
| 700 | case AUDIT_LIST_RULES: |
| 701 | err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid, |
| 702 | uid, seq, data, nlmsg_len(nlh), |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 703 | loginuid, sid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | break; |
Al Viro | 74c3cbe | 2007-07-22 08:04:18 -0400 | [diff] [blame] | 705 | case AUDIT_TRIM: |
| 706 | audit_trim_trees(); |
| 707 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE); |
| 708 | if (!ab) |
| 709 | break; |
| 710 | audit_log_format(ab, "auid=%u", loginuid); |
| 711 | if (sid) { |
| 712 | u32 len; |
| 713 | ctx = NULL; |
| 714 | if (selinux_sid_to_string(sid, &ctx, &len)) |
| 715 | audit_log_format(ab, " ssid=%u", sid); |
| 716 | else |
| 717 | audit_log_format(ab, " subj=%s", ctx); |
| 718 | kfree(ctx); |
| 719 | } |
| 720 | audit_log_format(ab, " op=trim res=1"); |
| 721 | audit_log_end(ab); |
| 722 | break; |
| 723 | case AUDIT_MAKE_EQUIV: { |
| 724 | void *bufp = data; |
| 725 | u32 sizes[2]; |
| 726 | size_t len = nlmsg_len(nlh); |
| 727 | char *old, *new; |
| 728 | |
| 729 | err = -EINVAL; |
| 730 | if (len < 2 * sizeof(u32)) |
| 731 | break; |
| 732 | memcpy(sizes, bufp, 2 * sizeof(u32)); |
| 733 | bufp += 2 * sizeof(u32); |
| 734 | len -= 2 * sizeof(u32); |
| 735 | old = audit_unpack_string(&bufp, &len, sizes[0]); |
| 736 | if (IS_ERR(old)) { |
| 737 | err = PTR_ERR(old); |
| 738 | break; |
| 739 | } |
| 740 | new = audit_unpack_string(&bufp, &len, sizes[1]); |
| 741 | if (IS_ERR(new)) { |
| 742 | err = PTR_ERR(new); |
| 743 | kfree(old); |
| 744 | break; |
| 745 | } |
| 746 | /* OK, here comes... */ |
| 747 | err = audit_tag_tree(old, new); |
| 748 | |
| 749 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE); |
| 750 | if (!ab) { |
| 751 | kfree(old); |
| 752 | kfree(new); |
| 753 | break; |
| 754 | } |
| 755 | audit_log_format(ab, "auid=%u", loginuid); |
| 756 | if (sid) { |
| 757 | u32 len; |
| 758 | ctx = NULL; |
| 759 | if (selinux_sid_to_string(sid, &ctx, &len)) |
| 760 | audit_log_format(ab, " ssid=%u", sid); |
| 761 | else |
| 762 | audit_log_format(ab, " subj=%s", ctx); |
| 763 | kfree(ctx); |
| 764 | } |
| 765 | audit_log_format(ab, " op=make_equiv old="); |
| 766 | audit_log_untrustedstring(ab, old); |
| 767 | audit_log_format(ab, " new="); |
| 768 | audit_log_untrustedstring(ab, new); |
| 769 | audit_log_format(ab, " res=%d", !err); |
| 770 | audit_log_end(ab); |
| 771 | kfree(old); |
| 772 | kfree(new); |
| 773 | break; |
| 774 | } |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 775 | case AUDIT_SIGNAL_INFO: |
Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 776 | err = selinux_sid_to_string(audit_sig_sid, &ctx, &len); |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 777 | if (err) |
| 778 | return err; |
| 779 | sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL); |
| 780 | if (!sig_data) { |
| 781 | kfree(ctx); |
| 782 | return -ENOMEM; |
| 783 | } |
| 784 | sig_data->uid = audit_sig_uid; |
| 785 | sig_data->pid = audit_sig_pid; |
| 786 | memcpy(sig_data->ctx, ctx, len); |
| 787 | kfree(ctx); |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 788 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO, |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 789 | 0, 0, sig_data, sizeof(*sig_data) + len); |
| 790 | kfree(sig_data); |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 791 | break; |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 792 | case AUDIT_TTY_GET: { |
| 793 | struct audit_tty_status s; |
| 794 | struct task_struct *tsk; |
| 795 | |
| 796 | read_lock(&tasklist_lock); |
| 797 | tsk = find_task_by_pid(pid); |
| 798 | if (!tsk) |
| 799 | err = -ESRCH; |
| 800 | else { |
| 801 | spin_lock_irq(&tsk->sighand->siglock); |
| 802 | s.enabled = tsk->signal->audit_tty != 0; |
| 803 | spin_unlock_irq(&tsk->sighand->siglock); |
| 804 | } |
| 805 | read_unlock(&tasklist_lock); |
| 806 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_TTY_GET, 0, 0, |
| 807 | &s, sizeof(s)); |
| 808 | break; |
| 809 | } |
| 810 | case AUDIT_TTY_SET: { |
| 811 | struct audit_tty_status *s; |
| 812 | struct task_struct *tsk; |
| 813 | |
| 814 | if (nlh->nlmsg_len < sizeof(struct audit_tty_status)) |
| 815 | return -EINVAL; |
| 816 | s = data; |
| 817 | if (s->enabled != 0 && s->enabled != 1) |
| 818 | return -EINVAL; |
| 819 | read_lock(&tasklist_lock); |
| 820 | tsk = find_task_by_pid(pid); |
| 821 | if (!tsk) |
| 822 | err = -ESRCH; |
| 823 | else { |
| 824 | spin_lock_irq(&tsk->sighand->siglock); |
| 825 | tsk->signal->audit_tty = s->enabled != 0; |
| 826 | spin_unlock_irq(&tsk->sighand->siglock); |
| 827 | } |
| 828 | read_unlock(&tasklist_lock); |
| 829 | break; |
| 830 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | default: |
| 832 | err = -EINVAL; |
| 833 | break; |
| 834 | } |
| 835 | |
| 836 | return err < 0 ? err : 0; |
| 837 | } |
| 838 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 839 | /* |
| 840 | * Get message from skb (based on rtnetlink_rcv_skb). Each message is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | * processed by audit_receive_msg. Malformed skbs with wrong length are |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 842 | * discarded silently. |
| 843 | */ |
Herbert Xu | 2a0a6eb | 2005-05-03 14:55:09 -0700 | [diff] [blame] | 844 | static void audit_receive_skb(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { |
| 846 | int err; |
| 847 | struct nlmsghdr *nlh; |
| 848 | u32 rlen; |
| 849 | |
| 850 | while (skb->len >= NLMSG_SPACE(0)) { |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 851 | nlh = nlmsg_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len) |
Herbert Xu | 2a0a6eb | 2005-05-03 14:55:09 -0700 | [diff] [blame] | 853 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | rlen = NLMSG_ALIGN(nlh->nlmsg_len); |
| 855 | if (rlen > skb->len) |
| 856 | rlen = skb->len; |
| 857 | if ((err = audit_receive_msg(skb, nlh))) { |
| 858 | netlink_ack(skb, nlh, err); |
| 859 | } else if (nlh->nlmsg_flags & NLM_F_ACK) |
| 860 | netlink_ack(skb, nlh, 0); |
| 861 | skb_pull(skb, rlen); |
| 862 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | /* Receive messages from netlink socket. */ |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 866 | static void audit_receive(struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | { |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 868 | mutex_lock(&audit_cmd_mutex); |
Denis V. Lunev | cd40b7d | 2007-10-10 21:15:29 -0700 | [diff] [blame] | 869 | audit_receive_skb(skb); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 870 | mutex_unlock(&audit_cmd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 873 | #ifdef CONFIG_AUDITSYSCALL |
| 874 | static const struct inotify_operations audit_inotify_ops = { |
| 875 | .handle_event = audit_handle_ievent, |
| 876 | .destroy_watch = audit_free_parent, |
| 877 | }; |
| 878 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | |
| 880 | /* Initialize audit support at boot time. */ |
| 881 | static int __init audit_init(void) |
| 882 | { |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 883 | int i; |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | printk(KERN_INFO "audit: initializing netlink socket (%s)\n", |
| 886 | audit_default ? "enabled" : "disabled"); |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 887 | audit_sock = netlink_kernel_create(&init_net, NETLINK_AUDIT, 0, |
| 888 | audit_receive, NULL, THIS_MODULE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | if (!audit_sock) |
| 890 | audit_panic("cannot initialize netlink socket"); |
Amy Griffis | 71e1c78 | 2006-03-06 22:40:05 -0500 | [diff] [blame] | 891 | else |
| 892 | audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 894 | skb_queue_head_init(&audit_skb_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | audit_initialized = 1; |
| 896 | audit_enabled = audit_default; |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 897 | |
| 898 | /* Register the callback with selinux. This callback will be invoked |
| 899 | * when a new policy is loaded. */ |
| 900 | selinux_audit_set_callback(&selinux_audit_rule_update); |
| 901 | |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 902 | audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized"); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 903 | |
| 904 | #ifdef CONFIG_AUDITSYSCALL |
| 905 | audit_ih = inotify_init(&audit_inotify_ops); |
| 906 | if (IS_ERR(audit_ih)) |
| 907 | audit_panic("cannot initialize inotify handle"); |
Amy Griffis | 6988434 | 2006-07-13 13:17:12 -0400 | [diff] [blame] | 908 | #endif |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 909 | |
| 910 | for (i = 0; i < AUDIT_INODE_BUCKETS; i++) |
| 911 | INIT_LIST_HEAD(&audit_inode_hash[i]); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 912 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | return 0; |
| 914 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | __initcall(audit_init); |
| 916 | |
| 917 | /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */ |
| 918 | static int __init audit_enable(char *str) |
| 919 | { |
| 920 | audit_default = !!simple_strtol(str, NULL, 0); |
| 921 | printk(KERN_INFO "audit: %s%s\n", |
| 922 | audit_default ? "enabled" : "disabled", |
| 923 | audit_initialized ? "" : " (after initialization)"); |
| 924 | if (audit_initialized) |
| 925 | audit_enabled = audit_default; |
OGAWA Hirofumi | 9b41046 | 2006-03-31 02:30:33 -0800 | [diff] [blame] | 926 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | __setup("audit=", audit_enable); |
| 930 | |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 931 | static void audit_buffer_free(struct audit_buffer *ab) |
| 932 | { |
| 933 | unsigned long flags; |
| 934 | |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 935 | if (!ab) |
| 936 | return; |
| 937 | |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 938 | if (ab->skb) |
| 939 | kfree_skb(ab->skb); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 940 | |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 941 | spin_lock_irqsave(&audit_freelist_lock, flags); |
Serge E. Hallyn | 5d136a0 | 2006-04-27 16:45:14 -0500 | [diff] [blame] | 942 | if (audit_freelist_count > AUDIT_MAXFREE) |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 943 | kfree(ab); |
Serge E. Hallyn | 5d136a0 | 2006-04-27 16:45:14 -0500 | [diff] [blame] | 944 | else { |
| 945 | audit_freelist_count++; |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 946 | list_add(&ab->list, &audit_freelist); |
Serge E. Hallyn | 5d136a0 | 2006-04-27 16:45:14 -0500 | [diff] [blame] | 947 | } |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 948 | spin_unlock_irqrestore(&audit_freelist_lock, flags); |
| 949 | } |
| 950 | |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 951 | static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 952 | gfp_t gfp_mask, int type) |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 953 | { |
| 954 | unsigned long flags; |
| 955 | struct audit_buffer *ab = NULL; |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 956 | struct nlmsghdr *nlh; |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 957 | |
| 958 | spin_lock_irqsave(&audit_freelist_lock, flags); |
| 959 | if (!list_empty(&audit_freelist)) { |
| 960 | ab = list_entry(audit_freelist.next, |
| 961 | struct audit_buffer, list); |
| 962 | list_del(&ab->list); |
| 963 | --audit_freelist_count; |
| 964 | } |
| 965 | spin_unlock_irqrestore(&audit_freelist_lock, flags); |
| 966 | |
| 967 | if (!ab) { |
David Woodhouse | 4332bdd | 2005-05-06 15:59:57 +0100 | [diff] [blame] | 968 | ab = kmalloc(sizeof(*ab), gfp_mask); |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 969 | if (!ab) |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 970 | goto err; |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 971 | } |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 972 | |
David Woodhouse | 4332bdd | 2005-05-06 15:59:57 +0100 | [diff] [blame] | 973 | ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask); |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 974 | if (!ab->skb) |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 975 | goto err; |
| 976 | |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 977 | ab->ctx = ctx; |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 978 | ab->gfp_mask = gfp_mask; |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 979 | nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0)); |
| 980 | nlh->nlmsg_type = type; |
| 981 | nlh->nlmsg_flags = 0; |
| 982 | nlh->nlmsg_pid = 0; |
| 983 | nlh->nlmsg_seq = 0; |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 984 | return ab; |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 985 | err: |
| 986 | audit_buffer_free(ab); |
| 987 | return NULL; |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 988 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 990 | /** |
| 991 | * audit_serial - compute a serial number for the audit record |
| 992 | * |
| 993 | * Compute a serial number for the audit record. Audit records are |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 994 | * written to user-space as soon as they are generated, so a complete |
| 995 | * audit record may be written in several pieces. The timestamp of the |
| 996 | * record and this serial number are used by the user-space tools to |
| 997 | * determine which pieces belong to the same audit record. The |
| 998 | * (timestamp,serial) tuple is unique for each syscall and is live from |
| 999 | * syscall entry to syscall exit. |
| 1000 | * |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1001 | * NOTE: Another possibility is to store the formatted records off the |
| 1002 | * audit context (for those records that have a context), and emit them |
| 1003 | * all at syscall exit. However, this could delay the reporting of |
| 1004 | * significant errors until syscall exit (or never, if the system |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1005 | * halts). |
| 1006 | */ |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1007 | unsigned int audit_serial(void) |
| 1008 | { |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 1009 | static DEFINE_SPINLOCK(serial_lock); |
David Woodhouse | d5b454f | 2005-07-15 12:56:03 +0100 | [diff] [blame] | 1010 | static unsigned int serial = 0; |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1011 | |
David Woodhouse | d5b454f | 2005-07-15 12:56:03 +0100 | [diff] [blame] | 1012 | unsigned long flags; |
| 1013 | unsigned int ret; |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1014 | |
David Woodhouse | d5b454f | 2005-07-15 12:56:03 +0100 | [diff] [blame] | 1015 | spin_lock_irqsave(&serial_lock, flags); |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1016 | do { |
David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1017 | ret = ++serial; |
| 1018 | } while (unlikely(!ret)); |
David Woodhouse | d5b454f | 2005-07-15 12:56:03 +0100 | [diff] [blame] | 1019 | spin_unlock_irqrestore(&serial_lock, flags); |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1020 | |
David Woodhouse | d5b454f | 2005-07-15 12:56:03 +0100 | [diff] [blame] | 1021 | return ret; |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1022 | } |
| 1023 | |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 1024 | static inline void audit_get_stamp(struct audit_context *ctx, |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1025 | struct timespec *t, unsigned int *serial) |
| 1026 | { |
| 1027 | if (ctx) |
| 1028 | auditsc_get_stamp(ctx, t, serial); |
| 1029 | else { |
| 1030 | *t = CURRENT_TIME; |
| 1031 | *serial = audit_serial(); |
| 1032 | } |
| 1033 | } |
| 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | /* Obtain an audit buffer. This routine does locking to obtain the |
| 1036 | * audit buffer, but then no locking is required for calls to |
| 1037 | * audit_log_*format. If the tsk is a task that is currently in a |
| 1038 | * syscall, then the syscall is marked as auditable and an audit record |
| 1039 | * will be written at syscall exit. If there is no associated task, tsk |
| 1040 | * should be NULL. */ |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1041 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1042 | /** |
| 1043 | * audit_log_start - obtain an audit buffer |
| 1044 | * @ctx: audit_context (may be NULL) |
| 1045 | * @gfp_mask: type of allocation |
| 1046 | * @type: audit message type |
| 1047 | * |
| 1048 | * Returns audit_buffer pointer on success or NULL on error. |
| 1049 | * |
| 1050 | * Obtain an audit buffer. This routine does locking to obtain the |
| 1051 | * audit buffer, but then no locking is required for calls to |
| 1052 | * audit_log_*format. If the task (ctx) is a task that is currently in a |
| 1053 | * syscall, then the syscall is marked as auditable and an audit record |
| 1054 | * will be written at syscall exit. If there is no associated task, then |
| 1055 | * task context (ctx) should be NULL. |
| 1056 | */ |
Al Viro | 9796fdd | 2005-10-21 03:22:03 -0400 | [diff] [blame] | 1057 | struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1058 | int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | { |
| 1060 | struct audit_buffer *ab = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | struct timespec t; |
Steve Grubb | d812ddb | 2005-04-29 16:09:52 +0100 | [diff] [blame] | 1062 | unsigned int serial; |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1063 | int reserve; |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 1064 | unsigned long timeout_start = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
| 1066 | if (!audit_initialized) |
| 1067 | return NULL; |
| 1068 | |
Dustin Kirkland | c8edc80 | 2005-11-03 16:12:36 +0000 | [diff] [blame] | 1069 | if (unlikely(audit_filter_type(type))) |
| 1070 | return NULL; |
| 1071 | |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1072 | if (gfp_mask & __GFP_WAIT) |
| 1073 | reserve = 0; |
| 1074 | else |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 1075 | reserve = 5; /* Allow atomic callers to go up to five |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1076 | entries over the normal backlog limit */ |
| 1077 | |
| 1078 | while (audit_backlog_limit |
| 1079 | && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) { |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 1080 | if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time |
| 1081 | && time_before(jiffies, timeout_start + audit_backlog_wait_time)) { |
| 1082 | |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1083 | /* Wait for auditd to drain the queue a little */ |
| 1084 | DECLARE_WAITQUEUE(wait, current); |
| 1085 | set_current_state(TASK_INTERRUPTIBLE); |
| 1086 | add_wait_queue(&audit_backlog_wait, &wait); |
| 1087 | |
| 1088 | if (audit_backlog_limit && |
| 1089 | skb_queue_len(&audit_skb_queue) > audit_backlog_limit) |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 1090 | schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies); |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1091 | |
| 1092 | __set_current_state(TASK_RUNNING); |
| 1093 | remove_wait_queue(&audit_backlog_wait, &wait); |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 1094 | continue; |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1095 | } |
David Woodhouse | fb19b4c | 2005-05-19 14:55:56 +0100 | [diff] [blame] | 1096 | if (audit_rate_check()) |
| 1097 | printk(KERN_WARNING |
| 1098 | "audit: audit_backlog=%d > " |
| 1099 | "audit_backlog_limit=%d\n", |
| 1100 | skb_queue_len(&audit_skb_queue), |
| 1101 | audit_backlog_limit); |
| 1102 | audit_log_lost("backlog limit exceeded"); |
David Woodhouse | ac4cec4 | 2005-07-02 14:08:48 +0100 | [diff] [blame] | 1103 | audit_backlog_wait_time = audit_backlog_wait_overflow; |
| 1104 | wake_up(&audit_backlog_wait); |
David Woodhouse | fb19b4c | 2005-05-19 14:55:56 +0100 | [diff] [blame] | 1105 | return NULL; |
| 1106 | } |
| 1107 | |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1108 | ab = audit_buffer_alloc(ctx, gfp_mask, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | if (!ab) { |
| 1110 | audit_log_lost("out of memory in audit_log_start"); |
| 1111 | return NULL; |
| 1112 | } |
| 1113 | |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1114 | audit_get_stamp(ab->ctx, &t, &serial); |
Chris Wright | 197c69c | 2005-05-11 10:54:05 +0100 | [diff] [blame] | 1115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | audit_log_format(ab, "audit(%lu.%03lu:%u): ", |
| 1117 | t.tv_sec, t.tv_nsec/1000000, serial); |
| 1118 | return ab; |
| 1119 | } |
| 1120 | |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1121 | /** |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1122 | * audit_expand - expand skb in the audit buffer |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1123 | * @ab: audit_buffer |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1124 | * @extra: space to add at tail of the skb |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1125 | * |
| 1126 | * Returns 0 (no space) on failed expansion, or available space if |
| 1127 | * successful. |
| 1128 | */ |
David Woodhouse | e3b926b | 2005-05-10 18:56:08 +0100 | [diff] [blame] | 1129 | static inline int audit_expand(struct audit_buffer *ab, int extra) |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1130 | { |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1131 | struct sk_buff *skb = ab->skb; |
Herbert Xu | 406a1d8 | 2008-01-28 20:47:09 -0800 | [diff] [blame] | 1132 | int oldtail = skb_tailroom(skb); |
| 1133 | int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask); |
| 1134 | int newtail = skb_tailroom(skb); |
| 1135 | |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1136 | if (ret < 0) { |
| 1137 | audit_log_lost("out of memory in audit_expand"); |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1138 | return 0; |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1139 | } |
Herbert Xu | 406a1d8 | 2008-01-28 20:47:09 -0800 | [diff] [blame] | 1140 | |
| 1141 | skb->truesize += newtail - oldtail; |
| 1142 | return newtail; |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1145 | /* |
| 1146 | * Format an audit message into the audit buffer. If there isn't enough |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | * room in the audit buffer, more room will be allocated and vsnprint |
| 1148 | * will be called a second time. Currently, we assume that a printk |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1149 | * can't format message larger than 1024 bytes, so we don't either. |
| 1150 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | static void audit_log_vformat(struct audit_buffer *ab, const char *fmt, |
| 1152 | va_list args) |
| 1153 | { |
| 1154 | int len, avail; |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1155 | struct sk_buff *skb; |
David Woodhouse | eecb0a7 | 2005-05-10 18:58:51 +0100 | [diff] [blame] | 1156 | va_list args2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | |
| 1158 | if (!ab) |
| 1159 | return; |
| 1160 | |
Chris Wright | 5ac52f3 | 2005-05-06 15:54:53 +0100 | [diff] [blame] | 1161 | BUG_ON(!ab->skb); |
| 1162 | skb = ab->skb; |
| 1163 | avail = skb_tailroom(skb); |
| 1164 | if (avail == 0) { |
David Woodhouse | e3b926b | 2005-05-10 18:56:08 +0100 | [diff] [blame] | 1165 | avail = audit_expand(ab, AUDIT_BUFSIZ); |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1166 | if (!avail) |
| 1167 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | } |
David Woodhouse | eecb0a7 | 2005-05-10 18:58:51 +0100 | [diff] [blame] | 1169 | va_copy(args2, args); |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1170 | len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | if (len >= avail) { |
| 1172 | /* The printk buffer is 1024 bytes long, so if we get |
| 1173 | * here and AUDIT_BUFSIZ is at least 1024, then we can |
| 1174 | * log everything that printk could have logged. */ |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1175 | avail = audit_expand(ab, |
| 1176 | max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail)); |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1177 | if (!avail) |
| 1178 | goto out; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1179 | len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1181 | if (len > 0) |
| 1182 | skb_put(skb, len); |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1183 | out: |
| 1184 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1187 | /** |
| 1188 | * audit_log_format - format a message into the audit buffer. |
| 1189 | * @ab: audit_buffer |
| 1190 | * @fmt: format string |
| 1191 | * @...: optional parameters matching @fmt string |
| 1192 | * |
| 1193 | * All the work is done in audit_log_vformat. |
| 1194 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | void audit_log_format(struct audit_buffer *ab, const char *fmt, ...) |
| 1196 | { |
| 1197 | va_list args; |
| 1198 | |
| 1199 | if (!ab) |
| 1200 | return; |
| 1201 | va_start(args, fmt); |
| 1202 | audit_log_vformat(ab, fmt, args); |
| 1203 | va_end(args); |
| 1204 | } |
| 1205 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1206 | /** |
| 1207 | * audit_log_hex - convert a buffer to hex and append it to the audit skb |
| 1208 | * @ab: the audit_buffer |
| 1209 | * @buf: buffer to convert to hex |
| 1210 | * @len: length of @buf to be converted |
| 1211 | * |
| 1212 | * No return value; failure to expand is silently ignored. |
| 1213 | * |
| 1214 | * This function will take the passed buf and convert it into a string of |
| 1215 | * ascii hex digits. The new string is placed onto the skb. |
| 1216 | */ |
| 1217 | void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1218 | size_t len) |
| 83c7d09 | 2005-04-29 15:54:44 +0100 | [diff] [blame] | 1219 | { |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1220 | int i, avail, new_len; |
| 1221 | unsigned char *ptr; |
| 1222 | struct sk_buff *skb; |
| 1223 | static const unsigned char *hex = "0123456789ABCDEF"; |
| 83c7d09 | 2005-04-29 15:54:44 +0100 | [diff] [blame] | 1224 | |
Amy Griffis | 8ef2d30 | 2006-09-07 17:03:02 -0400 | [diff] [blame] | 1225 | if (!ab) |
| 1226 | return; |
| 1227 | |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1228 | BUG_ON(!ab->skb); |
| 1229 | skb = ab->skb; |
| 1230 | avail = skb_tailroom(skb); |
| 1231 | new_len = len<<1; |
| 1232 | if (new_len >= avail) { |
| 1233 | /* Round the buffer request up to the next multiple */ |
| 1234 | new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1); |
| 1235 | avail = audit_expand(ab, new_len); |
| 1236 | if (!avail) |
| 1237 | return; |
| 1238 | } |
| 1239 | |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1240 | ptr = skb_tail_pointer(skb); |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1241 | for (i=0; i<len; i++) { |
| 1242 | *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */ |
| 1243 | *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */ |
| 1244 | } |
| 1245 | *ptr = 0; |
| 1246 | skb_put(skb, len << 1); /* new string is twice the old string */ |
| 83c7d09 | 2005-04-29 15:54:44 +0100 | [diff] [blame] | 1247 | } |
| 1248 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1249 | /* |
| 1250 | * Format a string of no more than slen characters into the audit buffer, |
| 1251 | * enclosed in quote marks. |
| 1252 | */ |
| 1253 | static void audit_log_n_string(struct audit_buffer *ab, size_t slen, |
| 1254 | const char *string) |
| 1255 | { |
| 1256 | int avail, new_len; |
| 1257 | unsigned char *ptr; |
| 1258 | struct sk_buff *skb; |
| 1259 | |
Amy Griffis | 8ef2d30 | 2006-09-07 17:03:02 -0400 | [diff] [blame] | 1260 | if (!ab) |
| 1261 | return; |
| 1262 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1263 | BUG_ON(!ab->skb); |
| 1264 | skb = ab->skb; |
| 1265 | avail = skb_tailroom(skb); |
| 1266 | new_len = slen + 3; /* enclosing quotes + null terminator */ |
| 1267 | if (new_len > avail) { |
| 1268 | avail = audit_expand(ab, new_len); |
| 1269 | if (!avail) |
| 1270 | return; |
| 1271 | } |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 1272 | ptr = skb_tail_pointer(skb); |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1273 | *ptr++ = '"'; |
| 1274 | memcpy(ptr, string, slen); |
| 1275 | ptr += slen; |
| 1276 | *ptr++ = '"'; |
| 1277 | *ptr = 0; |
| 1278 | skb_put(skb, slen + 2); /* don't include null terminator */ |
| 1279 | } |
| 1280 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1281 | /** |
Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1282 | * audit_string_contains_control - does a string need to be logged in hex |
| 1283 | * @string - string to be checked |
| 1284 | * @len - max length of the string to check |
| 1285 | */ |
| 1286 | int audit_string_contains_control(const char *string, size_t len) |
| 1287 | { |
| 1288 | const unsigned char *p; |
| 1289 | for (p = string; p < (const unsigned char *)string + len && *p; p++) { |
| 1290 | if (*p == '"' || *p < 0x21 || *p > 0x7f) |
| 1291 | return 1; |
| 1292 | } |
| 1293 | return 0; |
| 1294 | } |
| 1295 | |
| 1296 | /** |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 1297 | * audit_log_n_untrustedstring - log a string that may contain random characters |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1298 | * @ab: audit_buffer |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1299 | * @len: lenth of string (not including trailing null) |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1300 | * @string: string to be logged |
| 1301 | * |
| 1302 | * This code will escape a string that is passed to it if the string |
| 1303 | * contains a control character, unprintable character, double quote mark, |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1304 | * or a space. Unescaped strings will start and end with a double quote mark. |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1305 | * Strings that are escaped are printed in hex (2 digits per char). |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1306 | * |
| 1307 | * The caller specifies the number of characters in the string to log, which may |
| 1308 | * or may not be the entire string. |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1309 | */ |
Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1310 | void audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len, |
| 1311 | const char *string) |
| 83c7d09 | 2005-04-29 15:54:44 +0100 | [diff] [blame] | 1312 | { |
Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1313 | if (audit_string_contains_control(string, len)) |
| 1314 | audit_log_hex(ab, string, len); |
| 1315 | else |
| 1316 | audit_log_n_string(ab, len, string); |
| 83c7d09 | 2005-04-29 15:54:44 +0100 | [diff] [blame] | 1317 | } |
| 1318 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1319 | /** |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 1320 | * audit_log_untrustedstring - log a string that may contain random characters |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1321 | * @ab: audit_buffer |
| 1322 | * @string: string to be logged |
| 1323 | * |
Miloslav Trmac | 522ed77 | 2007-07-15 23:40:56 -0700 | [diff] [blame] | 1324 | * Same as audit_log_n_untrustedstring(), except that strlen is used to |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1325 | * determine string length. |
| 1326 | */ |
Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1327 | void audit_log_untrustedstring(struct audit_buffer *ab, const char *string) |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1328 | { |
Eric Paris | de6bbd1 | 2008-01-07 14:31:58 -0500 | [diff] [blame] | 1329 | audit_log_n_untrustedstring(ab, strlen(string), string); |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1330 | } |
| 1331 | |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1332 | /* This is a helper-function to print the escaped d_path */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | void audit_log_d_path(struct audit_buffer *ab, const char *prefix, |
| 1334 | struct dentry *dentry, struct vfsmount *vfsmnt) |
| 1335 | { |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1336 | char *p, *path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | |
Chris Wright | 8fc6115 | 2005-05-06 15:54:17 +0100 | [diff] [blame] | 1338 | if (prefix) |
| 1339 | audit_log_format(ab, " %s", prefix); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1341 | /* We will allow 11 spaces for ' (deleted)' to be appended */ |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1342 | path = kmalloc(PATH_MAX+11, ab->gfp_mask); |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1343 | if (!path) { |
| 1344 | audit_log_format(ab, "<no memory>"); |
| 1345 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | } |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1347 | p = d_path(dentry, vfsmnt, path, PATH_MAX+11); |
| 1348 | if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */ |
| 1349 | /* FIXME: can we save some information here? */ |
| 1350 | audit_log_format(ab, "<too long>"); |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 1351 | } else |
Steve Grubb | 168b717 | 2005-05-19 10:24:22 +0100 | [diff] [blame] | 1352 | audit_log_untrustedstring(ab, p); |
| 1353 | kfree(path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | } |
| 1355 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1356 | /** |
| 1357 | * audit_log_end - end one audit record |
| 1358 | * @ab: the audit_buffer |
| 1359 | * |
| 1360 | * The netlink_* functions cannot be called inside an irq context, so |
| 1361 | * the audit buffer is placed on a queue and a tasklet is scheduled to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | * remove them from the queue outside the irq context. May be called in |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1363 | * any context. |
| 1364 | */ |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 1365 | void audit_log_end(struct audit_buffer *ab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | if (!ab) |
| 1368 | return; |
| 1369 | if (!audit_rate_check()) { |
| 1370 | audit_log_lost("rate limit exceeded"); |
| 1371 | } else { |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 1372 | if (audit_pid) { |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 1373 | struct nlmsghdr *nlh = nlmsg_hdr(ab->skb); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 1374 | nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0); |
| 1375 | skb_queue_tail(&audit_skb_queue, ab->skb); |
| 1376 | ab->skb = NULL; |
| 1377 | wake_up_interruptible(&kauditd_wait); |
| 1378 | } else { |
Eric Paris | e445deb | 2008-01-07 14:19:15 -0500 | [diff] [blame] | 1379 | struct nlmsghdr *nlh = nlmsg_hdr(ab->skb); |
| 1380 | printk(KERN_NOTICE "type=%d %s\n", nlh->nlmsg_type, ab->skb->data + NLMSG_SPACE(0)); |
David Woodhouse | b7d1125 | 2005-05-19 10:56:58 +0100 | [diff] [blame] | 1381 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1382 | } |
Chris Wright | 16e1904 | 2005-05-06 15:53:34 +0100 | [diff] [blame] | 1383 | audit_buffer_free(ab); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | } |
| 1385 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1386 | /** |
| 1387 | * audit_log - Log an audit record |
| 1388 | * @ctx: audit context |
| 1389 | * @gfp_mask: type of allocation |
| 1390 | * @type: audit message type |
| 1391 | * @fmt: format string to use |
| 1392 | * @...: variable parameters matching the format string |
| 1393 | * |
| 1394 | * This is a convenience function that calls audit_log_start, |
| 1395 | * audit_log_vformat, and audit_log_end. It may be called |
| 1396 | * in any context. |
| 1397 | */ |
Daniel Walker | 5600b89 | 2007-10-18 03:06:10 -0700 | [diff] [blame] | 1398 | void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type, |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1399 | const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | { |
| 1401 | struct audit_buffer *ab; |
| 1402 | va_list args; |
| 1403 | |
David Woodhouse | 9ad9ad3 | 2005-06-22 15:04:33 +0100 | [diff] [blame] | 1404 | ab = audit_log_start(ctx, gfp_mask, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | if (ab) { |
| 1406 | va_start(args, fmt); |
| 1407 | audit_log_vformat(ab, fmt, args); |
| 1408 | va_end(args); |
| 1409 | audit_log_end(ab); |
| 1410 | } |
| 1411 | } |
lorenzo@gnu.org | bf45da9 | 2006-03-09 00:33:47 +0100 | [diff] [blame] | 1412 | |
| 1413 | EXPORT_SYMBOL(audit_log_start); |
| 1414 | EXPORT_SYMBOL(audit_log_end); |
| 1415 | EXPORT_SYMBOL(audit_log_format); |
| 1416 | EXPORT_SYMBOL(audit_log); |