fix typos in source files
[openocd.git] / src / server / httpd.c
blob9fa58790f1f79db0fe5b769345a929a3da769c4e
1 /***************************************************************************
2 * Copyright (C) 2007,2008,2009 Øyvind Harboe *
3 * oyvind.harboe@zylin.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 /* some bits were copied from ahttpd which is under eCos license and
22 * copyright to FSF
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
28 #include "telnet_server.h"
29 #include "target.h"
31 #include <microhttpd.h>
32 #include <pthread.h>
33 #include <signal.h>
35 #define PAGE_NOT_FOUND "<html><head><title > File not found</title></head><body > File not found</body></html>"
37 static pthread_mutex_t mutex;
39 void openocd_sleep_prelude(void)
41 pthread_mutex_unlock(&mutex);
44 void openocd_sleep_postlude(void)
46 pthread_mutex_lock(&mutex);
51 int loadFile(const char *name, void **data, size_t *len);
53 static const char *appendf(const char *prev, const char *format, ...)
55 va_list ap;
56 va_start(ap, format);
57 char *string = alloc_vprintf(format, ap);
58 va_end(ap);
59 char *string2 = NULL;
61 if (string != NULL)
63 string2 = alloc_printf("%s%s", (prev == NULL) ? "" : prev, string);
66 if (prev != NULL)
68 free((void *)prev);
71 if (string == NULL)
72 free(string);
74 return string2;
77 static const char *httpd_exec_cgi_tcl_error(Jim_Interp *interp)
79 int len, i;
81 const char *t = NULL;
82 t = appendf(t, "<html><body>\n");
84 t = appendf(t, "Runtime error, file \"%s\", line %d:<br>",
85 interp->errorFileName, interp->errorLine);
86 t = appendf(t, " %s < br>", Jim_GetString(interp->result, NULL));
87 Jim_ListLength(interp, interp->stackTrace, &len);
88 for (i = 0; i < len; i += 3)
90 Jim_Obj *objPtr;
91 const char *proc, *file, *line;
93 Jim_ListIndex(interp, interp->stackTrace, i, &objPtr, JIM_NONE);
94 proc = Jim_GetString(objPtr, NULL);
95 Jim_ListIndex(interp, interp->stackTrace, i + 1, &objPtr, JIM_NONE);
96 file = Jim_GetString(objPtr, NULL);
97 Jim_ListIndex(interp, interp->stackTrace, i + 2, &objPtr, JIM_NONE);
98 line = Jim_GetString(objPtr, NULL);
99 t = appendf(t, "In procedure '%s' called at file \"%s\", line %s < br>",
100 proc, file, line);
102 t = appendf(t, "</html></body>\n");
104 return t;
107 static int httpd_Jim_Command_writeform(Jim_Interp *interp, int argc,
108 Jim_Obj * const *argv)
110 if (argc != 3)
112 Jim_WrongNumArgs(interp, 1, argv, "method ?CMD_ARGV ...?");
113 return JIM_ERR;
115 char *name = (char*) Jim_GetString(argv[1], NULL);
116 char *file = (char*) Jim_GetString(argv[2], NULL);
118 // Find length
119 const char *data;
120 int actual;
122 int retcode;
124 const char *script = alloc_printf("set dummy_val $httppostdata(%s); set dummy_val",
125 name);
126 retcode = Jim_Eval_Named(interp, script, __FILE__, __LINE__);
127 free((void *) script);
128 if (retcode != JIM_OK)
129 return retcode;
131 data = Jim_GetString(Jim_GetResult(interp), &actual);
133 FILE *f = fopen(file, "wb");
134 if (NULL == f)
136 Jim_SetResultString(interp, "Could not create file", -1);
137 return JIM_ERR;
140 int result = fwrite(data, 1, actual, f);
141 fclose(f);
143 if (result != actual)
145 Jim_SetResultString(interp, "Could not write to file", -1);
146 return JIM_ERR;
148 return JIM_OK;
153 httpd_Jim_Command_formfetch(Jim_Interp *interp,
154 int argc,
155 Jim_Obj *const *argv)
157 if (argc != 2)
159 Jim_WrongNumArgs(interp, 1, argv, "method ?CMD_ARGV ...?");
160 return JIM_ERR;
162 char *name = (char*)Jim_GetString(argv[1], NULL);
165 const char *script = alloc_printf("set dummy_val $httppostdata(%s); set dummy_val",
166 name);
167 int retcode = Jim_Eval_Named(interp, script, __FILE__, __LINE__);
168 free((void *) script);
169 if (retcode != JIM_OK)
171 Jim_SetResult(interp, Jim_NewEmptyStringObj(interp));
172 } else
174 Jim_SetResult(interp, Jim_GetResult(interp));
177 return JIM_OK;
180 struct httpd_request
182 int post;
183 struct MHD_PostProcessor *postprocessor;
185 //Jim_Obj *dict;
187 int complete; /* did we receive the entire post ? */
191 static void request_completed(void *cls, struct MHD_Connection *connection,
192 void **con_cls, enum MHD_RequestTerminationCode toe)
194 struct httpd_request *r = (struct httpd_request*) *con_cls;
196 if (NULL == r)
197 return;
199 if (r->postprocessor)
201 openocd_sleep_postlude();
202 MHD_destroy_post_processor(r->postprocessor);
203 openocd_sleep_prelude();
206 free(r);
207 *con_cls = NULL;
210 /* append to said key in dictionary */
211 static void append_key(struct httpd_request *r, const char *key,
212 const char *data, size_t off, size_t size)
214 Jim_Obj *keyObj = Jim_NewStringObj(interp, key, -1);
215 Jim_IncrRefCount(keyObj);
216 Jim_Obj *value = NULL;
218 Jim_Obj *dict = Jim_GetVariableStr(interp, "httppostdata", 0);
220 if (dict != NULL)
222 if (Jim_DictKey(interp, dict, keyObj, &value, 0) != JIM_OK)
224 value = NULL;
226 else
228 Jim_IncrRefCount(value);
232 if (value == NULL)
234 value = Jim_NewStringObj(interp, "", -1);
235 Jim_IncrRefCount(value);
239 /* create a new object we append to and insert into this location */
240 Jim_Obj *newObj = Jim_NewStringObj(interp, "", -1);
241 Jim_IncrRefCount(newObj);
242 Jim_AppendObj(interp, newObj, value);
243 Jim_AppendString(interp, newObj, data, size);
244 /* uhh... use name here of dictionary */
245 dict = Jim_NewStringObj(interp, "httppostdata", -1);
246 Jim_IncrRefCount(dict);
247 Jim_SetDictKeysVector(interp, dict, &keyObj, 1, newObj);
248 Jim_DecrRefCount(interp, dict);
249 Jim_DecrRefCount(interp, value);
250 Jim_DecrRefCount(interp, newObj);
251 Jim_DecrRefCount(interp, keyObj);
254 /* append data to each key */
255 static int iterate_post(void *con_cls, enum MHD_ValueKind kind,
256 const char *key, const char *filename, const char *content_type,
257 const char *transfer_encoding, const char *data, uint64_t off,
258 size_t size)
260 struct httpd_request *r = (struct httpd_request*) con_cls;
262 append_key(r, key, data, off, size);
264 return MHD_YES;
267 static int record_arg(void *cls, enum MHD_ValueKind kind, const char *key,
268 const char *value)
270 struct httpd_request *r = (struct httpd_request*) cls;
271 append_key(r, key, value, 0, strlen(value));
272 return MHD_YES;
276 static int handle_request(struct MHD_Connection * connection, const char * url)
278 struct MHD_Response * response;
280 int ret;
281 const char *suffix;
282 suffix = strrchr(url, '.');
283 if ((suffix != NULL) && (strcmp(suffix, ".tcl") == 0))
285 printf("Run tcl %s\n", url);
287 int retcode;
289 const char *script = alloc_printf(
290 "global httpdata; source {%s}; set httpdata", url);
291 retcode = Jim_Eval_Named(interp, script, __FILE__, __LINE__);
292 free((void *) script);
294 if (retcode != JIM_OK)
296 printf("Tcl failed\n");
297 const char *t = httpd_exec_cgi_tcl_error(interp);
298 if (t == NULL)
299 return MHD_NO;
301 response = MHD_create_response_from_data(strlen(t), (void *) t,
302 MHD_YES, MHD_NO);
303 ret = MHD_queue_response(connection,
304 MHD_HTTP_INTERNAL_SERVER_ERROR, response);
305 MHD_destroy_response(response);
306 return ret;
308 else
310 LOG_DEBUG("Tcl OK");
311 /* FIX!!! how to handle mime types??? */
312 const char *result;
313 int reslen;
314 result = Jim_GetString(Jim_GetResult(interp), &reslen);
316 response = MHD_create_response_from_data(reslen, (void *) result,
317 MHD_NO, MHD_YES);
318 ret = MHD_queue_response(connection,
319 MHD_HTTP_INTERNAL_SERVER_ERROR, response);
320 MHD_destroy_response(response);
321 return ret;
324 else
326 void *data;
327 size_t len;
329 int retval = loadFile(url, &data, &len);
330 if (retval != ERROR_OK)
332 printf("Did not find %s\n", url);
334 response = MHD_create_response_from_data(strlen(PAGE_NOT_FOUND),
335 (void *) PAGE_NOT_FOUND, MHD_NO, MHD_NO);
336 ret = MHD_queue_response(connection, MHD_HTTP_NOT_FOUND, response);
337 MHD_destroy_response(response);
338 return ret;
341 LOG_DEBUG("Serving %s length=%zu", url, len);
342 /* serve file directly */
343 response = MHD_create_response_from_data(len, data, MHD_YES, MHD_NO);
344 /* Should we expose mimetype via tcl here or just let the browser
345 guess?
346 MHD_add_response_header(response, "Content-Type", "image/png");
349 ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
350 MHD_destroy_response(response);
352 //free(data);
353 return ret;
357 static int ahc_echo_inner(void * cls, struct MHD_Connection * connection,
358 const char * url, const char * method, const char * version,
359 const char * upload_data, size_t * upload_data_size, void ** ptr)
361 int post = 0;
363 if (0 == strcmp(method, "POST"))
365 post = 1;
367 else if (0 == strcmp(method, "GET"))
370 else
372 return MHD_NO; /* unexpected method */
375 struct httpd_request *r;
376 if (*ptr == NULL)
378 /* The first time only the headers are valid,
379 do not respond in the first round... */
381 *ptr = malloc(sizeof(struct httpd_request));
382 if (*ptr == NULL)
383 return MHD_NO;
384 memset(*ptr, 0, sizeof(struct httpd_request));
386 r = (struct httpd_request *) *ptr;
388 r->post = post;
389 Jim_SetVariableStr(interp, "httppostdata", Jim_NewDictObj(interp, NULL, 0));
391 /* fill in url query strings in dictionary */
392 MHD_get_connection_values(connection, MHD_GET_ARGUMENT_KIND,
393 record_arg, r);
395 if (r->post)
397 r->postprocessor = MHD_create_post_processor(connection, 2048
398 * 1024, &iterate_post, r);
401 return MHD_YES;
404 r = (struct httpd_request *) *ptr;
406 if (r->post)
408 /* consume post data */
409 if (*upload_data_size)
411 MHD_post_process(r->postprocessor, upload_data, *upload_data_size);
412 *upload_data_size = 0;
413 return MHD_YES;
415 else
418 } else
422 /* hand over to request who will be using it. */
423 // r->dict = NULL;
426 /* FIX!!!! we need more advanced handling of url's to avoid them
427 * being subverted to evil purposes
430 const char *httpd_dir = PKGDATADIR "/httpd";
432 if (*url=='/')
434 url++; /* skip '/' */
436 if (!*url)
437 url="index.tcl";
439 const char *file_name = alloc_printf("%s/%s", httpd_dir, url);
440 int result = handle_request(connection, file_name);
441 free((void *)file_name);
442 return result;
446 static int ahc_echo(void * cls, struct MHD_Connection * connection,
447 const char * url, const char * method, const char * version,
448 const char * upload_data, size_t * upload_data_size, void ** ptr)
450 int result;
452 openocd_sleep_postlude();
454 result = ahc_echo_inner(cls, connection, url, method, version, upload_data, upload_data_size, ptr);
456 openocd_sleep_prelude();
458 return result;
461 static struct MHD_Daemon * d;
463 static const struct command_registration httpd_command_handlers[] = {
465 .name = "formfetch",
466 .jim_handler = &httpd_Jim_Command_formfetch,
467 .mode = COMMAND_EXEC,
468 .usage = "<parameter_name>",
469 .help = "Reads a posted form value.",
472 .name = "writeform",
473 .jim_handler = &httpd_Jim_Command_writeform,
474 .mode = COMMAND_EXEC,
475 .usage = "<parameter_name> <file>",
476 .help = "Writes a form value to a file.",
478 COMMAND_REGISTRATION_DONE
481 int httpd_start(struct command_context *cmd_ctx)
483 pthread_mutexattr_t attr;
484 pthread_mutexattr_init(&attr);
485 pthread_mutex_init(&mutex, &attr);
487 int port = 8888;
488 LOG_USER("Launching httpd server on port %d", port);
489 d = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, port, NULL, NULL,
490 &ahc_echo, NULL, /* could be data for handler, but we only have a single handler, use global variables instead */
491 MHD_OPTION_NOTIFY_COMPLETED, request_completed, NULL, /* Closure... what's that??? */
492 MHD_OPTION_END);
493 if (d == NULL)
494 return ERROR_FAIL;
496 return register_commands(cmd_ctx, NULL, httpd_command_handlers);
499 void httpd_stop(void)
501 MHD_stop_daemon(d);
502 pthread_mutex_destroy(&mutex);