]> andersk Git - openssh.git/blob - auth2.c
- markus@cvs.openbsd.org 2003/08/22 13:22:27
[openssh.git] / auth2.c
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.
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  */
24
25 #include "includes.h"
26 RCSID("$OpenBSD: auth2.c,v 1.101 2003/08/22 13:22:27 markus Exp $");
27
28 #include "ssh2.h"
29 #include "xmalloc.h"
30 #include "packet.h"
31 #include "log.h"
32 #include "servconf.h"
33 #include "compat.h"
34 #include "auth.h"
35 #include "dispatch.h"
36 #include "pathnames.h"
37 #include "monitor_wrap.h"
38
39 #ifdef GSSAPI
40 #include "ssh-gss.h"
41 #endif
42
43 /* import */
44 extern ServerOptions options;
45 extern u_char *session_id2;
46 extern u_int session_id2_len;
47
48 Authctxt *x_authctxt = NULL;
49
50 /* methods */
51
52 extern Authmethod method_none;
53 extern Authmethod method_pubkey;
54 extern Authmethod method_passwd;
55 extern Authmethod method_kbdint;
56 extern Authmethod method_hostbased;
57 #ifdef GSSAPI
58 extern Authmethod method_gssapi;
59 #endif
60
61 Authmethod *authmethods[] = {
62         &method_none,
63         &method_pubkey,
64 #ifdef GSSAPI
65         &method_gssapi,
66 #endif
67         &method_passwd,
68         &method_kbdint,
69         &method_hostbased,
70         NULL
71 };
72
73 /* protocol */
74
75 static void input_service_request(int, u_int32_t, void *);
76 static void input_userauth_request(int, u_int32_t, void *);
77
78 /* helper */
79 static Authmethod *authmethod_lookup(const char *);
80 static char *authmethods_get(void);
81 int user_key_allowed(struct passwd *, Key *);
82 int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
83
84 /*
85  * loop until authctxt->success == TRUE
86  */
87
88 Authctxt *
89 do_authentication2(void)
90 {
91         Authctxt *authctxt = authctxt_new();
92
93         x_authctxt = authctxt;          /*XXX*/
94
95         /* challenge-response is implemented via keyboard interactive */
96         if (options.challenge_response_authentication)
97                 options.kbd_interactive_authentication = 1;
98
99         dispatch_init(&dispatch_protocol_error);
100         dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
101         dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
102
103         return (authctxt);
104 }
105
106 static void
107 input_service_request(int type, u_int32_t seq, void *ctxt)
108 {
109         Authctxt *authctxt = ctxt;
110         u_int len;
111         int acceptit = 0;
112         char *service = packet_get_string(&len);
113         packet_check_eom();
114
115         if (authctxt == NULL)
116                 fatal("input_service_request: no authctxt");
117
118         if (strcmp(service, "ssh-userauth") == 0) {
119                 if (!authctxt->success) {
120                         acceptit = 1;
121                         /* now we can handle user-auth requests */
122                         dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
123                 }
124         }
125         /* XXX all other service requests are denied */
126
127         if (acceptit) {
128                 packet_start(SSH2_MSG_SERVICE_ACCEPT);
129                 packet_put_cstring(service);
130                 packet_send();
131                 packet_write_wait();
132         } else {
133                 debug("bad service request %s", service);
134                 packet_disconnect("bad service request %s", service);
135         }
136         xfree(service);
137 }
138
139 static void
140 input_userauth_request(int type, u_int32_t seq, void *ctxt)
141 {
142         Authctxt *authctxt = ctxt;
143         Authmethod *m = NULL;
144         char *user, *service, *method, *style = NULL;
145         int authenticated = 0;
146
147         if (authctxt == NULL)
148                 fatal("input_userauth_request: no authctxt");
149
150         user = packet_get_string(NULL);
151         service = packet_get_string(NULL);
152         method = packet_get_string(NULL);
153         debug("userauth-request for user %s service %s method %s", user, service, method);
154         debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
155
156         if ((style = strchr(user, ':')) != NULL)
157                 *style++ = 0;
158
159         if (authctxt->attempt++ == 0) {
160                 /* setup auth context */
161                 authctxt->pw = PRIVSEP(getpwnamallow(user));
162                 if (authctxt->pw && strcmp(service, "ssh-connection")==0) {
163                         authctxt->valid = 1;
164                         debug2("input_userauth_request: setting up authctxt for %s", user);
165 #ifdef USE_PAM
166                         if (options.use_pam)
167                                 PRIVSEP(start_pam(authctxt->pw->pw_name));
168 #endif
169                 } else {
170                         logit("input_userauth_request: illegal user %s", user);
171 #ifdef USE_PAM
172                         if (options.use_pam)
173                                 PRIVSEP(start_pam(user));
174 #endif
175                 }
176                 setproctitle("%s%s", authctxt->pw ? user : "unknown",
177                     use_privsep ? " [net]" : "");
178                 authctxt->user = xstrdup(user);
179                 authctxt->service = xstrdup(service);
180                 authctxt->style = style ? xstrdup(style) : NULL;
181                 if (use_privsep)
182                         mm_inform_authserv(service, style);
183         } else if (strcmp(user, authctxt->user) != 0 ||
184             strcmp(service, authctxt->service) != 0) {
185                 packet_disconnect("Change of username or service not allowed: "
186                     "(%s,%s) -> (%s,%s)",
187                     authctxt->user, authctxt->service, user, service);
188         }
189         /* reset state */
190         auth2_challenge_stop(authctxt);
191
192 #ifdef GSSAPI
193         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
194         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
195 #endif
196
197         authctxt->postponed = 0;
198
199         /* try to authenticate user */
200         m = authmethod_lookup(method);
201         if (m != NULL) {
202                 debug2("input_userauth_request: try method %s", method);
203                 authenticated = m->userauth(authctxt);
204         }
205         userauth_finish(authctxt, authenticated, method);
206
207         xfree(service);
208         xfree(user);
209         xfree(method);
210 }
211
212 void
213 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
214 {
215         char *methods;
216
217         if (!authctxt->valid && authenticated)
218                 fatal("INTERNAL ERROR: authenticated invalid user %s",
219                     authctxt->user);
220
221         /* Special handling for root */
222         if (authenticated && authctxt->pw->pw_uid == 0 &&
223             !auth_root_allowed(method))
224                 authenticated = 0;
225
226 #ifdef USE_PAM
227         if (options.use_pam && authenticated && !PRIVSEP(do_pam_account()))
228                 authenticated = 0;
229 #endif
230
231 #ifdef _UNICOS
232         if (authenticated && cray_access_denied(authctxt->user)) {
233                 authenticated = 0;
234                 fatal("Access denied for user %s.",authctxt->user);
235         }
236 #endif /* _UNICOS */
237
238         /* Log before sending the reply */
239         auth_log(authctxt, authenticated, method, " ssh2");
240
241         if (authctxt->postponed)
242                 return;
243
244         /* XXX todo: check if multiple auth methods are needed */
245         if (authenticated == 1) {
246                 /* turn off userauth */
247                 dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
248                 packet_start(SSH2_MSG_USERAUTH_SUCCESS);
249                 packet_send();
250                 packet_write_wait();
251                 /* now we can break out */
252                 authctxt->success = 1;
253         } else {
254                 if (authctxt->failures++ > AUTH_FAIL_MAX)
255                         packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
256                 methods = authmethods_get();
257                 packet_start(SSH2_MSG_USERAUTH_FAILURE);
258                 packet_put_cstring(methods);
259                 packet_put_char(0);     /* XXX partial success, unused */
260                 packet_send();
261                 packet_write_wait();
262                 xfree(methods);
263         }
264 }
265
266 /* get current user */
267
268 struct passwd*
269 auth_get_user(void)
270 {
271         return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
272 }
273
274 #define DELIM   ","
275
276 static char *
277 authmethods_get(void)
278 {
279         Buffer b;
280         char *list;
281         int i;
282
283         buffer_init(&b);
284         for (i = 0; authmethods[i] != NULL; i++) {
285                 if (strcmp(authmethods[i]->name, "none") == 0)
286                         continue;
287                 if (authmethods[i]->enabled != NULL &&
288                     *(authmethods[i]->enabled) != 0) {
289                         if (buffer_len(&b) > 0)
290                                 buffer_append(&b, ",", 1);
291                         buffer_append(&b, authmethods[i]->name,
292                             strlen(authmethods[i]->name));
293                 }
294         }
295         buffer_append(&b, "\0", 1);
296         list = xstrdup(buffer_ptr(&b));
297         buffer_free(&b);
298         return list;
299 }
300
301 static Authmethod *
302 authmethod_lookup(const char *name)
303 {
304         int i;
305
306         if (name != NULL)
307                 for (i = 0; authmethods[i] != NULL; i++)
308                         if (authmethods[i]->enabled != NULL &&
309                             *(authmethods[i]->enabled) != 0 &&
310                             strcmp(name, authmethods[i]->name) == 0)
311                                 return authmethods[i];
312         debug2("Unrecognized authentication method name: %s",
313             name ? name : "NULL");
314         return NULL;
315 }
This page took 0.138244 seconds and 5 git commands to generate.