]> andersk Git - openssh.git/blame - auth2.c
- (djm) Bug #629: Mark ssh_config option "pamauthenticationviakbdint"
[openssh.git] / auth2.c
CommitLineData
a306f2dd 1/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
a306f2dd 12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
bcbf86ec 24
a306f2dd 25#include "includes.h"
a27002e5 26RCSID("$OpenBSD: auth2.c,v 1.99 2003/06/24 08:23:46 markus Exp $");
a306f2dd 27
42f11eb2 28#include "ssh2.h"
a306f2dd 29#include "xmalloc.h"
a306f2dd 30#include "packet.h"
42f11eb2 31#include "log.h"
a306f2dd 32#include "servconf.h"
33#include "compat.h"
a306f2dd 34#include "auth.h"
a306f2dd 35#include "dispatch.h"
42f11eb2 36#include "pathnames.h"
1853d1ef 37#include "monitor_wrap.h"
a306f2dd 38
39/* import */
40extern ServerOptions options;
1e3b8b07 41extern u_char *session_id2;
a27002e5 42extern u_int session_id2_len;
a306f2dd 43
1853d1ef 44Authctxt *x_authctxt = NULL;
94ec8c6b 45
01c24737 46/* methods */
47
48extern Authmethod method_none;
49extern Authmethod method_pubkey;
50extern Authmethod method_passwd;
51extern Authmethod method_kbdint;
52extern Authmethod method_hostbased;
802e01b8 53#ifdef KRB5
54extern Authmethod method_kerberos;
55#endif
01c24737 56
57Authmethod *authmethods[] = {
58 &method_none,
59 &method_pubkey,
60 &method_passwd,
61 &method_kbdint,
62 &method_hostbased,
802e01b8 63#ifdef KRB5
64 &method_kerberos,
65#endif
01c24737 66 NULL
94ec8c6b 67};
68
a306f2dd 69/* protocol */
70
7819b5c3 71static void input_service_request(int, u_int32_t, void *);
72static void input_userauth_request(int, u_int32_t, void *);
a306f2dd 73
a306f2dd 74/* helper */
396c147e 75static Authmethod *authmethod_lookup(const char *);
ffb215be 76static char *authmethods_get(void);
1853d1ef 77int user_key_allowed(struct passwd *, Key *);
78int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
a306f2dd 79
a306f2dd 80/*
94ec8c6b 81 * loop until authctxt->success == TRUE
a306f2dd 82 */
83
1b34c1b3 84Authctxt *
d5bb9418 85do_authentication2(void)
a306f2dd 86{
59c97189 87 Authctxt *authctxt = authctxt_new();
88
94ec8c6b 89 x_authctxt = authctxt; /*XXX*/
90
aa8003d6 91 /* challenge-response is implemented via keyboard interactive */
5ba55ada 92 if (options.challenge_response_authentication)
d464095c 93 options.kbd_interactive_authentication = 1;
94
6367063f 95 dispatch_init(&dispatch_protocol_error);
a306f2dd 96 dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
94ec8c6b 97 dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
1b34c1b3 98
99 return (authctxt);
a306f2dd 100}
101
396c147e 102static void
7819b5c3 103input_service_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 104{
94ec8c6b 105 Authctxt *authctxt = ctxt;
1e3b8b07 106 u_int len;
7fdc56c5 107 int acceptit = 0;
a306f2dd 108 char *service = packet_get_string(&len);
95500969 109 packet_check_eom();
a306f2dd 110
94ec8c6b 111 if (authctxt == NULL)
112 fatal("input_service_request: no authctxt");
113
a306f2dd 114 if (strcmp(service, "ssh-userauth") == 0) {
94ec8c6b 115 if (!authctxt->success) {
7fdc56c5 116 acceptit = 1;
a306f2dd 117 /* now we can handle user-auth requests */
118 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
119 }
120 }
121 /* XXX all other service requests are denied */
122
7fdc56c5 123 if (acceptit) {
a306f2dd 124 packet_start(SSH2_MSG_SERVICE_ACCEPT);
125 packet_put_cstring(service);
126 packet_send();
127 packet_write_wait();
128 } else {
129 debug("bad service request %s", service);
130 packet_disconnect("bad service request %s", service);
131 }
132 xfree(service);
133}
134
396c147e 135static void
7819b5c3 136input_userauth_request(int type, u_int32_t seq, void *ctxt)
a306f2dd 137{
94ec8c6b 138 Authctxt *authctxt = ctxt;
139 Authmethod *m = NULL;
59c97189 140 char *user, *service, *method, *style = NULL;
a306f2dd 141 int authenticated = 0;
a306f2dd 142
94ec8c6b 143 if (authctxt == NULL)
144 fatal("input_userauth_request: no authctxt");
a306f2dd 145
94ec8c6b 146 user = packet_get_string(NULL);
147 service = packet_get_string(NULL);
148 method = packet_get_string(NULL);
149 debug("userauth-request for user %s service %s method %s", user, service, method);
8abcdba4 150 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
94ec8c6b 151
59c97189 152 if ((style = strchr(user, ':')) != NULL)
153 *style++ = 0;
154
2b87da3b 155 if (authctxt->attempt++ == 0) {
63284fbb 156 /* setup auth context */
f7ed12f1 157 authctxt->pw = PRIVSEP(getpwnamallow(user));
158 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
94ec8c6b 159 authctxt->valid = 1;
160 debug2("input_userauth_request: setting up authctxt for %s", user);
161#ifdef USE_PAM
7fceb20d 162 if (options.use_pam)
163 PRIVSEP(start_pam(authctxt->pw->pw_name));
94ec8c6b 164#endif
165 } else {
bbe88b6d 166 logit("input_userauth_request: illegal user %s", user);
04fc7a67 167#ifdef USE_PAM
7fceb20d 168 if (options.use_pam)
169 PRIVSEP(start_pam(user));
04fc7a67 170#endif
94ec8c6b 171 }
5f1f36b5 172 setproctitle("%s%s", authctxt->pw ? user : "unknown",
1853d1ef 173 use_privsep ? " [net]" : "");
94ec8c6b 174 authctxt->user = xstrdup(user);
175 authctxt->service = xstrdup(service);
2a6a054e 176 authctxt->style = style ? xstrdup(style) : NULL;
1853d1ef 177 if (use_privsep)
178 mm_inform_authserv(service, style);
2a6a054e 179 } else if (strcmp(user, authctxt->user) != 0 ||
180 strcmp(service, authctxt->service) != 0) {
181 packet_disconnect("Change of username or service not allowed: "
182 "(%s,%s) -> (%s,%s)",
183 authctxt->user, authctxt->service, user, service);
a306f2dd 184 }
59c97189 185 /* reset state */
2f293d43 186 auth2_challenge_stop(authctxt);
59c97189 187 authctxt->postponed = 0;
9cd45ea4 188
59c97189 189 /* try to authenticate user */
94ec8c6b 190 m = authmethod_lookup(method);
191 if (m != NULL) {
192 debug2("input_userauth_request: try method %s", method);
193 authenticated = m->userauth(authctxt);
9cd45ea4 194 }
d9cd3575 195 userauth_finish(authctxt, authenticated, method);
196
197 xfree(service);
198 xfree(user);
199 xfree(method);
200}
201
202void
203userauth_finish(Authctxt *authctxt, int authenticated, char *method)
204{
4e81159c 205 char *methods;
206
59c97189 207 if (!authctxt->valid && authenticated)
208 fatal("INTERNAL ERROR: authenticated invalid user %s",
209 authctxt->user);
9cd45ea4 210
94ec8c6b 211 /* Special handling for root */
5d47f1d4 212 if (authenticated && authctxt->pw->pw_uid == 0 &&
15853e93 213 !auth_root_allowed(method))
a306f2dd 214 authenticated = 0;
a306f2dd 215
5b9e2464 216#ifdef USE_PAM
217 if (options.use_pam && authenticated && !PRIVSEP(do_pam_account()))
218 authenticated = 0;
219#endif
220
ef51930f 221#ifdef _UNICOS
222 if (authenticated && cray_access_denied(authctxt->user)) {
223 authenticated = 0;
224 fatal("Access denied for user %s.",authctxt->user);
225 }
226#endif /* _UNICOS */
227
94ec8c6b 228 /* Log before sending the reply */
59c97189 229 auth_log(authctxt, authenticated, method, " ssh2");
230
4e81159c 231 if (authctxt->postponed)
232 return;
233
234 /* XXX todo: check if multiple auth methods are needed */
235 if (authenticated == 1) {
236 /* turn off userauth */
6367063f 237 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
4e81159c 238 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
239 packet_send();
240 packet_write_wait();
241 /* now we can break out */
242 authctxt->success = 1;
243 } else {
d7cf277b 244 if (authctxt->failures++ > AUTH_FAIL_MAX)
4e81159c 245 packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
246 methods = authmethods_get();
247 packet_start(SSH2_MSG_USERAUTH_FAILURE);
248 packet_put_cstring(methods);
249 packet_put_char(0); /* XXX partial success, unused */
250 packet_send();
251 packet_write_wait();
252 xfree(methods);
253 }
94ec8c6b 254}
255
94ec8c6b 256/* get current user */
a306f2dd 257
258struct passwd*
259auth_get_user(void)
260{
94ec8c6b 261 return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
a306f2dd 262}
263
94ec8c6b 264#define DELIM ","
265
ffb215be 266static char *
94ec8c6b 267authmethods_get(void)
a306f2dd 268{
3469eac4 269 Buffer b;
94ec8c6b 270 char *list;
01c24737 271 int i;
94ec8c6b 272
3469eac4 273 buffer_init(&b);
01c24737 274 for (i = 0; authmethods[i] != NULL; i++) {
275 if (strcmp(authmethods[i]->name, "none") == 0)
94ec8c6b 276 continue;
01c24737 277 if (authmethods[i]->enabled != NULL &&
278 *(authmethods[i]->enabled) != 0) {
3469eac4 279 if (buffer_len(&b) > 0)
280 buffer_append(&b, ",", 1);
01c24737 281 buffer_append(&b, authmethods[i]->name,
282 strlen(authmethods[i]->name));
a306f2dd 283 }
284 }
3469eac4 285 buffer_append(&b, "\0", 1);
286 list = xstrdup(buffer_ptr(&b));
287 buffer_free(&b);
94ec8c6b 288 return list;
289}
290
396c147e 291static Authmethod *
94ec8c6b 292authmethod_lookup(const char *name)
293{
01c24737 294 int i;
295
94ec8c6b 296 if (name != NULL)
01c24737 297 for (i = 0; authmethods[i] != NULL; i++)
298 if (authmethods[i]->enabled != NULL &&
299 *(authmethods[i]->enabled) != 0 &&
300 strcmp(name, authmethods[i]->name) == 0)
301 return authmethods[i];
302 debug2("Unrecognized authentication method name: %s",
303 name ? name : "NULL");
94ec8c6b 304 return NULL;
a306f2dd 305}
This page took 0.18298 seconds and 5 git commands to generate.