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