Merge branch 'master' of ssh://moonshot.suchdamage.org:822/srv/git/moonshot
[mech_eap.git] / util_oid.c
1 /*
2  * Copyright (c) 2010, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 /*
33  * Copyright 1995-2010 by the Massachusetts Institute of Technology.
34  * All Rights Reserved.
35  *
36  * Export of this software from the United States of America may
37  *   require a specific license from the United States Government.
38  *   It is the responsibility of any person or organization contemplating
39  *   export to obtain such a license before exporting.
40  *
41  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
42  * distribute this software and its documentation for any purpose and
43  * without fee is hereby granted, provided that the above copyright
44  * notice appear in all copies and that both that copyright notice and
45  * this permission notice appear in supporting documentation, and that
46  * the name of M.I.T. not be used in advertising or publicity pertaining
47  * to distribution of the software without specific, written prior
48  * permission.  Furthermore if you modify this software you must label
49  * your software as modified software and not distribute it in such a
50  * fashion that it might be confused with the original M.I.T. software.
51  * M.I.T. makes no representations about the suitability of
52  * this software for any purpose.  It is provided "as is" without express
53  * or implied warranty.
54  *
55  */
56
57 /*
58  * OID utility routines.
59  */
60
61 #include "gssapiP_eap.h"
62
63 OM_uint32
64 duplicateOid(OM_uint32 *minor,
65              const gss_OID_desc * const oid,
66              gss_OID *newOid)
67 {
68     gss_OID p;
69
70     *newOid = GSS_C_NO_OID;
71
72     p = (gss_OID)GSSEAP_MALLOC(sizeof(*p));
73     if (p == NULL) {
74         *minor = ENOMEM;
75         return GSS_S_FAILURE;
76     }
77     p->length = oid->length;
78     p->elements = GSSEAP_MALLOC(p->length);
79     if (p->elements == NULL) {
80         GSSEAP_FREE(p);
81         *minor = ENOMEM;
82         return GSS_S_FAILURE;
83     }
84
85     memcpy(p->elements, oid->elements, p->length);
86     *newOid = p;
87
88     *minor = 0;
89     return GSS_S_COMPLETE;
90 }
91
92 /* Compose an OID of a prefix and an integer suffix */
93 OM_uint32
94 composeOid(OM_uint32 *minor,
95            const char *prefix,
96            size_t prefix_len,
97            int suffix,
98            gss_OID_desc *oid)
99 {
100     int osuffix, i;
101     size_t nbytes;
102     unsigned char *op;
103
104     if (oid == GSS_C_NO_OID) {
105         *minor = EINVAL;
106         return GSS_S_FAILURE;
107     }
108     if (oid->length < prefix_len) {
109         *minor = GSSEAP_WRONG_SIZE;
110         return GSS_S_FAILURE;
111     }
112
113     memcpy(oid->elements, prefix, prefix_len);
114
115     nbytes = 0;
116     osuffix = suffix;
117     while (suffix) {
118         nbytes++;
119         suffix >>= 7;
120     }
121     suffix = osuffix;
122
123     if (oid->length < prefix_len + nbytes) {
124         *minor = GSSEAP_WRONG_SIZE;
125         return GSS_S_FAILURE;
126     }
127
128     op = (unsigned char *) oid->elements + prefix_len + nbytes;
129     i = -1;
130     while (suffix) {
131         op[i] = (unsigned char)suffix & 0x7f;
132         if (i != -1)
133             op[i] |= 0x80;
134         i--;
135         suffix >>= 7;
136     }
137
138     oid->length = prefix_len + nbytes;
139
140     *minor = 0;
141     return GSS_S_COMPLETE;
142 }
143
144 OM_uint32
145 decomposeOid(OM_uint32 *minor,
146              const char *prefix,
147              size_t prefix_len,
148              gss_OID_desc *oid,
149              int *suffix)
150 {
151     size_t i, slen;
152     unsigned char *op;
153
154     if (oid->length < prefix_len ||
155         memcmp(oid->elements, prefix, prefix_len) != 0) {
156         return GSS_S_BAD_MECH;
157     }
158
159     op = (unsigned char *) oid->elements + prefix_len;
160
161     *suffix = 0;
162
163     slen = oid->length - prefix_len;
164
165     for (i = 0; i < slen; i++) {
166         *suffix = (*suffix << 7) | (op[i] & 0x7f);
167         if (i + 1 != slen && (op[i] & 0x80) == 0) {
168             *minor = GSSEAP_WRONG_SIZE;
169             return GSS_S_FAILURE;
170         }
171     }
172
173     return GSS_S_COMPLETE;
174 }
175
176 OM_uint32
177 duplicateOidSet(OM_uint32 *minor,
178                 const gss_OID_set src,
179                 gss_OID_set *dst)
180 {
181     OM_uint32 major, tmpMinor;
182     int i;
183
184     if (src == GSS_C_NO_OID_SET) {
185         *dst = GSS_C_NO_OID_SET;
186         return GSS_S_COMPLETE;
187     }
188
189     major = gss_create_empty_oid_set(minor, dst);
190     if (GSS_ERROR(major))
191         return major;
192
193     for (i = 0; i < src->count; i++) {
194         gss_OID oid = &src->elements[i];
195
196         major = gss_add_oid_set_member(minor, oid, dst);
197         if (GSS_ERROR(major))
198             break;
199     }
200
201     if (GSS_ERROR(major))
202         gss_release_oid_set(&tmpMinor, dst);
203
204     return major;
205 }