660d977bb4251fd71dd4a306a3fbaa81898ee40b
[platform/upstream/krb5.git] / src / lib / krb5 / krb / copy_tick.c
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /* lib/krb5/krb/copy_tick.c */
3 /*
4  * Copyright 1990,1991 by the Massachusetts Institute of Technology.
5  * All Rights Reserved.
6  *
7  * Export of this software from the United States of America may
8  *   require a specific license from the United States Government.
9  *   It is the responsibility of any person or organization contemplating
10  *   export to obtain such a license before exporting.
11  *
12  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
13  * distribute this software and its documentation for any purpose and
14  * without fee is hereby granted, provided that the above copyright
15  * notice appear in all copies and that both that copyright notice and
16  * this permission notice appear in supporting documentation, and that
17  * the name of M.I.T. not be used in advertising or publicity pertaining
18  * to distribution of the software without specific, written prior
19  * permission.  Furthermore if you modify this software you must label
20  * your software as modified software and not distribute it in such a
21  * fashion that it might be confused with the original M.I.T. software.
22  * M.I.T. makes no representations about the suitability of
23  * this software for any purpose.  It is provided "as is" without express
24  * or implied warranty.
25  */
26
27 #include "k5-int.h"
28
29 static krb5_error_code
30 copy_enc_tkt_part(krb5_context context, const krb5_enc_tkt_part *partfrom,
31                   krb5_enc_tkt_part **partto)
32 {
33     krb5_error_code retval;
34     krb5_enc_tkt_part *tempto;
35
36     if (!(tempto = (krb5_enc_tkt_part *)malloc(sizeof(*tempto))))
37         return ENOMEM;
38     *tempto = *partfrom;
39     retval = krb5_copy_keyblock(context, partfrom->session,
40                                 &tempto->session);
41     if (retval) {
42         free(tempto);
43         return retval;
44     }
45     retval = krb5_copy_principal(context, partfrom->client, &tempto->client);
46     if (retval) {
47         krb5_free_keyblock(context, tempto->session);
48         free(tempto);
49         return retval;
50     }
51     tempto->transited = partfrom->transited;
52     if (tempto->transited.tr_contents.length == 0) {
53         tempto->transited.tr_contents.data = 0;
54     } else {
55         tempto->transited.tr_contents.data =
56             k5memdup(partfrom->transited.tr_contents.data,
57                      partfrom->transited.tr_contents.length, &retval);
58         if (!tempto->transited.tr_contents.data) {
59             krb5_free_principal(context, tempto->client);
60             krb5_free_keyblock(context, tempto->session);
61             free(tempto);
62             return ENOMEM;
63         }
64     }
65
66     retval = krb5_copy_addresses(context, partfrom->caddrs, &tempto->caddrs);
67     if (retval) {
68         free(tempto->transited.tr_contents.data);
69         krb5_free_principal(context, tempto->client);
70         krb5_free_keyblock(context, tempto->session);
71         free(tempto);
72         return retval;
73     }
74     if (partfrom->authorization_data) {
75         retval = krb5_copy_authdata(context, partfrom->authorization_data,
76                                     &tempto->authorization_data);
77         if (retval) {
78             krb5_free_addresses(context, tempto->caddrs);
79             free(tempto->transited.tr_contents.data);
80             krb5_free_principal(context, tempto->client);
81             krb5_free_keyblock(context, tempto->session);
82             free(tempto);
83             return retval;
84         }
85     }
86     *partto = tempto;
87     return 0;
88 }
89
90 krb5_error_code KRB5_CALLCONV
91 krb5_copy_ticket(krb5_context context, const krb5_ticket *from, krb5_ticket **pto)
92 {
93     krb5_error_code retval;
94     krb5_ticket *tempto;
95     krb5_data *scratch;
96
97     if (!(tempto = (krb5_ticket *)malloc(sizeof(*tempto))))
98         return ENOMEM;
99     *tempto = *from;
100     retval = krb5_copy_principal(context, from->server, &tempto->server);
101     if (retval) {
102         free(tempto);
103         return retval;
104     }
105     retval = krb5_copy_data(context, &from->enc_part.ciphertext, &scratch);
106     if (retval) {
107         krb5_free_principal(context, tempto->server);
108         free(tempto);
109         return retval;
110     }
111     tempto->enc_part.ciphertext = *scratch;
112     free(scratch);
113     retval = copy_enc_tkt_part(context, from->enc_part2, &tempto->enc_part2);
114     if (retval) {
115         free(tempto->enc_part.ciphertext.data);
116         krb5_free_principal(context, tempto->server);
117         free(tempto);
118         return retval;
119     }
120     *pto = tempto;
121     return 0;
122 }