1 /* $OpenBSD: auth1.c,v 1.73 2008/07/04 23:30:16 djm Exp $ */
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
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".
15 #include <sys/types.h>
23 #include "openbsd-compat/sys-queue.h"
41 #include "monitor_wrap.h"
45 extern ServerOptions options
;
46 extern Buffer loginmsg
;
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);
54 static char *client_user
= NULL
; /* Used to fill in remote user for PAM */
60 int (*method
)(Authctxt
*, char *, size_t);
63 const struct AuthMethod1 auth1_methods
[] = {
65 SSH_CMSG_AUTH_PASSWORD
, "password",
66 &options
.password_authentication
, auth1_process_password
69 SSH_CMSG_AUTH_RSA
, "rsa",
70 &options
.rsa_authentication
, auth1_process_rsa
73 SSH_CMSG_AUTH_RHOSTS_RSA
, "rhosts-rsa",
74 &options
.rhosts_rsa_authentication
, auth1_process_rhosts_rsa
77 SSH_CMSG_AUTH_TIS
, "challenge-response",
78 &options
.challenge_response_authentication
,
79 auth1_process_tis_challenge
82 SSH_CMSG_AUTH_TIS_RESPONSE
, "challenge-response",
83 &options
.challenge_response_authentication
,
84 auth1_process_tis_response
86 { -1, NULL
, NULL
, NULL
}
89 static const struct AuthMethod1
90 *lookup_authmethod1(int type
)
94 for (i
= 0; auth1_methods
[i
].name
!= NULL
; i
++)
95 if (auth1_methods
[i
].type
== type
)
96 return (&(auth1_methods
[i
]));
102 get_authname(int type
)
104 const struct AuthMethod1
*a
;
107 if ((a
= lookup_authmethod1(type
)) != NULL
)
109 snprintf(buf
, sizeof(buf
), "bad-auth-msg-%d", type
);
115 auth1_process_password(Authctxt
*authctxt
, char *info
, size_t infolen
)
117 int authenticated
= 0;
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.
126 password
= packet_get_string(&dlen
);
129 /* Try authentication with the password. */
130 authenticated
= PRIVSEP(auth_password(authctxt
, password
));
132 memset(password
, 0, dlen
);
135 return (authenticated
);
140 auth1_process_rsa(Authctxt
*authctxt
, char *info
, size_t infolen
)
142 int authenticated
= 0;
145 /* RSA authentication requested. */
146 if ((n
= BN_new()) == NULL
)
147 fatal("do_authloop: BN_new failed");
148 packet_get_bignum(n
);
150 authenticated
= auth_rsa(authctxt
, n
);
153 return (authenticated
);
158 auth1_process_rhosts_rsa(Authctxt
*authctxt
, char *info
, size_t infolen
)
160 int keybits
, authenticated
= 0;
162 Key
*client_host_key
;
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.
170 client_user
= packet_get_string(&ulen
);
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
);
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
);
186 authenticated
= auth_rhosts_rsa(authctxt
, client_user
,
188 key_free(client_host_key
);
190 snprintf(info
, infolen
, " ruser %.100s", client_user
);
192 return (authenticated
);
197 auth1_process_tis_challenge(Authctxt
*authctxt
, char *info
, size_t infolen
)
201 if ((challenge
= get_challenge(authctxt
)) == NULL
)
204 debug("sending challenge '%s'", challenge
);
205 packet_start(SSH_SMSG_AUTH_TIS_CHALLENGE
);
206 packet_put_cstring(challenge
);
216 auth1_process_tis_response(Authctxt
*authctxt
, char *info
, size_t infolen
)
218 int authenticated
= 0;
222 response
= packet_get_string(&dlen
);
224 authenticated
= verify_response(authctxt
, response
);
225 memset(response
, 'r', dlen
);
228 return (authenticated
);
232 * read packets, try to authenticate the user and
233 * return only if authentication is successful
236 do_authloop(Authctxt
*authctxt
)
238 int authenticated
= 0;
240 int prev
= 0, type
= 0;
241 const struct AuthMethod1
*meth
;
243 debug("Attempting authentication for %s%.100s.",
244 authctxt
->valid
? "" : "invalid user ", authctxt
->user
);
246 /* If the user has no password, accept authentication immediately. */
247 if (options
.password_authentication
&&
249 (!options
.kerberos_authentication
|| options
.kerberos_or_local_passwd
) &&
251 PRIVSEP(auth_password(authctxt
, ""))) {
253 if (options
.use_pam
&& (PRIVSEP(do_pam_account())))
256 auth_log(authctxt
, 1, "without authentication", "");
261 /* Indicate that authentication is needed. */
262 packet_start(SSH_SMSG_FAILURE
);
267 /* default to fail */
272 /* Get a packet from the client. */
274 type
= packet_read();
277 * If we started challenge-response authentication but the
278 * next packet is not a response to our challenge, release
279 * the resources allocated by get_challenge() (which would
280 * normally have been released by verify_response() had we
281 * received such a response)
283 if (prev
== SSH_CMSG_AUTH_TIS
&&
284 type
!= SSH_CMSG_AUTH_TIS_RESPONSE
)
285 abandon_challenge_response(authctxt
);
287 if (authctxt
->failures
>= options
.max_authtries
)
289 if ((meth
= lookup_authmethod1(type
)) == NULL
) {
290 logit("Unknown message during authentication: "
295 if (!*(meth
->enabled
)) {
296 verbose("%s authentication disabled.", meth
->name
);
300 authenticated
= meth
->method(authctxt
, info
, sizeof(info
));
301 if (authenticated
== -1)
302 continue; /* "postponed" */
306 auth_close(authctxt
->as
);
310 if (!authctxt
->valid
&& authenticated
)
311 fatal("INTERNAL ERROR: authenticated invalid user %s",
315 if (authenticated
&& cray_access_denied(authctxt
->user
)) {
317 fatal("Access denied for user %s.",authctxt
->user
);
323 !check_nt_auth(type
== SSH_CMSG_AUTH_PASSWORD
,
325 packet_disconnect("Authentication rejected for uid %d.",
326 authctxt
->pw
== NULL
? -1 : authctxt
->pw
->pw_uid
);
330 /* Special handling for root */
331 if (authenticated
&& authctxt
->pw
->pw_uid
== 0 &&
332 !auth_root_allowed(meth
->name
)) {
334 # ifdef SSH_AUDIT_EVENTS
335 PRIVSEP(audit_event(SSH_LOGIN_ROOT_DENIED
));
341 if (options
.use_pam
&& authenticated
&&
342 !PRIVSEP(do_pam_account())) {
346 error("Access denied for user %s by PAM account "
347 "configuration", authctxt
->user
);
348 len
= buffer_len(&loginmsg
);
349 buffer_append(&loginmsg
, "\0", 1);
350 msg
= buffer_ptr(&loginmsg
);
351 /* strip trailing newlines */
353 while (len
> 0 && msg
[--len
] == '\n')
356 msg
= "Access denied.";
357 packet_disconnect("%s", msg
);
362 /* Log before sending the reply */
363 auth_log(authctxt
, authenticated
, get_authname(type
), info
);
365 if (client_user
!= NULL
) {
373 if (++authctxt
->failures
>= options
.max_authtries
) {
374 #ifdef SSH_AUDIT_EVENTS
375 PRIVSEP(audit_event(SSH_LOGIN_EXCEED_MAXTRIES
));
377 packet_disconnect(AUTH_FAIL_MSG
, authctxt
->user
);
380 packet_start(SSH_SMSG_FAILURE
);
387 * Performs authentication of an incoming connection. Session key has already
388 * been exchanged and encryption is enabled.
391 do_authentication(Authctxt
*authctxt
)
394 char *user
, *style
= NULL
;
396 /* Get the name of the user that we wish to log in as. */
397 packet_read_expect(SSH_CMSG_USER
);
399 /* Get the user name. */
400 user
= packet_get_string(&ulen
);
403 if ((style
= strchr(user
, ':')) != NULL
)
406 authctxt
->user
= user
;
407 authctxt
->style
= style
;
409 /* Verify that the user is a valid user. */
410 if ((authctxt
->pw
= PRIVSEP(getpwnamallow(user
))) != NULL
)
413 debug("do_authentication: invalid user %s", user
);
414 authctxt
->pw
= fakepw();
417 setproctitle("%s%s", authctxt
->valid
? user
: "unknown",
418 use_privsep
? " [net]" : "");
422 PRIVSEP(start_pam(authctxt
));
426 * If we are not running as root, the user must have the same uid as
430 if (!use_privsep
&& getuid() != 0 && authctxt
->pw
&&
431 authctxt
->pw
->pw_uid
!= getuid())
432 packet_disconnect("Cannot change user when server not running as root.");
436 * Loop until the user has been authenticated or the connection is
437 * closed, do_authloop() returns only if authentication is successful
439 do_authloop(authctxt
);
441 /* The user has been authenticated and accepted. */
442 packet_start(SSH_SMSG_SUCCESS
);