2 * Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute 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 INSTITUTE 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 INSTITUTE 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
34 #define KRB5_DEPRECATED_FUNCTION(x)
36 #include "krb5_locl.h"
38 #ifndef HEIMDAL_SMALLER
40 static krb5_error_code
41 make_pa_enc_timestamp(krb5_context context
, PA_DATA
*pa
,
42 krb5_enctype etype
, krb5_keyblock
*key
)
48 EncryptedData encdata
;
54 krb5_us_timeofday (context
, &p
.patimestamp
, &usec
);
58 ASN1_MALLOC_ENCODE(PA_ENC_TS_ENC
, buf
, buf_size
, &p
, &len
, ret
);
62 krb5_abortx(context
, "internal error in ASN.1 encoder");
63 ret
= krb5_crypto_init(context
, key
, 0, &crypto
);
68 ret
= krb5_encrypt_EncryptedData(context
,
70 KRB5_KU_PA_ENC_TIMESTAMP
,
76 krb5_crypto_destroy(context
, crypto
);
80 ASN1_MALLOC_ENCODE(EncryptedData
, buf
, buf_size
, &encdata
, &len
, ret
);
81 free_EncryptedData(&encdata
);
85 krb5_abortx(context
, "internal error in ASN.1 encoder");
86 pa
->padata_type
= KRB5_PADATA_ENC_TIMESTAMP
;
87 pa
->padata_value
.length
= len
;
88 pa
->padata_value
.data
= buf
;
92 static krb5_error_code
93 add_padata(krb5_context context
,
95 krb5_principal client
,
96 krb5_key_proc key_proc
,
97 krb5_const_pointer keyseed
,
98 krb5_enctype
*enctypes
,
109 /* default to standard salt */
110 ret
= krb5_get_pw_salt (context
, client
, &salt2
);
116 enctypes
= context
->etypes
;
118 for (ep
= enctypes
; *ep
!= ETYPE_NULL
; ep
++)
121 pa2
= realloc (md
->val
, (md
->len
+ netypes
) * sizeof(*md
->val
));
123 return krb5_enomem(context
);
126 for (i
= 0; i
< netypes
; ++i
) {
129 ret
= (*key_proc
)(context
, enctypes
[i
], *salt
, keyseed
, &key
);
132 ret
= make_pa_enc_timestamp (context
, &md
->val
[md
->len
],
134 krb5_free_keyblock (context
, key
);
140 krb5_free_salt(context
, salt2
);
144 static krb5_error_code
145 init_as_req (krb5_context context
,
148 const krb5_addresses
*addrs
,
149 const krb5_enctype
*etypes
,
150 const krb5_preauthtype
*ptypes
,
151 const krb5_preauthdata
*preauth
,
152 krb5_key_proc key_proc
,
153 krb5_const_pointer keyseed
,
160 memset(a
, 0, sizeof(*a
));
163 a
->msg_type
= krb_as_req
;
164 a
->req_body
.kdc_options
= opts
;
165 a
->req_body
.cname
= malloc(sizeof(*a
->req_body
.cname
));
166 if (a
->req_body
.cname
== NULL
) {
167 ret
= krb5_enomem(context
);
170 a
->req_body
.sname
= malloc(sizeof(*a
->req_body
.sname
));
171 if (a
->req_body
.sname
== NULL
) {
172 ret
= krb5_enomem(context
);
175 ret
= _krb5_principal2principalname (a
->req_body
.cname
, creds
->client
);
178 ret
= _krb5_principal2principalname (a
->req_body
.sname
, creds
->server
);
181 ret
= copy_Realm(&creds
->client
->realm
, &a
->req_body
.realm
);
185 if(creds
->times
.starttime
) {
186 a
->req_body
.from
= malloc(sizeof(*a
->req_body
.from
));
187 if (a
->req_body
.from
== NULL
) {
188 ret
= krb5_enomem(context
);
191 *a
->req_body
.from
= creds
->times
.starttime
;
193 if(creds
->times
.endtime
){
194 ALLOC(a
->req_body
.till
, 1);
195 *a
->req_body
.till
= creds
->times
.endtime
;
197 if(creds
->times
.renew_till
){
198 a
->req_body
.rtime
= malloc(sizeof(*a
->req_body
.rtime
));
199 if (a
->req_body
.rtime
== NULL
) {
200 ret
= krb5_enomem(context
);
203 *a
->req_body
.rtime
= creds
->times
.renew_till
;
205 a
->req_body
.nonce
= nonce
;
206 ret
= _krb5_init_etype(context
,
208 &a
->req_body
.etype
.len
,
209 &a
->req_body
.etype
.val
,
215 * This means no addresses
218 if (addrs
&& addrs
->len
== 0) {
219 a
->req_body
.addresses
= NULL
;
221 a
->req_body
.addresses
= malloc(sizeof(*a
->req_body
.addresses
));
222 if (a
->req_body
.addresses
== NULL
) {
223 ret
= krb5_enomem(context
);
228 ret
= krb5_copy_addresses(context
, addrs
, a
->req_body
.addresses
);
230 ret
= krb5_get_all_client_addrs (context
, a
->req_body
.addresses
);
231 if(ret
== 0 && a
->req_body
.addresses
->len
== 0) {
232 free(a
->req_body
.addresses
);
233 a
->req_body
.addresses
= NULL
;
240 a
->req_body
.enc_authorization_data
= NULL
;
241 a
->req_body
.additional_tickets
= NULL
;
243 if(preauth
!= NULL
) {
246 if(a
->padata
== NULL
) {
247 ret
= krb5_enomem(context
);
250 a
->padata
->val
= NULL
;
252 for(i
= 0; i
< preauth
->len
; i
++) {
253 if(preauth
->val
[i
].type
== KRB5_PADATA_ENC_TIMESTAMP
){
256 for(j
= 0; j
< preauth
->val
[i
].info
.len
; j
++) {
257 krb5_salt
*sp
= &salt
;
258 if(preauth
->val
[i
].info
.val
[j
].salttype
)
259 salt
.salttype
= *preauth
->val
[i
].info
.val
[j
].salttype
;
261 salt
.salttype
= KRB5_PW_SALT
;
262 if(preauth
->val
[i
].info
.val
[j
].salt
)
263 salt
.saltvalue
= *preauth
->val
[i
].info
.val
[j
].salt
;
265 if(salt
.salttype
== KRB5_PW_SALT
)
268 krb5_data_zero(&salt
.saltvalue
);
269 ret
= add_padata(context
, a
->padata
, creds
->client
,
271 &preauth
->val
[i
].info
.val
[j
].etype
, 1,
279 /* not sure this is the way to use `ptypes' */
280 if (ptypes
== NULL
|| *ptypes
== KRB5_PADATA_NONE
)
282 else if (*ptypes
== KRB5_PADATA_ENC_TIMESTAMP
) {
284 if (a
->padata
== NULL
) {
285 ret
= krb5_enomem(context
);
289 a
->padata
->val
= NULL
;
291 /* make a v5 salted pa-data */
292 add_padata(context
, a
->padata
, creds
->client
,
293 key_proc
, keyseed
, a
->req_body
.etype
.val
,
294 a
->req_body
.etype
.len
, NULL
);
296 /* make a v4 salted pa-data */
297 salt
.salttype
= KRB5_PW_SALT
;
298 krb5_data_zero(&salt
.saltvalue
);
299 add_padata(context
, a
->padata
, creds
->client
,
300 key_proc
, keyseed
, a
->req_body
.etype
.val
,
301 a
->req_body
.etype
.len
, &salt
);
303 ret
= KRB5_PREAUTH_BAD_TYPE
;
304 krb5_set_error_message (context
, ret
,
305 N_("pre-auth type %d not supported", ""),
316 set_ptypes(krb5_context context
,
318 const krb5_preauthtype
**ptypes
,
319 krb5_preauthdata
**preauth
)
321 static krb5_preauthdata preauth2
;
322 static const krb5_preauthtype ptypes2
[] = {
323 KRB5_PADATA_ENC_TIMESTAMP
, KRB5_PADATA_NONE
329 decode_METHOD_DATA(error
->e_data
->data
,
330 error
->e_data
->length
,
333 for(i
= 0; i
< md
.len
; i
++){
334 switch(md
.val
[i
].padata_type
){
335 case KRB5_PADATA_ENC_TIMESTAMP
:
338 case KRB5_PADATA_ETYPE_INFO
:
339 *preauth
= &preauth2
;
340 ALLOC_SEQ(*preauth
, 1);
341 (*preauth
)->val
[0].type
= KRB5_PADATA_ENC_TIMESTAMP
;
342 decode_ETYPE_INFO(md
.val
[i
].padata_value
.data
,
343 md
.val
[i
].padata_value
.length
,
344 &(*preauth
)->val
[0].info
,
351 free_METHOD_DATA(&md
);
358 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
359 krb5_get_in_cred(krb5_context context
,
361 const krb5_addresses
*addrs
,
362 const krb5_enctype
*etypes
,
363 const krb5_preauthtype
*ptypes
,
364 const krb5_preauthdata
*preauth
,
365 krb5_key_proc key_proc
,
366 krb5_const_pointer keyseed
,
367 krb5_decrypt_proc decrypt_proc
,
368 krb5_const_pointer decryptarg
,
370 krb5_kdc_rep
*ret_as_reply
)
371 KRB5_DEPRECATED_FUNCTION("Use X instead")
384 krb5_preauthdata
*my_preauth
= NULL
;
388 opts
= int2KDCOptions(options
);
390 krb5_generate_random_block (&nonce
, sizeof(nonce
));
395 ret
= init_as_req (context
,
407 free_ETYPE_INFO(&my_preauth
->val
[0].info
);
408 free (my_preauth
->val
);
414 ASN1_MALLOC_ENCODE(AS_REQ
, req
.data
, req
.length
, &a
, &len
, ret
);
418 if(len
!= req
.length
)
419 krb5_abortx(context
, "internal error in ASN.1 encoder");
421 ret
= krb5_sendto_kdc (context
, &req
, &creds
->client
->realm
, &resp
);
422 krb5_data_free(&req
);
426 memset (&rep
, 0, sizeof(rep
));
427 ret
= decode_AS_REP(resp
.data
, resp
.length
, &rep
.kdc_rep
, &size
);
429 /* let's try to parse it as a KRB-ERROR */
433 ret2
= krb5_rd_error(context
, &resp
, &error
);
434 if(ret2
&& resp
.data
&& ((char*)resp
.data
)[0] == 4)
435 ret
= KRB5KRB_AP_ERR_V4_REPLY
;
436 krb5_data_free(&resp
);
438 ret
= krb5_error_from_rd_error(context
, &error
, creds
);
439 /* if no preauth was set and KDC requires it, give it
441 if (!ptypes
&& !preauth
442 && ret
== KRB5KDC_ERR_PREAUTH_REQUIRED
443 && set_ptypes(context
, &error
, &ptypes
, &my_preauth
)) {
445 preauth
= my_preauth
;
446 krb5_free_error_contents(context
, &error
);
447 krb5_clear_error_message(context
);
451 ret_as_reply
->error
= error
;
453 free_KRB_ERROR (&error
);
458 krb5_data_free(&resp
);
462 etype
= rep
.kdc_rep
.enc_part
.etype
;
463 if(rep
.kdc_rep
.padata
){
465 pa
= krb5_find_padata(rep
.kdc_rep
.padata
->val
, rep
.kdc_rep
.padata
->len
,
466 KRB5_PADATA_PW_SALT
, &i
);
469 pa
= krb5_find_padata(rep
.kdc_rep
.padata
->val
,
470 rep
.kdc_rep
.padata
->len
,
471 KRB5_PADATA_AFS3_SALT
, &i
);
475 salt
.salttype
= (krb5_salttype
)pa
->padata_type
;
476 salt
.saltvalue
= pa
->padata_value
;
478 ret
= (*key_proc
)(context
, etype
, salt
, keyseed
, &key
);
480 /* make a v5 salted pa-data */
481 ret
= krb5_get_pw_salt (context
, creds
->client
, &salt
);
485 ret
= (*key_proc
)(context
, etype
, salt
, keyseed
, &key
);
486 krb5_free_salt(context
, salt
);
492 unsigned flags
= EXTRACT_TICKET_TIMESYNC
;
493 if (opts
.request_anonymous
)
494 flags
|= EXTRACT_TICKET_ALLOW_SERVER_MISMATCH
| EXTRACT_TICKET_MATCH_ANON
;
496 ret
= _krb5_extract_ticket(context
,
501 KRB5_KU_AS_REP_ENC_PART
,
509 memset (key
->keyvalue
.data
, 0, key
->keyvalue
.length
);
510 krb5_free_keyblock_contents (context
, key
);
514 if (ret
== 0 && ret_as_reply
)
517 krb5_free_kdc_rep (context
, &rep
);
521 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
522 krb5_get_in_tkt(krb5_context context
,
524 const krb5_addresses
*addrs
,
525 const krb5_enctype
*etypes
,
526 const krb5_preauthtype
*ptypes
,
527 krb5_key_proc key_proc
,
528 krb5_const_pointer keyseed
,
529 krb5_decrypt_proc decrypt_proc
,
530 krb5_const_pointer decryptarg
,
533 krb5_kdc_rep
*ret_as_reply
)
534 KRB5_DEPRECATED_FUNCTION("Use X instead")
538 ret
= krb5_get_in_cred (context
,
553 ret
= krb5_cc_store_cred (context
, ccache
, creds
);
557 #endif /* HEIMDAL_SMALLER */