auth.c revision 1.18 1 1.18 christos /* $NetBSD: auth.c,v 1.18 2005/02/19 21:55:52 christos Exp $ */
2 1.7 christos
3 1.1 cgd /*-
4 1.3 cgd * Copyright (c) 1991, 1993
5 1.3 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.16 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd */
31 1.1 cgd
32 1.6 lukem #include <sys/cdefs.h>
33 1.1 cgd #ifndef lint
34 1.6 lukem #if 0
35 1.6 lukem static char sccsid[] = "@(#)auth.c 8.3 (Berkeley) 5/30/95"
36 1.6 lukem #else
37 1.18 christos __RCSID("$NetBSD: auth.c,v 1.18 2005/02/19 21:55:52 christos Exp $");
38 1.6 lukem #endif
39 1.1 cgd #endif /* not lint */
40 1.1 cgd
41 1.1 cgd /*
42 1.1 cgd * Copyright (C) 1990 by the Massachusetts Institute of Technology
43 1.1 cgd *
44 1.1 cgd * Export of this software from the United States of America is assumed
45 1.1 cgd * to require a specific license from the United States Government.
46 1.1 cgd * It is the responsibility of any person or organization contemplating
47 1.1 cgd * export to obtain such a license before exporting.
48 1.1 cgd *
49 1.1 cgd * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
50 1.1 cgd * distribute this software and its documentation for any purpose and
51 1.1 cgd * without fee is hereby granted, provided that the above copyright
52 1.1 cgd * notice appear in all copies and that both that copyright notice and
53 1.1 cgd * this permission notice appear in supporting documentation, and that
54 1.1 cgd * the name of M.I.T. not be used in advertising or publicity pertaining
55 1.1 cgd * to distribution of the software without specific, written prior
56 1.1 cgd * permission. M.I.T. makes no representations about the suitability of
57 1.1 cgd * this software for any purpose. It is provided "as is" without express
58 1.1 cgd * or implied warranty.
59 1.1 cgd */
60 1.1 cgd
61 1.1 cgd
62 1.13 itojun #ifdef AUTHENTICATION
63 1.1 cgd #include <stdio.h>
64 1.1 cgd #include <sys/types.h>
65 1.1 cgd #include <signal.h>
66 1.1 cgd #define AUTH_NAMES
67 1.1 cgd #include <arpa/telnet.h>
68 1.1 cgd #include <stdlib.h>
69 1.11 thorpej #include <unistd.h>
70 1.1 cgd #ifdef NO_STRING_H
71 1.1 cgd #include <strings.h>
72 1.1 cgd #else
73 1.1 cgd #include <string.h>
74 1.1 cgd #endif
75 1.1 cgd
76 1.1 cgd #include "encrypt.h"
77 1.1 cgd #include "auth.h"
78 1.1 cgd #include "misc-proto.h"
79 1.1 cgd #include "auth-proto.h"
80 1.1 cgd
81 1.1 cgd #define typemask(x) (1<<((x)-1))
82 1.1 cgd
83 1.3 cgd #ifdef KRB4_ENCPWD
84 1.3 cgd extern krb4encpwd_init();
85 1.3 cgd extern krb4encpwd_send();
86 1.3 cgd extern krb4encpwd_is();
87 1.3 cgd extern krb4encpwd_reply();
88 1.3 cgd extern krb4encpwd_status();
89 1.3 cgd extern krb4encpwd_printsub();
90 1.3 cgd #endif
91 1.3 cgd
92 1.3 cgd #ifdef RSA_ENCPWD
93 1.3 cgd extern rsaencpwd_init();
94 1.3 cgd extern rsaencpwd_send();
95 1.3 cgd extern rsaencpwd_is();
96 1.3 cgd extern rsaencpwd_reply();
97 1.3 cgd extern rsaencpwd_status();
98 1.3 cgd extern rsaencpwd_printsub();
99 1.3 cgd #endif
100 1.3 cgd
101 1.1 cgd int auth_debug_mode = 0;
102 1.9 mycroft static const char *Name = "Noname";
103 1.1 cgd static int Server = 0;
104 1.1 cgd static Authenticator *authenticated = 0;
105 1.1 cgd static int authenticating = 0;
106 1.1 cgd static int validuser = 0;
107 1.1 cgd static unsigned char _auth_send_data[256];
108 1.1 cgd static unsigned char *auth_send_data;
109 1.1 cgd static int auth_send_cnt = 0;
110 1.1 cgd
111 1.17 perry static void auth_intr(int);
112 1.11 thorpej
113 1.1 cgd /*
114 1.1 cgd * Authentication types supported. Plese note that these are stored
115 1.1 cgd * in priority order, i.e. try the first one first.
116 1.1 cgd */
117 1.1 cgd Authenticator authenticators[] = {
118 1.3 cgd #ifdef SPX
119 1.3 cgd { AUTHTYPE_SPX, AUTH_WHO_CLIENT|AUTH_HOW_MUTUAL,
120 1.3 cgd spx_init,
121 1.3 cgd spx_send,
122 1.3 cgd spx_is,
123 1.3 cgd spx_reply,
124 1.3 cgd spx_status,
125 1.3 cgd spx_printsub },
126 1.3 cgd { AUTHTYPE_SPX, AUTH_WHO_CLIENT|AUTH_HOW_ONE_WAY,
127 1.3 cgd spx_init,
128 1.3 cgd spx_send,
129 1.3 cgd spx_is,
130 1.3 cgd spx_reply,
131 1.3 cgd spx_status,
132 1.3 cgd spx_printsub },
133 1.3 cgd #endif
134 1.1 cgd #ifdef KRB5
135 1.11 thorpej # ifdef ENCRYPTION
136 1.11 thorpej { AUTHTYPE_KERBEROS_V5, AUTH_WHO_CLIENT|AUTH_HOW_MUTUAL,
137 1.11 thorpej kerberos5_init,
138 1.11 thorpej kerberos5_send,
139 1.11 thorpej kerberos5_is,
140 1.11 thorpej kerberos5_reply,
141 1.11 thorpej kerberos5_status,
142 1.11 thorpej kerberos5_printsub },
143 1.11 thorpej # endif /* ENCRYPTION */
144 1.1 cgd { AUTHTYPE_KERBEROS_V5, AUTH_WHO_CLIENT|AUTH_HOW_ONE_WAY,
145 1.1 cgd kerberos5_init,
146 1.1 cgd kerberos5_send,
147 1.1 cgd kerberos5_is,
148 1.1 cgd kerberos5_reply,
149 1.1 cgd kerberos5_status,
150 1.1 cgd kerberos5_printsub },
151 1.1 cgd #endif
152 1.1 cgd #ifdef KRB4
153 1.11 thorpej # ifdef ENCRYPTION
154 1.11 thorpej { AUTHTYPE_KERBEROS_V4, AUTH_WHO_CLIENT|AUTH_HOW_MUTUAL,
155 1.11 thorpej kerberos4_init,
156 1.11 thorpej kerberos4_send,
157 1.11 thorpej kerberos4_is,
158 1.11 thorpej kerberos4_reply,
159 1.11 thorpej kerberos4_status,
160 1.11 thorpej kerberos4_printsub },
161 1.11 thorpej # endif /* ENCRYPTION */
162 1.1 cgd { AUTHTYPE_KERBEROS_V4, AUTH_WHO_CLIENT|AUTH_HOW_ONE_WAY,
163 1.1 cgd kerberos4_init,
164 1.1 cgd kerberos4_send,
165 1.1 cgd kerberos4_is,
166 1.1 cgd kerberos4_reply,
167 1.1 cgd kerberos4_status,
168 1.1 cgd kerberos4_printsub },
169 1.1 cgd #endif
170 1.3 cgd #ifdef KRB4_ENCPWD
171 1.3 cgd { AUTHTYPE_KRB4_ENCPWD, AUTH_WHO_CLIENT|AUTH_HOW_MUTUAL,
172 1.3 cgd krb4encpwd_init,
173 1.3 cgd krb4encpwd_send,
174 1.3 cgd krb4encpwd_is,
175 1.3 cgd krb4encpwd_reply,
176 1.3 cgd krb4encpwd_status,
177 1.3 cgd krb4encpwd_printsub },
178 1.3 cgd #endif
179 1.3 cgd #ifdef RSA_ENCPWD
180 1.3 cgd { AUTHTYPE_RSA_ENCPWD, AUTH_WHO_CLIENT|AUTH_HOW_ONE_WAY,
181 1.3 cgd rsaencpwd_init,
182 1.3 cgd rsaencpwd_send,
183 1.3 cgd rsaencpwd_is,
184 1.3 cgd rsaencpwd_reply,
185 1.3 cgd rsaencpwd_status,
186 1.3 cgd rsaencpwd_printsub },
187 1.3 cgd #endif
188 1.18 christos #ifdef SRA
189 1.18 christos { AUTHTYPE_SRA, AUTH_WHO_CLIENT|AUTH_HOW_ONE_WAY,
190 1.18 christos sra_init,
191 1.18 christos sra_send,
192 1.18 christos sra_is,
193 1.18 christos sra_reply,
194 1.18 christos sra_status,
195 1.18 christos sra_printsub },
196 1.18 christos
197 1.18 christos #endif
198 1.18 christos { 0, 0, 0, 0, 0, 0, 0, 0 },
199 1.1 cgd };
200 1.1 cgd
201 1.1 cgd static Authenticator NoAuth = { 0 };
202 1.1 cgd
203 1.1 cgd static int i_support = 0;
204 1.1 cgd static int i_wont_support = 0;
205 1.1 cgd
206 1.1 cgd Authenticator *
207 1.1 cgd findauthenticator(type, way)
208 1.1 cgd int type;
209 1.1 cgd int way;
210 1.1 cgd {
211 1.1 cgd Authenticator *ap = authenticators;
212 1.1 cgd
213 1.1 cgd while (ap->type && (ap->type != type || ap->way != way))
214 1.1 cgd ++ap;
215 1.1 cgd return(ap->type ? ap : 0);
216 1.1 cgd }
217 1.1 cgd
218 1.1 cgd void
219 1.1 cgd auth_init(name, server)
220 1.9 mycroft const char *name;
221 1.1 cgd int server;
222 1.1 cgd {
223 1.1 cgd Authenticator *ap = authenticators;
224 1.1 cgd
225 1.1 cgd Server = server;
226 1.1 cgd Name = name;
227 1.1 cgd
228 1.1 cgd i_support = 0;
229 1.1 cgd authenticated = 0;
230 1.1 cgd authenticating = 0;
231 1.1 cgd while (ap->type) {
232 1.1 cgd if (!ap->init || (*ap->init)(ap, server)) {
233 1.1 cgd i_support |= typemask(ap->type);
234 1.1 cgd if (auth_debug_mode)
235 1.1 cgd printf(">>>%s: I support auth type %d %d\r\n",
236 1.1 cgd Name,
237 1.1 cgd ap->type, ap->way);
238 1.1 cgd }
239 1.5 jtk else if (auth_debug_mode)
240 1.5 jtk printf(">>>%s: Init failed: auth type %d %d\r\n",
241 1.5 jtk Name, ap->type, ap->way);
242 1.1 cgd ++ap;
243 1.1 cgd }
244 1.1 cgd }
245 1.1 cgd
246 1.1 cgd void
247 1.1 cgd auth_disable_name(name)
248 1.1 cgd char *name;
249 1.1 cgd {
250 1.1 cgd int x;
251 1.1 cgd for (x = 0; x < AUTHTYPE_CNT; ++x) {
252 1.18 christos if (AUTHTYPE_NAME(x) && !strcasecmp(name, AUTHTYPE_NAME(x))) {
253 1.1 cgd i_wont_support |= typemask(x);
254 1.1 cgd break;
255 1.1 cgd }
256 1.1 cgd }
257 1.1 cgd }
258 1.1 cgd
259 1.1 cgd int
260 1.1 cgd getauthmask(type, maskp)
261 1.1 cgd char *type;
262 1.1 cgd int *maskp;
263 1.1 cgd {
264 1.1 cgd register int x;
265 1.1 cgd
266 1.18 christos if (AUTHTYPE_NAME(0) && !strcasecmp(type, AUTHTYPE_NAME(0))) {
267 1.1 cgd *maskp = -1;
268 1.1 cgd return(1);
269 1.1 cgd }
270 1.1 cgd
271 1.1 cgd for (x = 1; x < AUTHTYPE_CNT; ++x) {
272 1.18 christos if (AUTHTYPE_NAME(x) && !strcasecmp(type, AUTHTYPE_NAME(x))) {
273 1.1 cgd *maskp = typemask(x);
274 1.1 cgd return(1);
275 1.1 cgd }
276 1.1 cgd }
277 1.1 cgd return(0);
278 1.1 cgd }
279 1.1 cgd
280 1.1 cgd int
281 1.1 cgd auth_enable(type)
282 1.4 pk char *type;
283 1.1 cgd {
284 1.1 cgd return(auth_onoff(type, 1));
285 1.1 cgd }
286 1.1 cgd
287 1.1 cgd int
288 1.1 cgd auth_disable(type)
289 1.4 pk char *type;
290 1.1 cgd {
291 1.1 cgd return(auth_onoff(type, 0));
292 1.1 cgd }
293 1.1 cgd
294 1.1 cgd int
295 1.1 cgd auth_onoff(type, on)
296 1.1 cgd char *type;
297 1.1 cgd int on;
298 1.1 cgd {
299 1.5 jtk int i, mask = -1;
300 1.1 cgd Authenticator *ap;
301 1.1 cgd
302 1.1 cgd if (!strcasecmp(type, "?") || !strcasecmp(type, "help")) {
303 1.5 jtk printf("auth %s 'type'\n", on ? "enable" : "disable");
304 1.1 cgd printf("Where 'type' is one of:\n");
305 1.1 cgd printf("\t%s\n", AUTHTYPE_NAME(0));
306 1.5 jtk mask = 0;
307 1.5 jtk for (ap = authenticators; ap->type; ap++) {
308 1.5 jtk if ((mask & (i = typemask(ap->type))) != 0)
309 1.5 jtk continue;
310 1.5 jtk mask |= i;
311 1.1 cgd printf("\t%s\n", AUTHTYPE_NAME(ap->type));
312 1.5 jtk }
313 1.1 cgd return(0);
314 1.1 cgd }
315 1.1 cgd
316 1.1 cgd if (!getauthmask(type, &mask)) {
317 1.1 cgd printf("%s: invalid authentication type\n", type);
318 1.1 cgd return(0);
319 1.1 cgd }
320 1.1 cgd if (on)
321 1.1 cgd i_wont_support &= ~mask;
322 1.1 cgd else
323 1.1 cgd i_wont_support |= mask;
324 1.1 cgd return(1);
325 1.1 cgd }
326 1.1 cgd
327 1.1 cgd int
328 1.1 cgd auth_togdebug(on)
329 1.1 cgd int on;
330 1.1 cgd {
331 1.1 cgd if (on < 0)
332 1.1 cgd auth_debug_mode ^= 1;
333 1.1 cgd else
334 1.1 cgd auth_debug_mode = on;
335 1.1 cgd printf("auth debugging %s\n", auth_debug_mode ? "enabled" : "disabled");
336 1.1 cgd return(1);
337 1.1 cgd }
338 1.1 cgd
339 1.1 cgd int
340 1.11 thorpej auth_status(s)
341 1.11 thorpej char *s;
342 1.1 cgd {
343 1.1 cgd Authenticator *ap;
344 1.5 jtk int i, mask;
345 1.1 cgd
346 1.1 cgd if (i_wont_support == -1)
347 1.1 cgd printf("Authentication disabled\n");
348 1.1 cgd else
349 1.1 cgd printf("Authentication enabled\n");
350 1.1 cgd
351 1.5 jtk mask = 0;
352 1.5 jtk for (ap = authenticators; ap->type; ap++) {
353 1.5 jtk if ((mask & (i = typemask(ap->type))) != 0)
354 1.5 jtk continue;
355 1.5 jtk mask |= i;
356 1.1 cgd printf("%s: %s\n", AUTHTYPE_NAME(ap->type),
357 1.1 cgd (i_wont_support & typemask(ap->type)) ?
358 1.1 cgd "disabled" : "enabled");
359 1.5 jtk }
360 1.1 cgd return(1);
361 1.1 cgd }
362 1.1 cgd
363 1.1 cgd /*
364 1.1 cgd * This routine is called by the server to start authentication
365 1.1 cgd * negotiation.
366 1.1 cgd */
367 1.1 cgd void
368 1.1 cgd auth_request()
369 1.1 cgd {
370 1.1 cgd static unsigned char str_request[64] = { IAC, SB,
371 1.1 cgd TELOPT_AUTHENTICATION,
372 1.1 cgd TELQUAL_SEND, };
373 1.1 cgd Authenticator *ap = authenticators;
374 1.1 cgd unsigned char *e = str_request + 4;
375 1.1 cgd
376 1.1 cgd if (!authenticating) {
377 1.1 cgd authenticating = 1;
378 1.1 cgd while (ap->type) {
379 1.1 cgd if (i_support & ~i_wont_support & typemask(ap->type)) {
380 1.1 cgd if (auth_debug_mode) {
381 1.1 cgd printf(">>>%s: Sending type %d %d\r\n",
382 1.1 cgd Name, ap->type, ap->way);
383 1.1 cgd }
384 1.1 cgd *e++ = ap->type;
385 1.1 cgd *e++ = ap->way;
386 1.1 cgd }
387 1.1 cgd ++ap;
388 1.1 cgd }
389 1.1 cgd *e++ = IAC;
390 1.1 cgd *e++ = SE;
391 1.10 thorpej telnet_net_write(str_request, e - str_request);
392 1.1 cgd printsub('>', &str_request[2], e - str_request - 2);
393 1.1 cgd }
394 1.1 cgd }
395 1.1 cgd
396 1.1 cgd /*
397 1.1 cgd * This is called when an AUTH SEND is received.
398 1.1 cgd * It should never arrive on the server side (as only the server can
399 1.1 cgd * send an AUTH SEND).
400 1.1 cgd * You should probably respond to it if you can...
401 1.1 cgd *
402 1.1 cgd * If you want to respond to the types out of order (i.e. even
403 1.1 cgd * if he sends LOGIN KERBEROS and you support both, you respond
404 1.1 cgd * with KERBEROS instead of LOGIN (which is against what the
405 1.1 cgd * protocol says)) you will have to hack this code...
406 1.1 cgd */
407 1.1 cgd void
408 1.1 cgd auth_send(data, cnt)
409 1.1 cgd unsigned char *data;
410 1.1 cgd int cnt;
411 1.1 cgd {
412 1.1 cgd Authenticator *ap;
413 1.1 cgd static unsigned char str_none[] = { IAC, SB, TELOPT_AUTHENTICATION,
414 1.1 cgd TELQUAL_IS, AUTHTYPE_NULL, 0,
415 1.1 cgd IAC, SE };
416 1.1 cgd if (Server) {
417 1.1 cgd if (auth_debug_mode) {
418 1.1 cgd printf(">>>%s: auth_send called!\r\n", Name);
419 1.1 cgd }
420 1.1 cgd return;
421 1.1 cgd }
422 1.1 cgd
423 1.1 cgd if (auth_debug_mode) {
424 1.1 cgd printf(">>>%s: auth_send got:", Name);
425 1.1 cgd printd(data, cnt); printf("\r\n");
426 1.1 cgd }
427 1.1 cgd
428 1.1 cgd /*
429 1.1 cgd * Save the data, if it is new, so that we can continue looking
430 1.1 cgd * at it if the authorization we try doesn't work
431 1.1 cgd */
432 1.1 cgd if (data < _auth_send_data ||
433 1.1 cgd data > _auth_send_data + sizeof(_auth_send_data)) {
434 1.1 cgd auth_send_cnt = cnt > sizeof(_auth_send_data)
435 1.1 cgd ? sizeof(_auth_send_data)
436 1.1 cgd : cnt;
437 1.5 jtk memmove((void *)_auth_send_data, (void *)data, auth_send_cnt);
438 1.1 cgd auth_send_data = _auth_send_data;
439 1.1 cgd } else {
440 1.1 cgd /*
441 1.1 cgd * This is probably a no-op, but we just make sure
442 1.1 cgd */
443 1.1 cgd auth_send_data = data;
444 1.1 cgd auth_send_cnt = cnt;
445 1.1 cgd }
446 1.1 cgd while ((auth_send_cnt -= 2) >= 0) {
447 1.1 cgd if (auth_debug_mode)
448 1.1 cgd printf(">>>%s: He supports %d\r\n",
449 1.1 cgd Name, *auth_send_data);
450 1.1 cgd if ((i_support & ~i_wont_support) & typemask(*auth_send_data)) {
451 1.1 cgd ap = findauthenticator(auth_send_data[0],
452 1.1 cgd auth_send_data[1]);
453 1.3 cgd if (ap && ap->send) {
454 1.1 cgd if (auth_debug_mode)
455 1.1 cgd printf(">>>%s: Trying %d %d\r\n",
456 1.1 cgd Name, auth_send_data[0],
457 1.1 cgd auth_send_data[1]);
458 1.1 cgd if ((*ap->send)(ap)) {
459 1.1 cgd /*
460 1.1 cgd * Okay, we found one we like
461 1.1 cgd * and did it.
462 1.1 cgd * we can go home now.
463 1.1 cgd */
464 1.1 cgd if (auth_debug_mode)
465 1.1 cgd printf(">>>%s: Using type %d\r\n",
466 1.1 cgd Name, *auth_send_data);
467 1.1 cgd auth_send_data += 2;
468 1.1 cgd return;
469 1.1 cgd }
470 1.1 cgd }
471 1.1 cgd /* else
472 1.1 cgd * just continue on and look for the
473 1.1 cgd * next one if we didn't do anything.
474 1.1 cgd */
475 1.1 cgd }
476 1.1 cgd auth_send_data += 2;
477 1.1 cgd }
478 1.10 thorpej telnet_net_write(str_none, sizeof(str_none));
479 1.1 cgd printsub('>', &str_none[2], sizeof(str_none) - 2);
480 1.1 cgd if (auth_debug_mode)
481 1.1 cgd printf(">>>%s: Sent failure message\r\n", Name);
482 1.1 cgd auth_finished(0, AUTH_REJECT);
483 1.3 cgd #ifdef KANNAN
484 1.3 cgd /*
485 1.3 cgd * We requested strong authentication, however no mechanisms worked.
486 1.3 cgd * Therefore, exit on client end.
487 1.3 cgd */
488 1.5 jtk printf("Unable to securely authenticate user ... exit\n");
489 1.3 cgd exit(0);
490 1.3 cgd #endif /* KANNAN */
491 1.1 cgd }
492 1.1 cgd
493 1.1 cgd void
494 1.1 cgd auth_send_retry()
495 1.1 cgd {
496 1.1 cgd /*
497 1.1 cgd * if auth_send_cnt <= 0 then auth_send will end up rejecting
498 1.1 cgd * the authentication and informing the other side of this.
499 1.1 cgd */
500 1.1 cgd auth_send(auth_send_data, auth_send_cnt);
501 1.1 cgd }
502 1.1 cgd
503 1.1 cgd void
504 1.1 cgd auth_is(data, cnt)
505 1.1 cgd unsigned char *data;
506 1.1 cgd int cnt;
507 1.1 cgd {
508 1.1 cgd Authenticator *ap;
509 1.1 cgd
510 1.1 cgd if (cnt < 2)
511 1.1 cgd return;
512 1.1 cgd
513 1.1 cgd if (data[0] == AUTHTYPE_NULL) {
514 1.1 cgd auth_finished(0, AUTH_REJECT);
515 1.1 cgd return;
516 1.1 cgd }
517 1.1 cgd
518 1.11 thorpej if ((ap = findauthenticator(data[0], data[1])) != NULL) {
519 1.1 cgd if (ap->is)
520 1.1 cgd (*ap->is)(ap, data+2, cnt-2);
521 1.1 cgd } else if (auth_debug_mode)
522 1.1 cgd printf(">>>%s: Invalid authentication in IS: %d\r\n",
523 1.1 cgd Name, *data);
524 1.1 cgd }
525 1.1 cgd
526 1.1 cgd void
527 1.1 cgd auth_reply(data, cnt)
528 1.1 cgd unsigned char *data;
529 1.1 cgd int cnt;
530 1.1 cgd {
531 1.1 cgd Authenticator *ap;
532 1.1 cgd
533 1.1 cgd if (cnt < 2)
534 1.1 cgd return;
535 1.1 cgd
536 1.11 thorpej if ((ap = findauthenticator(data[0], data[1])) != NULL) {
537 1.1 cgd if (ap->reply)
538 1.1 cgd (*ap->reply)(ap, data+2, cnt-2);
539 1.1 cgd } else if (auth_debug_mode)
540 1.1 cgd printf(">>>%s: Invalid authentication in SEND: %d\r\n",
541 1.1 cgd Name, *data);
542 1.1 cgd }
543 1.1 cgd
544 1.1 cgd void
545 1.1 cgd auth_name(data, cnt)
546 1.1 cgd unsigned char *data;
547 1.1 cgd int cnt;
548 1.1 cgd {
549 1.1 cgd unsigned char savename[256];
550 1.1 cgd
551 1.1 cgd if (cnt < 1) {
552 1.1 cgd if (auth_debug_mode)
553 1.1 cgd printf(">>>%s: Empty name in NAME\r\n", Name);
554 1.1 cgd return;
555 1.1 cgd }
556 1.1 cgd if (cnt > sizeof(savename) - 1) {
557 1.1 cgd if (auth_debug_mode)
558 1.8 thorpej printf(">>>%s: Name in NAME (%d) exceeds %ld length\r\n",
559 1.8 thorpej Name, cnt, (long)sizeof(savename)-1);
560 1.1 cgd return;
561 1.1 cgd }
562 1.5 jtk memmove((void *)savename, (void *)data, cnt);
563 1.1 cgd savename[cnt] = '\0'; /* Null terminate */
564 1.1 cgd if (auth_debug_mode)
565 1.1 cgd printf(">>>%s: Got NAME [%s]\r\n", Name, savename);
566 1.1 cgd auth_encrypt_user(savename);
567 1.1 cgd }
568 1.1 cgd
569 1.1 cgd int
570 1.1 cgd auth_sendname(cp, len)
571 1.1 cgd unsigned char *cp;
572 1.1 cgd int len;
573 1.1 cgd {
574 1.1 cgd static unsigned char str_request[256+6]
575 1.1 cgd = { IAC, SB, TELOPT_AUTHENTICATION, TELQUAL_NAME, };
576 1.1 cgd register unsigned char *e = str_request + 4;
577 1.1 cgd register unsigned char *ee = &str_request[sizeof(str_request)-2];
578 1.1 cgd
579 1.1 cgd while (--len >= 0) {
580 1.1 cgd if ((*e++ = *cp++) == IAC)
581 1.1 cgd *e++ = IAC;
582 1.1 cgd if (e >= ee)
583 1.1 cgd return(0);
584 1.1 cgd }
585 1.1 cgd *e++ = IAC;
586 1.1 cgd *e++ = SE;
587 1.10 thorpej telnet_net_write(str_request, e - str_request);
588 1.1 cgd printsub('>', &str_request[2], e - &str_request[2]);
589 1.1 cgd return(1);
590 1.1 cgd }
591 1.1 cgd
592 1.1 cgd void
593 1.1 cgd auth_finished(ap, result)
594 1.1 cgd Authenticator *ap;
595 1.1 cgd int result;
596 1.1 cgd {
597 1.1 cgd if (!(authenticated = ap))
598 1.1 cgd authenticated = &NoAuth;
599 1.1 cgd validuser = result;
600 1.1 cgd }
601 1.1 cgd
602 1.1 cgd /* ARGSUSED */
603 1.1 cgd static void
604 1.1 cgd auth_intr(sig)
605 1.1 cgd int sig;
606 1.1 cgd {
607 1.1 cgd auth_finished(0, AUTH_REJECT);
608 1.1 cgd }
609 1.1 cgd
610 1.1 cgd int
611 1.15 itojun auth_wait(name, l)
612 1.1 cgd char *name;
613 1.15 itojun size_t l;
614 1.1 cgd {
615 1.1 cgd if (auth_debug_mode)
616 1.1 cgd printf(">>>%s: in auth_wait.\r\n", Name);
617 1.1 cgd
618 1.1 cgd if (Server && !authenticating)
619 1.1 cgd return(0);
620 1.1 cgd
621 1.1 cgd (void) signal(SIGALRM, auth_intr);
622 1.1 cgd alarm(30);
623 1.1 cgd while (!authenticated)
624 1.1 cgd if (telnet_spin())
625 1.1 cgd break;
626 1.1 cgd alarm(0);
627 1.1 cgd (void) signal(SIGALRM, SIG_DFL);
628 1.1 cgd
629 1.1 cgd /*
630 1.1 cgd * Now check to see if the user is valid or not
631 1.1 cgd */
632 1.1 cgd if (!authenticated || authenticated == &NoAuth)
633 1.1 cgd return(AUTH_REJECT);
634 1.1 cgd
635 1.1 cgd if (validuser == AUTH_VALID)
636 1.1 cgd validuser = AUTH_USER;
637 1.1 cgd
638 1.1 cgd if (authenticated->status)
639 1.1 cgd validuser = (*authenticated->status)(authenticated,
640 1.15 itojun name, l, validuser);
641 1.1 cgd return(validuser);
642 1.1 cgd }
643 1.1 cgd
644 1.1 cgd void
645 1.1 cgd auth_debug(mode)
646 1.1 cgd int mode;
647 1.1 cgd {
648 1.1 cgd auth_debug_mode = mode;
649 1.1 cgd }
650 1.1 cgd
651 1.1 cgd void
652 1.1 cgd auth_printsub(data, cnt, buf, buflen)
653 1.1 cgd unsigned char *data, *buf;
654 1.1 cgd int cnt, buflen;
655 1.1 cgd {
656 1.1 cgd Authenticator *ap;
657 1.1 cgd
658 1.1 cgd if ((ap = findauthenticator(data[1], data[2])) && ap->printsub)
659 1.1 cgd (*ap->printsub)(data, cnt, buf, buflen);
660 1.1 cgd else
661 1.1 cgd auth_gen_printsub(data, cnt, buf, buflen);
662 1.1 cgd }
663 1.1 cgd
664 1.1 cgd void
665 1.1 cgd auth_gen_printsub(data, cnt, buf, buflen)
666 1.1 cgd unsigned char *data, *buf;
667 1.1 cgd int cnt, buflen;
668 1.1 cgd {
669 1.1 cgd register unsigned char *cp;
670 1.1 cgd unsigned char tbuf[16];
671 1.1 cgd
672 1.1 cgd cnt -= 3;
673 1.1 cgd data += 3;
674 1.1 cgd buf[buflen-1] = '\0';
675 1.1 cgd buf[buflen-2] = '*';
676 1.1 cgd buflen -= 2;
677 1.1 cgd for (; cnt > 0; cnt--, data++) {
678 1.14 itojun snprintf((char *)tbuf, sizeof(tbuf), " %d", *data);
679 1.1 cgd for (cp = tbuf; *cp && buflen > 0; --buflen)
680 1.1 cgd *buf++ = *cp++;
681 1.1 cgd if (buflen <= 0)
682 1.1 cgd return;
683 1.1 cgd }
684 1.1 cgd *buf = '\0';
685 1.1 cgd }
686 1.1 cgd #endif
687