1
0
Fork 0

tty: audit: Always push audit buffer before TIOCSTI

The data read from another tty may be relevant to the action of
the TIOCSTI ioctl; log the audit buffer immediately.

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Peter Hurley 2016-01-09 22:55:38 -08:00 committed by Greg Kroah-Hartman
parent f17c366274
commit 82b5c93a00
1 changed files with 3 additions and 9 deletions

View File

@ -130,19 +130,13 @@ void tty_audit_fork(struct signal_struct *sig)
*/
void tty_audit_tiocsti(struct tty_struct *tty, char ch)
{
struct tty_audit_buf *buf;
dev_t dev;
dev = MKDEV(tty->driver->major, tty->driver->minor_start) + tty->index;
buf = current->signal->tty_audit_buf;
if (buf) {
mutex_lock(&buf->mutex);
if (buf->dev == dev)
tty_audit_buf_push(buf);
mutex_unlock(&buf->mutex);
}
if (tty_audit_push())
return;
if (audit_enabled && (current->signal->audit_tty & AUDIT_TTY_ENABLE)) {
if (audit_enabled) {
kuid_t auid;
unsigned int sessionid;