Move kadmin and ktutil to /usr/bin.
[heimdal.git] / lib / krb5 / get_in_tkt.c
blob471b900a0b97833cca0fd86b91ff72e2c66d4cab
1 /*
2 * Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
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
31 * SUCH DAMAGE.
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)
44 PA_ENC_TS_ENC p;
45 unsigned char *buf;
46 size_t buf_size;
47 size_t len = 0;
48 EncryptedData encdata;
49 krb5_error_code ret;
50 int32_t usec;
51 int usec2;
52 krb5_crypto crypto;
54 krb5_us_timeofday (context, &p.patimestamp, &usec);
55 usec2 = usec;
56 p.pausec = &usec2;
58 ASN1_MALLOC_ENCODE(PA_ENC_TS_ENC, buf, buf_size, &p, &len, ret);
59 if (ret)
60 return ret;
61 if(buf_size != len)
62 krb5_abortx(context, "internal error in ASN.1 encoder");
63 ret = krb5_crypto_init(context, key, 0, &crypto);
64 if (ret) {
65 free(buf);
66 return ret;
68 ret = krb5_encrypt_EncryptedData(context,
69 crypto,
70 KRB5_KU_PA_ENC_TIMESTAMP,
71 buf,
72 len,
74 &encdata);
75 free(buf);
76 krb5_crypto_destroy(context, crypto);
77 if (ret)
78 return ret;
80 ASN1_MALLOC_ENCODE(EncryptedData, buf, buf_size, &encdata, &len, ret);
81 free_EncryptedData(&encdata);
82 if (ret)
83 return ret;
84 if(buf_size != len)
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;
89 return 0;
92 static krb5_error_code
93 add_padata(krb5_context context,
94 METHOD_DATA *md,
95 krb5_principal client,
96 krb5_key_proc key_proc,
97 krb5_const_pointer keyseed,
98 krb5_enctype *enctypes,
99 unsigned netypes,
100 krb5_salt *salt)
102 krb5_error_code ret;
103 PA_DATA *pa2;
104 krb5_salt salt2;
105 krb5_enctype *ep;
106 size_t i;
108 if(salt == NULL) {
109 /* default to standard salt */
110 ret = krb5_get_pw_salt (context, client, &salt2);
111 if (ret)
112 return ret;
113 salt = &salt2;
115 if (!enctypes) {
116 enctypes = context->etypes;
117 netypes = 0;
118 for (ep = enctypes; *ep != (krb5_enctype)ETYPE_NULL; ep++)
119 netypes++;
121 pa2 = realloc (md->val, (md->len + netypes) * sizeof(*md->val));
122 if (pa2 == NULL)
123 return krb5_enomem(context);
124 md->val = pa2;
126 for (i = 0; i < netypes; ++i) {
127 krb5_keyblock *key;
129 ret = (*key_proc)(context, enctypes[i], *salt, keyseed, &key);
130 if (ret)
131 continue;
132 ret = make_pa_enc_timestamp (context, &md->val[md->len],
133 enctypes[i], key);
134 krb5_free_keyblock (context, key);
135 if (ret)
136 return ret;
137 ++md->len;
139 if(salt == &salt2)
140 krb5_free_salt(context, salt2);
141 return 0;
144 static krb5_error_code
145 init_as_req (krb5_context context,
146 KDCOptions opts,
147 krb5_creds *creds,
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,
154 unsigned nonce,
155 AS_REQ *a)
157 krb5_error_code ret;
158 krb5_salt salt;
160 memset(a, 0, sizeof(*a));
162 a->pvno = 5;
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);
168 goto fail;
170 a->req_body.sname = malloc(sizeof(*a->req_body.sname));
171 if (a->req_body.sname == NULL) {
172 ret = krb5_enomem(context);
173 goto fail;
175 ret = _krb5_principal2principalname (a->req_body.cname, creds->client);
176 if (ret)
177 goto fail;
178 ret = _krb5_principal2principalname (a->req_body.sname, creds->server);
179 if (ret)
180 goto fail;
181 ret = copy_Realm(&creds->client->realm, &a->req_body.realm);
182 if (ret)
183 goto fail;
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);
189 goto fail;
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);
201 goto fail;
203 *a->req_body.rtime = creds->times.renew_till;
205 a->req_body.nonce = nonce;
206 ret = _krb5_init_etype(context,
207 KRB5_PDU_AS_REQUEST,
208 &a->req_body.etype.len,
209 &a->req_body.etype.val,
210 etypes);
211 if (ret)
212 goto fail;
215 * This means no addresses
218 if (addrs && addrs->len == 0) {
219 a->req_body.addresses = NULL;
220 } else {
221 a->req_body.addresses = malloc(sizeof(*a->req_body.addresses));
222 if (a->req_body.addresses == NULL) {
223 ret = krb5_enomem(context);
224 goto fail;
227 if (addrs)
228 ret = krb5_copy_addresses(context, addrs, a->req_body.addresses);
229 else {
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;
236 if (ret)
237 return ret;
240 a->req_body.enc_authorization_data = NULL;
241 a->req_body.additional_tickets = NULL;
243 if(preauth != NULL) {
244 size_t i;
245 ALLOC(a->padata, 1);
246 if(a->padata == NULL) {
247 ret = krb5_enomem(context);
248 goto fail;
250 a->padata->val = NULL;
251 a->padata->len = 0;
252 for(i = 0; i < preauth->len; i++) {
253 if(preauth->val[i].type == KRB5_PADATA_ENC_TIMESTAMP){
254 size_t j;
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;
260 else
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;
264 else
265 if(salt.salttype == KRB5_PW_SALT)
266 sp = NULL;
267 else
268 krb5_data_zero(&salt.saltvalue);
269 ret = add_padata(context, a->padata, creds->client,
270 key_proc, keyseed,
271 &preauth->val[i].info.val[j].etype, 1,
272 sp);
273 if (ret == 0)
274 break;
278 } else
279 /* not sure this is the way to use `ptypes' */
280 if (ptypes == NULL || *ptypes == KRB5_PADATA_NONE)
281 a->padata = NULL;
282 else if (*ptypes == KRB5_PADATA_ENC_TIMESTAMP) {
283 ALLOC(a->padata, 1);
284 if (a->padata == NULL) {
285 ret = krb5_enomem(context);
286 goto fail;
288 a->padata->len = 0;
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);
302 } else {
303 ret = KRB5_PREAUTH_BAD_TYPE;
304 krb5_set_error_message (context, ret,
305 N_("pre-auth type %d not supported", ""),
306 *ptypes);
307 goto fail;
309 return 0;
310 fail:
311 free_AS_REQ(a);
312 return ret;
315 static int
316 set_ptypes(krb5_context context,
317 KRB_ERROR *error,
318 const krb5_preauthtype **ptypes,
319 krb5_preauthdata **preauth)
321 static krb5_preauthdata preauth2;
322 static krb5_preauthtype ptypes2[] = { KRB5_PADATA_ENC_TIMESTAMP, KRB5_PADATA_NONE };
324 if(error->e_data) {
325 METHOD_DATA md;
326 size_t i;
327 decode_METHOD_DATA(error->e_data->data,
328 error->e_data->length,
329 &md,
330 NULL);
331 for(i = 0; i < md.len; i++){
332 switch(md.val[i].padata_type){
333 case KRB5_PADATA_ENC_TIMESTAMP:
334 *ptypes = ptypes2;
335 break;
336 case KRB5_PADATA_ETYPE_INFO:
337 *preauth = &preauth2;
338 ALLOC_SEQ(*preauth, 1);
339 (*preauth)->val[0].type = KRB5_PADATA_ENC_TIMESTAMP;
340 decode_ETYPE_INFO(md.val[i].padata_value.data,
341 md.val[i].padata_value.length,
342 &(*preauth)->val[0].info,
343 NULL);
344 break;
345 default:
346 break;
349 free_METHOD_DATA(&md);
350 } else {
351 *ptypes = ptypes2;
353 return(1);
356 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
357 krb5_get_in_cred(krb5_context context,
358 krb5_flags options,
359 const krb5_addresses *addrs,
360 const krb5_enctype *etypes,
361 const krb5_preauthtype *ptypes,
362 const krb5_preauthdata *preauth,
363 krb5_key_proc key_proc,
364 krb5_const_pointer keyseed,
365 krb5_decrypt_proc decrypt_proc,
366 krb5_const_pointer decryptarg,
367 krb5_creds *creds,
368 krb5_kdc_rep *ret_as_reply)
369 KRB5_DEPRECATED_FUNCTION("Use X instead")
371 krb5_error_code ret;
372 AS_REQ a;
373 krb5_kdc_rep rep;
374 krb5_data req, resp;
375 size_t len = 0;
376 krb5_salt salt;
377 krb5_keyblock *key;
378 size_t size;
379 KDCOptions opts;
380 PA_DATA *pa;
381 krb5_enctype etype;
382 krb5_preauthdata *my_preauth = NULL;
383 unsigned nonce;
384 int done;
386 opts = int2KDCOptions(options);
388 krb5_generate_random_block (&nonce, sizeof(nonce));
389 nonce &= 0xffffffff;
391 do {
392 done = 1;
393 ret = init_as_req (context,
394 opts,
395 creds,
396 addrs,
397 etypes,
398 ptypes,
399 preauth,
400 key_proc,
401 keyseed,
402 nonce,
403 &a);
404 if (my_preauth) {
405 free_ETYPE_INFO(&my_preauth->val[0].info);
406 free (my_preauth->val);
407 my_preauth = NULL;
409 if (ret)
410 return ret;
412 ASN1_MALLOC_ENCODE(AS_REQ, req.data, req.length, &a, &len, ret);
413 free_AS_REQ(&a);
414 if (ret)
415 return ret;
416 if(len != req.length)
417 krb5_abortx(context, "internal error in ASN.1 encoder");
419 ret = krb5_sendto_kdc (context, &req, &creds->client->realm, &resp);
420 krb5_data_free(&req);
421 if (ret)
422 return ret;
424 memset (&rep, 0, sizeof(rep));
425 ret = decode_AS_REP(resp.data, resp.length, &rep.kdc_rep, &size);
426 if(ret) {
427 /* let's try to parse it as a KRB-ERROR */
428 KRB_ERROR error;
429 int ret2;
431 ret2 = krb5_rd_error(context, &resp, &error);
432 if(ret2 && resp.data && ((char*)resp.data)[0] == 4)
433 ret = KRB5KRB_AP_ERR_V4_REPLY;
434 krb5_data_free(&resp);
435 if (ret2 == 0) {
436 ret = krb5_error_from_rd_error(context, &error, creds);
437 /* if no preauth was set and KDC requires it, give it
438 one more try */
439 if (!ptypes && !preauth
440 && ret == KRB5KDC_ERR_PREAUTH_REQUIRED
441 #if 0
442 || ret == KRB5KDC_ERR_BADOPTION
443 #endif
444 && set_ptypes(context, &error, &ptypes, &my_preauth)) {
445 done = 0;
446 preauth = my_preauth;
447 krb5_free_error_contents(context, &error);
448 krb5_clear_error_message(context);
449 continue;
451 if(ret_as_reply)
452 ret_as_reply->error = error;
453 else
454 free_KRB_ERROR (&error);
455 return ret;
457 return ret;
459 krb5_data_free(&resp);
460 } while(!done);
462 pa = NULL;
463 etype = rep.kdc_rep.enc_part.etype;
464 if(rep.kdc_rep.padata){
465 int i = 0;
466 pa = krb5_find_padata(rep.kdc_rep.padata->val, rep.kdc_rep.padata->len,
467 KRB5_PADATA_PW_SALT, &i);
468 if(pa == NULL) {
469 i = 0;
470 pa = krb5_find_padata(rep.kdc_rep.padata->val,
471 rep.kdc_rep.padata->len,
472 KRB5_PADATA_AFS3_SALT, &i);
475 if(pa) {
476 salt.salttype = (krb5_salttype)pa->padata_type;
477 salt.saltvalue = pa->padata_value;
479 ret = (*key_proc)(context, etype, salt, keyseed, &key);
480 } else {
481 /* make a v5 salted pa-data */
482 ret = krb5_get_pw_salt (context, creds->client, &salt);
484 if (ret)
485 goto out;
486 ret = (*key_proc)(context, etype, salt, keyseed, &key);
487 krb5_free_salt(context, salt);
489 if (ret)
490 goto out;
493 unsigned flags = EXTRACT_TICKET_TIMESYNC;
494 if (opts.request_anonymous)
495 flags |= EXTRACT_TICKET_ALLOW_SERVER_MISMATCH;
497 ret = _krb5_extract_ticket(context,
498 &rep,
499 creds,
500 key,
501 keyseed,
502 KRB5_KU_AS_REP_ENC_PART,
503 NULL,
504 nonce,
505 flags,
506 NULL,
507 decrypt_proc,
508 decryptarg);
510 memset (key->keyvalue.data, 0, key->keyvalue.length);
511 krb5_free_keyblock_contents (context, key);
512 free (key);
514 out:
515 if (ret == 0 && ret_as_reply)
516 *ret_as_reply = rep;
517 else
518 krb5_free_kdc_rep (context, &rep);
519 return ret;
522 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
523 krb5_get_in_tkt(krb5_context context,
524 krb5_flags options,
525 const krb5_addresses *addrs,
526 const krb5_enctype *etypes,
527 const krb5_preauthtype *ptypes,
528 krb5_key_proc key_proc,
529 krb5_const_pointer keyseed,
530 krb5_decrypt_proc decrypt_proc,
531 krb5_const_pointer decryptarg,
532 krb5_creds *creds,
533 krb5_ccache ccache,
534 krb5_kdc_rep *ret_as_reply)
535 KRB5_DEPRECATED_FUNCTION("Use X instead")
537 krb5_error_code ret;
539 ret = krb5_get_in_cred (context,
540 options,
541 addrs,
542 etypes,
543 ptypes,
544 NULL,
545 key_proc,
546 keyseed,
547 decrypt_proc,
548 decryptarg,
549 creds,
550 ret_as_reply);
551 if(ret)
552 return ret;
553 if (ccache)
554 ret = krb5_cc_store_cred (context, ccache, creds);
555 return ret;
558 #endif /* HEIMDAL_SMALLER */