Better error reporting through com_err
[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 #include "gssapiP_eap.h"
58
59 OM_uint32
60 duplicateOid(OM_uint32 *minor,
61              const gss_OID_desc * const oid,
62              gss_OID *newOid)
63 {
64     gss_OID p;
65
66     *minor = 0;
67     *newOid = GSS_C_NO_OID;
68
69     p = (gss_OID)GSSEAP_MALLOC(sizeof(*p));
70     if (p == NULL) {
71         *minor = ENOMEM;
72         return GSS_S_FAILURE;
73     }
74     p->length = oid->length;
75     p->elements = GSSEAP_MALLOC(p->length);
76     if (p->elements == NULL) {
77         GSSEAP_FREE(p);
78         return GSS_S_FAILURE;
79     }
80
81     memcpy(p->elements, oid->elements, p->length);
82     *newOid = p;
83
84     return GSS_S_COMPLETE;
85 }
86
87 /* Compose an OID of a prefix and an integer suffix */
88 OM_uint32
89 composeOid(OM_uint32 *minor,
90            const char *prefix,
91            size_t prefix_len,
92            int suffix,
93            gss_OID_desc *oid)
94 {
95     int osuffix, i;
96     size_t nbytes;
97     unsigned char *op;
98
99     if (oid == GSS_C_NO_OID) {
100         *minor = EINVAL;
101         return GSS_S_FAILURE;
102     }
103     if (oid->length < prefix_len) {
104         *minor = GSSEAP_WRONG_SIZE;
105         return GSS_S_FAILURE;
106     }
107
108     memcpy(oid->elements, prefix, prefix_len);
109
110     nbytes = 0;
111     osuffix = suffix;
112     while (suffix) {
113         nbytes++;
114         suffix >>= 7;
115     }
116     suffix = osuffix;
117
118     if (oid->length < prefix_len + nbytes) {
119         *minor = ERANGE;
120         return GSS_S_FAILURE;
121     }
122
123     op = (unsigned char *) oid->elements + prefix_len + nbytes;
124     i = -1;
125     while (suffix) {
126         op[i] = (unsigned char)suffix & 0x7f;
127         if (i != -1)
128             op[i] |= 0x80;
129         i--;
130         suffix >>= 7;
131     }
132
133     oid->length = prefix_len + nbytes;
134
135     *minor = 0;
136     return GSS_S_COMPLETE;
137 }
138
139 OM_uint32
140 decomposeOid(OM_uint32 *minor,
141              const char *prefix,
142              size_t prefix_len,
143              gss_OID_desc *oid,
144              int *suffix)
145 {
146     size_t i, slen;
147     unsigned char *op;
148
149     if (oid->length < prefix_len ||
150         memcmp(oid->elements, prefix, prefix_len) != 0) {
151         return GSS_S_BAD_MECH;
152     }
153
154     op = (unsigned char *) oid->elements + prefix_len;
155
156     *suffix = 0;
157
158     slen = oid->length - prefix_len;
159
160     for (i = 0; i < slen; i++) {
161         *suffix = (*suffix << 7) | (op[i] & 0x7f);
162         if (i + 1 != slen && (op[i] & 0x80) == 0) {
163             *minor = GSSEAP_WRONG_SIZE;
164             return GSS_S_FAILURE;
165         }
166     }
167
168     return GSS_S_COMPLETE;
169 }
170
171 OM_uint32
172 duplicateOidSet(OM_uint32 *minor,
173                 const gss_OID_set src,
174                 gss_OID_set *dst)
175 {
176     OM_uint32 major, tmpMinor;
177     int i;
178
179     if (src == GSS_C_NO_OID_SET) {
180         *dst = GSS_C_NO_OID_SET;
181         return GSS_S_COMPLETE;
182     }
183
184     major = gss_create_empty_oid_set(minor, dst);
185     if (GSS_ERROR(major))
186         return major;
187
188     for (i = 0; i < src->count; i++) {
189         gss_OID oid = &src->elements[i];
190
191         major = gss_add_oid_set_member(minor, oid, dst);
192         if (GSS_ERROR(major))
193             break;
194     }
195
196     if (GSS_ERROR(major))
197         gss_release_oid_set(&tmpMinor, dst);
198
199     return major;
200 }