libtommath: Fix possible integer overflow CVE-2023-36328
[heimdal.git] / lib / gssapi / krb5 / import_name.c
blobae24e374d472f2990e869ffab67d9c922512e715
1 /*
2 * Copyright (c) 1997 - 2003 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 "gsskrb5_locl.h"
36 static OM_uint32
37 parse_krb5_name (OM_uint32 *minor_status,
38 krb5_context context,
39 const char *name,
40 gss_name_t *output_name)
42 krb5_principal princ;
43 krb5_error_code kerr;
45 kerr = krb5_parse_name (context, name, &princ);
47 if (kerr == 0) {
48 *output_name = (gss_name_t)princ;
49 return GSS_S_COMPLETE;
51 *minor_status = kerr;
53 if (kerr == KRB5_PARSE_ILLCHAR || kerr == KRB5_PARSE_MALFORMED)
54 return GSS_S_BAD_NAME;
56 return GSS_S_FAILURE;
59 static OM_uint32
60 import_krb5_name (OM_uint32 *minor_status,
61 krb5_context context,
62 const gss_buffer_t input_name_buffer,
63 gss_name_t *output_name)
65 OM_uint32 ret;
66 char *tmp;
68 tmp = malloc (input_name_buffer->length + 1);
69 if (tmp == NULL) {
70 *minor_status = ENOMEM;
71 return GSS_S_FAILURE;
73 memcpy (tmp,
74 input_name_buffer->value,
75 input_name_buffer->length);
76 tmp[input_name_buffer->length] = '\0';
78 ret = parse_krb5_name(minor_status, context, tmp, output_name);
79 free(tmp);
81 return ret;
84 OM_uint32
85 _gsskrb5_canon_name(OM_uint32 *minor_status, krb5_context context,
86 gss_const_name_t targetname, krb5_principal *out)
88 krb5_const_principal p = (krb5_const_principal)targetname;
89 krb5_error_code ret;
90 char *hostname = NULL, *service;
91 int type;
92 const char *comp;
94 *minor_status = 0;
96 /* If its not a hostname */
97 type = krb5_principal_get_type(context, p);
98 comp = krb5_principal_get_comp_string(context, p, 0);
99 if (type == KRB5_NT_SRV_HST || type == KRB5_NT_SRV_HST_NEEDS_CANON ||
100 (type == KRB5_NT_UNKNOWN && comp != NULL && strcmp(comp, "host") == 0)) {
101 if (p->name.name_string.len == 0)
102 return GSS_S_BAD_NAME;
103 else if (p->name.name_string.len > 1)
104 hostname = p->name.name_string.val[1];
106 service = p->name.name_string.val[0];
108 ret = krb5_sname_to_principal(context,
109 hostname,
110 service,
111 KRB5_NT_SRV_HST,
112 out);
113 } else {
114 ret = krb5_copy_principal(context, p, out);
117 if (ret) {
118 *minor_status = ret;
119 return GSS_S_FAILURE;
122 return 0;
126 static OM_uint32
127 import_hostbased_name(OM_uint32 *minor_status,
128 krb5_context context,
129 const gss_buffer_t input_name_buffer,
130 gss_name_t *output_name)
132 krb5_principal princ = NULL;
133 krb5_error_code kerr;
134 char *tmp, *p, *host = NULL;
136 tmp = malloc (input_name_buffer->length + 1);
137 if (tmp == NULL) {
138 *minor_status = ENOMEM;
139 return GSS_S_FAILURE;
141 memcpy (tmp,
142 input_name_buffer->value,
143 input_name_buffer->length);
144 tmp[input_name_buffer->length] = '\0';
146 p = strchr (tmp, '@');
147 if (p != NULL) {
148 *p = '\0';
149 host = p + 1;
152 kerr = krb5_make_principal(context, &princ, "", tmp, host, NULL);
153 free (tmp);
154 *minor_status = kerr;
155 if (kerr == KRB5_PARSE_ILLCHAR || kerr == KRB5_PARSE_MALFORMED)
156 return GSS_S_BAD_NAME;
157 else if (kerr)
158 return GSS_S_FAILURE;
160 krb5_principal_set_type(context, princ, KRB5_NT_SRV_HST);
161 *output_name = (gss_name_t)princ;
163 return 0;
166 static OM_uint32
167 import_export_name (OM_uint32 *minor_status,
168 krb5_context context,
169 const gss_buffer_t input_name_buffer,
170 gss_name_t *output_name)
172 CompositePrincipal *composite;
173 unsigned char *p;
174 uint32_t length;
175 size_t sz;
176 OM_uint32 ret;
177 int is_composite;
178 char *name;
180 if (input_name_buffer->length < 10 + GSS_KRB5_MECHANISM->length)
181 return GSS_S_BAD_NAME;
183 /* TOK, MECH_OID_LEN, DER(MECH_OID), NAME_LEN, NAME */
185 p = input_name_buffer->value;
187 if (p[0] != 0x04 ||
188 (p[1] != 0x01 && p[1] != 0x02) ||
189 p[2] != 0x00 ||
190 p[3] != GSS_KRB5_MECHANISM->length + 2 ||
191 p[4] != 0x06 ||
192 p[5] != GSS_KRB5_MECHANISM->length ||
193 memcmp(&p[6], GSS_KRB5_MECHANISM->elements,
194 GSS_KRB5_MECHANISM->length) != 0)
195 return GSS_S_BAD_NAME;
197 is_composite = p[1] == 0x02;
199 p += 6 + GSS_KRB5_MECHANISM->length;
201 length = p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3];
202 p += 4;
204 if (length > input_name_buffer->length - 10 - GSS_KRB5_MECHANISM->length)
205 return GSS_S_BAD_NAME;
207 if (is_composite) {
208 if ((composite = calloc(1, sizeof(*composite))) == NULL) {
209 *minor_status = ENOMEM;
210 return GSS_S_FAILURE;
213 ret = decode_CompositePrincipal(p, length, composite, &sz);
214 if (ret) {
215 *minor_status = ret;
216 return GSS_S_FAILURE;
218 if (sz != length) {
219 free_CompositePrincipal(composite);
220 free(composite);
221 *minor_status = EINVAL;
222 return GSS_S_FAILURE;
225 *output_name = (void *)composite;
226 return GSS_S_COMPLETE;
229 name = malloc(length + 1);
230 if (name == NULL) {
231 *minor_status = ENOMEM;
232 return GSS_S_FAILURE;
234 memcpy(name, p, length);
235 name[length] = '\0';
237 ret = parse_krb5_name(minor_status, context, name, output_name);
238 free(name);
239 return ret;
242 OM_uint32 GSSAPI_CALLCONV _gsskrb5_import_name
243 (OM_uint32 * minor_status,
244 const gss_buffer_t input_name_buffer,
245 const gss_OID input_name_type,
246 gss_name_t * output_name
249 krb5_context context;
251 *minor_status = 0;
252 *output_name = GSS_C_NO_NAME;
254 GSSAPI_KRB5_INIT (&context);
256 if (gss_oid_equal(input_name_type, GSS_C_NT_HOSTBASED_SERVICE) ||
257 gss_oid_equal(input_name_type, GSS_C_NT_HOSTBASED_SERVICE_X))
258 return import_hostbased_name (minor_status,
259 context,
260 input_name_buffer,
261 output_name);
262 else if (input_name_type == GSS_C_NO_OID
263 || gss_oid_equal(input_name_type, GSS_C_NT_USER_NAME)
264 || gss_oid_equal(input_name_type, GSS_KRB5_NT_PRINCIPAL_NAME))
265 /* default printable syntax */
266 return import_krb5_name (minor_status,
267 context,
268 input_name_buffer,
269 output_name);
270 else if (gss_oid_equal(input_name_type, GSS_C_NT_EXPORT_NAME) ||
271 gss_oid_equal(input_name_type, GSS_C_NT_COMPOSITE_EXPORT)) {
272 return import_export_name(minor_status,
273 context,
274 input_name_buffer,
275 output_name);
276 } else {
277 *minor_status = 0;
278 return GSS_S_BAD_NAMETYPE;