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