]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/openssh/auth1.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / openssh / auth1.c
1 /* $OpenBSD: auth1.c,v 1.77 2012/12/02 20:34:09 djm Exp $ */
2 /*
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  *
6  * As far as I am concerned, the code I have written for this software
7  * can be used freely for any purpose.  Any derived versions of this
8  * software must be clearly marked as such, and if the derived work is
9  * incompatible with the protocol description in the RFC file, it must be
10  * called by a name other than "ssh" or "Secure Shell".
11  */
12
13 #include "includes.h"
14
15 #include <sys/types.h>
16
17 #include <stdarg.h>
18 #include <stdio.h>
19 #include <string.h>
20 #include <unistd.h>
21 #include <pwd.h>
22
23 #include "openbsd-compat/sys-queue.h"
24 #include "xmalloc.h"
25 #include "rsa.h"
26 #include "ssh1.h"
27 #include "packet.h"
28 #include "buffer.h"
29 #include "log.h"
30 #include "servconf.h"
31 #include "compat.h"
32 #include "key.h"
33 #include "hostfile.h"
34 #include "auth.h"
35 #include "channels.h"
36 #include "session.h"
37 #include "uidswap.h"
38 #ifdef GSSAPI
39 #include "ssh-gss.h"
40 #endif
41 #include "monitor_wrap.h"
42 #include "buffer.h"
43
44 /* import */
45 extern ServerOptions options;
46 extern Buffer loginmsg;
47
48 static int auth1_process_password(Authctxt *, char *, size_t);
49 static int auth1_process_rsa(Authctxt *, char *, size_t);
50 static int auth1_process_rhosts_rsa(Authctxt *, char *, size_t);
51 static int auth1_process_tis_challenge(Authctxt *, char *, size_t);
52 static int auth1_process_tis_response(Authctxt *, char *, size_t);
53
54 static char *client_user = NULL;    /* Used to fill in remote user for PAM */
55
56 struct AuthMethod1 {
57         int type;
58         char *name;
59         int *enabled;
60         int (*method)(Authctxt *, char *, size_t);
61 };
62
63 const struct AuthMethod1 auth1_methods[] = {
64         {
65                 SSH_CMSG_AUTH_PASSWORD, "password",
66                 &options.password_authentication, auth1_process_password
67         },
68         {
69                 SSH_CMSG_AUTH_RSA, "rsa",
70                 &options.rsa_authentication, auth1_process_rsa
71         },
72         {
73                 SSH_CMSG_AUTH_RHOSTS_RSA, "rhosts-rsa",
74                 &options.rhosts_rsa_authentication, auth1_process_rhosts_rsa
75         },
76         {
77                 SSH_CMSG_AUTH_TIS, "challenge-response",
78                 &options.challenge_response_authentication,
79                 auth1_process_tis_challenge
80         },
81         {
82                 SSH_CMSG_AUTH_TIS_RESPONSE, "challenge-response",
83                 &options.challenge_response_authentication,
84                 auth1_process_tis_response
85         },
86         { -1, NULL, NULL, NULL}
87 };
88
89 static const struct AuthMethod1
90 *lookup_authmethod1(int type)
91 {
92         int i;
93
94         for (i = 0; auth1_methods[i].name != NULL; i++)
95                 if (auth1_methods[i].type == type)
96                         return (&(auth1_methods[i]));
97
98         return (NULL);
99 }
100
101 static char *
102 get_authname(int type)
103 {
104         const struct AuthMethod1 *a;
105         static char buf[64];
106
107         if ((a = lookup_authmethod1(type)) != NULL)
108                 return (a->name);
109         snprintf(buf, sizeof(buf), "bad-auth-msg-%d", type);
110         return (buf);
111 }
112
113 /*ARGSUSED*/
114 static int
115 auth1_process_password(Authctxt *authctxt, char *info, size_t infolen)
116 {
117         int authenticated = 0;
118         char *password;
119         u_int dlen;
120
121         /*
122          * Read user password.  It is in plain text, but was
123          * transmitted over the encrypted channel so it is
124          * not visible to an outside observer.
125          */
126         password = packet_get_string(&dlen);
127         packet_check_eom();
128
129         /* Try authentication with the password. */
130         authenticated = PRIVSEP(auth_password(authctxt, password));
131
132         memset(password, 0, dlen);
133         xfree(password);
134
135         return (authenticated);
136 }
137
138 /*ARGSUSED*/
139 static int
140 auth1_process_rsa(Authctxt *authctxt, char *info, size_t infolen)
141 {
142         int authenticated = 0;
143         BIGNUM *n;
144
145         /* RSA authentication requested. */
146         if ((n = BN_new()) == NULL)
147                 fatal("do_authloop: BN_new failed");
148         packet_get_bignum(n);
149         packet_check_eom();
150         authenticated = auth_rsa(authctxt, n);
151         BN_clear_free(n);
152
153         return (authenticated);
154 }
155
156 /*ARGSUSED*/
157 static int
158 auth1_process_rhosts_rsa(Authctxt *authctxt, char *info, size_t infolen)
159 {
160         int keybits, authenticated = 0;
161         u_int bits;
162         Key *client_host_key;
163         u_int ulen;
164
165         /*
166          * Get client user name.  Note that we just have to
167          * trust the client; root on the client machine can
168          * claim to be any user.
169          */
170         client_user = packet_get_cstring(&ulen);
171
172         /* Get the client host key. */
173         client_host_key = key_new(KEY_RSA1);
174         bits = packet_get_int();
175         packet_get_bignum(client_host_key->rsa->e);
176         packet_get_bignum(client_host_key->rsa->n);
177
178         keybits = BN_num_bits(client_host_key->rsa->n);
179         if (keybits < 0 || bits != (u_int)keybits) {
180                 verbose("Warning: keysize mismatch for client_host_key: "
181                     "actual %d, announced %d",
182                     BN_num_bits(client_host_key->rsa->n), bits);
183         }
184         packet_check_eom();
185
186         authenticated = auth_rhosts_rsa(authctxt, client_user,
187             client_host_key);
188         key_free(client_host_key);
189
190         snprintf(info, infolen, " ruser %.100s", client_user);
191
192         return (authenticated);
193 }
194
195 /*ARGSUSED*/
196 static int
197 auth1_process_tis_challenge(Authctxt *authctxt, char *info, size_t infolen)
198 {
199         char *challenge;
200
201         if ((challenge = get_challenge(authctxt)) == NULL)
202                 return (0);
203
204         debug("sending challenge '%s'", challenge);
205         packet_start(SSH_SMSG_AUTH_TIS_CHALLENGE);
206         packet_put_cstring(challenge);
207         xfree(challenge);
208         packet_send();
209         packet_write_wait();
210
211         return (-1);
212 }
213
214 /*ARGSUSED*/
215 static int
216 auth1_process_tis_response(Authctxt *authctxt, char *info, size_t infolen)
217 {
218         int authenticated = 0;
219         char *response;
220         u_int dlen;
221
222         response = packet_get_string(&dlen);
223         packet_check_eom();
224         authenticated = verify_response(authctxt, response);
225         memset(response, 'r', dlen);
226         xfree(response);
227
228         return (authenticated);
229 }
230
231 /*
232  * read packets, try to authenticate the user and
233  * return only if authentication is successful
234  */
235 static void
236 do_authloop(Authctxt *authctxt)
237 {
238         int authenticated = 0;
239         char info[1024];
240         int prev = 0, type = 0;
241         const struct AuthMethod1 *meth;
242
243         debug("Attempting authentication for %s%.100s.",
244             authctxt->valid ? "" : "invalid user ", authctxt->user);
245
246         /* If the user has no password, accept authentication immediately. */
247         if (options.permit_empty_passwd && options.password_authentication &&
248 #ifdef KRB5
249             (!options.kerberos_authentication || options.kerberos_or_local_passwd) &&
250 #endif
251             PRIVSEP(auth_password(authctxt, ""))) {
252 #ifdef USE_PAM
253                 if (options.use_pam && (PRIVSEP(do_pam_account())))
254 #endif
255                 {
256                         auth_log(authctxt, 1, 0, "without authentication",
257                             NULL, "");
258                         return;
259                 }
260         }
261
262         /* Indicate that authentication is needed. */
263         packet_start(SSH_SMSG_FAILURE);
264         packet_send();
265         packet_write_wait();
266
267         for (;;) {
268                 /* default to fail */
269                 authenticated = 0;
270
271                 info[0] = '\0';
272
273                 /* Get a packet from the client. */
274                 prev = type;
275                 type = packet_read();
276
277                 /*
278                  * If we started challenge-response authentication but the
279                  * next packet is not a response to our challenge, release
280                  * the resources allocated by get_challenge() (which would
281                  * normally have been released by verify_response() had we
282                  * received such a response)
283                  */
284                 if (prev == SSH_CMSG_AUTH_TIS &&
285                     type != SSH_CMSG_AUTH_TIS_RESPONSE)
286                         abandon_challenge_response(authctxt);
287
288                 if (authctxt->failures >= options.max_authtries)
289                         goto skip;
290                 if ((meth = lookup_authmethod1(type)) == NULL) {
291                         logit("Unknown message during authentication: "
292                             "type %d", type);
293                         goto skip;
294                 }
295
296                 if (!*(meth->enabled)) {
297                         verbose("%s authentication disabled.", meth->name);
298                         goto skip;
299                 }
300
301                 authenticated = meth->method(authctxt, info, sizeof(info));
302                 if (authenticated == -1)
303                         continue; /* "postponed" */
304
305 #ifdef BSD_AUTH
306                 if (authctxt->as) {
307                         auth_close(authctxt->as);
308                         authctxt->as = NULL;
309                 }
310 #endif
311                 if (!authctxt->valid && authenticated)
312                         fatal("INTERNAL ERROR: authenticated invalid user %s",
313                             authctxt->user);
314
315 #ifdef _UNICOS
316                 if (authenticated && cray_access_denied(authctxt->user)) {
317                         authenticated = 0;
318                         fatal("Access denied for user %s.",authctxt->user);
319                 }
320 #endif /* _UNICOS */
321
322 #ifndef HAVE_CYGWIN
323                 /* Special handling for root */
324                 if (authenticated && authctxt->pw->pw_uid == 0 &&
325                     !auth_root_allowed(meth->name)) {
326                         authenticated = 0;
327 # ifdef SSH_AUDIT_EVENTS
328                         PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED));
329 # endif
330                 }
331 #endif
332
333 #ifdef USE_PAM
334                 if (options.use_pam && authenticated &&
335                     !PRIVSEP(do_pam_account())) {
336                         char *msg;
337                         size_t len;
338
339                         error("Access denied for user %s by PAM account "
340                             "configuration", authctxt->user);
341                         len = buffer_len(&loginmsg);
342                         buffer_append(&loginmsg, "\0", 1);
343                         msg = buffer_ptr(&loginmsg);
344                         /* strip trailing newlines */
345                         if (len > 0)
346                                 while (len > 0 && msg[--len] == '\n')
347                                         msg[len] = '\0';
348                         else
349                                 msg = "Access denied.";
350                         packet_disconnect("%s", msg);
351                 }
352 #endif
353
354  skip:
355                 /* Log before sending the reply */
356                 auth_log(authctxt, authenticated, 0, get_authname(type),
357                     NULL, info);
358
359                 if (client_user != NULL) {
360                         xfree(client_user);
361                         client_user = NULL;
362                 }
363
364                 if (authenticated)
365                         return;
366
367                 if (++authctxt->failures >= options.max_authtries) {
368 #ifdef SSH_AUDIT_EVENTS
369                         PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES));
370 #endif
371                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
372                 }
373
374                 packet_start(SSH_SMSG_FAILURE);
375                 packet_send();
376                 packet_write_wait();
377         }
378 }
379
380 /*
381  * Performs authentication of an incoming connection.  Session key has already
382  * been exchanged and encryption is enabled.
383  */
384 void
385 do_authentication(Authctxt *authctxt)
386 {
387         u_int ulen;
388         char *user, *style = NULL;
389
390         /* Get the name of the user that we wish to log in as. */
391         packet_read_expect(SSH_CMSG_USER);
392
393         /* Get the user name. */
394         user = packet_get_cstring(&ulen);
395         packet_check_eom();
396
397         if ((style = strchr(user, ':')) != NULL)
398                 *style++ = '\0';
399
400         authctxt->user = user;
401         authctxt->style = style;
402
403         /* Verify that the user is a valid user. */
404         if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL)
405                 authctxt->valid = 1;
406         else {
407                 debug("do_authentication: invalid user %s", user);
408                 authctxt->pw = fakepw();
409         }
410
411         /* Configuration may have changed as a result of Match */
412         if (options.num_auth_methods != 0)
413                 fatal("AuthenticationMethods is not supported with SSH "
414                     "protocol 1");
415
416         setproctitle("%s%s", authctxt->valid ? user : "unknown",
417             use_privsep ? " [net]" : "");
418
419 #ifdef USE_PAM
420         if (options.use_pam)
421                 PRIVSEP(start_pam(authctxt));
422 #endif
423
424         /*
425          * If we are not running as root, the user must have the same uid as
426          * the server.
427          */
428 #ifndef HAVE_CYGWIN
429         if (!use_privsep && getuid() != 0 && authctxt->pw &&
430             authctxt->pw->pw_uid != getuid())
431                 packet_disconnect("Cannot change user when server not running as root.");
432 #endif
433
434         /*
435          * Loop until the user has been authenticated or the connection is
436          * closed, do_authloop() returns only if authentication is successful
437          */
438         do_authloop(authctxt);
439
440         /* The user has been authenticated and accepted. */
441         packet_start(SSH_SMSG_SUCCESS);
442         packet_send();
443         packet_write_wait();
444 }