summaryrefslogtreecommitdiff
path: root/audit-linux.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2011-01-24 12:43:25 +0000
committerColin Watson <cjwatson@debian.org>2011-01-24 12:43:25 +0000
commit626f1d986ff72aa514da63e34744e1de9cf21b9a (patch)
treed215a5280bc2e57251e4a9e08bfd3674ad824a94 /audit-linux.c
parent6ed622cb6fe8f71bbe0d998cdd12280410bfb420 (diff)
parent0970072c89b079b022538e3c366fbfa2c53fc821 (diff)
* New upstream release (http://www.openssh.org/txt/release-5.7):
- Implement Elliptic Curve Cryptography modes for key exchange (ECDH) and host/user keys (ECDSA) as specified by RFC5656. ECDH and ECDSA offer better performance than plain DH and DSA at the same equivalent symmetric key length, as well as much shorter keys. - sftp(1)/sftp-server(8): add a protocol extension to support a hard link operation. It is available through the "ln" command in the client. The old "ln" behaviour of creating a symlink is available using its "-s" option or through the preexisting "symlink" command. - scp(1): Add a new -3 option to scp: Copies between two remote hosts are transferred through the local host (closes: #508613). - ssh(1): "atomically" create the listening mux socket by binding it on a temporary name and then linking it into position after listen() has succeeded. This allows the mux clients to determine that the server socket is either ready or stale without races (closes: #454784). Stale server sockets are now automatically removed (closes: #523250). - ssh(1): install a SIGCHLD handler to reap expired child process (closes: #594687). - ssh(1)/ssh-agent(1): honour $TMPDIR for client xauth and ssh-agent temporary directories (closes: #357469, although only if you arrange for ssh-agent to actually see $TMPDIR since the setgid bit will cause it to be stripped off).
Diffstat (limited to 'audit-linux.c')
-rw-r--r--audit-linux.c126
1 files changed, 126 insertions, 0 deletions
diff --git a/audit-linux.c b/audit-linux.c
new file mode 100644
index 000000000..b3ee2f4da
--- /dev/null
+++ b/audit-linux.c
@@ -0,0 +1,126 @@
1/* $Id: audit-linux.c,v 1.1 2011/01/17 10:15:30 dtucker Exp $ */
2
3/*
4 * Copyright 2010 Red Hat, Inc. All rights reserved.
5 * Use is subject to license terms.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * Red Hat author: Jan F. Chadima <jchadima@redhat.com>
28 */
29
30#include "includes.h"
31#if defined(USE_LINUX_AUDIT)
32#include <libaudit.h>
33#include <unistd.h>
34#include <string.h>
35
36#include "log.h"
37#include "audit.h"
38#include "canohost.h"
39
40const char* audit_username(void);
41
42int
43linux_audit_record_event(int uid, const char *username,
44 const char *hostname, const char *ip, const char *ttyn, int success)
45{
46 int audit_fd, rc, saved_errno;
47
48 audit_fd = audit_open();
49 if (audit_fd < 0) {
50 if (errno == EINVAL || errno == EPROTONOSUPPORT ||
51 errno == EAFNOSUPPORT)
52 return 1; /* No audit support in kernel */
53 else
54 return 0; /* Must prevent login */
55 }
56 rc = audit_log_acct_message(audit_fd, AUDIT_USER_LOGIN,
57 NULL, "login", username ? username : "(unknown)",
58 username == NULL ? uid : -1, hostname, ip, ttyn, success);
59 saved_errno = errno;
60 close(audit_fd);
61 /*
62 * Do not report error if the error is EPERM and sshd is run as non
63 * root user.
64 */
65 if ((rc == -EPERM) && (geteuid() != 0))
66 rc = 0;
67 errno = saved_errno;
68 return (rc >= 0);
69}
70
71/* Below is the sshd audit API code */
72
73void
74audit_connection_from(const char *host, int port)
75{
76}
77 /* not implemented */
78
79void
80audit_run_command(const char *command)
81{
82 /* not implemented */
83}
84
85void
86audit_session_open(struct logininfo *li)
87{
88 if (linux_audit_record_event(li->uid, NULL, li->hostname,
89 NULL, li->line, 1) == 0)
90 fatal("linux_audit_write_entry failed: %s", strerror(errno));
91}
92
93void
94audit_session_close(struct logininfo *li)
95{
96 /* not implemented */
97}
98
99void
100audit_event(ssh_audit_event_t event)
101{
102 switch(event) {
103 case SSH_AUTH_SUCCESS:
104 case SSH_CONNECTION_CLOSE:
105 case SSH_NOLOGIN:
106 case SSH_LOGIN_EXCEED_MAXTRIES:
107 case SSH_LOGIN_ROOT_DENIED:
108 break;
109
110 case SSH_AUTH_FAIL_NONE:
111 case SSH_AUTH_FAIL_PASSWD:
112 case SSH_AUTH_FAIL_KBDINT:
113 case SSH_AUTH_FAIL_PUBKEY:
114 case SSH_AUTH_FAIL_HOSTBASED:
115 case SSH_AUTH_FAIL_GSSAPI:
116 case SSH_INVALID_USER:
117 linux_audit_record_event(-1, audit_username(), NULL,
118 get_remote_ipaddr(), "sshd", 0);
119 break;
120
121 default:
122 debug("%s: unhandled event %d", __func__, event);
123 }
124}
125
126#endif /* USE_LINUX_AUDIT */