Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / cache / GSSNameCache.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 <stdexcept>
36 #include "GSSNameCache.h"
37 #include "utils/util_base64.h"
38 #include "utils/util_random.h"
39
40 #define KEYLEN 128
41
42 GSSNameCache* GSSNameCache::_instance = 0;
43
44 GSSNameCache::GSSNameCache()
45 {
46
47 }
48
49 GSSNameCache::GSSNameCache ( const GSSNameCache& other )
50 {
51   names = other.names;
52 }
53
54 GSSNameCache::~GSSNameCache()
55 {
56
57 }
58
59 GSSNameCache& GSSNameCache::operator= ( const GSSNameCache& other )
60 {
61   names = other.names;
62   
63   return *this;
64 }
65
66
67 std::string GSSNameCache::store ( GSSName& data, std::string inKey )
68 {
69   /* Variables      */
70   std::string key;
71   
72   /* Error checking */
73   /* Setup          */
74   /* Main           */
75   // Generate a key
76   if ( inKey.length() > 0 )
77   {
78     key = inKey;
79   }
80   else if ( !generateKey(key) )
81   {
82     // Key generation failed.  Eeek!
83     throw std::runtime_error("Could not generate random data for an ID");
84   }
85   
86   // Store the key/value pair in the map
87   // Store the key in the context for convenience
88 //   std::cout << "\n==> In GSSNameCache::store, about to store data in the names hash.\n";
89   names[key] = &data;
90   
91   /* Cleanup        */
92   /* Return         */
93   // Return the key for future reference
94   return(key);
95 }
96
97 /*************************************
98  * Generate random bytes, and base64 *
99  * encode them to be JSONable keys   *
100  *************************************/
101 bool GSSNameCache::generateKey(std::string &key)
102 {
103   /* Variables      */
104   unsigned char theKey[KEYLEN];
105   
106   /* Setup          */
107   /* Main           */
108   // Generate random byte string
109   if (!randGenPseudoRandom(theKey, KEYLEN))
110     return(false);
111
112   // Encode the binary string
113   base64EncodeStr(theKey, KEYLEN, key);
114   /* Cleanup        */
115   /* Return         */
116   return(true);
117 }
118
119 GSSName& GSSNameCache::retrieve ( std::string key )
120 {
121   /* Variables      */
122   //GSSName data;
123   
124   /* Error checking */
125   /* Setup          */
126   /* Main           */
127   // Maybe do something about data entries that are expired?
128   
129   /* Cleanup        */
130   /* Return         */
131   return *(names[key]);
132 }
133
134 GSSNameCache* GSSNameCache::instance()
135 {
136     if (_instance == 0)
137       _instance = new GSSNameCache;
138     
139     return _instance;
140 }
141
142
143
144   /* Variables      */
145   /* Error checking */
146   /* Setup          */
147   /* Main           */
148   /* Cleanup        */
149   /* Return         */