1 /* auditfilter.c -- filtering of audit events
3 * Copyright 2003-2004 Red Hat, Inc.
4 * Copyright 2005 Hewlett-Packard Development Company, L.P.
5 * Copyright 2005 IBM Corporation
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.
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.
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
22 #include <linux/kernel.h>
23 #include <linux/audit.h>
24 #include <linux/kthread.h>
25 #include <linux/mutex.h>
27 #include <linux/namei.h>
28 #include <linux/netlink.h>
29 #include <linux/sched.h>
30 #include <linux/inotify.h>
31 #include <linux/selinux.h>
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.
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.
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.
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 */
67 * audit_parent status flags:
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.
75 #define AUDIT_PARENT_INVALID 0x001
77 /* Audit filter lists, defined in <linux/audit.h> */
78 struct 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
90 static DEFINE_MUTEX(audit_filter_mutex
);
93 extern struct inotify_handle
*audit_ih
;
95 /* Inotify events we care about. */
96 #define AUDIT_IN_WATCH IN_MOVE|IN_CREATE|IN_DELETE|IN_DELETE_SELF|IN_MOVE_SELF
98 void audit_free_parent(struct inotify_watch
*i_watch
)
100 struct audit_parent
*parent
;
102 parent
= container_of(i_watch
, struct audit_parent
, wdata
);
103 WARN_ON(!list_empty(&parent
->watches
));
107 static inline void audit_get_watch(struct audit_watch
*watch
)
109 atomic_inc(&watch
->count
);
112 static void audit_put_watch(struct audit_watch
*watch
)
114 if (atomic_dec_and_test(&watch
->count
)) {
115 WARN_ON(watch
->parent
);
116 WARN_ON(!list_empty(&watch
->rules
));
122 static void audit_remove_watch(struct audit_watch
*watch
)
124 list_del(&watch
->wlist
);
125 put_inotify_watch(&watch
->parent
->wdata
);
126 watch
->parent
= NULL
;
127 audit_put_watch(watch
); /* match initial get */
130 static inline void audit_free_rule(struct audit_entry
*e
)
134 /* some rules don't have associated watches */
136 audit_put_watch(e
->rule
.watch
);
138 for (i
= 0; i
< e
->rule
.field_count
; i
++) {
139 struct audit_field
*f
= &e
->rule
.fields
[i
];
141 selinux_audit_rule_free(f
->se_rule
);
143 kfree(e
->rule
.fields
);
144 kfree(e
->rule
.filterkey
);
148 static inline void audit_free_rule_rcu(struct rcu_head
*head
)
150 struct audit_entry
*e
= container_of(head
, struct audit_entry
, rcu
);
154 /* Initialize a parent watch entry. */
155 static struct audit_parent
*audit_init_parent(struct nameidata
*ndp
)
157 struct audit_parent
*parent
;
160 parent
= kzalloc(sizeof(*parent
), GFP_KERNEL
);
161 if (unlikely(!parent
))
162 return ERR_PTR(-ENOMEM
);
164 INIT_LIST_HEAD(&parent
->watches
);
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
,
173 audit_free_parent(&parent
->wdata
);
180 /* Initialize a watch entry. */
181 static struct audit_watch
*audit_init_watch(char *path
)
183 struct audit_watch
*watch
;
185 watch
= kzalloc(sizeof(*watch
), GFP_KERNEL
);
186 if (unlikely(!watch
))
187 return ERR_PTR(-ENOMEM
);
189 INIT_LIST_HEAD(&watch
->rules
);
190 atomic_set(&watch
->count
, 1);
192 watch
->dev
= (dev_t
)-1;
193 watch
->ino
= (unsigned long)-1;
198 /* Initialize an audit filterlist entry. */
199 static inline struct audit_entry
*audit_init_entry(u32 field_count
)
201 struct audit_entry
*entry
;
202 struct audit_field
*fields
;
204 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
205 if (unlikely(!entry
))
208 fields
= kzalloc(sizeof(*fields
) * field_count
, GFP_KERNEL
);
209 if (unlikely(!fields
)) {
213 entry
->rule
.fields
= fields
;
218 /* Unpack a filter field's string representation from user-space
220 static char *audit_unpack_string(void **bufp
, size_t *remain
, size_t len
)
224 if (!*bufp
|| (len
== 0) || (len
> *remain
))
225 return ERR_PTR(-EINVAL
);
227 /* Of the currently implemented string fields, PATH_MAX
228 * defines the longest valid length.
231 return ERR_PTR(-ENAMETOOLONG
);
233 str
= kmalloc(len
+ 1, GFP_KERNEL
);
235 return ERR_PTR(-ENOMEM
);
237 memcpy(str
, *bufp
, len
);
245 /* Translate an inode field to kernel respresentation. */
246 static inline int audit_to_inode(struct audit_krule
*krule
,
247 struct audit_field
*f
)
249 if (krule
->listnr
!= AUDIT_FILTER_EXIT
||
250 krule
->watch
|| krule
->inode_f
)
257 /* Translate a watch string to kernel respresentation. */
258 static int audit_to_watch(struct audit_krule
*krule
, char *path
, int len
,
261 struct audit_watch
*watch
;
266 if (path
[0] != '/' || path
[len
-1] == '/' ||
267 krule
->listnr
!= AUDIT_FILTER_EXIT
||
269 krule
->inode_f
|| krule
->watch
) /* 1 inode # per rule, for hash */
272 watch
= audit_init_watch(path
);
273 if (unlikely(IS_ERR(watch
)))
274 return PTR_ERR(watch
);
276 audit_get_watch(watch
);
277 krule
->watch
= watch
;
282 static __u32
*classes
[AUDIT_SYSCALL_CLASSES
];
284 int __init
audit_register_class(int class, unsigned *list
)
286 __u32
*p
= kzalloc(AUDIT_BITMASK_SIZE
* sizeof(__u32
), GFP_KERNEL
);
289 while (*list
!= ~0U) {
290 unsigned n
= *list
++;
291 if (n
>= AUDIT_BITMASK_SIZE
* 32 - AUDIT_SYSCALL_CLASSES
) {
295 p
[AUDIT_WORD(n
)] |= AUDIT_BIT(n
);
297 if (class >= AUDIT_SYSCALL_CLASSES
|| classes
[class]) {
305 int audit_match_class(int class, unsigned syscall
)
307 if (unlikely(syscall
>= AUDIT_BITMASK_SIZE
* 32))
309 if (unlikely(class >= AUDIT_SYSCALL_CLASSES
|| !classes
[class]))
311 return classes
[class][AUDIT_WORD(syscall
)] & AUDIT_BIT(syscall
);
314 #ifdef CONFIG_AUDITSYSCALL
315 static inline int audit_match_class_bits(int class, u32
*mask
)
319 if (classes
[class]) {
320 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++)
321 if (mask
[i
] & classes
[class][i
])
327 static int audit_match_signal(struct audit_entry
*entry
)
329 struct audit_field
*arch
= entry
->rule
.arch_f
;
332 /* When arch is unspecified, we must check both masks on biarch
333 * as syscall number alone is ambiguous. */
334 return (audit_match_class_bits(AUDIT_CLASS_SIGNAL
,
336 audit_match_class_bits(AUDIT_CLASS_SIGNAL_32
,
340 switch(audit_classify_arch(arch
->val
)) {
342 return (audit_match_class_bits(AUDIT_CLASS_SIGNAL
,
344 case 1: /* 32bit on biarch */
345 return (audit_match_class_bits(AUDIT_CLASS_SIGNAL_32
,
353 /* Common user-space to kernel rule translation. */
354 static inline struct audit_entry
*audit_to_entry_common(struct audit_rule
*rule
)
357 struct audit_entry
*entry
;
361 listnr
= rule
->flags
& ~AUDIT_FILTER_PREPEND
;
365 case AUDIT_FILTER_USER
:
366 case AUDIT_FILTER_TYPE
:
367 #ifdef CONFIG_AUDITSYSCALL
368 case AUDIT_FILTER_ENTRY
:
369 case AUDIT_FILTER_EXIT
:
370 case AUDIT_FILTER_TASK
:
374 if (unlikely(rule
->action
== AUDIT_POSSIBLE
)) {
375 printk(KERN_ERR
"AUDIT_POSSIBLE is deprecated\n");
378 if (rule
->action
!= AUDIT_NEVER
&& rule
->action
!= AUDIT_ALWAYS
)
380 if (rule
->field_count
> AUDIT_MAX_FIELDS
)
384 entry
= audit_init_entry(rule
->field_count
);
388 entry
->rule
.flags
= rule
->flags
& AUDIT_FILTER_PREPEND
;
389 entry
->rule
.listnr
= listnr
;
390 entry
->rule
.action
= rule
->action
;
391 entry
->rule
.field_count
= rule
->field_count
;
393 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++)
394 entry
->rule
.mask
[i
] = rule
->mask
[i
];
396 for (i
= 0; i
< AUDIT_SYSCALL_CLASSES
; i
++) {
397 int bit
= AUDIT_BITMASK_SIZE
* 32 - i
- 1;
398 __u32
*p
= &entry
->rule
.mask
[AUDIT_WORD(bit
)];
401 if (!(*p
& AUDIT_BIT(bit
)))
403 *p
&= ~AUDIT_BIT(bit
);
407 for (j
= 0; j
< AUDIT_BITMASK_SIZE
; j
++)
408 entry
->rule
.mask
[j
] |= class[j
];
418 /* Translate struct audit_rule to kernel's rule respresentation.
419 * Exists for backward compatibility with userspace. */
420 static struct audit_entry
*audit_rule_to_entry(struct audit_rule
*rule
)
422 struct audit_entry
*entry
;
423 struct audit_field
*f
;
427 entry
= audit_to_entry_common(rule
);
431 for (i
= 0; i
< rule
->field_count
; i
++) {
432 struct audit_field
*f
= &entry
->rule
.fields
[i
];
434 f
->op
= rule
->fields
[i
] & (AUDIT_NEGATE
|AUDIT_OPERATORS
);
435 f
->type
= rule
->fields
[i
] & ~(AUDIT_NEGATE
|AUDIT_OPERATORS
);
436 f
->val
= rule
->values
[i
];
459 /* bit ops are only useful on syscall args */
460 if (f
->op
== AUDIT_BIT_MASK
||
461 f
->op
== AUDIT_BIT_TEST
) {
471 /* arch is only allowed to be = or != */
473 if ((f
->op
!= AUDIT_NOT_EQUAL
) && (f
->op
!= AUDIT_EQUAL
)
474 && (f
->op
!= AUDIT_NEGATE
) && (f
->op
)) {
478 entry
->rule
.arch_f
= f
;
485 err
= audit_to_inode(&entry
->rule
, f
);
491 entry
->rule
.vers_ops
= (f
->op
& AUDIT_OPERATORS
) ? 2 : 1;
493 /* Support for legacy operators where
494 * AUDIT_NEGATE bit signifies != and otherwise assumes == */
495 if (f
->op
& AUDIT_NEGATE
)
496 f
->op
= AUDIT_NOT_EQUAL
;
499 else if (f
->op
== AUDIT_OPERATORS
) {
505 f
= entry
->rule
.inode_f
;
508 case AUDIT_NOT_EQUAL
:
509 entry
->rule
.inode_f
= NULL
;
522 audit_free_rule(entry
);
526 /* Translate struct audit_rule_data to kernel's rule respresentation. */
527 static struct audit_entry
*audit_data_to_entry(struct audit_rule_data
*data
,
531 struct audit_entry
*entry
;
532 struct audit_field
*f
;
534 size_t remain
= datasz
- sizeof(struct audit_rule_data
);
538 entry
= audit_to_entry_common((struct audit_rule
*)data
);
543 entry
->rule
.vers_ops
= 2;
544 for (i
= 0; i
< data
->field_count
; i
++) {
545 struct audit_field
*f
= &entry
->rule
.fields
[i
];
548 if (!(data
->fieldflags
[i
] & AUDIT_OPERATORS
) ||
549 data
->fieldflags
[i
] & ~AUDIT_OPERATORS
)
552 f
->op
= data
->fieldflags
[i
] & AUDIT_OPERATORS
;
553 f
->type
= data
->fields
[i
];
554 f
->val
= data
->values
[i
];
581 entry
->rule
.arch_f
= f
;
583 case AUDIT_SUBJ_USER
:
584 case AUDIT_SUBJ_ROLE
:
585 case AUDIT_SUBJ_TYPE
:
591 case AUDIT_OBJ_LEV_LOW
:
592 case AUDIT_OBJ_LEV_HIGH
:
593 str
= audit_unpack_string(&bufp
, &remain
, f
->val
);
596 entry
->rule
.buflen
+= f
->val
;
598 err
= selinux_audit_rule_init(f
->type
, f
->op
, str
,
600 /* Keep currently invalid fields around in case they
601 * become valid after a policy reload. */
602 if (err
== -EINVAL
) {
603 printk(KERN_WARNING
"audit rule for selinux "
604 "\'%s\' is invalid\n", str
);
614 str
= audit_unpack_string(&bufp
, &remain
, f
->val
);
617 entry
->rule
.buflen
+= f
->val
;
619 err
= audit_to_watch(&entry
->rule
, str
, f
->val
, f
->op
);
626 err
= audit_to_inode(&entry
->rule
, f
);
630 case AUDIT_FILTERKEY
:
632 if (entry
->rule
.filterkey
|| f
->val
> AUDIT_MAX_KEY_LEN
)
634 str
= audit_unpack_string(&bufp
, &remain
, f
->val
);
637 entry
->rule
.buflen
+= f
->val
;
638 entry
->rule
.filterkey
= str
;
649 f
= entry
->rule
.inode_f
;
652 case AUDIT_NOT_EQUAL
:
653 entry
->rule
.inode_f
= NULL
;
666 audit_free_rule(entry
);
670 /* Pack a filter field's string representation into data block. */
671 static inline size_t audit_pack_string(void **bufp
, char *str
)
673 size_t len
= strlen(str
);
675 memcpy(*bufp
, str
, len
);
681 /* Translate kernel rule respresentation to struct audit_rule.
682 * Exists for backward compatibility with userspace. */
683 static struct audit_rule
*audit_krule_to_rule(struct audit_krule
*krule
)
685 struct audit_rule
*rule
;
688 rule
= kzalloc(sizeof(*rule
), GFP_KERNEL
);
692 rule
->flags
= krule
->flags
| krule
->listnr
;
693 rule
->action
= krule
->action
;
694 rule
->field_count
= krule
->field_count
;
695 for (i
= 0; i
< rule
->field_count
; i
++) {
696 rule
->values
[i
] = krule
->fields
[i
].val
;
697 rule
->fields
[i
] = krule
->fields
[i
].type
;
699 if (krule
->vers_ops
== 1) {
700 if (krule
->fields
[i
].op
& AUDIT_NOT_EQUAL
)
701 rule
->fields
[i
] |= AUDIT_NEGATE
;
703 rule
->fields
[i
] |= krule
->fields
[i
].op
;
706 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++) rule
->mask
[i
] = krule
->mask
[i
];
711 /* Translate kernel rule respresentation to struct audit_rule_data. */
712 static struct audit_rule_data
*audit_krule_to_data(struct audit_krule
*krule
)
714 struct audit_rule_data
*data
;
718 data
= kmalloc(sizeof(*data
) + krule
->buflen
, GFP_KERNEL
);
721 memset(data
, 0, sizeof(*data
));
723 data
->flags
= krule
->flags
| krule
->listnr
;
724 data
->action
= krule
->action
;
725 data
->field_count
= krule
->field_count
;
727 for (i
= 0; i
< data
->field_count
; i
++) {
728 struct audit_field
*f
= &krule
->fields
[i
];
730 data
->fields
[i
] = f
->type
;
731 data
->fieldflags
[i
] = f
->op
;
733 case AUDIT_SUBJ_USER
:
734 case AUDIT_SUBJ_ROLE
:
735 case AUDIT_SUBJ_TYPE
:
741 case AUDIT_OBJ_LEV_LOW
:
742 case AUDIT_OBJ_LEV_HIGH
:
743 data
->buflen
+= data
->values
[i
] =
744 audit_pack_string(&bufp
, f
->se_str
);
747 data
->buflen
+= data
->values
[i
] =
748 audit_pack_string(&bufp
, krule
->watch
->path
);
750 case AUDIT_FILTERKEY
:
751 data
->buflen
+= data
->values
[i
] =
752 audit_pack_string(&bufp
, krule
->filterkey
);
755 data
->values
[i
] = f
->val
;
758 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++) data
->mask
[i
] = krule
->mask
[i
];
763 /* Compare two rules in kernel format. Considered success if rules
765 static int audit_compare_rule(struct audit_krule
*a
, struct audit_krule
*b
)
769 if (a
->flags
!= b
->flags
||
770 a
->listnr
!= b
->listnr
||
771 a
->action
!= b
->action
||
772 a
->field_count
!= b
->field_count
)
775 for (i
= 0; i
< a
->field_count
; i
++) {
776 if (a
->fields
[i
].type
!= b
->fields
[i
].type
||
777 a
->fields
[i
].op
!= b
->fields
[i
].op
)
780 switch(a
->fields
[i
].type
) {
781 case AUDIT_SUBJ_USER
:
782 case AUDIT_SUBJ_ROLE
:
783 case AUDIT_SUBJ_TYPE
:
789 case AUDIT_OBJ_LEV_LOW
:
790 case AUDIT_OBJ_LEV_HIGH
:
791 if (strcmp(a
->fields
[i
].se_str
, b
->fields
[i
].se_str
))
795 if (strcmp(a
->watch
->path
, b
->watch
->path
))
798 case AUDIT_FILTERKEY
:
799 /* both filterkeys exist based on above type compare */
800 if (strcmp(a
->filterkey
, b
->filterkey
))
804 if (a
->fields
[i
].val
!= b
->fields
[i
].val
)
809 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++)
810 if (a
->mask
[i
] != b
->mask
[i
])
816 /* Duplicate the given audit watch. The new watch's rules list is initialized
817 * to an empty list and wlist is undefined. */
818 static struct audit_watch
*audit_dupe_watch(struct audit_watch
*old
)
821 struct audit_watch
*new;
823 path
= kstrdup(old
->path
, GFP_KERNEL
);
825 return ERR_PTR(-ENOMEM
);
827 new = audit_init_watch(path
);
828 if (unlikely(IS_ERR(new))) {
835 get_inotify_watch(&old
->parent
->wdata
);
836 new->parent
= old
->parent
;
842 /* Duplicate selinux field information. The se_rule is opaque, so must be
844 static inline int audit_dupe_selinux_field(struct audit_field
*df
,
845 struct audit_field
*sf
)
850 /* our own copy of se_str */
851 se_str
= kstrdup(sf
->se_str
, GFP_KERNEL
);
852 if (unlikely(!se_str
))
856 /* our own (refreshed) copy of se_rule */
857 ret
= selinux_audit_rule_init(df
->type
, df
->op
, df
->se_str
,
859 /* Keep currently invalid fields around in case they
860 * become valid after a policy reload. */
861 if (ret
== -EINVAL
) {
862 printk(KERN_WARNING
"audit rule for selinux \'%s\' is "
863 "invalid\n", df
->se_str
);
870 /* Duplicate an audit rule. This will be a deep copy with the exception
871 * of the watch - that pointer is carried over. The selinux specific fields
872 * will be updated in the copy. The point is to be able to replace the old
873 * rule with the new rule in the filterlist, then free the old rule.
874 * The rlist element is undefined; list manipulations are handled apart from
875 * the initial copy. */
876 static struct audit_entry
*audit_dupe_rule(struct audit_krule
*old
,
877 struct audit_watch
*watch
)
879 u32 fcount
= old
->field_count
;
880 struct audit_entry
*entry
;
881 struct audit_krule
*new;
885 entry
= audit_init_entry(fcount
);
886 if (unlikely(!entry
))
887 return ERR_PTR(-ENOMEM
);
890 new->vers_ops
= old
->vers_ops
;
891 new->flags
= old
->flags
;
892 new->listnr
= old
->listnr
;
893 new->action
= old
->action
;
894 for (i
= 0; i
< AUDIT_BITMASK_SIZE
; i
++)
895 new->mask
[i
] = old
->mask
[i
];
896 new->buflen
= old
->buflen
;
897 new->inode_f
= old
->inode_f
;
899 new->field_count
= old
->field_count
;
900 memcpy(new->fields
, old
->fields
, sizeof(struct audit_field
) * fcount
);
902 /* deep copy this information, updating the se_rule fields, because
903 * the originals will all be freed when the old rule is freed. */
904 for (i
= 0; i
< fcount
; i
++) {
905 switch (new->fields
[i
].type
) {
906 case AUDIT_SUBJ_USER
:
907 case AUDIT_SUBJ_ROLE
:
908 case AUDIT_SUBJ_TYPE
:
914 case AUDIT_OBJ_LEV_LOW
:
915 case AUDIT_OBJ_LEV_HIGH
:
916 err
= audit_dupe_selinux_field(&new->fields
[i
],
919 case AUDIT_FILTERKEY
:
920 fk
= kstrdup(old
->filterkey
, GFP_KERNEL
);
927 audit_free_rule(entry
);
933 audit_get_watch(watch
);
940 /* Update inode info in audit rules based on filesystem event. */
941 static void audit_update_watch(struct audit_parent
*parent
,
942 const char *dname
, dev_t dev
,
943 unsigned long ino
, unsigned invalidating
)
945 struct audit_watch
*owatch
, *nwatch
, *nextw
;
946 struct audit_krule
*r
, *nextr
;
947 struct audit_entry
*oentry
, *nentry
;
948 struct audit_buffer
*ab
;
950 mutex_lock(&audit_filter_mutex
);
951 list_for_each_entry_safe(owatch
, nextw
, &parent
->watches
, wlist
) {
952 if (audit_compare_dname_path(dname
, owatch
->path
, NULL
))
955 /* If the update involves invalidating rules, do the inode-based
956 * filtering now, so we don't omit records. */
957 if (invalidating
&& current
->audit_context
&&
958 audit_filter_inodes(current
, current
->audit_context
) == AUDIT_RECORD_CONTEXT
)
959 audit_set_auditable(current
->audit_context
);
961 nwatch
= audit_dupe_watch(owatch
);
962 if (unlikely(IS_ERR(nwatch
))) {
963 mutex_unlock(&audit_filter_mutex
);
964 audit_panic("error updating watch, skipping");
970 list_for_each_entry_safe(r
, nextr
, &owatch
->rules
, rlist
) {
972 oentry
= container_of(r
, struct audit_entry
, rule
);
973 list_del(&oentry
->rule
.rlist
);
974 list_del_rcu(&oentry
->list
);
976 nentry
= audit_dupe_rule(&oentry
->rule
, nwatch
);
977 if (unlikely(IS_ERR(nentry
)))
978 audit_panic("error updating watch, removing");
980 int h
= audit_hash_ino((u32
)ino
);
981 list_add(&nentry
->rule
.rlist
, &nwatch
->rules
);
982 list_add_rcu(&nentry
->list
, &audit_inode_hash
[h
]);
985 call_rcu(&oentry
->rcu
, audit_free_rule_rcu
);
988 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
);
989 audit_log_format(ab
, "op=updated rules specifying path=");
990 audit_log_untrustedstring(ab
, owatch
->path
);
991 audit_log_format(ab
, " with dev=%u ino=%lu\n", dev
, ino
);
992 audit_log_format(ab
, " list=%d res=1", r
->listnr
);
995 audit_remove_watch(owatch
);
996 goto add_watch_to_parent
; /* event applies to a single watch */
998 mutex_unlock(&audit_filter_mutex
);
1001 add_watch_to_parent
:
1002 list_add(&nwatch
->wlist
, &parent
->watches
);
1003 mutex_unlock(&audit_filter_mutex
);
1007 /* Remove all watches & rules associated with a parent that is going away. */
1008 static void audit_remove_parent_watches(struct audit_parent
*parent
)
1010 struct audit_watch
*w
, *nextw
;
1011 struct audit_krule
*r
, *nextr
;
1012 struct audit_entry
*e
;
1013 struct audit_buffer
*ab
;
1015 mutex_lock(&audit_filter_mutex
);
1016 parent
->flags
|= AUDIT_PARENT_INVALID
;
1017 list_for_each_entry_safe(w
, nextw
, &parent
->watches
, wlist
) {
1018 list_for_each_entry_safe(r
, nextr
, &w
->rules
, rlist
) {
1019 e
= container_of(r
, struct audit_entry
, rule
);
1021 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
);
1022 audit_log_format(ab
, "op=remove rule path=");
1023 audit_log_untrustedstring(ab
, w
->path
);
1025 audit_log_format(ab
, " key=");
1026 audit_log_untrustedstring(ab
, r
->filterkey
);
1028 audit_log_format(ab
, " key=(null)");
1029 audit_log_format(ab
, " list=%d res=1", r
->listnr
);
1032 list_del(&r
->rlist
);
1033 list_del_rcu(&e
->list
);
1034 call_rcu(&e
->rcu
, audit_free_rule_rcu
);
1036 audit_remove_watch(w
);
1038 mutex_unlock(&audit_filter_mutex
);
1041 /* Unregister inotify watches for parents on in_list.
1042 * Generates an IN_IGNORED event. */
1043 static void audit_inotify_unregister(struct list_head
*in_list
)
1045 struct audit_parent
*p
, *n
;
1047 list_for_each_entry_safe(p
, n
, in_list
, ilist
) {
1048 list_del(&p
->ilist
);
1049 inotify_rm_watch(audit_ih
, &p
->wdata
);
1050 /* the put matching the get in audit_do_del_rule() */
1051 put_inotify_watch(&p
->wdata
);
1055 /* Find an existing audit rule.
1056 * Caller must hold audit_filter_mutex to prevent stale rule data. */
1057 static struct audit_entry
*audit_find_rule(struct audit_entry
*entry
,
1058 struct list_head
*list
)
1060 struct audit_entry
*e
, *found
= NULL
;
1063 if (entry
->rule
.watch
) {
1064 /* we don't know the inode number, so must walk entire hash */
1065 for (h
= 0; h
< AUDIT_INODE_BUCKETS
; h
++) {
1066 list
= &audit_inode_hash
[h
];
1067 list_for_each_entry(e
, list
, list
)
1068 if (!audit_compare_rule(&entry
->rule
, &e
->rule
)) {
1076 list_for_each_entry(e
, list
, list
)
1077 if (!audit_compare_rule(&entry
->rule
, &e
->rule
)) {
1086 /* Get path information necessary for adding watches. */
1087 static int audit_get_nd(char *path
, struct nameidata
**ndp
,
1088 struct nameidata
**ndw
)
1090 struct nameidata
*ndparent
, *ndwatch
;
1093 ndparent
= kmalloc(sizeof(*ndparent
), GFP_KERNEL
);
1094 if (unlikely(!ndparent
))
1097 ndwatch
= kmalloc(sizeof(*ndwatch
), GFP_KERNEL
);
1098 if (unlikely(!ndwatch
)) {
1103 err
= path_lookup(path
, LOOKUP_PARENT
, ndparent
);
1110 err
= path_lookup(path
, 0, ndwatch
);
1122 /* Release resources used for watch path information. */
1123 static void audit_put_nd(struct nameidata
*ndp
, struct nameidata
*ndw
)
1135 /* Associate the given rule with an existing parent inotify_watch.
1136 * Caller must hold audit_filter_mutex. */
1137 static void audit_add_to_parent(struct audit_krule
*krule
,
1138 struct audit_parent
*parent
)
1140 struct audit_watch
*w
, *watch
= krule
->watch
;
1141 int watch_found
= 0;
1143 list_for_each_entry(w
, &parent
->watches
, wlist
) {
1144 if (strcmp(watch
->path
, w
->path
))
1149 /* put krule's and initial refs to temporary watch */
1150 audit_put_watch(watch
);
1151 audit_put_watch(watch
);
1154 krule
->watch
= watch
= w
;
1159 get_inotify_watch(&parent
->wdata
);
1160 watch
->parent
= parent
;
1162 list_add(&watch
->wlist
, &parent
->watches
);
1164 list_add(&krule
->rlist
, &watch
->rules
);
1167 /* Find a matching watch entry, or add this one.
1168 * Caller must hold audit_filter_mutex. */
1169 static int audit_add_watch(struct audit_krule
*krule
, struct nameidata
*ndp
,
1170 struct nameidata
*ndw
)
1172 struct audit_watch
*watch
= krule
->watch
;
1173 struct inotify_watch
*i_watch
;
1174 struct audit_parent
*parent
;
1177 /* update watch filter fields */
1179 watch
->dev
= ndw
->dentry
->d_inode
->i_sb
->s_dev
;
1180 watch
->ino
= ndw
->dentry
->d_inode
->i_ino
;
1183 /* The audit_filter_mutex must not be held during inotify calls because
1184 * we hold it during inotify event callback processing. If an existing
1185 * inotify watch is found, inotify_find_watch() grabs a reference before
1188 mutex_unlock(&audit_filter_mutex
);
1190 if (inotify_find_watch(audit_ih
, ndp
->dentry
->d_inode
, &i_watch
) < 0) {
1191 parent
= audit_init_parent(ndp
);
1192 if (IS_ERR(parent
)) {
1193 /* caller expects mutex locked */
1194 mutex_lock(&audit_filter_mutex
);
1195 return PTR_ERR(parent
);
1198 parent
= container_of(i_watch
, struct audit_parent
, wdata
);
1200 mutex_lock(&audit_filter_mutex
);
1202 /* parent was moved before we took audit_filter_mutex */
1203 if (parent
->flags
& AUDIT_PARENT_INVALID
)
1206 audit_add_to_parent(krule
, parent
);
1208 /* match get in audit_init_parent or inotify_find_watch */
1209 put_inotify_watch(&parent
->wdata
);
1213 /* Add rule to given filterlist if not a duplicate. */
1214 static inline int audit_add_rule(struct audit_entry
*entry
,
1215 struct list_head
*list
)
1217 struct audit_entry
*e
;
1218 struct audit_field
*inode_f
= entry
->rule
.inode_f
;
1219 struct audit_watch
*watch
= entry
->rule
.watch
;
1220 struct nameidata
*ndp
= NULL
, *ndw
= NULL
;
1222 #ifdef CONFIG_AUDITSYSCALL
1225 /* If either of these, don't count towards total */
1226 if (entry
->rule
.listnr
== AUDIT_FILTER_USER
||
1227 entry
->rule
.listnr
== AUDIT_FILTER_TYPE
)
1232 h
= audit_hash_ino(inode_f
->val
);
1233 list
= &audit_inode_hash
[h
];
1236 mutex_lock(&audit_filter_mutex
);
1237 e
= audit_find_rule(entry
, list
);
1238 mutex_unlock(&audit_filter_mutex
);
1244 /* Avoid calling path_lookup under audit_filter_mutex. */
1246 err
= audit_get_nd(watch
->path
, &ndp
, &ndw
);
1251 mutex_lock(&audit_filter_mutex
);
1253 /* audit_filter_mutex is dropped and re-taken during this call */
1254 err
= audit_add_watch(&entry
->rule
, ndp
, ndw
);
1256 mutex_unlock(&audit_filter_mutex
);
1259 h
= audit_hash_ino((u32
)watch
->ino
);
1260 list
= &audit_inode_hash
[h
];
1263 if (entry
->rule
.flags
& AUDIT_FILTER_PREPEND
) {
1264 list_add_rcu(&entry
->list
, list
);
1265 entry
->rule
.flags
&= ~AUDIT_FILTER_PREPEND
;
1267 list_add_tail_rcu(&entry
->list
, list
);
1269 #ifdef CONFIG_AUDITSYSCALL
1273 if (!audit_match_signal(entry
))
1276 mutex_unlock(&audit_filter_mutex
);
1278 audit_put_nd(ndp
, ndw
); /* NULL args OK */
1282 audit_put_nd(ndp
, ndw
); /* NULL args OK */
1284 audit_put_watch(watch
); /* tmp watch, matches initial get */
1288 /* Remove an existing rule from filterlist. */
1289 static inline int audit_del_rule(struct audit_entry
*entry
,
1290 struct list_head
*list
)
1292 struct audit_entry
*e
;
1293 struct audit_field
*inode_f
= entry
->rule
.inode_f
;
1294 struct audit_watch
*watch
, *tmp_watch
= entry
->rule
.watch
;
1295 LIST_HEAD(inotify_list
);
1297 #ifdef CONFIG_AUDITSYSCALL
1300 /* If either of these, don't count towards total */
1301 if (entry
->rule
.listnr
== AUDIT_FILTER_USER
||
1302 entry
->rule
.listnr
== AUDIT_FILTER_TYPE
)
1307 h
= audit_hash_ino(inode_f
->val
);
1308 list
= &audit_inode_hash
[h
];
1311 mutex_lock(&audit_filter_mutex
);
1312 e
= audit_find_rule(entry
, list
);
1314 mutex_unlock(&audit_filter_mutex
);
1319 watch
= e
->rule
.watch
;
1321 struct audit_parent
*parent
= watch
->parent
;
1323 list_del(&e
->rule
.rlist
);
1325 if (list_empty(&watch
->rules
)) {
1326 audit_remove_watch(watch
);
1328 if (list_empty(&parent
->watches
)) {
1329 /* Put parent on the inotify un-registration
1330 * list. Grab a reference before releasing
1331 * audit_filter_mutex, to be released in
1332 * audit_inotify_unregister(). */
1333 list_add(&parent
->ilist
, &inotify_list
);
1334 get_inotify_watch(&parent
->wdata
);
1339 list_del_rcu(&e
->list
);
1340 call_rcu(&e
->rcu
, audit_free_rule_rcu
);
1342 #ifdef CONFIG_AUDITSYSCALL
1346 if (!audit_match_signal(entry
))
1349 mutex_unlock(&audit_filter_mutex
);
1351 if (!list_empty(&inotify_list
))
1352 audit_inotify_unregister(&inotify_list
);
1356 audit_put_watch(tmp_watch
); /* match initial get */
1361 /* List rules using struct audit_rule. Exists for backward
1362 * compatibility with userspace. */
1363 static void audit_list(int pid
, int seq
, struct sk_buff_head
*q
)
1365 struct sk_buff
*skb
;
1366 struct audit_entry
*entry
;
1369 /* This is a blocking read, so use audit_filter_mutex instead of rcu
1370 * iterator to sync with list writers. */
1371 for (i
=0; i
<AUDIT_NR_FILTERS
; i
++) {
1372 list_for_each_entry(entry
, &audit_filter_list
[i
], list
) {
1373 struct audit_rule
*rule
;
1375 rule
= audit_krule_to_rule(&entry
->rule
);
1376 if (unlikely(!rule
))
1378 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST
, 0, 1,
1379 rule
, sizeof(*rule
));
1381 skb_queue_tail(q
, skb
);
1385 for (i
= 0; i
< AUDIT_INODE_BUCKETS
; i
++) {
1386 list_for_each_entry(entry
, &audit_inode_hash
[i
], list
) {
1387 struct audit_rule
*rule
;
1389 rule
= audit_krule_to_rule(&entry
->rule
);
1390 if (unlikely(!rule
))
1392 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST
, 0, 1,
1393 rule
, sizeof(*rule
));
1395 skb_queue_tail(q
, skb
);
1399 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST
, 1, 1, NULL
, 0);
1401 skb_queue_tail(q
, skb
);
1404 /* List rules using struct audit_rule_data. */
1405 static void audit_list_rules(int pid
, int seq
, struct sk_buff_head
*q
)
1407 struct sk_buff
*skb
;
1408 struct audit_entry
*e
;
1411 /* This is a blocking read, so use audit_filter_mutex instead of rcu
1412 * iterator to sync with list writers. */
1413 for (i
=0; i
<AUDIT_NR_FILTERS
; i
++) {
1414 list_for_each_entry(e
, &audit_filter_list
[i
], list
) {
1415 struct audit_rule_data
*data
;
1417 data
= audit_krule_to_data(&e
->rule
);
1418 if (unlikely(!data
))
1420 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST_RULES
, 0, 1,
1421 data
, sizeof(*data
) + data
->buflen
);
1423 skb_queue_tail(q
, skb
);
1427 for (i
=0; i
< AUDIT_INODE_BUCKETS
; i
++) {
1428 list_for_each_entry(e
, &audit_inode_hash
[i
], list
) {
1429 struct audit_rule_data
*data
;
1431 data
= audit_krule_to_data(&e
->rule
);
1432 if (unlikely(!data
))
1434 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST_RULES
, 0, 1,
1435 data
, sizeof(*data
) + data
->buflen
);
1437 skb_queue_tail(q
, skb
);
1441 skb
= audit_make_reply(pid
, seq
, AUDIT_LIST_RULES
, 1, 1, NULL
, 0);
1443 skb_queue_tail(q
, skb
);
1446 /* Log rule additions and removals */
1447 static void audit_log_rule_change(uid_t loginuid
, u32 sid
, char *action
,
1448 struct audit_krule
*rule
, int res
)
1450 struct audit_buffer
*ab
;
1452 ab
= audit_log_start(NULL
, GFP_KERNEL
, AUDIT_CONFIG_CHANGE
);
1455 audit_log_format(ab
, "auid=%u", loginuid
);
1459 if (selinux_sid_to_string(sid
, &ctx
, &len
))
1460 audit_log_format(ab
, " ssid=%u", sid
);
1462 audit_log_format(ab
, " subj=%s", ctx
);
1465 audit_log_format(ab
, " op=%s rule key=", action
);
1466 if (rule
->filterkey
)
1467 audit_log_untrustedstring(ab
, rule
->filterkey
);
1469 audit_log_format(ab
, "(null)");
1470 audit_log_format(ab
, " list=%d res=%d", rule
->listnr
, res
);
1475 * audit_receive_filter - apply all rules to the specified message type
1476 * @type: audit message type
1477 * @pid: target pid for netlink audit messages
1478 * @uid: target uid for netlink audit messages
1479 * @seq: netlink audit message sequence (serial) number
1480 * @data: payload data
1481 * @datasz: size of payload data
1482 * @loginuid: loginuid of sender
1483 * @sid: SE Linux Security ID of sender
1485 int audit_receive_filter(int type
, int pid
, int uid
, int seq
, void *data
,
1486 size_t datasz
, uid_t loginuid
, u32 sid
)
1488 struct task_struct
*tsk
;
1489 struct audit_netlink_list
*dest
;
1491 struct audit_entry
*entry
;
1495 case AUDIT_LIST_RULES
:
1496 /* We can't just spew out the rules here because we might fill
1497 * the available socket buffer space and deadlock waiting for
1498 * auditctl to read from it... which isn't ever going to
1499 * happen if we're actually running in the context of auditctl
1500 * trying to _send_ the stuff */
1502 dest
= kmalloc(sizeof(struct audit_netlink_list
), GFP_KERNEL
);
1506 skb_queue_head_init(&dest
->q
);
1508 mutex_lock(&audit_filter_mutex
);
1509 if (type
== AUDIT_LIST
)
1510 audit_list(pid
, seq
, &dest
->q
);
1512 audit_list_rules(pid
, seq
, &dest
->q
);
1513 mutex_unlock(&audit_filter_mutex
);
1515 tsk
= kthread_run(audit_send_list
, dest
, "audit_send_list");
1517 skb_queue_purge(&dest
->q
);
1523 case AUDIT_ADD_RULE
:
1524 if (type
== AUDIT_ADD
)
1525 entry
= audit_rule_to_entry(data
);
1527 entry
= audit_data_to_entry(data
, datasz
);
1529 return PTR_ERR(entry
);
1531 err
= audit_add_rule(entry
,
1532 &audit_filter_list
[entry
->rule
.listnr
]);
1533 audit_log_rule_change(loginuid
, sid
, "add", &entry
->rule
, !err
);
1536 audit_free_rule(entry
);
1539 case AUDIT_DEL_RULE
:
1540 if (type
== AUDIT_DEL
)
1541 entry
= audit_rule_to_entry(data
);
1543 entry
= audit_data_to_entry(data
, datasz
);
1545 return PTR_ERR(entry
);
1547 err
= audit_del_rule(entry
,
1548 &audit_filter_list
[entry
->rule
.listnr
]);
1549 audit_log_rule_change(loginuid
, sid
, "remove", &entry
->rule
,
1552 audit_free_rule(entry
);
1561 int audit_comparator(const u32 left
, const u32 op
, const u32 right
)
1565 return (left
== right
);
1566 case AUDIT_NOT_EQUAL
:
1567 return (left
!= right
);
1568 case AUDIT_LESS_THAN
:
1569 return (left
< right
);
1570 case AUDIT_LESS_THAN_OR_EQUAL
:
1571 return (left
<= right
);
1572 case AUDIT_GREATER_THAN
:
1573 return (left
> right
);
1574 case AUDIT_GREATER_THAN_OR_EQUAL
:
1575 return (left
>= right
);
1576 case AUDIT_BIT_MASK
:
1577 return (left
& right
);
1578 case AUDIT_BIT_TEST
:
1579 return ((left
& right
) == right
);
1585 /* Compare given dentry name with last component in given path,
1586 * return of 0 indicates a match. */
1587 int audit_compare_dname_path(const char *dname
, const char *path
,
1593 if (!dname
|| !path
)
1596 dlen
= strlen(dname
);
1597 plen
= strlen(path
);
1601 /* disregard trailing slashes */
1602 p
= path
+ plen
- 1;
1603 while ((*p
== '/') && (p
> path
))
1606 /* find last path component */
1610 else if (p
> path
) {
1617 /* return length of path's directory component */
1620 return strncmp(p
, dname
, dlen
);
1623 static int audit_filter_user_rules(struct netlink_skb_parms
*cb
,
1624 struct audit_krule
*rule
,
1625 enum audit_state
*state
)
1629 for (i
= 0; i
< rule
->field_count
; i
++) {
1630 struct audit_field
*f
= &rule
->fields
[i
];
1635 result
= audit_comparator(cb
->creds
.pid
, f
->op
, f
->val
);
1638 result
= audit_comparator(cb
->creds
.uid
, f
->op
, f
->val
);
1641 result
= audit_comparator(cb
->creds
.gid
, f
->op
, f
->val
);
1643 case AUDIT_LOGINUID
:
1644 result
= audit_comparator(cb
->loginuid
, f
->op
, f
->val
);
1651 switch (rule
->action
) {
1652 case AUDIT_NEVER
: *state
= AUDIT_DISABLED
; break;
1653 case AUDIT_ALWAYS
: *state
= AUDIT_RECORD_CONTEXT
; break;
1658 int audit_filter_user(struct netlink_skb_parms
*cb
, int type
)
1660 enum audit_state state
= AUDIT_DISABLED
;
1661 struct audit_entry
*e
;
1665 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_USER
], list
) {
1666 if (audit_filter_user_rules(cb
, &e
->rule
, &state
)) {
1667 if (state
== AUDIT_DISABLED
)
1674 return ret
; /* Audit by default */
1677 int audit_filter_type(int type
)
1679 struct audit_entry
*e
;
1683 if (list_empty(&audit_filter_list
[AUDIT_FILTER_TYPE
]))
1684 goto unlock_and_return
;
1686 list_for_each_entry_rcu(e
, &audit_filter_list
[AUDIT_FILTER_TYPE
],
1689 for (i
= 0; i
< e
->rule
.field_count
; i
++) {
1690 struct audit_field
*f
= &e
->rule
.fields
[i
];
1691 if (f
->type
== AUDIT_MSGTYPE
) {
1692 result
= audit_comparator(type
, f
->op
, f
->val
);
1698 goto unlock_and_return
;
1705 /* Check to see if the rule contains any selinux fields. Returns 1 if there
1706 are selinux fields specified in the rule, 0 otherwise. */
1707 static inline int audit_rule_has_selinux(struct audit_krule
*rule
)
1711 for (i
= 0; i
< rule
->field_count
; i
++) {
1712 struct audit_field
*f
= &rule
->fields
[i
];
1714 case AUDIT_SUBJ_USER
:
1715 case AUDIT_SUBJ_ROLE
:
1716 case AUDIT_SUBJ_TYPE
:
1717 case AUDIT_SUBJ_SEN
:
1718 case AUDIT_SUBJ_CLR
:
1719 case AUDIT_OBJ_USER
:
1720 case AUDIT_OBJ_ROLE
:
1721 case AUDIT_OBJ_TYPE
:
1722 case AUDIT_OBJ_LEV_LOW
:
1723 case AUDIT_OBJ_LEV_HIGH
:
1731 /* This function will re-initialize the se_rule field of all applicable rules.
1732 * It will traverse the filter lists serarching for rules that contain selinux
1733 * specific filter fields. When such a rule is found, it is copied, the
1734 * selinux field is re-initialized, and the old rule is replaced with the
1736 int selinux_audit_rule_update(void)
1738 struct audit_entry
*entry
, *n
, *nentry
;
1739 struct audit_watch
*watch
;
1742 /* audit_filter_mutex synchronizes the writers */
1743 mutex_lock(&audit_filter_mutex
);
1745 for (i
= 0; i
< AUDIT_NR_FILTERS
; i
++) {
1746 list_for_each_entry_safe(entry
, n
, &audit_filter_list
[i
], list
) {
1747 if (!audit_rule_has_selinux(&entry
->rule
))
1750 watch
= entry
->rule
.watch
;
1751 nentry
= audit_dupe_rule(&entry
->rule
, watch
);
1752 if (unlikely(IS_ERR(nentry
))) {
1753 /* save the first error encountered for the
1756 err
= PTR_ERR(nentry
);
1757 audit_panic("error updating selinux filters");
1759 list_del(&entry
->rule
.rlist
);
1760 list_del_rcu(&entry
->list
);
1763 list_add(&nentry
->rule
.rlist
,
1765 list_del(&entry
->rule
.rlist
);
1767 list_replace_rcu(&entry
->list
, &nentry
->list
);
1769 call_rcu(&entry
->rcu
, audit_free_rule_rcu
);
1773 mutex_unlock(&audit_filter_mutex
);
1778 /* Update watch data in audit rules based on inotify events. */
1779 void audit_handle_ievent(struct inotify_watch
*i_watch
, u32 wd
, u32 mask
,
1780 u32 cookie
, const char *dname
, struct inode
*inode
)
1782 struct audit_parent
*parent
;
1784 parent
= container_of(i_watch
, struct audit_parent
, wdata
);
1786 if (mask
& (IN_CREATE
|IN_MOVED_TO
) && inode
)
1787 audit_update_watch(parent
, dname
, inode
->i_sb
->s_dev
,
1789 else if (mask
& (IN_DELETE
|IN_MOVED_FROM
))
1790 audit_update_watch(parent
, dname
, (dev_t
)-1, (unsigned long)-1, 1);
1791 /* inotify automatically removes the watch and sends IN_IGNORED */
1792 else if (mask
& (IN_DELETE_SELF
|IN_UNMOUNT
))
1793 audit_remove_parent_watches(parent
);
1794 /* inotify does not remove the watch, so remove it manually */
1795 else if(mask
& IN_MOVE_SELF
) {
1796 audit_remove_parent_watches(parent
);
1797 inotify_remove_watch_locked(audit_ih
, i_watch
);
1798 } else if (mask
& IN_IGNORED
)
1799 put_inotify_watch(i_watch
);