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