]>
Commit | Line | Data |
---|---|---|
85c8721f | 1 | /* audit.c -- Auditing support |
1da177e4 LT |
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 | * | |
6a01b07f | 5 | * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina. |
1da177e4 LT |
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 <[email protected]> | |
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 | * | |
85c8721f | 41 | * Example user-space utilities: http://people.redhat.com/sgrubb/audit/ |
1da177e4 LT |
42 | */ |
43 | ||
44 | #include <linux/init.h> | |
1da177e4 | 45 | #include <asm/types.h> |
715b49ef | 46 | #include <asm/atomic.h> |
1da177e4 LT |
47 | #include <linux/mm.h> |
48 | #include <linux/module.h> | |
b7d11258 DW |
49 | #include <linux/err.h> |
50 | #include <linux/kthread.h> | |
1da177e4 LT |
51 | |
52 | #include <linux/audit.h> | |
53 | ||
54 | #include <net/sock.h> | |
93315ed6 | 55 | #include <net/netlink.h> |
1da177e4 LT |
56 | #include <linux/skbuff.h> |
57 | #include <linux/netlink.h> | |
3dc7e315 | 58 | #include <linux/selinux.h> |
f368c07d | 59 | #include <linux/inotify.h> |
7dfb7103 | 60 | #include <linux/freezer.h> |
522ed776 | 61 | #include <linux/tty.h> |
3dc7e315 DG |
62 | |
63 | #include "audit.h" | |
1da177e4 LT |
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 | ||
6a01b07f SG |
69 | /* 0 - no auditing |
70 | * 1 - auditing enabled | |
71 | * 2 - auditing enabled and configuration is locked/unchangeable. */ | |
1da177e4 LT |
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. */ | |
c2f0c7c3 | 82 | int audit_pid; |
1da177e4 | 83 | |
b0dd25a8 | 84 | /* If audit_rate_limit is non-zero, limit the rate of sending audit records |
1da177e4 LT |
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; | |
ac4cec44 DW |
91 | static int audit_backlog_wait_time = 60 * HZ; |
92 | static int audit_backlog_wait_overflow = 0; | |
1da177e4 | 93 | |
c2f0c7c3 SG |
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; | |
e1396065 | 97 | u32 audit_sig_sid = 0; |
c2f0c7c3 | 98 | |
1da177e4 LT |
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 | ||
f368c07d AG |
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 | ||
b7d11258 | 117 | /* The audit_freelist is a list of pre-allocated audit buffers (if more |
1da177e4 LT |
118 | * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of |
119 | * being placed on the freelist). */ | |
1da177e4 | 120 | static DEFINE_SPINLOCK(audit_freelist_lock); |
b0dd25a8 | 121 | static int audit_freelist_count; |
1da177e4 LT |
122 | static LIST_HEAD(audit_freelist); |
123 | ||
b7d11258 DW |
124 | static struct sk_buff_head audit_skb_queue; |
125 | static struct task_struct *kauditd_task; | |
126 | static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait); | |
9ad9ad38 | 127 | static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait); |
1da177e4 | 128 | |
f368c07d AG |
129 | /* Serialize requests from userspace. */ |
130 | static DEFINE_MUTEX(audit_cmd_mutex); | |
1da177e4 LT |
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; | |
8fc6115c | 148 | struct sk_buff *skb; /* formatted skb ready to send */ |
1da177e4 | 149 | struct audit_context *ctx; /* NULL or associated context */ |
9796fdd8 | 150 | gfp_t gfp_mask; |
1da177e4 LT |
151 | }; |
152 | ||
c0404993 SG |
153 | static void audit_set_pid(struct audit_buffer *ab, pid_t pid) |
154 | { | |
b529ccf2 | 155 | struct nlmsghdr *nlh = nlmsg_hdr(ab->skb); |
c0404993 SG |
156 | nlh->nlmsg_pid = pid; |
157 | } | |
158 | ||
8c8570fb | 159 | void audit_panic(const char *message) |
1da177e4 LT |
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 | ||
b0dd25a8 RD |
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 | */ | |
1da177e4 LT |
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 | |
b7d11258 | 235 | "audit: audit_lost=%d audit_rate_limit=%d audit_backlog_limit=%d\n", |
1da177e4 | 236 | atomic_read(&audit_lost), |
1da177e4 LT |
237 | audit_rate_limit, |
238 | audit_backlog_limit); | |
239 | audit_panic(message); | |
240 | } | |
1da177e4 LT |
241 | } |
242 | ||
ce29b682 | 243 | static int audit_set_rate_limit(int limit, uid_t loginuid, u32 sid) |
1da177e4 | 244 | { |
6a01b07f SG |
245 | int res, rc = 0, old = audit_rate_limit; |
246 | ||
247 | /* check if we are locked */ | |
248 | if (audit_enabled == 2) | |
249 | res = 0; | |
250 | else | |
251 | res = 1; | |
ce29b682 SG |
252 | |
253 | if (sid) { | |
254 | char *ctx = NULL; | |
255 | u32 len; | |
6a01b07f | 256 | if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) { |
ce29b682 | 257 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, |
6a01b07f SG |
258 | "audit_rate_limit=%d old=%d by auid=%u" |
259 | " subj=%s res=%d", | |
260 | limit, old, loginuid, ctx, res); | |
261 | kfree(ctx); | |
262 | } else | |
263 | res = 0; /* Something weird, deny request */ | |
264 | } | |
265 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, | |
266 | "audit_rate_limit=%d old=%d by auid=%u res=%d", | |
267 | limit, old, loginuid, res); | |
268 | ||
269 | /* If we are allowed, make the change */ | |
270 | if (res == 1) | |
271 | audit_rate_limit = limit; | |
272 | /* Not allowed, update reason */ | |
273 | else if (rc == 0) | |
274 | rc = -EPERM; | |
275 | return rc; | |
1da177e4 LT |
276 | } |
277 | ||
ce29b682 | 278 | static int audit_set_backlog_limit(int limit, uid_t loginuid, u32 sid) |
1da177e4 | 279 | { |
6a01b07f SG |
280 | int res, rc = 0, old = audit_backlog_limit; |
281 | ||
282 | /* check if we are locked */ | |
283 | if (audit_enabled == 2) | |
284 | res = 0; | |
285 | else | |
286 | res = 1; | |
ce29b682 SG |
287 | |
288 | if (sid) { | |
289 | char *ctx = NULL; | |
290 | u32 len; | |
6a01b07f | 291 | if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) { |
ce29b682 | 292 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, |
6a01b07f SG |
293 | "audit_backlog_limit=%d old=%d by auid=%u" |
294 | " subj=%s res=%d", | |
295 | limit, old, loginuid, ctx, res); | |
296 | kfree(ctx); | |
297 | } else | |
298 | res = 0; /* Something weird, deny request */ | |
299 | } | |
300 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, | |
301 | "audit_backlog_limit=%d old=%d by auid=%u res=%d", | |
302 | limit, old, loginuid, res); | |
303 | ||
304 | /* If we are allowed, make the change */ | |
305 | if (res == 1) | |
306 | audit_backlog_limit = limit; | |
307 | /* Not allowed, update reason */ | |
308 | else if (rc == 0) | |
309 | rc = -EPERM; | |
310 | return rc; | |
1da177e4 LT |
311 | } |
312 | ||
ce29b682 | 313 | static int audit_set_enabled(int state, uid_t loginuid, u32 sid) |
1da177e4 | 314 | { |
6a01b07f | 315 | int res, rc = 0, old = audit_enabled; |
ce29b682 | 316 | |
6a01b07f | 317 | if (state < 0 || state > 2) |
1da177e4 | 318 | return -EINVAL; |
ce29b682 | 319 | |
6a01b07f SG |
320 | /* check if we are locked */ |
321 | if (audit_enabled == 2) | |
322 | res = 0; | |
323 | else | |
324 | res = 1; | |
325 | ||
ce29b682 SG |
326 | if (sid) { |
327 | char *ctx = NULL; | |
328 | u32 len; | |
6a01b07f | 329 | if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) { |
ce29b682 | 330 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, |
6a01b07f SG |
331 | "audit_enabled=%d old=%d by auid=%u" |
332 | " subj=%s res=%d", | |
333 | state, old, loginuid, ctx, res); | |
334 | kfree(ctx); | |
335 | } else | |
336 | res = 0; /* Something weird, deny request */ | |
337 | } | |
338 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, | |
339 | "audit_enabled=%d old=%d by auid=%u res=%d", | |
340 | state, old, loginuid, res); | |
341 | ||
342 | /* If we are allowed, make the change */ | |
343 | if (res == 1) | |
344 | audit_enabled = state; | |
345 | /* Not allowed, update reason */ | |
346 | else if (rc == 0) | |
347 | rc = -EPERM; | |
348 | return rc; | |
1da177e4 LT |
349 | } |
350 | ||
ce29b682 | 351 | static int audit_set_failure(int state, uid_t loginuid, u32 sid) |
1da177e4 | 352 | { |
6a01b07f | 353 | int res, rc = 0, old = audit_failure; |
ce29b682 | 354 | |
1da177e4 LT |
355 | if (state != AUDIT_FAIL_SILENT |
356 | && state != AUDIT_FAIL_PRINTK | |
357 | && state != AUDIT_FAIL_PANIC) | |
358 | return -EINVAL; | |
ce29b682 | 359 | |
6a01b07f SG |
360 | /* check if we are locked */ |
361 | if (audit_enabled == 2) | |
362 | res = 0; | |
363 | else | |
364 | res = 1; | |
365 | ||
ce29b682 SG |
366 | if (sid) { |
367 | char *ctx = NULL; | |
368 | u32 len; | |
6a01b07f | 369 | if ((rc = selinux_sid_to_string(sid, &ctx, &len)) == 0) { |
ce29b682 | 370 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, |
6a01b07f SG |
371 | "audit_failure=%d old=%d by auid=%u" |
372 | " subj=%s res=%d", | |
373 | state, old, loginuid, ctx, res); | |
374 | kfree(ctx); | |
375 | } else | |
376 | res = 0; /* Something weird, deny request */ | |
377 | } | |
378 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, | |
379 | "audit_failure=%d old=%d by auid=%u res=%d", | |
380 | state, old, loginuid, res); | |
381 | ||
382 | /* If we are allowed, make the change */ | |
383 | if (res == 1) | |
384 | audit_failure = state; | |
385 | /* Not allowed, update reason */ | |
386 | else if (rc == 0) | |
387 | rc = -EPERM; | |
388 | return rc; | |
1da177e4 LT |
389 | } |
390 | ||
97a41e26 | 391 | static int kauditd_thread(void *dummy) |
b7d11258 DW |
392 | { |
393 | struct sk_buff *skb; | |
394 | ||
83144186 | 395 | set_freezable(); |
4899b8b1 | 396 | while (!kthread_should_stop()) { |
b7d11258 | 397 | skb = skb_dequeue(&audit_skb_queue); |
9ad9ad38 | 398 | wake_up(&audit_backlog_wait); |
b7d11258 DW |
399 | if (skb) { |
400 | if (audit_pid) { | |
401 | int err = netlink_unicast(audit_sock, skb, audit_pid, 0); | |
402 | if (err < 0) { | |
403 | BUG_ON(err != -ECONNREFUSED); /* Shoudn't happen */ | |
404 | printk(KERN_ERR "audit: *NO* daemon at audit_pid=%d\n", audit_pid); | |
405 | audit_pid = 0; | |
406 | } | |
407 | } else { | |
e1b09eba | 408 | printk(KERN_NOTICE "%s\n", skb->data + NLMSG_SPACE(0)); |
b7d11258 DW |
409 | kfree_skb(skb); |
410 | } | |
411 | } else { | |
412 | DECLARE_WAITQUEUE(wait, current); | |
413 | set_current_state(TASK_INTERRUPTIBLE); | |
414 | add_wait_queue(&kauditd_wait, &wait); | |
415 | ||
7a4ae749 PO |
416 | if (!skb_queue_len(&audit_skb_queue)) { |
417 | try_to_freeze(); | |
b7d11258 | 418 | schedule(); |
7a4ae749 | 419 | } |
b7d11258 DW |
420 | |
421 | __set_current_state(TASK_RUNNING); | |
422 | remove_wait_queue(&kauditd_wait, &wait); | |
423 | } | |
424 | } | |
4899b8b1 | 425 | return 0; |
b7d11258 DW |
426 | } |
427 | ||
522ed776 MT |
428 | static int audit_prepare_user_tty(pid_t pid, uid_t loginuid) |
429 | { | |
430 | struct task_struct *tsk; | |
431 | int err; | |
432 | ||
433 | read_lock(&tasklist_lock); | |
434 | tsk = find_task_by_pid(pid); | |
435 | err = -ESRCH; | |
436 | if (!tsk) | |
437 | goto out; | |
438 | err = 0; | |
439 | ||
440 | spin_lock_irq(&tsk->sighand->siglock); | |
441 | if (!tsk->signal->audit_tty) | |
442 | err = -EPERM; | |
443 | spin_unlock_irq(&tsk->sighand->siglock); | |
444 | if (err) | |
445 | goto out; | |
446 | ||
447 | tty_audit_push_task(tsk, loginuid); | |
448 | out: | |
449 | read_unlock(&tasklist_lock); | |
450 | return err; | |
451 | } | |
452 | ||
9044e6bc AV |
453 | int audit_send_list(void *_dest) |
454 | { | |
455 | struct audit_netlink_list *dest = _dest; | |
456 | int pid = dest->pid; | |
457 | struct sk_buff *skb; | |
458 | ||
459 | /* wait for parent to finish and send an ACK */ | |
f368c07d AG |
460 | mutex_lock(&audit_cmd_mutex); |
461 | mutex_unlock(&audit_cmd_mutex); | |
9044e6bc AV |
462 | |
463 | while ((skb = __skb_dequeue(&dest->q)) != NULL) | |
464 | netlink_unicast(audit_sock, skb, pid, 0); | |
465 | ||
466 | kfree(dest); | |
467 | ||
468 | return 0; | |
469 | } | |
470 | ||
471 | struct sk_buff *audit_make_reply(int pid, int seq, int type, int done, | |
472 | int multi, void *payload, int size) | |
473 | { | |
474 | struct sk_buff *skb; | |
475 | struct nlmsghdr *nlh; | |
476 | int len = NLMSG_SPACE(size); | |
477 | void *data; | |
478 | int flags = multi ? NLM_F_MULTI : 0; | |
479 | int t = done ? NLMSG_DONE : type; | |
480 | ||
481 | skb = alloc_skb(len, GFP_KERNEL); | |
482 | if (!skb) | |
483 | return NULL; | |
484 | ||
485 | nlh = NLMSG_PUT(skb, pid, seq, t, size); | |
486 | nlh->nlmsg_flags = flags; | |
487 | data = NLMSG_DATA(nlh); | |
488 | memcpy(data, payload, size); | |
489 | return skb; | |
490 | ||
491 | nlmsg_failure: /* Used by NLMSG_PUT */ | |
492 | if (skb) | |
493 | kfree_skb(skb); | |
494 | return NULL; | |
495 | } | |
496 | ||
b0dd25a8 RD |
497 | /** |
498 | * audit_send_reply - send an audit reply message via netlink | |
499 | * @pid: process id to send reply to | |
500 | * @seq: sequence number | |
501 | * @type: audit message type | |
502 | * @done: done (last) flag | |
503 | * @multi: multi-part message flag | |
504 | * @payload: payload data | |
505 | * @size: payload size | |
506 | * | |
507 | * Allocates an skb, builds the netlink message, and sends it to the pid. | |
508 | * No failure notifications. | |
509 | */ | |
1da177e4 LT |
510 | void audit_send_reply(int pid, int seq, int type, int done, int multi, |
511 | void *payload, int size) | |
512 | { | |
513 | struct sk_buff *skb; | |
9044e6bc | 514 | skb = audit_make_reply(pid, seq, type, done, multi, payload, size); |
1da177e4 | 515 | if (!skb) |
b7d11258 | 516 | return; |
b7d11258 DW |
517 | /* Ignore failure. It'll only happen if the sender goes away, |
518 | because our timeout is set to infinite. */ | |
519 | netlink_unicast(audit_sock, skb, pid, 0); | |
1da177e4 | 520 | return; |
1da177e4 LT |
521 | } |
522 | ||
523 | /* | |
524 | * Check for appropriate CAP_AUDIT_ capabilities on incoming audit | |
525 | * control messages. | |
526 | */ | |
c7bdb545 | 527 | static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type) |
1da177e4 LT |
528 | { |
529 | int err = 0; | |
530 | ||
531 | switch (msg_type) { | |
532 | case AUDIT_GET: | |
533 | case AUDIT_LIST: | |
93315ed6 | 534 | case AUDIT_LIST_RULES: |
1da177e4 LT |
535 | case AUDIT_SET: |
536 | case AUDIT_ADD: | |
93315ed6 | 537 | case AUDIT_ADD_RULE: |
1da177e4 | 538 | case AUDIT_DEL: |
93315ed6 | 539 | case AUDIT_DEL_RULE: |
c2f0c7c3 | 540 | case AUDIT_SIGNAL_INFO: |
522ed776 MT |
541 | case AUDIT_TTY_GET: |
542 | case AUDIT_TTY_SET: | |
c7bdb545 | 543 | if (security_netlink_recv(skb, CAP_AUDIT_CONTROL)) |
1da177e4 LT |
544 | err = -EPERM; |
545 | break; | |
05474106 | 546 | case AUDIT_USER: |
039b6b3e RD |
547 | case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG: |
548 | case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2: | |
c7bdb545 | 549 | if (security_netlink_recv(skb, CAP_AUDIT_WRITE)) |
1da177e4 LT |
550 | err = -EPERM; |
551 | break; | |
552 | default: /* bad msg */ | |
553 | err = -EINVAL; | |
554 | } | |
555 | ||
556 | return err; | |
557 | } | |
558 | ||
559 | static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh) | |
560 | { | |
e7c34970 | 561 | u32 uid, pid, seq, sid; |
1da177e4 LT |
562 | void *data; |
563 | struct audit_status *status_get, status_set; | |
564 | int err; | |
c0404993 | 565 | struct audit_buffer *ab; |
1da177e4 | 566 | u16 msg_type = nlh->nlmsg_type; |
c94c257c | 567 | uid_t loginuid; /* loginuid of sender */ |
e1396065 AV |
568 | struct audit_sig_info *sig_data; |
569 | char *ctx; | |
570 | u32 len; | |
1da177e4 | 571 | |
c7bdb545 | 572 | err = audit_netlink_ok(skb, msg_type); |
1da177e4 LT |
573 | if (err) |
574 | return err; | |
575 | ||
b0dd25a8 RD |
576 | /* As soon as there's any sign of userspace auditd, |
577 | * start kauditd to talk to it */ | |
b7d11258 DW |
578 | if (!kauditd_task) |
579 | kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd"); | |
580 | if (IS_ERR(kauditd_task)) { | |
581 | err = PTR_ERR(kauditd_task); | |
582 | kauditd_task = NULL; | |
583 | return err; | |
584 | } | |
585 | ||
1da177e4 LT |
586 | pid = NETLINK_CREDS(skb)->pid; |
587 | uid = NETLINK_CREDS(skb)->uid; | |
c94c257c | 588 | loginuid = NETLINK_CB(skb).loginuid; |
e7c34970 | 589 | sid = NETLINK_CB(skb).sid; |
1da177e4 LT |
590 | seq = nlh->nlmsg_seq; |
591 | data = NLMSG_DATA(nlh); | |
592 | ||
593 | switch (msg_type) { | |
594 | case AUDIT_GET: | |
595 | status_set.enabled = audit_enabled; | |
596 | status_set.failure = audit_failure; | |
597 | status_set.pid = audit_pid; | |
598 | status_set.rate_limit = audit_rate_limit; | |
599 | status_set.backlog_limit = audit_backlog_limit; | |
600 | status_set.lost = atomic_read(&audit_lost); | |
b7d11258 | 601 | status_set.backlog = skb_queue_len(&audit_skb_queue); |
1da177e4 LT |
602 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_GET, 0, 0, |
603 | &status_set, sizeof(status_set)); | |
604 | break; | |
605 | case AUDIT_SET: | |
606 | if (nlh->nlmsg_len < sizeof(struct audit_status)) | |
607 | return -EINVAL; | |
608 | status_get = (struct audit_status *)data; | |
609 | if (status_get->mask & AUDIT_STATUS_ENABLED) { | |
ce29b682 SG |
610 | err = audit_set_enabled(status_get->enabled, |
611 | loginuid, sid); | |
1da177e4 LT |
612 | if (err < 0) return err; |
613 | } | |
614 | if (status_get->mask & AUDIT_STATUS_FAILURE) { | |
ce29b682 SG |
615 | err = audit_set_failure(status_get->failure, |
616 | loginuid, sid); | |
1da177e4 LT |
617 | if (err < 0) return err; |
618 | } | |
619 | if (status_get->mask & AUDIT_STATUS_PID) { | |
620 | int old = audit_pid; | |
ce29b682 | 621 | if (sid) { |
1a70cd40 | 622 | if ((err = selinux_sid_to_string( |
ce29b682 | 623 | sid, &ctx, &len))) |
e1396065 | 624 | return err; |
ce29b682 SG |
625 | else |
626 | audit_log(NULL, GFP_KERNEL, | |
627 | AUDIT_CONFIG_CHANGE, | |
628 | "audit_pid=%d old=%d by auid=%u subj=%s", | |
629 | status_get->pid, old, | |
630 | loginuid, ctx); | |
631 | kfree(ctx); | |
632 | } else | |
633 | audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE, | |
634 | "audit_pid=%d old=%d by auid=%u", | |
635 | status_get->pid, old, loginuid); | |
1da177e4 | 636 | audit_pid = status_get->pid; |
1da177e4 LT |
637 | } |
638 | if (status_get->mask & AUDIT_STATUS_RATE_LIMIT) | |
5d136a01 | 639 | err = audit_set_rate_limit(status_get->rate_limit, |
ce29b682 | 640 | loginuid, sid); |
1da177e4 | 641 | if (status_get->mask & AUDIT_STATUS_BACKLOG_LIMIT) |
5d136a01 | 642 | err = audit_set_backlog_limit(status_get->backlog_limit, |
ce29b682 | 643 | loginuid, sid); |
1da177e4 | 644 | break; |
05474106 | 645 | case AUDIT_USER: |
039b6b3e RD |
646 | case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG: |
647 | case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2: | |
4a4cd633 DW |
648 | if (!audit_enabled && msg_type != AUDIT_USER_AVC) |
649 | return 0; | |
650 | ||
5bb289b5 | 651 | err = audit_filter_user(&NETLINK_CB(skb), msg_type); |
4a4cd633 DW |
652 | if (err == 1) { |
653 | err = 0; | |
522ed776 MT |
654 | if (msg_type == AUDIT_USER_TTY) { |
655 | err = audit_prepare_user_tty(pid, loginuid); | |
656 | if (err) | |
657 | break; | |
658 | } | |
9ad9ad38 | 659 | ab = audit_log_start(NULL, GFP_KERNEL, msg_type); |
4a4cd633 DW |
660 | if (ab) { |
661 | audit_log_format(ab, | |
e7c34970 SG |
662 | "user pid=%d uid=%u auid=%u", |
663 | pid, uid, loginuid); | |
664 | if (sid) { | |
1a70cd40 | 665 | if (selinux_sid_to_string( |
e7c34970 SG |
666 | sid, &ctx, &len)) { |
667 | audit_log_format(ab, | |
ce29b682 | 668 | " ssid=%u", sid); |
e7c34970 SG |
669 | /* Maybe call audit_panic? */ |
670 | } else | |
671 | audit_log_format(ab, | |
672 | " subj=%s", ctx); | |
673 | kfree(ctx); | |
674 | } | |
522ed776 MT |
675 | if (msg_type != AUDIT_USER_TTY) |
676 | audit_log_format(ab, " msg='%.1024s'", | |
677 | (char *)data); | |
678 | else { | |
679 | int size; | |
680 | ||
681 | audit_log_format(ab, " msg="); | |
682 | size = nlmsg_len(nlh); | |
683 | audit_log_n_untrustedstring(ab, size, | |
684 | data); | |
685 | } | |
4a4cd633 DW |
686 | audit_set_pid(ab, pid); |
687 | audit_log_end(ab); | |
688 | } | |
0f45aa18 | 689 | } |
1da177e4 LT |
690 | break; |
691 | case AUDIT_ADD: | |
692 | case AUDIT_DEL: | |
93315ed6 | 693 | if (nlmsg_len(nlh) < sizeof(struct audit_rule)) |
1da177e4 | 694 | return -EINVAL; |
6a01b07f SG |
695 | if (audit_enabled == 2) { |
696 | ab = audit_log_start(NULL, GFP_KERNEL, | |
697 | AUDIT_CONFIG_CHANGE); | |
698 | if (ab) { | |
699 | audit_log_format(ab, | |
700 | "pid=%d uid=%u auid=%u", | |
701 | pid, uid, loginuid); | |
702 | if (sid) { | |
703 | if (selinux_sid_to_string( | |
704 | sid, &ctx, &len)) { | |
705 | audit_log_format(ab, | |
706 | " ssid=%u", sid); | |
707 | /* Maybe call audit_panic? */ | |
708 | } else | |
709 | audit_log_format(ab, | |
710 | " subj=%s", ctx); | |
711 | kfree(ctx); | |
712 | } | |
713 | audit_log_format(ab, " audit_enabled=%d res=0", | |
714 | audit_enabled); | |
715 | audit_log_end(ab); | |
716 | } | |
717 | return -EPERM; | |
718 | } | |
1da177e4 LT |
719 | /* fallthrough */ |
720 | case AUDIT_LIST: | |
1da177e4 | 721 | err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid, |
93315ed6 | 722 | uid, seq, data, nlmsg_len(nlh), |
ce29b682 | 723 | loginuid, sid); |
93315ed6 AG |
724 | break; |
725 | case AUDIT_ADD_RULE: | |
726 | case AUDIT_DEL_RULE: | |
727 | if (nlmsg_len(nlh) < sizeof(struct audit_rule_data)) | |
728 | return -EINVAL; | |
6a01b07f SG |
729 | if (audit_enabled == 2) { |
730 | ab = audit_log_start(NULL, GFP_KERNEL, | |
731 | AUDIT_CONFIG_CHANGE); | |
732 | if (ab) { | |
733 | audit_log_format(ab, | |
734 | "pid=%d uid=%u auid=%u", | |
735 | pid, uid, loginuid); | |
736 | if (sid) { | |
737 | if (selinux_sid_to_string( | |
738 | sid, &ctx, &len)) { | |
739 | audit_log_format(ab, | |
740 | " ssid=%u", sid); | |
741 | /* Maybe call audit_panic? */ | |
742 | } else | |
743 | audit_log_format(ab, | |
744 | " subj=%s", ctx); | |
745 | kfree(ctx); | |
746 | } | |
747 | audit_log_format(ab, " audit_enabled=%d res=0", | |
748 | audit_enabled); | |
749 | audit_log_end(ab); | |
750 | } | |
751 | return -EPERM; | |
752 | } | |
93315ed6 AG |
753 | /* fallthrough */ |
754 | case AUDIT_LIST_RULES: | |
755 | err = audit_receive_filter(nlh->nlmsg_type, NETLINK_CB(skb).pid, | |
756 | uid, seq, data, nlmsg_len(nlh), | |
ce29b682 | 757 | loginuid, sid); |
1da177e4 | 758 | break; |
c2f0c7c3 | 759 | case AUDIT_SIGNAL_INFO: |
1a70cd40 | 760 | err = selinux_sid_to_string(audit_sig_sid, &ctx, &len); |
e1396065 AV |
761 | if (err) |
762 | return err; | |
763 | sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL); | |
764 | if (!sig_data) { | |
765 | kfree(ctx); | |
766 | return -ENOMEM; | |
767 | } | |
768 | sig_data->uid = audit_sig_uid; | |
769 | sig_data->pid = audit_sig_pid; | |
770 | memcpy(sig_data->ctx, ctx, len); | |
771 | kfree(ctx); | |
c2f0c7c3 | 772 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_SIGNAL_INFO, |
e1396065 AV |
773 | 0, 0, sig_data, sizeof(*sig_data) + len); |
774 | kfree(sig_data); | |
c2f0c7c3 | 775 | break; |
522ed776 MT |
776 | case AUDIT_TTY_GET: { |
777 | struct audit_tty_status s; | |
778 | struct task_struct *tsk; | |
779 | ||
780 | read_lock(&tasklist_lock); | |
781 | tsk = find_task_by_pid(pid); | |
782 | if (!tsk) | |
783 | err = -ESRCH; | |
784 | else { | |
785 | spin_lock_irq(&tsk->sighand->siglock); | |
786 | s.enabled = tsk->signal->audit_tty != 0; | |
787 | spin_unlock_irq(&tsk->sighand->siglock); | |
788 | } | |
789 | read_unlock(&tasklist_lock); | |
790 | audit_send_reply(NETLINK_CB(skb).pid, seq, AUDIT_TTY_GET, 0, 0, | |
791 | &s, sizeof(s)); | |
792 | break; | |
793 | } | |
794 | case AUDIT_TTY_SET: { | |
795 | struct audit_tty_status *s; | |
796 | struct task_struct *tsk; | |
797 | ||
798 | if (nlh->nlmsg_len < sizeof(struct audit_tty_status)) | |
799 | return -EINVAL; | |
800 | s = data; | |
801 | if (s->enabled != 0 && s->enabled != 1) | |
802 | return -EINVAL; | |
803 | read_lock(&tasklist_lock); | |
804 | tsk = find_task_by_pid(pid); | |
805 | if (!tsk) | |
806 | err = -ESRCH; | |
807 | else { | |
808 | spin_lock_irq(&tsk->sighand->siglock); | |
809 | tsk->signal->audit_tty = s->enabled != 0; | |
810 | spin_unlock_irq(&tsk->sighand->siglock); | |
811 | } | |
812 | read_unlock(&tasklist_lock); | |
813 | break; | |
814 | } | |
1da177e4 LT |
815 | default: |
816 | err = -EINVAL; | |
817 | break; | |
818 | } | |
819 | ||
820 | return err < 0 ? err : 0; | |
821 | } | |
822 | ||
b0dd25a8 RD |
823 | /* |
824 | * Get message from skb (based on rtnetlink_rcv_skb). Each message is | |
1da177e4 | 825 | * processed by audit_receive_msg. Malformed skbs with wrong length are |
b0dd25a8 RD |
826 | * discarded silently. |
827 | */ | |
2a0a6ebe | 828 | static void audit_receive_skb(struct sk_buff *skb) |
1da177e4 LT |
829 | { |
830 | int err; | |
831 | struct nlmsghdr *nlh; | |
832 | u32 rlen; | |
833 | ||
834 | while (skb->len >= NLMSG_SPACE(0)) { | |
b529ccf2 | 835 | nlh = nlmsg_hdr(skb); |
1da177e4 | 836 | if (nlh->nlmsg_len < sizeof(*nlh) || skb->len < nlh->nlmsg_len) |
2a0a6ebe | 837 | return; |
1da177e4 LT |
838 | rlen = NLMSG_ALIGN(nlh->nlmsg_len); |
839 | if (rlen > skb->len) | |
840 | rlen = skb->len; | |
841 | if ((err = audit_receive_msg(skb, nlh))) { | |
842 | netlink_ack(skb, nlh, err); | |
843 | } else if (nlh->nlmsg_flags & NLM_F_ACK) | |
844 | netlink_ack(skb, nlh, 0); | |
845 | skb_pull(skb, rlen); | |
846 | } | |
1da177e4 LT |
847 | } |
848 | ||
849 | /* Receive messages from netlink socket. */ | |
cd40b7d3 | 850 | static void audit_receive(struct sk_buff *skb) |
1da177e4 | 851 | { |
f368c07d | 852 | mutex_lock(&audit_cmd_mutex); |
cd40b7d3 | 853 | audit_receive_skb(skb); |
f368c07d | 854 | mutex_unlock(&audit_cmd_mutex); |
1da177e4 LT |
855 | } |
856 | ||
f368c07d AG |
857 | #ifdef CONFIG_AUDITSYSCALL |
858 | static const struct inotify_operations audit_inotify_ops = { | |
859 | .handle_event = audit_handle_ievent, | |
860 | .destroy_watch = audit_free_parent, | |
861 | }; | |
862 | #endif | |
1da177e4 LT |
863 | |
864 | /* Initialize audit support at boot time. */ | |
865 | static int __init audit_init(void) | |
866 | { | |
f368c07d | 867 | int i; |
f368c07d | 868 | |
1da177e4 LT |
869 | printk(KERN_INFO "audit: initializing netlink socket (%s)\n", |
870 | audit_default ? "enabled" : "disabled"); | |
b4b51029 EB |
871 | audit_sock = netlink_kernel_create(&init_net, NETLINK_AUDIT, 0, |
872 | audit_receive, NULL, THIS_MODULE); | |
1da177e4 LT |
873 | if (!audit_sock) |
874 | audit_panic("cannot initialize netlink socket"); | |
71e1c784 AG |
875 | else |
876 | audit_sock->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT; | |
1da177e4 | 877 | |
b7d11258 | 878 | skb_queue_head_init(&audit_skb_queue); |
1da177e4 LT |
879 | audit_initialized = 1; |
880 | audit_enabled = audit_default; | |
3dc7e315 DG |
881 | |
882 | /* Register the callback with selinux. This callback will be invoked | |
883 | * when a new policy is loaded. */ | |
884 | selinux_audit_set_callback(&selinux_audit_rule_update); | |
885 | ||
9ad9ad38 | 886 | audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized"); |
f368c07d AG |
887 | |
888 | #ifdef CONFIG_AUDITSYSCALL | |
889 | audit_ih = inotify_init(&audit_inotify_ops); | |
890 | if (IS_ERR(audit_ih)) | |
891 | audit_panic("cannot initialize inotify handle"); | |
6988434e | 892 | #endif |
f368c07d AG |
893 | |
894 | for (i = 0; i < AUDIT_INODE_BUCKETS; i++) | |
895 | INIT_LIST_HEAD(&audit_inode_hash[i]); | |
f368c07d | 896 | |
1da177e4 LT |
897 | return 0; |
898 | } | |
1da177e4 LT |
899 | __initcall(audit_init); |
900 | ||
901 | /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */ | |
902 | static int __init audit_enable(char *str) | |
903 | { | |
904 | audit_default = !!simple_strtol(str, NULL, 0); | |
905 | printk(KERN_INFO "audit: %s%s\n", | |
906 | audit_default ? "enabled" : "disabled", | |
907 | audit_initialized ? "" : " (after initialization)"); | |
908 | if (audit_initialized) | |
909 | audit_enabled = audit_default; | |
9b41046c | 910 | return 1; |
1da177e4 LT |
911 | } |
912 | ||
913 | __setup("audit=", audit_enable); | |
914 | ||
16e1904e CW |
915 | static void audit_buffer_free(struct audit_buffer *ab) |
916 | { | |
917 | unsigned long flags; | |
918 | ||
8fc6115c CW |
919 | if (!ab) |
920 | return; | |
921 | ||
5ac52f33 CW |
922 | if (ab->skb) |
923 | kfree_skb(ab->skb); | |
b7d11258 | 924 | |
16e1904e | 925 | spin_lock_irqsave(&audit_freelist_lock, flags); |
5d136a01 | 926 | if (audit_freelist_count > AUDIT_MAXFREE) |
16e1904e | 927 | kfree(ab); |
5d136a01 SH |
928 | else { |
929 | audit_freelist_count++; | |
16e1904e | 930 | list_add(&ab->list, &audit_freelist); |
5d136a01 | 931 | } |
16e1904e CW |
932 | spin_unlock_irqrestore(&audit_freelist_lock, flags); |
933 | } | |
934 | ||
c0404993 | 935 | static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx, |
dd0fc66f | 936 | gfp_t gfp_mask, int type) |
16e1904e CW |
937 | { |
938 | unsigned long flags; | |
939 | struct audit_buffer *ab = NULL; | |
c0404993 | 940 | struct nlmsghdr *nlh; |
16e1904e CW |
941 | |
942 | spin_lock_irqsave(&audit_freelist_lock, flags); | |
943 | if (!list_empty(&audit_freelist)) { | |
944 | ab = list_entry(audit_freelist.next, | |
945 | struct audit_buffer, list); | |
946 | list_del(&ab->list); | |
947 | --audit_freelist_count; | |
948 | } | |
949 | spin_unlock_irqrestore(&audit_freelist_lock, flags); | |
950 | ||
951 | if (!ab) { | |
4332bdd3 | 952 | ab = kmalloc(sizeof(*ab), gfp_mask); |
16e1904e | 953 | if (!ab) |
8fc6115c | 954 | goto err; |
16e1904e | 955 | } |
8fc6115c | 956 | |
4332bdd3 | 957 | ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask); |
5ac52f33 | 958 | if (!ab->skb) |
8fc6115c CW |
959 | goto err; |
960 | ||
b7d11258 | 961 | ab->ctx = ctx; |
9ad9ad38 | 962 | ab->gfp_mask = gfp_mask; |
c0404993 SG |
963 | nlh = (struct nlmsghdr *)skb_put(ab->skb, NLMSG_SPACE(0)); |
964 | nlh->nlmsg_type = type; | |
965 | nlh->nlmsg_flags = 0; | |
966 | nlh->nlmsg_pid = 0; | |
967 | nlh->nlmsg_seq = 0; | |
16e1904e | 968 | return ab; |
8fc6115c CW |
969 | err: |
970 | audit_buffer_free(ab); | |
971 | return NULL; | |
16e1904e | 972 | } |
1da177e4 | 973 | |
b0dd25a8 RD |
974 | /** |
975 | * audit_serial - compute a serial number for the audit record | |
976 | * | |
977 | * Compute a serial number for the audit record. Audit records are | |
bfb4496e DW |
978 | * written to user-space as soon as they are generated, so a complete |
979 | * audit record may be written in several pieces. The timestamp of the | |
980 | * record and this serial number are used by the user-space tools to | |
981 | * determine which pieces belong to the same audit record. The | |
982 | * (timestamp,serial) tuple is unique for each syscall and is live from | |
983 | * syscall entry to syscall exit. | |
984 | * | |
bfb4496e DW |
985 | * NOTE: Another possibility is to store the formatted records off the |
986 | * audit context (for those records that have a context), and emit them | |
987 | * all at syscall exit. However, this could delay the reporting of | |
988 | * significant errors until syscall exit (or never, if the system | |
b0dd25a8 RD |
989 | * halts). |
990 | */ | |
bfb4496e DW |
991 | unsigned int audit_serial(void) |
992 | { | |
34af946a | 993 | static DEFINE_SPINLOCK(serial_lock); |
d5b454f2 DW |
994 | static unsigned int serial = 0; |
995 | ||
996 | unsigned long flags; | |
997 | unsigned int ret; | |
bfb4496e | 998 | |
d5b454f2 | 999 | spin_lock_irqsave(&serial_lock, flags); |
bfb4496e | 1000 | do { |
ce625a80 DW |
1001 | ret = ++serial; |
1002 | } while (unlikely(!ret)); | |
d5b454f2 | 1003 | spin_unlock_irqrestore(&serial_lock, flags); |
bfb4496e | 1004 | |
d5b454f2 | 1005 | return ret; |
bfb4496e DW |
1006 | } |
1007 | ||
1008 | static inline void audit_get_stamp(struct audit_context *ctx, | |
1009 | struct timespec *t, unsigned int *serial) | |
1010 | { | |
1011 | if (ctx) | |
1012 | auditsc_get_stamp(ctx, t, serial); | |
1013 | else { | |
1014 | *t = CURRENT_TIME; | |
1015 | *serial = audit_serial(); | |
1016 | } | |
1017 | } | |
1018 | ||
1da177e4 LT |
1019 | /* Obtain an audit buffer. This routine does locking to obtain the |
1020 | * audit buffer, but then no locking is required for calls to | |
1021 | * audit_log_*format. If the tsk is a task that is currently in a | |
1022 | * syscall, then the syscall is marked as auditable and an audit record | |
1023 | * will be written at syscall exit. If there is no associated task, tsk | |
1024 | * should be NULL. */ | |
9ad9ad38 | 1025 | |
b0dd25a8 RD |
1026 | /** |
1027 | * audit_log_start - obtain an audit buffer | |
1028 | * @ctx: audit_context (may be NULL) | |
1029 | * @gfp_mask: type of allocation | |
1030 | * @type: audit message type | |
1031 | * | |
1032 | * Returns audit_buffer pointer on success or NULL on error. | |
1033 | * | |
1034 | * Obtain an audit buffer. This routine does locking to obtain the | |
1035 | * audit buffer, but then no locking is required for calls to | |
1036 | * audit_log_*format. If the task (ctx) is a task that is currently in a | |
1037 | * syscall, then the syscall is marked as auditable and an audit record | |
1038 | * will be written at syscall exit. If there is no associated task, then | |
1039 | * task context (ctx) should be NULL. | |
1040 | */ | |
9796fdd8 | 1041 | struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask, |
9ad9ad38 | 1042 | int type) |
1da177e4 LT |
1043 | { |
1044 | struct audit_buffer *ab = NULL; | |
1da177e4 | 1045 | struct timespec t; |
d812ddbb | 1046 | unsigned int serial; |
9ad9ad38 | 1047 | int reserve; |
ac4cec44 | 1048 | unsigned long timeout_start = jiffies; |
1da177e4 LT |
1049 | |
1050 | if (!audit_initialized) | |
1051 | return NULL; | |
1052 | ||
c8edc80c DK |
1053 | if (unlikely(audit_filter_type(type))) |
1054 | return NULL; | |
1055 | ||
9ad9ad38 DW |
1056 | if (gfp_mask & __GFP_WAIT) |
1057 | reserve = 0; | |
1058 | else | |
1059 | reserve = 5; /* Allow atomic callers to go up to five | |
1060 | entries over the normal backlog limit */ | |
1061 | ||
1062 | while (audit_backlog_limit | |
1063 | && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) { | |
ac4cec44 DW |
1064 | if (gfp_mask & __GFP_WAIT && audit_backlog_wait_time |
1065 | && time_before(jiffies, timeout_start + audit_backlog_wait_time)) { | |
1066 | ||
9ad9ad38 DW |
1067 | /* Wait for auditd to drain the queue a little */ |
1068 | DECLARE_WAITQUEUE(wait, current); | |
1069 | set_current_state(TASK_INTERRUPTIBLE); | |
1070 | add_wait_queue(&audit_backlog_wait, &wait); | |
1071 | ||
1072 | if (audit_backlog_limit && | |
1073 | skb_queue_len(&audit_skb_queue) > audit_backlog_limit) | |
ac4cec44 | 1074 | schedule_timeout(timeout_start + audit_backlog_wait_time - jiffies); |
9ad9ad38 DW |
1075 | |
1076 | __set_current_state(TASK_RUNNING); | |
1077 | remove_wait_queue(&audit_backlog_wait, &wait); | |
ac4cec44 | 1078 | continue; |
9ad9ad38 | 1079 | } |
fb19b4c6 DW |
1080 | if (audit_rate_check()) |
1081 | printk(KERN_WARNING | |
1082 | "audit: audit_backlog=%d > " | |
1083 | "audit_backlog_limit=%d\n", | |
1084 | skb_queue_len(&audit_skb_queue), | |
1085 | audit_backlog_limit); | |
1086 | audit_log_lost("backlog limit exceeded"); | |
ac4cec44 DW |
1087 | audit_backlog_wait_time = audit_backlog_wait_overflow; |
1088 | wake_up(&audit_backlog_wait); | |
fb19b4c6 DW |
1089 | return NULL; |
1090 | } | |
1091 | ||
9ad9ad38 | 1092 | ab = audit_buffer_alloc(ctx, gfp_mask, type); |
1da177e4 LT |
1093 | if (!ab) { |
1094 | audit_log_lost("out of memory in audit_log_start"); | |
1095 | return NULL; | |
1096 | } | |
1097 | ||
bfb4496e | 1098 | audit_get_stamp(ab->ctx, &t, &serial); |
197c69c6 | 1099 | |
1da177e4 LT |
1100 | audit_log_format(ab, "audit(%lu.%03lu:%u): ", |
1101 | t.tv_sec, t.tv_nsec/1000000, serial); | |
1102 | return ab; | |
1103 | } | |
1104 | ||
8fc6115c | 1105 | /** |
5ac52f33 | 1106 | * audit_expand - expand skb in the audit buffer |
8fc6115c | 1107 | * @ab: audit_buffer |
b0dd25a8 | 1108 | * @extra: space to add at tail of the skb |
8fc6115c CW |
1109 | * |
1110 | * Returns 0 (no space) on failed expansion, or available space if | |
1111 | * successful. | |
1112 | */ | |
e3b926b4 | 1113 | static inline int audit_expand(struct audit_buffer *ab, int extra) |
8fc6115c | 1114 | { |
5ac52f33 | 1115 | struct sk_buff *skb = ab->skb; |
e3b926b4 | 1116 | int ret = pskb_expand_head(skb, skb_headroom(skb), extra, |
9ad9ad38 | 1117 | ab->gfp_mask); |
5ac52f33 CW |
1118 | if (ret < 0) { |
1119 | audit_log_lost("out of memory in audit_expand"); | |
8fc6115c | 1120 | return 0; |
5ac52f33 CW |
1121 | } |
1122 | return skb_tailroom(skb); | |
8fc6115c | 1123 | } |
1da177e4 | 1124 | |
b0dd25a8 RD |
1125 | /* |
1126 | * Format an audit message into the audit buffer. If there isn't enough | |
1da177e4 LT |
1127 | * room in the audit buffer, more room will be allocated and vsnprint |
1128 | * will be called a second time. Currently, we assume that a printk | |
b0dd25a8 RD |
1129 | * can't format message larger than 1024 bytes, so we don't either. |
1130 | */ | |
1da177e4 LT |
1131 | static void audit_log_vformat(struct audit_buffer *ab, const char *fmt, |
1132 | va_list args) | |
1133 | { | |
1134 | int len, avail; | |
5ac52f33 | 1135 | struct sk_buff *skb; |
eecb0a73 | 1136 | va_list args2; |
1da177e4 LT |
1137 | |
1138 | if (!ab) | |
1139 | return; | |
1140 | ||
5ac52f33 CW |
1141 | BUG_ON(!ab->skb); |
1142 | skb = ab->skb; | |
1143 | avail = skb_tailroom(skb); | |
1144 | if (avail == 0) { | |
e3b926b4 | 1145 | avail = audit_expand(ab, AUDIT_BUFSIZ); |
8fc6115c CW |
1146 | if (!avail) |
1147 | goto out; | |
1da177e4 | 1148 | } |
eecb0a73 | 1149 | va_copy(args2, args); |
27a884dc | 1150 | len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args); |
1da177e4 LT |
1151 | if (len >= avail) { |
1152 | /* The printk buffer is 1024 bytes long, so if we get | |
1153 | * here and AUDIT_BUFSIZ is at least 1024, then we can | |
1154 | * log everything that printk could have logged. */ | |
b0dd25a8 RD |
1155 | avail = audit_expand(ab, |
1156 | max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail)); | |
8fc6115c CW |
1157 | if (!avail) |
1158 | goto out; | |
27a884dc | 1159 | len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2); |
1da177e4 | 1160 | } |
168b7173 SG |
1161 | if (len > 0) |
1162 | skb_put(skb, len); | |
8fc6115c CW |
1163 | out: |
1164 | return; | |
1da177e4 LT |
1165 | } |
1166 | ||
b0dd25a8 RD |
1167 | /** |
1168 | * audit_log_format - format a message into the audit buffer. | |
1169 | * @ab: audit_buffer | |
1170 | * @fmt: format string | |
1171 | * @...: optional parameters matching @fmt string | |
1172 | * | |
1173 | * All the work is done in audit_log_vformat. | |
1174 | */ | |
1da177e4 LT |
1175 | void audit_log_format(struct audit_buffer *ab, const char *fmt, ...) |
1176 | { | |
1177 | va_list args; | |
1178 | ||
1179 | if (!ab) | |
1180 | return; | |
1181 | va_start(args, fmt); | |
1182 | audit_log_vformat(ab, fmt, args); | |
1183 | va_end(args); | |
1184 | } | |
1185 | ||
b0dd25a8 RD |
1186 | /** |
1187 | * audit_log_hex - convert a buffer to hex and append it to the audit skb | |
1188 | * @ab: the audit_buffer | |
1189 | * @buf: buffer to convert to hex | |
1190 | * @len: length of @buf to be converted | |
1191 | * | |
1192 | * No return value; failure to expand is silently ignored. | |
1193 | * | |
1194 | * This function will take the passed buf and convert it into a string of | |
1195 | * ascii hex digits. The new string is placed onto the skb. | |
1196 | */ | |
1197 | void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, | |
168b7173 | 1198 | size_t len) |
83c7d091 | 1199 | { |
168b7173 SG |
1200 | int i, avail, new_len; |
1201 | unsigned char *ptr; | |
1202 | struct sk_buff *skb; | |
1203 | static const unsigned char *hex = "0123456789ABCDEF"; | |
1204 | ||
8ef2d304 AG |
1205 | if (!ab) |
1206 | return; | |
1207 | ||
168b7173 SG |
1208 | BUG_ON(!ab->skb); |
1209 | skb = ab->skb; | |
1210 | avail = skb_tailroom(skb); | |
1211 | new_len = len<<1; | |
1212 | if (new_len >= avail) { | |
1213 | /* Round the buffer request up to the next multiple */ | |
1214 | new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1); | |
1215 | avail = audit_expand(ab, new_len); | |
1216 | if (!avail) | |
1217 | return; | |
1218 | } | |
83c7d091 | 1219 | |
27a884dc | 1220 | ptr = skb_tail_pointer(skb); |
168b7173 SG |
1221 | for (i=0; i<len; i++) { |
1222 | *ptr++ = hex[(buf[i] & 0xF0)>>4]; /* Upper nibble */ | |
1223 | *ptr++ = hex[buf[i] & 0x0F]; /* Lower nibble */ | |
1224 | } | |
1225 | *ptr = 0; | |
1226 | skb_put(skb, len << 1); /* new string is twice the old string */ | |
83c7d091 DW |
1227 | } |
1228 | ||
9c937dcc AG |
1229 | /* |
1230 | * Format a string of no more than slen characters into the audit buffer, | |
1231 | * enclosed in quote marks. | |
1232 | */ | |
1233 | static void audit_log_n_string(struct audit_buffer *ab, size_t slen, | |
1234 | const char *string) | |
1235 | { | |
1236 | int avail, new_len; | |
1237 | unsigned char *ptr; | |
1238 | struct sk_buff *skb; | |
1239 | ||
8ef2d304 AG |
1240 | if (!ab) |
1241 | return; | |
1242 | ||
9c937dcc AG |
1243 | BUG_ON(!ab->skb); |
1244 | skb = ab->skb; | |
1245 | avail = skb_tailroom(skb); | |
1246 | new_len = slen + 3; /* enclosing quotes + null terminator */ | |
1247 | if (new_len > avail) { | |
1248 | avail = audit_expand(ab, new_len); | |
1249 | if (!avail) | |
1250 | return; | |
1251 | } | |
27a884dc | 1252 | ptr = skb_tail_pointer(skb); |
9c937dcc AG |
1253 | *ptr++ = '"'; |
1254 | memcpy(ptr, string, slen); | |
1255 | ptr += slen; | |
1256 | *ptr++ = '"'; | |
1257 | *ptr = 0; | |
1258 | skb_put(skb, slen + 2); /* don't include null terminator */ | |
1259 | } | |
1260 | ||
b0dd25a8 | 1261 | /** |
522ed776 | 1262 | * audit_log_n_untrustedstring - log a string that may contain random characters |
b0dd25a8 | 1263 | * @ab: audit_buffer |
9c937dcc | 1264 | * @len: lenth of string (not including trailing null) |
b0dd25a8 RD |
1265 | * @string: string to be logged |
1266 | * | |
1267 | * This code will escape a string that is passed to it if the string | |
1268 | * contains a control character, unprintable character, double quote mark, | |
168b7173 | 1269 | * or a space. Unescaped strings will start and end with a double quote mark. |
b0dd25a8 | 1270 | * Strings that are escaped are printed in hex (2 digits per char). |
9c937dcc AG |
1271 | * |
1272 | * The caller specifies the number of characters in the string to log, which may | |
1273 | * or may not be the entire string. | |
b0dd25a8 | 1274 | */ |
9c937dcc AG |
1275 | const char *audit_log_n_untrustedstring(struct audit_buffer *ab, size_t len, |
1276 | const char *string) | |
83c7d091 | 1277 | { |
522ed776 | 1278 | const unsigned char *p; |
83c7d091 | 1279 | |
522ed776 | 1280 | for (p = string; p < (const unsigned char *)string + len && *p; p++) { |
168b7173 | 1281 | if (*p == '"' || *p < 0x21 || *p > 0x7f) { |
473ae30b AV |
1282 | audit_log_hex(ab, string, len); |
1283 | return string + len + 1; | |
83c7d091 | 1284 | } |
83c7d091 | 1285 | } |
9c937dcc | 1286 | audit_log_n_string(ab, len, string); |
473ae30b | 1287 | return p + 1; |
83c7d091 DW |
1288 | } |
1289 | ||
9c937dcc | 1290 | /** |
522ed776 | 1291 | * audit_log_untrustedstring - log a string that may contain random characters |
9c937dcc AG |
1292 | * @ab: audit_buffer |
1293 | * @string: string to be logged | |
1294 | * | |
522ed776 | 1295 | * Same as audit_log_n_untrustedstring(), except that strlen is used to |
9c937dcc AG |
1296 | * determine string length. |
1297 | */ | |
1298 | const char *audit_log_untrustedstring(struct audit_buffer *ab, const char *string) | |
1299 | { | |
1300 | return audit_log_n_untrustedstring(ab, strlen(string), string); | |
1301 | } | |
1302 | ||
168b7173 | 1303 | /* This is a helper-function to print the escaped d_path */ |
1da177e4 LT |
1304 | void audit_log_d_path(struct audit_buffer *ab, const char *prefix, |
1305 | struct dentry *dentry, struct vfsmount *vfsmnt) | |
1306 | { | |
168b7173 | 1307 | char *p, *path; |
1da177e4 | 1308 | |
8fc6115c CW |
1309 | if (prefix) |
1310 | audit_log_format(ab, " %s", prefix); | |
1da177e4 | 1311 | |
168b7173 | 1312 | /* We will allow 11 spaces for ' (deleted)' to be appended */ |
9ad9ad38 | 1313 | path = kmalloc(PATH_MAX+11, ab->gfp_mask); |
168b7173 SG |
1314 | if (!path) { |
1315 | audit_log_format(ab, "<no memory>"); | |
1316 | return; | |
1da177e4 | 1317 | } |
168b7173 SG |
1318 | p = d_path(dentry, vfsmnt, path, PATH_MAX+11); |
1319 | if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */ | |
1320 | /* FIXME: can we save some information here? */ | |
1321 | audit_log_format(ab, "<too long>"); | |
1322 | } else | |
1323 | audit_log_untrustedstring(ab, p); | |
1324 | kfree(path); | |
1da177e4 LT |
1325 | } |
1326 | ||
b0dd25a8 RD |
1327 | /** |
1328 | * audit_log_end - end one audit record | |
1329 | * @ab: the audit_buffer | |
1330 | * | |
1331 | * The netlink_* functions cannot be called inside an irq context, so | |
1332 | * the audit buffer is placed on a queue and a tasklet is scheduled to | |
1da177e4 | 1333 | * remove them from the queue outside the irq context. May be called in |
b0dd25a8 RD |
1334 | * any context. |
1335 | */ | |
b7d11258 | 1336 | void audit_log_end(struct audit_buffer *ab) |
1da177e4 | 1337 | { |
1da177e4 LT |
1338 | if (!ab) |
1339 | return; | |
1340 | if (!audit_rate_check()) { | |
1341 | audit_log_lost("rate limit exceeded"); | |
1342 | } else { | |
b7d11258 | 1343 | if (audit_pid) { |
b529ccf2 | 1344 | struct nlmsghdr *nlh = nlmsg_hdr(ab->skb); |
b7d11258 DW |
1345 | nlh->nlmsg_len = ab->skb->len - NLMSG_SPACE(0); |
1346 | skb_queue_tail(&audit_skb_queue, ab->skb); | |
1347 | ab->skb = NULL; | |
1348 | wake_up_interruptible(&kauditd_wait); | |
1349 | } else { | |
e1b09eba | 1350 | printk(KERN_NOTICE "%s\n", ab->skb->data + NLMSG_SPACE(0)); |
b7d11258 | 1351 | } |
1da177e4 | 1352 | } |
16e1904e | 1353 | audit_buffer_free(ab); |
1da177e4 LT |
1354 | } |
1355 | ||
b0dd25a8 RD |
1356 | /** |
1357 | * audit_log - Log an audit record | |
1358 | * @ctx: audit context | |
1359 | * @gfp_mask: type of allocation | |
1360 | * @type: audit message type | |
1361 | * @fmt: format string to use | |
1362 | * @...: variable parameters matching the format string | |
1363 | * | |
1364 | * This is a convenience function that calls audit_log_start, | |
1365 | * audit_log_vformat, and audit_log_end. It may be called | |
1366 | * in any context. | |
1367 | */ | |
9796fdd8 | 1368 | void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type, |
9ad9ad38 | 1369 | const char *fmt, ...) |
1da177e4 LT |
1370 | { |
1371 | struct audit_buffer *ab; | |
1372 | va_list args; | |
1373 | ||
9ad9ad38 | 1374 | ab = audit_log_start(ctx, gfp_mask, type); |
1da177e4 LT |
1375 | if (ab) { |
1376 | va_start(args, fmt); | |
1377 | audit_log_vformat(ab, fmt, args); | |
1378 | va_end(args); | |
1379 | audit_log_end(ab); | |
1380 | } | |
1381 | } | |
bf45da97 | 1382 | |
1383 | EXPORT_SYMBOL(audit_log_start); | |
1384 | EXPORT_SYMBOL(audit_log_end); | |
1385 | EXPORT_SYMBOL(audit_log_format); | |
1386 | EXPORT_SYMBOL(audit_log); |