Add copyright comment headers to appropriate files
[gssweb.git] / json_gssapi / src / GSSRequest.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 <cstddef>
36 #include <stdexcept>
37 #include <string.h>
38
39 #include "commands/GSSAcquireCred.h"
40 #include "commands/GSSInitSecContext.h"
41 #include "commands/GSSImportName.h"
42 #include "commands/GSSDisplayName.h"
43 #include "GSSRequest.h"
44 #include "GSSException.h"
45
46 using std::bad_alloc;
47
48 GSSRequest::GSSRequest ( string jsonString )
49 {
50   /* Local variables */
51   /* Error checking */
52   /* Setup */
53   /* Main processing */
54   response = JSONObject();
55   cmd = NULL;
56   requestString = jsonString;
57   
58   /* Cleanup */
59   /* Return */
60 }
61
62 void GSSRequest::execute()
63 {
64   try {
65     /* variables */
66     /* Error checking */
67     /* Setup */
68     parseJSON();
69     getCommand();
70     
71     /* Main processing */
72     if (NULL != cmd)
73       cmd->execute();
74     
75     /* Cleanup */
76     /* Return */
77   }
78   catch (GSSException e)
79   {
80     delete(cmd);
81     cmd = NULL;
82     JSONObject return_values;
83     return_values.set("major_status", e.getMajor());
84     return_values.set("minor_status", e.getMinor());
85     return_values.set("what", e.what());
86     response.set("return_values", return_values);
87   }
88 }
89
90
91
92 void GSSRequest::parseJSON()
93 {
94   /* variables */
95   json_error_t jsonErr;
96   
97   try {
98     JSONObject cookies;
99     request = JSONObject::load(requestString.c_str(), 0, &jsonErr);
100     cookies = request.get("cookies");
101     response.set("cookies", cookies );
102     response.set("method", request.get("method").string());
103   }
104   /* bad_alloc is thrown when JSONObject can't parse the input string as JSON */
105   catch ( bad_alloc& ) 
106   {
107     // Top-level response
108     response.set("error_message", "Could not parse the input JSON.");
109     response.set("original_message", requestString.c_str());
110   }
111 }
112
113
114 void GSSRequest::getCommand()
115 {
116   string method;
117   JSONObject arguments = request.get("arguments");
118   
119   /* Error checking */
120   /* Setup */
121   if (request.get("method").isNull() )
122     method = "";
123   else
124     method = string( request.get("method").string() );
125   
126   if ( "gss_import_name" == method ) 
127   {
128     cmd = new GSSImportName ( &arguments );
129   } 
130   else if ( "gss_init_sec_context" == method ) 
131   {
132     cmd = new GSSInitSecContext ( &arguments );
133   } 
134   else if ( "gss_acquire_cred" == method ) 
135   {
136     cmd = new GSSAcquireCred ( &arguments );
137   } 
138   else if ( "gss_display_name" == method )
139   {
140     cmd = new GSSDisplayName ( &arguments );
141   }
142   else 
143   {
144     string error_message = string("Unrecognized command: ") + method;
145     response.set("error_message", error_message.c_str() );
146     response.set("original_message", requestString.c_str());
147     cmd = NULL;
148   }
149 }
150
151 string GSSRequest::getResponse()
152 {
153   /* Variables */
154   JSONObject *return_values;
155   string gssResponse;
156   
157   /* Main processing */
158   // Put the return values into the response, assuming that the command
159   // was actually executed.
160   if (NULL != cmd)
161   {
162     return_values = cmd->toJSON();
163     response.set("return_values", *return_values);
164   }
165   
166   // Convert the response into a string to return.
167   gssResponse = string( response.dump() );
168   
169   /* Return */
170   return(gssResponse);
171 }
172
173
174
175 char *gss_request(char *json_string)
176 {
177   /* Variables */
178   GSSRequest *req = new GSSRequest(string(json_string));
179   
180   /* Error checking */
181   // An empty json_string could be an error, but GSSRequest does
182   // a good job of handling it.
183   
184   /* Setup */
185   /* Main processing */
186   req->execute();
187   return strdup(req->getResponse().c_str());
188 }
189
190 void deallocate_reply(char *reply)
191 {
192   delete(reply);
193 }