Get threads to deal with exit conditions, create timestamps
[matches/MCTX3420.git] / server / fastcgi.c
1 /**
2  * @file fastcgi.c
3  * @purpose Runs the FCGI request loop to handle web interface requests.
4  *
5  * fcgi_stdio.h must be included before all else so the stdio function
6  * redirection works ok.
7  */
8
9 #include <fcgi_stdio.h>
10 #include <openssl/sha.h>
11 #include <time.h>
12
13 #include "common.h"
14 #include "sensor.h"
15 #include "log.h"
16 #include "options.h"
17
18 #define LOGIN_TIMEOUT 180
19
20 struct FCGIContext {
21         /**The time of last valid logged-in user access*/
22         time_t login_timestamp;
23         char login_key[41];
24         char login_ip[16];
25         /**The name of the current module**/
26         const char *current_module;
27         /**For debugging purposes?**/
28         int response_number;
29 };
30
31 /**
32  * Handles user logins.
33  * @param context The context to work in
34  * @param params User specified parameters
35  */
36 static void LoginHandler(FCGIContext *context, char *params) {
37         const char *key, *value;
38         bool force = 0, end = 0;
39
40         while ((params = FCGI_KeyPair(params, &key, &value))) {
41                 if (!strcmp(key, "force"))
42                         force = !force;
43                 else if (!strcmp(key, "end"))
44                         end = !end;
45         }
46
47         if (end) {
48                 *(context->login_key) = 0;
49                 FCGI_BeginJSON(context, STATUS_OK);
50                 FCGI_EndJSON();
51                 return;
52         }
53
54         time_t now = time(NULL);
55         if (force || !*(context->login_key) || 
56            (now - context->login_timestamp > LOGIN_TIMEOUT)) 
57         {
58                 SHA_CTX sha1ctx;
59                 unsigned char sha1[20];
60                 int i = rand();
61
62                 SHA1_Init(&sha1ctx);
63                 SHA1_Update(&sha1ctx, &now, sizeof(now));
64                 SHA1_Update(&sha1ctx, &i, sizeof(i));
65                 SHA1_Final(sha1, &sha1ctx);
66
67                 context->login_timestamp = now;
68                 for (i = 0; i < 20; i++)
69                         sprintf(context->login_key + i * 2, "%02x", sha1[i]);
70                 snprintf(context->login_ip, 16, "%s", getenv("REMOTE_ADDR"));
71                 FCGI_BeginJSON(context, STATUS_OK);
72                 FCGI_JSONPair("key", context->login_key);
73                 FCGI_EndJSON();
74         } else {
75                 char buf[128];
76                 strftime(buf, 128, "%H:%M:%S %d-%m-%Y",
77                         localtime(&(context->login_timestamp))); 
78                 FCGI_BeginJSON(context, STATUS_UNAUTHORIZED);
79                 FCGI_JSONPair("description", "Already logged in");
80                 FCGI_JSONPair("user", context->login_ip); 
81                 FCGI_JSONPair("time", buf);
82                 FCGI_EndJSON();
83         }
84 }
85
86 /*TODO: Remove and replace with the actual actuator code*/
87 static void ActuatorHandler(FCGIContext *context, char *params) {
88         const char *key, *value, *loginkey = NULL;
89         while ((params = FCGI_KeyPair(params, &key, &value))) {
90                 if (!strcmp(key, "key")) {
91                         loginkey = value;
92                 }
93         }
94         if (!loginkey || !FCGI_Authorized(context, loginkey)) {
95                 FCGI_BeginJSON(context, STATUS_UNAUTHORIZED);
96                 FCGI_JSONPair("description", "Invalid key specified.");
97                 FCGI_EndJSON();
98         } else {
99                 FCGI_BeginJSON(context, STATUS_OK);
100                 FCGI_JSONPair("description", "Logged in!");
101                 FCGI_EndJSON();
102         }
103 }
104
105 /**
106  * Given an FCGIContext, determines if the current user (as specified by
107  * the key) is authorized or not. If validated, the context login_timestamp is
108  * updated.
109  * @param context The context to work in
110  * @param key The login key to be validated.
111  * @return TRUE if authorized, FALSE if not.
112  */
113 bool FCGI_Authorized(FCGIContext *context, const char *key) {
114         time_t now = time(NULL);
115         int result = (now - context->login_timestamp) <= LOGIN_TIMEOUT &&
116                                  !strcmp(context->login_key, key);
117         if (result) {
118                 context->login_timestamp = now; //Update the login_timestamp
119         }
120         return result;
121 }
122
123 /**
124  * Extracts a key/value pair from a request string.
125  * Note that the input is modified by this function.
126  * @param in The string from which to extract the pair
127  * @param key A pointer to a variable to hold the key string
128  * @param value A pointer to a variable to hold the value string
129  * @return A pointer to the start of the next search location, or NULL if
130  *         the EOL is reached.
131  */
132 char *FCGI_KeyPair(char *in, const char **key, const char **value)
133 {
134         char *ptr;
135         if (!in || !*in) { //Invalid input or string is EOL
136                 return NULL;
137         }
138
139         *key = in;
140         //Find either = or &, whichever comes first
141         if ((ptr = strpbrk(in, "=&"))) {
142                 if (*ptr == '&') { //No value specified
143                         *value = ptr;
144                         *ptr++ = 0;
145                 } else {
146                         //Stopped at an '=' sign
147                         *ptr++ = 0;
148                         *value = ptr;
149                         if ((ptr = strchr(ptr,'&'))) {
150                                 *ptr++ = 0;
151                         } else {
152                                 ptr = "";
153                         }
154                 }
155         } else { //No value specified and no other pair
156                 ptr = "";
157                 *value = ptr;
158         }
159         return ptr;
160 }
161
162 /**
163  * Begins a response to the client in JSON format.
164  * @param context The context to work in.
165  * @param status_code The status code to be returned.
166  */
167 void FCGI_BeginJSON(FCGIContext *context, StatusCodes status_code)
168 {
169         printf("Content-type: application/json; charset=utf-8\r\n\r\n");
170         printf("{\r\n");
171         printf("\t\"module\" : \"%s\"", context->current_module);
172         FCGI_JSONLong("status", status_code);
173
174         // Jeremy: Should we include a timestamp in the JSON; something like this?
175         double start_time = g_options.start_time.tv_sec + 1e-6*(g_options.start_time.tv_usec);
176         struct timeval now;
177         gettimeofday(&now, NULL);
178         double current_time = now.tv_sec + 1e-6*(now.tv_usec);
179         FCGI_JSONDouble("start_time", start_time);
180         FCGI_JSONDouble("current_time", current_time);
181         FCGI_JSONDouble("running_time", current_time - start_time);
182         
183 }
184
185 /**
186  * Adds a key/value pair to a JSON response. The response must have already
187  * been initiated by FCGI_BeginJSON. Note that characters are not escaped.
188  * @param key The key of the JSON entry
189  * &param value The value associated with the key.
190  */
191 void FCGI_JSONPair(const char *key, const char *value)
192 {
193         printf(",\r\n\t\"%s\" : \"%s\"", key, value);
194 }
195
196 /**
197  * Similar to FCGI_JSONPair except for signed integer values.
198  * @param key The key of the JSON entry
199  * @param value The value associated with the key
200  */
201 void FCGI_JSONLong(const char *key, long value)
202 {
203         printf(",\r\n\t\"%s\" : %ld", key, value);
204 }
205
206 /**
207  * Similar to FCGI_JsonPair except for floating point values.
208  * @param key The key of the JSON entry
209  * @param value The value associated with the key
210  */
211 void FCGI_JSONDouble(const char *key, double value)
212 {
213         printf(",\r\n\t\"%s\" : %f", key, value);
214 }
215
216 /**
217  * Begins a JSON entry by writing the key. To be used in conjunction
218  * with FCGI_JsonValue.
219  * @param key The key of the JSON entry
220  */
221 void FCGI_JSONKey(const char *key)
222 {
223         printf(",\r\n\t\"%s\" : ", key);
224 }
225
226 /**
227  * Should be used to write out the value of a JSON key. This has
228  * the same format as the printf functions. Care should be taken to format
229  * the output in valid JSON. 
230  */
231 void FCGI_JSONValue(const char *format, ...)
232 {
233         va_list list;
234         va_start(list, format);
235         vprintf(format, list);
236         va_end(list);
237 }
238
239 /**
240  * Ends a JSON response that was initiated by FCGI_BeginJSON.
241  */
242 void FCGI_EndJSON() 
243 {
244         printf("\r\n}\r\n");
245 }
246
247 /**
248  * To be used when the input parameters are invalid.
249  * Sends a response with HTTP status 400 Bad request, along with
250  * JSON data for debugging.
251  * @param context The context to work in
252  * @param params The parameters that the module handler received.
253  */
254 void FCGI_RejectJSON(FCGIContext *context)
255 {
256         printf("Status: 400 Bad Request\r\n");
257         
258         FCGI_BeginJSON(context, STATUS_ERROR);
259         FCGI_JSONPair("description", "Invalid request");
260         FCGI_JSONLong("responsenumber", context->response_number);
261         FCGI_JSONPair("params", getenv("DOCUMENT_URI_LOCAL"));
262         FCGI_JSONPair("host", getenv("SERVER_HOSTNAME"));
263         FCGI_JSONPair("user", getenv("REMOTE_USER"));
264         FCGI_JSONPair("ip", getenv("REMOTE_ADDR"));
265         FCGI_EndJSON();
266 }
267
268 /**
269  * Main FCGI request loop that receives/responds to client requests.
270  * @param data Reserved.
271  * @returns NULL (void* required for consistency with pthreads, although at the moment this runs in the main thread anyway)
272  * TODO: Get this to exit with the rest of the program!
273  */ 
274 void * FCGI_RequestLoop (void *data)
275 {
276         FCGIContext context = {0};
277         
278         Log(LOGDEBUG, "First request...");
279         //TODO: The FCGI_Accept here is blocking. 
280         //              That means that if another thread terminates the program, this thread
281         //               will not terminate until the next request is made.
282         while (FCGI_Accept() >= 0) {
283
284                 if (Thread_Runstate() != RUNNING)
285                 {
286                         //TODO: Yeah... deal with this better :P
287                         Log(LOGERR, "FIXME; FCGI gets request after other threads have finished.");
288                         printf("Content-type: text/plain\r\n\r\n+++OUT OF CHEESE ERROR+++\n");
289                         break;
290                 }
291                 
292                 Log(LOGDEBUG, "Got request #%d", context.response_number);
293                 ModuleHandler module_handler = NULL;
294                 char module[BUFSIZ], params[BUFSIZ];
295                 
296                 //strncpy doesn't zero-truncate properly
297                 snprintf(module, BUFSIZ, "%s", getenv("DOCUMENT_URI_LOCAL"));
298                 snprintf(params, BUFSIZ, "%s", getenv("QUERY_STRING"));
299                 
300                 //Remove trailing slashes (if present) from module query
301                 size_t lastchar = strlen(module) - 1;
302                 if (lastchar > 0 && module[lastchar] == '/')
303                         module[lastchar] = 0;
304                 
305
306                 if (!strcmp("login", module)) {
307                         module_handler = LoginHandler;
308                 } else if (!strcmp("sensors", module)) {
309                         module_handler = Sensor_Handler;
310                 } else if (!strcmp("actuators", module)) {
311                         module_handler = ActuatorHandler;
312                 }
313
314                 context.current_module = module;
315                 if (module_handler) {
316                         module_handler(&context, params);
317                 } else {
318                         strncat(module, " [unknown]", BUFSIZ);
319                         FCGI_RejectJSON(&context);
320                 }
321                 context.response_number++;
322
323                 Log(LOGDEBUG, "Waiting for request #%d", context.response_number);
324         }
325
326         Log(LOGDEBUG, "Thread exiting.");
327         Thread_QuitProgram(false);
328         // NOTE: Don't call pthread_exit, because this runs in the main thread. Just return.
329         return NULL;
330
331         
332 }

UCC git Repository :: git.ucc.asn.au