xref: /freebsd/lib/libgssapi/gss_add_oid_set_member.c (revision 5e53a4f90f82c4345f277dd87cc9292f26e04a29)
1c0b9f4feSDoug Rabson /*-
2*5e53a4f9SPedro F. Giffuni  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3*5e53a4f9SPedro F. Giffuni  *
4c0b9f4feSDoug Rabson  * Copyright (c) 2005 Doug Rabson
5c0b9f4feSDoug Rabson  * All rights reserved.
6c0b9f4feSDoug Rabson  *
7c0b9f4feSDoug Rabson  * Redistribution and use in source and binary forms, with or without
8c0b9f4feSDoug Rabson  * modification, are permitted provided that the following conditions
9c0b9f4feSDoug Rabson  * are met:
10c0b9f4feSDoug Rabson  * 1. Redistributions of source code must retain the above copyright
11c0b9f4feSDoug Rabson  *    notice, this list of conditions and the following disclaimer.
12c0b9f4feSDoug Rabson  * 2. Redistributions in binary form must reproduce the above copyright
13c0b9f4feSDoug Rabson  *    notice, this list of conditions and the following disclaimer in the
14c0b9f4feSDoug Rabson  *    documentation and/or other materials provided with the distribution.
15c0b9f4feSDoug Rabson  *
16c0b9f4feSDoug Rabson  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17c0b9f4feSDoug Rabson  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18c0b9f4feSDoug Rabson  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19c0b9f4feSDoug Rabson  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20c0b9f4feSDoug Rabson  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21c0b9f4feSDoug Rabson  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22c0b9f4feSDoug Rabson  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23c0b9f4feSDoug Rabson  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24c0b9f4feSDoug Rabson  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25c0b9f4feSDoug Rabson  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26c0b9f4feSDoug Rabson  * SUCH DAMAGE.
27c0b9f4feSDoug Rabson  *
28c0b9f4feSDoug Rabson  *	$FreeBSD$
29c0b9f4feSDoug Rabson  */
30c0b9f4feSDoug Rabson 
31c0b9f4feSDoug Rabson #include <gssapi/gssapi.h>
32c0b9f4feSDoug Rabson #include <stdlib.h>
333aebdb89SAlexander Kabaev #include <string.h>
34c0b9f4feSDoug Rabson #include <errno.h>
35c0b9f4feSDoug Rabson 
36c0b9f4feSDoug Rabson OM_uint32
37c0b9f4feSDoug Rabson gss_add_oid_set_member(OM_uint32 *minor_status,
38c0b9f4feSDoug Rabson     const gss_OID member_oid,
39c0b9f4feSDoug Rabson     gss_OID_set *oid_set)
40c0b9f4feSDoug Rabson {
41c0b9f4feSDoug Rabson 	OM_uint32 major_status;
42c0b9f4feSDoug Rabson 	gss_OID_set set = *oid_set;
43c0b9f4feSDoug Rabson 	gss_OID new_elements;
44c0b9f4feSDoug Rabson 	gss_OID new_oid;
45c0b9f4feSDoug Rabson 	int t;
46c0b9f4feSDoug Rabson 
47c0b9f4feSDoug Rabson 	*minor_status = 0;
48c0b9f4feSDoug Rabson 
49c0b9f4feSDoug Rabson 	major_status = gss_test_oid_set_member(minor_status,
50c0b9f4feSDoug Rabson 	    member_oid, *oid_set, &t);
51c0b9f4feSDoug Rabson 	if (major_status)
52c0b9f4feSDoug Rabson 		return (major_status);
53c0b9f4feSDoug Rabson 	if (t)
54c0b9f4feSDoug Rabson 		return (GSS_S_COMPLETE);
55c0b9f4feSDoug Rabson 
56c0b9f4feSDoug Rabson 	new_elements = malloc((set->count + 1) * sizeof(gss_OID_desc));
57c0b9f4feSDoug Rabson 	if (!new_elements) {
58c0b9f4feSDoug Rabson 		*minor_status = ENOMEM;
59c0b9f4feSDoug Rabson 		return (GSS_S_FAILURE);
60c0b9f4feSDoug Rabson 	}
61c0b9f4feSDoug Rabson 
62c0b9f4feSDoug Rabson 	new_oid = &new_elements[set->count];
63c0b9f4feSDoug Rabson 	new_oid->elements = malloc(member_oid->length);
64c0b9f4feSDoug Rabson 	if (!new_oid->elements) {
65c0b9f4feSDoug Rabson 		free(new_elements);
66c0b9f4feSDoug Rabson 		return (GSS_S_FAILURE);
67c0b9f4feSDoug Rabson 	}
68c0b9f4feSDoug Rabson 	new_oid->length = member_oid->length;
69c0b9f4feSDoug Rabson 	memcpy(new_oid->elements, member_oid->elements, member_oid->length);
70c0b9f4feSDoug Rabson 
71c0b9f4feSDoug Rabson 	if (set->elements) {
72c0b9f4feSDoug Rabson 		memcpy(new_elements, set->elements,
73c0b9f4feSDoug Rabson 		    set->count * sizeof(gss_OID_desc));
74c0b9f4feSDoug Rabson 		free(set->elements);
75c0b9f4feSDoug Rabson 	}
76c0b9f4feSDoug Rabson 	set->elements = new_elements;
77c0b9f4feSDoug Rabson 	set->count++;
78c0b9f4feSDoug Rabson 
79c0b9f4feSDoug Rabson 	return (GSS_S_COMPLETE);
80c0b9f4feSDoug Rabson }
81