Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / datamodel / GSSContext.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 "GSSContext.h"
36 #include "GSSException.h"
37
38 #include <gssapi/gssapi.h>
39
40 GSSContext::GSSContext()
41 {
42   skipRelease = false;
43   context = GSS_C_NO_CONTEXT;
44 }
45
46 GSSContext::GSSContext ( const GSSContext& other )
47 {
48   // Variables
49   // Error checking
50   // Setup
51   // Main
52   skipRelease = true;
53   this->context = other.context;
54   // Cleanup
55   // Return
56
57 }
58
59 GSSContext::~GSSContext()
60 {
61   // Variables
62   GSSBuffer output;
63   // Error checking
64   // Setup
65   // Main
66   release(&output);
67
68   // Cleanup
69   // Would love to do something useful with outputToken, but in a destructor that's
70   // not particularly meaningful.
71   // Return
72 }
73
74 void GSSContext::setContext ( gss_ctx_id_t ctxt, bool skipRelease )
75 {
76   context = ctxt; 
77   this->skipRelease = skipRelease;
78 }
79
80
81 GSSContext& GSSContext::operator= ( const GSSContext& other )
82 {
83   this->context = other.context;
84   this->skipRelease = true;
85   
86   return *this;
87 }
88
89 void GSSContext::release(GSSBuffer *output)
90 {
91   // Variables
92   gss_buffer_desc outputToken;
93   OM_uint32 major, minor;
94   
95   // Error checking
96   if (GSS_C_NO_CONTEXT == context || skipRelease)
97     return;
98   
99   // Setup
100
101   // Main
102   major = gss_delete_sec_context(&minor, &context, &outputToken);
103   if (GSS_ERROR(major))
104   {
105     throw GSSException("Error in releasing a GSS context", major, minor);
106   }
107
108   output->setValue(&outputToken);
109   
110   // Cleanup
111   // Return
112 }
113
114
115   // Variables
116   // Error checking
117   // Setup
118   // Main
119   // Cleanup
120   // Return