aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/auditsc.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2005-12-15 13:33:52 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2006-03-20 14:08:54 -0500
commitfe7752bab26a9ac0651b695ad4f55659761f68f7 (patch)
treeb2e516a52232c978fc824b226418d8a28460b8a8 /kernel/auditsc.c
parentee436dc46a762f430e37952d375a23d87735f73f (diff)
[PATCH] Fix audit record filtering with !CONFIG_AUDITSYSCALL
This fixes the per-user and per-message-type filtering when syscall auditing isn't enabled. [AV: folded followup fix from the same author] Signed-off-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r--kernel/auditsc.c380
1 files changed, 4 insertions, 376 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index 4ef14515da35..17719b303638 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -52,17 +52,15 @@
52#include <linux/audit.h> 52#include <linux/audit.h>
53#include <linux/personality.h> 53#include <linux/personality.h>
54#include <linux/time.h> 54#include <linux/time.h>
55#include <linux/kthread.h>
56#include <linux/netlink.h> 55#include <linux/netlink.h>
57#include <linux/compiler.h> 56#include <linux/compiler.h>
58#include <asm/unistd.h> 57#include <asm/unistd.h>
59#include <linux/security.h> 58#include <linux/security.h>
59#include <linux/list.h>
60 60
61/* 0 = no checking 61#include "audit.h"
62 1 = put_count checking 62
63 2 = verbose put_count checking 63extern struct list_head audit_filter_list[];
64*/
65#define AUDIT_DEBUG 0
66 64
67/* No syscall auditing will take place unless audit_enabled != 0. */ 65/* No syscall auditing will take place unless audit_enabled != 0. */
68extern int audit_enabled; 66extern int audit_enabled;
@@ -76,29 +74,6 @@ extern int audit_enabled;
76 * path_lookup. */ 74 * path_lookup. */
77#define AUDIT_NAMES_RESERVED 7 75#define AUDIT_NAMES_RESERVED 7
78 76
79/* At task start time, the audit_state is set in the audit_context using
80 a per-task filter. At syscall entry, the audit_state is augmented by
81 the syscall filter. */
82enum audit_state {
83 AUDIT_DISABLED, /* Do not create per-task audit_context.
84 * No syscall-specific audit records can
85 * be generated. */
86 AUDIT_SETUP_CONTEXT, /* Create the per-task audit_context,
87 * but don't necessarily fill it in at
88 * syscall entry time (i.e., filter
89 * instead). */
90 AUDIT_BUILD_CONTEXT, /* Create the per-task audit_context,
91 * and always fill it in at syscall
92 * entry time. This makes a full
93 * syscall record available if some
94 * other part of the kernel decides it
95 * should be recorded. */
96 AUDIT_RECORD_CONTEXT /* Create the per-task audit_context,
97 * always fill it in at syscall entry
98 * time, and always write out the audit
99 * record at syscall exit time. */
100};
101
102/* When fs/namei.c:getname() is called, we store the pointer in name and 77/* When fs/namei.c:getname() is called, we store the pointer in name and
103 * we don't let putname() free it (instead we free all of the saved 78 * we don't let putname() free it (instead we free all of the saved
104 * pointers at syscall exit time). 79 * pointers at syscall exit time).
@@ -183,264 +158,6 @@ struct audit_context {
183#endif 158#endif
184}; 159};
185 160
186 /* Public API */
187/* There are three lists of rules -- one to search at task creation
188 * time, one to search at syscall entry time, and another to search at
189 * syscall exit time. */
190static struct list_head audit_filter_list[AUDIT_NR_FILTERS] = {
191 LIST_HEAD_INIT(audit_filter_list[0]),
192 LIST_HEAD_INIT(audit_filter_list[1]),
193 LIST_HEAD_INIT(audit_filter_list[2]),
194 LIST_HEAD_INIT(audit_filter_list[3]),
195 LIST_HEAD_INIT(audit_filter_list[4]),
196 LIST_HEAD_INIT(audit_filter_list[5]),
197#if AUDIT_NR_FILTERS != 6
198#error Fix audit_filter_list initialiser
199#endif
200};
201
202struct audit_entry {
203 struct list_head list;
204 struct rcu_head rcu;
205 struct audit_rule rule;
206};
207
208extern int audit_pid;
209
210/* Copy rule from user-space to kernel-space. Called from
211 * audit_add_rule during AUDIT_ADD. */
212static inline int audit_copy_rule(struct audit_rule *d, struct audit_rule *s)
213{
214 int i;
215
216 if (s->action != AUDIT_NEVER
217 && s->action != AUDIT_POSSIBLE
218 && s->action != AUDIT_ALWAYS)
219 return -1;
220 if (s->field_count < 0 || s->field_count > AUDIT_MAX_FIELDS)
221 return -1;
222 if ((s->flags & ~AUDIT_FILTER_PREPEND) >= AUDIT_NR_FILTERS)
223 return -1;
224
225 d->flags = s->flags;
226 d->action = s->action;
227 d->field_count = s->field_count;
228 for (i = 0; i < d->field_count; i++) {
229 d->fields[i] = s->fields[i];
230 d->values[i] = s->values[i];
231 }
232 for (i = 0; i < AUDIT_BITMASK_SIZE; i++) d->mask[i] = s->mask[i];
233 return 0;
234}
235
236/* Check to see if two rules are identical. It is called from
237 * audit_add_rule during AUDIT_ADD and
238 * audit_del_rule during AUDIT_DEL. */
239static inline int audit_compare_rule(struct audit_rule *a, struct audit_rule *b)
240{
241 int i;
242
243 if (a->flags != b->flags)
244 return 1;
245
246 if (a->action != b->action)
247 return 1;
248
249 if (a->field_count != b->field_count)
250 return 1;
251
252 for (i = 0; i < a->field_count; i++) {
253 if (a->fields[i] != b->fields[i]
254 || a->values[i] != b->values[i])
255 return 1;
256 }
257
258 for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
259 if (a->mask[i] != b->mask[i])
260 return 1;
261
262 return 0;
263}
264
265/* Note that audit_add_rule and audit_del_rule are called via
266 * audit_receive() in audit.c, and are protected by
267 * audit_netlink_sem. */
268static inline int audit_add_rule(struct audit_rule *rule,
269 struct list_head *list)
270{
271 struct audit_entry *entry;
272 int i;
273
274 /* Do not use the _rcu iterator here, since this is the only
275 * addition routine. */
276 list_for_each_entry(entry, list, list) {
277 if (!audit_compare_rule(rule, &entry->rule)) {
278 return -EEXIST;
279 }
280 }
281
282 for (i = 0; i < rule->field_count; i++) {
283 if (rule->fields[i] & AUDIT_UNUSED_BITS)
284 return -EINVAL;
285 if ( rule->fields[i] & AUDIT_NEGATE )
286 rule->fields[i] |= AUDIT_NOT_EQUAL;
287 else if ( (rule->fields[i] & AUDIT_OPERATORS) == 0 )
288 rule->fields[i] |= AUDIT_EQUAL;
289 rule->fields[i] &= (~AUDIT_NEGATE);
290 }
291
292 if (!(entry = kmalloc(sizeof(*entry), GFP_KERNEL)))
293 return -ENOMEM;
294 if (audit_copy_rule(&entry->rule, rule)) {
295 kfree(entry);
296 return -EINVAL;
297 }
298
299 if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
300 entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
301 list_add_rcu(&entry->list, list);
302 } else {
303 list_add_tail_rcu(&entry->list, list);
304 }
305
306 return 0;
307}
308
309static inline void audit_free_rule(struct rcu_head *head)
310{
311 struct audit_entry *e = container_of(head, struct audit_entry, rcu);
312 kfree(e);
313}
314
315/* Note that audit_add_rule and audit_del_rule are called via
316 * audit_receive() in audit.c, and are protected by
317 * audit_netlink_sem. */
318static inline int audit_del_rule(struct audit_rule *rule,
319 struct list_head *list)
320{
321 struct audit_entry *e;
322
323 /* Do not use the _rcu iterator here, since this is the only
324 * deletion routine. */
325 list_for_each_entry(e, list, list) {
326 if (!audit_compare_rule(rule, &e->rule)) {
327 list_del_rcu(&e->list);
328 call_rcu(&e->rcu, audit_free_rule);
329 return 0;
330 }
331 }
332 return -ENOENT; /* No matching rule */
333}
334
335static int audit_list_rules(void *_dest)
336{
337 int pid, seq;
338 int *dest = _dest;
339 struct audit_entry *entry;
340 int i;
341
342 pid = dest[0];
343 seq = dest[1];
344 kfree(dest);
345
346 down(&audit_netlink_sem);
347
348 /* The *_rcu iterators not needed here because we are
349 always called with audit_netlink_sem held. */
350 for (i=0; i<AUDIT_NR_FILTERS; i++) {
351 list_for_each_entry(entry, &audit_filter_list[i], list)
352 audit_send_reply(pid, seq, AUDIT_LIST, 0, 1,
353 &entry->rule, sizeof(entry->rule));
354 }
355 audit_send_reply(pid, seq, AUDIT_LIST, 1, 1, NULL, 0);
356
357 up(&audit_netlink_sem);
358 return 0;
359}
360
361/**
362 * audit_receive_filter - apply all rules to the specified message type
363 * @type: audit message type
364 * @pid: target pid for netlink audit messages
365 * @uid: target uid for netlink audit messages
366 * @seq: netlink audit message sequence (serial) number
367 * @data: payload data
368 * @loginuid: loginuid of sender
369 */
370int audit_receive_filter(int type, int pid, int uid, int seq, void *data,
371 uid_t loginuid)
372{
373 struct task_struct *tsk;
374 int *dest;
375 int err = 0;
376 unsigned listnr;
377
378 switch (type) {
379 case AUDIT_LIST:
380 /* We can't just spew out the rules here because we might fill
381 * the available socket buffer space and deadlock waiting for
382 * auditctl to read from it... which isn't ever going to
383 * happen if we're actually running in the context of auditctl
384 * trying to _send_ the stuff */
385
386 dest = kmalloc(2 * sizeof(int), GFP_KERNEL);
387 if (!dest)
388 return -ENOMEM;
389 dest[0] = pid;
390 dest[1] = seq;
391
392 tsk = kthread_run(audit_list_rules, dest, "audit_list_rules");
393 if (IS_ERR(tsk)) {
394 kfree(dest);
395 err = PTR_ERR(tsk);
396 }
397 break;
398 case AUDIT_ADD:
399 listnr =((struct audit_rule *)data)->flags & ~AUDIT_FILTER_PREPEND;
400 if (listnr >= AUDIT_NR_FILTERS)
401 return -EINVAL;
402
403 err = audit_add_rule(data, &audit_filter_list[listnr]);
404 if (!err)
405 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
406 "auid=%u added an audit rule\n", loginuid);
407 break;
408 case AUDIT_DEL:
409 listnr =((struct audit_rule *)data)->flags & ~AUDIT_FILTER_PREPEND;
410 if (listnr >= AUDIT_NR_FILTERS)
411 return -EINVAL;
412
413 err = audit_del_rule(data, &audit_filter_list[listnr]);
414 if (!err)
415 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
416 "auid=%u removed an audit rule\n", loginuid);
417 break;
418 default:
419 return -EINVAL;
420 }
421
422 return err;
423}
424
425static int audit_comparator(const u32 left, const u32 op, const u32 right)
426{
427 switch (op) {
428 case AUDIT_EQUAL:
429 return (left == right);
430 case AUDIT_NOT_EQUAL:
431 return (left != right);
432 case AUDIT_LESS_THAN:
433 return (left < right);
434 case AUDIT_LESS_THAN_OR_EQUAL:
435 return (left <= right);
436 case AUDIT_GREATER_THAN:
437 return (left > right);
438 case AUDIT_GREATER_THAN_OR_EQUAL:
439 return (left >= right);
440 default:
441 return -EINVAL;
442 }
443}
444 161
445/* Compare a task_struct with an audit_rule. Return 1 on match, 0 162/* Compare a task_struct with an audit_rule. Return 1 on match, 0
446 * otherwise. */ 163 * otherwise. */
@@ -613,95 +330,6 @@ static enum audit_state audit_filter_syscall(struct task_struct *tsk,
613 return AUDIT_BUILD_CONTEXT; 330 return AUDIT_BUILD_CONTEXT;
614} 331}
615 332
616static int audit_filter_user_rules(struct netlink_skb_parms *cb,
617 struct audit_rule *rule,
618 enum audit_state *state)
619{
620 int i;
621
622 for (i = 0; i < rule->field_count; i++) {
623 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
624 u32 op = rule->fields[i] & AUDIT_OPERATORS;
625 u32 value = rule->values[i];
626 int result = 0;
627
628 switch (field) {
629 case AUDIT_PID:
630 result = audit_comparator(cb->creds.pid, op, value);
631 break;
632 case AUDIT_UID:
633 result = audit_comparator(cb->creds.uid, op, value);
634 break;
635 case AUDIT_GID:
636 result = audit_comparator(cb->creds.gid, op, value);
637 break;
638 case AUDIT_LOGINUID:
639 result = audit_comparator(cb->loginuid, op, value);
640 break;
641 }
642
643 if (!result)
644 return 0;
645 }
646 switch (rule->action) {
647 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
648 case AUDIT_POSSIBLE: *state = AUDIT_BUILD_CONTEXT; break;
649 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
650 }
651 return 1;
652}
653
654int audit_filter_user(struct netlink_skb_parms *cb, int type)
655{
656 struct audit_entry *e;
657 enum audit_state state;
658 int ret = 1;
659
660 rcu_read_lock();
661 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
662 if (audit_filter_user_rules(cb, &e->rule, &state)) {
663 if (state == AUDIT_DISABLED)
664 ret = 0;
665 break;
666 }
667 }
668 rcu_read_unlock();
669
670 return ret; /* Audit by default */
671}
672
673int audit_filter_type(int type)
674{
675 struct audit_entry *e;
676 int result = 0;
677
678 rcu_read_lock();
679 if (list_empty(&audit_filter_list[AUDIT_FILTER_TYPE]))
680 goto unlock_and_return;
681
682 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TYPE],
683 list) {
684 struct audit_rule *rule = &e->rule;
685 int i;
686 for (i = 0; i < rule->field_count; i++) {
687 u32 field = rule->fields[i] & ~AUDIT_OPERATORS;
688 u32 op = rule->fields[i] & AUDIT_OPERATORS;
689 u32 value = rule->values[i];
690 if ( field == AUDIT_MSGTYPE ) {
691 result = audit_comparator(type, op, value);
692 if (!result)
693 break;
694 }
695 }
696 if (result)
697 goto unlock_and_return;
698 }
699unlock_and_return:
700 rcu_read_unlock();
701 return result;
702}
703
704
705/* This should be called with task_lock() held. */ 333/* This should be called with task_lock() held. */
706static inline struct audit_context *audit_get_context(struct task_struct *tsk, 334static inline struct audit_context *audit_get_context(struct task_struct *tsk,
707 int return_valid, 335 int return_valid,