Blame SOURCES/bash-3.2-audit.patch

287226
diff -up bash-4.2/config.h.in.audit bash-4.2/config.h.in
287226
--- bash-4.2/config.h.in.audit	2013-01-31 16:26:16.857698992 +0100
287226
+++ bash-4.2/config.h.in	2013-01-31 16:26:16.876699255 +0100
287226
@@ -1131,6 +1131,14 @@
287226
 
287226
 /* End additions for lib/intl */
287226
 
287226
+
287226
+/* Additions for lib/readline */
287226
+
287226
+/* Define if you have <linux/audit.h> and it defines AUDIT_USER_TTY */
287226
+#undef HAVE_DECL_AUDIT_USER_TTY
287226
+
287226
+/* End additions for lib/readline */
287226
+
287226
 #include "config-bot.h"
287226
 
287226
 #endif /* _CONFIG_H_ */
287226
diff -up bash-4.2/configure.in.audit bash-4.2/configure.in
287226
--- bash-4.2/configure.in.audit	2013-01-31 16:26:16.858699005 +0100
287226
+++ bash-4.2/configure.in	2013-01-31 16:26:16.877699269 +0100
287226
@@ -888,6 +888,8 @@ BASH_FUNC_DUP2_CLOEXEC_CHECK
287226
 BASH_SYS_PGRP_SYNC
287226
 BASH_SYS_SIGNAL_VINTAGE
287226
 
287226
+AC_CHECK_DECLS([AUDIT_USER_TTY],,, [[#include <linux/audit.h>]])
287226
+
287226
 dnl checking for the presence of certain library symbols
287226
 BASH_SYS_ERRLIST
287226
 BASH_SYS_SIGLIST
287226
diff -up bash-4.2/lib/readline/readline.c.audit bash-4.2/lib/readline/readline.c
287226
--- bash-4.2/lib/readline/readline.c.audit	2013-01-31 16:26:16.871699185 +0100
287226
+++ bash-4.2/lib/readline/readline.c	2013-01-31 17:24:23.902744860 +0100
287226
@@ -55,6 +55,12 @@
287226
 extern int errno;
287226
 #endif /* !errno */
287226
 
287226
+#if defined (HAVE_DECL_AUDIT_USER_TTY)
287226
+#  include <sys/socket.h>
287226
+#  include <linux/audit.h>
287226
+#  include <linux/netlink.h>
287226
+#endif
287226
+
287226
 /* System-specific feature definitions and include files. */
287226
 #include "rldefs.h"
287226
 #include "rlmbutil.h"
287226
@@ -301,7 +307,48 @@ rl_set_prompt (prompt)
287226
   rl_visible_prompt_length = rl_expand_prompt (rl_prompt);
287226
   return 0;
287226
 }
287226
-  
287226
+
287226
+#if defined (HAVE_DECL_AUDIT_USER_TTY)
287226
+/* Report STRING to the audit system. */
287226
+static void
287226
+audit_tty (char *string)
287226
+{
287226
+  struct sockaddr_nl addr;
287226
+  struct msghdr msg;
287226
+  struct nlmsghdr nlm;
287226
+  struct iovec iov[2];
287226
+  size_t size;
287226
+  int fd;
287226
+
287226
+  size = strlen (string) + 1;
287226
+  fd = socket (AF_NETLINK, SOCK_RAW, NETLINK_AUDIT);
287226
+  if (fd < 0)
287226
+    return;
287226
+  nlm.nlmsg_len = NLMSG_LENGTH (size);
287226
+  nlm.nlmsg_type = AUDIT_USER_TTY;
287226
+  nlm.nlmsg_flags = NLM_F_REQUEST;
287226
+  nlm.nlmsg_seq = 0;
287226
+  nlm.nlmsg_pid = 0;
287226
+  iov[0].iov_base = &nlm;
287226
+  iov[0].iov_len = sizeof (nlm);
287226
+  iov[1].iov_base = string;
287226
+  iov[1].iov_len = size;
287226
+  addr.nl_family = AF_NETLINK;
287226
+  addr.nl_pad = 0;
287226
+  addr.nl_pid = 0;
287226
+  addr.nl_groups = 0;
287226
+  msg.msg_name = &addr;
287226
+  msg.msg_namelen = sizeof (addr);
287226
+  msg.msg_iov = iov;
287226
+  msg.msg_iovlen = 2;
287226
+  msg.msg_control = NULL;
287226
+  msg.msg_controllen = 0;
287226
+  msg.msg_flags = 0;
287226
+  (void)sendmsg (fd, &msg, 0);
287226
+  close (fd);
287226
+}
287226
+#endif
287226
+
287226
 /* Read a line of input.  Prompt with PROMPT.  An empty PROMPT means
287226
    none.  A return value of NULL means that EOF was encountered. */
287226
 char *
287226
@@ -352,6 +399,11 @@ readline (prompt)
287226
     RL_SETSTATE (RL_STATE_CALLBACK);
287226
 #endif
287226
 
287226
+#if defined (HAVE_DECL_AUDIT_USER_TTY)
287226
+  if (value != NULL)
287226
+    audit_tty (value);
287226
+#endif
287226
+
287226
   return (value);
287226
 }
287226