Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 1 | /* $Id: audit.c,v 1.6 2011/01/17 10:15:30 dtucker Exp $ */ |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Copyright (c) 2004, 2005 Darren Tucker. All rights reserved. |
| 5 | * |
| 6 | * Redistribution and use in source and binary forms, with or without |
| 7 | * modification, are permitted provided that the following conditions |
| 8 | * are met: |
| 9 | * 1. Redistributions of source code must retain the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer. |
| 11 | * 2. Redistributions in binary form must reproduce the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer in the |
| 13 | * documentation and/or other materials provided with the distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
| 16 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 17 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 18 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 19 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 20 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 21 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 22 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 24 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 | */ |
| 26 | |
| 27 | #include "includes.h" |
| 28 | |
Damien Miller | ded319c | 2006-09-01 15:38:36 +1000 | [diff] [blame] | 29 | #include <stdarg.h> |
| 30 | #include <string.h> |
| 31 | |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 32 | #ifdef SSH_AUDIT_EVENTS |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 33 | |
| 34 | #include "audit.h" |
| 35 | #include "log.h" |
Darren Tucker | 79ba868 | 2006-08-06 00:05:09 +1000 | [diff] [blame] | 36 | #include "key.h" |
| 37 | #include "hostfile.h" |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 38 | #include "auth.h" |
| 39 | |
| 40 | /* |
| 41 | * Care must be taken when using this since it WILL NOT be initialized when |
| 42 | * audit_connection_from() is called and MAY NOT be initialized when |
| 43 | * audit_event(CONNECTION_ABANDON) is called. Test for NULL before using. |
| 44 | */ |
| 45 | extern Authctxt *the_authctxt; |
| 46 | |
| 47 | /* Maybe add the audit class to struct Authmethod? */ |
| 48 | ssh_audit_event_t |
| 49 | audit_classify_auth(const char *method) |
| 50 | { |
| 51 | if (strcmp(method, "none") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 52 | return SSH_AUTH_FAIL_NONE; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 53 | else if (strcmp(method, "password") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 54 | return SSH_AUTH_FAIL_PASSWD; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 55 | else if (strcmp(method, "publickey") == 0 || |
| 56 | strcmp(method, "rsa") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 57 | return SSH_AUTH_FAIL_PUBKEY; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 58 | else if (strncmp(method, "keyboard-interactive", 20) == 0 || |
| 59 | strcmp(method, "challenge-response") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 60 | return SSH_AUTH_FAIL_KBDINT; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 61 | else if (strcmp(method, "hostbased") == 0 || |
| 62 | strcmp(method, "rhosts-rsa") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 63 | return SSH_AUTH_FAIL_HOSTBASED; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 64 | else if (strcmp(method, "gssapi-with-mic") == 0) |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 65 | return SSH_AUTH_FAIL_GSSAPI; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 66 | else |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 67 | return SSH_AUDIT_UNKNOWN; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | /* helper to return supplied username */ |
| 71 | const char * |
| 72 | audit_username(void) |
| 73 | { |
| 74 | static const char unknownuser[] = "(unknown user)"; |
| 75 | static const char invaliduser[] = "(invalid user)"; |
| 76 | |
| 77 | if (the_authctxt == NULL || the_authctxt->user == NULL) |
| 78 | return (unknownuser); |
| 79 | if (!the_authctxt->valid) |
| 80 | return (invaliduser); |
| 81 | return (the_authctxt->user); |
| 82 | } |
| 83 | |
| 84 | const char * |
| 85 | audit_event_lookup(ssh_audit_event_t ev) |
| 86 | { |
| 87 | int i; |
| 88 | static struct event_lookup_struct { |
| 89 | ssh_audit_event_t event; |
| 90 | const char *name; |
| 91 | } event_lookup[] = { |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 92 | {SSH_LOGIN_EXCEED_MAXTRIES, "LOGIN_EXCEED_MAXTRIES"}, |
| 93 | {SSH_LOGIN_ROOT_DENIED, "LOGIN_ROOT_DENIED"}, |
| 94 | {SSH_AUTH_SUCCESS, "AUTH_SUCCESS"}, |
| 95 | {SSH_AUTH_FAIL_NONE, "AUTH_FAIL_NONE"}, |
| 96 | {SSH_AUTH_FAIL_PASSWD, "AUTH_FAIL_PASSWD"}, |
| 97 | {SSH_AUTH_FAIL_KBDINT, "AUTH_FAIL_KBDINT"}, |
| 98 | {SSH_AUTH_FAIL_PUBKEY, "AUTH_FAIL_PUBKEY"}, |
| 99 | {SSH_AUTH_FAIL_HOSTBASED, "AUTH_FAIL_HOSTBASED"}, |
| 100 | {SSH_AUTH_FAIL_GSSAPI, "AUTH_FAIL_GSSAPI"}, |
| 101 | {SSH_INVALID_USER, "INVALID_USER"}, |
| 102 | {SSH_NOLOGIN, "NOLOGIN"}, |
| 103 | {SSH_CONNECTION_CLOSE, "CONNECTION_CLOSE"}, |
| 104 | {SSH_CONNECTION_ABANDON, "CONNECTION_ABANDON"}, |
| 105 | {SSH_AUDIT_UNKNOWN, "AUDIT_UNKNOWN"} |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 106 | }; |
| 107 | |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 108 | for (i = 0; event_lookup[i].event != SSH_AUDIT_UNKNOWN; i++) |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 109 | if (event_lookup[i].event == ev) |
| 110 | break; |
| 111 | return(event_lookup[i].name); |
| 112 | } |
| 113 | |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 114 | # ifndef CUSTOM_SSH_AUDIT_EVENTS |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 115 | /* |
| 116 | * Null implementations of audit functions. |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 117 | * These get used if SSH_AUDIT_EVENTS is defined but no audit module is enabled. |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 118 | */ |
| 119 | |
| 120 | /* |
| 121 | * Called after a connection has been accepted but before any authentication |
| 122 | * has been attempted. |
| 123 | */ |
| 124 | void |
| 125 | audit_connection_from(const char *host, int port) |
| 126 | { |
| 127 | debug("audit connection from %s port %d euid %d", host, port, |
Damien Miller | b6f72f5 | 2005-07-17 17:26:43 +1000 | [diff] [blame] | 128 | (int)geteuid()); |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Called when various events occur (see audit.h for a list of possible |
| 133 | * events and what they mean). |
| 134 | */ |
| 135 | void |
| 136 | audit_event(ssh_audit_event_t event) |
| 137 | { |
| 138 | debug("audit event euid %d user %s event %d (%s)", geteuid(), |
| 139 | audit_username(), event, audit_event_lookup(event)); |
| 140 | } |
| 141 | |
| 142 | /* |
| 143 | * Called when a user session is started. Argument is the tty allocated to |
| 144 | * the session, or NULL if no tty was allocated. |
| 145 | * |
| 146 | * Note that this may be called multiple times if multiple sessions are used |
| 147 | * within a single connection. |
| 148 | */ |
| 149 | void |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 150 | audit_session_open(struct logininfo *li) |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 151 | { |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 152 | const char *t = li->line ? li->line : "(no tty)"; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 153 | |
| 154 | debug("audit session open euid %d user %s tty name %s", geteuid(), |
Damien Miller | b6f72f5 | 2005-07-17 17:26:43 +1000 | [diff] [blame] | 155 | audit_username(), t); |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | /* |
| 159 | * Called when a user session is closed. Argument is the tty allocated to |
| 160 | * the session, or NULL if no tty was allocated. |
| 161 | * |
| 162 | * Note that this may be called multiple times if multiple sessions are used |
| 163 | * within a single connection. |
| 164 | */ |
| 165 | void |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 166 | audit_session_close(struct logininfo *li) |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 167 | { |
Darren Tucker | ea52a82 | 2011-01-17 21:15:27 +1100 | [diff] [blame] | 168 | const char *t = li->line ? li->line : "(no tty)"; |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 169 | |
| 170 | debug("audit session close euid %d user %s tty name %s", geteuid(), |
Damien Miller | b6f72f5 | 2005-07-17 17:26:43 +1000 | [diff] [blame] | 171 | audit_username(), t); |
Darren Tucker | b15931a | 2005-02-03 00:37:14 +1100 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | /* |
| 175 | * This will be called when a user runs a non-interactive command. Note that |
| 176 | * it may be called multiple times for a single connection since SSH2 allows |
| 177 | * multiple sessions within a single connection. |
| 178 | */ |
| 179 | void |
| 180 | audit_run_command(const char *command) |
| 181 | { |
| 182 | debug("audit run command euid %d user %s command '%.200s'", geteuid(), |
| 183 | audit_username(), command); |
| 184 | } |
Darren Tucker | 2e0cf0d | 2005-02-08 21:52:47 +1100 | [diff] [blame] | 185 | # endif /* !defined CUSTOM_SSH_AUDIT_EVENTS */ |
| 186 | #endif /* SSH_AUDIT_EVENTS */ |