s4:torture: Adapt KDC canon test to Heimdal upstream changes
[Samba.git] / source4 / heimdal / lib / krb5 / data.c
blobeafc4520b9e0f96cc0c80539b7df55b6c3f5ab02
1 /*
2 * Copyright (c) 1997 - 2007 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 #include "krb5_locl.h"
36 /**
37 * Reset the (potentially uninitialized) krb5_data structure.
39 * @param p krb5_data to reset.
41 * @ingroup krb5
44 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
45 krb5_data_zero(krb5_data *p)
47 p->length = 0;
48 p->data = NULL;
51 /**
52 * Free the content of krb5_data structure, its ok to free a zeroed
53 * structure (with memset() or krb5_data_zero()). When done, the
54 * structure will be zeroed. The same function is called
55 * krb5_free_data_contents() in MIT Kerberos.
57 * @param p krb5_data to free.
59 * @ingroup krb5
62 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
63 krb5_data_free(krb5_data *p)
65 free(p->data);
66 krb5_data_zero(p);
69 /**
70 * Free krb5_data (and its content).
72 * @param context Kerberos 5 context.
73 * @param p krb5_data to free.
75 * @ingroup krb5
78 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
79 krb5_free_data(krb5_context context,
80 krb5_data *p)
82 krb5_data_free(p);
83 free(p);
86 /**
87 * Allocate data of and krb5_data.
89 * @param p krb5_data to allocate.
90 * @param len size to allocate.
92 * @return Returns 0 to indicate success. Otherwise an kerberos et
93 * error code is returned.
95 * @ingroup krb5
98 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
99 krb5_data_alloc(krb5_data *p, int len)
101 p->data = malloc(len);
102 if(len && p->data == NULL)
103 return ENOMEM;
104 p->length = len;
105 return 0;
109 * Grow (or shrink) the content of krb5_data to a new size.
111 * @param p krb5_data to free.
112 * @param len new size.
114 * @return Returns 0 to indicate success. Otherwise an kerberos et
115 * error code is returned.
117 * @ingroup krb5
120 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
121 krb5_data_realloc(krb5_data *p, int len)
123 void *tmp;
124 tmp = realloc(p->data, len);
125 if(len && !tmp)
126 return ENOMEM;
127 p->data = tmp;
128 p->length = len;
129 return 0;
133 * Copy the data of len into the krb5_data.
135 * @param p krb5_data to copy into.
136 * @param data data to copy..
137 * @param len new size.
139 * @return Returns 0 to indicate success. Otherwise an kerberos et
140 * error code is returned.
142 * @ingroup krb5
145 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
146 krb5_data_copy(krb5_data *p, const void *data, size_t len)
148 if (len) {
149 if(krb5_data_alloc(p, len))
150 return ENOMEM;
151 memcpy(p->data, data, len);
152 } else
153 p->data = NULL;
154 p->length = len;
155 return 0;
159 * Copy the data into a newly allocated krb5_data.
161 * @param context Kerberos 5 context.
162 * @param indata the krb5_data data to copy
163 * @param outdata new krb5_date to copy too. Free with krb5_free_data().
165 * @return Returns 0 to indicate success. Otherwise an kerberos et
166 * error code is returned.
168 * @ingroup krb5
171 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
172 krb5_copy_data(krb5_context context,
173 const krb5_data *indata,
174 krb5_data **outdata)
176 krb5_error_code ret;
177 ALLOC(*outdata, 1);
178 if(*outdata == NULL)
179 return krb5_enomem(context);
180 ret = der_copy_octet_string(indata, *outdata);
181 if(ret) {
182 krb5_clear_error_message (context);
183 free(*outdata);
184 *outdata = NULL;
186 return ret;
190 * Compare to data.
192 * @param data1 krb5_data to compare
193 * @param data2 krb5_data to compare
195 * @return return the same way as memcmp(), useful when sorting.
197 * @ingroup krb5
200 KRB5_LIB_FUNCTION int KRB5_LIB_CALL
201 krb5_data_cmp(const krb5_data *data1, const krb5_data *data2)
203 if (data1->length != data2->length)
204 return data1->length - data2->length;
205 return memcmp(data1->data, data2->data, data1->length);
209 * Compare to data not exposing timing information from the checksum data
211 * @param data1 krb5_data to compare
212 * @param data2 krb5_data to compare
214 * @return returns zero for same data, otherwise non zero.
216 * @ingroup krb5
219 KRB5_LIB_FUNCTION int KRB5_LIB_CALL
220 krb5_data_ct_cmp(const krb5_data *data1, const krb5_data *data2)
222 if (data1->length != data2->length)
223 return data1->length - data2->length;
224 return ct_memcmp(data1->data, data2->data, data1->length);