Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / tty / tty_audit.c
CommitLineData
e3b3d0f5 1// SPDX-License-Identifier: GPL-2.0
522ed776
MT
2/*
3 * Creating audit events from TTY input.
4 *
e5656d43 5 * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
522ed776
MT
6 *
7 * Authors: Miloslav Trmac <mitr@redhat.com>
8 */
9
10#include <linux/audit.h>
5a0e3ad6 11#include <linux/slab.h>
522ed776
MT
12#include <linux/tty.h>
13
14struct tty_audit_buf {
522ed776 15 struct mutex mutex; /* Protects all data below */
4d240b64 16 dev_t dev; /* The TTY which the data is from */
522ed776
MT
17 unsigned icanon:1;
18 size_t valid;
19 unsigned char *data; /* Allocated size N_TTY_BUF_SIZE */
20};
21
55b6314a
PH
22static struct tty_audit_buf *tty_audit_buf_ref(void)
23{
24 struct tty_audit_buf *buf;
25
26 buf = current->signal->tty_audit_buf;
27 WARN_ON(buf == ERR_PTR(-ESRCH));
28 return buf;
29}
30
a75c9b09 31static struct tty_audit_buf *tty_audit_buf_alloc(void)
522ed776
MT
32{
33 struct tty_audit_buf *buf;
34
66c6ceae 35 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
522ed776
MT
36 if (!buf)
37 goto err;
c481c707 38 buf->data = kmalloc(N_TTY_BUF_SIZE, GFP_KERNEL);
522ed776
MT
39 if (!buf->data)
40 goto err_buf;
522ed776 41 mutex_init(&buf->mutex);
4d240b64 42 buf->dev = MKDEV(0, 0);
a75c9b09 43 buf->icanon = 0;
522ed776
MT
44 buf->valid = 0;
45 return buf;
46
47err_buf:
48 kfree(buf);
49err:
50 return NULL;
51}
52
53static void tty_audit_buf_free(struct tty_audit_buf *buf)
54{
55 WARN_ON(buf->valid != 0);
c481c707 56 kfree(buf->data);
522ed776
MT
57 kfree(buf);
58}
59
4d240b64 60static void tty_audit_log(const char *description, dev_t dev,
152f497b 61 unsigned char *data, size_t size)
522ed776
MT
62{
63 struct audit_buffer *ab;
2a1fe215
PM
64 pid_t pid = task_pid_nr(current);
65 uid_t uid = from_kuid(&init_user_ns, task_uid(current));
66 uid_t loginuid = from_kuid(&init_user_ns, audit_get_loginuid(current));
67 unsigned int sessionid = audit_get_sessionid(current);
522ed776 68
18f5c1d5 69 ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_TTY);
522ed776 70 if (ab) {
2a1fe215 71 char name[sizeof(current->comm)];
152f497b
EP
72
73 audit_log_format(ab, "%s pid=%u uid=%u auid=%u ses=%u major=%d"
f1dc4867 74 " minor=%d comm=", description, pid, uid,
4d240b64 75 loginuid, sessionid, MAJOR(dev), MINOR(dev));
2a1fe215 76 get_task_comm(name, current);
522ed776
MT
77 audit_log_untrustedstring(ab, name);
78 audit_log_format(ab, " data=");
1e641743 79 audit_log_n_hex(ab, data, size);
522ed776
MT
80 audit_log_end(ab);
81 }
1e641743
AV
82}
83
84/**
85 * tty_audit_buf_push - Push buffered data out
86 *
87 * Generate an audit message from the contents of @buf, which is owned by
152f497b 88 * the current task. @buf->mutex must be locked.
1e641743 89 */
152f497b 90static void tty_audit_buf_push(struct tty_audit_buf *buf)
1e641743
AV
91{
92 if (buf->valid == 0)
93 return;
f7859590 94 if (audit_enabled == AUDIT_OFF) {
00bff392 95 buf->valid = 0;
1e641743 96 return;
00bff392 97 }
4d240b64 98 tty_audit_log("tty", buf->dev, buf->data, buf->valid);
522ed776
MT
99 buf->valid = 0;
100}
101
522ed776
MT
102/**
103 * tty_audit_exit - Handle a task exit
104 *
105 * Make sure all buffered data is written out and deallocate the buffer.
106 * Only needs to be called if current->signal->tty_audit_buf != %NULL.
5493090f
PH
107 *
108 * The process is single-threaded at this point; no other threads share
109 * current->signal.
522ed776
MT
110 */
111void tty_audit_exit(void)
112{
113 struct tty_audit_buf *buf;
114
55b6314a 115 buf = xchg(&current->signal->tty_audit_buf, ERR_PTR(-ESRCH));
522ed776
MT
116 if (!buf)
117 return;
118
152f497b 119 tty_audit_buf_push(buf);
5493090f 120 tty_audit_buf_free(buf);
522ed776
MT
121}
122
123/**
124 * tty_audit_fork - Copy TTY audit state for a new task
125 *
126 * Set up TTY audit state in @sig from current. @sig needs no locking.
127 */
128void tty_audit_fork(struct signal_struct *sig)
129{
522ed776 130 sig->audit_tty = current->signal->audit_tty;
522ed776
MT
131}
132
1e641743
AV
133/**
134 * tty_audit_tiocsti - Log TIOCSTI
135 */
136void tty_audit_tiocsti(struct tty_struct *tty, char ch)
137{
4d240b64 138 dev_t dev;
1e641743 139
4d240b64 140 dev = MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
82b5c93a
PH
141 if (tty_audit_push())
142 return;
1e641743 143
54555919 144 if (audit_enabled)
4d240b64 145 tty_audit_log("ioctl=TIOCSTI", dev, &ch, 1);
1e641743
AV
146}
147
522ed776 148/**
37282a77 149 * tty_audit_push - Flush current's pending audit data
3c80fe4a 150 *
37282a77 151 * Returns 0 if success, -EPERM if tty audit is disabled
522ed776 152 */
37282a77 153int tty_audit_push(void)
522ed776 154{
2e28d38a 155 struct tty_audit_buf *buf;
522ed776 156
2e28d38a
PH
157 if (~current->signal->audit_tty & AUDIT_TTY_ENABLE)
158 return -EPERM;
159
55b6314a
PH
160 buf = tty_audit_buf_ref();
161 if (!IS_ERR_OR_NULL(buf)) {
2e28d38a
PH
162 mutex_lock(&buf->mutex);
163 tty_audit_buf_push(buf);
164 mutex_unlock(&buf->mutex);
2e28d38a 165 }
3c80fe4a 166 return 0;
522ed776
MT
167}
168
169/**
170 * tty_audit_buf_get - Get an audit buffer.
171 *
a75c9b09 172 * Get an audit buffer, allocate it if necessary. Return %NULL
55b6314a
PH
173 * if out of memory or ERR_PTR(-ESRCH) if tty_audit_exit() has already
174 * occurred. Otherwise, return a new reference to the buffer.
522ed776 175 */
a75c9b09 176static struct tty_audit_buf *tty_audit_buf_get(void)
522ed776 177{
fbaa1227 178 struct tty_audit_buf *buf;
522ed776 179
55b6314a 180 buf = tty_audit_buf_ref();
5493090f
PH
181 if (buf)
182 return buf;
522ed776 183
fbaa1227
PH
184 buf = tty_audit_buf_alloc();
185 if (buf == NULL) {
522ed776
MT
186 audit_log_lost("out of memory in TTY auditing");
187 return NULL;
188 }
189
fbaa1227
PH
190 /* Race to use this buffer, free it if another wins */
191 if (cmpxchg(&current->signal->tty_audit_buf, NULL, buf) != NULL)
192 tty_audit_buf_free(buf);
55b6314a 193 return tty_audit_buf_ref();
522ed776
MT
194}
195
196/**
197 * tty_audit_add_data - Add data for TTY auditing.
198 *
199 * Audit @data of @size from @tty, if necessary.
200 */
309426ae 201void tty_audit_add_data(struct tty_struct *tty, const void *data, size_t size)
522ed776
MT
202{
203 struct tty_audit_buf *buf;
309426ae 204 unsigned int icanon = !!L_ICANON(tty);
2e28d38a 205 unsigned int audit_tty;
4d240b64 206 dev_t dev;
522ed776 207
f17c3662
PH
208 audit_tty = READ_ONCE(current->signal->audit_tty);
209 if (~audit_tty & AUDIT_TTY_ENABLE)
210 return;
211
522ed776
MT
212 if (unlikely(size == 0))
213 return;
214
d7c0ba40
PH
215 if (tty->driver->type == TTY_DRIVER_TYPE_PTY
216 && tty->driver->subtype == PTY_TYPE_MASTER)
217 return;
218
2e28d38a 219 if ((~audit_tty & AUDIT_TTY_LOG_PASSWD) && icanon && !L_ECHO(tty))
46e959ea
RGB
220 return;
221
a75c9b09 222 buf = tty_audit_buf_get();
55b6314a 223 if (IS_ERR_OR_NULL(buf))
522ed776
MT
224 return;
225
226 mutex_lock(&buf->mutex);
4d240b64
PH
227 dev = MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
228 if (buf->dev != dev || buf->icanon != icanon) {
152f497b 229 tty_audit_buf_push(buf);
4d240b64 230 buf->dev = dev;
6c633f27 231 buf->icanon = icanon;
522ed776
MT
232 }
233 do {
234 size_t run;
235
236 run = N_TTY_BUF_SIZE - buf->valid;
237 if (run > size)
238 run = size;
239 memcpy(buf->data + buf->valid, data, run);
240 buf->valid += run;
241 data += run;
242 size -= run;
243 if (buf->valid == N_TTY_BUF_SIZE)
152f497b 244 tty_audit_buf_push(buf);
522ed776
MT
245 } while (size != 0);
246 mutex_unlock(&buf->mutex);
522ed776 247}