blob: 5f3868202183f8fd76870447cfc73f4039455b76 [file] [log] [blame]
Miloslav Trmac522ed772007-07-15 23:40:56 -07001/*
2 * Creating audit events from TTY input.
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All rights reserved. This copyrighted
5 * material is made available to anyone wishing to use, modify, copy, or
6 * redistribute it subject to the terms and conditions of the GNU General
7 * Public License v.2.
8 *
9 * Authors: Miloslav Trmac <mitr@redhat.com>
10 */
11
12#include <linux/audit.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Miloslav Trmac522ed772007-07-15 23:40:56 -070014#include <linux/tty.h>
15
16struct tty_audit_buf {
17 atomic_t count;
18 struct mutex mutex; /* Protects all data below */
19 int major, minor; /* The TTY which the data is from */
20 unsigned icanon:1;
21 size_t valid;
22 unsigned char *data; /* Allocated size N_TTY_BUF_SIZE */
23};
24
25static struct tty_audit_buf *tty_audit_buf_alloc(int major, int minor,
Jiri Slaby6c633f22012-10-18 22:26:37 +020026 unsigned icanon)
Miloslav Trmac522ed772007-07-15 23:40:56 -070027{
28 struct tty_audit_buf *buf;
29
Alan Cox66c6cea2008-02-08 04:18:46 -080030 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
Miloslav Trmac522ed772007-07-15 23:40:56 -070031 if (!buf)
32 goto err;
Alan Coxc481c702009-06-11 13:04:27 +010033 buf->data = kmalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
Miloslav Trmac522ed772007-07-15 23:40:56 -070034 if (!buf->data)
35 goto err_buf;
36 atomic_set(&buf->count, 1);
37 mutex_init(&buf->mutex);
38 buf->major = major;
39 buf->minor = minor;
40 buf->icanon = icanon;
41 buf->valid = 0;
42 return buf;
43
44err_buf:
45 kfree(buf);
46err:
47 return NULL;
48}
49
50static void tty_audit_buf_free(struct tty_audit_buf *buf)
51{
52 WARN_ON(buf->valid != 0);
Alan Coxc481c702009-06-11 13:04:27 +010053 kfree(buf->data);
Miloslav Trmac522ed772007-07-15 23:40:56 -070054 kfree(buf);
55}
56
57static void tty_audit_buf_put(struct tty_audit_buf *buf)
58{
59 if (atomic_dec_and_test(&buf->count))
60 tty_audit_buf_free(buf);
61}
62
Eric Paris152f4972013-04-19 13:56:11 -040063static void tty_audit_log(const char *description, int major, int minor,
64 unsigned char *data, size_t size)
Al Viro1e641742008-12-09 09:23:33 +000065{
66 struct audit_buffer *ab;
Eric Paris152f4972013-04-19 13:56:11 -040067 struct task_struct *tsk = current;
68 uid_t uid = from_kuid(&init_user_ns, task_uid(tsk));
69 uid_t loginuid = from_kuid(&init_user_ns, audit_get_loginuid(tsk));
70 u32 sessionid = audit_get_sessionid(tsk);
Al Viro1e641742008-12-09 09:23:33 +000071
72 ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_TTY);
73 if (ab) {
74 char name[sizeof(tsk->comm)];
Al Viro1e641742008-12-09 09:23:33 +000075
Eric Paris152f4972013-04-19 13:56:11 -040076 audit_log_format(ab, "%s pid=%u uid=%u auid=%u ses=%u major=%d"
77 " minor=%d comm=", description, tsk->pid, uid,
78 loginuid, sessionid, major, minor);
Al Viro1e641742008-12-09 09:23:33 +000079 get_task_comm(name, tsk);
80 audit_log_untrustedstring(ab, name);
81 audit_log_format(ab, " data=");
82 audit_log_n_hex(ab, data, size);
83 audit_log_end(ab);
84 }
85}
86
Miloslav Trmac522ed772007-07-15 23:40:56 -070087/**
88 * tty_audit_buf_push - Push buffered data out
89 *
90 * Generate an audit message from the contents of @buf, which is owned by
Eric Paris152f4972013-04-19 13:56:11 -040091 * the current task. @buf->mutex must be locked.
Miloslav Trmac522ed772007-07-15 23:40:56 -070092 */
Eric Paris152f4972013-04-19 13:56:11 -040093static void tty_audit_buf_push(struct tty_audit_buf *buf)
Miloslav Trmac522ed772007-07-15 23:40:56 -070094{
Miloslav Trmac522ed772007-07-15 23:40:56 -070095 if (buf->valid == 0)
96 return;
Xiaotian Feng00bff392011-03-03 18:08:24 +080097 if (audit_enabled == 0) {
98 buf->valid = 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -070099 return;
Xiaotian Feng00bff392011-03-03 18:08:24 +0800100 }
Eric Paris152f4972013-04-19 13:56:11 -0400101 tty_audit_log("tty", buf->major, buf->minor, buf->data, buf->valid);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700102 buf->valid = 0;
103}
104
105/**
Miloslav Trmac522ed772007-07-15 23:40:56 -0700106 * tty_audit_exit - Handle a task exit
107 *
108 * Make sure all buffered data is written out and deallocate the buffer.
109 * Only needs to be called if current->signal->tty_audit_buf != %NULL.
110 */
111void tty_audit_exit(void)
112{
113 struct tty_audit_buf *buf;
Eric Parisbde02ca2013-04-30 11:01:14 -0400114 unsigned long flags;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700115
Eric Parisbde02ca2013-04-30 11:01:14 -0400116 spin_lock_irqsave(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700117 buf = current->signal->tty_audit_buf;
118 current->signal->tty_audit_buf = NULL;
Eric Parisbde02ca2013-04-30 11:01:14 -0400119 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700120 if (!buf)
121 return;
122
123 mutex_lock(&buf->mutex);
Eric Paris152f4972013-04-19 13:56:11 -0400124 tty_audit_buf_push(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700125 mutex_unlock(&buf->mutex);
126
127 tty_audit_buf_put(buf);
128}
129
130/**
131 * tty_audit_fork - Copy TTY audit state for a new task
132 *
133 * Set up TTY audit state in @sig from current. @sig needs no locking.
134 */
135void tty_audit_fork(struct signal_struct *sig)
136{
Eric Parisbde02ca2013-04-30 11:01:14 -0400137 unsigned long flags;
138
139 spin_lock_irqsave(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700140 sig->audit_tty = current->signal->audit_tty;
Richard Guy Briggs46e959e2013-05-03 14:03:50 -0400141 sig->audit_tty_log_passwd = current->signal->audit_tty_log_passwd;
Eric Parisbde02ca2013-04-30 11:01:14 -0400142 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700143}
144
145/**
Al Viro1e641742008-12-09 09:23:33 +0000146 * tty_audit_tiocsti - Log TIOCSTI
147 */
148void tty_audit_tiocsti(struct tty_struct *tty, char ch)
149{
150 struct tty_audit_buf *buf;
151 int major, minor, should_audit;
Eric Parisbde02ca2013-04-30 11:01:14 -0400152 unsigned long flags;
Al Viro1e641742008-12-09 09:23:33 +0000153
Eric Parisbde02ca2013-04-30 11:01:14 -0400154 spin_lock_irqsave(&current->sighand->siglock, flags);
Al Viro1e641742008-12-09 09:23:33 +0000155 should_audit = current->signal->audit_tty;
156 buf = current->signal->tty_audit_buf;
157 if (buf)
158 atomic_inc(&buf->count);
Eric Parisbde02ca2013-04-30 11:01:14 -0400159 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Al Viro1e641742008-12-09 09:23:33 +0000160
161 major = tty->driver->major;
162 minor = tty->driver->minor_start + tty->index;
163 if (buf) {
164 mutex_lock(&buf->mutex);
165 if (buf->major == major && buf->minor == minor)
Eric Paris152f4972013-04-19 13:56:11 -0400166 tty_audit_buf_push(buf);
Al Viro1e641742008-12-09 09:23:33 +0000167 mutex_unlock(&buf->mutex);
168 tty_audit_buf_put(buf);
169 }
170
171 if (should_audit && audit_enabled) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700172 kuid_t auid;
Al Viro1e641742008-12-09 09:23:33 +0000173 unsigned int sessionid;
174
175 auid = audit_get_loginuid(current);
176 sessionid = audit_get_sessionid(current);
Eric Paris152f4972013-04-19 13:56:11 -0400177 tty_audit_log("ioctl=TIOCSTI", major, minor, &ch, 1);
Al Viro1e641742008-12-09 09:23:33 +0000178 }
179}
180
181/**
Eric Paris152f4972013-04-19 13:56:11 -0400182 * tty_audit_push_current - Flush current's pending audit data
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000183 *
Eric Paris152f4972013-04-19 13:56:11 -0400184 * Try to lock sighand and get a reference to the tty audit buffer if available.
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000185 * Flush the buffer or return an appropriate error code.
Miloslav Trmac522ed772007-07-15 23:40:56 -0700186 */
Eric Paris152f4972013-04-19 13:56:11 -0400187int tty_audit_push_current(void)
Miloslav Trmac522ed772007-07-15 23:40:56 -0700188{
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000189 struct tty_audit_buf *buf = ERR_PTR(-EPERM);
Eric Paris152f4972013-04-19 13:56:11 -0400190 struct task_struct *tsk = current;
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000191 unsigned long flags;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700192
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000193 if (!lock_task_sighand(tsk, &flags))
194 return -ESRCH;
195
196 if (tsk->signal->audit_tty) {
197 buf = tsk->signal->tty_audit_buf;
198 if (buf)
199 atomic_inc(&buf->count);
200 }
201 unlock_task_sighand(tsk, &flags);
202
203 /*
204 * Return 0 when signal->audit_tty set
205 * but tsk->signal->tty_audit_buf == NULL.
206 */
207 if (!buf || IS_ERR(buf))
208 return PTR_ERR(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700209
210 mutex_lock(&buf->mutex);
Eric Paris152f4972013-04-19 13:56:11 -0400211 tty_audit_buf_push(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700212 mutex_unlock(&buf->mutex);
213
214 tty_audit_buf_put(buf);
Thomas Gleixner3c80fe42009-12-09 14:19:31 +0000215 return 0;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700216}
217
218/**
219 * tty_audit_buf_get - Get an audit buffer.
220 *
221 * Get an audit buffer for @tty, allocate it if necessary. Return %NULL
222 * if TTY auditing is disabled or out of memory. Otherwise, return a new
223 * reference to the buffer.
224 */
Jiri Slaby6c633f22012-10-18 22:26:37 +0200225static struct tty_audit_buf *tty_audit_buf_get(struct tty_struct *tty,
226 unsigned icanon)
Miloslav Trmac522ed772007-07-15 23:40:56 -0700227{
228 struct tty_audit_buf *buf, *buf2;
Eric Parisbde02ca2013-04-30 11:01:14 -0400229 unsigned long flags;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700230
231 buf = NULL;
232 buf2 = NULL;
Eric Parisbde02ca2013-04-30 11:01:14 -0400233 spin_lock_irqsave(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700234 if (likely(!current->signal->audit_tty))
235 goto out;
236 buf = current->signal->tty_audit_buf;
237 if (buf) {
238 atomic_inc(&buf->count);
239 goto out;
240 }
Eric Parisbde02ca2013-04-30 11:01:14 -0400241 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700242
243 buf2 = tty_audit_buf_alloc(tty->driver->major,
244 tty->driver->minor_start + tty->index,
Jiri Slaby6c633f22012-10-18 22:26:37 +0200245 icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700246 if (buf2 == NULL) {
247 audit_log_lost("out of memory in TTY auditing");
248 return NULL;
249 }
250
Eric Parisbde02ca2013-04-30 11:01:14 -0400251 spin_lock_irqsave(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700252 if (!current->signal->audit_tty)
253 goto out;
254 buf = current->signal->tty_audit_buf;
255 if (!buf) {
256 current->signal->tty_audit_buf = buf2;
257 buf = buf2;
258 buf2 = NULL;
259 }
260 atomic_inc(&buf->count);
261 /* Fall through */
262 out:
Eric Parisbde02ca2013-04-30 11:01:14 -0400263 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700264 if (buf2)
265 tty_audit_buf_free(buf2);
266 return buf;
267}
268
269/**
270 * tty_audit_add_data - Add data for TTY auditing.
271 *
272 * Audit @data of @size from @tty, if necessary.
273 */
274void tty_audit_add_data(struct tty_struct *tty, unsigned char *data,
Jiri Slaby6c633f22012-10-18 22:26:37 +0200275 size_t size, unsigned icanon)
Miloslav Trmac522ed772007-07-15 23:40:56 -0700276{
277 struct tty_audit_buf *buf;
278 int major, minor;
Richard Guy Briggs46e959e2013-05-03 14:03:50 -0400279 int audit_log_tty_passwd;
280 unsigned long flags;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700281
282 if (unlikely(size == 0))
283 return;
284
Richard Guy Briggs46e959e2013-05-03 14:03:50 -0400285 spin_lock_irqsave(&current->sighand->siglock, flags);
286 audit_log_tty_passwd = current->signal->audit_tty_log_passwd;
287 spin_unlock_irqrestore(&current->sighand->siglock, flags);
288 if (!audit_log_tty_passwd && icanon && !L_ECHO(tty))
289 return;
290
Miloslav Trmac41126222008-04-18 13:30:14 -0700291 if (tty->driver->type == TTY_DRIVER_TYPE_PTY
292 && tty->driver->subtype == PTY_TYPE_MASTER)
293 return;
294
Jiri Slaby6c633f22012-10-18 22:26:37 +0200295 buf = tty_audit_buf_get(tty, icanon);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700296 if (!buf)
297 return;
298
299 mutex_lock(&buf->mutex);
300 major = tty->driver->major;
301 minor = tty->driver->minor_start + tty->index;
302 if (buf->major != major || buf->minor != minor
Jiri Slaby6c633f22012-10-18 22:26:37 +0200303 || buf->icanon != icanon) {
Eric Paris152f4972013-04-19 13:56:11 -0400304 tty_audit_buf_push(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700305 buf->major = major;
306 buf->minor = minor;
Jiri Slaby6c633f22012-10-18 22:26:37 +0200307 buf->icanon = icanon;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700308 }
309 do {
310 size_t run;
311
312 run = N_TTY_BUF_SIZE - buf->valid;
313 if (run > size)
314 run = size;
315 memcpy(buf->data + buf->valid, data, run);
316 buf->valid += run;
317 data += run;
318 size -= run;
319 if (buf->valid == N_TTY_BUF_SIZE)
Eric Paris152f4972013-04-19 13:56:11 -0400320 tty_audit_buf_push(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700321 } while (size != 0);
322 mutex_unlock(&buf->mutex);
323 tty_audit_buf_put(buf);
324}
325
326/**
327 * tty_audit_push - Push buffered data out
328 *
329 * Make sure no audit data is pending for @tty on the current process.
330 */
331void tty_audit_push(struct tty_struct *tty)
332{
333 struct tty_audit_buf *buf;
Eric Parisbde02ca2013-04-30 11:01:14 -0400334 unsigned long flags;
Miloslav Trmac522ed772007-07-15 23:40:56 -0700335
Eric Parisbde02ca2013-04-30 11:01:14 -0400336 spin_lock_irqsave(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700337 if (likely(!current->signal->audit_tty)) {
Eric Parisbde02ca2013-04-30 11:01:14 -0400338 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700339 return;
340 }
341 buf = current->signal->tty_audit_buf;
342 if (buf)
343 atomic_inc(&buf->count);
Eric Parisbde02ca2013-04-30 11:01:14 -0400344 spin_unlock_irqrestore(&current->sighand->siglock, flags);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700345
346 if (buf) {
347 int major, minor;
348
349 major = tty->driver->major;
350 minor = tty->driver->minor_start + tty->index;
351 mutex_lock(&buf->mutex);
352 if (buf->major == major && buf->minor == minor)
Eric Paris152f4972013-04-19 13:56:11 -0400353 tty_audit_buf_push(buf);
Miloslav Trmac522ed772007-07-15 23:40:56 -0700354 mutex_unlock(&buf->mutex);
355 tty_audit_buf_put(buf);
356 }
357}