]>
git.cameronkatri.com Git - apple_cmds.git/blob - lib/libtelnet/sra.c
2 * Copyright (c) 1991, 1993
3 * Dave Safford. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD: src/crypto/telnet/libtelnet/sra.c,v 1.1.2.7 2002/05/16 08:46:49 markm Exp $");
39 #include <sys/types.h>
40 #include <arpa/telnet.h>
49 #include <security/pam_appl.h>
59 char pka
[HEXKEYBYTES
+1], ska
[HEXKEYBYTES
+1], pkb
[HEXKEYBYTES
+1];
60 char *user
, *pass
, *xuser
, *xpass
;
64 extern int auth_debug_mode
;
67 static int sra_valid
= 0;
68 static int passwd_sent
= 0;
70 static unsigned char str_data
[1024] = { IAC
, SB
, TELOPT_AUTHENTICATION
, 0,
75 #define SRA_CONTINUE 2
80 static int check_user(char *, char *);
82 /* support routine to send out authentication message */
84 Data(Authenticator
*ap
, int type
, void *d
, int c
)
86 unsigned char *p
= str_data
+ 4;
87 unsigned char *cd
= (unsigned char *)d
;
90 c
= strlen((char *)cd
);
92 if (auth_debug_mode
) {
93 printf("%s:%d: [%d] (%d)",
94 str_data
[3] == TELQUAL_IS
? ">>>IS" : ">>>REPLY",
104 if ((*p
++ = *cd
++) == IAC
)
109 if (str_data
[3] == TELQUAL_IS
)
110 printsub('>', &str_data
[2], p
- (&str_data
[2]));
111 return(net_write(str_data
, p
- str_data
));
115 sra_init(Authenticator
*ap __unused
, int server
)
118 str_data
[3] = TELQUAL_REPLY
;
120 str_data
[3] = TELQUAL_IS
;
122 user
= (char *)malloc(256);
123 xuser
= (char *)malloc(513);
124 pass
= (char *)malloc(256);
125 xpass
= (char *)malloc(513);
127 if (user
== NULL
|| xuser
== NULL
|| pass
== NULL
|| xpass
==
129 return 0; /* malloc failed */
137 /* client received a go-ahead for sra */
139 sra_send(Authenticator
*ap
)
144 printf("Sent PKA to server.\r\n" );
145 printf("Trying SRA secure login:\r\n");
146 if (!Data(ap
, SRA_KEY
, (void *)pka
, HEXKEYBYTES
)) {
148 printf("Not enough room for authentication data\r\n");
155 /* server received an IS -- could be SRA KEY, USER, or PASS */
157 sra_is(Authenticator
*ap
, unsigned char *data
, int cnt
)
167 if (cnt
< HEXKEYBYTES
) {
168 Data(ap
, SRA_REJECT
, (void *)0, 0);
169 auth_finished(ap
, AUTH_USER
);
170 if (auth_debug_mode
) {
171 printf("SRA user rejected for bad PKB\r\n");
176 printf("Sent pka\r\n");
177 if (!Data(ap
, SRA_KEY
, (void *)pka
, HEXKEYBYTES
)) {
179 printf("Not enough room\r\n");
182 memcpy(pkb
,data
,HEXKEYBYTES
);
183 pkb
[HEXKEYBYTES
] = '\0';
184 common_key(ska
,pkb
,&ik
,&ck
);
189 if (cnt
> 512) /* Attempted buffer overflow */
191 memcpy(xuser
,data
,cnt
);
193 pk_decode(xuser
,user
,&ck
);
194 auth_encrypt_user(user
);
195 Data(ap
, SRA_CONTINUE
, (void *)0, 0);
200 if (cnt
> 512) /* Attempted buffer overflow */
203 memcpy(xpass
,data
,cnt
);
205 pk_decode(xpass
,pass
,&ck
);
207 /* check user's password */
208 valid
= check_user(user
,pass
);
211 Data(ap
, SRA_ACCEPT
, (void *)0, 0);
215 encrypt_session_key(&skey
, 1);
218 auth_finished(ap
, AUTH_VALID
);
219 if (auth_debug_mode
) {
220 printf("SRA user accepted\r\n");
224 Data(ap
, SRA_CONTINUE
, (void *)0, 0);
226 Data(ap, SRA_REJECT, (void *)0, 0);
228 auth_finished(ap, AUTH_REJECT);
230 if (auth_debug_mode
) {
231 printf("SRA user failed\r\n");
238 printf("Unknown SRA option %d\r\n", data
[-1]);
241 Data(ap
, SRA_REJECT
, 0, 0);
243 auth_finished(ap
, AUTH_REJECT
);
246 /* client received REPLY -- could be SRA KEY, CONTINUE, ACCEPT, or REJECT */
248 sra_reply(Authenticator
*ap
, unsigned char *data
, int cnt
)
250 char uprompt
[256],tuser
[256];
259 /* calculate common key */
260 if (cnt
< HEXKEYBYTES
) {
261 if (auth_debug_mode
) {
262 printf("SRA user rejected for bad PKB\r\n");
266 memcpy(pkb
,data
,HEXKEYBYTES
);
267 pkb
[HEXKEYBYTES
] = '\0';
269 common_key(ska
,pkb
,&ik
,&ck
);
274 memset(tuser
,0,sizeof(tuser
));
275 sprintf(uprompt
,"User (%s): ",UserNameRequested
);
276 telnet_gets(uprompt
,tuser
,255,1);
277 if (tuser
[0] == '\n' || tuser
[0] == '\r' )
278 strcpy(user
,UserNameRequested
);
280 /* telnet_gets leaves the newline on */
281 for(i
=0;i
<sizeof(tuser
);i
++) {
282 if (tuser
[i
] == '\n') {
289 pk_encode(user
,xuser
,&ck
);
293 printf("Sent KAB(U)\r\n");
294 if (!Data(ap
, SRA_USER
, (void *)xuser
, strlen(xuser
))) {
296 printf("Not enough room\r\n");
304 printf("[ SRA login failed ]\r\n");
307 /* encode password */
308 memset(pass
,0,sizeof(pass
));
309 telnet_gets("Password: ",pass
,255,0);
310 pk_encode(pass
,xpass
,&ck
);
313 printf("Sent KAB(P)\r\n");
314 if (!Data(ap
, SRA_PASS
, (void *)xpass
, strlen(xpass
))) {
316 printf("Not enough room\r\n");
323 printf("[ SRA refuses authentication ]\r\n");
324 printf("Trying plaintext login:\r\n");
325 auth_finished(0,AUTH_REJECT
);
329 printf("[ SRA accepts you ]\r\n");
333 encrypt_session_key(&skey
, 0);
335 auth_finished(ap
, AUTH_VALID
);
339 printf("Unknown SRA option %d\r\n", data
[-1]);
345 sra_status(Authenticator
*ap __unused
, char *name
, int level
)
347 if (level
< AUTH_USER
)
349 if (UserNameRequested
&& sra_valid
) {
350 strcpy(name
, UserNameRequested
);
356 #define BUMP(buf, len) while (*(buf)) {++(buf), --(len);}
357 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);}
360 sra_printsub(unsigned char *data
, int cnt
, unsigned char *buf
, int buflen
)
365 buf
[buflen
-1] = '\0'; /* make sure its NULL terminated */
371 strncpy((char *)buf
, " CONTINUE ", buflen
);
374 case SRA_REJECT
: /* Rejected (reason might follow) */
375 strncpy((char *)buf
, " REJECT ", buflen
);
378 case SRA_ACCEPT
: /* Accepted (name might follow) */
379 strncpy((char *)buf
, " ACCEPT ", buflen
);
385 ADDC(buf
, buflen
, '"');
386 for (i
= 4; i
< cnt
; i
++)
387 ADDC(buf
, buflen
, data
[i
]);
388 ADDC(buf
, buflen
, '"');
389 ADDC(buf
, buflen
, '\0');
392 case SRA_KEY
: /* Authentication data follows */
393 strncpy((char *)buf
, " KEY ", buflen
);
397 strncpy((char *)buf
, " USER ", buflen
);
401 strncpy((char *)buf
, " PASS ", buflen
);
405 sprintf(lbuf
, " %d (unknown)", data
[3]);
406 strncpy((char *)buf
, lbuf
, buflen
);
409 for (i
= 4; i
< cnt
; i
++) {
410 sprintf(lbuf
, " %d", data
[i
]);
411 strncpy((char *)buf
, lbuf
, buflen
);
419 isroot(const char *usr
)
423 if ((pwd
=getpwnam(usr
))==NULL
)
425 return (!pwd
->pw_uid
);
433 return ((t
= getttynam(ttyn
)) && t
->ty_status
& TTY_SECURE
);
438 check_user(char *name
, char *cred
)
441 char *xpasswd
, *salt
;
443 if (isroot(name
) && !rootterm(line
))
445 crypt("AA","*"); /* Waste some time to simulate success */
449 if (pw
= sgetpwnam(name
)) {
450 if (pw
->pw_shell
== NULL
) {
451 pw
= (struct passwd
*) NULL
;
455 salt
= pw
->pw_passwd
;
456 xpasswd
= crypt(cred
, salt
);
457 /* The strcmp does not catch null passwords! */
458 if (pw
== NULL
|| *pw
->pw_passwd
== '\0' ||
459 strcmp(xpasswd
, pw
->pw_passwd
)) {
460 pw
= (struct passwd
*) NULL
;
470 * The following is stolen from ftpd, which stole it from the imap-uw
471 * PAM module and login.c. It is needed because we can't really
472 * "converse" with the user, having already gone to the trouble of
473 * getting their username and password through an encrypted channel.
476 #define COPY_STRING(s) (s ? strdup(s):NULL)
482 typedef struct cred_t cred_t
;
485 auth_conv(int num_msg
, const struct pam_message
**msg
, struct pam_response
**resp
, void *appdata
)
488 cred_t
*cred
= (cred_t
*) appdata
;
489 struct pam_response
*reply
=
490 malloc(sizeof(struct pam_response
) * num_msg
);
495 for (i
= 0; i
< num_msg
; i
++) {
496 switch (msg
[i
]->msg_style
) {
497 case PAM_PROMPT_ECHO_ON
: /* assume want user name */
498 reply
[i
].resp_retcode
= PAM_SUCCESS
;
499 reply
[i
].resp
= COPY_STRING(cred
->uname
);
500 /* PAM frees resp. */
502 case PAM_PROMPT_ECHO_OFF
: /* assume want password */
503 reply
[i
].resp_retcode
= PAM_SUCCESS
;
504 reply
[i
].resp
= COPY_STRING(cred
->pass
);
505 /* PAM frees resp. */
509 reply
[i
].resp_retcode
= PAM_SUCCESS
;
510 reply
[i
].resp
= NULL
;
512 default: /* unknown message style */
523 * The PAM version as a side effect may put a new username in *name.
526 check_user(char *name
, char *cred
)
528 pam_handle_t
*pamh
= NULL
;
532 cred_t auth_cred
= { name
, cred
};
533 struct pam_conv conv
= { &auth_conv
, &auth_cred
};
535 e
= pam_start("telnetd", name
, &conv
, &pamh
);
536 if (e
!= PAM_SUCCESS
) {
537 syslog(LOG_ERR
, "pam_start: %s", pam_strerror(pamh
, e
));
541 #if 0 /* Where can we find this value? */
542 e
= pam_set_item(pamh
, PAM_RHOST
, remotehost
);
543 if (e
!= PAM_SUCCESS
) {
544 syslog(LOG_ERR
, "pam_set_item(PAM_RHOST): %s",
545 pam_strerror(pamh
, e
));
550 e
= pam_authenticate(pamh
, 0);
554 * With PAM we support the concept of a "template"
555 * user. The user enters a login name which is
556 * authenticated by PAM, usually via a remote service
557 * such as RADIUS or TACACS+. If authentication
558 * succeeds, a different but related "template" name
559 * is used for setting the credentials, shell, and
560 * home directory. The name the user enters need only
561 * exist on the remote authentication server, but the
562 * template name must be present in the local password
565 * This is supported by two various mechanisms in the
566 * individual modules. However, from the application's
567 * point of view, the template user is always passed
568 * back as a changed value of the PAM_USER item.
570 if ((e
= pam_get_item(pamh
, PAM_USER
, &item
)) ==
574 syslog(LOG_ERR
, "Couldn't get PAM_USER: %s",
575 pam_strerror(pamh
, e
));
576 if (isroot(name
) && !rootterm(line
))
583 case PAM_USER_UNKNOWN
:
589 syslog(LOG_ERR
, "auth_pam: %s", pam_strerror(pamh
, e
));
594 if ((e
= pam_end(pamh
, e
)) != PAM_SUCCESS
) {
595 syslog(LOG_ERR
, "pam_end: %s", pam_strerror(pamh
, e
));
603 #endif /* ENCRYPTION */