2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. 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. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * Copyright (C) 1990 by the Massachusetts Institute of Technology
37 * Export of this software from the United States of America may
38 * require a specific license from the United States Government.
39 * It is the responsibility of any person or organization contemplating
40 * export to obtain such a license before exporting.
42 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
43 * distribute this software and its documentation for any purpose and
44 * without fee is hereby granted, provided that the above copyright
45 * notice appear in all copies and that both that copyright notice and
46 * this permission notice appear in supporting documentation, and that
47 * the name of M.I.T. not be used in advertising or publicity pertaining
48 * to distribution of the software without specific, written prior
49 * permission. M.I.T. makes no representations about the suitability of
50 * this software for any purpose. It is provided "as is" without express
51 * or implied warranty.
56 __RCSID("$Heimdal: kerberos5.c 22071 2007-11-14 20:04:50Z lha $"
61 #include <arpa/telnet.h>
69 #define Authenticator k5_Authenticator
88 int forward_flags
= 0; /* Flags get set in telnet/main.c on -f and -F */
93 /* These values need to be the same as those defined in telnet/main.c. */
94 /* Either define them in both places, or put in some common header file. */
95 #define OPTS_FORWARD_CREDS 0x00000002
96 #define OPTS_FORWARDABLE_CREDS 0x00000001
99 void kerberos5_forward (Authenticator
*);
101 static unsigned char str_data
[4] = { IAC
, SB
, TELOPT_AUTHENTICATION
, 0 };
103 #define KRB_AUTH 0 /* Authentication data follows */
104 #define KRB_REJECT 1 /* Rejected (reason might follow) */
105 #define KRB_ACCEPT 2 /* Accepted */
106 #define KRB_RESPONSE 3 /* Response for mutual auth. */
108 #define KRB_FORWARD 4 /* Forwarded credentials follow */
109 #define KRB_FORWARD_ACCEPT 5 /* Forwarded credentials accepted */
110 #define KRB_FORWARD_REJECT 6 /* Forwarded credentials rejected */
112 static krb5_data auth
;
113 static krb5_ticket
*ticket
;
115 static krb5_context context
;
116 static krb5_auth_context auth_context
;
119 Data(Authenticator
*ap
, int type
, const void *d
, int c
)
121 const unsigned char *cp
, *cd
= d
;
122 unsigned char *p0
, *p
;
123 size_t len
= sizeof(str_data
) + 3 + 2;
127 c
= strlen((const char*)cd
);
129 for (cp
= cd
; cp
- cd
< c
; cp
++, len
++)
137 memcpy(p0
, str_data
, sizeof(str_data
));
138 p
= p0
+ sizeof(str_data
);
140 if (auth_debug_mode
) {
141 printf("%s:%d: [%d] (%d)",
142 str_data
[3] == TELQUAL_IS
? ">>>IS" : ">>>REPLY",
152 if ((*p
++ = *cd
++) == IAC
)
157 if (str_data
[3] == TELQUAL_IS
)
158 printsub('>', &p0
[2], len
- 2);
159 ret
= telnet_net_write(p0
, len
);
165 kerberos5_init(Authenticator
*ap
, int server
)
169 ret
= krb5_init_context(&context
);
174 krb5_kt_cursor cursor
;
176 ret
= krb5_kt_default(context
, &kt
);
180 ret
= krb5_kt_start_seq_get (context
, kt
, &cursor
);
182 krb5_kt_close (context
, kt
);
185 krb5_kt_end_seq_get (context
, kt
, &cursor
);
186 krb5_kt_close (context
, kt
);
188 str_data
[3] = TELQUAL_REPLY
;
190 str_data
[3] = TELQUAL_IS
;
196 kerberos5_send(char *name
, Authenticator
*ap
)
201 krb5_data cksum_data
;
204 if (!UserNameRequested
) {
205 if (auth_debug_mode
) {
206 printf("Kerberos V5: no user name supplied\r\n");
211 ret
= krb5_cc_default(context
, &ccache
);
213 if (auth_debug_mode
) {
214 printf("Kerberos V5: could not get default ccache: %s\r\n",
215 krb5_get_err_text (context
, ret
));
220 if ((ap
->way
& AUTH_HOW_MASK
) == AUTH_HOW_MUTUAL
)
221 ap_opts
= AP_OPTS_MUTUAL_REQUIRED
;
225 ap_opts
|= AP_OPTS_USE_SUBKEY
;
227 ret
= krb5_auth_con_init (context
, &auth_context
);
229 if (auth_debug_mode
) {
230 printf("Kerberos V5: krb5_auth_con_init failed (%s)\r\n",
231 krb5_get_err_text(context
, ret
));
236 ret
= krb5_auth_con_setaddrs_from_fd (context
,
240 if (auth_debug_mode
) {
241 printf ("Kerberos V5:"
242 " krb5_auth_con_setaddrs_from_fd failed (%s)\r\n",
243 krb5_get_err_text(context
, ret
));
248 krb5_auth_con_setkeytype (context
, auth_context
, KEYTYPE_DES
);
250 ap_msg
[0] = ap
->type
;
253 cksum_data
.length
= sizeof(ap_msg
);
254 cksum_data
.data
= ap_msg
;
258 krb5_principal service
;
262 ret
= krb5_sname_to_principal (context
,
268 if (auth_debug_mode
) {
269 printf ("Kerberos V5:"
270 " krb5_sname_to_principal(%s) failed (%s)\r\n",
271 RemoteHostName
, krb5_get_err_text(context
, ret
));
275 ret
= krb5_unparse_name_fixed(context
, service
, sname
, sizeof(sname
));
277 if (auth_debug_mode
) {
278 printf ("Kerberos V5:"
279 " krb5_unparse_name_fixed failed (%s)\r\n",
280 krb5_get_err_text(context
, ret
));
284 printf("[ Trying %s (%s)... ]\r\n", name
, sname
);
285 ret
= krb5_mk_req_exact(context
, &auth_context
, ap_opts
,
287 &cksum_data
, ccache
, &auth
);
288 krb5_free_principal (context
, service
);
292 if (1 || auth_debug_mode
) {
293 printf("Kerberos V5: mk_req failed (%s)\r\n",
294 krb5_get_err_text(context
, ret
));
299 if (!auth_sendname((unsigned char *)UserNameRequested
,
300 strlen(UserNameRequested
))) {
302 printf("Not enough room for user name\r\n");
305 if (!Data(ap
, KRB_AUTH
, auth
.data
, auth
.length
)) {
307 printf("Not enough room for authentication data\r\n");
310 if (auth_debug_mode
) {
311 printf("Sent Kerberos V5 credentials to server\r\n");
317 kerberos5_send_mutual(Authenticator
*ap
)
319 return kerberos5_send("mutual KERBEROS5", ap
);
323 kerberos5_send_oneway(Authenticator
*ap
)
325 return kerberos5_send("KERBEROS5", ap
);
328 static void log_message(const char *fmt
, ...)
332 if (auth_debug_mode
) {
334 vfprintf(stdout
, fmt
, ap
);
336 fprintf(stdout
, "\r\n");
339 vsyslog(LOG_NOTICE
, fmt
, ap
);
344 kerberos5_is(Authenticator
*ap
, unsigned char *data
, int cnt
)
348 krb5_keyblock
*key_block
;
350 krb5_principal server
;
357 auth
.data
= (char *)data
;
362 ret
= krb5_auth_con_init (context
, &auth_context
);
364 Data(ap
, KRB_REJECT
, "krb5_auth_con_init failed", -1);
365 auth_finished(ap
, AUTH_REJECT
);
366 log_message("Kerberos V5: krb5_auth_con_init failed (%s)",
367 krb5_get_err_text(context
, ret
));
371 ret
= krb5_auth_con_setaddrs_from_fd (context
,
375 Data(ap
, KRB_REJECT
, "krb5_auth_con_setaddrs_from_fd failed", -1);
376 auth_finished(ap
, AUTH_REJECT
);
377 log_message("Kerberos V5: "
378 "krb5_auth_con_setaddrs_from_fd failed (%s)",
379 krb5_get_err_text(context
, ret
));
383 ret
= krb5_sock_to_principal (context
,
389 Data(ap
, KRB_REJECT
, "krb5_sock_to_principal failed", -1);
390 auth_finished(ap
, AUTH_REJECT
);
391 log_message("Kerberos V5: "
392 "krb5_sock_to_principal failed (%s)",
393 krb5_get_err_text(context
, ret
));
397 ret
= krb5_rd_req(context
,
405 krb5_free_principal (context
, server
);
407 const char *errbuf2
= "Read req failed";
411 ret2
= asprintf(&errbuf
,
412 "Read req failed: %s",
413 krb5_get_err_text(context
, ret
));
416 Data(ap
, KRB_REJECT
, errbuf2
, -1);
417 log_message("%s", errbuf2
);
426 ap_msg
[0] = ap
->type
;
429 ret
= krb5_verify_authenticator_checksum(context
,
435 const char *errbuf2
= "Bad checksum";
439 ret2
= asprintf(&errbuf
, "Bad checksum: %s",
440 krb5_get_err_text(context
, ret
));
443 Data(ap
, KRB_REJECT
, errbuf2
, -1);
444 log_message("%s", errbuf2
);
450 ret
= krb5_auth_con_getremotesubkey (context
,
455 Data(ap
, KRB_REJECT
, "krb5_auth_con_getremotesubkey failed", -1);
456 auth_finished(ap
, AUTH_REJECT
);
457 log_message("Kerberos V5: "
458 "krb5_auth_con_getremotesubkey failed (%s)",
459 krb5_get_err_text(context
, ret
));
463 if (key_block
== NULL
) {
464 ret
= krb5_auth_con_getkey(context
,
469 Data(ap
, KRB_REJECT
, "krb5_auth_con_getkey failed", -1);
470 auth_finished(ap
, AUTH_REJECT
);
471 log_message("Kerberos V5: "
472 "krb5_auth_con_getkey failed (%s)",
473 krb5_get_err_text(context
, ret
));
476 if (key_block
== NULL
) {
477 Data(ap
, KRB_REJECT
, "no subkey received", -1);
478 auth_finished(ap
, AUTH_REJECT
);
479 log_message("Kerberos V5: "
480 "krb5_auth_con_getremotesubkey returned NULL key");
484 if ((ap
->way
& AUTH_HOW_MASK
) == AUTH_HOW_MUTUAL
) {
485 ret
= krb5_mk_rep(context
, auth_context
, &outbuf
);
488 "krb5_mk_rep failed", -1);
489 auth_finished(ap
, AUTH_REJECT
);
490 log_message("Kerberos V5: "
491 "krb5_mk_rep failed (%s)",
492 krb5_get_err_text(context
, ret
));
495 Data(ap
, KRB_RESPONSE
, outbuf
.data
, outbuf
.length
);
497 if (krb5_unparse_name(context
, ticket
->client
, &name
))
500 if(UserNameRequested
&& krb5_kuserok(context
,
502 UserNameRequested
)) {
503 Data(ap
, KRB_ACCEPT
, name
, name
? -1 : 0);
504 log_message("%s accepted as user %s from %s",
505 name
? name
: "<unknown>",
506 UserNameRequested
? UserNameRequested
: "<unknown>",
507 RemoteHostName
? RemoteHostName
: "<unknown>");
509 if(key_block
->keytype
== ETYPE_DES_CBC_MD5
||
510 key_block
->keytype
== ETYPE_DES_CBC_MD4
||
511 key_block
->keytype
== ETYPE_DES_CBC_CRC
) {
516 skey
.data
= key_block
->keyvalue
.data
;
517 encrypt_session_key(&skey
, 0);
521 const char *msg2
= "user is not authorized to login";
524 ret
= asprintf (&msg
, "user `%s' is not authorized to "
526 name
? name
: "<unknown>",
527 UserNameRequested
? UserNameRequested
: "<nobody>");
530 Data(ap
, KRB_REJECT
, (void *)msg2
, -1);
533 auth_finished (ap
, AUTH_REJECT
);
534 krb5_free_keyblock_contents(context
, key_block
);
537 auth_finished(ap
, AUTH_USER
);
538 krb5_free_keyblock_contents(context
, key_block
);
543 char ccname
[1024]; /* XXX */
546 inbuf
.data
= (char *)data
;
549 pwd
= getpwnam (UserNameRequested
);
553 snprintf (ccname
, sizeof(ccname
),
554 "FILE:/tmp/krb5cc_%lu", (unsigned long)pwd
->pw_uid
);
556 ret
= krb5_cc_resolve (context
, ccname
, &ccache
);
558 log_message("Kerberos V5: could not get ccache: %s",
559 krb5_get_err_text(context
, ret
));
563 ret
= krb5_cc_initialize (context
,
567 log_message("Kerberos V5: could not init ccache: %s",
568 krb5_get_err_text(context
, ret
));
573 esetenv("KRB5CCNAME", ccname
, 1);
575 ret
= krb5_rd_cred2 (context
,
580 const char *errbuf2
= "Read forwarded creds failed";
584 ret2
= asprintf (&errbuf
,
585 "Read forwarded creds failed: %s",
586 krb5_get_err_text (context
, ret
));
589 Data(ap
, KRB_FORWARD_REJECT
, errbuf
, -1);
590 log_message("Could not read forwarded credentials: %s", errbuf
);
595 Data(ap
, KRB_FORWARD_ACCEPT
, 0, 0);
600 chown (ccname
+ 5, pwd
->pw_uid
, -1);
601 log_message("Forwarded credentials obtained");
605 log_message("Unknown Kerberos option %d", data
[-1]);
606 Data(ap
, KRB_REJECT
, 0, 0);
612 kerberos5_reply(Authenticator
*ap
, unsigned char *data
, int cnt
)
614 static int mutual_complete
= 0;
621 printf("[ Kerberos V5 refuses authentication because %.*s ]\r\n",
624 printf("[ Kerberos V5 refuses authentication ]\r\n");
630 krb5_keyblock
*keyblock
;
632 if ((ap
->way
& AUTH_HOW_MASK
) == AUTH_HOW_MUTUAL
&&
634 printf("[ Kerberos V5 accepted you, but didn't provide mutual authentication! ]\r\n");
639 printf("[ Kerberos V5 accepts you as ``%.*s'' ]\r\n", cnt
, data
);
641 printf("[ Kerberos V5 accepts you ]\r\n");
643 ret
= krb5_auth_con_getlocalsubkey (context
,
647 ret
= krb5_auth_con_getkey (context
,
651 printf("[ krb5_auth_con_getkey: %s ]\r\n",
652 krb5_get_err_text(context
, ret
));
659 skey
.data
= keyblock
->keyvalue
.data
;
660 encrypt_session_key(&skey
, 0);
661 krb5_free_keyblock_contents (context
, keyblock
);
662 auth_finished(ap
, AUTH_USER
);
663 if (forward_flags
& OPTS_FORWARD_CREDS
)
664 kerberos5_forward(ap
);
668 if ((ap
->way
& AUTH_HOW_MASK
) == AUTH_HOW_MUTUAL
) {
669 /* the rest of the reply should contain a krb_ap_rep */
670 krb5_ap_rep_enc_part
*reply
;
675 inbuf
.data
= (char *)data
;
677 ret
= krb5_rd_rep(context
, auth_context
, &inbuf
, &reply
);
679 printf("[ Mutual authentication failed: %s ]\r\n",
680 krb5_get_err_text (context
, ret
));
684 krb5_free_ap_rep_enc_part(context
, reply
);
688 case KRB_FORWARD_ACCEPT
:
689 printf("[ Kerberos V5 accepted forwarded credentials ]\r\n");
691 case KRB_FORWARD_REJECT
:
692 printf("[ Kerberos V5 refuses forwarded credentials because %.*s ]\r\n",
697 printf("Unknown Kerberos option %d\r\n", data
[-1]);
703 kerberos5_status(Authenticator
*ap
, char *name
, size_t name_sz
, int level
)
705 if (level
< AUTH_USER
)
708 if (UserNameRequested
&&
709 krb5_kuserok(context
,
713 strlcpy(name
, UserNameRequested
, name_sz
);
722 #define BUMP(buf, len) while (*(buf)) {++(buf), --(len);}
723 #define ADDC(buf, len, c) if ((len) > 0) {*(buf)++ = (c); --(len);}
726 kerberos5_printsub(unsigned char *data
, int cnt
, unsigned char *buf
, int buflen
)
730 buf
[buflen
-1] = '\0'; /* make sure it's NULL terminated */
734 case KRB_REJECT
: /* Rejected (reason might follow) */
735 strlcpy((char *)buf
, " REJECT ", buflen
);
738 case KRB_ACCEPT
: /* Accepted (name might follow) */
739 strlcpy((char *)buf
, " ACCEPT ", buflen
);
744 ADDC(buf
, buflen
, '"');
745 for (i
= 4; i
< cnt
; i
++)
746 ADDC(buf
, buflen
, data
[i
]);
747 ADDC(buf
, buflen
, '"');
748 ADDC(buf
, buflen
, '\0');
752 case KRB_AUTH
: /* Authentication data follows */
753 strlcpy((char *)buf
, " AUTH", buflen
);
757 strlcpy((char *)buf
, " RESPONSE", buflen
);
760 case KRB_FORWARD
: /* Forwarded credentials follow */
761 strlcpy((char *)buf
, " FORWARD", buflen
);
764 case KRB_FORWARD_ACCEPT
: /* Forwarded credentials accepted */
765 strlcpy((char *)buf
, " FORWARD_ACCEPT", buflen
);
768 case KRB_FORWARD_REJECT
: /* Forwarded credentials rejected */
769 /* (reason might follow) */
770 strlcpy((char *)buf
, " FORWARD_REJECT", buflen
);
774 snprintf((char*)buf
, buflen
, " %d (unknown)", data
[3]);
777 for (i
= 4; i
< cnt
; i
++) {
778 snprintf((char*)buf
, buflen
, " %d", data
[i
]);
786 kerberos5_forward(Authenticator
*ap
)
793 krb5_principal principal
;
795 ret
= krb5_cc_default (context
, &ccache
);
798 printf ("KerberosV5: could not get default ccache: %s\r\n",
799 krb5_get_err_text (context
, ret
));
803 ret
= krb5_cc_get_principal (context
, ccache
, &principal
);
806 printf ("KerberosV5: could not get principal: %s\r\n",
807 krb5_get_err_text (context
, ret
));
811 memset (&creds
, 0, sizeof(creds
));
813 creds
.client
= principal
;
815 ret
= krb5_build_principal (context
,
817 strlen(principal
->realm
),
825 printf ("KerberosV5: could not get principal: %s\r\n",
826 krb5_get_err_text (context
, ret
));
830 creds
.times
.endtime
= 0;
832 memset(&flags
, 0, sizeof(flags
));
834 if (forward_flags
& OPTS_FORWARDABLE_CREDS
)
835 flags
.forwardable
= 1;
837 ret
= krb5_get_forwarded_creds (context
,
840 KDCOptions2int(flags
),
846 printf ("Kerberos V5: error getting forwarded creds: %s\r\n",
847 krb5_get_err_text (context
, ret
));
851 if(!Data(ap
, KRB_FORWARD
, out_data
.data
, out_data
.length
)) {
853 printf("Not enough room for authentication data\r\n");
856 printf("Forwarded local Kerberos V5 credentials to server\r\n");
861 /* if this was a K5 authentication try and join a PAG for the user. */
863 kerberos5_dfspag(void)
866 dfspag
= krb5_dfs_pag(context
, dfsfwd
, ticket
->client
,
873 kerberos5_set_forward(int on
)
876 forward_flags
&= ~OPTS_FORWARD_CREDS
;
878 forward_flags
|= OPTS_FORWARD_CREDS
;
880 forward_flags
^= OPTS_FORWARD_CREDS
;
885 kerberos5_set_forwardable(int on
)
888 forward_flags
&= ~OPTS_FORWARDABLE_CREDS
;
890 forward_flags
|= OPTS_FORWARDABLE_CREDS
;
892 forward_flags
^= OPTS_FORWARDABLE_CREDS
;