Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1 | /* |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 2 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * authfd.c |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 4 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 5 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 6 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 7 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 8 | * All rights reserved |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 9 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 10 | * Created: Wed Mar 29 01:30:28 1995 ylo |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 11 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 12 | * Functions for connecting the local authentication agent. |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 13 | * |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 14 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 15 | |
| 16 | #include "includes.h" |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 17 | RCSID("$Id: authfd.c,v 1.14 2000/04/30 00:00:53 damien Exp $"); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 18 | |
| 19 | #include "ssh.h" |
| 20 | #include "rsa.h" |
| 21 | #include "authfd.h" |
| 22 | #include "buffer.h" |
| 23 | #include "bufaux.h" |
| 24 | #include "xmalloc.h" |
| 25 | #include "getput.h" |
| 26 | |
| 27 | #include <openssl/rsa.h> |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 28 | |
| 29 | /* Returns the number of the authentication fd, or -1 if there is none. */ |
| 30 | |
| 31 | int |
| 32 | ssh_get_authentication_socket() |
| 33 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 34 | const char *authsocket; |
| 35 | int sock; |
| 36 | struct sockaddr_un sunaddr; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 37 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 38 | authsocket = getenv(SSH_AUTHSOCKET_ENV_NAME); |
| 39 | if (!authsocket) |
| 40 | return -1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 41 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 42 | sunaddr.sun_family = AF_UNIX; |
| 43 | strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path)); |
Damien Miller | 10f6f6b | 1999-11-17 17:29:08 +1100 | [diff] [blame] | 44 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 45 | sock = socket(AF_UNIX, SOCK_STREAM, 0); |
| 46 | if (sock < 0) |
| 47 | return -1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 48 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 49 | /* close on exec */ |
| 50 | if (fcntl(sock, F_SETFD, 1) == -1) { |
| 51 | close(sock); |
| 52 | return -1; |
| 53 | } |
| 54 | if (connect(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0) { |
| 55 | close(sock); |
| 56 | return -1; |
| 57 | } |
| 58 | return sock; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 59 | } |
| 60 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 61 | /* |
| 62 | * Closes the agent socket if it should be closed (depends on how it was |
| 63 | * obtained). The argument must have been returned by |
| 64 | * ssh_get_authentication_socket(). |
| 65 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 66 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 67 | void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 68 | ssh_close_authentication_socket(int sock) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 69 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 70 | if (getenv(SSH_AUTHSOCKET_ENV_NAME)) |
| 71 | close(sock); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 72 | } |
| 73 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 74 | /* |
| 75 | * Opens and connects a private socket for communication with the |
| 76 | * authentication agent. Returns the file descriptor (which must be |
| 77 | * shut down and closed by the caller when no longer needed). |
| 78 | * Returns NULL if an error occurred and the connection could not be |
| 79 | * opened. |
| 80 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 81 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 82 | AuthenticationConnection * |
| 83 | ssh_get_authentication_connection() |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 84 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 85 | AuthenticationConnection *auth; |
| 86 | int sock; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 87 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 88 | sock = ssh_get_authentication_socket(); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 89 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 90 | /* |
| 91 | * Fail if we couldn't obtain a connection. This happens if we |
| 92 | * exited due to a timeout. |
| 93 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 94 | if (sock < 0) |
| 95 | return NULL; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 96 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 97 | auth = xmalloc(sizeof(*auth)); |
| 98 | auth->fd = sock; |
| 99 | buffer_init(&auth->packet); |
| 100 | buffer_init(&auth->identities); |
| 101 | auth->howmany = 0; |
| 102 | |
| 103 | return auth; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 104 | } |
| 105 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 106 | /* |
| 107 | * Closes the connection to the authentication agent and frees any associated |
| 108 | * memory. |
| 109 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 110 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 111 | void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 112 | ssh_close_authentication_connection(AuthenticationConnection *ac) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 113 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 114 | buffer_free(&ac->packet); |
| 115 | buffer_free(&ac->identities); |
| 116 | close(ac->fd); |
| 117 | xfree(ac); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 118 | } |
| 119 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 120 | /* |
| 121 | * Returns the first authentication identity held by the agent. |
| 122 | * Returns true if an identity is available, 0 otherwise. |
| 123 | * The caller must initialize the integers before the call, and free the |
| 124 | * comment after a successful call (before calling ssh_get_next_identity). |
| 125 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 126 | |
| 127 | int |
| 128 | ssh_get_first_identity(AuthenticationConnection *auth, |
Damien Miller | 7e8e820 | 1999-11-16 13:37:16 +1100 | [diff] [blame] | 129 | BIGNUM *e, BIGNUM *n, char **comment) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 130 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 131 | unsigned char msg[8192]; |
| 132 | int len, l; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 133 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 134 | /* |
| 135 | * Send a message to the agent requesting for a list of the |
| 136 | * identities it can represent. |
| 137 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 138 | msg[0] = 0; |
| 139 | msg[1] = 0; |
| 140 | msg[2] = 0; |
| 141 | msg[3] = 1; |
| 142 | msg[4] = SSH_AGENTC_REQUEST_RSA_IDENTITIES; |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 143 | if (atomicio(write, auth->fd, msg, 5) != 5) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 144 | error("write auth->fd: %.100s", strerror(errno)); |
| 145 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 146 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 147 | /* Read the length of the response. XXX implement timeouts here. */ |
| 148 | len = 4; |
| 149 | while (len > 0) { |
| 150 | l = read(auth->fd, msg + 4 - len, len); |
| 151 | if (l <= 0) { |
| 152 | error("read auth->fd: %.100s", strerror(errno)); |
| 153 | return 0; |
| 154 | } |
| 155 | len -= l; |
| 156 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 157 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 158 | /* |
| 159 | * Extract the length, and check it for sanity. (We cannot trust |
| 160 | * authentication agents). |
| 161 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 162 | len = GET_32BIT(msg); |
| 163 | if (len < 1 || len > 256 * 1024) |
| 164 | fatal("Authentication reply message too long: %d\n", len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 165 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 166 | /* Read the packet itself. */ |
| 167 | buffer_clear(&auth->identities); |
| 168 | while (len > 0) { |
| 169 | l = len; |
| 170 | if (l > sizeof(msg)) |
| 171 | l = sizeof(msg); |
| 172 | l = read(auth->fd, msg, l); |
| 173 | if (l <= 0) |
| 174 | fatal("Incomplete authentication reply."); |
| 175 | buffer_append(&auth->identities, (char *) msg, l); |
| 176 | len -= l; |
| 177 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 178 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 179 | /* Get message type, and verify that we got a proper answer. */ |
| 180 | buffer_get(&auth->identities, (char *) msg, 1); |
| 181 | if (msg[0] != SSH_AGENT_RSA_IDENTITIES_ANSWER) |
| 182 | fatal("Bad authentication reply message type: %d", msg[0]); |
| 183 | |
| 184 | /* Get the number of entries in the response and check it for sanity. */ |
| 185 | auth->howmany = buffer_get_int(&auth->identities); |
| 186 | if (auth->howmany > 1024) |
| 187 | fatal("Too many identities in authentication reply: %d\n", auth->howmany); |
| 188 | |
| 189 | /* Return the first entry (if any). */ |
| 190 | return ssh_get_next_identity(auth, e, n, comment); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 191 | } |
| 192 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 193 | /* |
| 194 | * Returns the next authentication identity for the agent. Other functions |
| 195 | * can be called between this and ssh_get_first_identity or two calls of this |
| 196 | * function. This returns 0 if there are no more identities. The caller |
| 197 | * must free comment after a successful return. |
| 198 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 199 | |
| 200 | int |
| 201 | ssh_get_next_identity(AuthenticationConnection *auth, |
Damien Miller | 7e8e820 | 1999-11-16 13:37:16 +1100 | [diff] [blame] | 202 | BIGNUM *e, BIGNUM *n, char **comment) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 203 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 204 | unsigned int bits; |
Damien Miller | 7e8e820 | 1999-11-16 13:37:16 +1100 | [diff] [blame] | 205 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 206 | /* Return failure if no more entries. */ |
| 207 | if (auth->howmany <= 0) |
| 208 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 209 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 210 | /* |
| 211 | * Get the next entry from the packet. These will abort with a fatal |
| 212 | * error if the packet is too short or contains corrupt data. |
| 213 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 214 | bits = buffer_get_int(&auth->identities); |
| 215 | buffer_get_bignum(&auth->identities, e); |
| 216 | buffer_get_bignum(&auth->identities, n); |
| 217 | *comment = buffer_get_string(&auth->identities, NULL); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 218 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 219 | if (bits != BN_num_bits(n)) |
Damien Miller | bd483e7 | 2000-04-30 10:00:53 +1000 | [diff] [blame] | 220 | log("Warning: identity keysize mismatch: actual %d, announced %u", |
| 221 | BN_num_bits(n), bits); |
Damien Miller | 7e8e820 | 1999-11-16 13:37:16 +1100 | [diff] [blame] | 222 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 223 | /* Decrement the number of remaining entries. */ |
| 224 | auth->howmany--; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 225 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 226 | return 1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 227 | } |
| 228 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 229 | /* |
| 230 | * Generates a random challenge, sends it to the agent, and waits for |
| 231 | * response from the agent. Returns true (non-zero) if the agent gave the |
| 232 | * correct answer, zero otherwise. Response type selects the style of |
| 233 | * response desired, with 0 corresponding to protocol version 1.0 (no longer |
| 234 | * supported) and 1 corresponding to protocol version 1.1. |
| 235 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 236 | |
| 237 | int |
| 238 | ssh_decrypt_challenge(AuthenticationConnection *auth, |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 239 | BIGNUM* e, BIGNUM *n, BIGNUM *challenge, |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 240 | unsigned char session_id[16], |
| 241 | unsigned int response_type, |
| 242 | unsigned char response[16]) |
| 243 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 244 | Buffer buffer; |
| 245 | unsigned char buf[8192]; |
| 246 | int len, l, i; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 247 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 248 | /* Response type 0 is no longer supported. */ |
| 249 | if (response_type == 0) |
| 250 | fatal("Compatibility with ssh protocol version 1.0 no longer supported."); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 251 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 252 | /* Format a message to the agent. */ |
| 253 | buf[0] = SSH_AGENTC_RSA_CHALLENGE; |
| 254 | buffer_init(&buffer); |
| 255 | buffer_append(&buffer, (char *) buf, 1); |
| 256 | buffer_put_int(&buffer, BN_num_bits(n)); |
| 257 | buffer_put_bignum(&buffer, e); |
| 258 | buffer_put_bignum(&buffer, n); |
| 259 | buffer_put_bignum(&buffer, challenge); |
| 260 | buffer_append(&buffer, (char *) session_id, 16); |
| 261 | buffer_put_int(&buffer, response_type); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 262 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 263 | /* Get the length of the message, and format it in the buffer. */ |
| 264 | len = buffer_len(&buffer); |
| 265 | PUT_32BIT(buf, len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 266 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 267 | /* Send the length and then the packet to the agent. */ |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 268 | if (atomicio(write, auth->fd, buf, 4) != 4 || |
| 269 | atomicio(write, auth->fd, buffer_ptr(&buffer), |
| 270 | buffer_len(&buffer)) != buffer_len(&buffer)) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 271 | error("Error writing to authentication socket."); |
| 272 | error_cleanup: |
| 273 | buffer_free(&buffer); |
| 274 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 275 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 276 | /* |
| 277 | * Wait for response from the agent. First read the length of the |
| 278 | * response packet. |
| 279 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 280 | len = 4; |
| 281 | while (len > 0) { |
| 282 | l = read(auth->fd, buf + 4 - len, len); |
| 283 | if (l <= 0) { |
| 284 | error("Error reading response length from authentication socket."); |
| 285 | goto error_cleanup; |
| 286 | } |
| 287 | len -= l; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 288 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 289 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 290 | /* Extract the length, and check it for sanity. */ |
| 291 | len = GET_32BIT(buf); |
| 292 | if (len > 256 * 1024) |
| 293 | fatal("Authentication response too long: %d", len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 294 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 295 | /* Read the rest of the response in tothe buffer. */ |
| 296 | buffer_clear(&buffer); |
| 297 | while (len > 0) { |
| 298 | l = len; |
| 299 | if (l > sizeof(buf)) |
| 300 | l = sizeof(buf); |
| 301 | l = read(auth->fd, buf, l); |
| 302 | if (l <= 0) { |
| 303 | error("Error reading response from authentication socket."); |
| 304 | goto error_cleanup; |
| 305 | } |
| 306 | buffer_append(&buffer, (char *) buf, l); |
| 307 | len -= l; |
| 308 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 309 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 310 | /* Get the type of the packet. */ |
| 311 | buffer_get(&buffer, (char *) buf, 1); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 312 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 313 | /* Check for agent failure message. */ |
| 314 | if (buf[0] == SSH_AGENT_FAILURE) { |
| 315 | log("Agent admitted failure to authenticate using the key."); |
| 316 | goto error_cleanup; |
| 317 | } |
| 318 | /* Now it must be an authentication response packet. */ |
| 319 | if (buf[0] != SSH_AGENT_RSA_RESPONSE) |
| 320 | fatal("Bad authentication response: %d", buf[0]); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 321 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 322 | /* |
| 323 | * Get the response from the packet. This will abort with a fatal |
| 324 | * error if the packet is corrupt. |
| 325 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 326 | for (i = 0; i < 16; i++) |
| 327 | response[i] = buffer_get_char(&buffer); |
| 328 | |
| 329 | /* The buffer containing the packet is no longer needed. */ |
| 330 | buffer_free(&buffer); |
| 331 | |
| 332 | /* Correct answer. */ |
| 333 | return 1; |
| 334 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 335 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 336 | /* |
| 337 | * Adds an identity to the authentication server. This call is not meant to |
| 338 | * be used by normal applications. |
| 339 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 340 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 341 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 342 | ssh_add_identity(AuthenticationConnection *auth, |
| 343 | RSA * key, const char *comment) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 344 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 345 | Buffer buffer; |
| 346 | unsigned char buf[8192]; |
| 347 | int len, l, type; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 348 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 349 | /* Format a message to the agent. */ |
| 350 | buffer_init(&buffer); |
| 351 | buffer_put_char(&buffer, SSH_AGENTC_ADD_RSA_IDENTITY); |
| 352 | buffer_put_int(&buffer, BN_num_bits(key->n)); |
| 353 | buffer_put_bignum(&buffer, key->n); |
| 354 | buffer_put_bignum(&buffer, key->e); |
| 355 | buffer_put_bignum(&buffer, key->d); |
| 356 | /* To keep within the protocol: p < q for ssh. in SSL p > q */ |
| 357 | buffer_put_bignum(&buffer, key->iqmp); /* ssh key->u */ |
| 358 | buffer_put_bignum(&buffer, key->q); /* ssh key->p, SSL key->q */ |
| 359 | buffer_put_bignum(&buffer, key->p); /* ssh key->q, SSL key->p */ |
| 360 | buffer_put_string(&buffer, comment, strlen(comment)); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 361 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 362 | /* Get the length of the message, and format it in the buffer. */ |
| 363 | len = buffer_len(&buffer); |
| 364 | PUT_32BIT(buf, len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 365 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 366 | /* Send the length and then the packet to the agent. */ |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 367 | if (atomicio(write, auth->fd, buf, 4) != 4 || |
| 368 | atomicio(write, auth->fd, buffer_ptr(&buffer), |
| 369 | buffer_len(&buffer)) != buffer_len(&buffer)) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 370 | error("Error writing to authentication socket."); |
| 371 | error_cleanup: |
| 372 | buffer_free(&buffer); |
| 373 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 374 | } |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 375 | /* Wait for response from the agent. First read the length of the |
| 376 | response packet. */ |
| 377 | len = 4; |
| 378 | while (len > 0) { |
| 379 | l = read(auth->fd, buf + 4 - len, len); |
| 380 | if (l <= 0) { |
| 381 | error("Error reading response length from authentication socket."); |
| 382 | goto error_cleanup; |
| 383 | } |
| 384 | len -= l; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 385 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 386 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 387 | /* Extract the length, and check it for sanity. */ |
| 388 | len = GET_32BIT(buf); |
| 389 | if (len > 256 * 1024) |
| 390 | fatal("Add identity response too long: %d", len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 391 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 392 | /* Read the rest of the response in tothe buffer. */ |
| 393 | buffer_clear(&buffer); |
| 394 | while (len > 0) { |
| 395 | l = len; |
| 396 | if (l > sizeof(buf)) |
| 397 | l = sizeof(buf); |
| 398 | l = read(auth->fd, buf, l); |
| 399 | if (l <= 0) { |
| 400 | error("Error reading response from authentication socket."); |
| 401 | goto error_cleanup; |
| 402 | } |
| 403 | buffer_append(&buffer, (char *) buf, l); |
| 404 | len -= l; |
| 405 | } |
| 406 | |
| 407 | /* Get the type of the packet. */ |
| 408 | type = buffer_get_char(&buffer); |
| 409 | switch (type) { |
| 410 | case SSH_AGENT_FAILURE: |
| 411 | buffer_free(&buffer); |
| 412 | return 0; |
| 413 | case SSH_AGENT_SUCCESS: |
| 414 | buffer_free(&buffer); |
| 415 | return 1; |
| 416 | default: |
| 417 | fatal("Bad response to add identity from authentication agent: %d", |
| 418 | type); |
| 419 | } |
| 420 | /* NOTREACHED */ |
| 421 | return 0; |
| 422 | } |
| 423 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 424 | /* |
| 425 | * Removes an identity from the authentication server. This call is not |
| 426 | * meant to be used by normal applications. |
| 427 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 428 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 429 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 430 | ssh_remove_identity(AuthenticationConnection *auth, RSA *key) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 431 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 432 | Buffer buffer; |
| 433 | unsigned char buf[8192]; |
| 434 | int len, l, type; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 435 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 436 | /* Format a message to the agent. */ |
| 437 | buffer_init(&buffer); |
| 438 | buffer_put_char(&buffer, SSH_AGENTC_REMOVE_RSA_IDENTITY); |
| 439 | buffer_put_int(&buffer, BN_num_bits(key->n)); |
| 440 | buffer_put_bignum(&buffer, key->e); |
| 441 | buffer_put_bignum(&buffer, key->n); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 442 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 443 | /* Get the length of the message, and format it in the buffer. */ |
| 444 | len = buffer_len(&buffer); |
| 445 | PUT_32BIT(buf, len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 446 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 447 | /* Send the length and then the packet to the agent. */ |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 448 | if (atomicio(write, auth->fd, buf, 4) != 4 || |
| 449 | atomicio(write, auth->fd, buffer_ptr(&buffer), |
| 450 | buffer_len(&buffer)) != buffer_len(&buffer)) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 451 | error("Error writing to authentication socket."); |
| 452 | error_cleanup: |
| 453 | buffer_free(&buffer); |
| 454 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 455 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 456 | /* |
| 457 | * Wait for response from the agent. First read the length of the |
| 458 | * response packet. |
| 459 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 460 | len = 4; |
| 461 | while (len > 0) { |
| 462 | l = read(auth->fd, buf + 4 - len, len); |
| 463 | if (l <= 0) { |
| 464 | error("Error reading response length from authentication socket."); |
| 465 | goto error_cleanup; |
| 466 | } |
| 467 | len -= l; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 468 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 469 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 470 | /* Extract the length, and check it for sanity. */ |
| 471 | len = GET_32BIT(buf); |
| 472 | if (len > 256 * 1024) |
| 473 | fatal("Remove identity response too long: %d", len); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 474 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 475 | /* Read the rest of the response in tothe buffer. */ |
| 476 | buffer_clear(&buffer); |
| 477 | while (len > 0) { |
| 478 | l = len; |
| 479 | if (l > sizeof(buf)) |
| 480 | l = sizeof(buf); |
| 481 | l = read(auth->fd, buf, l); |
| 482 | if (l <= 0) { |
| 483 | error("Error reading response from authentication socket."); |
| 484 | goto error_cleanup; |
| 485 | } |
| 486 | buffer_append(&buffer, (char *) buf, l); |
| 487 | len -= l; |
| 488 | } |
| 489 | |
| 490 | /* Get the type of the packet. */ |
| 491 | type = buffer_get_char(&buffer); |
| 492 | switch (type) { |
| 493 | case SSH_AGENT_FAILURE: |
| 494 | buffer_free(&buffer); |
| 495 | return 0; |
| 496 | case SSH_AGENT_SUCCESS: |
| 497 | buffer_free(&buffer); |
| 498 | return 1; |
| 499 | default: |
| 500 | fatal("Bad response to remove identity from authentication agent: %d", |
| 501 | type); |
| 502 | } |
| 503 | /* NOTREACHED */ |
| 504 | return 0; |
| 505 | } |
| 506 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 507 | /* |
| 508 | * Removes all identities from the agent. This call is not meant to be used |
| 509 | * by normal applications. |
| 510 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 511 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 512 | int |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 513 | ssh_remove_all_identities(AuthenticationConnection *auth) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 514 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 515 | Buffer buffer; |
| 516 | unsigned char buf[8192]; |
| 517 | int len, l, type; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 518 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 519 | /* Get the length of the message, and format it in the buffer. */ |
| 520 | PUT_32BIT(buf, 1); |
| 521 | buf[4] = SSH_AGENTC_REMOVE_ALL_RSA_IDENTITIES; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 522 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 523 | /* Send the length and then the packet to the agent. */ |
Damien Miller | 037a0dc | 1999-12-07 15:38:31 +1100 | [diff] [blame] | 524 | if (atomicio(write, auth->fd, buf, 5) != 5) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 525 | error("Error writing to authentication socket."); |
| 526 | return 0; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 527 | } |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 528 | /* |
| 529 | * Wait for response from the agent. First read the length of the |
| 530 | * response packet. |
| 531 | */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 532 | len = 4; |
| 533 | while (len > 0) { |
| 534 | l = read(auth->fd, buf + 4 - len, len); |
| 535 | if (l <= 0) { |
| 536 | error("Error reading response length from authentication socket."); |
| 537 | return 0; |
| 538 | } |
| 539 | len -= l; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 540 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 541 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 542 | /* Extract the length, and check it for sanity. */ |
| 543 | len = GET_32BIT(buf); |
| 544 | if (len > 256 * 1024) |
| 545 | fatal("Remove identity response too long: %d", len); |
| 546 | |
| 547 | /* Read the rest of the response into the buffer. */ |
| 548 | buffer_init(&buffer); |
| 549 | while (len > 0) { |
| 550 | l = len; |
| 551 | if (l > sizeof(buf)) |
| 552 | l = sizeof(buf); |
| 553 | l = read(auth->fd, buf, l); |
| 554 | if (l <= 0) { |
| 555 | error("Error reading response from authentication socket."); |
| 556 | buffer_free(&buffer); |
| 557 | return 0; |
| 558 | } |
| 559 | buffer_append(&buffer, (char *) buf, l); |
| 560 | len -= l; |
| 561 | } |
| 562 | |
| 563 | /* Get the type of the packet. */ |
| 564 | type = buffer_get_char(&buffer); |
| 565 | switch (type) { |
| 566 | case SSH_AGENT_FAILURE: |
| 567 | buffer_free(&buffer); |
| 568 | return 0; |
| 569 | case SSH_AGENT_SUCCESS: |
| 570 | buffer_free(&buffer); |
| 571 | return 1; |
| 572 | default: |
| 573 | fatal("Bad response to remove identity from authentication agent: %d", |
| 574 | type); |
| 575 | } |
| 576 | /* NOTREACHED */ |
| 577 | return 0; |
| 578 | } |