blob: 0d6a8fc21f17b59d27767d8686aabf04291c5d3e [file] [log] [blame]
David Woodhousefe7752b2005-12-15 18:33:52 +00001/* auditfilter.c -- filtering of audit events
2 *
3 * Copyright 2003-2004 Red Hat, Inc.
4 * Copyright 2005 Hewlett-Packard Development Company, L.P.
5 * Copyright 2005 IBM Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/kernel.h>
23#include <linux/audit.h>
24#include <linux/kthread.h>
Amy Griffisf368c07d2006-04-07 16:55:56 -040025#include <linux/mutex.h>
26#include <linux/fs.h>
27#include <linux/namei.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000028#include <linux/netlink.h>
Amy Griffisf368c07d2006-04-07 16:55:56 -040029#include <linux/sched.h>
30#include <linux/inotify.h>
Darrel Goeddel3dc7e312006-03-10 18:14:06 -060031#include <linux/selinux.h>
David Woodhousefe7752b2005-12-15 18:33:52 +000032#include "audit.h"
33
Amy Griffisf368c07d2006-04-07 16:55:56 -040034/*
35 * Locking model:
36 *
37 * audit_filter_mutex:
38 * Synchronizes writes and blocking reads of audit's filterlist
39 * data. Rcu is used to traverse the filterlist and access
40 * contents of structs audit_entry, audit_watch and opaque
41 * selinux rules during filtering. If modified, these structures
42 * must be copied and replace their counterparts in the filterlist.
43 * An audit_parent struct is not accessed during filtering, so may
44 * be written directly provided audit_filter_mutex is held.
45 */
46
47/*
48 * Reference counting:
49 *
50 * audit_parent: lifetime is from audit_init_parent() to receipt of an IN_IGNORED
51 * event. Each audit_watch holds a reference to its associated parent.
52 *
53 * audit_watch: if added to lists, lifetime is from audit_init_watch() to
54 * audit_remove_watch(). Additionally, an audit_watch may exist
55 * temporarily to assist in searching existing filter data. Each
56 * audit_krule holds a reference to its associated watch.
57 */
58
59struct audit_parent {
60 struct list_head ilist; /* entry in inotify registration list */
61 struct list_head watches; /* associated watches */
62 struct inotify_watch wdata; /* inotify watch data */
63 unsigned flags; /* status flags */
64};
65
66/*
67 * audit_parent status flags:
68 *
69 * AUDIT_PARENT_INVALID - set anytime rules/watches are auto-removed due to
70 * a filesystem event to ensure we're adding audit watches to a valid parent.
71 * Technically not needed for IN_DELETE_SELF or IN_UNMOUNT events, as we cannot
72 * receive them while we have nameidata, but must be used for IN_MOVE_SELF which
73 * we can receive while holding nameidata.
74 */
75#define AUDIT_PARENT_INVALID 0x001
76
77/* Audit filter lists, defined in <linux/audit.h> */
David Woodhousefe7752b2005-12-15 18:33:52 +000078struct list_head audit_filter_list[AUDIT_NR_FILTERS] = {
79 LIST_HEAD_INIT(audit_filter_list[0]),
80 LIST_HEAD_INIT(audit_filter_list[1]),
81 LIST_HEAD_INIT(audit_filter_list[2]),
82 LIST_HEAD_INIT(audit_filter_list[3]),
83 LIST_HEAD_INIT(audit_filter_list[4]),
84 LIST_HEAD_INIT(audit_filter_list[5]),
85#if AUDIT_NR_FILTERS != 6
86#error Fix audit_filter_list initialiser
87#endif
88};
89
Amy Griffisf368c07d2006-04-07 16:55:56 -040090static DEFINE_MUTEX(audit_filter_mutex);
91
92/* Inotify handle */
93extern struct inotify_handle *audit_ih;
94
95/* Inotify events we care about. */
96#define AUDIT_IN_WATCH IN_MOVE|IN_CREATE|IN_DELETE|IN_DELETE_SELF|IN_MOVE_SELF
97
98void audit_free_parent(struct inotify_watch *i_watch)
99{
100 struct audit_parent *parent;
101
102 parent = container_of(i_watch, struct audit_parent, wdata);
103 WARN_ON(!list_empty(&parent->watches));
104 kfree(parent);
105}
106
107static inline void audit_get_watch(struct audit_watch *watch)
108{
109 atomic_inc(&watch->count);
110}
111
112static void audit_put_watch(struct audit_watch *watch)
113{
114 if (atomic_dec_and_test(&watch->count)) {
115 WARN_ON(watch->parent);
116 WARN_ON(!list_empty(&watch->rules));
117 kfree(watch->path);
118 kfree(watch);
119 }
120}
121
122static void audit_remove_watch(struct audit_watch *watch)
123{
124 list_del(&watch->wlist);
125 put_inotify_watch(&watch->parent->wdata);
126 watch->parent = NULL;
127 audit_put_watch(watch); /* match initial get */
128}
129
Amy Griffis93315ed2006-02-07 12:05:27 -0500130static inline void audit_free_rule(struct audit_entry *e)
David Woodhousefe7752b2005-12-15 18:33:52 +0000131{
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600132 int i;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400133
134 /* some rules don't have associated watches */
135 if (e->rule.watch)
136 audit_put_watch(e->rule.watch);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600137 if (e->rule.fields)
138 for (i = 0; i < e->rule.field_count; i++) {
139 struct audit_field *f = &e->rule.fields[i];
140 kfree(f->se_str);
141 selinux_audit_rule_free(f->se_rule);
142 }
Amy Griffis93315ed2006-02-07 12:05:27 -0500143 kfree(e->rule.fields);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400144 kfree(e->rule.filterkey);
Amy Griffis93315ed2006-02-07 12:05:27 -0500145 kfree(e);
David Woodhousefe7752b2005-12-15 18:33:52 +0000146}
147
Amy Griffis93315ed2006-02-07 12:05:27 -0500148static inline void audit_free_rule_rcu(struct rcu_head *head)
149{
150 struct audit_entry *e = container_of(head, struct audit_entry, rcu);
151 audit_free_rule(e);
152}
153
Amy Griffisf368c07d2006-04-07 16:55:56 -0400154/* Initialize a parent watch entry. */
155static struct audit_parent *audit_init_parent(struct nameidata *ndp)
156{
157 struct audit_parent *parent;
158 s32 wd;
159
160 parent = kzalloc(sizeof(*parent), GFP_KERNEL);
161 if (unlikely(!parent))
162 return ERR_PTR(-ENOMEM);
163
164 INIT_LIST_HEAD(&parent->watches);
165 parent->flags = 0;
166
167 inotify_init_watch(&parent->wdata);
168 /* grab a ref so inotify watch hangs around until we take audit_filter_mutex */
169 get_inotify_watch(&parent->wdata);
170 wd = inotify_add_watch(audit_ih, &parent->wdata, ndp->dentry->d_inode,
171 AUDIT_IN_WATCH);
172 if (wd < 0) {
173 audit_free_parent(&parent->wdata);
174 return ERR_PTR(wd);
175 }
176
177 return parent;
178}
179
180/* Initialize a watch entry. */
181static struct audit_watch *audit_init_watch(char *path)
182{
183 struct audit_watch *watch;
184
185 watch = kzalloc(sizeof(*watch), GFP_KERNEL);
186 if (unlikely(!watch))
187 return ERR_PTR(-ENOMEM);
188
189 INIT_LIST_HEAD(&watch->rules);
190 atomic_set(&watch->count, 1);
191 watch->path = path;
192 watch->dev = (dev_t)-1;
193 watch->ino = (unsigned long)-1;
194
195 return watch;
196}
197
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600198/* Initialize an audit filterlist entry. */
199static inline struct audit_entry *audit_init_entry(u32 field_count)
200{
201 struct audit_entry *entry;
202 struct audit_field *fields;
203
204 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
205 if (unlikely(!entry))
206 return NULL;
207
208 fields = kzalloc(sizeof(*fields) * field_count, GFP_KERNEL);
209 if (unlikely(!fields)) {
210 kfree(entry);
211 return NULL;
212 }
213 entry->rule.fields = fields;
214
215 return entry;
216}
217
Amy Griffis93315ed2006-02-07 12:05:27 -0500218/* Unpack a filter field's string representation from user-space
219 * buffer. */
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600220static char *audit_unpack_string(void **bufp, size_t *remain, size_t len)
Amy Griffis93315ed2006-02-07 12:05:27 -0500221{
222 char *str;
223
224 if (!*bufp || (len == 0) || (len > *remain))
225 return ERR_PTR(-EINVAL);
226
227 /* Of the currently implemented string fields, PATH_MAX
228 * defines the longest valid length.
229 */
230 if (len > PATH_MAX)
231 return ERR_PTR(-ENAMETOOLONG);
232
233 str = kmalloc(len + 1, GFP_KERNEL);
234 if (unlikely(!str))
235 return ERR_PTR(-ENOMEM);
236
237 memcpy(str, *bufp, len);
238 str[len] = 0;
239 *bufp += len;
240 *remain -= len;
241
242 return str;
243}
244
Amy Griffisf368c07d2006-04-07 16:55:56 -0400245/* Translate an inode field to kernel respresentation. */
246static inline int audit_to_inode(struct audit_krule *krule,
247 struct audit_field *f)
248{
249 if (krule->listnr != AUDIT_FILTER_EXIT ||
250 krule->watch || krule->inode_f)
251 return -EINVAL;
252
253 krule->inode_f = f;
254 return 0;
255}
256
257/* Translate a watch string to kernel respresentation. */
258static int audit_to_watch(struct audit_krule *krule, char *path, int len,
259 u32 op)
260{
261 struct audit_watch *watch;
262
263 if (!audit_ih)
264 return -EOPNOTSUPP;
265
266 if (path[0] != '/' || path[len-1] == '/' ||
267 krule->listnr != AUDIT_FILTER_EXIT ||
268 op & ~AUDIT_EQUAL ||
269 krule->inode_f || krule->watch) /* 1 inode # per rule, for hash */
270 return -EINVAL;
271
272 watch = audit_init_watch(path);
273 if (unlikely(IS_ERR(watch)))
274 return PTR_ERR(watch);
275
276 audit_get_watch(watch);
277 krule->watch = watch;
278
279 return 0;
280}
281
Al Virob9155432006-07-01 03:56:16 -0400282static __u32 *classes[AUDIT_SYSCALL_CLASSES];
283
284int __init audit_register_class(int class, unsigned *list)
285{
286 __u32 *p = kzalloc(AUDIT_BITMASK_SIZE * sizeof(__u32), GFP_KERNEL);
287 if (!p)
288 return -ENOMEM;
289 while (*list != ~0U) {
290 unsigned n = *list++;
291 if (n >= AUDIT_BITMASK_SIZE * 32 - AUDIT_SYSCALL_CLASSES) {
292 kfree(p);
293 return -EINVAL;
294 }
295 p[AUDIT_WORD(n)] |= AUDIT_BIT(n);
296 }
297 if (class >= AUDIT_SYSCALL_CLASSES || classes[class]) {
298 kfree(p);
299 return -EINVAL;
300 }
301 classes[class] = p;
302 return 0;
303}
304
Amy Griffis93315ed2006-02-07 12:05:27 -0500305/* Common user-space to kernel rule translation. */
306static inline struct audit_entry *audit_to_entry_common(struct audit_rule *rule)
307{
308 unsigned listnr;
309 struct audit_entry *entry;
Amy Griffis93315ed2006-02-07 12:05:27 -0500310 int i, err;
311
312 err = -EINVAL;
313 listnr = rule->flags & ~AUDIT_FILTER_PREPEND;
314 switch(listnr) {
315 default:
316 goto exit_err;
317 case AUDIT_FILTER_USER:
318 case AUDIT_FILTER_TYPE:
319#ifdef CONFIG_AUDITSYSCALL
320 case AUDIT_FILTER_ENTRY:
321 case AUDIT_FILTER_EXIT:
322 case AUDIT_FILTER_TASK:
323#endif
324 ;
325 }
Al Viro014149c2006-05-23 01:36:13 -0400326 if (unlikely(rule->action == AUDIT_POSSIBLE)) {
327 printk(KERN_ERR "AUDIT_POSSIBLE is deprecated\n");
328 goto exit_err;
329 }
330 if (rule->action != AUDIT_NEVER && rule->action != AUDIT_ALWAYS)
Amy Griffis93315ed2006-02-07 12:05:27 -0500331 goto exit_err;
332 if (rule->field_count > AUDIT_MAX_FIELDS)
333 goto exit_err;
334
335 err = -ENOMEM;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600336 entry = audit_init_entry(rule->field_count);
337 if (!entry)
Amy Griffis93315ed2006-02-07 12:05:27 -0500338 goto exit_err;
Amy Griffis93315ed2006-02-07 12:05:27 -0500339
340 entry->rule.flags = rule->flags & AUDIT_FILTER_PREPEND;
341 entry->rule.listnr = listnr;
342 entry->rule.action = rule->action;
343 entry->rule.field_count = rule->field_count;
Amy Griffis93315ed2006-02-07 12:05:27 -0500344
345 for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
346 entry->rule.mask[i] = rule->mask[i];
347
Al Virob9155432006-07-01 03:56:16 -0400348 for (i = 0; i < AUDIT_SYSCALL_CLASSES; i++) {
349 int bit = AUDIT_BITMASK_SIZE * 32 - i - 1;
350 __u32 *p = &entry->rule.mask[AUDIT_WORD(bit)];
351 __u32 *class;
352
353 if (!(*p & AUDIT_BIT(bit)))
354 continue;
355 *p &= ~AUDIT_BIT(bit);
356 class = classes[i];
357 if (class) {
358 int j;
359 for (j = 0; j < AUDIT_BITMASK_SIZE; j++)
360 entry->rule.mask[j] |= class[j];
361 }
362 }
363
Amy Griffis93315ed2006-02-07 12:05:27 -0500364 return entry;
365
366exit_err:
367 return ERR_PTR(err);
368}
369
370/* Translate struct audit_rule to kernel's rule respresentation.
371 * Exists for backward compatibility with userspace. */
372static struct audit_entry *audit_rule_to_entry(struct audit_rule *rule)
373{
374 struct audit_entry *entry;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400375 struct audit_field *f;
Amy Griffis93315ed2006-02-07 12:05:27 -0500376 int err = 0;
377 int i;
378
379 entry = audit_to_entry_common(rule);
380 if (IS_ERR(entry))
381 goto exit_nofree;
382
383 for (i = 0; i < rule->field_count; i++) {
384 struct audit_field *f = &entry->rule.fields[i];
385
Amy Griffis93315ed2006-02-07 12:05:27 -0500386 f->op = rule->fields[i] & (AUDIT_NEGATE|AUDIT_OPERATORS);
387 f->type = rule->fields[i] & ~(AUDIT_NEGATE|AUDIT_OPERATORS);
388 f->val = rule->values[i];
389
Amy Griffisf368c07d2006-04-07 16:55:56 -0400390 err = -EINVAL;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400391 switch(f->type) {
Al Viro0a73dcc2006-06-05 08:15:59 -0400392 default:
Amy Griffisf368c07d2006-04-07 16:55:56 -0400393 goto exit_free;
Al Viro0a73dcc2006-06-05 08:15:59 -0400394 case AUDIT_PID:
395 case AUDIT_UID:
396 case AUDIT_EUID:
397 case AUDIT_SUID:
398 case AUDIT_FSUID:
399 case AUDIT_GID:
400 case AUDIT_EGID:
401 case AUDIT_SGID:
402 case AUDIT_FSGID:
403 case AUDIT_LOGINUID:
404 case AUDIT_PERS:
405 case AUDIT_ARCH:
406 case AUDIT_MSGTYPE:
Steve Grubb3b33ac32006-08-26 14:06:20 -0400407 case AUDIT_PPID:
Al Viro0a73dcc2006-06-05 08:15:59 -0400408 case AUDIT_DEVMAJOR:
409 case AUDIT_DEVMINOR:
410 case AUDIT_EXIT:
411 case AUDIT_SUCCESS:
412 case AUDIT_ARG0:
413 case AUDIT_ARG1:
414 case AUDIT_ARG2:
415 case AUDIT_ARG3:
416 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400417 case AUDIT_INODE:
418 err = audit_to_inode(&entry->rule, f);
419 if (err)
420 goto exit_free;
421 break;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600422 }
423
Amy Griffis93315ed2006-02-07 12:05:27 -0500424 entry->rule.vers_ops = (f->op & AUDIT_OPERATORS) ? 2 : 1;
Dustin Kirklandd9d9ec62006-02-16 13:40:01 -0600425
426 /* Support for legacy operators where
427 * AUDIT_NEGATE bit signifies != and otherwise assumes == */
Amy Griffis93315ed2006-02-07 12:05:27 -0500428 if (f->op & AUDIT_NEGATE)
Dustin Kirklandd9d9ec62006-02-16 13:40:01 -0600429 f->op = AUDIT_NOT_EQUAL;
430 else if (!f->op)
431 f->op = AUDIT_EQUAL;
432 else if (f->op == AUDIT_OPERATORS) {
433 err = -EINVAL;
434 goto exit_free;
435 }
Amy Griffis93315ed2006-02-07 12:05:27 -0500436 }
437
Amy Griffisf368c07d2006-04-07 16:55:56 -0400438 f = entry->rule.inode_f;
439 if (f) {
440 switch(f->op) {
441 case AUDIT_NOT_EQUAL:
442 entry->rule.inode_f = NULL;
443 case AUDIT_EQUAL:
444 break;
445 default:
Amy Griffis5422e012006-08-01 17:52:26 -0400446 err = -EINVAL;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400447 goto exit_free;
448 }
449 }
450
Amy Griffis93315ed2006-02-07 12:05:27 -0500451exit_nofree:
452 return entry;
453
454exit_free:
455 audit_free_rule(entry);
456 return ERR_PTR(err);
457}
458
459/* Translate struct audit_rule_data to kernel's rule respresentation. */
460static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
461 size_t datasz)
462{
463 int err = 0;
464 struct audit_entry *entry;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400465 struct audit_field *f;
Amy Griffis93315ed2006-02-07 12:05:27 -0500466 void *bufp;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600467 size_t remain = datasz - sizeof(struct audit_rule_data);
Amy Griffis93315ed2006-02-07 12:05:27 -0500468 int i;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600469 char *str;
Amy Griffis93315ed2006-02-07 12:05:27 -0500470
471 entry = audit_to_entry_common((struct audit_rule *)data);
472 if (IS_ERR(entry))
473 goto exit_nofree;
474
475 bufp = data->buf;
476 entry->rule.vers_ops = 2;
477 for (i = 0; i < data->field_count; i++) {
478 struct audit_field *f = &entry->rule.fields[i];
479
480 err = -EINVAL;
481 if (!(data->fieldflags[i] & AUDIT_OPERATORS) ||
482 data->fieldflags[i] & ~AUDIT_OPERATORS)
483 goto exit_free;
484
485 f->op = data->fieldflags[i] & AUDIT_OPERATORS;
486 f->type = data->fields[i];
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600487 f->val = data->values[i];
488 f->se_str = NULL;
489 f->se_rule = NULL;
Amy Griffis93315ed2006-02-07 12:05:27 -0500490 switch(f->type) {
Al Viro0a73dcc2006-06-05 08:15:59 -0400491 case AUDIT_PID:
492 case AUDIT_UID:
493 case AUDIT_EUID:
494 case AUDIT_SUID:
495 case AUDIT_FSUID:
496 case AUDIT_GID:
497 case AUDIT_EGID:
498 case AUDIT_SGID:
499 case AUDIT_FSGID:
500 case AUDIT_LOGINUID:
501 case AUDIT_PERS:
502 case AUDIT_ARCH:
503 case AUDIT_MSGTYPE:
504 case AUDIT_PPID:
505 case AUDIT_DEVMAJOR:
506 case AUDIT_DEVMINOR:
507 case AUDIT_EXIT:
508 case AUDIT_SUCCESS:
509 case AUDIT_ARG0:
510 case AUDIT_ARG1:
511 case AUDIT_ARG2:
512 case AUDIT_ARG3:
513 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500514 case AUDIT_SUBJ_USER:
515 case AUDIT_SUBJ_ROLE:
516 case AUDIT_SUBJ_TYPE:
517 case AUDIT_SUBJ_SEN:
518 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500519 case AUDIT_OBJ_USER:
520 case AUDIT_OBJ_ROLE:
521 case AUDIT_OBJ_TYPE:
522 case AUDIT_OBJ_LEV_LOW:
523 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600524 str = audit_unpack_string(&bufp, &remain, f->val);
525 if (IS_ERR(str))
526 goto exit_free;
527 entry->rule.buflen += f->val;
528
529 err = selinux_audit_rule_init(f->type, f->op, str,
530 &f->se_rule);
531 /* Keep currently invalid fields around in case they
532 * become valid after a policy reload. */
533 if (err == -EINVAL) {
534 printk(KERN_WARNING "audit rule for selinux "
535 "\'%s\' is invalid\n", str);
536 err = 0;
537 }
538 if (err) {
539 kfree(str);
540 goto exit_free;
541 } else
542 f->se_str = str;
543 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400544 case AUDIT_WATCH:
545 str = audit_unpack_string(&bufp, &remain, f->val);
546 if (IS_ERR(str))
547 goto exit_free;
548 entry->rule.buflen += f->val;
549
550 err = audit_to_watch(&entry->rule, str, f->val, f->op);
551 if (err) {
552 kfree(str);
553 goto exit_free;
554 }
555 break;
556 case AUDIT_INODE:
557 err = audit_to_inode(&entry->rule, f);
558 if (err)
559 goto exit_free;
560 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400561 case AUDIT_FILTERKEY:
562 err = -EINVAL;
563 if (entry->rule.filterkey || f->val > AUDIT_MAX_KEY_LEN)
564 goto exit_free;
565 str = audit_unpack_string(&bufp, &remain, f->val);
566 if (IS_ERR(str))
567 goto exit_free;
568 entry->rule.buflen += f->val;
569 entry->rule.filterkey = str;
570 break;
Al Viro0a73dcc2006-06-05 08:15:59 -0400571 default:
572 goto exit_free;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400573 }
574 }
575
576 f = entry->rule.inode_f;
577 if (f) {
578 switch(f->op) {
579 case AUDIT_NOT_EQUAL:
580 entry->rule.inode_f = NULL;
581 case AUDIT_EQUAL:
582 break;
583 default:
Amy Griffis5422e012006-08-01 17:52:26 -0400584 err = -EINVAL;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400585 goto exit_free;
Amy Griffis93315ed2006-02-07 12:05:27 -0500586 }
587 }
588
589exit_nofree:
590 return entry;
591
592exit_free:
593 audit_free_rule(entry);
594 return ERR_PTR(err);
595}
596
597/* Pack a filter field's string representation into data block. */
598static inline size_t audit_pack_string(void **bufp, char *str)
599{
600 size_t len = strlen(str);
601
602 memcpy(*bufp, str, len);
603 *bufp += len;
604
605 return len;
606}
607
608/* Translate kernel rule respresentation to struct audit_rule.
609 * Exists for backward compatibility with userspace. */
610static struct audit_rule *audit_krule_to_rule(struct audit_krule *krule)
611{
612 struct audit_rule *rule;
613 int i;
614
615 rule = kmalloc(sizeof(*rule), GFP_KERNEL);
616 if (unlikely(!rule))
Amy Griffis0a3b4832006-05-02 15:06:01 -0400617 return NULL;
Amy Griffis93315ed2006-02-07 12:05:27 -0500618 memset(rule, 0, sizeof(*rule));
619
620 rule->flags = krule->flags | krule->listnr;
621 rule->action = krule->action;
622 rule->field_count = krule->field_count;
623 for (i = 0; i < rule->field_count; i++) {
624 rule->values[i] = krule->fields[i].val;
625 rule->fields[i] = krule->fields[i].type;
626
627 if (krule->vers_ops == 1) {
628 if (krule->fields[i].op & AUDIT_NOT_EQUAL)
629 rule->fields[i] |= AUDIT_NEGATE;
630 } else {
631 rule->fields[i] |= krule->fields[i].op;
632 }
633 }
634 for (i = 0; i < AUDIT_BITMASK_SIZE; i++) rule->mask[i] = krule->mask[i];
635
636 return rule;
637}
638
639/* Translate kernel rule respresentation to struct audit_rule_data. */
640static struct audit_rule_data *audit_krule_to_data(struct audit_krule *krule)
641{
642 struct audit_rule_data *data;
643 void *bufp;
644 int i;
645
646 data = kmalloc(sizeof(*data) + krule->buflen, GFP_KERNEL);
647 if (unlikely(!data))
Amy Griffis0a3b4832006-05-02 15:06:01 -0400648 return NULL;
Amy Griffis93315ed2006-02-07 12:05:27 -0500649 memset(data, 0, sizeof(*data));
650
651 data->flags = krule->flags | krule->listnr;
652 data->action = krule->action;
653 data->field_count = krule->field_count;
654 bufp = data->buf;
655 for (i = 0; i < data->field_count; i++) {
656 struct audit_field *f = &krule->fields[i];
657
658 data->fields[i] = f->type;
659 data->fieldflags[i] = f->op;
660 switch(f->type) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500661 case AUDIT_SUBJ_USER:
662 case AUDIT_SUBJ_ROLE:
663 case AUDIT_SUBJ_TYPE:
664 case AUDIT_SUBJ_SEN:
665 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500666 case AUDIT_OBJ_USER:
667 case AUDIT_OBJ_ROLE:
668 case AUDIT_OBJ_TYPE:
669 case AUDIT_OBJ_LEV_LOW:
670 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600671 data->buflen += data->values[i] =
672 audit_pack_string(&bufp, f->se_str);
673 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400674 case AUDIT_WATCH:
675 data->buflen += data->values[i] =
676 audit_pack_string(&bufp, krule->watch->path);
677 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400678 case AUDIT_FILTERKEY:
679 data->buflen += data->values[i] =
680 audit_pack_string(&bufp, krule->filterkey);
681 break;
Amy Griffis93315ed2006-02-07 12:05:27 -0500682 default:
683 data->values[i] = f->val;
684 }
685 }
686 for (i = 0; i < AUDIT_BITMASK_SIZE; i++) data->mask[i] = krule->mask[i];
687
688 return data;
689}
690
691/* Compare two rules in kernel format. Considered success if rules
692 * don't match. */
693static int audit_compare_rule(struct audit_krule *a, struct audit_krule *b)
David Woodhousefe7752b2005-12-15 18:33:52 +0000694{
695 int i;
696
Amy Griffis93315ed2006-02-07 12:05:27 -0500697 if (a->flags != b->flags ||
698 a->listnr != b->listnr ||
699 a->action != b->action ||
700 a->field_count != b->field_count)
David Woodhousefe7752b2005-12-15 18:33:52 +0000701 return 1;
702
703 for (i = 0; i < a->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -0500704 if (a->fields[i].type != b->fields[i].type ||
705 a->fields[i].op != b->fields[i].op)
David Woodhousefe7752b2005-12-15 18:33:52 +0000706 return 1;
Amy Griffis93315ed2006-02-07 12:05:27 -0500707
708 switch(a->fields[i].type) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500709 case AUDIT_SUBJ_USER:
710 case AUDIT_SUBJ_ROLE:
711 case AUDIT_SUBJ_TYPE:
712 case AUDIT_SUBJ_SEN:
713 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500714 case AUDIT_OBJ_USER:
715 case AUDIT_OBJ_ROLE:
716 case AUDIT_OBJ_TYPE:
717 case AUDIT_OBJ_LEV_LOW:
718 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600719 if (strcmp(a->fields[i].se_str, b->fields[i].se_str))
720 return 1;
721 break;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400722 case AUDIT_WATCH:
723 if (strcmp(a->watch->path, b->watch->path))
724 return 1;
725 break;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400726 case AUDIT_FILTERKEY:
727 /* both filterkeys exist based on above type compare */
728 if (strcmp(a->filterkey, b->filterkey))
729 return 1;
730 break;
Amy Griffis93315ed2006-02-07 12:05:27 -0500731 default:
732 if (a->fields[i].val != b->fields[i].val)
733 return 1;
734 }
David Woodhousefe7752b2005-12-15 18:33:52 +0000735 }
736
737 for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
738 if (a->mask[i] != b->mask[i])
739 return 1;
740
741 return 0;
742}
743
Amy Griffisf368c07d2006-04-07 16:55:56 -0400744/* Duplicate the given audit watch. The new watch's rules list is initialized
745 * to an empty list and wlist is undefined. */
746static struct audit_watch *audit_dupe_watch(struct audit_watch *old)
747{
748 char *path;
749 struct audit_watch *new;
750
751 path = kstrdup(old->path, GFP_KERNEL);
752 if (unlikely(!path))
753 return ERR_PTR(-ENOMEM);
754
755 new = audit_init_watch(path);
756 if (unlikely(IS_ERR(new))) {
757 kfree(path);
758 goto out;
759 }
760
761 new->dev = old->dev;
762 new->ino = old->ino;
763 get_inotify_watch(&old->parent->wdata);
764 new->parent = old->parent;
765
766out:
767 return new;
768}
769
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600770/* Duplicate selinux field information. The se_rule is opaque, so must be
771 * re-initialized. */
772static inline int audit_dupe_selinux_field(struct audit_field *df,
773 struct audit_field *sf)
774{
775 int ret = 0;
776 char *se_str;
777
778 /* our own copy of se_str */
779 se_str = kstrdup(sf->se_str, GFP_KERNEL);
780 if (unlikely(IS_ERR(se_str)))
781 return -ENOMEM;
782 df->se_str = se_str;
783
784 /* our own (refreshed) copy of se_rule */
785 ret = selinux_audit_rule_init(df->type, df->op, df->se_str,
786 &df->se_rule);
787 /* Keep currently invalid fields around in case they
788 * become valid after a policy reload. */
789 if (ret == -EINVAL) {
790 printk(KERN_WARNING "audit rule for selinux \'%s\' is "
791 "invalid\n", df->se_str);
792 ret = 0;
793 }
794
795 return ret;
796}
797
798/* Duplicate an audit rule. This will be a deep copy with the exception
799 * of the watch - that pointer is carried over. The selinux specific fields
800 * will be updated in the copy. The point is to be able to replace the old
Amy Griffisf368c07d2006-04-07 16:55:56 -0400801 * rule with the new rule in the filterlist, then free the old rule.
802 * The rlist element is undefined; list manipulations are handled apart from
803 * the initial copy. */
804static struct audit_entry *audit_dupe_rule(struct audit_krule *old,
805 struct audit_watch *watch)
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600806{
807 u32 fcount = old->field_count;
808 struct audit_entry *entry;
809 struct audit_krule *new;
Amy Griffis5adc8a62006-06-14 18:45:21 -0400810 char *fk;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600811 int i, err = 0;
812
813 entry = audit_init_entry(fcount);
814 if (unlikely(!entry))
815 return ERR_PTR(-ENOMEM);
816
817 new = &entry->rule;
818 new->vers_ops = old->vers_ops;
819 new->flags = old->flags;
820 new->listnr = old->listnr;
821 new->action = old->action;
822 for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
823 new->mask[i] = old->mask[i];
824 new->buflen = old->buflen;
Amy Griffisf368c07d2006-04-07 16:55:56 -0400825 new->inode_f = old->inode_f;
826 new->watch = NULL;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600827 new->field_count = old->field_count;
828 memcpy(new->fields, old->fields, sizeof(struct audit_field) * fcount);
829
830 /* deep copy this information, updating the se_rule fields, because
831 * the originals will all be freed when the old rule is freed. */
832 for (i = 0; i < fcount; i++) {
833 switch (new->fields[i].type) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -0500834 case AUDIT_SUBJ_USER:
835 case AUDIT_SUBJ_ROLE:
836 case AUDIT_SUBJ_TYPE:
837 case AUDIT_SUBJ_SEN:
838 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -0500839 case AUDIT_OBJ_USER:
840 case AUDIT_OBJ_ROLE:
841 case AUDIT_OBJ_TYPE:
842 case AUDIT_OBJ_LEV_LOW:
843 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600844 err = audit_dupe_selinux_field(&new->fields[i],
845 &old->fields[i]);
Amy Griffis5adc8a62006-06-14 18:45:21 -0400846 break;
847 case AUDIT_FILTERKEY:
848 fk = kstrdup(old->filterkey, GFP_KERNEL);
849 if (unlikely(!fk))
850 err = -ENOMEM;
851 else
852 new->filterkey = fk;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600853 }
854 if (err) {
855 audit_free_rule(entry);
856 return ERR_PTR(err);
857 }
858 }
859
Amy Griffisf368c07d2006-04-07 16:55:56 -0400860 if (watch) {
861 audit_get_watch(watch);
862 new->watch = watch;
863 }
864
Darrel Goeddel3dc7e312006-03-10 18:14:06 -0600865 return entry;
866}
867
Amy Griffisf368c07d2006-04-07 16:55:56 -0400868/* Update inode info in audit rules based on filesystem event. */
869static void audit_update_watch(struct audit_parent *parent,
870 const char *dname, dev_t dev,
871 unsigned long ino, unsigned invalidating)
David Woodhousefe7752b2005-12-15 18:33:52 +0000872{
Amy Griffisf368c07d2006-04-07 16:55:56 -0400873 struct audit_watch *owatch, *nwatch, *nextw;
874 struct audit_krule *r, *nextr;
875 struct audit_entry *oentry, *nentry;
876 struct audit_buffer *ab;
877
878 mutex_lock(&audit_filter_mutex);
879 list_for_each_entry_safe(owatch, nextw, &parent->watches, wlist) {
Amy Griffis9c937dc2006-06-08 23:19:31 -0400880 if (audit_compare_dname_path(dname, owatch->path, NULL))
Amy Griffisf368c07d2006-04-07 16:55:56 -0400881 continue;
882
883 /* If the update involves invalidating rules, do the inode-based
884 * filtering now, so we don't omit records. */
885 if (invalidating &&
886 audit_filter_inodes(current, current->audit_context) == AUDIT_RECORD_CONTEXT)
887 audit_set_auditable(current->audit_context);
888
889 nwatch = audit_dupe_watch(owatch);
890 if (unlikely(IS_ERR(nwatch))) {
891 mutex_unlock(&audit_filter_mutex);
892 audit_panic("error updating watch, skipping");
893 return;
894 }
895 nwatch->dev = dev;
896 nwatch->ino = ino;
897
898 list_for_each_entry_safe(r, nextr, &owatch->rules, rlist) {
899
900 oentry = container_of(r, struct audit_entry, rule);
901 list_del(&oentry->rule.rlist);
902 list_del_rcu(&oentry->list);
903
904 nentry = audit_dupe_rule(&oentry->rule, nwatch);
905 if (unlikely(IS_ERR(nentry)))
906 audit_panic("error updating watch, removing");
907 else {
908 int h = audit_hash_ino((u32)ino);
909 list_add(&nentry->rule.rlist, &nwatch->rules);
910 list_add_rcu(&nentry->list, &audit_inode_hash[h]);
911 }
912
913 call_rcu(&oentry->rcu, audit_free_rule_rcu);
914 }
915
916 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
917 audit_log_format(ab, "audit updated rules specifying watch=");
918 audit_log_untrustedstring(ab, owatch->path);
919 audit_log_format(ab, " with dev=%u ino=%lu\n", dev, ino);
920 audit_log_end(ab);
921
922 audit_remove_watch(owatch);
923 goto add_watch_to_parent; /* event applies to a single watch */
924 }
925 mutex_unlock(&audit_filter_mutex);
926 return;
927
928add_watch_to_parent:
929 list_add(&nwatch->wlist, &parent->watches);
930 mutex_unlock(&audit_filter_mutex);
931 return;
932}
933
934/* Remove all watches & rules associated with a parent that is going away. */
935static void audit_remove_parent_watches(struct audit_parent *parent)
936{
937 struct audit_watch *w, *nextw;
938 struct audit_krule *r, *nextr;
Amy Griffis93315ed2006-02-07 12:05:27 -0500939 struct audit_entry *e;
David Woodhousefe7752b2005-12-15 18:33:52 +0000940
Amy Griffisf368c07d2006-04-07 16:55:56 -0400941 mutex_lock(&audit_filter_mutex);
942 parent->flags |= AUDIT_PARENT_INVALID;
943 list_for_each_entry_safe(w, nextw, &parent->watches, wlist) {
944 list_for_each_entry_safe(r, nextr, &w->rules, rlist) {
945 e = container_of(r, struct audit_entry, rule);
946 list_del(&r->rlist);
947 list_del_rcu(&e->list);
948 call_rcu(&e->rcu, audit_free_rule_rcu);
949
950 audit_log(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE,
951 "audit implicitly removed rule from list=%d\n",
952 AUDIT_FILTER_EXIT);
953 }
954 audit_remove_watch(w);
955 }
956 mutex_unlock(&audit_filter_mutex);
957}
958
959/* Unregister inotify watches for parents on in_list.
960 * Generates an IN_IGNORED event. */
961static void audit_inotify_unregister(struct list_head *in_list)
962{
963 struct audit_parent *p, *n;
964
965 list_for_each_entry_safe(p, n, in_list, ilist) {
966 list_del(&p->ilist);
967 inotify_rm_watch(audit_ih, &p->wdata);
968 /* the put matching the get in audit_do_del_rule() */
969 put_inotify_watch(&p->wdata);
970 }
971}
972
973/* Find an existing audit rule.
974 * Caller must hold audit_filter_mutex to prevent stale rule data. */
975static struct audit_entry *audit_find_rule(struct audit_entry *entry,
976 struct list_head *list)
977{
978 struct audit_entry *e, *found = NULL;
979 int h;
980
981 if (entry->rule.watch) {
982 /* we don't know the inode number, so must walk entire hash */
983 for (h = 0; h < AUDIT_INODE_BUCKETS; h++) {
984 list = &audit_inode_hash[h];
985 list_for_each_entry(e, list, list)
986 if (!audit_compare_rule(&entry->rule, &e->rule)) {
987 found = e;
988 goto out;
989 }
990 }
991 goto out;
992 }
993
994 list_for_each_entry(e, list, list)
995 if (!audit_compare_rule(&entry->rule, &e->rule)) {
996 found = e;
997 goto out;
998 }
999
1000out:
1001 return found;
1002}
1003
1004/* Get path information necessary for adding watches. */
1005static int audit_get_nd(char *path, struct nameidata **ndp,
1006 struct nameidata **ndw)
1007{
1008 struct nameidata *ndparent, *ndwatch;
1009 int err;
1010
1011 ndparent = kmalloc(sizeof(*ndparent), GFP_KERNEL);
1012 if (unlikely(!ndparent))
1013 return -ENOMEM;
1014
1015 ndwatch = kmalloc(sizeof(*ndwatch), GFP_KERNEL);
1016 if (unlikely(!ndwatch)) {
1017 kfree(ndparent);
1018 return -ENOMEM;
1019 }
1020
1021 err = path_lookup(path, LOOKUP_PARENT, ndparent);
1022 if (err) {
1023 kfree(ndparent);
1024 kfree(ndwatch);
1025 return err;
1026 }
1027
1028 err = path_lookup(path, 0, ndwatch);
1029 if (err) {
1030 kfree(ndwatch);
1031 ndwatch = NULL;
1032 }
1033
1034 *ndp = ndparent;
1035 *ndw = ndwatch;
1036
1037 return 0;
1038}
1039
1040/* Release resources used for watch path information. */
1041static void audit_put_nd(struct nameidata *ndp, struct nameidata *ndw)
1042{
1043 if (ndp) {
1044 path_release(ndp);
1045 kfree(ndp);
1046 }
1047 if (ndw) {
1048 path_release(ndw);
1049 kfree(ndw);
1050 }
1051}
1052
1053/* Associate the given rule with an existing parent inotify_watch.
1054 * Caller must hold audit_filter_mutex. */
1055static void audit_add_to_parent(struct audit_krule *krule,
1056 struct audit_parent *parent)
1057{
1058 struct audit_watch *w, *watch = krule->watch;
1059 int watch_found = 0;
1060
1061 list_for_each_entry(w, &parent->watches, wlist) {
1062 if (strcmp(watch->path, w->path))
1063 continue;
1064
1065 watch_found = 1;
1066
1067 /* put krule's and initial refs to temporary watch */
1068 audit_put_watch(watch);
1069 audit_put_watch(watch);
1070
1071 audit_get_watch(w);
1072 krule->watch = watch = w;
1073 break;
1074 }
1075
1076 if (!watch_found) {
1077 get_inotify_watch(&parent->wdata);
1078 watch->parent = parent;
1079
1080 list_add(&watch->wlist, &parent->watches);
1081 }
1082 list_add(&krule->rlist, &watch->rules);
1083}
1084
1085/* Find a matching watch entry, or add this one.
1086 * Caller must hold audit_filter_mutex. */
1087static int audit_add_watch(struct audit_krule *krule, struct nameidata *ndp,
1088 struct nameidata *ndw)
1089{
1090 struct audit_watch *watch = krule->watch;
1091 struct inotify_watch *i_watch;
1092 struct audit_parent *parent;
1093 int ret = 0;
1094
1095 /* update watch filter fields */
1096 if (ndw) {
1097 watch->dev = ndw->dentry->d_inode->i_sb->s_dev;
1098 watch->ino = ndw->dentry->d_inode->i_ino;
1099 }
1100
1101 /* The audit_filter_mutex must not be held during inotify calls because
1102 * we hold it during inotify event callback processing. If an existing
1103 * inotify watch is found, inotify_find_watch() grabs a reference before
1104 * returning.
1105 */
1106 mutex_unlock(&audit_filter_mutex);
1107
1108 if (inotify_find_watch(audit_ih, ndp->dentry->d_inode, &i_watch) < 0) {
1109 parent = audit_init_parent(ndp);
1110 if (IS_ERR(parent)) {
1111 /* caller expects mutex locked */
1112 mutex_lock(&audit_filter_mutex);
1113 return PTR_ERR(parent);
1114 }
1115 } else
1116 parent = container_of(i_watch, struct audit_parent, wdata);
1117
1118 mutex_lock(&audit_filter_mutex);
1119
1120 /* parent was moved before we took audit_filter_mutex */
1121 if (parent->flags & AUDIT_PARENT_INVALID)
1122 ret = -ENOENT;
1123 else
1124 audit_add_to_parent(krule, parent);
1125
1126 /* match get in audit_init_parent or inotify_find_watch */
1127 put_inotify_watch(&parent->wdata);
1128 return ret;
1129}
1130
1131/* Add rule to given filterlist if not a duplicate. */
1132static inline int audit_add_rule(struct audit_entry *entry,
1133 struct list_head *list)
1134{
1135 struct audit_entry *e;
1136 struct audit_field *inode_f = entry->rule.inode_f;
1137 struct audit_watch *watch = entry->rule.watch;
1138 struct nameidata *ndp, *ndw;
1139 int h, err, putnd_needed = 0;
Al Viro471a5c72006-07-10 08:29:24 -04001140#ifdef CONFIG_AUDITSYSCALL
1141 int dont_count = 0;
1142
1143 /* If either of these, don't count towards total */
1144 if (entry->rule.listnr == AUDIT_FILTER_USER ||
1145 entry->rule.listnr == AUDIT_FILTER_TYPE)
1146 dont_count = 1;
1147#endif
Amy Griffisf368c07d2006-04-07 16:55:56 -04001148
1149 if (inode_f) {
1150 h = audit_hash_ino(inode_f->val);
1151 list = &audit_inode_hash[h];
1152 }
1153
1154 mutex_lock(&audit_filter_mutex);
1155 e = audit_find_rule(entry, list);
1156 mutex_unlock(&audit_filter_mutex);
1157 if (e) {
1158 err = -EEXIST;
1159 goto error;
1160 }
1161
1162 /* Avoid calling path_lookup under audit_filter_mutex. */
1163 if (watch) {
1164 err = audit_get_nd(watch->path, &ndp, &ndw);
1165 if (err)
1166 goto error;
1167 putnd_needed = 1;
1168 }
1169
1170 mutex_lock(&audit_filter_mutex);
1171 if (watch) {
1172 /* audit_filter_mutex is dropped and re-taken during this call */
1173 err = audit_add_watch(&entry->rule, ndp, ndw);
1174 if (err) {
1175 mutex_unlock(&audit_filter_mutex);
1176 goto error;
1177 }
1178 h = audit_hash_ino((u32)watch->ino);
1179 list = &audit_inode_hash[h];
David Woodhousefe7752b2005-12-15 18:33:52 +00001180 }
1181
David Woodhousefe7752b2005-12-15 18:33:52 +00001182 if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
David Woodhousefe7752b2005-12-15 18:33:52 +00001183 list_add_rcu(&entry->list, list);
Amy Griffis6a2bcee2006-06-02 13:16:01 -04001184 entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
David Woodhousefe7752b2005-12-15 18:33:52 +00001185 } else {
1186 list_add_tail_rcu(&entry->list, list);
1187 }
Al Viro471a5c72006-07-10 08:29:24 -04001188#ifdef CONFIG_AUDITSYSCALL
1189 if (!dont_count)
1190 audit_n_rules++;
1191#endif
Amy Griffisf368c07d2006-04-07 16:55:56 -04001192 mutex_unlock(&audit_filter_mutex);
David Woodhousefe7752b2005-12-15 18:33:52 +00001193
Amy Griffisf368c07d2006-04-07 16:55:56 -04001194 if (putnd_needed)
1195 audit_put_nd(ndp, ndw);
1196
1197 return 0;
1198
1199error:
1200 if (putnd_needed)
1201 audit_put_nd(ndp, ndw);
1202 if (watch)
1203 audit_put_watch(watch); /* tmp watch, matches initial get */
1204 return err;
David Woodhousefe7752b2005-12-15 18:33:52 +00001205}
1206
Amy Griffisf368c07d2006-04-07 16:55:56 -04001207/* Remove an existing rule from filterlist. */
Amy Griffis93315ed2006-02-07 12:05:27 -05001208static inline int audit_del_rule(struct audit_entry *entry,
David Woodhousefe7752b2005-12-15 18:33:52 +00001209 struct list_head *list)
1210{
1211 struct audit_entry *e;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001212 struct audit_field *inode_f = entry->rule.inode_f;
1213 struct audit_watch *watch, *tmp_watch = entry->rule.watch;
1214 LIST_HEAD(inotify_list);
1215 int h, ret = 0;
Al Viro471a5c72006-07-10 08:29:24 -04001216#ifdef CONFIG_AUDITSYSCALL
1217 int dont_count = 0;
1218
1219 /* If either of these, don't count towards total */
1220 if (entry->rule.listnr == AUDIT_FILTER_USER ||
1221 entry->rule.listnr == AUDIT_FILTER_TYPE)
1222 dont_count = 1;
1223#endif
David Woodhousefe7752b2005-12-15 18:33:52 +00001224
Amy Griffisf368c07d2006-04-07 16:55:56 -04001225 if (inode_f) {
1226 h = audit_hash_ino(inode_f->val);
1227 list = &audit_inode_hash[h];
1228 }
1229
1230 mutex_lock(&audit_filter_mutex);
1231 e = audit_find_rule(entry, list);
1232 if (!e) {
1233 mutex_unlock(&audit_filter_mutex);
1234 ret = -ENOENT;
1235 goto out;
1236 }
1237
1238 watch = e->rule.watch;
1239 if (watch) {
1240 struct audit_parent *parent = watch->parent;
1241
1242 list_del(&e->rule.rlist);
1243
1244 if (list_empty(&watch->rules)) {
1245 audit_remove_watch(watch);
1246
1247 if (list_empty(&parent->watches)) {
1248 /* Put parent on the inotify un-registration
1249 * list. Grab a reference before releasing
1250 * audit_filter_mutex, to be released in
1251 * audit_inotify_unregister(). */
1252 list_add(&parent->ilist, &inotify_list);
1253 get_inotify_watch(&parent->wdata);
1254 }
David Woodhousefe7752b2005-12-15 18:33:52 +00001255 }
1256 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001257
1258 list_del_rcu(&e->list);
1259 call_rcu(&e->rcu, audit_free_rule_rcu);
1260
Al Viro471a5c72006-07-10 08:29:24 -04001261#ifdef CONFIG_AUDITSYSCALL
1262 if (!dont_count)
1263 audit_n_rules--;
1264#endif
Amy Griffisf368c07d2006-04-07 16:55:56 -04001265 mutex_unlock(&audit_filter_mutex);
1266
1267 if (!list_empty(&inotify_list))
1268 audit_inotify_unregister(&inotify_list);
1269
1270out:
1271 if (tmp_watch)
1272 audit_put_watch(tmp_watch); /* match initial get */
1273
1274 return ret;
David Woodhousefe7752b2005-12-15 18:33:52 +00001275}
1276
Amy Griffis93315ed2006-02-07 12:05:27 -05001277/* List rules using struct audit_rule. Exists for backward
1278 * compatibility with userspace. */
Al Viro9044e6b2006-05-22 01:09:24 -04001279static void audit_list(int pid, int seq, struct sk_buff_head *q)
David Woodhousefe7752b2005-12-15 18:33:52 +00001280{
Al Viro9044e6b2006-05-22 01:09:24 -04001281 struct sk_buff *skb;
David Woodhousefe7752b2005-12-15 18:33:52 +00001282 struct audit_entry *entry;
1283 int i;
1284
Amy Griffisf368c07d2006-04-07 16:55:56 -04001285 /* This is a blocking read, so use audit_filter_mutex instead of rcu
1286 * iterator to sync with list writers. */
David Woodhousefe7752b2005-12-15 18:33:52 +00001287 for (i=0; i<AUDIT_NR_FILTERS; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -05001288 list_for_each_entry(entry, &audit_filter_list[i], list) {
1289 struct audit_rule *rule;
1290
1291 rule = audit_krule_to_rule(&entry->rule);
1292 if (unlikely(!rule))
1293 break;
Al Viro9044e6b2006-05-22 01:09:24 -04001294 skb = audit_make_reply(pid, seq, AUDIT_LIST, 0, 1,
Amy Griffis93315ed2006-02-07 12:05:27 -05001295 rule, sizeof(*rule));
Al Viro9044e6b2006-05-22 01:09:24 -04001296 if (skb)
1297 skb_queue_tail(q, skb);
Amy Griffis93315ed2006-02-07 12:05:27 -05001298 kfree(rule);
1299 }
David Woodhousefe7752b2005-12-15 18:33:52 +00001300 }
Amy Griffisf368c07d2006-04-07 16:55:56 -04001301 for (i = 0; i < AUDIT_INODE_BUCKETS; i++) {
1302 list_for_each_entry(entry, &audit_inode_hash[i], list) {
1303 struct audit_rule *rule;
1304
1305 rule = audit_krule_to_rule(&entry->rule);
1306 if (unlikely(!rule))
1307 break;
1308 skb = audit_make_reply(pid, seq, AUDIT_LIST, 0, 1,
1309 rule, sizeof(*rule));
1310 if (skb)
1311 skb_queue_tail(q, skb);
1312 kfree(rule);
1313 }
1314 }
Al Viro9044e6b2006-05-22 01:09:24 -04001315 skb = audit_make_reply(pid, seq, AUDIT_LIST, 1, 1, NULL, 0);
1316 if (skb)
1317 skb_queue_tail(q, skb);
David Woodhousefe7752b2005-12-15 18:33:52 +00001318}
1319
Amy Griffis93315ed2006-02-07 12:05:27 -05001320/* List rules using struct audit_rule_data. */
Al Viro9044e6b2006-05-22 01:09:24 -04001321static void audit_list_rules(int pid, int seq, struct sk_buff_head *q)
Amy Griffis93315ed2006-02-07 12:05:27 -05001322{
Al Viro9044e6b2006-05-22 01:09:24 -04001323 struct sk_buff *skb;
Amy Griffis93315ed2006-02-07 12:05:27 -05001324 struct audit_entry *e;
1325 int i;
1326
Amy Griffisf368c07d2006-04-07 16:55:56 -04001327 /* This is a blocking read, so use audit_filter_mutex instead of rcu
1328 * iterator to sync with list writers. */
Amy Griffis93315ed2006-02-07 12:05:27 -05001329 for (i=0; i<AUDIT_NR_FILTERS; i++) {
1330 list_for_each_entry(e, &audit_filter_list[i], list) {
1331 struct audit_rule_data *data;
1332
1333 data = audit_krule_to_data(&e->rule);
1334 if (unlikely(!data))
1335 break;
Al Viro9044e6b2006-05-22 01:09:24 -04001336 skb = audit_make_reply(pid, seq, AUDIT_LIST_RULES, 0, 1,
Amy Griffisf368c07d2006-04-07 16:55:56 -04001337 data, sizeof(*data) + data->buflen);
1338 if (skb)
1339 skb_queue_tail(q, skb);
1340 kfree(data);
1341 }
1342 }
1343 for (i=0; i< AUDIT_INODE_BUCKETS; i++) {
1344 list_for_each_entry(e, &audit_inode_hash[i], list) {
1345 struct audit_rule_data *data;
1346
1347 data = audit_krule_to_data(&e->rule);
1348 if (unlikely(!data))
1349 break;
1350 skb = audit_make_reply(pid, seq, AUDIT_LIST_RULES, 0, 1,
1351 data, sizeof(*data) + data->buflen);
Al Viro9044e6b2006-05-22 01:09:24 -04001352 if (skb)
1353 skb_queue_tail(q, skb);
Amy Griffis93315ed2006-02-07 12:05:27 -05001354 kfree(data);
1355 }
1356 }
Al Viro9044e6b2006-05-22 01:09:24 -04001357 skb = audit_make_reply(pid, seq, AUDIT_LIST_RULES, 1, 1, NULL, 0);
1358 if (skb)
1359 skb_queue_tail(q, skb);
Amy Griffis93315ed2006-02-07 12:05:27 -05001360}
1361
Amy Griffis5adc8a62006-06-14 18:45:21 -04001362/* Log rule additions and removals */
1363static void audit_log_rule_change(uid_t loginuid, u32 sid, char *action,
1364 struct audit_krule *rule, int res)
1365{
1366 struct audit_buffer *ab;
1367
1368 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
1369 if (!ab)
1370 return;
1371 audit_log_format(ab, "auid=%u", loginuid);
1372 if (sid) {
1373 char *ctx = NULL;
1374 u32 len;
1375 if (selinux_ctxid_to_string(sid, &ctx, &len))
1376 audit_log_format(ab, " ssid=%u", sid);
1377 else
1378 audit_log_format(ab, " subj=%s", ctx);
1379 kfree(ctx);
1380 }
1381 audit_log_format(ab, " %s rule key=", action);
1382 if (rule->filterkey)
1383 audit_log_untrustedstring(ab, rule->filterkey);
1384 else
1385 audit_log_format(ab, "(null)");
1386 audit_log_format(ab, " list=%d res=%d", rule->listnr, res);
1387 audit_log_end(ab);
1388}
1389
David Woodhousefe7752b2005-12-15 18:33:52 +00001390/**
1391 * audit_receive_filter - apply all rules to the specified message type
1392 * @type: audit message type
1393 * @pid: target pid for netlink audit messages
1394 * @uid: target uid for netlink audit messages
1395 * @seq: netlink audit message sequence (serial) number
1396 * @data: payload data
Amy Griffis93315ed2006-02-07 12:05:27 -05001397 * @datasz: size of payload data
David Woodhousefe7752b2005-12-15 18:33:52 +00001398 * @loginuid: loginuid of sender
Steve Grubbce29b682006-04-01 18:29:34 -05001399 * @sid: SE Linux Security ID of sender
David Woodhousefe7752b2005-12-15 18:33:52 +00001400 */
1401int audit_receive_filter(int type, int pid, int uid, int seq, void *data,
Steve Grubbce29b682006-04-01 18:29:34 -05001402 size_t datasz, uid_t loginuid, u32 sid)
David Woodhousefe7752b2005-12-15 18:33:52 +00001403{
1404 struct task_struct *tsk;
Al Viro9044e6b2006-05-22 01:09:24 -04001405 struct audit_netlink_list *dest;
Amy Griffis93315ed2006-02-07 12:05:27 -05001406 int err = 0;
1407 struct audit_entry *entry;
David Woodhousefe7752b2005-12-15 18:33:52 +00001408
1409 switch (type) {
1410 case AUDIT_LIST:
Amy Griffis93315ed2006-02-07 12:05:27 -05001411 case AUDIT_LIST_RULES:
David Woodhousefe7752b2005-12-15 18:33:52 +00001412 /* We can't just spew out the rules here because we might fill
1413 * the available socket buffer space and deadlock waiting for
1414 * auditctl to read from it... which isn't ever going to
1415 * happen if we're actually running in the context of auditctl
1416 * trying to _send_ the stuff */
1417
Al Viro9044e6b2006-05-22 01:09:24 -04001418 dest = kmalloc(sizeof(struct audit_netlink_list), GFP_KERNEL);
David Woodhousefe7752b2005-12-15 18:33:52 +00001419 if (!dest)
1420 return -ENOMEM;
Al Viro9044e6b2006-05-22 01:09:24 -04001421 dest->pid = pid;
1422 skb_queue_head_init(&dest->q);
David Woodhousefe7752b2005-12-15 18:33:52 +00001423
Amy Griffisf368c07d2006-04-07 16:55:56 -04001424 mutex_lock(&audit_filter_mutex);
Amy Griffis93315ed2006-02-07 12:05:27 -05001425 if (type == AUDIT_LIST)
Al Viro9044e6b2006-05-22 01:09:24 -04001426 audit_list(pid, seq, &dest->q);
Amy Griffis93315ed2006-02-07 12:05:27 -05001427 else
Al Viro9044e6b2006-05-22 01:09:24 -04001428 audit_list_rules(pid, seq, &dest->q);
Amy Griffisf368c07d2006-04-07 16:55:56 -04001429 mutex_unlock(&audit_filter_mutex);
Al Viro9044e6b2006-05-22 01:09:24 -04001430
1431 tsk = kthread_run(audit_send_list, dest, "audit_send_list");
David Woodhousefe7752b2005-12-15 18:33:52 +00001432 if (IS_ERR(tsk)) {
Al Viro9044e6b2006-05-22 01:09:24 -04001433 skb_queue_purge(&dest->q);
David Woodhousefe7752b2005-12-15 18:33:52 +00001434 kfree(dest);
1435 err = PTR_ERR(tsk);
1436 }
1437 break;
1438 case AUDIT_ADD:
Amy Griffis93315ed2006-02-07 12:05:27 -05001439 case AUDIT_ADD_RULE:
1440 if (type == AUDIT_ADD)
1441 entry = audit_rule_to_entry(data);
1442 else
1443 entry = audit_data_to_entry(data, datasz);
1444 if (IS_ERR(entry))
1445 return PTR_ERR(entry);
David Woodhousefe7752b2005-12-15 18:33:52 +00001446
Amy Griffis93315ed2006-02-07 12:05:27 -05001447 err = audit_add_rule(entry,
1448 &audit_filter_list[entry->rule.listnr]);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001449 audit_log_rule_change(loginuid, sid, "add", &entry->rule, !err);
Steve Grubb5d330102006-01-09 09:48:17 -05001450
1451 if (err)
Amy Griffis93315ed2006-02-07 12:05:27 -05001452 audit_free_rule(entry);
David Woodhousefe7752b2005-12-15 18:33:52 +00001453 break;
1454 case AUDIT_DEL:
Amy Griffis93315ed2006-02-07 12:05:27 -05001455 case AUDIT_DEL_RULE:
1456 if (type == AUDIT_DEL)
1457 entry = audit_rule_to_entry(data);
1458 else
1459 entry = audit_data_to_entry(data, datasz);
1460 if (IS_ERR(entry))
1461 return PTR_ERR(entry);
David Woodhousefe7752b2005-12-15 18:33:52 +00001462
Amy Griffis93315ed2006-02-07 12:05:27 -05001463 err = audit_del_rule(entry,
1464 &audit_filter_list[entry->rule.listnr]);
Amy Griffis5adc8a62006-06-14 18:45:21 -04001465 audit_log_rule_change(loginuid, sid, "remove", &entry->rule,
1466 !err);
Steve Grubb5d330102006-01-09 09:48:17 -05001467
Amy Griffis93315ed2006-02-07 12:05:27 -05001468 audit_free_rule(entry);
David Woodhousefe7752b2005-12-15 18:33:52 +00001469 break;
1470 default:
1471 return -EINVAL;
1472 }
1473
1474 return err;
1475}
1476
1477int audit_comparator(const u32 left, const u32 op, const u32 right)
1478{
1479 switch (op) {
1480 case AUDIT_EQUAL:
1481 return (left == right);
1482 case AUDIT_NOT_EQUAL:
1483 return (left != right);
1484 case AUDIT_LESS_THAN:
1485 return (left < right);
1486 case AUDIT_LESS_THAN_OR_EQUAL:
1487 return (left <= right);
1488 case AUDIT_GREATER_THAN:
1489 return (left > right);
1490 case AUDIT_GREATER_THAN_OR_EQUAL:
1491 return (left >= right);
David Woodhousefe7752b2005-12-15 18:33:52 +00001492 }
Dustin Kirklandd9d9ec62006-02-16 13:40:01 -06001493 BUG();
1494 return 0;
David Woodhousefe7752b2005-12-15 18:33:52 +00001495}
1496
Amy Griffisf368c07d2006-04-07 16:55:56 -04001497/* Compare given dentry name with last component in given path,
1498 * return of 0 indicates a match. */
Amy Griffis9c937dc2006-06-08 23:19:31 -04001499int audit_compare_dname_path(const char *dname, const char *path,
1500 int *dirlen)
Amy Griffisf368c07d2006-04-07 16:55:56 -04001501{
1502 int dlen, plen;
1503 const char *p;
David Woodhousefe7752b2005-12-15 18:33:52 +00001504
Amy Griffisf368c07d2006-04-07 16:55:56 -04001505 if (!dname || !path)
1506 return 1;
1507
1508 dlen = strlen(dname);
1509 plen = strlen(path);
1510 if (plen < dlen)
1511 return 1;
1512
1513 /* disregard trailing slashes */
1514 p = path + plen - 1;
1515 while ((*p == '/') && (p > path))
1516 p--;
1517
1518 /* find last path component */
1519 p = p - dlen + 1;
1520 if (p < path)
1521 return 1;
1522 else if (p > path) {
1523 if (*--p != '/')
1524 return 1;
1525 else
1526 p++;
1527 }
1528
Amy Griffis9c937dc2006-06-08 23:19:31 -04001529 /* return length of path's directory component */
1530 if (dirlen)
1531 *dirlen = p - path;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001532 return strncmp(p, dname, dlen);
1533}
David Woodhousefe7752b2005-12-15 18:33:52 +00001534
1535static int audit_filter_user_rules(struct netlink_skb_parms *cb,
Amy Griffis93315ed2006-02-07 12:05:27 -05001536 struct audit_krule *rule,
David Woodhousefe7752b2005-12-15 18:33:52 +00001537 enum audit_state *state)
1538{
1539 int i;
1540
1541 for (i = 0; i < rule->field_count; i++) {
Amy Griffis93315ed2006-02-07 12:05:27 -05001542 struct audit_field *f = &rule->fields[i];
David Woodhousefe7752b2005-12-15 18:33:52 +00001543 int result = 0;
1544
Amy Griffis93315ed2006-02-07 12:05:27 -05001545 switch (f->type) {
David Woodhousefe7752b2005-12-15 18:33:52 +00001546 case AUDIT_PID:
Amy Griffis93315ed2006-02-07 12:05:27 -05001547 result = audit_comparator(cb->creds.pid, f->op, f->val);
David Woodhousefe7752b2005-12-15 18:33:52 +00001548 break;
1549 case AUDIT_UID:
Amy Griffis93315ed2006-02-07 12:05:27 -05001550 result = audit_comparator(cb->creds.uid, f->op, f->val);
David Woodhousefe7752b2005-12-15 18:33:52 +00001551 break;
1552 case AUDIT_GID:
Amy Griffis93315ed2006-02-07 12:05:27 -05001553 result = audit_comparator(cb->creds.gid, f->op, f->val);
David Woodhousefe7752b2005-12-15 18:33:52 +00001554 break;
1555 case AUDIT_LOGINUID:
Amy Griffis93315ed2006-02-07 12:05:27 -05001556 result = audit_comparator(cb->loginuid, f->op, f->val);
David Woodhousefe7752b2005-12-15 18:33:52 +00001557 break;
1558 }
1559
1560 if (!result)
1561 return 0;
1562 }
1563 switch (rule->action) {
1564 case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
David Woodhousefe7752b2005-12-15 18:33:52 +00001565 case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
1566 }
1567 return 1;
1568}
1569
1570int audit_filter_user(struct netlink_skb_parms *cb, int type)
1571{
1572 struct audit_entry *e;
1573 enum audit_state state;
1574 int ret = 1;
1575
1576 rcu_read_lock();
1577 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
1578 if (audit_filter_user_rules(cb, &e->rule, &state)) {
1579 if (state == AUDIT_DISABLED)
1580 ret = 0;
1581 break;
1582 }
1583 }
1584 rcu_read_unlock();
1585
1586 return ret; /* Audit by default */
1587}
1588
1589int audit_filter_type(int type)
1590{
1591 struct audit_entry *e;
1592 int result = 0;
1593
1594 rcu_read_lock();
1595 if (list_empty(&audit_filter_list[AUDIT_FILTER_TYPE]))
1596 goto unlock_and_return;
1597
1598 list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TYPE],
1599 list) {
David Woodhousefe7752b2005-12-15 18:33:52 +00001600 int i;
Amy Griffis93315ed2006-02-07 12:05:27 -05001601 for (i = 0; i < e->rule.field_count; i++) {
1602 struct audit_field *f = &e->rule.fields[i];
1603 if (f->type == AUDIT_MSGTYPE) {
1604 result = audit_comparator(type, f->op, f->val);
David Woodhousefe7752b2005-12-15 18:33:52 +00001605 if (!result)
1606 break;
1607 }
1608 }
1609 if (result)
1610 goto unlock_and_return;
1611 }
1612unlock_and_return:
1613 rcu_read_unlock();
1614 return result;
1615}
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001616
1617/* Check to see if the rule contains any selinux fields. Returns 1 if there
1618 are selinux fields specified in the rule, 0 otherwise. */
1619static inline int audit_rule_has_selinux(struct audit_krule *rule)
1620{
1621 int i;
1622
1623 for (i = 0; i < rule->field_count; i++) {
1624 struct audit_field *f = &rule->fields[i];
1625 switch (f->type) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05001626 case AUDIT_SUBJ_USER:
1627 case AUDIT_SUBJ_ROLE:
1628 case AUDIT_SUBJ_TYPE:
1629 case AUDIT_SUBJ_SEN:
1630 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05001631 case AUDIT_OBJ_USER:
1632 case AUDIT_OBJ_ROLE:
1633 case AUDIT_OBJ_TYPE:
1634 case AUDIT_OBJ_LEV_LOW:
1635 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001636 return 1;
1637 }
1638 }
1639
1640 return 0;
1641}
1642
1643/* This function will re-initialize the se_rule field of all applicable rules.
1644 * It will traverse the filter lists serarching for rules that contain selinux
1645 * specific filter fields. When such a rule is found, it is copied, the
1646 * selinux field is re-initialized, and the old rule is replaced with the
1647 * updated rule. */
1648int selinux_audit_rule_update(void)
1649{
1650 struct audit_entry *entry, *n, *nentry;
Amy Griffisf368c07d2006-04-07 16:55:56 -04001651 struct audit_watch *watch;
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001652 int i, err = 0;
1653
Amy Griffisf368c07d2006-04-07 16:55:56 -04001654 /* audit_filter_mutex synchronizes the writers */
1655 mutex_lock(&audit_filter_mutex);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001656
1657 for (i = 0; i < AUDIT_NR_FILTERS; i++) {
1658 list_for_each_entry_safe(entry, n, &audit_filter_list[i], list) {
1659 if (!audit_rule_has_selinux(&entry->rule))
1660 continue;
1661
Amy Griffisf368c07d2006-04-07 16:55:56 -04001662 watch = entry->rule.watch;
1663 nentry = audit_dupe_rule(&entry->rule, watch);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001664 if (unlikely(IS_ERR(nentry))) {
1665 /* save the first error encountered for the
1666 * return value */
1667 if (!err)
1668 err = PTR_ERR(nentry);
1669 audit_panic("error updating selinux filters");
Amy Griffisf368c07d2006-04-07 16:55:56 -04001670 if (watch)
1671 list_del(&entry->rule.rlist);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001672 list_del_rcu(&entry->list);
1673 } else {
Amy Griffisf368c07d2006-04-07 16:55:56 -04001674 if (watch) {
1675 list_add(&nentry->rule.rlist,
1676 &watch->rules);
1677 list_del(&entry->rule.rlist);
1678 }
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001679 list_replace_rcu(&entry->list, &nentry->list);
1680 }
1681 call_rcu(&entry->rcu, audit_free_rule_rcu);
1682 }
1683 }
1684
Amy Griffisf368c07d2006-04-07 16:55:56 -04001685 mutex_unlock(&audit_filter_mutex);
Darrel Goeddel3dc7e312006-03-10 18:14:06 -06001686
1687 return err;
1688}
Amy Griffisf368c07d2006-04-07 16:55:56 -04001689
1690/* Update watch data in audit rules based on inotify events. */
1691void audit_handle_ievent(struct inotify_watch *i_watch, u32 wd, u32 mask,
1692 u32 cookie, const char *dname, struct inode *inode)
1693{
1694 struct audit_parent *parent;
1695
1696 parent = container_of(i_watch, struct audit_parent, wdata);
1697
1698 if (mask & (IN_CREATE|IN_MOVED_TO) && inode)
1699 audit_update_watch(parent, dname, inode->i_sb->s_dev,
1700 inode->i_ino, 0);
1701 else if (mask & (IN_DELETE|IN_MOVED_FROM))
1702 audit_update_watch(parent, dname, (dev_t)-1, (unsigned long)-1, 1);
1703 /* inotify automatically removes the watch and sends IN_IGNORED */
1704 else if (mask & (IN_DELETE_SELF|IN_UNMOUNT))
1705 audit_remove_parent_watches(parent);
1706 /* inotify does not remove the watch, so remove it manually */
1707 else if(mask & IN_MOVE_SELF) {
1708 audit_remove_parent_watches(parent);
1709 inotify_remove_watch_locked(audit_ih, i_watch);
1710 } else if (mask & IN_IGNORED)
1711 put_inotify_watch(i_watch);
1712}