Adding Doxygen-style comments to variables
[privoxy.git] / src / cgi.c
1 const char cgi_rcs[] = "$Id: cgi.c,v 1.70 2002/05/19 11:33:20 jongfoster Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/cgi.c,v $
5  *
6  * Purpose     :  Declares functions to intercept request, generate
7  *                html or gif answers, and to compose HTTP resonses.
8  *                This only contains the framework functions, the
9  *                actual handler functions are declared elsewhere.
10  *                
11  *                Functions declared include:
12  * 
13  *
14  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
15  *                Privoxy team. http://www.privoxy.org/
16  *
17  *                Based on the Internet Junkbuster originally written
18  *                by and Copyright (C) 1997 Anonymous Coders and 
19  *                Junkbusters Corporation.  http://www.junkbusters.com
20  *
21  *                This program is free software; you can redistribute it 
22  *                and/or modify it under the terms of the GNU General
23  *                Public License as published by the Free Software
24  *                Foundation; either version 2 of the License, or (at
25  *                your option) any later version.
26  *
27  *                This program is distributed in the hope that it will
28  *                be useful, but WITHOUT ANY WARRANTY; without even the
29  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
30  *                PARTICULAR PURPOSE.  See the GNU General Public
31  *                License for more details.
32  *
33  *                The GNU General Public License should be included with
34  *                this file.  If not, you can view it at
35  *                http://www.gnu.org/copyleft/gpl.html
36  *                or write to the Free Software Foundation, Inc., 59
37  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
38  *
39  * Revisions   :
40  *    $Log: cgi.c,v $
41  *    Revision 1.70  2002/05/19 11:33:20  jongfoster
42  *    If a CGI error was not handled, and propogated back to
43  *    dispatch_known_cgi(), then it was assumed to be "out of memory".
44  *    This gave a very misleading error message.
45  *
46  *    Now other errors will cause a simple message giving the error
47  *    number and asking the user to report a bug.
48  *
49  *    Bug report:
50  *    http://sourceforge.net/tracker/index.php?func=detail
51  *    &aid=557905&group_id=11118&atid=111118
52  *
53  *    Revision 1.69  2002/05/14 21:28:40  oes
54  *     - Fixed add_help_link to link to the (now split) actions
55  *       part of the config chapter
56  *     - Renamed helplink export to actions-help-prefix
57  *
58  *    Revision 1.68  2002/05/12 21:36:29  jongfoster
59  *    Correcting function comments
60  *
61  *    Revision 1.67  2002/04/30 12:02:07  oes
62  *    Nit: updated a comment
63  *
64  *    Revision 1.66  2002/04/26 18:32:57  jongfoster
65  *    Fixing a memory leak on error
66  *
67  *    Revision 1.65  2002/04/26 12:53:51  oes
68  *     - New function add_help_link
69  *     - default_exports now exports links to the user manual
70  *       and a prefix for links into the config chapter
71  *
72  *    Revision 1.64  2002/04/24 02:17:21  oes
73  *     - Better descriptions for CGIs
74  *     - Hide edit-actions, more shortcuts
75  *     - Moved get_char_param, get_string_param and get_number_param here
76  *       from cgiedit.c
77  *
78  *    Revision 1.63  2002/04/15 19:06:43  jongfoster
79  *    Typos
80  *
81  *    Revision 1.62  2002/04/10 19:59:46  jongfoster
82  *    Fixes to #include in templates:
83  *    - Didn't close main file if loading an included template fails.
84  *    - I'm paranoid and want to disallow "#include /etc/passwd".
85  *
86  *    Revision 1.61  2002/04/10 13:37:48  oes
87  *    Made templates modular: template_load now recursive with max depth 1
88  *
89  *    Revision 1.60  2002/04/08 20:50:25  swa
90  *    fixed JB spelling
91  *
92  *    Revision 1.59  2002/04/05 15:51:51  oes
93  *     - added send-stylesheet CGI
94  *     - bugfix: error-pages now get correct request protocol
95  *     - fixed
96  *     - kludged CGI descriptions and menu not to break JS syntax
97  *
98  *    Revision 1.58  2002/03/29 03:33:13  david__schmidt
99  *    Fix Mac OSX compiler warnings
100  *
101  *    Revision 1.57  2002/03/26 22:29:54  swa
102  *    we have a new homepage!
103  *
104  *    Revision 1.56  2002/03/24 17:50:46  jongfoster
105  *    Fixing compile error if actions file editor disabled
106  *
107  *    Revision 1.55  2002/03/24 16:55:06  oes
108  *    Making GIF checkerboard transparent
109  *
110  *    Revision 1.54  2002/03/24 16:18:15  jongfoster
111  *    Removing old logo
112  *
113  *    Revision 1.53  2002/03/24 16:06:00  oes
114  *    Correct transparency for checkerboard PNG. Thanks, Magnus!
115  *
116  *    Revision 1.52  2002/03/24 15:23:33  jongfoster
117  *    Name changes
118  *
119  *    Revision 1.51  2002/03/24 13:25:43  swa
120  *    name change related issues
121  *
122  *    Revision 1.50  2002/03/16 23:54:06  jongfoster
123  *    Adding graceful termination feature, to help look for memory leaks.
124  *    If you enable this (which, by design, has to be done by hand
125  *    editing config.h) and then go to http://i.j.b/die, then the program
126  *    will exit cleanly after the *next* request.  It should free all the
127  *    memory that was used.
128  *
129  *    Revision 1.49  2002/03/13 00:27:04  jongfoster
130  *    Killing warnings
131  *
132  *    Revision 1.48  2002/03/08 17:47:07  jongfoster
133  *    Adding comments
134  *
135  *    Revision 1.47  2002/03/08 16:41:33  oes
136  *    Added GIF images again
137  *
138  *    Revision 1.46  2002/03/07 03:48:38  oes
139  *     - Changed built-in images from GIF to PNG
140  *       (with regard to Unisys patent issue)
141  *     - Added a 4x4 pattern PNG which is less intrusive
142  *       than the logo but also clearly marks the deleted banners
143  *
144  *    Revision 1.45  2002/03/06 22:54:35  jongfoster
145  *    Automated function-comment nitpicking.
146  *
147  *    Revision 1.44  2002/03/05 22:43:45  david__schmidt
148  *    - Better error reporting on OS/2
149  *    - Fix double-slash comment (oops)
150  *
151  *    Revision 1.43  2002/03/05 21:33:45  david__schmidt
152  *    - Re-enable OS/2 building after new parms were added
153  *    - Fix false out of memory report when resolving CGI templates when no IP
154  *      address is available of failed attempt (a la no such domain)
155  *
156  *    Revision 1.42  2002/01/21 00:33:20  jongfoster
157  *    Replacing strsav() with the safer string_append() or string_join().
158  *    Adding map_block_keep() to save a few bytes in the edit-actions-list HTML.
159  *    Adding missing html_encode() to error message generators.
160  *    Adding edit-actions-section-swap and many "shortcuts" to the list of CGIs.
161  *
162  *    Revision 1.41  2002/01/17 20:56:22  jongfoster
163  *    Replacing hard references to the URL of the config interface
164  *    with #defines from project.h
165  *
166  *    Revision 1.40  2002/01/09 14:26:46  oes
167  *    Added support for thread-safe gmtime_r call.
168  *
169  *    Revision 1.39  2001/11/16 00:48:13  jongfoster
170  *    Fixing a compiler warning
171  *
172  *    Revision 1.38  2001/11/13 00:31:21  jongfoster
173  *    - Adding new CGIs for use by non-JavaScript browsers:
174  *        edit-actions-url-form
175  *        edit-actions-add-url-form
176  *        edit-actions-remove-url-form
177  *    - Fixing make_menu()'s HTML generation - it now quotes the href parameter.
178  *    - Fixing || bug.
179  *
180  *    Revision 1.37  2001/11/01 14:28:47  david__schmidt
181  *    Show enablement/disablement status in almost all templates.
182  *    There is a little trickiness here: apparent recursive resolution of
183  *    @if-enabled-then@ caused the toggle template to show status out-of-phase with
184  *    the actual enablement status.  So a similar construct,
185  *    @if-enabled-display-then@, is used to resolve the status display on non-'toggle'
186  *    templates.
187  *
188  *    Revision 1.36  2001/10/26 17:33:27  oes
189  *    marginal bugfix
190  *
191  *    Revision 1.35  2001/10/23 21:48:19  jongfoster
192  *    Cleaning up error handling in CGI functions - they now send back
193  *    a HTML error page and should never cause a FATAL error.  (Fixes one
194  *    potential source of "denial of service" attacks).
195  *
196  *    CGI actions file editor that works and is actually useful.
197  *
198  *    Ability to toggle Junkbuster remotely using a CGI call.
199  *
200  *    You can turn off both the above features in the main configuration
201  *    file, e.g. if you are running a multi-user proxy.
202  *
203  *    Revision 1.34  2001/10/18 22:22:09  david__schmidt
204  *    Only show "Local support" on templates conditionally:
205  *      - if either 'admin-address' or 'proxy-info-url' are uncommented in config
206  *      - if not, no Local support section appears
207  *
208  *    Revision 1.33  2001/10/14 22:28:41  jongfoster
209  *    Fixing stupid typo.
210  *
211  *    Revision 1.32  2001/10/14 22:20:18  jongfoster
212  *    - Changes to CGI dispatching method to match CGI names exactly,
213  *      rather than doing a prefix match.
214  *    - No longer need to count the length of the CGI handler names by hand.
215  *    - Adding new handler for 404 error when disptching a CGI, if none of
216  *      the handlers match.
217  *    - Adding new handlers for CGI actionsfile editor.
218  *
219  *    Revision 1.31  2001/10/10 10:56:39  oes
220  *    Failiure to load template now fatal. Before, the user got a hard-to-understand assertion failure from cgi.c
221  *
222  *    Revision 1.30  2001/10/02 15:30:57  oes
223  *    Introduced show-request cgi
224  *
225  *    Revision 1.29  2001/09/20 15:47:44  steudten
226  *
227  *    Fix BUG: Modify int size to size_t size in fill_template()
228  *     - removes big trouble on machines where sizeof(int) != sizeof(size_t).
229  *
230  *    Revision 1.28  2001/09/19 18:00:37  oes
231  *     - Deletef time() FIXME (Can't fail under Linux either, if
232  *       the argument is guaranteed to be in out address space,
233  *       which it is.)
234  *     - Fixed comments
235  *     - Pointer notation cosmetics
236  *     - Fixed a minor bug in template_fill(): Failiure of
237  *       pcrs_execute() now secure.
238  *
239  *    Revision 1.27  2001/09/16 17:08:54  jongfoster
240  *    Moving simple CGI functions from cgi.c to new file cgisimple.c
241  *
242  *    Revision 1.26  2001/09/16 15:47:37  jongfoster
243  *    First version of CGI-based edit interface.  This is very much a
244  *    work-in-progress, and you can't actually use it to edit anything
245  *    yet.  You must #define FEATURE_CGI_EDIT_ACTIONS for these changes
246  *    to have any effect.
247  *
248  *    Revision 1.25  2001/09/16 15:02:35  jongfoster
249  *    Adding i.j.b/robots.txt.
250  *    Inlining add_stats() since it's only ever called from one place.
251  *
252  *    Revision 1.24  2001/09/16 11:38:01  jongfoster
253  *    Splitting fill_template() into 2 functions:
254  *    template_load() loads the file
255  *    template_fill() performs the PCRS regexps.
256  *    This is because the CGI edit interface has a "table row"
257  *    template which is used many times in the page - this
258  *    change means it's only loaded from disk once.
259  *
260  *    Revision 1.23  2001/09/16 11:16:05  jongfoster
261  *    Better error handling in dispatch_cgi() and parse_cgi_parameters()
262  *
263  *    Revision 1.22  2001/09/16 11:00:10  jongfoster
264  *    New function alloc_http_response, for symmetry with free_http_response
265  *
266  *    Revision 1.21  2001/09/13 23:53:03  jongfoster
267  *    Support for both static and dynamically generated CGI pages.
268  *    Correctly setting Last-Modified: and Expires: HTTP headers.
269  *
270  *    Revision 1.20  2001/09/13 23:40:36  jongfoster
271  *    (Cosmetic only) Indentation correction
272  *
273  *    Revision 1.19  2001/09/13 23:31:25  jongfoster
274  *    Moving image data to cgi.c rather than cgi.h.
275  *
276  *    Revision 1.18  2001/08/05 16:06:20  jongfoster
277  *    Modifiying "struct map" so that there are now separate header and
278  *    "map_entry" structures.  This means that functions which modify a
279  *    map no longer need to return a pointer to the modified map.
280  *    Also, it no longer reverses the order of the entries (which may be
281  *    important with some advanced template substitutions).
282  *
283  *    Revision 1.17  2001/08/05 15:57:38  oes
284  *    Adapted finish_http_response to new list_to_text
285  *
286  *    Revision 1.16  2001/08/01 21:33:18  jongfoster
287  *    Changes to fill_template() that reduce memory usage without having
288  *    an impact on performance.  I also renamed some variables so as not
289  *    to clash with the C++ keywords "new" and "template".
290  *
291  *    Revision 1.15  2001/08/01 21:19:22  jongfoster
292  *    Moving file version information to a separate CGI page.
293  *
294  *    Revision 1.14  2001/08/01 00:19:03  jongfoster
295  *    New function: map_conditional() for an if-then-else syntax.
296  *    Changing to use new version of show_defines()
297  *
298  *    Revision 1.13  2001/07/30 22:08:36  jongfoster
299  *    Tidying up #defines:
300  *    - All feature #defines are now of the form FEATURE_xxx
301  *    - Permanently turned off WIN_GUI_EDIT
302  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
303  *
304  *    Revision 1.12  2001/07/29 18:47:05  jongfoster
305  *    Adding missing #include "loadcfg.h"
306  *
307  *    Revision 1.11  2001/07/18 17:24:37  oes
308  *    Changed to conform to new pcrs interface
309  *
310  *    Revision 1.10  2001/07/13 13:53:13  oes
311  *    Removed all #ifdef PCRS and related code
312  *
313  *    Revision 1.9  2001/06/29 21:45:41  oes
314  *    Indentation, CRLF->LF, Tab-> Space
315  *
316  *    Revision 1.8  2001/06/29 13:21:46  oes
317  *    - Cosmetics: renamed and reordered functions, variables,
318  *      texts, improved comments  etc
319  *
320  *    - Removed ij_untrusted_url() The relevant
321  *      info is now part of the "untrusted" page,
322  *      which is generated by filters.c:trust_url()
323  *
324  *    - Generators of content now call finish_http_response()
325  *      themselves, making jcc.c:chat() a little less
326  *      cluttered
327  *
328  *    - Removed obsolete "Pragma: no-cache" from our headers
329  *
330  *    - http_responses now know their head length
331  *
332  *    - fill_template now uses the new interface to pcrs, so that
333  *       - long jobs (like whole files) no longer have to be assembled
334  *         in a fixed size buffer
335  *       - the new T (trivial) option is used, and the replacement may
336  *         contain Perl syntax backrefs without confusing pcrs
337  *
338  *    - Introduced default_exports() which generates a set of exports
339  *      common to all CGIs and other content generators
340  *
341  *    - Introduced convenience function map_block_killer()
342  *
343  *    - Introduced convenience function make_menu()
344  *
345  *    - Introduced CGI-like function error_response() which generates
346  *      the "No such domain" and "Connect failed" messages using the
347  *      CGI platform
348  *
349  *    - cgi_show_url_info:
350  *      - adapted to new CGI features
351  *      - form and answers now generated from same template
352  *      - http:// prefix in URL now OK
353  *
354  *    - cgi_show_status:
355  *      - adapted to new CGI features
356  *      - no longer uses csp->init_proxy_args
357  *
358  *    - cgi_default:
359  *      - moved menu generation to make_menu()
360  *
361  *    - add_stats now writes single export map entries instead
362  *      of a fixed string
363  *
364  *    - Moved redirect_url() to filters.c
365  *
366  *    - Fixed mem leak in free_http_response(), map_block_killer(),
367  *
368  *    - Removed logentry from cancelled commit
369  *
370  *    Revision 1.7  2001/06/09 10:51:58  jongfoster
371  *    Changing "show URL info" handler to new style.
372  *    Changing BUFSIZ ==> BUFFER_SIZE
373  *
374  *    Revision 1.6  2001/06/07 23:05:19  jongfoster
375  *    Removing code related to old forward and ACL files.
376  *
377  *    Revision 1.5  2001/06/05 19:59:16  jongfoster
378  *    Fixing multiline character string (a GCC-only "feature"), and snprintf (it's _snprintf under VC++).
379  *
380  *    Revision 1.4  2001/06/04 10:41:52  swa
381  *    show version string of cgi.h and cgi.c
382  *
383  *    Revision 1.3  2001/06/03 19:12:16  oes
384  *    introduced new cgi handling
385  *
386  *    No revisions before 1.3
387  *
388  **********************************************************************/
389 \f
390
391 #include "config.h"
392
393 #include <stdio.h>
394 #include <sys/types.h>
395 #include <stdlib.h>
396 #include <ctype.h>
397 #include <string.h>
398 #include <limits.h>
399 #include <assert.h>
400
401 #ifdef _WIN32
402 #define snprintf _snprintf
403 #endif /* def _WIN32 */
404
405 #include "project.h"
406 #include "cgi.h"
407 #include "list.h"
408 #include "encode.h"
409 #include "ssplit.h"
410 #include "errlog.h"
411 #include "miscutil.h"
412 #include "cgisimple.h"
413 #ifdef FEATURE_CGI_EDIT_ACTIONS
414 #include "cgiedit.h"
415 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
416 #include "loadcfg.h"
417 /* loadcfg.h is for g_bToggleIJB only */
418
419 const char cgi_h_rcs[] = CGI_H_VERSION;
420
421 /*
422  * List of CGI functions: name, handler, description
423  * Note: Do NOT use single quotes in the description;
424  *       this will break the dynamic "blocked" template!
425  */
426 static const struct cgi_dispatcher cgi_dispatchers[] = {
427    { "",
428          cgi_default,
429          "Privoxy main page" },
430 #ifdef FEATURE_GRACEFUL_TERMINATION
431    { "die", 
432          cgi_die,  
433          "<b>Shut down</b> - <em class=\"warning\">Do not deploy this build in a production environment, "
434          "this is a one click Denial Of Service attack!!!</em>" }, 
435 #endif
436    { "show-status", 
437          cgi_show_status,  
438          "View & change the current configuration" }, 
439    { "show-version", 
440          cgi_show_version,  
441          "View the source code version numbers" }, 
442    { "show-request", 
443          cgi_show_request,  
444          "View the request headers." }, 
445    { "show-url-info",
446          cgi_show_url_info, 
447          "Look up which actions apply to a URL and why"  },
448 #ifdef FEATURE_CGI_EDIT_ACTIONS
449    { "toggle",
450          cgi_toggle, 
451          "Toggle Privoxy on or off" },
452
453    { "edit-actions", /* Edit the actions list */
454          cgi_edit_actions, 
455          NULL },
456    { "eaa", /* Shortcut for edit-actions-add-url-form */
457          cgi_edit_actions_add_url_form, 
458          NULL },
459    { "eau", /* Shortcut for edit-actions-url-form */
460          cgi_edit_actions_url_form, 
461          NULL },
462    { "ear", /* Shortcut for edit-actions-remove-url-form */
463          cgi_edit_actions_remove_url_form, 
464          NULL },
465    { "eafu", /* Shortcut for edit-actions-for-url */
466          cgi_edit_actions_for_url, 
467          NULL },
468    { "eas", /* Shortcut for edit-actions-submit */
469          cgi_edit_actions_submit, 
470          NULL },
471    { "easa", /* Shortcut for edit-actions-section-add */
472          cgi_edit_actions_section_add, 
473          NULL },
474    { "easr", /* Shortcut for edit-actions-section-remove */
475          cgi_edit_actions_section_remove, 
476          NULL },
477    { "eass", /* Shortcut for edit-actions-section-swap */
478          cgi_edit_actions_section_swap, 
479          NULL },
480    { "edit-actions-for-url",
481          cgi_edit_actions_for_url, 
482          NULL /* Edit the actions for (a) specified URL(s) */ },
483    { "edit-actions-list",
484          cgi_edit_actions_list, 
485          NULL /* Edit the actions list */ },
486    { "edit-actions-submit",
487          cgi_edit_actions_submit, 
488          NULL /* Change the actions for (a) specified URL(s) */ },
489    { "edit-actions-url",
490          cgi_edit_actions_url, 
491          NULL /* Change a URL pattern in the actionsfile */ },
492    { "edit-actions-url-form",
493          cgi_edit_actions_url_form, 
494          NULL /* Form to change a URL pattern in the actionsfile */ },
495    { "edit-actions-add-url",
496          cgi_edit_actions_add_url, 
497          NULL /* Add a URL pattern to the actionsfile */ },
498    { "edit-actions-add-url-form",
499          cgi_edit_actions_add_url_form, 
500          NULL /* Form to add a URL pattern to the actionsfile */ },
501    { "edit-actions-remove-url",
502          cgi_edit_actions_remove_url, 
503          NULL /* Remove a URL pattern from the actionsfile */ },
504    { "edit-actions-remove-url-form",
505          cgi_edit_actions_remove_url_form, 
506          NULL /* Form to remove a URL pattern from the actionsfile */ },
507    { "edit-actions-section-add",
508          cgi_edit_actions_section_add, 
509          NULL /* Remove a section from the actionsfile */ },
510    { "edit-actions-section-remove",
511          cgi_edit_actions_section_remove, 
512          NULL /* Remove a section from the actionsfile */ },
513    { "edit-actions-section-swap",
514          cgi_edit_actions_section_swap, 
515          NULL /* Swap two sections in the actionsfile */ },
516 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
517    { "robots.txt", 
518          cgi_robots_txt,  
519          NULL /* Sends a robots.txt file to tell robots to go away. */ }, 
520    { "send-banner",
521          cgi_send_banner, 
522          NULL /* Send a built-in image */ },
523    { "send-stylesheet",
524          cgi_send_stylesheet, 
525          NULL /* Send templates/cgi-style.css */ },
526    { "t",
527          cgi_transparent_image, 
528          NULL /* Send a transparent image (short name) */ },
529    { NULL, /* NULL Indicates end of list and default page */
530          cgi_error_404,
531          NULL /* Unknown CGI page */ }
532 };
533
534
535 /*
536  * Bulit-in images for ad replacement
537  *
538  * Hint: You can encode your own images like this:
539  * cat your-image | perl -e 'while (read STDIN, $c, 1) { printf("\\%.3o", unpack("C", $c)); }'
540  */
541
542 #ifdef FEATURE_NO_GIFS
543
544 /*
545  * Checkerboard pattern, as a PNG.
546  */
547 const char image_pattern_data[] =
548    "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104"
549    "\122\000\000\000\004\000\000\000\004\010\002\000\000\000\046"
550    "\223\011\051\000\000\000\006\142\113\107\104\000\310\000\310"
551    "\000\310\052\045\225\037\000\000\000\032\111\104\101\124\170"
552    "\332\143\070\161\342\304\377\377\377\041\044\003\234\165\342"
553    "\304\011\006\234\062\000\125\200\052\251\125\174\360\223\000"
554    "\000\000\000\111\105\116\104\256\102\140\202";
555
556 /*
557  * 1x1 transparant PNG.
558  */
559 const char image_blank_data[] =
560  "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104\122"
561  "\000\000\000\004\000\000\000\004\010\006\000\000\000\251\361\236"
562  "\176\000\000\000\007\164\111\115\105\007\322\003\013\020\073\070"
563  "\013\025\036\203\000\000\000\011\160\110\131\163\000\000\013\022"
564  "\000\000\013\022\001\322\335\176\374\000\000\000\004\147\101\115"
565  "\101\000\000\261\217\013\374\141\005\000\000\000\033\111\104\101"
566  "\124\170\332\143\070\161\342\304\207\377\377\377\347\302\150\006"
567  "\144\016\210\146\040\250\002\000\042\305\065\221\270\027\131\110"
568  "\000\000\000\000\111\105\116\104\256\102\140\202";
569 #else
570
571 /*
572  * Checkerboard pattern, as a GIF.
573  */
574 const char image_pattern_data[] =
575    "\107\111\106\070\071\141\004\000\004\000\200\000\000\310\310"
576    "\310\377\377\377\041\376\016\111\040\167\141\163\040\141\040"
577    "\142\141\156\156\145\162\000\041\371\004\001\012\000\001\000"
578    "\054\000\000\000\000\004\000\004\000\000\002\005\104\174\147"
579    "\270\005\000\073";
580
581 /*
582  * 1x1 transparant GIF.
583  */
584 const char image_blank_data[] =
585    "GIF89a\001\000\001\000\200\000\000\377\377\377\000\000"
586    "\000!\371\004\001\000\000\000\000,\000\000\000\000\001"
587    "\000\001\000\000\002\002D\001\000;";
588 #endif
589
590 const size_t image_pattern_length = sizeof(image_pattern_data) - 1;
591 const size_t image_blank_length   = sizeof(image_blank_data) - 1;
592
593
594 static struct http_response cgi_error_memory_response[1];
595
596 static struct http_response *dispatch_known_cgi(struct client_state * csp,
597                                                 const char * path);
598 static struct map *parse_cgi_parameters(char *argstring);
599
600
601 /*********************************************************************
602  * 
603  * Function    :  dispatch_cgi
604  *
605  * Description :  Checks if a request URL has either the magical
606  *                hostname CGI_SITE_1_HOST (usually http://p.p/) or
607  *                matches CGI_SITE_2_HOST CGI_SITE_2_PATH (usually
608  *                http://config.privoxy.org/). If so, it passes
609  *                the (rest of the) path onto dispatch_known_cgi, which
610  *                calls the relevant CGI handler function.
611  *
612  * Parameters  :
613  *          1  :  csp = Current client state (buffers, headers, etc...)
614  *
615  * Returns     :  http_response if match, NULL if nonmatch or handler fail
616  *
617  *********************************************************************/
618 struct http_response *dispatch_cgi(struct client_state *csp)
619 {
620    const char *host = csp->http->host;
621    const char *path = csp->http->path;
622
623    /*
624     * Should we intercept ?
625     */
626
627    /* Note: "example.com" and "example.com." are equivalent hostnames. */
628
629    /* Either the host matches CGI_SITE_1_HOST ..*/
630    if (   ( (0 == strcmpic(host, CGI_SITE_1_HOST))
631          || (0 == strcmpic(host, CGI_SITE_1_HOST ".")))
632        && (path[0] == '/') )
633    {
634       /* ..then the path will all be for us.  Remove leading '/' */
635       path++;
636    }
637    /* Or it's the host part CGI_SITE_2_HOST, and the path CGI_SITE_2_PATH */
638    else if ( ( (0 == strcmpic(host, CGI_SITE_2_HOST ))
639             || (0 == strcmpic(host, CGI_SITE_2_HOST ".")) )
640           && (0 == strncmpic(path, CGI_SITE_2_PATH, strlen(CGI_SITE_2_PATH))) )
641    {
642       /* take everything following CGI_SITE_2_PATH */
643       path += strlen(CGI_SITE_2_PATH);
644       if (*path == '/')
645       {
646          /* skip the forward slash after CGI_SITE_2_PATH */
647          path++;
648       }
649       else if (*path != '\0')
650       {
651          /*
652           * wierdness: URL is /configXXX, where XXX is some string
653           * Do *NOT* intercept.
654           */
655          return NULL;
656       }
657    }
658    else
659    {
660       /* Not a CGI */
661       return NULL;
662    }
663
664    /* 
665     * This is a CGI call.
666     */
667
668    return dispatch_known_cgi(csp, path);
669 }
670
671
672 /*********************************************************************
673  * 
674  * Function    :  dispatch_known_cgi
675  *
676  * Description :  Processes a CGI once dispatch_cgi has determined that
677  *                it matches one of the magic prefixes. Parses the path
678  *                as a cgi name plus query string, prepares a map that
679  *                maps CGI parameter names to their values, initializes
680  *                the http_response struct, and calls the relevant CGI
681  *                handler function.
682  *
683  * Parameters  :
684  *          1  :  csp = Current client state (buffers, headers, etc...)
685  *          2  :  path = Path of CGI, with the CGI prefix removed.
686  *                       Should not have a leading "/".
687  *
688  * Returns     :  http_response, or NULL on handler failure or out of
689  *                memory.
690  *
691  *********************************************************************/
692 static struct http_response *dispatch_known_cgi(struct client_state * csp,
693                                                 const char * path)
694 {
695    const struct cgi_dispatcher *d;
696    struct map *param_list;
697    struct http_response *rsp;
698    char *query_args_start;
699    char *path_copy;
700    jb_err err;
701
702    if (NULL == (path_copy = strdup(path)))
703    {
704       return cgi_error_memory();
705    }
706
707    query_args_start = path_copy;
708    while (*query_args_start && *query_args_start != '?')
709    {
710       query_args_start++;
711    }
712    if (*query_args_start == '?')
713    {
714       *query_args_start++ = '\0';
715    }
716
717    if (NULL == (param_list = parse_cgi_parameters(query_args_start)))
718    {
719       free(path_copy);
720       return cgi_error_memory();
721    }
722
723
724    /*
725     * At this point:
726     * path_copy        = CGI call name
727     * param_list       = CGI params, as map
728     */
729
730    /* Get mem for response or fail*/
731    if (NULL == (rsp = alloc_http_response()))
732    {
733       free(path_copy);
734       free_map(param_list);
735       return cgi_error_memory();
736    }
737
738    log_error(LOG_LEVEL_GPC, "%s%s cgi call", csp->http->hostport, csp->http->path);
739    log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 200 3", 
740                             csp->ip_addr_str, csp->http->cmd); 
741
742    /* Find and start the right CGI function*/
743    d = cgi_dispatchers;
744    for (;;)
745    {
746       if ((d->name == NULL) || (strcmp(path_copy, d->name) == 0))
747       {
748          err = (d->handler)(csp, rsp, param_list);
749          free(path_copy);
750          free_map(param_list);
751          if (err == JB_ERR_CGI_PARAMS)
752          {
753             err = cgi_error_bad_param(csp, rsp);
754          }
755          if (err && (err != JB_ERR_MEMORY))
756          {
757             /* Unexpected error! Shouldn't get here */
758             log_error(LOG_LEVEL_ERROR, "Unexpected CGI error %d in top-level handler.  Please file a bug report!", err);
759             err = cgi_error_unknown(csp, rsp, err);
760          }
761          if (!err)
762          {
763             /* It worked */
764             return finish_http_response(rsp);
765          }
766          else
767          {
768             /* Error in handler, probably out-of-memory */
769             free_http_response(rsp);
770             return cgi_error_memory();
771          }
772       }
773       d++;
774    }
775 }
776
777
778 /*********************************************************************
779  *
780  * Function    :  parse_cgi_parameters
781  *
782  * Description :  Parse a URL-encoded argument string into name/value
783  *                pairs and store them in a struct map list.
784  *
785  * Parameters  :
786  *          1  :  argstring = string to be parsed.  Will be trashed.
787  *
788  * Returns     :  pointer to param list, or NULL if out of memory.
789  *
790  *********************************************************************/
791 static struct map *parse_cgi_parameters(char *argstring)
792 {
793    char *p;
794    char *vector[BUFFER_SIZE];
795    int pairs, i;
796    struct map *cgi_params;
797
798    if (NULL == (cgi_params = new_map()))
799    {
800       return NULL;
801    }
802
803    pairs = ssplit(argstring, "&", vector, SZ(vector), 1, 1);
804
805    for (i = 0; i < pairs; i++)
806    {
807       if ((NULL != (p = strchr(vector[i], '='))) && (*(p+1) != '\0'))
808       {
809          *p = '\0';
810          if (map(cgi_params, url_decode(vector[i]), 0, url_decode(++p), 0))
811          {
812             free_map(cgi_params);
813             return NULL;
814          }
815       }
816    }
817
818    return cgi_params;
819
820 }
821
822
823 /*********************************************************************
824  *
825  * Function    :  get_char_param
826  *
827  * Description :  Get a single-character parameter passed to a CGI
828  *                function.
829  *
830  * Parameters  :
831  *          1  :  parameters = map of cgi parameters
832  *          2  :  param_name = The name of the parameter to read
833  *
834  * Returns     :  Uppercase character on success, '\0' on error.
835  *
836  *********************************************************************/
837 char get_char_param(const struct map *parameters,
838                     const char *param_name)
839 {
840    char ch;
841
842    assert(parameters);
843    assert(param_name);
844
845    ch = *(lookup(parameters, param_name));
846    if ((ch >= 'a') && (ch <= 'z'))
847    {
848       ch = ch - 'a' + 'A';
849    }
850
851    return ch;
852 }
853
854
855 /*********************************************************************
856  *
857  * Function    :  get_string_param
858  *
859  * Description :  Get a string paramater, to be used as an
860  *                ACTION_STRING or ACTION_MULTI paramater.
861  *                Validates the input to prevent stupid/malicious
862  *                users from corrupting their action file.
863  *
864  * Parameters  :
865  *          1  :  parameters = map of cgi parameters
866  *          2  :  param_name = The name of the parameter to read
867  *          3  :  pparam = destination for paramater.  Allocated as
868  *                part of the map "parameters", so don't free it.
869  *                Set to NULL if not specified.
870  *
871  * Returns     :  JB_ERR_OK         on success, or if the paramater
872  *                                  was not specified.
873  *                JB_ERR_MEMORY     on out-of-memory.
874  *                JB_ERR_CGI_PARAMS if the paramater is not valid.
875  *
876  *********************************************************************/
877 jb_err get_string_param(const struct map *parameters,
878                         const char *param_name,
879                         const char **pparam)
880 {
881    const char *param;
882    const char *s;
883    char ch;
884
885    assert(parameters);
886    assert(param_name);
887    assert(pparam);
888
889    *pparam = NULL;
890
891    param = lookup(parameters, param_name);
892    if (!*param)
893    {
894       return JB_ERR_OK;
895    }
896
897    if (strlen(param) >= CGI_PARAM_LEN_MAX)
898    {
899       /*
900        * Too long.
901        *
902        * Note that the length limit is arbitrary, it just seems
903        * sensible to limit it to *something*.  There's no
904        * technical reason for any limit at all.
905        */
906       return JB_ERR_CGI_PARAMS;
907    }
908
909    /* Check every character to see if it's legal */
910    s = param;
911    while ((ch = *s++) != '\0')
912    {
913       if ( ((unsigned char)ch < (unsigned char)' ')
914         || (ch == '}') )
915       {
916          /* Probable hack attempt, or user accidentally used '}'. */
917          return JB_ERR_CGI_PARAMS;
918       }
919    }
920
921    /* Success */
922    *pparam = param;
923
924    return JB_ERR_OK;
925 }
926
927
928 /*********************************************************************
929  *
930  * Function    :  get_number_param
931  *
932  * Description :  Get a non-negative integer from the parameters
933  *                passed to a CGI function.
934  *
935  * Parameters  :
936  *          1  :  csp = Current client state (buffers, headers, etc...)
937  *          2  :  parameters = map of cgi parameters
938  *          3  :  name = Name of CGI parameter to read
939  *          4  :  pvalue = destination for value.
940  *                         Set to -1 on error.
941  *
942  * Returns     :  JB_ERR_OK         on success
943  *                JB_ERR_MEMORY     on out-of-memory
944  *                JB_ERR_CGI_PARAMS if the parameter was not specified
945  *                                  or is not valid.
946  *
947  *********************************************************************/
948 jb_err get_number_param(struct client_state *csp,
949                         const struct map *parameters,
950                         char *name,
951                         unsigned *pvalue)
952 {
953    const char *param;
954    char ch;
955    unsigned value;
956
957    assert(csp);
958    assert(parameters);
959    assert(name);
960    assert(pvalue);
961
962    *pvalue = 0; 
963
964    param = lookup(parameters, name);
965    if (!*param)
966    {
967       return JB_ERR_CGI_PARAMS;
968    }
969
970    /* We don't use atoi because I want to check this carefully... */
971
972    value = 0;
973    while ((ch = *param++) != '\0')
974    {
975       if ((ch < '0') || (ch > '9'))
976       {
977          return JB_ERR_CGI_PARAMS;
978       }
979
980       ch -= '0';
981
982       /* Note:
983        *
984        * <limits.h> defines UINT_MAX
985        *
986        * (UINT_MAX - ch) / 10 is the largest number that
987        *     can be safely multiplied by 10 then have ch added.
988        */
989       if (value > ((UINT_MAX - (unsigned)ch) / 10U))
990       {
991          return JB_ERR_CGI_PARAMS;
992       }
993
994       value = value * 10 + ch;
995    }
996
997    /* Success */
998    *pvalue = value;
999
1000    return JB_ERR_OK;
1001
1002 }
1003
1004
1005 /*********************************************************************
1006  *
1007  * Function    :  error_response
1008  *
1009  * Description :  returns an http_response that explains the reason
1010  *                why a request failed.
1011  *
1012  * Parameters  :
1013  *          1  :  csp = Current client state (buffers, headers, etc...)
1014  *          2  :  templatename = Which template should be used for the answer
1015  *          3  :  sys_err = system error number
1016  *
1017  * Returns     :  A http_response.  If we run out of memory, this
1018  *                will be cgi_error_memory().
1019  *
1020  *********************************************************************/
1021 struct http_response *error_response(struct client_state *csp,
1022                                      const char *templatename,
1023                                      int sys_err)
1024 {
1025    jb_err err;
1026    struct http_response *rsp;
1027    struct map * exports = default_exports(csp, NULL);
1028    if (exports == NULL)
1029    {
1030       return cgi_error_memory();
1031    }
1032
1033    if (NULL == (rsp = alloc_http_response()))
1034    {
1035       free_map(exports);
1036       return cgi_error_memory();
1037    }
1038
1039    err = map(exports, "host", 1, html_encode(csp->http->host), 0);
1040    if (!err) err = map(exports, "hostport", 1, html_encode(csp->http->hostport), 0);
1041    if (!err) err = map(exports, "path", 1, html_encode(csp->http->path), 0);
1042    if (!err) err = map(exports, "error", 1, html_encode_and_free_original(safe_strerror(sys_err)), 0);
1043    if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1); 
1044    if (!err)
1045    {
1046      err = map(exports, "host-ip", 1, html_encode(csp->http->host_ip_addr_str), 0);
1047      if (err)
1048      {
1049        /* Some failures, like "404 no such domain", don't have an IP address. */
1050        err = map(exports, "host-ip", 1, html_encode(csp->http->host), 0);
1051      }
1052    }
1053
1054
1055    if (err)
1056    {
1057       free_map(exports);
1058       free_http_response(rsp);
1059       return cgi_error_memory();
1060    }
1061
1062    if (!strcmp(templatename, "no-such-domain"))
1063    {
1064       rsp->status = strdup("404 No such domain");
1065       if (rsp->status == NULL)
1066       {
1067          free_map(exports);
1068          free_http_response(rsp);
1069          return cgi_error_memory();
1070       }
1071    }
1072    else if (!strcmp(templatename, "connect-failed"))
1073    {
1074       rsp->status = strdup("503 Connect failed");
1075       if (rsp->status == NULL)
1076       {
1077          free_map(exports);
1078          free_http_response(rsp);
1079          return cgi_error_memory();
1080       }
1081    }
1082
1083    err = template_fill_for_cgi(csp, templatename, exports, rsp);
1084    if (err)
1085    {
1086       free_http_response(rsp);
1087       return cgi_error_memory();
1088    }
1089
1090    return finish_http_response(rsp);
1091 }
1092
1093
1094 /*********************************************************************
1095  *
1096  * Function    :  cgi_init_error_messages
1097  *
1098  * Description :  Call at the start of the program to initialize
1099  *                the error message used by cgi_error_memory().
1100  *
1101  * Parameters  :  N/A
1102  *
1103  * Returns     :  N/A
1104  *
1105  *********************************************************************/
1106 void cgi_init_error_messages(void)
1107 {
1108    memset(cgi_error_memory_response, '\0', sizeof(*cgi_error_memory_response));
1109    cgi_error_memory_response->head =
1110       "HTTP/1.0 500 Internal Privoxy Error\r\n"
1111       "Content-Type: text/html\r\n"
1112       "\r\n";
1113    cgi_error_memory_response->body =
1114       "<html>\r\n"
1115       "<head><title>500 Internal Privoxy Error</title></head>\r\n"
1116       "<body>\r\n"
1117       "<h1>500 Internal Privoxy Error</h1>\r\n"
1118       "<p>Privoxy <b>ran out of memory</b> while processing your request.</p>\r\n"
1119       "<p>Please contact your proxy administrator, or try again later</p>\r\n"
1120       "</body>\r\n"
1121       "</html>\r\n";
1122
1123    cgi_error_memory_response->head_length =
1124       strlen(cgi_error_memory_response->head);
1125    cgi_error_memory_response->content_length =
1126       strlen(cgi_error_memory_response->body);
1127 }
1128
1129
1130 /*********************************************************************
1131  *
1132  * Function    :  cgi_error_memory
1133  *
1134  * Description :  Called if a CGI function runs out of memory.
1135  *                Returns a statically-allocated error response.
1136  *
1137  * Parameters  :  N/A
1138  *
1139  * Returns     :  http_response data structure for output.  This is
1140  *                statically allocated, for obvious reasons.
1141  *
1142  *********************************************************************/
1143 struct http_response *cgi_error_memory(void)
1144 {
1145    /* assert that it's been initialized. */
1146    assert(cgi_error_memory_response->head);
1147
1148    return cgi_error_memory_response;
1149 }
1150
1151
1152 /*********************************************************************
1153  *
1154  * Function    :  cgi_error_no_template
1155  *
1156  * Description :  Almost-CGI function that is called if a template
1157  *                cannot be loaded.  Note this is not a true CGI,
1158  *                it takes a template name rather than a map of 
1159  *                parameters.
1160  *
1161  * Parameters  :
1162  *          1  :  csp = Current client state (buffers, headers, etc...)
1163  *          2  :  rsp = http_response data structure for output
1164  *          3  :  template_name = Name of template that could not
1165  *                                be loaded.
1166  *
1167  * Returns     :  JB_ERR_OK on success
1168  *                JB_ERR_MEMORY on out-of-memory error.  
1169  *
1170  *********************************************************************/
1171 jb_err cgi_error_no_template(struct client_state *csp,
1172                              struct http_response *rsp,
1173                              const char *template_name)
1174 {
1175    static const char status[] =
1176       "500 Internal Privoxy Error";
1177    static const char body_prefix[] =
1178       "<html>\r\n"
1179       "<head><title>500 Internal Privoxy Error</title></head>\r\n"
1180       "<body>\r\n"
1181       "<h1>500 Internal Privoxy Error</h1>\r\n"
1182       "<p>Privoxy encountered an error while processing your request:</p>\r\n"
1183       "<p><b>Could not load template file <code>";
1184    static const char body_suffix[] =
1185       "</code> or one of it's included components.</b></p>\r\n"
1186       "<p>Please contact your proxy administrator.</p>\r\n"
1187       "<p>If you are the proxy administrator, please put the required file(s)"
1188       "in the <code><i>(confdir)</i>/templates</code> directory.  The "
1189       "location of the <code><i>(confdir)</i></code> directory "
1190       "is specified in the main Privoxy <code>config</code> "
1191       "file.  (It's typically the Privoxy install directory"
1192 #ifndef _WIN32
1193       ", or <code>/etc/privoxy/</code>"
1194 #endif /* ndef _WIN32 */
1195       ").</p>\r\n"
1196       "</body>\r\n"
1197       "</html>\r\n";
1198
1199    assert(csp);
1200    assert(rsp);
1201    assert(template_name);
1202
1203    /* Reset rsp, if needed */
1204    freez(rsp->status);
1205    freez(rsp->head);
1206    freez(rsp->body);
1207    rsp->content_length = 0;
1208    rsp->head_length = 0;
1209    rsp->is_static = 0;
1210
1211    rsp->body = malloc(strlen(body_prefix) + strlen(template_name) + strlen(body_suffix) + 1);
1212    if (rsp->body == NULL)
1213    {
1214       return JB_ERR_MEMORY;
1215    }
1216    strcpy(rsp->body, body_prefix);
1217    strcat(rsp->body, template_name);
1218    strcat(rsp->body, body_suffix);
1219
1220    rsp->status = strdup(status);
1221    if (rsp->body == NULL)
1222    {
1223       return JB_ERR_MEMORY;
1224    }
1225
1226    return JB_ERR_OK;
1227 }
1228
1229
1230 /*********************************************************************
1231  *
1232  * Function    :  cgi_error_unknown
1233  *
1234  * Description :  Almost-CGI function that is called if an unexpected
1235  *                error occurs in the top-level CGI dispatcher.
1236  *                In this context, "unexpected" means "anything other
1237  *                than JB_ERR_MEMORY or JB_ERR_CGI_PARAMS" - CGIs are
1238  *                expected to handle all other errors internally,
1239  *                since they can give more relavent error messages
1240  *                that way.
1241  *
1242  *                Note this is not a true CGI, it takes an error
1243  *                code rather than a map of parameters.
1244  *
1245  * Parameters  :
1246  *          1  :  csp = Current client state (buffers, headers, etc...)
1247  *          2  :  rsp = http_response data structure for output
1248  *          3  :  error_to_report = Error code to report.
1249  *
1250  * Returns     :  JB_ERR_OK on success
1251  *                JB_ERR_MEMORY on out-of-memory error.  
1252  *
1253  *********************************************************************/
1254 jb_err cgi_error_unknown(struct client_state *csp,
1255                          struct http_response *rsp,
1256                          jb_err error_to_report)
1257 {
1258    static const char status[] =
1259       "500 Internal Privoxy Error";
1260    static const char body_prefix[] =
1261       "<html>\r\n"
1262       "<head><title>500 Internal Privoxy Error</title></head>\r\n"
1263       "<body>\r\n"
1264       "<h1>500 Internal Privoxy Error</h1>\r\n"
1265       "<p>Privoxy encountered an error while processing your request:</p>\r\n"
1266       "<p><b>Unexpected internal error: ";
1267    static const char body_suffix[] =
1268       "</b></p>\r\n"
1269       "<p>Please "
1270       "<a href=\"http://sourceforge.net/tracker/?group_id=11118&atid=111118\">"
1271       "file a bug report</a>.</p>\r\n"
1272       "</body>\r\n"
1273       "</html>\r\n";
1274    char errnumbuf[30];
1275    assert(csp);
1276    assert(rsp);
1277
1278    /* Reset rsp, if needed */
1279    freez(rsp->status);
1280    freez(rsp->head);
1281    freez(rsp->body);
1282    rsp->content_length = 0;
1283    rsp->head_length = 0;
1284    rsp->is_static = 0;
1285
1286    sprintf(errnumbuf, "%d", error_to_report);
1287
1288    rsp->body = malloc(strlen(body_prefix) + strlen(errnumbuf) + strlen(body_suffix) + 1);
1289    if (rsp->body == NULL)
1290    {
1291       return JB_ERR_MEMORY;
1292    }
1293    strcpy(rsp->body, body_prefix);
1294    strcat(rsp->body, errnumbuf);
1295    strcat(rsp->body, body_suffix);
1296
1297    rsp->status = strdup(status);
1298    if (rsp->body == NULL)
1299    {
1300       return JB_ERR_MEMORY;
1301    }
1302
1303    return JB_ERR_OK;
1304 }
1305
1306
1307 /*********************************************************************
1308  *
1309  * Function    :  cgi_error_bad_param
1310  *
1311  * Description :  CGI function that is called if the parameters
1312  *                (query string) for a CGI were wrong.
1313  *               
1314  * Parameters  :
1315  *          1  :  csp = Current client state (buffers, headers, etc...)
1316  *          2  :  rsp = http_response data structure for output
1317  *
1318  * CGI Parameters : none
1319  *
1320  * Returns     :  JB_ERR_OK on success
1321  *                JB_ERR_MEMORY on out-of-memory error.  
1322  *
1323  *********************************************************************/
1324 jb_err cgi_error_bad_param(struct client_state *csp,
1325                            struct http_response *rsp)
1326 {
1327    struct map *exports;
1328
1329    assert(csp);
1330    assert(rsp);
1331
1332    if (NULL == (exports = default_exports(csp, NULL)))
1333    {
1334       return JB_ERR_MEMORY;
1335    }
1336
1337    return template_fill_for_cgi(csp, "cgi-error-bad-param", exports, rsp);
1338 }
1339
1340
1341 /*********************************************************************
1342  *
1343  * Function    :  add_help_link
1344  *
1345  * Description :  Produce a copy of the string given as item,
1346  *                embedded in an HTML link to its corresponding
1347  *                section (item name in uppercase) in the actions
1348  *                chapter of the user manual, (whose URL is given in
1349  *                the config and defaults to our web site).
1350  *
1351  *                FIXME: I currently only work for actions, and would
1352  *                       like to be generalized for other topics.
1353  *
1354  * Parameters  :  
1355  *          1  :  item = item (will NOT be free()d.) 
1356  *                       It is assumed to be HTML-safe.
1357  *          2  :  config = The current configuration.
1358  *
1359  * Returns     :  String with item embedded in link, or NULL on
1360  *                out-of-memory
1361  *
1362  *********************************************************************/
1363 char *add_help_link(const char *item,
1364                     struct configuration_spec *config)
1365 {
1366    char *result;
1367
1368    if (!item) return NULL;
1369
1370    result = strdup("<a href=\"");
1371    string_append(&result, config->usermanual);
1372    string_append(&result, ACTIONS_HELP_PREFIX);
1373    string_join  (&result, string_toupper(item));
1374    string_append(&result, "\">");
1375    string_append(&result, item);
1376    string_append(&result, "</a> ");
1377
1378    return result;
1379 }
1380
1381
1382 /*********************************************************************
1383  *
1384  * Function    :  get_http_time
1385  *
1386  * Description :  Get the time in a format suitable for use in a
1387  *                HTTP header - e.g.:
1388  *                "Sun, 06 Nov 1994 08:49:37 GMT"
1389  *
1390  * Parameters  :  
1391  *          1  :  time_offset = Time returned will be current time
1392  *                              plus this number of seconds.
1393  *          2  :  buf = Destination for result.  Must be long enough
1394  *                      to hold 29 characters plus a trailing zero.
1395  *
1396  * Returns     :  N/A
1397  *
1398  *********************************************************************/
1399 void get_http_time(int time_offset, char *buf)
1400 {
1401    static const char day_names[7][4] =
1402       { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
1403    static const char month_names[12][4] =
1404       { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
1405         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
1406
1407    struct tm *t;
1408    time_t current_time;
1409
1410    assert(buf);
1411
1412    time(&current_time); /* get current time */
1413
1414    current_time += time_offset;
1415
1416    /* get and save the gmt */
1417    {
1418 #ifdef HAVE_GMTIME_R
1419       struct tm dummy;
1420       t = gmtime_r(&current_time, &dummy);
1421 #else
1422       t = gmtime(&current_time);
1423 #endif
1424    }
1425
1426    /* Format: "Sun, 06 Nov 1994 08:49:37 GMT" */
1427    snprintf(buf, 30,
1428       "%s, %02d %s %4d %02d:%02d:%02d GMT",
1429       day_names[t->tm_wday],
1430       t->tm_mday,
1431       month_names[t->tm_mon],
1432       t->tm_year + 1900,
1433       t->tm_hour,
1434       t->tm_min,
1435       t->tm_sec
1436       );
1437
1438 }
1439
1440
1441 /*********************************************************************
1442  *
1443  * Function    :  finish_http_response
1444  *
1445  * Description :  Fill in the missing headers in an http response,
1446  *                and flatten the headers to an http head.
1447  *
1448  * Parameters  :
1449  *          1  :  rsp = pointer to http_response to be processed
1450  *
1451  * Returns     :  A http_response, usually the rsp parameter.
1452  *                On error, free()s rsp and returns cgi_error_memory()
1453  *
1454  *********************************************************************/
1455 struct http_response *finish_http_response(struct http_response *rsp)
1456 {
1457    char buf[BUFFER_SIZE];
1458    jb_err err;
1459
1460    /* Special case - do NOT change this statically allocated response,
1461     * which is ready for output anyway.
1462     */
1463    if (rsp == cgi_error_memory_response)
1464    {
1465       return rsp;
1466    }
1467
1468    /* 
1469     * Fill in the HTTP Status
1470     */
1471    sprintf(buf, "HTTP/1.0 %s", rsp->status ? rsp->status : "200 OK");
1472    err = enlist_first(rsp->headers, buf);
1473
1474    /* 
1475     * Set the Content-Length
1476     */
1477    if (rsp->content_length == 0)
1478    {
1479       rsp->content_length = rsp->body ? strlen(rsp->body) : 0;
1480    }
1481    if (!err)
1482    {
1483       sprintf(buf, "Content-Length: %d", (int)rsp->content_length);
1484       err = enlist(rsp->headers, buf);
1485    }
1486
1487    /* 
1488     * Fill in the default headers:
1489     *
1490     * Content-Type: default to text/html if not already specified.
1491     * Date: set to current date/time.
1492     * Last-Modified: set to date/time the page was last changed.
1493     * Expires: set to date/time page next needs reloading.
1494     * Cache-Control: set to "no-cache" if applicable.
1495     * 
1496     * See http://www.w3.org/Protocols/rfc2068/rfc2068
1497     */
1498    if (!err) err = enlist_unique(rsp->headers, "Content-Type: text/html", 13);
1499
1500    if (rsp->is_static)
1501    {
1502       /*
1503        * Set Expires to about 10 min into the future so it'll get reloaded
1504        * occasionally, e.g. if Privoxy gets upgraded.
1505        */
1506
1507       if (!err)
1508       {
1509          get_http_time(0, buf);
1510          err = enlist_unique_header(rsp->headers, "Date", buf);
1511       }
1512
1513       /* Some date in the past. */
1514       if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Sat, 17 Jun 2000 12:00:00 GMT");
1515
1516       if (!err)
1517       {
1518          get_http_time(10 * 60, buf); /* 10 * 60sec = 10 minutes */
1519          err = enlist_unique_header(rsp->headers, "Expires", buf);
1520       }
1521    }
1522    else
1523    {
1524       /*
1525        * Compliant browsers should not cache this due to the "Cache-Control"
1526        * setting.  However, to be certain, we also set both "Last-Modified"
1527        * and "Expires" to the current time.
1528        */
1529       if (!err) err = enlist_unique_header(rsp->headers, "Cache-Control", "no-cache");
1530
1531       get_http_time(0, buf);
1532       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
1533       if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", buf);
1534       if (!err) err = enlist_unique_header(rsp->headers, "Expires", buf);
1535    }
1536
1537
1538    /* 
1539     * Write the head
1540     */
1541    if (err || (NULL == (rsp->head = list_to_text(rsp->headers))))
1542    {
1543       free_http_response(rsp);
1544       return cgi_error_memory();
1545    }
1546    rsp->head_length = strlen(rsp->head);
1547
1548    return rsp;
1549
1550 }
1551
1552
1553 /*********************************************************************
1554  *
1555  * Function    :  alloc_http_response
1556  *
1557  * Description :  Allocates a new http_response structure.
1558  *
1559  * Parameters  :  N/A
1560  *
1561  * Returns     :  pointer to a new http_response, or NULL.
1562  *
1563  *********************************************************************/
1564 struct http_response *alloc_http_response(void)
1565 {
1566    return (struct http_response *) zalloc(sizeof(struct http_response));
1567
1568 }
1569
1570
1571 /*********************************************************************
1572  *
1573  * Function    :  free_http_response
1574  *
1575  * Description :  Free the memory occupied by an http_response
1576  *                and its depandant structures.
1577  *
1578  * Parameters  :
1579  *          1  :  rsp = pointer to http_response to be freed
1580  *
1581  * Returns     :  N/A
1582  *
1583  *********************************************************************/
1584 void free_http_response(struct http_response *rsp)
1585 {
1586    /*
1587     * Must special case cgi_error_memory_response, which is never freed.
1588     */
1589    if (rsp && (rsp != cgi_error_memory_response))
1590    {
1591       freez(rsp->status);
1592       freez(rsp->head);
1593       freez(rsp->body);
1594       destroy_list(rsp->headers);
1595       free(rsp);
1596    }
1597
1598 }
1599
1600
1601 /*********************************************************************
1602  *
1603  * Function    :  template_load
1604  *
1605  * Description :  CGI support function that loads a given HTML
1606  *                template from the confdir, ignoring comment
1607  *                lines and following #include statements up to
1608  *                a depth of 1.
1609  *
1610  * Parameters  :
1611  *          1  :  csp = Current client state (buffers, headers, etc...)
1612  *          2  :  template_ptr = Destination for pointer to loaded
1613  *                               template text.
1614  *          3  :  templatename = name of the HTML template to be used
1615  *          4  :  recursive = Flag set if this function calls itself
1616  *                            following an #include statament
1617  *
1618  * Returns     :  JB_ERR_OK on success
1619  *                JB_ERR_MEMORY on out-of-memory error.  
1620  *                JB_ERR_FILE if the template file cannot be read
1621  *
1622  *********************************************************************/
1623 jb_err template_load(struct client_state *csp, char **template_ptr, 
1624                      const char *templatename, int recursive)
1625 {
1626    jb_err err;
1627    char *templates_dir_path;
1628    char *full_path;
1629    char *file_buffer;
1630    char *included_module;
1631    const char *p;
1632    FILE *fp;
1633    char buf[BUFFER_SIZE];
1634
1635    assert(csp);
1636    assert(template_ptr);
1637    assert(templatename);
1638
1639    *template_ptr = NULL;
1640
1641    /* Validate template name.  Paranoia. */
1642    for (p = templatename; *p != 0; p++)
1643    {
1644       if ( ((*p < 'a') || (*p > 'z'))
1645         && ((*p < 'A') || (*p > 'Z'))
1646         && ((*p < '0') || (*p > '9'))
1647         && (*p != '-')
1648         && (*p != '.'))
1649       {
1650          /* Illegal character */
1651          return JB_ERR_FILE;
1652       }
1653    }
1654
1655    /* Generate full path */
1656
1657    templates_dir_path = make_path(csp->config->confdir, "templates");
1658    if (templates_dir_path == NULL)
1659    {
1660       return JB_ERR_MEMORY;
1661    }
1662
1663    full_path = make_path(templates_dir_path, templatename);
1664    free(templates_dir_path);
1665    if (full_path == NULL)
1666    {
1667       return JB_ERR_MEMORY;
1668    }
1669
1670    /* Allocate buffer */
1671
1672    file_buffer = strdup("");
1673    if (file_buffer == NULL)
1674    {
1675       free(full_path);
1676       return JB_ERR_MEMORY;
1677    }
1678
1679    /* Open template file */
1680
1681    if (NULL == (fp = fopen(full_path, "r")))
1682    {
1683       log_error(LOG_LEVEL_ERROR, "Cannot open template file %s: %E", full_path);
1684       free(full_path);
1685       free(file_buffer);
1686       return JB_ERR_FILE;
1687    }
1688    free(full_path);
1689
1690    /* 
1691     * Read the file, ignoring comments, and honoring #include
1692     * statements, unless we're already called recursively.
1693     *
1694     * FIXME: The comment handling could break with lines >BUFFER_SIZE long.
1695     *        This is unlikely in practise.
1696     */
1697    while (fgets(buf, BUFFER_SIZE, fp))
1698    {
1699       if (!recursive && !strncmp(buf, "#include ", 9))
1700       {
1701          if (JB_ERR_OK != (err = template_load(csp, &included_module, chomp(buf + 9), 1)))
1702          {
1703             free(file_buffer);
1704             fclose(fp);
1705             return err;
1706          }
1707
1708          if (string_join(&file_buffer, included_module))
1709          {
1710             fclose(fp);
1711             return JB_ERR_MEMORY;
1712          }
1713
1714          continue;
1715       }
1716
1717       /* skip lines starting with '#' */
1718       if (*buf == '#')
1719       {
1720          continue;
1721       }
1722
1723       if (string_append(&file_buffer, buf))
1724       {
1725          fclose(fp);
1726          return JB_ERR_MEMORY;
1727       }
1728    }
1729    fclose(fp);
1730
1731    *template_ptr = file_buffer;
1732
1733    return JB_ERR_OK;
1734 }
1735
1736
1737 /*********************************************************************
1738  *
1739  * Function    :  template_fill
1740  *
1741  * Description :  CGI support function that fills in a pre-loaded
1742  *                HTML template by replacing @name@ with value using
1743  *                pcrs, for each item in the output map.
1744  *
1745  *                Note that a leading '$' charachter in the export map's
1746  *                values will be stripped and toggle on backreference
1747  *                interpretation.
1748  *
1749  * Parameters  :
1750  *          1  :  template_ptr = IN: Template to be filled out.
1751  *                                   Will be free()d.
1752  *                               OUT: Filled out template.
1753  *                                    Caller must free().
1754  *          2  :  exports = map with fill in symbol -> name pairs
1755  *
1756  * Returns     :  JB_ERR_OK on success
1757  *                JB_ERR_MEMORY on out-of-memory error
1758  *
1759  *********************************************************************/
1760 jb_err template_fill(char **template_ptr, const struct map *exports)
1761 {
1762    struct map_entry *m;
1763    pcrs_job *job;
1764    char buf[BUFFER_SIZE];
1765    char *tmp_out_buffer;
1766    char *file_buffer;
1767    size_t  size;
1768    int error;
1769    const char *flags;
1770
1771    assert(template_ptr);
1772    assert(*template_ptr);
1773    assert(exports);
1774
1775    file_buffer = *template_ptr;
1776    size = strlen(file_buffer) + 1;
1777
1778    /* 
1779     * Assemble pcrs joblist from exports map
1780     */
1781    for (m = exports->first; m != NULL; m = m->next)
1782    {
1783       if (*m->name == '$')
1784       {
1785          /*
1786           * First character of name is '$', so remove this flag
1787           * character and allow backreferences ($1 etc) in the
1788           * "replace with" text.
1789           */
1790          snprintf(buf, BUFFER_SIZE, "%s", m->name + 1);
1791          flags = "sigU";
1792       }
1793       else
1794       {
1795          /*
1796           * Treat the "replace with" text as a literal string - 
1797           * no quoting needed, no backreferences allowed.
1798           * ("Trivial" ['T'] flag).
1799           */
1800          flags = "sigTU";
1801
1802          /* Enclose name in @@ */
1803          snprintf(buf, BUFFER_SIZE, "@%s@", m->name);
1804       }
1805
1806
1807       log_error(LOG_LEVEL_CGI, "Substituting: s/%s/%s/%s", buf, m->value, flags);
1808
1809       /* Make and run job. */
1810       job = pcrs_compile(buf, m->value, flags,  &error);
1811       if (job == NULL) 
1812       {
1813          if (error == PCRS_ERR_NOMEM)
1814          {
1815             free(file_buffer);
1816             *template_ptr = NULL;
1817             return JB_ERR_MEMORY;
1818          }
1819          else
1820          {
1821             log_error(LOG_LEVEL_ERROR, "Error compiling template fill job %s: %d", m->name, error);
1822             /* Hope it wasn't important and silently ignore the invalid job */
1823          }
1824       }
1825       else
1826       {
1827          pcrs_execute(job, file_buffer, size, &tmp_out_buffer, &size);
1828          free(file_buffer);
1829          pcrs_free_job(job);
1830          if (NULL == tmp_out_buffer)
1831          {
1832             *template_ptr = NULL;
1833             return JB_ERR_MEMORY;
1834          }
1835          file_buffer = tmp_out_buffer;
1836       }
1837    }
1838
1839    /*
1840     * Return
1841     */
1842    *template_ptr = file_buffer;
1843    return JB_ERR_OK;
1844 }
1845
1846
1847 /*********************************************************************
1848  *
1849  * Function    :  template_fill_for_cgi
1850  *
1851  * Description :  CGI support function that loads a HTML template
1852  *                and fills it in.  Handles file-not-found errors
1853  *                by sending a HTML error message.  For convenience,
1854  *                this function also frees the passed "exports" map.
1855  *
1856  * Parameters  :
1857  *          1  :  csp = Client state
1858  *          2  :  templatename = name of the HTML template to be used
1859  *          3  :  exports = map with fill in symbol -> name pairs.
1860  *                          Will be freed by this function.
1861  *          4  :  rsp = Response structure to fill in.
1862  *
1863  * Returns     :  JB_ERR_OK on success
1864  *                JB_ERR_MEMORY on out-of-memory error
1865  *
1866  *********************************************************************/
1867 jb_err template_fill_for_cgi(struct client_state *csp,
1868                              const char *templatename,
1869                              struct map *exports,
1870                              struct http_response *rsp)
1871 {
1872    jb_err err;
1873    
1874    assert(csp);
1875    assert(templatename);
1876    assert(exports);
1877    assert(rsp);
1878
1879    err = template_load(csp, &rsp->body, templatename, 0);
1880    if (err == JB_ERR_FILE)
1881    {
1882       free_map(exports);
1883       return cgi_error_no_template(csp, rsp, templatename);
1884    }
1885    else if (err)
1886    {
1887       free_map(exports);
1888       return err; /* JB_ERR_MEMORY */
1889    }
1890    err = template_fill(&rsp->body, exports);
1891    free_map(exports);
1892    return err;
1893 }
1894
1895
1896 /*********************************************************************
1897  *
1898  * Function    :  default_exports
1899  *
1900  * Description :  returns a struct map list that contains exports
1901  *                which are common to all CGI functions.
1902  *
1903  * Parameters  :
1904  *          1  :  csp = Current client state (buffers, headers, etc...)
1905  *          2  :  caller = name of CGI who calls us and which should
1906  *                         be excluded from the generated menu. May be
1907  *                         NULL.
1908  * Returns     :  NULL if no memory, else a new map.  Caller frees.
1909  *
1910  *********************************************************************/
1911 struct map *default_exports(const struct client_state *csp, const char *caller)
1912 {
1913    char buf[20];
1914    jb_err err;
1915    struct map * exports;
1916    int local_help_exists = 0;
1917
1918    assert(csp);
1919
1920    exports = new_map();
1921    if (exports == NULL)
1922    {
1923       return NULL;
1924    }
1925
1926    err = map(exports, "version", 1, html_encode(VERSION), 0);
1927    if (!err) err = map(exports, "my-ip-address", 1, html_encode(csp->my_ip_addr_str ? csp->my_ip_addr_str : "unknown"), 0);
1928    if (!err) err = map(exports, "my-hostname",   1, html_encode(csp->my_hostname ? csp->my_hostname : "unknown"), 0);
1929    if (!err) err = map(exports, "homepage",      1, html_encode(HOME_PAGE_URL), 0);
1930    if (!err) err = map(exports, "default-cgi",   1, html_encode(CGI_PREFIX), 0);
1931    if (!err) err = map(exports, "menu",          1, make_menu(caller), 0);
1932    if (!err) err = map(exports, "code-status",   1, CODE_STATUS, 1);
1933    if (!err) err = map(exports, "user-manual",   1, csp->config->usermanual ,1);
1934    if (!err) err = map(exports, "actions-help-prefix", 1, ACTIONS_HELP_PREFIX ,1);
1935    if (!err) err = map_conditional(exports, "enabled-display", g_bToggleIJB);
1936
1937    snprintf(buf, 20, "%d", csp->config->hport);
1938    if (!err) err = map(exports, "my-port", 1, buf, 1);
1939
1940    if(!strcmp(CODE_STATUS, "stable"))
1941    {
1942       if (!err) err = map_block_killer(exports, "unstable");
1943    }
1944
1945    if (csp->config->admin_address != NULL)
1946    {
1947       if (!err) err = map(exports, "admin-address", 1, html_encode(csp->config->admin_address), 0);
1948       local_help_exists = 1;
1949    }
1950    else
1951    {
1952       if (!err) err = map_block_killer(exports, "have-adminaddr-info");
1953    }
1954
1955    if (csp->config->proxy_info_url != NULL)
1956    {
1957       if (!err) err = map(exports, "proxy-info-url", 1, html_encode(csp->config->proxy_info_url), 0);
1958       local_help_exists = 1;
1959    }
1960    else
1961    {
1962       if (!err) err = map_block_killer(exports, "have-proxy-info");
1963    }
1964
1965    if (local_help_exists == 0)
1966    {
1967       if (!err) err = map_block_killer(exports, "have-help-info");
1968    }
1969
1970    if (err)
1971    {
1972       free_map(exports);
1973       return NULL;
1974    }
1975
1976    return exports;
1977 }
1978
1979
1980 /*********************************************************************
1981  *
1982  * Function    :  map_block_killer
1983  *
1984  * Description :  Convenience function.
1985  *                Adds a "killer" for the conditional HTML-template
1986  *                block <name>, i.e. a substitution of the regex
1987  *                "if-<name>-start.*if-<name>-end" to the given
1988  *                export list.
1989  *
1990  * Parameters  :  
1991  *          1  :  exports = map to extend
1992  *          2  :  name = name of conditional block
1993  *
1994  * Returns     :  JB_ERR_OK on success
1995  *                JB_ERR_MEMORY on out-of-memory error.  
1996  *
1997  *********************************************************************/
1998 jb_err map_block_killer(struct map *exports, const char *name)
1999 {
2000    char buf[1000]; /* Will do, since the names are hardwired */
2001
2002    assert(exports);
2003    assert(name);
2004    assert(strlen(name) < 490);
2005
2006    snprintf(buf, 1000, "if-%s-start.*if-%s-end", name, name);
2007    return map(exports, buf, 1, "", 1);
2008 }
2009
2010
2011 /*********************************************************************
2012  *
2013  * Function    :  map_block_keep
2014  *
2015  * Description :  Convenience function.  Removes the markers used
2016  *                by map-block-killer, to save a few bytes.
2017  *                i.e. removes "@if-<name>-start@" and "@if-<name>-end@"
2018  *
2019  * Parameters  :  
2020  *          1  :  exports = map to extend
2021  *          2  :  name = name of conditional block
2022  *
2023  * Returns     :  JB_ERR_OK on success
2024  *                JB_ERR_MEMORY on out-of-memory error.  
2025  *
2026  *********************************************************************/
2027 jb_err map_block_keep(struct map *exports, const char *name)
2028 {
2029    jb_err err;
2030    char buf[500]; /* Will do, since the names are hardwired */
2031
2032    assert(exports);
2033    assert(name);
2034    assert(strlen(name) < 490);
2035
2036    snprintf(buf, 500, "if-%s-start", name);
2037    err = map(exports, buf, 1, "", 1);
2038
2039    if (err)
2040    {
2041       return err;
2042    }
2043
2044    snprintf(buf, 500, "if-%s-end", name);
2045    return map(exports, buf, 1, "", 1);
2046 }
2047
2048
2049 /*********************************************************************
2050  *
2051  * Function    :  map_conditional
2052  *
2053  * Description :  Convenience function.
2054  *                Adds an "if-then-else" for the conditional HTML-template
2055  *                block <name>, i.e. a substitution of the form:
2056  *                @if-<name>-then@
2057  *                   True text
2058  *                @else-not-<name>@
2059  *                   False text
2060  *                @endif-<name>@
2061  *
2062  *                The control structure and one of the alternatives
2063  *                will be hidden.
2064  *
2065  * Parameters  :  
2066  *          1  :  exports = map to extend
2067  *          2  :  name = name of conditional block
2068  *          3  :  choose_first = nonzero for first, zero for second.
2069  *
2070  * Returns     :  JB_ERR_OK on success
2071  *                JB_ERR_MEMORY on out-of-memory error.  
2072  *
2073  *********************************************************************/
2074 jb_err map_conditional(struct map *exports, const char *name, int choose_first)
2075 {
2076    char buf[1000]; /* Will do, since the names are hardwired */
2077    jb_err err;
2078
2079    assert(exports);
2080    assert(name);
2081    assert(strlen(name) < 480);
2082
2083    snprintf(buf, 1000, (choose_first
2084       ? "else-not-%s@.*@endif-%s"
2085       : "if-%s-then@.*@else-not-%s"),
2086       name, name);
2087
2088    err = map(exports, buf, 1, "", 1);
2089    if (err)
2090    {
2091       return err;
2092    }
2093
2094    snprintf(buf, 1000, (choose_first ? "if-%s-then" : "endif-%s"), name);
2095    return map(exports, buf, 1, "", 1);
2096 }
2097
2098
2099 /*********************************************************************
2100  *
2101  * Function    :  make_menu
2102  *
2103  * Description :  Returns an HTML-formatted menu of the available 
2104  *                unhidden CGIs, excluding the one given in <self>
2105  *
2106  * Parameters  :  self = name of CGI to leave out, can be NULL for
2107  *                complete listing.
2108  *
2109  * Returns     :  menu string, or NULL on out-of-memory error.
2110  *
2111  *********************************************************************/
2112 char *make_menu(const char *self)
2113 {
2114    const struct cgi_dispatcher *d;
2115    char *result = strdup("");
2116
2117    if (self == NULL)
2118    {
2119       self = "NO-SUCH-CGI!";
2120    }
2121
2122    /* List available unhidden CGI's and export as "other-cgis" */
2123    for (d = cgi_dispatchers; d->name; d++)
2124    {
2125       if (d->description && strcmp(d->name, self))
2126       {
2127          string_append(&result, "<li><a href=\"" CGI_PREFIX);
2128          string_append(&result, d->name);
2129          string_append(&result, "\">");
2130          string_append(&result, d->description);
2131          string_append(&result, "</a></li>");
2132       }
2133    }
2134
2135    return result;
2136 }
2137
2138
2139 /*********************************************************************
2140  *
2141  * Function    :  dump_map
2142  *
2143  * Description :  HTML-dump a map for debugging (as table)
2144  *
2145  * Parameters  :
2146  *          1  :  the_map = map to dump
2147  *
2148  * Returns     :  string with HTML
2149  *
2150  *********************************************************************/
2151 char *dump_map(const struct map *the_map)
2152 {
2153    struct map_entry *cur_entry;
2154    char *ret = strdup("");
2155
2156    string_append(&ret, "<table>\n");
2157
2158    for (cur_entry = the_map->first;
2159         (cur_entry != NULL) && (ret != NULL);
2160         cur_entry = cur_entry->next)
2161    {
2162       string_append(&ret, "<tr><td><b>");
2163       string_join  (&ret, html_encode(cur_entry->name));
2164       string_append(&ret, "</b></td><td>");
2165       string_join  (&ret, html_encode(cur_entry->value));
2166       string_append(&ret, "</td></tr>\n");
2167    }
2168
2169    string_append(&ret, "</table>\n");
2170    return ret;
2171 }
2172
2173
2174 /*
2175   Local Variables:
2176   tab-width: 3
2177   end:
2178 */