Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / datamodel / GSSName.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 "GSSName.h"
36 #include "../GSSException.h" 
37
38 void GSSName::init(const GSSBuffer namestr, GSSOID name_type, bool skipRelease, gss_imp_name_type fn)
39 {
40   /* Variables */
41   /* Error checking */
42   /* Setup */
43   /* Main */ 
44   this->major_status = fn(&(this->minor_status), namestr.toGss(), name_type.toGss(), &name);
45   if ( GSS_ERROR(this->major_status) )
46   {
47     std::string errMsg;
48     errMsg += "Cannot import name: ";
49     errMsg += namestr.toString();
50     throw GSSException(errMsg.c_str(), this->major_status, this->minor_status, name_type.toGss());
51   }
52   this->skipRelease = skipRelease;
53   
54   /* Cleanup */
55   /* Return */
56 }
57
58
59 GSSName::GSSName ( gss_name_t gss_name, bool skipRelease )
60
61   name = gss_name; 
62   this->skipRelease = skipRelease; 
63   
64 }
65  
66
67 void GSSName::release()
68 {
69   /* Variables */
70   OM_uint32 major, minor;
71   
72   /* Error checking */
73   if (GSS_C_NO_NAME == name || skipRelease)
74     return;
75   
76   /* Setup */
77   /* Main */
78   //  if (hashKey.length() > 0)
79   //    std::cout << std::endl << "About to release name for key " << hashKey << std::endl;
80   
81   major = gss_release_name(&minor, &name);
82   name = GSS_C_NO_NAME;
83   hashKey = "";
84   if ( GSS_ERROR(major) && !( major & GSS_S_BAD_NAME ) )
85   {
86     throw GSSException("Cannot free memory for a GSS name.", major, minor);
87   }
88
89   /* Cleanup */
90   /* Return */
91 }
92
93 GSSName::GSSName ( const GSSName& n )
94 {
95   this->hashKey = n.hashKey;
96   if (GSS_C_NO_NAME == n.name)
97   {
98     major_status = 0;
99     minor_status = 0;
100     name = GSS_C_NO_NAME;
101   }
102   else
103   {
104     this->major_status = gss_duplicate_name(&minor_status, n.name, &name);
105     if ( GSS_ERROR(major_status) )
106     {
107       throw GSSException("Cannot copy a GSS name.", major_status, minor_status);
108     }
109   }
110   this->skipRelease = false;
111 }
112
113 GSSName::~GSSName()
114 {
115   this->release();
116 }  
117
118 GSSName& GSSName::operator= ( const GSSName& rhs )
119 {
120   if (rhs.toGss() != this->toGss())
121   {
122     this->function = rhs.function;
123     if (GSS_C_NO_NAME == rhs.name)
124     {
125       major_status = 0;
126       minor_status = 0;
127       name = GSS_C_NO_NAME;
128     }
129     else
130     {
131       this->major_status = gss_duplicate_name(&minor_status, rhs.name, &name);
132       if ( GSS_ERROR(major_status) )
133       {
134         throw GSSException("Cannot copy a GSS name.", major_status, minor_status);
135       }
136     }
137     this->hashKey = "";
138     this->skipRelease = rhs.skipRelease;
139   }
140   return *this;
141 }
142
143
144 std::string GSSName::toString() const
145 {
146   /* Variables */
147   OM_uint32 major, minor;
148   gss_OID oid;
149   GSSBuffer buf;
150   
151   /* Error checking */
152   /* Setup */
153   /* Main */ 
154   major = gss_display_name(&minor, (this->name), buf.toGss(), &oid);
155   if ( GSS_ERROR(major) )
156   {
157     throw GSSException("Cannot convert a GSS name to a string.", major, minor);
158   }
159   
160   /* Cleanup */
161   /* Return */
162   return buf.toString();
163 }
164
165 bool GSSName::setValue ( gss_name_t newName, bool skipRelease )
166 {
167   this->release();
168   this->name = newName;
169   this->skipRelease = skipRelease;
170   return(true);
171 }