GSSAcquireCred works.
[gssweb.git] / json_gssapi / src / datamodel / GSSOIDSet.cpp
1 /*
2  * Copyright (c) 2014, 2015 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
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include "GSSOIDSet.h"
36 #include "../GSSException.h"
37
38 #include <cstring>
39
40 GSSOIDSet::GSSOIDSet( )
41 {
42   init();
43 }
44
45 void GSSOIDSet::init()
46 {
47   /* Variables */
48   OM_uint32 major, minor;
49   
50   /* Error checking */
51   /* Setup */
52   /* Main */
53   major = gss_create_empty_oid_set(&minor, &(this->set));
54   
55   // How the heck would this happen, anyway?
56   if (GSS_ERROR(major))
57     throw GSSException("Could not create an empty OID set.", major, minor);
58   
59   /* Cleanup */
60   /* return */
61 }
62
63 GSSOIDSet::~GSSOIDSet()
64 {
65   this->releaseOIDSet();
66 }
67
68 void GSSOIDSet::releaseOIDSet()
69 {
70   /* Variables */
71   OM_uint32 major, minor;
72   
73   /* Error checking */
74   /* Setup */
75   /* Main */
76   major = gss_release_oid_set(&minor, &(this->set));
77   if (GSS_ERROR(major))
78     throw GSSException("Error in releasing memory for an OID set", major, minor);
79   /* Cleanup */
80   /* return */
81 }
82
83 GSSOIDSet& GSSOIDSet::operator= ( const gss_OID_set other )
84 {
85   /* Variables */
86   OM_uint32 i;
87   gss_OID   element;
88   
89   /* Error checking */
90   /* Setup */
91   /* Main */
92   this->releaseOIDSet();
93   this->init();
94   if (NULL != other)
95   {
96     for(i = 0; i < other->count; i++)
97     {
98       element = other->elements + i;
99       this->addOID(element);
100     }
101   }
102   
103   /* Cleanup */
104   /* return */
105   return(*this);
106 }
107
108 void GSSOIDSet::addOID ( const GSSOID other )
109 {
110   this->addOID(other.toGss());
111 }
112
113 void GSSOIDSet::addOID( const gss_OID other )
114 {
115   /* Variables */
116   OM_uint32 major, minor;
117   
118   /* Error checking */
119   /* Setup */
120   major = gss_add_oid_set_member(&minor, other, &(this->set) );
121   if (GSS_ERROR(major))
122     throw GSSException("Error encountered while trying to add another OID to a set", major, minor);
123
124   /* Cleanup */
125   /* return */
126 }
127
128
129 bool GSSOIDSet::includes ( const gss_OID oid ) const
130 {
131   /* Variables */
132   OM_uint32 major, minor;
133   int present;
134   
135   /* Error checking */
136   /* Setup */
137   /* Main */
138   major = gss_test_oid_set_member(&minor, oid, this->set, &present);
139   if (GSS_ERROR(major))
140     /* How? */
141     throw GSSException("Cannot check if an OID is included in a set.", major, minor);
142   
143   /* Cleanup */
144   /* return */
145   return (present == 1);
146 }
147
148 bool GSSOIDSet::includes ( const GSSOID &oid ) const
149 {
150   return(this->includes( oid.toGss() ) );
151 }
152
153 /*
154  * Desired JSON Output:
155  * 
156  * [
157  *   "{ 1 2 3 4 }",
158  *   "{ 5 6 7 8 }"
159  * ]
160  * 
161  */
162 JSONObject* GSSOIDSet::toJSONValue() const
163 {
164   /* Variables */
165   JSONObject  jsonArray = JSONObject::array();
166   JSONObject *ret, *temp;
167   OM_uint32   index;
168   /* Error checking */
169   /* Setup */
170   /* Main */
171
172   for (index = 0; index < set->count; index++)
173   {
174     GSSOID m( set->elements + index );
175     temp = m.toJSONValue();
176     jsonArray.append( *temp );
177   }
178   
179   ret = new JSONObject(jsonArray);
180   
181   /* Cleanup */
182   /* return */
183   return(ret);
184 }
185
186
187   /* Variables */
188   /* Error checking */
189   /* Setup */
190   /* Main */
191   /* Cleanup */
192   /* return */
193