| 85c8721 | 2005-04-29 16:23:29 +0100 | [diff] [blame] | 1 | /* auditsc.c -- System-call auditing support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Handles all system-call specific auditing features. |
| 3 | * |
| 4 | * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina. |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 5 | * Copyright 2005 Hewlett-Packard Development Company, L.P. |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 6 | * Copyright (C) 2005, 2006 IBM Corporation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * All Rights Reserved. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | * Written by Rickard E. (Rik) Faith <faith@redhat.com> |
| 24 | * |
| 25 | * Many of the ideas implemented here are from Stephen C. Tweedie, |
| 26 | * especially the idea of avoiding a copy by using getname. |
| 27 | * |
| 28 | * The method for actual interception of syscall entry and exit (not in |
| 29 | * this file -- see entry.S) is based on a GPL'd patch written by |
| 30 | * okir@suse.de and Copyright 2003 SuSE Linux AG. |
| 31 | * |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 32 | * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>, |
| 33 | * 2006. |
| 34 | * |
Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 35 | * The support of additional filter rules compares (>, <, >=, <=) was |
| 36 | * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005. |
| 37 | * |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 38 | * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional |
| 39 | * filesystem information. |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 40 | * |
| 41 | * Subject and object context labeling support added by <danjones@us.ibm.com> |
| 42 | * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | */ |
| 44 | |
| 45 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/types.h> |
Alan Cox | 715b49e | 2006-01-18 17:44:07 -0800 | [diff] [blame] | 47 | #include <asm/atomic.h> |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 48 | #include <asm/types.h> |
| 49 | #include <linux/fs.h> |
| 50 | #include <linux/namei.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #include <linux/mm.h> |
| 52 | #include <linux/module.h> |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 53 | #include <linux/mount.h> |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 54 | #include <linux/socket.h> |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 55 | #include <linux/mqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <linux/audit.h> |
| 57 | #include <linux/personality.h> |
| 58 | #include <linux/time.h> |
David Woodhouse | 5bb289b | 2005-06-24 14:14:05 +0100 | [diff] [blame] | 59 | #include <linux/netlink.h> |
David Woodhouse | f556196 | 2005-07-13 22:47:07 +0100 | [diff] [blame] | 60 | #include <linux/compiler.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <asm/unistd.h> |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 62 | #include <linux/security.h> |
David Woodhouse | fe7752b | 2005-12-15 18:33:52 +0000 | [diff] [blame] | 63 | #include <linux/list.h> |
Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 64 | #include <linux/tty.h> |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 65 | #include <linux/selinux.h> |
Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 66 | #include <linux/binfmts.h> |
Al Viro | a1f8e7f7 | 2006-10-19 16:08:53 -0400 | [diff] [blame] | 67 | #include <linux/highmem.h> |
Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 68 | #include <linux/syscalls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
David Woodhouse | fe7752b | 2005-12-15 18:33:52 +0000 | [diff] [blame] | 70 | #include "audit.h" |
| 71 | |
| 72 | extern struct list_head audit_filter_list[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* No syscall auditing will take place unless audit_enabled != 0. */ |
| 75 | extern int audit_enabled; |
| 76 | |
| 77 | /* AUDIT_NAMES is the number of slots we reserve in the audit_context |
| 78 | * for saving names from getname(). */ |
| 79 | #define AUDIT_NAMES 20 |
| 80 | |
| 81 | /* AUDIT_NAMES_RESERVED is the number of slots we reserve in the |
| 82 | * audit_context from being used for nameless inodes from |
| 83 | * path_lookup. */ |
| 84 | #define AUDIT_NAMES_RESERVED 7 |
| 85 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 86 | /* Indicates that audit should log the full pathname. */ |
| 87 | #define AUDIT_NAME_FULL -1 |
| 88 | |
Al Viro | 471a5c7 | 2006-07-10 08:29:24 -0400 | [diff] [blame] | 89 | /* number of audit rules */ |
| 90 | int audit_n_rules; |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | /* When fs/namei.c:getname() is called, we store the pointer in name and |
| 93 | * we don't let putname() free it (instead we free all of the saved |
| 94 | * pointers at syscall exit time). |
| 95 | * |
| 96 | * Further, in fs/namei.c:path_lookup() we store the inode and device. */ |
| 97 | struct audit_names { |
| 98 | const char *name; |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 99 | int name_len; /* number of name's characters to log */ |
| 100 | unsigned name_put; /* call __putname() for this name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | unsigned long ino; |
| 102 | dev_t dev; |
| 103 | umode_t mode; |
| 104 | uid_t uid; |
| 105 | gid_t gid; |
| 106 | dev_t rdev; |
Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 107 | u32 osid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | struct audit_aux_data { |
| 111 | struct audit_aux_data *next; |
| 112 | int type; |
| 113 | }; |
| 114 | |
| 115 | #define AUDIT_AUX_IPCPERM 0 |
| 116 | |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 117 | struct audit_aux_data_mq_open { |
| 118 | struct audit_aux_data d; |
| 119 | int oflag; |
| 120 | mode_t mode; |
| 121 | struct mq_attr attr; |
| 122 | }; |
| 123 | |
| 124 | struct audit_aux_data_mq_sendrecv { |
| 125 | struct audit_aux_data d; |
| 126 | mqd_t mqdes; |
| 127 | size_t msg_len; |
| 128 | unsigned int msg_prio; |
| 129 | struct timespec abs_timeout; |
| 130 | }; |
| 131 | |
| 132 | struct audit_aux_data_mq_notify { |
| 133 | struct audit_aux_data d; |
| 134 | mqd_t mqdes; |
| 135 | struct sigevent notification; |
| 136 | }; |
| 137 | |
| 138 | struct audit_aux_data_mq_getsetattr { |
| 139 | struct audit_aux_data d; |
| 140 | mqd_t mqdes; |
| 141 | struct mq_attr mqstat; |
| 142 | }; |
| 143 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | struct audit_aux_data_ipcctl { |
| 145 | struct audit_aux_data d; |
| 146 | struct ipc_perm p; |
| 147 | unsigned long qbytes; |
| 148 | uid_t uid; |
| 149 | gid_t gid; |
| 150 | mode_t mode; |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 151 | u32 osid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | }; |
| 153 | |
Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 154 | struct audit_aux_data_execve { |
| 155 | struct audit_aux_data d; |
| 156 | int argc; |
| 157 | int envc; |
| 158 | char mem[0]; |
| 159 | }; |
| 160 | |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 161 | struct audit_aux_data_socketcall { |
| 162 | struct audit_aux_data d; |
| 163 | int nargs; |
| 164 | unsigned long args[0]; |
| 165 | }; |
| 166 | |
| 167 | struct audit_aux_data_sockaddr { |
| 168 | struct audit_aux_data d; |
| 169 | int len; |
| 170 | char a[0]; |
| 171 | }; |
| 172 | |
Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame^] | 173 | struct audit_aux_data_fd_pair { |
| 174 | struct audit_aux_data d; |
| 175 | int fd[2]; |
| 176 | }; |
| 177 | |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 178 | struct audit_aux_data_path { |
| 179 | struct audit_aux_data d; |
| 180 | struct dentry *dentry; |
| 181 | struct vfsmount *mnt; |
| 182 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | /* The per-task audit context. */ |
| 185 | struct audit_context { |
Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 186 | int dummy; /* must be the first element */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | int in_syscall; /* 1 if task is in a syscall */ |
| 188 | enum audit_state state; |
| 189 | unsigned int serial; /* serial number for record */ |
| 190 | struct timespec ctime; /* time of syscall entry */ |
| 191 | uid_t loginuid; /* login uid (identity) */ |
| 192 | int major; /* syscall number */ |
| 193 | unsigned long argv[4]; /* syscall arguments */ |
| 194 | int return_valid; /* return code is valid */ |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 195 | long return_code;/* syscall return code */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | int auditable; /* 1 if record should be written */ |
| 197 | int name_count; |
| 198 | struct audit_names names[AUDIT_NAMES]; |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 199 | char * filterkey; /* key for rule that triggered record */ |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 200 | struct dentry * pwd; |
| 201 | struct vfsmount * pwdmnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | struct audit_context *previous; /* For nested syscalls */ |
| 203 | struct audit_aux_data *aux; |
| 204 | |
| 205 | /* Save things to print about task_struct */ |
Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 206 | pid_t pid, ppid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | uid_t uid, euid, suid, fsuid; |
| 208 | gid_t gid, egid, sgid, fsgid; |
| 209 | unsigned long personality; |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 210 | int arch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | #if AUDIT_DEBUG |
| 213 | int put_count; |
| 214 | int ino_count; |
| 215 | #endif |
| 216 | }; |
| 217 | |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 218 | #define ACC_MODE(x) ("\004\002\006\006"[(x)&O_ACCMODE]) |
| 219 | static inline int open_arg(int flags, int mask) |
| 220 | { |
| 221 | int n = ACC_MODE(flags); |
| 222 | if (flags & (O_TRUNC | O_CREAT)) |
| 223 | n |= AUDIT_PERM_WRITE; |
| 224 | return n & mask; |
| 225 | } |
| 226 | |
| 227 | static int audit_match_perm(struct audit_context *ctx, int mask) |
| 228 | { |
| 229 | unsigned n = ctx->major; |
| 230 | switch (audit_classify_syscall(ctx->arch, n)) { |
| 231 | case 0: /* native */ |
| 232 | if ((mask & AUDIT_PERM_WRITE) && |
| 233 | audit_match_class(AUDIT_CLASS_WRITE, n)) |
| 234 | return 1; |
| 235 | if ((mask & AUDIT_PERM_READ) && |
| 236 | audit_match_class(AUDIT_CLASS_READ, n)) |
| 237 | return 1; |
| 238 | if ((mask & AUDIT_PERM_ATTR) && |
| 239 | audit_match_class(AUDIT_CLASS_CHATTR, n)) |
| 240 | return 1; |
| 241 | return 0; |
| 242 | case 1: /* 32bit on biarch */ |
| 243 | if ((mask & AUDIT_PERM_WRITE) && |
| 244 | audit_match_class(AUDIT_CLASS_WRITE_32, n)) |
| 245 | return 1; |
| 246 | if ((mask & AUDIT_PERM_READ) && |
| 247 | audit_match_class(AUDIT_CLASS_READ_32, n)) |
| 248 | return 1; |
| 249 | if ((mask & AUDIT_PERM_ATTR) && |
| 250 | audit_match_class(AUDIT_CLASS_CHATTR_32, n)) |
| 251 | return 1; |
| 252 | return 0; |
| 253 | case 2: /* open */ |
| 254 | return mask & ACC_MODE(ctx->argv[1]); |
| 255 | case 3: /* openat */ |
| 256 | return mask & ACC_MODE(ctx->argv[2]); |
| 257 | case 4: /* socketcall */ |
| 258 | return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND); |
| 259 | case 5: /* execve */ |
| 260 | return mask & AUDIT_PERM_EXEC; |
| 261 | default: |
| 262 | return 0; |
| 263 | } |
| 264 | } |
| 265 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 266 | /* Determine if any context name data matches a rule's watch data */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /* Compare a task_struct with an audit_rule. Return 1 on match, 0 |
| 268 | * otherwise. */ |
| 269 | static int audit_filter_rules(struct task_struct *tsk, |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 270 | struct audit_krule *rule, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | struct audit_context *ctx, |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 272 | struct audit_names *name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | enum audit_state *state) |
| 274 | { |
Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 275 | int i, j, need_sid = 1; |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 276 | u32 sid; |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | for (i = 0; i < rule->field_count; i++) { |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 279 | struct audit_field *f = &rule->fields[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | int result = 0; |
| 281 | |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 282 | switch (f->type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | case AUDIT_PID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 284 | result = audit_comparator(tsk->pid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | break; |
Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 286 | case AUDIT_PPID: |
Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 287 | if (ctx) { |
| 288 | if (!ctx->ppid) |
| 289 | ctx->ppid = sys_getppid(); |
Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 290 | result = audit_comparator(ctx->ppid, f->op, f->val); |
Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 291 | } |
Al Viro | 3c66251 | 2006-05-06 08:26:27 -0400 | [diff] [blame] | 292 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | case AUDIT_UID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 294 | result = audit_comparator(tsk->uid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | break; |
| 296 | case AUDIT_EUID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 297 | result = audit_comparator(tsk->euid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | break; |
| 299 | case AUDIT_SUID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 300 | result = audit_comparator(tsk->suid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | break; |
| 302 | case AUDIT_FSUID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 303 | result = audit_comparator(tsk->fsuid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | break; |
| 305 | case AUDIT_GID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 306 | result = audit_comparator(tsk->gid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | break; |
| 308 | case AUDIT_EGID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 309 | result = audit_comparator(tsk->egid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | break; |
| 311 | case AUDIT_SGID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 312 | result = audit_comparator(tsk->sgid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | break; |
| 314 | case AUDIT_FSGID: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 315 | result = audit_comparator(tsk->fsgid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | break; |
| 317 | case AUDIT_PERS: |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 318 | result = audit_comparator(tsk->personality, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | break; |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 320 | case AUDIT_ARCH: |
Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 321 | if (ctx) |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 322 | result = audit_comparator(ctx->arch, f->op, f->val); |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 323 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
| 325 | case AUDIT_EXIT: |
| 326 | if (ctx && ctx->return_valid) |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 327 | result = audit_comparator(ctx->return_code, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | break; |
| 329 | case AUDIT_SUCCESS: |
David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 330 | if (ctx && ctx->return_valid) { |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 331 | if (f->val) |
| 332 | result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS); |
David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 333 | else |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 334 | result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE); |
David Woodhouse | b01f2cc | 2005-08-27 10:25:43 +0100 | [diff] [blame] | 335 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | break; |
| 337 | case AUDIT_DEVMAJOR: |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 338 | if (name) |
| 339 | result = audit_comparator(MAJOR(name->dev), |
| 340 | f->op, f->val); |
| 341 | else if (ctx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | for (j = 0; j < ctx->name_count; j++) { |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 343 | if (audit_comparator(MAJOR(ctx->names[j].dev), f->op, f->val)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | ++result; |
| 345 | break; |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | break; |
| 350 | case AUDIT_DEVMINOR: |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 351 | if (name) |
| 352 | result = audit_comparator(MINOR(name->dev), |
| 353 | f->op, f->val); |
| 354 | else if (ctx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | for (j = 0; j < ctx->name_count; j++) { |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 356 | if (audit_comparator(MINOR(ctx->names[j].dev), f->op, f->val)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | ++result; |
| 358 | break; |
| 359 | } |
| 360 | } |
| 361 | } |
| 362 | break; |
| 363 | case AUDIT_INODE: |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 364 | if (name) |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 365 | result = (name->ino == f->val); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 366 | else if (ctx) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | for (j = 0; j < ctx->name_count; j++) { |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 368 | if (audit_comparator(ctx->names[j].ino, f->op, f->val)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | ++result; |
| 370 | break; |
| 371 | } |
| 372 | } |
| 373 | } |
| 374 | break; |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 375 | case AUDIT_WATCH: |
| 376 | if (name && rule->watch->ino != (unsigned long)-1) |
| 377 | result = (name->dev == rule->watch->dev && |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 378 | name->ino == rule->watch->ino); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 379 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | case AUDIT_LOGINUID: |
| 381 | result = 0; |
| 382 | if (ctx) |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 383 | result = audit_comparator(ctx->loginuid, f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | break; |
Darrel Goeddel | 3a6b9f8 | 2006-06-29 16:56:39 -0500 | [diff] [blame] | 385 | case AUDIT_SUBJ_USER: |
| 386 | case AUDIT_SUBJ_ROLE: |
| 387 | case AUDIT_SUBJ_TYPE: |
| 388 | case AUDIT_SUBJ_SEN: |
| 389 | case AUDIT_SUBJ_CLR: |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 390 | /* NOTE: this may return negative values indicating |
| 391 | a temporary error. We simply treat this as a |
| 392 | match for now to avoid losing information that |
| 393 | may be wanted. An error message will also be |
| 394 | logged upon error */ |
Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 395 | if (f->se_rule) { |
| 396 | if (need_sid) { |
Stephen Smalley | 62bac01 | 2006-09-25 23:31:56 -0700 | [diff] [blame] | 397 | selinux_get_task_sid(tsk, &sid); |
Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 398 | need_sid = 0; |
| 399 | } |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 400 | result = selinux_audit_rule_match(sid, f->type, |
| 401 | f->op, |
| 402 | f->se_rule, |
| 403 | ctx); |
Steve Grubb | 2ad312d | 2006-04-11 08:50:56 -0400 | [diff] [blame] | 404 | } |
Darrel Goeddel | 3dc7e31 | 2006-03-10 18:14:06 -0600 | [diff] [blame] | 405 | break; |
Darrel Goeddel | 6e5a2d1 | 2006-06-29 16:57:08 -0500 | [diff] [blame] | 406 | case AUDIT_OBJ_USER: |
| 407 | case AUDIT_OBJ_ROLE: |
| 408 | case AUDIT_OBJ_TYPE: |
| 409 | case AUDIT_OBJ_LEV_LOW: |
| 410 | case AUDIT_OBJ_LEV_HIGH: |
| 411 | /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR |
| 412 | also applies here */ |
| 413 | if (f->se_rule) { |
| 414 | /* Find files that match */ |
| 415 | if (name) { |
| 416 | result = selinux_audit_rule_match( |
| 417 | name->osid, f->type, f->op, |
| 418 | f->se_rule, ctx); |
| 419 | } else if (ctx) { |
| 420 | for (j = 0; j < ctx->name_count; j++) { |
| 421 | if (selinux_audit_rule_match( |
| 422 | ctx->names[j].osid, |
| 423 | f->type, f->op, |
| 424 | f->se_rule, ctx)) { |
| 425 | ++result; |
| 426 | break; |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | /* Find ipc objects that match */ |
| 431 | if (ctx) { |
| 432 | struct audit_aux_data *aux; |
| 433 | for (aux = ctx->aux; aux; |
| 434 | aux = aux->next) { |
| 435 | if (aux->type == AUDIT_IPC) { |
| 436 | struct audit_aux_data_ipcctl *axi = (void *)aux; |
| 437 | if (selinux_audit_rule_match(axi->osid, f->type, f->op, f->se_rule, ctx)) { |
| 438 | ++result; |
| 439 | break; |
| 440 | } |
| 441 | } |
| 442 | } |
| 443 | } |
| 444 | } |
| 445 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | case AUDIT_ARG0: |
| 447 | case AUDIT_ARG1: |
| 448 | case AUDIT_ARG2: |
| 449 | case AUDIT_ARG3: |
| 450 | if (ctx) |
Amy Griffis | 93315ed | 2006-02-07 12:05:27 -0500 | [diff] [blame] | 451 | result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | break; |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 453 | case AUDIT_FILTERKEY: |
| 454 | /* ignore this field for filtering */ |
| 455 | result = 1; |
| 456 | break; |
Al Viro | 55669bf | 2006-08-31 19:26:40 -0400 | [diff] [blame] | 457 | case AUDIT_PERM: |
| 458 | result = audit_match_perm(ctx, f->val); |
| 459 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
| 461 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | if (!result) |
| 463 | return 0; |
| 464 | } |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 465 | if (rule->filterkey) |
| 466 | ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | switch (rule->action) { |
| 468 | case AUDIT_NEVER: *state = AUDIT_DISABLED; break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break; |
| 470 | } |
| 471 | return 1; |
| 472 | } |
| 473 | |
| 474 | /* At process creation time, we can determine if system-call auditing is |
| 475 | * completely disabled for this task. Since we only have the task |
| 476 | * structure at this point, we can only check uid and gid. |
| 477 | */ |
| 478 | static enum audit_state audit_filter_task(struct task_struct *tsk) |
| 479 | { |
| 480 | struct audit_entry *e; |
| 481 | enum audit_state state; |
| 482 | |
| 483 | rcu_read_lock(); |
David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 484 | list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) { |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 485 | if (audit_filter_rules(tsk, &e->rule, NULL, NULL, &state)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | rcu_read_unlock(); |
| 487 | return state; |
| 488 | } |
| 489 | } |
| 490 | rcu_read_unlock(); |
| 491 | return AUDIT_BUILD_CONTEXT; |
| 492 | } |
| 493 | |
| 494 | /* At syscall entry and exit time, this filter is called if the |
| 495 | * audit_state is not low enough that auditing cannot take place, but is |
Steve Grubb | 23f32d1 | 2005-05-13 18:35:15 +0100 | [diff] [blame] | 496 | * also not high enough that we already know we have to write an audit |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 497 | * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | */ |
| 499 | static enum audit_state audit_filter_syscall(struct task_struct *tsk, |
| 500 | struct audit_context *ctx, |
| 501 | struct list_head *list) |
| 502 | { |
| 503 | struct audit_entry *e; |
David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 504 | enum audit_state state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
David Woodhouse | 351bb72 | 2005-07-14 14:40:06 +0100 | [diff] [blame] | 506 | if (audit_pid && tsk->tgid == audit_pid) |
David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 507 | return AUDIT_DISABLED; |
| 508 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | rcu_read_lock(); |
David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 510 | if (!list_empty(list)) { |
Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 511 | int word = AUDIT_WORD(ctx->major); |
| 512 | int bit = AUDIT_BIT(ctx->major); |
David Woodhouse | c389649 | 2005-08-17 14:49:57 +0100 | [diff] [blame] | 513 | |
Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 514 | list_for_each_entry_rcu(e, list, list) { |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 515 | if ((e->rule.mask[word] & bit) == bit && |
| 516 | audit_filter_rules(tsk, &e->rule, ctx, NULL, |
| 517 | &state)) { |
Dustin Kirkland | b63862f | 2005-11-03 15:41:46 +0000 | [diff] [blame] | 518 | rcu_read_unlock(); |
| 519 | return state; |
| 520 | } |
| 521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | } |
| 523 | rcu_read_unlock(); |
| 524 | return AUDIT_BUILD_CONTEXT; |
| 525 | } |
| 526 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 527 | /* At syscall exit time, this filter is called if any audit_names[] have been |
| 528 | * collected during syscall processing. We only check rules in sublists at hash |
| 529 | * buckets applicable to the inode numbers in audit_names[]. |
| 530 | * Regarding audit_state, same rules apply as for audit_filter_syscall(). |
| 531 | */ |
| 532 | enum audit_state audit_filter_inodes(struct task_struct *tsk, |
| 533 | struct audit_context *ctx) |
| 534 | { |
| 535 | int i; |
| 536 | struct audit_entry *e; |
| 537 | enum audit_state state; |
| 538 | |
| 539 | if (audit_pid && tsk->tgid == audit_pid) |
| 540 | return AUDIT_DISABLED; |
| 541 | |
| 542 | rcu_read_lock(); |
| 543 | for (i = 0; i < ctx->name_count; i++) { |
| 544 | int word = AUDIT_WORD(ctx->major); |
| 545 | int bit = AUDIT_BIT(ctx->major); |
| 546 | struct audit_names *n = &ctx->names[i]; |
| 547 | int h = audit_hash_ino((u32)n->ino); |
| 548 | struct list_head *list = &audit_inode_hash[h]; |
| 549 | |
| 550 | if (list_empty(list)) |
| 551 | continue; |
| 552 | |
| 553 | list_for_each_entry_rcu(e, list, list) { |
| 554 | if ((e->rule.mask[word] & bit) == bit && |
| 555 | audit_filter_rules(tsk, &e->rule, ctx, n, &state)) { |
| 556 | rcu_read_unlock(); |
| 557 | return state; |
| 558 | } |
| 559 | } |
| 560 | } |
| 561 | rcu_read_unlock(); |
| 562 | return AUDIT_BUILD_CONTEXT; |
| 563 | } |
| 564 | |
| 565 | void audit_set_auditable(struct audit_context *ctx) |
| 566 | { |
| 567 | ctx->auditable = 1; |
| 568 | } |
| 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | static inline struct audit_context *audit_get_context(struct task_struct *tsk, |
| 571 | int return_valid, |
| 572 | int return_code) |
| 573 | { |
| 574 | struct audit_context *context = tsk->audit_context; |
| 575 | |
| 576 | if (likely(!context)) |
| 577 | return NULL; |
| 578 | context->return_valid = return_valid; |
| 579 | context->return_code = return_code; |
| 580 | |
Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 581 | if (context->in_syscall && !context->dummy && !context->auditable) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | enum audit_state state; |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 583 | |
David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 584 | state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]); |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 585 | if (state == AUDIT_RECORD_CONTEXT) { |
| 586 | context->auditable = 1; |
| 587 | goto get_context; |
| 588 | } |
| 589 | |
| 590 | state = audit_filter_inodes(tsk, context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | if (state == AUDIT_RECORD_CONTEXT) |
| 592 | context->auditable = 1; |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 593 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 596 | get_context: |
Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | tsk->audit_context = NULL; |
| 599 | return context; |
| 600 | } |
| 601 | |
| 602 | static inline void audit_free_names(struct audit_context *context) |
| 603 | { |
| 604 | int i; |
| 605 | |
| 606 | #if AUDIT_DEBUG == 2 |
| 607 | if (context->auditable |
| 608 | ||context->put_count + context->ino_count != context->name_count) { |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 609 | printk(KERN_ERR "%s:%d(:%d): major=%d in_syscall=%d" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | " name_count=%d put_count=%d" |
| 611 | " ino_count=%d [NOT freeing]\n", |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 612 | __FILE__, __LINE__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | context->serial, context->major, context->in_syscall, |
| 614 | context->name_count, context->put_count, |
| 615 | context->ino_count); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 616 | for (i = 0; i < context->name_count; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | printk(KERN_ERR "names[%d] = %p = %s\n", i, |
| 618 | context->names[i].name, |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 619 | context->names[i].name ?: "(null)"); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 620 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | dump_stack(); |
| 622 | return; |
| 623 | } |
| 624 | #endif |
| 625 | #if AUDIT_DEBUG |
| 626 | context->put_count = 0; |
| 627 | context->ino_count = 0; |
| 628 | #endif |
| 629 | |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 630 | for (i = 0; i < context->name_count; i++) { |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 631 | if (context->names[i].name && context->names[i].name_put) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | __putname(context->names[i].name); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 633 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | context->name_count = 0; |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 635 | if (context->pwd) |
| 636 | dput(context->pwd); |
| 637 | if (context->pwdmnt) |
| 638 | mntput(context->pwdmnt); |
| 639 | context->pwd = NULL; |
| 640 | context->pwdmnt = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | static inline void audit_free_aux(struct audit_context *context) |
| 644 | { |
| 645 | struct audit_aux_data *aux; |
| 646 | |
| 647 | while ((aux = context->aux)) { |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 648 | if (aux->type == AUDIT_AVC_PATH) { |
| 649 | struct audit_aux_data_path *axi = (void *)aux; |
| 650 | dput(axi->dentry); |
| 651 | mntput(axi->mnt); |
| 652 | } |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | context->aux = aux->next; |
| 655 | kfree(aux); |
| 656 | } |
| 657 | } |
| 658 | |
| 659 | static inline void audit_zero_context(struct audit_context *context, |
| 660 | enum audit_state state) |
| 661 | { |
| 662 | uid_t loginuid = context->loginuid; |
| 663 | |
| 664 | memset(context, 0, sizeof(*context)); |
| 665 | context->state = state; |
| 666 | context->loginuid = loginuid; |
| 667 | } |
| 668 | |
| 669 | static inline struct audit_context *audit_alloc_context(enum audit_state state) |
| 670 | { |
| 671 | struct audit_context *context; |
| 672 | |
| 673 | if (!(context = kmalloc(sizeof(*context), GFP_KERNEL))) |
| 674 | return NULL; |
| 675 | audit_zero_context(context, state); |
| 676 | return context; |
| 677 | } |
| 678 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 679 | /** |
| 680 | * audit_alloc - allocate an audit context block for a task |
| 681 | * @tsk: task |
| 682 | * |
| 683 | * Filter on the task information and allocate a per-task audit context |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | * if necessary. Doing so turns on system call auditing for the |
| 685 | * specified task. This is called from copy_process, so no lock is |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 686 | * needed. |
| 687 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | int audit_alloc(struct task_struct *tsk) |
| 689 | { |
| 690 | struct audit_context *context; |
| 691 | enum audit_state state; |
| 692 | |
| 693 | if (likely(!audit_enabled)) |
| 694 | return 0; /* Return if not auditing. */ |
| 695 | |
| 696 | state = audit_filter_task(tsk); |
| 697 | if (likely(state == AUDIT_DISABLED)) |
| 698 | return 0; |
| 699 | |
| 700 | if (!(context = audit_alloc_context(state))) { |
| 701 | audit_log_lost("out of memory in audit_alloc"); |
| 702 | return -ENOMEM; |
| 703 | } |
| 704 | |
| 705 | /* Preserve login uid */ |
| 706 | context->loginuid = -1; |
| 707 | if (current->audit_context) |
| 708 | context->loginuid = current->audit_context->loginuid; |
| 709 | |
| 710 | tsk->audit_context = context; |
| 711 | set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT); |
| 712 | return 0; |
| 713 | } |
| 714 | |
| 715 | static inline void audit_free_context(struct audit_context *context) |
| 716 | { |
| 717 | struct audit_context *previous; |
| 718 | int count = 0; |
| 719 | |
| 720 | do { |
| 721 | previous = context->previous; |
| 722 | if (previous || (count && count < 10)) { |
| 723 | ++count; |
| 724 | printk(KERN_ERR "audit(:%d): major=%d name_count=%d:" |
| 725 | " freeing multiple contexts (%d)\n", |
| 726 | context->serial, context->major, |
| 727 | context->name_count, count); |
| 728 | } |
| 729 | audit_free_names(context); |
| 730 | audit_free_aux(context); |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 731 | kfree(context->filterkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | kfree(context); |
| 733 | context = previous; |
| 734 | } while (context); |
| 735 | if (count >= 10) |
| 736 | printk(KERN_ERR "audit: freed %d contexts\n", count); |
| 737 | } |
| 738 | |
Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 739 | void audit_log_task_context(struct audit_buffer *ab) |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 740 | { |
| 741 | char *ctx = NULL; |
| 742 | ssize_t len = 0; |
| 743 | |
| 744 | len = security_getprocattr(current, "current", NULL, 0); |
| 745 | if (len < 0) { |
| 746 | if (len != -EINVAL) |
| 747 | goto error_path; |
| 748 | return; |
| 749 | } |
| 750 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 751 | ctx = kmalloc(len, GFP_KERNEL); |
Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 752 | if (!ctx) |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 753 | goto error_path; |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 754 | |
| 755 | len = security_getprocattr(current, "current", ctx, len); |
| 756 | if (len < 0 ) |
| 757 | goto error_path; |
| 758 | |
| 759 | audit_log_format(ab, " subj=%s", ctx); |
Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 760 | return; |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 761 | |
| 762 | error_path: |
Jesper Juhl | 9a66a53 | 2006-06-27 02:55:05 -0700 | [diff] [blame] | 763 | kfree(ctx); |
Dustin Kirkland | 7306a0b | 2005-11-16 15:53:13 +0000 | [diff] [blame] | 764 | audit_panic("error in audit_log_task_context"); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 765 | return; |
| 766 | } |
| 767 | |
Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 768 | EXPORT_SYMBOL(audit_log_task_context); |
| 769 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 770 | static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk) |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 771 | { |
Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 772 | char name[sizeof(tsk->comm)]; |
| 773 | struct mm_struct *mm = tsk->mm; |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 774 | struct vm_area_struct *vma; |
| 775 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 776 | /* tsk == current */ |
| 777 | |
Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 778 | get_task_comm(name, tsk); |
David Woodhouse | 99e45ee | 2005-05-23 21:57:41 +0100 | [diff] [blame] | 779 | audit_log_format(ab, " comm="); |
| 780 | audit_log_untrustedstring(ab, name); |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 781 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 782 | if (mm) { |
| 783 | down_read(&mm->mmap_sem); |
| 784 | vma = mm->mmap; |
| 785 | while (vma) { |
| 786 | if ((vma->vm_flags & VM_EXECUTABLE) && |
| 787 | vma->vm_file) { |
| 788 | audit_log_d_path(ab, "exe=", |
Josef Sipek | a7a005f | 2006-12-08 02:37:17 -0800 | [diff] [blame] | 789 | vma->vm_file->f_path.dentry, |
| 790 | vma->vm_file->f_path.mnt); |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 791 | break; |
| 792 | } |
| 793 | vma = vma->vm_next; |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 794 | } |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 795 | up_read(&mm->mmap_sem); |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 796 | } |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 797 | audit_log_task_context(ab); |
Stephen Smalley | 219f081 | 2005-04-18 10:47:35 -0700 | [diff] [blame] | 798 | } |
| 799 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 800 | static void audit_log_exit(struct audit_context *context, struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | { |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 802 | int i, call_panic = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | struct audit_buffer *ab; |
David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 804 | struct audit_aux_data *aux; |
Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 805 | const char *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 807 | /* tsk == current */ |
Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 808 | context->pid = tsk->pid; |
Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 809 | if (!context->ppid) |
| 810 | context->ppid = sys_getppid(); |
Al Viro | 3f2792f | 2006-07-16 06:43:48 -0400 | [diff] [blame] | 811 | context->uid = tsk->uid; |
| 812 | context->gid = tsk->gid; |
| 813 | context->euid = tsk->euid; |
| 814 | context->suid = tsk->suid; |
| 815 | context->fsuid = tsk->fsuid; |
| 816 | context->egid = tsk->egid; |
| 817 | context->sgid = tsk->sgid; |
| 818 | context->fsgid = tsk->fsgid; |
| 819 | context->personality = tsk->personality; |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 820 | |
| 821 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | if (!ab) |
| 823 | return; /* audit_panic has been called */ |
David Woodhouse | bccf6ae | 2005-05-23 21:35:28 +0100 | [diff] [blame] | 824 | audit_log_format(ab, "arch=%x syscall=%d", |
| 825 | context->arch, context->major); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | if (context->personality != PER_LINUX) |
| 827 | audit_log_format(ab, " per=%lx", context->personality); |
| 828 | if (context->return_valid) |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 829 | audit_log_format(ab, " success=%s exit=%ld", |
| 830 | (context->return_valid==AUDITSC_SUCCESS)?"yes":"no", |
| 831 | context->return_code); |
Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 832 | |
| 833 | mutex_lock(&tty_mutex); |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 834 | read_lock(&tasklist_lock); |
Al Viro | 45d9bb0 | 2006-03-29 20:02:55 -0500 | [diff] [blame] | 835 | if (tsk->signal && tsk->signal->tty && tsk->signal->tty->name) |
| 836 | tty = tsk->signal->tty->name; |
Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 837 | else |
| 838 | tty = "(none)"; |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 839 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | audit_log_format(ab, |
| 841 | " a0=%lx a1=%lx a2=%lx a3=%lx items=%d" |
Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 842 | " ppid=%d pid=%d auid=%u uid=%u gid=%u" |
Steve Grubb | 326e9c8 | 2005-05-21 00:22:31 +0100 | [diff] [blame] | 843 | " euid=%u suid=%u fsuid=%u" |
Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 844 | " egid=%u sgid=%u fsgid=%u tty=%s", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | context->argv[0], |
| 846 | context->argv[1], |
| 847 | context->argv[2], |
| 848 | context->argv[3], |
| 849 | context->name_count, |
Al Viro | f46038f | 2006-05-06 08:22:52 -0400 | [diff] [blame] | 850 | context->ppid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | context->pid, |
| 852 | context->loginuid, |
| 853 | context->uid, |
| 854 | context->gid, |
| 855 | context->euid, context->suid, context->fsuid, |
Steve Grubb | a6c043a | 2006-01-01 14:07:00 -0500 | [diff] [blame] | 856 | context->egid, context->sgid, context->fsgid, tty); |
Alan Cox | eb84a20 | 2006-09-29 02:01:41 -0700 | [diff] [blame] | 857 | |
| 858 | mutex_unlock(&tty_mutex); |
| 859 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 860 | audit_log_task_info(ab, tsk); |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 861 | if (context->filterkey) { |
| 862 | audit_log_format(ab, " key="); |
| 863 | audit_log_untrustedstring(ab, context->filterkey); |
| 864 | } else |
| 865 | audit_log_format(ab, " key=(null)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | audit_log_end(ab); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
David Woodhouse | 7551ced | 2005-05-26 12:04:57 +0100 | [diff] [blame] | 868 | for (aux = context->aux; aux; aux = aux->next) { |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 869 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 870 | ab = audit_log_start(context, GFP_KERNEL, aux->type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | if (!ab) |
| 872 | continue; /* audit_panic has been called */ |
| 873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | switch (aux->type) { |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 875 | case AUDIT_MQ_OPEN: { |
| 876 | struct audit_aux_data_mq_open *axi = (void *)aux; |
| 877 | audit_log_format(ab, |
| 878 | "oflag=0x%x mode=%#o mq_flags=0x%lx mq_maxmsg=%ld " |
| 879 | "mq_msgsize=%ld mq_curmsgs=%ld", |
| 880 | axi->oflag, axi->mode, axi->attr.mq_flags, |
| 881 | axi->attr.mq_maxmsg, axi->attr.mq_msgsize, |
| 882 | axi->attr.mq_curmsgs); |
| 883 | break; } |
| 884 | |
| 885 | case AUDIT_MQ_SENDRECV: { |
| 886 | struct audit_aux_data_mq_sendrecv *axi = (void *)aux; |
| 887 | audit_log_format(ab, |
| 888 | "mqdes=%d msg_len=%zd msg_prio=%u " |
| 889 | "abs_timeout_sec=%ld abs_timeout_nsec=%ld", |
| 890 | axi->mqdes, axi->msg_len, axi->msg_prio, |
| 891 | axi->abs_timeout.tv_sec, axi->abs_timeout.tv_nsec); |
| 892 | break; } |
| 893 | |
| 894 | case AUDIT_MQ_NOTIFY: { |
| 895 | struct audit_aux_data_mq_notify *axi = (void *)aux; |
| 896 | audit_log_format(ab, |
| 897 | "mqdes=%d sigev_signo=%d", |
| 898 | axi->mqdes, |
| 899 | axi->notification.sigev_signo); |
| 900 | break; } |
| 901 | |
| 902 | case AUDIT_MQ_GETSETATTR: { |
| 903 | struct audit_aux_data_mq_getsetattr *axi = (void *)aux; |
| 904 | audit_log_format(ab, |
| 905 | "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld " |
| 906 | "mq_curmsgs=%ld ", |
| 907 | axi->mqdes, |
| 908 | axi->mqstat.mq_flags, axi->mqstat.mq_maxmsg, |
| 909 | axi->mqstat.mq_msgsize, axi->mqstat.mq_curmsgs); |
| 910 | break; } |
| 911 | |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 912 | case AUDIT_IPC: { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | struct audit_aux_data_ipcctl *axi = (void *)aux; |
| 914 | audit_log_format(ab, |
Linda Knippers | ac03221 | 2006-05-16 22:03:48 -0400 | [diff] [blame] | 915 | "ouid=%u ogid=%u mode=%x", |
| 916 | axi->uid, axi->gid, axi->mode); |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 917 | if (axi->osid != 0) { |
| 918 | char *ctx = NULL; |
| 919 | u32 len; |
Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 920 | if (selinux_sid_to_string( |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 921 | axi->osid, &ctx, &len)) { |
Steve Grubb | ce29b68 | 2006-04-01 18:29:34 -0500 | [diff] [blame] | 922 | audit_log_format(ab, " osid=%u", |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 923 | axi->osid); |
| 924 | call_panic = 1; |
| 925 | } else |
| 926 | audit_log_format(ab, " obj=%s", ctx); |
| 927 | kfree(ctx); |
| 928 | } |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 929 | break; } |
| 930 | |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 931 | case AUDIT_IPC_SET_PERM: { |
| 932 | struct audit_aux_data_ipcctl *axi = (void *)aux; |
| 933 | audit_log_format(ab, |
Linda Knippers | ac03221 | 2006-05-16 22:03:48 -0400 | [diff] [blame] | 934 | "qbytes=%lx ouid=%u ogid=%u mode=%x", |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 935 | axi->qbytes, axi->uid, axi->gid, axi->mode); |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 936 | break; } |
Linda Knippers | ac03221 | 2006-05-16 22:03:48 -0400 | [diff] [blame] | 937 | |
Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 938 | case AUDIT_EXECVE: { |
| 939 | struct audit_aux_data_execve *axi = (void *)aux; |
| 940 | int i; |
| 941 | const char *p; |
| 942 | for (i = 0, p = axi->mem; i < axi->argc; i++) { |
| 943 | audit_log_format(ab, "a%d=", i); |
| 944 | p = audit_log_untrustedstring(ab, p); |
| 945 | audit_log_format(ab, "\n"); |
| 946 | } |
| 947 | break; } |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 948 | |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 949 | case AUDIT_SOCKETCALL: { |
| 950 | int i; |
| 951 | struct audit_aux_data_socketcall *axs = (void *)aux; |
| 952 | audit_log_format(ab, "nargs=%d", axs->nargs); |
| 953 | for (i=0; i<axs->nargs; i++) |
| 954 | audit_log_format(ab, " a%d=%lx", i, axs->args[i]); |
| 955 | break; } |
| 956 | |
| 957 | case AUDIT_SOCKADDR: { |
| 958 | struct audit_aux_data_sockaddr *axs = (void *)aux; |
| 959 | |
| 960 | audit_log_format(ab, "saddr="); |
| 961 | audit_log_hex(ab, axs->a, axs->len); |
| 962 | break; } |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 963 | |
| 964 | case AUDIT_AVC_PATH: { |
| 965 | struct audit_aux_data_path *axi = (void *)aux; |
| 966 | audit_log_d_path(ab, "path=", axi->dentry, axi->mnt); |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 967 | break; } |
| 968 | |
Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame^] | 969 | case AUDIT_FD_PAIR: { |
| 970 | struct audit_aux_data_fd_pair *axs = (void *)aux; |
| 971 | audit_log_format(ab, "fd0=%d fd1=%d", axs->fd[0], axs->fd[1]); |
| 972 | break; } |
| 973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | } |
| 975 | audit_log_end(ab); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
| 977 | |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 978 | if (context->pwd && context->pwdmnt) { |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 979 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 980 | if (ab) { |
| 981 | audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt); |
| 982 | audit_log_end(ab); |
| 983 | } |
| 984 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | for (i = 0; i < context->name_count; i++) { |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 986 | struct audit_names *n = &context->names[i]; |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 987 | |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 988 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | if (!ab) |
| 990 | continue; /* audit_panic has been called */ |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | audit_log_format(ab, "item=%d", i); |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 993 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 994 | if (n->name) { |
| 995 | switch(n->name_len) { |
| 996 | case AUDIT_NAME_FULL: |
| 997 | /* log the full path */ |
| 998 | audit_log_format(ab, " name="); |
| 999 | audit_log_untrustedstring(ab, n->name); |
| 1000 | break; |
| 1001 | case 0: |
| 1002 | /* name was specified as a relative path and the |
| 1003 | * directory component is the cwd */ |
| 1004 | audit_log_d_path(ab, " name=", context->pwd, |
| 1005 | context->pwdmnt); |
| 1006 | break; |
| 1007 | default: |
| 1008 | /* log the name's directory component */ |
| 1009 | audit_log_format(ab, " name="); |
| 1010 | audit_log_n_untrustedstring(ab, n->name_len, |
| 1011 | n->name); |
| 1012 | } |
| 1013 | } else |
| 1014 | audit_log_format(ab, " name=(null)"); |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1015 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1016 | if (n->ino != (unsigned long)-1) { |
| 1017 | audit_log_format(ab, " inode=%lu" |
| 1018 | " dev=%02x:%02x mode=%#o" |
| 1019 | " ouid=%u ogid=%u rdev=%02x:%02x", |
| 1020 | n->ino, |
| 1021 | MAJOR(n->dev), |
| 1022 | MINOR(n->dev), |
| 1023 | n->mode, |
| 1024 | n->uid, |
| 1025 | n->gid, |
| 1026 | MAJOR(n->rdev), |
| 1027 | MINOR(n->rdev)); |
| 1028 | } |
| 1029 | if (n->osid != 0) { |
Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1030 | char *ctx = NULL; |
| 1031 | u32 len; |
Stephen Smalley | 1a70cd4 | 2006-09-25 23:31:57 -0700 | [diff] [blame] | 1032 | if (selinux_sid_to_string( |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1033 | n->osid, &ctx, &len)) { |
| 1034 | audit_log_format(ab, " osid=%u", n->osid); |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1035 | call_panic = 2; |
Steve Grubb | 1b50eed | 2006-04-03 14:06:13 -0400 | [diff] [blame] | 1036 | } else |
| 1037 | audit_log_format(ab, " obj=%s", ctx); |
| 1038 | kfree(ctx); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | audit_log_end(ab); |
| 1042 | } |
Steve Grubb | 9c7aa6a | 2006-03-31 15:22:49 -0500 | [diff] [blame] | 1043 | if (call_panic) |
| 1044 | audit_panic("error converting sid to string"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1047 | /** |
| 1048 | * audit_free - free a per-task audit context |
| 1049 | * @tsk: task whose audit context block to free |
| 1050 | * |
Al Viro | fa84cb9 | 2006-03-29 20:30:19 -0500 | [diff] [blame] | 1051 | * Called from copy_process and do_exit |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1052 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | void audit_free(struct task_struct *tsk) |
| 1054 | { |
| 1055 | struct audit_context *context; |
| 1056 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | context = audit_get_context(tsk, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | if (likely(!context)) |
| 1059 | return; |
| 1060 | |
| 1061 | /* Check for system calls that do not go through the exit |
David Woodhouse | f556196 | 2005-07-13 22:47:07 +0100 | [diff] [blame] | 1062 | * function (e.g., exit_group), then free context block. |
| 1063 | * We use GFP_ATOMIC here because we might be doing this |
| 1064 | * in the context of the idle thread */ |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1065 | /* that can happen only if we are called from do_exit() */ |
David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 1066 | if (context->in_syscall && context->auditable) |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1067 | audit_log_exit(context, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | |
| 1069 | audit_free_context(context); |
| 1070 | } |
| 1071 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1072 | /** |
| 1073 | * audit_syscall_entry - fill in an audit record at syscall entry |
| 1074 | * @tsk: task being audited |
| 1075 | * @arch: architecture type |
| 1076 | * @major: major syscall type (function) |
| 1077 | * @a1: additional syscall register 1 |
| 1078 | * @a2: additional syscall register 2 |
| 1079 | * @a3: additional syscall register 3 |
| 1080 | * @a4: additional syscall register 4 |
| 1081 | * |
| 1082 | * Fill in audit context at syscall entry. This only happens if the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | * audit context was created when the task was created and the state or |
| 1084 | * filters demand the audit context be built. If the state from the |
| 1085 | * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT, |
| 1086 | * then the record will be written at syscall exit time (otherwise, it |
| 1087 | * will only be written if another part of the kernel requests that it |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1088 | * be written). |
| 1089 | */ |
Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1090 | void audit_syscall_entry(int arch, int major, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | unsigned long a1, unsigned long a2, |
| 1092 | unsigned long a3, unsigned long a4) |
| 1093 | { |
Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1094 | struct task_struct *tsk = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | struct audit_context *context = tsk->audit_context; |
| 1096 | enum audit_state state; |
| 1097 | |
| 1098 | BUG_ON(!context); |
| 1099 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1100 | /* |
| 1101 | * This happens only on certain architectures that make system |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | * calls in kernel_thread via the entry.S interface, instead of |
| 1103 | * with direct calls. (If you are porting to a new |
| 1104 | * architecture, hitting this condition can indicate that you |
| 1105 | * got the _exit/_leave calls backward in entry.S.) |
| 1106 | * |
| 1107 | * i386 no |
| 1108 | * x86_64 no |
Jon Mason | 2ef9481 | 2006-01-23 10:58:20 -0600 | [diff] [blame] | 1109 | * ppc64 yes (see arch/powerpc/platforms/iseries/misc.S) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | * |
| 1111 | * This also happens with vm86 emulation in a non-nested manner |
| 1112 | * (entries without exits), so this case must be caught. |
| 1113 | */ |
| 1114 | if (context->in_syscall) { |
| 1115 | struct audit_context *newctx; |
| 1116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | #if AUDIT_DEBUG |
| 1118 | printk(KERN_ERR |
| 1119 | "audit(:%d) pid=%d in syscall=%d;" |
| 1120 | " entering syscall=%d\n", |
| 1121 | context->serial, tsk->pid, context->major, major); |
| 1122 | #endif |
| 1123 | newctx = audit_alloc_context(context->state); |
| 1124 | if (newctx) { |
| 1125 | newctx->previous = context; |
| 1126 | context = newctx; |
| 1127 | tsk->audit_context = newctx; |
| 1128 | } else { |
| 1129 | /* If we can't alloc a new context, the best we |
| 1130 | * can do is to leak memory (any pending putname |
| 1131 | * will be lost). The only other alternative is |
| 1132 | * to abandon auditing. */ |
| 1133 | audit_zero_context(context, context->state); |
| 1134 | } |
| 1135 | } |
| 1136 | BUG_ON(context->in_syscall || context->name_count); |
| 1137 | |
| 1138 | if (!audit_enabled) |
| 1139 | return; |
| 1140 | |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1141 | context->arch = arch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | context->major = major; |
| 1143 | context->argv[0] = a1; |
| 1144 | context->argv[1] = a2; |
| 1145 | context->argv[2] = a3; |
| 1146 | context->argv[3] = a4; |
| 1147 | |
| 1148 | state = context->state; |
Al Viro | d51374a | 2006-08-03 10:59:26 -0400 | [diff] [blame] | 1149 | context->dummy = !audit_n_rules; |
| 1150 | if (!context->dummy && (state == AUDIT_SETUP_CONTEXT || state == AUDIT_BUILD_CONTEXT)) |
David Woodhouse | 0f45aa1 | 2005-06-19 19:35:50 +0100 | [diff] [blame] | 1151 | state = audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_ENTRY]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | if (likely(state == AUDIT_DISABLED)) |
| 1153 | return; |
| 1154 | |
David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1155 | context->serial = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | context->ctime = CURRENT_TIME; |
| 1157 | context->in_syscall = 1; |
| 1158 | context->auditable = !!(state == AUDIT_RECORD_CONTEXT); |
Alexander Viro | 419c58f | 2006-09-29 00:08:50 -0400 | [diff] [blame] | 1159 | context->ppid = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | } |
| 1161 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1162 | /** |
| 1163 | * audit_syscall_exit - deallocate audit context after a system call |
| 1164 | * @tsk: task being audited |
| 1165 | * @valid: success/failure flag |
| 1166 | * @return_code: syscall return value |
| 1167 | * |
| 1168 | * Tear down after system call. If the audit context has been marked as |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | * auditable (either because of the AUDIT_RECORD_CONTEXT state from |
| 1170 | * filtering, or because some other part of the kernel write an audit |
| 1171 | * message), then write out the syscall information. In call cases, |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1172 | * free the names stored from getname(). |
| 1173 | */ |
Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1174 | void audit_syscall_exit(int valid, long return_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | { |
Al Viro | 5411be5 | 2006-03-29 20:23:36 -0500 | [diff] [blame] | 1176 | struct task_struct *tsk = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | struct audit_context *context; |
| 1178 | |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1179 | context = audit_get_context(tsk, valid, return_code); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | if (likely(!context)) |
Al Viro | 97e94c4 | 2006-03-29 20:26:24 -0500 | [diff] [blame] | 1182 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | |
David Woodhouse | f7056d6 | 2005-06-20 16:07:33 +0100 | [diff] [blame] | 1184 | if (context->in_syscall && context->auditable) |
Al Viro | e495149 | 2006-03-29 20:17:10 -0500 | [diff] [blame] | 1185 | audit_log_exit(context, tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | context->in_syscall = 0; |
| 1188 | context->auditable = 0; |
| 2fd6f58 | 2005-04-29 16:08:28 +0100 | [diff] [blame] | 1189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | if (context->previous) { |
| 1191 | struct audit_context *new_context = context->previous; |
| 1192 | context->previous = NULL; |
| 1193 | audit_free_context(context); |
| 1194 | tsk->audit_context = new_context; |
| 1195 | } else { |
| 1196 | audit_free_names(context); |
| 1197 | audit_free_aux(context); |
Amy Griffis | 5adc8a6 | 2006-06-14 18:45:21 -0400 | [diff] [blame] | 1198 | kfree(context->filterkey); |
| 1199 | context->filterkey = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | tsk->audit_context = context; |
| 1201 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | } |
| 1203 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1204 | /** |
| 1205 | * audit_getname - add a name to the list |
| 1206 | * @name: name to add |
| 1207 | * |
| 1208 | * Add a name to the list of audit names for this context. |
| 1209 | * Called from fs/namei.c:getname(). |
| 1210 | */ |
Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1211 | void __audit_getname(const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | { |
| 1213 | struct audit_context *context = current->audit_context; |
| 1214 | |
Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1215 | if (IS_ERR(name) || !name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | return; |
| 1217 | |
| 1218 | if (!context->in_syscall) { |
| 1219 | #if AUDIT_DEBUG == 2 |
| 1220 | printk(KERN_ERR "%s:%d(:%d): ignoring getname(%p)\n", |
| 1221 | __FILE__, __LINE__, context->serial, name); |
| 1222 | dump_stack(); |
| 1223 | #endif |
| 1224 | return; |
| 1225 | } |
| 1226 | BUG_ON(context->name_count >= AUDIT_NAMES); |
| 1227 | context->names[context->name_count].name = name; |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1228 | context->names[context->name_count].name_len = AUDIT_NAME_FULL; |
| 1229 | context->names[context->name_count].name_put = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | context->names[context->name_count].ino = (unsigned long)-1; |
| 1231 | ++context->name_count; |
David Woodhouse | 8f37d47 | 2005-05-27 12:17:28 +0100 | [diff] [blame] | 1232 | if (!context->pwd) { |
| 1233 | read_lock(¤t->fs->lock); |
| 1234 | context->pwd = dget(current->fs->pwd); |
| 1235 | context->pwdmnt = mntget(current->fs->pwdmnt); |
| 1236 | read_unlock(¤t->fs->lock); |
| 1237 | } |
| 1238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | } |
| 1240 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1241 | /* audit_putname - intercept a putname request |
| 1242 | * @name: name to intercept and delay for putname |
| 1243 | * |
| 1244 | * If we have stored the name from getname in the audit context, |
| 1245 | * then we delay the putname until syscall exit. |
| 1246 | * Called from include/linux/fs.h:putname(). |
| 1247 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | void audit_putname(const char *name) |
| 1249 | { |
| 1250 | struct audit_context *context = current->audit_context; |
| 1251 | |
| 1252 | BUG_ON(!context); |
| 1253 | if (!context->in_syscall) { |
| 1254 | #if AUDIT_DEBUG == 2 |
| 1255 | printk(KERN_ERR "%s:%d(:%d): __putname(%p)\n", |
| 1256 | __FILE__, __LINE__, context->serial, name); |
| 1257 | if (context->name_count) { |
| 1258 | int i; |
| 1259 | for (i = 0; i < context->name_count; i++) |
| 1260 | printk(KERN_ERR "name[%d] = %p = %s\n", i, |
| 1261 | context->names[i].name, |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1262 | context->names[i].name ?: "(null)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | } |
| 1264 | #endif |
| 1265 | __putname(name); |
| 1266 | } |
| 1267 | #if AUDIT_DEBUG |
| 1268 | else { |
| 1269 | ++context->put_count; |
| 1270 | if (context->put_count > context->name_count) { |
| 1271 | printk(KERN_ERR "%s:%d(:%d): major=%d" |
| 1272 | " in_syscall=%d putname(%p) name_count=%d" |
| 1273 | " put_count=%d\n", |
| 1274 | __FILE__, __LINE__, |
| 1275 | context->serial, context->major, |
| 1276 | context->in_syscall, name, context->name_count, |
| 1277 | context->put_count); |
| 1278 | dump_stack(); |
| 1279 | } |
| 1280 | } |
| 1281 | #endif |
| 1282 | } |
| 1283 | |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1284 | /* Copy inode data into an audit_names. */ |
| 1285 | static void audit_copy_inode(struct audit_names *name, const struct inode *inode) |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1286 | { |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1287 | name->ino = inode->i_ino; |
| 1288 | name->dev = inode->i_sb->s_dev; |
| 1289 | name->mode = inode->i_mode; |
| 1290 | name->uid = inode->i_uid; |
| 1291 | name->gid = inode->i_gid; |
| 1292 | name->rdev = inode->i_rdev; |
| 1293 | selinux_get_inode_sid(inode, &name->osid); |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1296 | /** |
| 1297 | * audit_inode - store the inode and device from a lookup |
| 1298 | * @name: name being audited |
| 1299 | * @inode: inode being audited |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1300 | * |
| 1301 | * Called from fs/namei.c:path_lookup(). |
| 1302 | */ |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1303 | void __audit_inode(const char *name, const struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | { |
| 1305 | int idx; |
| 1306 | struct audit_context *context = current->audit_context; |
| 1307 | |
| 1308 | if (!context->in_syscall) |
| 1309 | return; |
| 1310 | if (context->name_count |
| 1311 | && context->names[context->name_count-1].name |
| 1312 | && context->names[context->name_count-1].name == name) |
| 1313 | idx = context->name_count - 1; |
| 1314 | else if (context->name_count > 1 |
| 1315 | && context->names[context->name_count-2].name |
| 1316 | && context->names[context->name_count-2].name == name) |
| 1317 | idx = context->name_count - 2; |
| 1318 | else { |
| 1319 | /* FIXME: how much do we care about inodes that have no |
| 1320 | * associated name? */ |
| 1321 | if (context->name_count >= AUDIT_NAMES - AUDIT_NAMES_RESERVED) |
| 1322 | return; |
| 1323 | idx = context->name_count++; |
| 1324 | context->names[idx].name = NULL; |
| 1325 | #if AUDIT_DEBUG |
| 1326 | ++context->ino_count; |
| 1327 | #endif |
| 1328 | } |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1329 | audit_copy_inode(&context->names[idx], inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | } |
| 1331 | |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1332 | /** |
| 1333 | * audit_inode_child - collect inode info for created/removed objects |
| 1334 | * @dname: inode's dentry name |
| 1335 | * @inode: inode being audited |
Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1336 | * @parent: inode of dentry parent |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1337 | * |
| 1338 | * For syscalls that create or remove filesystem objects, audit_inode |
| 1339 | * can only collect information for the filesystem object's parent. |
| 1340 | * This call updates the audit context with the child's information. |
| 1341 | * Syscalls that create a new filesystem object must be hooked after |
| 1342 | * the object is created. Syscalls that remove a filesystem object |
| 1343 | * must be hooked prior, in order to capture the target inode during |
| 1344 | * unsuccessful attempts. |
| 1345 | */ |
| 1346 | void __audit_inode_child(const char *dname, const struct inode *inode, |
Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1347 | const struct inode *parent) |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1348 | { |
| 1349 | int idx; |
| 1350 | struct audit_context *context = current->audit_context; |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1351 | const char *found_name = NULL; |
| 1352 | int dirlen = 0; |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1353 | |
| 1354 | if (!context->in_syscall) |
| 1355 | return; |
| 1356 | |
| 1357 | /* determine matching parent */ |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1358 | if (!dname) |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1359 | goto update_context; |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1360 | for (idx = 0; idx < context->name_count; idx++) |
Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1361 | if (context->names[idx].ino == parent->i_ino) { |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1362 | const char *name = context->names[idx].name; |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1363 | |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1364 | if (!name) |
| 1365 | continue; |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1366 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1367 | if (audit_compare_dname_path(dname, name, &dirlen) == 0) { |
| 1368 | context->names[idx].name_len = dirlen; |
| 1369 | found_name = name; |
| 1370 | break; |
| 1371 | } |
Amy Griffis | f368c07d | 2006-04-07 16:55:56 -0400 | [diff] [blame] | 1372 | } |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1373 | |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1374 | update_context: |
Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 1375 | idx = context->name_count; |
| 1376 | if (context->name_count == AUDIT_NAMES) { |
| 1377 | printk(KERN_DEBUG "name_count maxed and losing %s\n", |
| 1378 | found_name ?: "(null)"); |
| 1379 | return; |
| 1380 | } |
| 1381 | context->name_count++; |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1382 | #if AUDIT_DEBUG |
| 1383 | context->ino_count++; |
| 1384 | #endif |
Amy Griffis | 9c937dc | 2006-06-08 23:19:31 -0400 | [diff] [blame] | 1385 | /* Re-use the name belonging to the slot for a matching parent directory. |
| 1386 | * All names for this context are relinquished in audit_free_names() */ |
| 1387 | context->names[idx].name = found_name; |
| 1388 | context->names[idx].name_len = AUDIT_NAME_FULL; |
| 1389 | context->names[idx].name_put = 0; /* don't call __putname() */ |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 1390 | |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1391 | if (!inode) |
| 1392 | context->names[idx].ino = (unsigned long)-1; |
| 1393 | else |
| 1394 | audit_copy_inode(&context->names[idx], inode); |
Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1395 | |
| 1396 | /* A parent was not found in audit_names, so copy the inode data for the |
| 1397 | * provided parent. */ |
| 1398 | if (!found_name) { |
Steve Grubb | ac9910c | 2006-09-28 14:31:32 -0400 | [diff] [blame] | 1399 | idx = context->name_count; |
| 1400 | if (context->name_count == AUDIT_NAMES) { |
| 1401 | printk(KERN_DEBUG |
| 1402 | "name_count maxed and losing parent inode data: dev=%02x:%02x, inode=%lu", |
| 1403 | MAJOR(parent->i_sb->s_dev), |
| 1404 | MINOR(parent->i_sb->s_dev), |
| 1405 | parent->i_ino); |
| 1406 | return; |
| 1407 | } |
| 1408 | context->name_count++; |
Amy Griffis | 73d3ec5 | 2006-07-13 13:16:39 -0400 | [diff] [blame] | 1409 | #if AUDIT_DEBUG |
| 1410 | context->ino_count++; |
| 1411 | #endif |
| 1412 | audit_copy_inode(&context->names[idx], parent); |
| 1413 | } |
Amy Griffis | 3e2efce | 2006-07-13 13:16:02 -0400 | [diff] [blame] | 1414 | } |
| 1415 | |
| 1416 | /** |
| 1417 | * audit_inode_update - update inode info for last collected name |
| 1418 | * @inode: inode being audited |
| 1419 | * |
| 1420 | * When open() is called on an existing object with the O_CREAT flag, the inode |
| 1421 | * data audit initially collects is incorrect. This additional hook ensures |
| 1422 | * audit has the inode data for the actual object to be opened. |
| 1423 | */ |
| 1424 | void __audit_inode_update(const struct inode *inode) |
| 1425 | { |
| 1426 | struct audit_context *context = current->audit_context; |
| 1427 | int idx; |
| 1428 | |
| 1429 | if (!context->in_syscall || !inode) |
| 1430 | return; |
| 1431 | |
| 1432 | if (context->name_count == 0) { |
| 1433 | context->name_count++; |
| 1434 | #if AUDIT_DEBUG |
| 1435 | context->ino_count++; |
| 1436 | #endif |
| 1437 | } |
| 1438 | idx = context->name_count - 1; |
| 1439 | |
| 1440 | audit_copy_inode(&context->names[idx], inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } |
| 1442 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1443 | /** |
| 1444 | * auditsc_get_stamp - get local copies of audit_context values |
| 1445 | * @ctx: audit_context for the task |
| 1446 | * @t: timespec to store time recorded in the audit_context |
| 1447 | * @serial: serial value that is recorded in the audit_context |
| 1448 | * |
| 1449 | * Also sets the context as auditable. |
| 1450 | */ |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1451 | void auditsc_get_stamp(struct audit_context *ctx, |
| 1452 | struct timespec *t, unsigned int *serial) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | { |
David Woodhouse | ce625a8 | 2005-07-18 14:24:46 -0400 | [diff] [blame] | 1454 | if (!ctx->serial) |
| 1455 | ctx->serial = audit_serial(); |
David Woodhouse | bfb4496 | 2005-05-21 21:08:09 +0100 | [diff] [blame] | 1456 | t->tv_sec = ctx->ctime.tv_sec; |
| 1457 | t->tv_nsec = ctx->ctime.tv_nsec; |
| 1458 | *serial = ctx->serial; |
| 1459 | ctx->auditable = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | } |
| 1461 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1462 | /** |
| 1463 | * audit_set_loginuid - set a task's audit_context loginuid |
| 1464 | * @task: task whose audit context is being modified |
| 1465 | * @loginuid: loginuid value |
| 1466 | * |
| 1467 | * Returns 0. |
| 1468 | * |
| 1469 | * Called (set) from fs/proc/base.c::proc_loginuid_write(). |
| 1470 | */ |
Steve Grubb | 456be6c | 2005-04-29 17:30:07 +0100 | [diff] [blame] | 1471 | int audit_set_loginuid(struct task_struct *task, uid_t loginuid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | { |
Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1473 | struct audit_context *context = task->audit_context; |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 1474 | |
Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1475 | if (context) { |
| 1476 | /* Only log if audit is enabled */ |
| 1477 | if (context->in_syscall) { |
| 1478 | struct audit_buffer *ab; |
| 1479 | |
| 1480 | ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN); |
| 1481 | if (ab) { |
| 1482 | audit_log_format(ab, "login pid=%d uid=%u " |
| 1483 | "old auid=%u new auid=%u", |
| 1484 | task->pid, task->uid, |
| 1485 | context->loginuid, loginuid); |
| 1486 | audit_log_end(ab); |
| 1487 | } |
Steve Grubb | c040499 | 2005-05-13 18:17:42 +0100 | [diff] [blame] | 1488 | } |
Steve Grubb | 4175710 | 2006-06-12 07:48:28 -0400 | [diff] [blame] | 1489 | context->loginuid = loginuid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | } |
| 1491 | return 0; |
| 1492 | } |
| 1493 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1494 | /** |
| 1495 | * audit_get_loginuid - get the loginuid for an audit_context |
| 1496 | * @ctx: the audit_context |
| 1497 | * |
| 1498 | * Returns the context's loginuid or -1 if @ctx is NULL. |
| 1499 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | uid_t audit_get_loginuid(struct audit_context *ctx) |
| 1501 | { |
| 1502 | return ctx ? ctx->loginuid : -1; |
| 1503 | } |
| 1504 | |
Joy Latten | 161a09e | 2006-11-27 13:11:54 -0600 | [diff] [blame] | 1505 | EXPORT_SYMBOL(audit_get_loginuid); |
| 1506 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1507 | /** |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1508 | * __audit_mq_open - record audit data for a POSIX MQ open |
| 1509 | * @oflag: open flag |
| 1510 | * @mode: mode bits |
| 1511 | * @u_attr: queue attributes |
| 1512 | * |
| 1513 | * Returns 0 for success or NULL context or < 0 on error. |
| 1514 | */ |
| 1515 | int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr) |
| 1516 | { |
| 1517 | struct audit_aux_data_mq_open *ax; |
| 1518 | struct audit_context *context = current->audit_context; |
| 1519 | |
| 1520 | if (!audit_enabled) |
| 1521 | return 0; |
| 1522 | |
| 1523 | if (likely(!context)) |
| 1524 | return 0; |
| 1525 | |
| 1526 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1527 | if (!ax) |
| 1528 | return -ENOMEM; |
| 1529 | |
| 1530 | if (u_attr != NULL) { |
| 1531 | if (copy_from_user(&ax->attr, u_attr, sizeof(ax->attr))) { |
| 1532 | kfree(ax); |
| 1533 | return -EFAULT; |
| 1534 | } |
| 1535 | } else |
| 1536 | memset(&ax->attr, 0, sizeof(ax->attr)); |
| 1537 | |
| 1538 | ax->oflag = oflag; |
| 1539 | ax->mode = mode; |
| 1540 | |
| 1541 | ax->d.type = AUDIT_MQ_OPEN; |
| 1542 | ax->d.next = context->aux; |
| 1543 | context->aux = (void *)ax; |
| 1544 | return 0; |
| 1545 | } |
| 1546 | |
| 1547 | /** |
| 1548 | * __audit_mq_timedsend - record audit data for a POSIX MQ timed send |
| 1549 | * @mqdes: MQ descriptor |
| 1550 | * @msg_len: Message length |
| 1551 | * @msg_prio: Message priority |
Randy Dunlap | 1dbe83c | 2006-06-27 02:54:01 -0700 | [diff] [blame] | 1552 | * @u_abs_timeout: Message timeout in absolute time |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1553 | * |
| 1554 | * Returns 0 for success or NULL context or < 0 on error. |
| 1555 | */ |
| 1556 | int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, |
| 1557 | const struct timespec __user *u_abs_timeout) |
| 1558 | { |
| 1559 | struct audit_aux_data_mq_sendrecv *ax; |
| 1560 | struct audit_context *context = current->audit_context; |
| 1561 | |
| 1562 | if (!audit_enabled) |
| 1563 | return 0; |
| 1564 | |
| 1565 | if (likely(!context)) |
| 1566 | return 0; |
| 1567 | |
| 1568 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1569 | if (!ax) |
| 1570 | return -ENOMEM; |
| 1571 | |
| 1572 | if (u_abs_timeout != NULL) { |
| 1573 | if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) { |
| 1574 | kfree(ax); |
| 1575 | return -EFAULT; |
| 1576 | } |
| 1577 | } else |
| 1578 | memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout)); |
| 1579 | |
| 1580 | ax->mqdes = mqdes; |
| 1581 | ax->msg_len = msg_len; |
| 1582 | ax->msg_prio = msg_prio; |
| 1583 | |
| 1584 | ax->d.type = AUDIT_MQ_SENDRECV; |
| 1585 | ax->d.next = context->aux; |
| 1586 | context->aux = (void *)ax; |
| 1587 | return 0; |
| 1588 | } |
| 1589 | |
| 1590 | /** |
| 1591 | * __audit_mq_timedreceive - record audit data for a POSIX MQ timed receive |
| 1592 | * @mqdes: MQ descriptor |
| 1593 | * @msg_len: Message length |
Randy Dunlap | 1dbe83c | 2006-06-27 02:54:01 -0700 | [diff] [blame] | 1594 | * @u_msg_prio: Message priority |
| 1595 | * @u_abs_timeout: Message timeout in absolute time |
George C. Wilson | 20ca73b | 2006-05-24 16:09:55 -0500 | [diff] [blame] | 1596 | * |
| 1597 | * Returns 0 for success or NULL context or < 0 on error. |
| 1598 | */ |
| 1599 | int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len, |
| 1600 | unsigned int __user *u_msg_prio, |
| 1601 | const struct timespec __user *u_abs_timeout) |
| 1602 | { |
| 1603 | struct audit_aux_data_mq_sendrecv *ax; |
| 1604 | struct audit_context *context = current->audit_context; |
| 1605 | |
| 1606 | if (!audit_enabled) |
| 1607 | return 0; |
| 1608 | |
| 1609 | if (likely(!context)) |
| 1610 | return 0; |
| 1611 | |
| 1612 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1613 | if (!ax) |
| 1614 | return -ENOMEM; |
| 1615 | |
| 1616 | if (u_msg_prio != NULL) { |
| 1617 | if (get_user(ax->msg_prio, u_msg_prio)) { |
| 1618 | kfree(ax); |
| 1619 | return -EFAULT; |
| 1620 | } |
| 1621 | } else |
| 1622 | ax->msg_prio = 0; |
| 1623 | |
| 1624 | if (u_abs_timeout != NULL) { |
| 1625 | if (copy_from_user(&ax->abs_timeout, u_abs_timeout, sizeof(ax->abs_timeout))) { |
| 1626 | kfree(ax); |
| 1627 | return -EFAULT; |
| 1628 | } |
| 1629 | } else |
| 1630 | memset(&ax->abs_timeout, 0, sizeof(ax->abs_timeout)); |
| 1631 | |
| 1632 | ax->mqdes = mqdes; |
| 1633 | ax->msg_len = msg_len; |
| 1634 | |
| 1635 | ax->d.type = AUDIT_MQ_SENDRECV; |
| 1636 | ax->d.next = context->aux; |
| 1637 | context->aux = (void *)ax; |
| 1638 | return 0; |
| 1639 | } |
| 1640 | |
| 1641 | /** |
| 1642 | * __audit_mq_notify - record audit data for a POSIX MQ notify |
| 1643 | * @mqdes: MQ descriptor |
| 1644 | * @u_notification: Notification event |
| 1645 | * |
| 1646 | * Returns 0 for success or NULL context or < 0 on error. |
| 1647 | */ |
| 1648 | |
| 1649 | int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification) |
| 1650 | { |
| 1651 | struct audit_aux_data_mq_notify *ax; |
| 1652 | struct audit_context *context = current->audit_context; |
| 1653 | |
| 1654 | if (!audit_enabled) |
| 1655 | return 0; |
| 1656 | |
| 1657 | if (likely(!context)) |
| 1658 | return 0; |
| 1659 | |
| 1660 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1661 | if (!ax) |
| 1662 | return -ENOMEM; |
| 1663 | |
| 1664 | if (u_notification != NULL) { |
| 1665 | if (copy_from_user(&ax->notification, u_notification, sizeof(ax->notification))) { |
| 1666 | kfree(ax); |
| 1667 | return -EFAULT; |
| 1668 | } |
| 1669 | } else |
| 1670 | memset(&ax->notification, 0, sizeof(ax->notification)); |
| 1671 | |
| 1672 | ax->mqdes = mqdes; |
| 1673 | |
| 1674 | ax->d.type = AUDIT_MQ_NOTIFY; |
| 1675 | ax->d.next = context->aux; |
| 1676 | context->aux = (void *)ax; |
| 1677 | return 0; |
| 1678 | } |
| 1679 | |
| 1680 | /** |
| 1681 | * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute |
| 1682 | * @mqdes: MQ descriptor |
| 1683 | * @mqstat: MQ flags |
| 1684 | * |
| 1685 | * Returns 0 for success or NULL context or < 0 on error. |
| 1686 | */ |
| 1687 | int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) |
| 1688 | { |
| 1689 | struct audit_aux_data_mq_getsetattr *ax; |
| 1690 | struct audit_context *context = current->audit_context; |
| 1691 | |
| 1692 | if (!audit_enabled) |
| 1693 | return 0; |
| 1694 | |
| 1695 | if (likely(!context)) |
| 1696 | return 0; |
| 1697 | |
| 1698 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1699 | if (!ax) |
| 1700 | return -ENOMEM; |
| 1701 | |
| 1702 | ax->mqdes = mqdes; |
| 1703 | ax->mqstat = *mqstat; |
| 1704 | |
| 1705 | ax->d.type = AUDIT_MQ_GETSETATTR; |
| 1706 | ax->d.next = context->aux; |
| 1707 | context->aux = (void *)ax; |
| 1708 | return 0; |
| 1709 | } |
| 1710 | |
| 1711 | /** |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1712 | * audit_ipc_obj - record audit data for ipc object |
| 1713 | * @ipcp: ipc permissions |
| 1714 | * |
| 1715 | * Returns 0 for success or NULL context or < 0 on error. |
| 1716 | */ |
Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1717 | int __audit_ipc_obj(struct kern_ipc_perm *ipcp) |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1718 | { |
| 1719 | struct audit_aux_data_ipcctl *ax; |
| 1720 | struct audit_context *context = current->audit_context; |
| 1721 | |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1722 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1723 | if (!ax) |
| 1724 | return -ENOMEM; |
| 1725 | |
| 1726 | ax->uid = ipcp->uid; |
| 1727 | ax->gid = ipcp->gid; |
| 1728 | ax->mode = ipcp->mode; |
| 1729 | selinux_get_ipc_sid(ipcp, &ax->osid); |
| 1730 | |
| 1731 | ax->d.type = AUDIT_IPC; |
| 1732 | ax->d.next = context->aux; |
| 1733 | context->aux = (void *)ax; |
| 1734 | return 0; |
| 1735 | } |
| 1736 | |
| 1737 | /** |
| 1738 | * audit_ipc_set_perm - record audit data for new ipc permissions |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1739 | * @qbytes: msgq bytes |
| 1740 | * @uid: msgq user id |
| 1741 | * @gid: msgq group id |
| 1742 | * @mode: msgq mode (permissions) |
| 1743 | * |
| 1744 | * Returns 0 for success or NULL context or < 0 on error. |
| 1745 | */ |
Al Viro | d8945bb5 | 2006-05-18 16:01:30 -0400 | [diff] [blame] | 1746 | int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | { |
| 1748 | struct audit_aux_data_ipcctl *ax; |
| 1749 | struct audit_context *context = current->audit_context; |
| 1750 | |
Dustin Kirkland | 8c8570f | 2005-11-03 17:15:16 +0000 | [diff] [blame] | 1751 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | if (!ax) |
| 1753 | return -ENOMEM; |
| 1754 | |
| 1755 | ax->qbytes = qbytes; |
| 1756 | ax->uid = uid; |
| 1757 | ax->gid = gid; |
| 1758 | ax->mode = mode; |
| 1759 | |
Steve Grubb | 073115d | 2006-04-02 17:07:33 -0400 | [diff] [blame] | 1760 | ax->d.type = AUDIT_IPC_SET_PERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | ax->d.next = context->aux; |
| 1762 | context->aux = (void *)ax; |
| 1763 | return 0; |
| 1764 | } |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1765 | |
Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1766 | int audit_bprm(struct linux_binprm *bprm) |
| 1767 | { |
| 1768 | struct audit_aux_data_execve *ax; |
| 1769 | struct audit_context *context = current->audit_context; |
| 1770 | unsigned long p, next; |
| 1771 | void *to; |
| 1772 | |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1773 | if (likely(!audit_enabled || !context || context->dummy)) |
Al Viro | 473ae30 | 2006-04-26 14:04:08 -0400 | [diff] [blame] | 1774 | return 0; |
| 1775 | |
| 1776 | ax = kmalloc(sizeof(*ax) + PAGE_SIZE * MAX_ARG_PAGES - bprm->p, |
| 1777 | GFP_KERNEL); |
| 1778 | if (!ax) |
| 1779 | return -ENOMEM; |
| 1780 | |
| 1781 | ax->argc = bprm->argc; |
| 1782 | ax->envc = bprm->envc; |
| 1783 | for (p = bprm->p, to = ax->mem; p < MAX_ARG_PAGES*PAGE_SIZE; p = next) { |
| 1784 | struct page *page = bprm->page[p / PAGE_SIZE]; |
| 1785 | void *kaddr = kmap(page); |
| 1786 | next = (p + PAGE_SIZE) & ~(PAGE_SIZE - 1); |
| 1787 | memcpy(to, kaddr + (p & (PAGE_SIZE - 1)), next - p); |
| 1788 | to += next - p; |
| 1789 | kunmap(page); |
| 1790 | } |
| 1791 | |
| 1792 | ax->d.type = AUDIT_EXECVE; |
| 1793 | ax->d.next = context->aux; |
| 1794 | context->aux = (void *)ax; |
| 1795 | return 0; |
| 1796 | } |
| 1797 | |
| 1798 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1799 | /** |
| 1800 | * audit_socketcall - record audit data for sys_socketcall |
| 1801 | * @nargs: number of args |
| 1802 | * @args: args array |
| 1803 | * |
| 1804 | * Returns 0 for success or NULL context or < 0 on error. |
| 1805 | */ |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1806 | int audit_socketcall(int nargs, unsigned long *args) |
| 1807 | { |
| 1808 | struct audit_aux_data_socketcall *ax; |
| 1809 | struct audit_context *context = current->audit_context; |
| 1810 | |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1811 | if (likely(!context || context->dummy)) |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1812 | return 0; |
| 1813 | |
| 1814 | ax = kmalloc(sizeof(*ax) + nargs * sizeof(unsigned long), GFP_KERNEL); |
| 1815 | if (!ax) |
| 1816 | return -ENOMEM; |
| 1817 | |
| 1818 | ax->nargs = nargs; |
| 1819 | memcpy(ax->args, args, nargs * sizeof(unsigned long)); |
| 1820 | |
| 1821 | ax->d.type = AUDIT_SOCKETCALL; |
| 1822 | ax->d.next = context->aux; |
| 1823 | context->aux = (void *)ax; |
| 1824 | return 0; |
| 1825 | } |
| 1826 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1827 | /** |
Al Viro | db34950 | 2007-02-07 01:48:00 -0500 | [diff] [blame^] | 1828 | * __audit_fd_pair - record audit data for pipe and socketpair |
| 1829 | * @fd1: the first file descriptor |
| 1830 | * @fd2: the second file descriptor |
| 1831 | * |
| 1832 | * Returns 0 for success or NULL context or < 0 on error. |
| 1833 | */ |
| 1834 | int __audit_fd_pair(int fd1, int fd2) |
| 1835 | { |
| 1836 | struct audit_context *context = current->audit_context; |
| 1837 | struct audit_aux_data_fd_pair *ax; |
| 1838 | |
| 1839 | if (likely(!context)) { |
| 1840 | return 0; |
| 1841 | } |
| 1842 | |
| 1843 | ax = kmalloc(sizeof(*ax), GFP_KERNEL); |
| 1844 | if (!ax) { |
| 1845 | return -ENOMEM; |
| 1846 | } |
| 1847 | |
| 1848 | ax->fd[0] = fd1; |
| 1849 | ax->fd[1] = fd2; |
| 1850 | |
| 1851 | ax->d.type = AUDIT_FD_PAIR; |
| 1852 | ax->d.next = context->aux; |
| 1853 | context->aux = (void *)ax; |
| 1854 | return 0; |
| 1855 | } |
| 1856 | |
| 1857 | /** |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1858 | * audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto |
| 1859 | * @len: data length in user space |
| 1860 | * @a: data address in kernel space |
| 1861 | * |
| 1862 | * Returns 0 for success or NULL context or < 0 on error. |
| 1863 | */ |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1864 | int audit_sockaddr(int len, void *a) |
| 1865 | { |
| 1866 | struct audit_aux_data_sockaddr *ax; |
| 1867 | struct audit_context *context = current->audit_context; |
| 1868 | |
Al Viro | 5ac3a9c | 2006-07-16 06:38:45 -0400 | [diff] [blame] | 1869 | if (likely(!context || context->dummy)) |
David Woodhouse | 3ec3b2f | 2005-05-17 12:08:48 +0100 | [diff] [blame] | 1870 | return 0; |
| 1871 | |
| 1872 | ax = kmalloc(sizeof(*ax) + len, GFP_KERNEL); |
| 1873 | if (!ax) |
| 1874 | return -ENOMEM; |
| 1875 | |
| 1876 | ax->len = len; |
| 1877 | memcpy(ax->a, a, len); |
| 1878 | |
| 1879 | ax->d.type = AUDIT_SOCKADDR; |
| 1880 | ax->d.next = context->aux; |
| 1881 | context->aux = (void *)ax; |
| 1882 | return 0; |
| 1883 | } |
| 1884 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1885 | /** |
| 1886 | * audit_avc_path - record the granting or denial of permissions |
| 1887 | * @dentry: dentry to record |
| 1888 | * @mnt: mnt to record |
| 1889 | * |
| 1890 | * Returns 0 for success or NULL context or < 0 on error. |
| 1891 | * |
| 1892 | * Called from security/selinux/avc.c::avc_audit() |
| 1893 | */ |
Stephen Smalley | 0111610 | 2005-05-21 00:15:52 +0100 | [diff] [blame] | 1894 | int audit_avc_path(struct dentry *dentry, struct vfsmount *mnt) |
| 1895 | { |
| 1896 | struct audit_aux_data_path *ax; |
| 1897 | struct audit_context *context = current->audit_context; |
| 1898 | |
| 1899 | if (likely(!context)) |
| 1900 | return 0; |
| 1901 | |
| 1902 | ax = kmalloc(sizeof(*ax), GFP_ATOMIC); |
| 1903 | if (!ax) |
| 1904 | return -ENOMEM; |
| 1905 | |
| 1906 | ax->dentry = dget(dentry); |
| 1907 | ax->mnt = mntget(mnt); |
| 1908 | |
| 1909 | ax->d.type = AUDIT_AVC_PATH; |
| 1910 | ax->d.next = context->aux; |
| 1911 | context->aux = (void *)ax; |
| 1912 | return 0; |
| 1913 | } |
| 1914 | |
Randy Dunlap | b0dd25a | 2005-09-13 12:47:11 -0700 | [diff] [blame] | 1915 | /** |
| 1916 | * audit_signal_info - record signal info for shutting down audit subsystem |
| 1917 | * @sig: signal value |
| 1918 | * @t: task being signaled |
| 1919 | * |
| 1920 | * If the audit subsystem is being terminated, record the task (pid) |
| 1921 | * and uid that is doing that. |
| 1922 | */ |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 1923 | void __audit_signal_info(int sig, struct task_struct *t) |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1924 | { |
| 1925 | extern pid_t audit_sig_pid; |
| 1926 | extern uid_t audit_sig_uid; |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 1927 | extern u32 audit_sig_sid; |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1928 | |
Al Viro | e139606 | 2006-05-25 10:19:47 -0400 | [diff] [blame] | 1929 | if (sig == SIGTERM || sig == SIGHUP || sig == SIGUSR1) { |
| 1930 | struct task_struct *tsk = current; |
| 1931 | struct audit_context *ctx = tsk->audit_context; |
| 1932 | audit_sig_pid = tsk->pid; |
| 1933 | if (ctx) |
| 1934 | audit_sig_uid = ctx->loginuid; |
| 1935 | else |
| 1936 | audit_sig_uid = tsk->uid; |
| 1937 | selinux_get_task_sid(tsk, &audit_sig_sid); |
Steve Grubb | c2f0c7c | 2005-05-06 12:38:39 +0100 | [diff] [blame] | 1938 | } |
| 1939 | } |