Fix TGS client to request renewable/forwardable/proxiable if possible
[heimdal.git] / base / data.c
bloba9f836d98793be637ddf7b0e19ce075cbb84b5c5
1 /*
2 * Copyright (c) 2011 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 "baselocl.h"
35 #include <string.h>
37 static void
38 data_dealloc(void *ptr)
40 heim_data_t d = ptr;
41 heim_octet_string *os = (heim_octet_string *)d;
42 heim_data_free_f_t *deallocp;
43 heim_data_free_f_t dealloc;
45 if (os->data == NULL)
46 return;
48 /* Possible string ref */
49 deallocp = _heim_get_isaextra(os, 0);
50 dealloc = *deallocp;
51 if (dealloc != NULL)
52 dealloc(os->data);
55 static int
56 data_cmp(void *a, void *b)
58 heim_octet_string *osa = a, *osb = b;
59 if (osa->length != osb->length)
60 return osa->length - osb->length;
61 return memcmp(osa->data, osb->data, osa->length);
64 static unsigned long
65 data_hash(void *ptr)
67 heim_octet_string *os = ptr;
68 const unsigned char *s = os->data;
70 if (os->length < 4)
71 return os->length;
72 return s[0] | (s[1] << 8) |
73 (s[os->length - 2] << 16) | (s[os->length - 1] << 24);
76 struct heim_type_data _heim_data_object = {
77 HEIM_TID_DATA,
78 "data-object",
79 NULL,
80 data_dealloc,
81 NULL,
82 data_cmp,
83 data_hash
86 /**
87 * Create a data object
89 * @param string the string to create, must be an utf8 string
91 * @return string object
94 heim_data_t
95 heim_data_create(const void *data, size_t length)
97 heim_octet_string *os;
99 os = _heim_alloc_object(&_heim_data_object, sizeof(*os) + length);
100 if (os) {
101 os->data = (uint8_t *)os + sizeof(*os);
102 os->length = length;
103 memcpy(os->data, data, length);
105 return (heim_data_t)os;
108 heim_data_t
109 heim_data_ref_create(const void *data, size_t length,
110 heim_data_free_f_t dealloc)
112 heim_octet_string *os;
113 heim_data_free_f_t *deallocp;
115 os = _heim_alloc_object(&_heim_data_object, sizeof(*os) + length);
116 if (os) {
117 os->data = (void *)data;
118 os->length = length;
119 deallocp = _heim_get_isaextra(os, 0);
120 *deallocp = dealloc;
122 return (heim_data_t)os;
127 * Return the type ID of data objects
129 * @return type id of data objects
132 heim_tid_t
133 heim_data_get_type_id(void)
135 return HEIM_TID_DATA;
139 * Get the data value of the content.
141 * @param data the data object to get the value from
143 * @return a heim_octet_string
146 const heim_octet_string *
147 heim_data_get_data(heim_data_t data)
149 /* Note that this works for data and data_ref objects */
150 return (const heim_octet_string *)data;
153 const void *
154 heim_data_get_ptr(heim_data_t data)
156 /* Note that this works for data and data_ref objects */
157 return ((const heim_octet_string *)data)->data;
160 size_t heim_data_get_length(heim_data_t data)
162 /* Note that this works for data and data_ref objects */
163 return ((const heim_octet_string *)data)->length;