Allow access to Privoxy's CGI pages, don't call trusted
[privoxy.git] / cgi.c
1 const char cgi_rcs[] = "$Id: cgi.c,v 1.94 2007/02/08 19:44:49 fabiankeil 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-2004, 2006-2007
15  *                the SourceForge 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.94  2007/02/08 19:44:49  fabiankeil
42  *    Use a transparent background for the PNG replacement pattern.
43  *
44  *    Revision 1.93  2007/02/07 10:45:22  fabiankeil
45  *    - Save the reason for generating http_responses.
46  *    - Fix --disable-toggle (again).
47  *    - Use TBL birthday hack for 403 responses as well.
48  *    - Uglify the @menu@ again to fix JavaScript
49  *      errors on the "blocked" template.
50  *    - Escape an ampersand in cgi_error_unknown().
51  *
52  *    Revision 1.92  2007/01/28 13:41:17  fabiankeil
53  *    - Add HEAD support to finish_http_response.
54  *    - Add error favicon to internal HTML error messages.
55  *
56  *    Revision 1.91  2007/01/27 13:09:16  fabiankeil
57  *    Add new config option "templdir" to
58  *    change the templates directory.
59  *
60  *    Revision 1.90  2007/01/25 13:47:26  fabiankeil
61  *    Added "forwarding-failed" template support for error_response().
62  *
63  *    Revision 1.89  2007/01/23 15:51:16  fabiankeil
64  *    Add favicon delivery functions.
65  *
66  *    Revision 1.88  2007/01/23 13:14:32  fabiankeil
67  *    - Map variables that aren't guaranteed to be
68  *      pure ASCII html_encoded.
69  *    - Use CGI_PREFIX to generate URL for user manual
70  *      CGI page to make sure CGI_SITE_2_PATH is included.
71  *
72  *    Revision 1.87  2007/01/22 15:34:13  fabiankeil
73  *    - "Protect" against a rather lame JavaScript-based
74  *      Privoxy detection "attack" and check the referrer
75  *      before delivering the CGI style sheet.
76  *    - Move referrer check for unsafe CGI pages into
77  *      referrer_is_safe() and log the result.
78  *    - Map @url@ in cgi-error-disabled page.
79  *      It's required for the "go there anyway" link.
80  *    - Mark *csp as immutable for grep_cgi_referrer().
81  *
82  *    Revision 1.86  2007/01/09 11:54:26  fabiankeil
83  *    Fix strdup() error handling in cgi_error_unknown()
84  *    and cgi_error_no_template(). Reported by Markus Elfring.
85  *
86  *    Revision 1.85  2007/01/05 14:19:02  fabiankeil
87  *    Handle pcrs_execute() errors in template_fill() properly.
88  *
89  *    Revision 1.84  2006/12/28 17:54:22  fabiankeil
90  *    Fixed gcc43 conversion warnings and replaced sprintf
91  *    calls with snprintf to give OpenBSD's gcc one less reason
92  *    to complain.
93  *
94  *    Revision 1.83  2006/12/17 19:35:19  fabiankeil
95  *    Escape ampersand in Privoxy menu.
96  *
97  *    Revision 1.82  2006/12/17 17:53:39  fabiankeil
98  *    Suppress the toggle link if remote toggling is disabled.
99  *
100  *    Revision 1.81  2006/12/09 13:49:16  fabiankeil
101  *    Fix configure option --disable-toggle.
102  *    Thanks to Peter Thoenen for reporting this.
103  *
104  *    Revision 1.80  2006/12/08 14:45:32  fabiankeil
105  *    Don't lose the FORCE_PREFIX in case of
106  *    connection problems. Fixes #612235.
107  *
108  *    Revision 1.79  2006/11/13 19:05:50  fabiankeil
109  *    Make pthread mutex locking more generic. Instead of
110  *    checking for OSX and OpenBSD, check for FEATURE_PTHREAD
111  *    and use mutex locking unless there is an _r function
112  *    available. Better safe than sorry.
113  *
114  *    Fixes "./configure --disable-pthread" and should result
115  *    in less threading-related problems on pthread-using platforms,
116  *    but it still doesn't fix BR#1122404.
117  *
118  *    Revision 1.78  2006/09/21 19:22:07  fabiankeil
119  *    Use CGI_PREFIX to check the referrer.
120  *    The check for "http://config.privoxy.org/" fails
121  *    if the user modified CGI_SITE_2_HOST.
122  *
123  *    Revision 1.77  2006/09/21 15:17:23  fabiankeil
124  *    Adjusted headers for Privoxy's cgi responses:
125  *    Don't set Last-Modified, Expires and Cache-Control
126  *    headers for redirects; always set "Connection: close".
127  *
128  *    Revision 1.76  2006/09/07 14:06:38  fabiankeil
129  *    Only predate the Last-Modified header for cgi responses
130  *    that are delivered with status code 404 or 503.
131  *
132  *    Revision 1.75  2006/09/07 11:56:39  fabiankeil
133  *    Mark cgi_send_user_manual as harmless,
134  *    to fix the access denied problem Hal spotted.
135  *    The manual has no secret content, therefore we
136  *    don't have to care about "secure" referrers.
137  *
138  *    Revision 1.74  2006/09/06 18:45:03  fabiankeil
139  *    Incorporate modified version of Roland Rosenfeld's patch to
140  *    optionally access the user-manual via Privoxy. Closes patch 679075.
141  *
142  *    Formatting changed to Privoxy style, added call to
143  *    cgi_error_no_template if the requested file doesn't
144  *    exist and modified check whether or not Privoxy itself
145  *    should serve the manual. Should work cross-platform now.
146  *
147  *    Revision 1.73  2006/08/03 02:46:41  david__schmidt
148  *    Incorporate Fabian Keil's patch work:\rhttp://www.fabiankeil.de/sourcecode/privoxy/
149  *
150  *    Revision 1.72  2006/07/18 14:48:45  david__schmidt
151  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
152  *    with what was really the latest development (the v_3_0_branch branch)
153  *
154  *    Revision 1.70.2.13  2004/02/17 13:30:23  oes
155  *    Moved cgi_error_disabled() from cgiedit.c to
156  *    cgi.c to re-enable build with --disable-editor.
157  *    Fixes Bug #892744. Thanks to Matthew Fischer
158  *    for spotting.
159  *
160  *    Revision 1.70.2.12  2003/12/17 16:33:16  oes
161  *     - Added new function cgi_redirect to handle creation of
162  *       HTTP redirect messages formerly repeated in the code.
163  *     - Send cgi_error_disabled instead of cgi_error_404 when
164  *       referrer check fails
165  *     - Dynamic content now gets Expires header field with date
166  *       in the past
167  *
168  *    Revision 1.70.2.11  2003/10/23 12:29:26  oes
169  *    Bugfix: Transparent PNG was not transparent. Thanks to
170  *    Dan Razzell of Starfish Systems for notice and new PNG.
171  *
172  *    Revision 1.70.2.10  2003/06/06 07:54:25  oes
173  *    Security fix: dspatch_known_cgi no longer considers an empty
174  *    referrer safe for critical CGIs, since malicious links could
175  *    reside on https:// locations which browsers don't advertize as
176  *    referrers. Closes bug #749916, thanks to Jeff Epler for the
177  *    hint. Goodbye One-Click[tm] toggling :-(
178  *
179  *    Revision 1.70.2.9  2003/05/08 15:11:31  oes
180  *    Nit
181  *
182  *    Revision 1.70.2.8  2003/04/29 13:33:51  oes
183  *    Killed a compiler warning on OSX
184  *
185  *    Revision 1.70.2.7  2003/04/03 13:50:58  oes
186  *    - Don't call cgi_error_disabled ifndef FEATURE_CGI_EDIT_ACTIONS
187  *      (fixes bug #710056)
188  *    - Show toggle info only if we have it
189  *
190  *    Revision 1.70.2.6  2003/03/12 01:26:25  david__schmidt
191  *    Move declaration of struct tm dummy outside of a control block so it is
192  *    accessible later on during snprintf in get_http_time.
193  *
194  *    Revision 1.70.2.5  2003/03/11 11:53:58  oes
195  *    Cosmetic: Renamed cryptic variable
196  *
197  *    Revision 1.70.2.4  2003/03/07 03:41:03  david__schmidt
198  *    Wrapping all *_r functions (the non-_r versions of them) with mutex semaphores for OSX.  Hopefully this will take care of all of those pesky crash reports.
199  *
200  *    Revision 1.70.2.3  2002/11/28 18:14:32  oes
201  *    Disable access to critical CGIs via untrusted referrers.
202  *    This prevents users from being tricked by malicious websites
203  *    into making unintentional configuration changes:
204  *
205  *     - Added flag to each cgi_dispatcher that allows or denies
206  *       external linking
207  *     - Introduced proviorical function that greps for the
208  *       referrer header before regular header parsing happens
209  *     - Added safety check to dispatch_known_cgi. CGI is called
210  *       if (cgi harmless || no referrer || we are referrer).
211  *       Else a) toggle calls are modified not to change status and
212  *       b) all other calls are denied.
213  *
214  *    Revision 1.70.2.2  2002/11/12 16:20:37  oes
215  *    Added missing #ifdef FEATURE_TOGGLE around g_bToggleIJB; fixes bug #636651
216  *
217  *    Revision 1.70.2.1  2002/08/05 11:17:46  oes
218  *    Fixed Bug #587820, i.e. added workaround for IE bug that includes fragment identifier in (cgi) query
219  *
220  *    Revision 1.70  2002/05/19 11:33:20  jongfoster
221  *    If a CGI error was not handled, and propogated back to
222  *    dispatch_known_cgi(), then it was assumed to be "out of memory".
223  *    This gave a very misleading error message.
224  *
225  *    Now other errors will cause a simple message giving the error
226  *    number and asking the user to report a bug.
227  *
228  *    Bug report:
229  *    http://sourceforge.net/tracker/index.php?func=detail
230  *    &aid=557905&group_id=11118&atid=111118
231  *
232  *    Revision 1.69  2002/05/14 21:28:40  oes
233  *     - Fixed add_help_link to link to the (now split) actions
234  *       part of the config chapter
235  *     - Renamed helplink export to actions-help-prefix
236  *
237  *    Revision 1.68  2002/05/12 21:36:29  jongfoster
238  *    Correcting function comments
239  *
240  *    Revision 1.67  2002/04/30 12:02:07  oes
241  *    Nit: updated a comment
242  *
243  *    Revision 1.66  2002/04/26 18:32:57  jongfoster
244  *    Fixing a memory leak on error
245  *
246  *    Revision 1.65  2002/04/26 12:53:51  oes
247  *     - New function add_help_link
248  *     - default_exports now exports links to the user manual
249  *       and a prefix for links into the config chapter
250  *
251  *    Revision 1.64  2002/04/24 02:17:21  oes
252  *     - Better descriptions for CGIs
253  *     - Hide edit-actions, more shortcuts
254  *     - Moved get_char_param, get_string_param and get_number_param here
255  *       from cgiedit.c
256  *
257  *    Revision 1.63  2002/04/15 19:06:43  jongfoster
258  *    Typos
259  *
260  *    Revision 1.62  2002/04/10 19:59:46  jongfoster
261  *    Fixes to #include in templates:
262  *    - Didn't close main file if loading an included template fails.
263  *    - I'm paranoid and want to disallow "#include /etc/passwd".
264  *
265  *    Revision 1.61  2002/04/10 13:37:48  oes
266  *    Made templates modular: template_load now recursive with max depth 1
267  *
268  *    Revision 1.60  2002/04/08 20:50:25  swa
269  *    fixed JB spelling
270  *
271  *    Revision 1.59  2002/04/05 15:51:51  oes
272  *     - added send-stylesheet CGI
273  *     - bugfix: error-pages now get correct request protocol
274  *     - fixed
275  *     - kludged CGI descriptions and menu not to break JS syntax
276  *
277  *    Revision 1.58  2002/03/29 03:33:13  david__schmidt
278  *    Fix Mac OSX compiler warnings
279  *
280  *    Revision 1.57  2002/03/26 22:29:54  swa
281  *    we have a new homepage!
282  *
283  *    Revision 1.56  2002/03/24 17:50:46  jongfoster
284  *    Fixing compile error if actions file editor disabled
285  *
286  *    Revision 1.55  2002/03/24 16:55:06  oes
287  *    Making GIF checkerboard transparent
288  *
289  *    Revision 1.54  2002/03/24 16:18:15  jongfoster
290  *    Removing old logo
291  *
292  *    Revision 1.53  2002/03/24 16:06:00  oes
293  *    Correct transparency for checkerboard PNG. Thanks, Magnus!
294  *
295  *    Revision 1.52  2002/03/24 15:23:33  jongfoster
296  *    Name changes
297  *
298  *    Revision 1.51  2002/03/24 13:25:43  swa
299  *    name change related issues
300  *
301  *    Revision 1.50  2002/03/16 23:54:06  jongfoster
302  *    Adding graceful termination feature, to help look for memory leaks.
303  *    If you enable this (which, by design, has to be done by hand
304  *    editing config.h) and then go to http://i.j.b/die, then the program
305  *    will exit cleanly after the *next* request.  It should free all the
306  *    memory that was used.
307  *
308  *    Revision 1.49  2002/03/13 00:27:04  jongfoster
309  *    Killing warnings
310  *
311  *    Revision 1.48  2002/03/08 17:47:07  jongfoster
312  *    Adding comments
313  *
314  *    Revision 1.47  2002/03/08 16:41:33  oes
315  *    Added GIF images again
316  *
317  *    Revision 1.46  2002/03/07 03:48:38  oes
318  *     - Changed built-in images from GIF to PNG
319  *       (with regard to Unisys patent issue)
320  *     - Added a 4x4 pattern PNG which is less intrusive
321  *       than the logo but also clearly marks the deleted banners
322  *
323  *    Revision 1.45  2002/03/06 22:54:35  jongfoster
324  *    Automated function-comment nitpicking.
325  *
326  *    Revision 1.44  2002/03/05 22:43:45  david__schmidt
327  *    - Better error reporting on OS/2
328  *    - Fix double-slash comment (oops)
329  *
330  *    Revision 1.43  2002/03/05 21:33:45  david__schmidt
331  *    - Re-enable OS/2 building after new parms were added
332  *    - Fix false out of memory report when resolving CGI templates when no IP
333  *      address is available of failed attempt (a la no such domain)
334  *
335  *    Revision 1.42  2002/01/21 00:33:20  jongfoster
336  *    Replacing strsav() with the safer string_append() or string_join().
337  *    Adding map_block_keep() to save a few bytes in the edit-actions-list HTML.
338  *    Adding missing html_encode() to error message generators.
339  *    Adding edit-actions-section-swap and many "shortcuts" to the list of CGIs.
340  *
341  *    Revision 1.41  2002/01/17 20:56:22  jongfoster
342  *    Replacing hard references to the URL of the config interface
343  *    with #defines from project.h
344  *
345  *    Revision 1.40  2002/01/09 14:26:46  oes
346  *    Added support for thread-safe gmtime_r call.
347  *
348  *    Revision 1.39  2001/11/16 00:48:13  jongfoster
349  *    Fixing a compiler warning
350  *
351  *    Revision 1.38  2001/11/13 00:31:21  jongfoster
352  *    - Adding new CGIs for use by non-JavaScript browsers:
353  *        edit-actions-url-form
354  *        edit-actions-add-url-form
355  *        edit-actions-remove-url-form
356  *    - Fixing make_menu()'s HTML generation - it now quotes the href parameter.
357  *    - Fixing || bug.
358  *
359  *    Revision 1.37  2001/11/01 14:28:47  david__schmidt
360  *    Show enablement/disablement status in almost all templates.
361  *    There is a little trickiness here: apparent recursive resolution of
362  *    @if-enabled-then@ caused the toggle template to show status out-of-phase with
363  *    the actual enablement status.  So a similar construct,
364  *    @if-enabled-display-then@, is used to resolve the status display on non-'toggle'
365  *    templates.
366  *
367  *    Revision 1.36  2001/10/26 17:33:27  oes
368  *    marginal bugfix
369  *
370  *    Revision 1.35  2001/10/23 21:48:19  jongfoster
371  *    Cleaning up error handling in CGI functions - they now send back
372  *    a HTML error page and should never cause a FATAL error.  (Fixes one
373  *    potential source of "denial of service" attacks).
374  *
375  *    CGI actions file editor that works and is actually useful.
376  *
377  *    Ability to toggle Junkbuster remotely using a CGI call.
378  *
379  *    You can turn off both the above features in the main configuration
380  *    file, e.g. if you are running a multi-user proxy.
381  *
382  *    Revision 1.34  2001/10/18 22:22:09  david__schmidt
383  *    Only show "Local support" on templates conditionally:
384  *      - if either 'admin-address' or 'proxy-info-url' are uncommented in config
385  *      - if not, no Local support section appears
386  *
387  *    Revision 1.33  2001/10/14 22:28:41  jongfoster
388  *    Fixing stupid typo.
389  *
390  *    Revision 1.32  2001/10/14 22:20:18  jongfoster
391  *    - Changes to CGI dispatching method to match CGI names exactly,
392  *      rather than doing a prefix match.
393  *    - No longer need to count the length of the CGI handler names by hand.
394  *    - Adding new handler for 404 error when disptching a CGI, if none of
395  *      the handlers match.
396  *    - Adding new handlers for CGI actionsfile editor.
397  *
398  *    Revision 1.31  2001/10/10 10:56:39  oes
399  *    Failiure to load template now fatal. Before, the user got a hard-to-understand assertion failure from cgi.c
400  *
401  *    Revision 1.30  2001/10/02 15:30:57  oes
402  *    Introduced show-request cgi
403  *
404  *    Revision 1.29  2001/09/20 15:47:44  steudten
405  *
406  *    Fix BUG: Modify int size to size_t size in fill_template()
407  *     - removes big trouble on machines where sizeof(int) != sizeof(size_t).
408  *
409  *    Revision 1.28  2001/09/19 18:00:37  oes
410  *     - Deletef time() FIXME (Can't fail under Linux either, if
411  *       the argument is guaranteed to be in out address space,
412  *       which it is.)
413  *     - Fixed comments
414  *     - Pointer notation cosmetics
415  *     - Fixed a minor bug in template_fill(): Failiure of
416  *       pcrs_execute() now secure.
417  *
418  *    Revision 1.27  2001/09/16 17:08:54  jongfoster
419  *    Moving simple CGI functions from cgi.c to new file cgisimple.c
420  *
421  *    Revision 1.26  2001/09/16 15:47:37  jongfoster
422  *    First version of CGI-based edit interface.  This is very much a
423  *    work-in-progress, and you can't actually use it to edit anything
424  *    yet.  You must #define FEATURE_CGI_EDIT_ACTIONS for these changes
425  *    to have any effect.
426  *
427  *    Revision 1.25  2001/09/16 15:02:35  jongfoster
428  *    Adding i.j.b/robots.txt.
429  *    Inlining add_stats() since it's only ever called from one place.
430  *
431  *    Revision 1.24  2001/09/16 11:38:01  jongfoster
432  *    Splitting fill_template() into 2 functions:
433  *    template_load() loads the file
434  *    template_fill() performs the PCRS regexps.
435  *    This is because the CGI edit interface has a "table row"
436  *    template which is used many times in the page - this
437  *    change means it's only loaded from disk once.
438  *
439  *    Revision 1.23  2001/09/16 11:16:05  jongfoster
440  *    Better error handling in dispatch_cgi() and parse_cgi_parameters()
441  *
442  *    Revision 1.22  2001/09/16 11:00:10  jongfoster
443  *    New function alloc_http_response, for symmetry with free_http_response
444  *
445  *    Revision 1.21  2001/09/13 23:53:03  jongfoster
446  *    Support for both static and dynamically generated CGI pages.
447  *    Correctly setting Last-Modified: and Expires: HTTP headers.
448  *
449  *    Revision 1.20  2001/09/13 23:40:36  jongfoster
450  *    (Cosmetic only) Indentation correction
451  *
452  *    Revision 1.19  2001/09/13 23:31:25  jongfoster
453  *    Moving image data to cgi.c rather than cgi.h.
454  *
455  *    Revision 1.18  2001/08/05 16:06:20  jongfoster
456  *    Modifiying "struct map" so that there are now separate header and
457  *    "map_entry" structures.  This means that functions which modify a
458  *    map no longer need to return a pointer to the modified map.
459  *    Also, it no longer reverses the order of the entries (which may be
460  *    important with some advanced template substitutions).
461  *
462  *    Revision 1.17  2001/08/05 15:57:38  oes
463  *    Adapted finish_http_response to new list_to_text
464  *
465  *    Revision 1.16  2001/08/01 21:33:18  jongfoster
466  *    Changes to fill_template() that reduce memory usage without having
467  *    an impact on performance.  I also renamed some variables so as not
468  *    to clash with the C++ keywords "new" and "template".
469  *
470  *    Revision 1.15  2001/08/01 21:19:22  jongfoster
471  *    Moving file version information to a separate CGI page.
472  *
473  *    Revision 1.14  2001/08/01 00:19:03  jongfoster
474  *    New function: map_conditional() for an if-then-else syntax.
475  *    Changing to use new version of show_defines()
476  *
477  *    Revision 1.13  2001/07/30 22:08:36  jongfoster
478  *    Tidying up #defines:
479  *    - All feature #defines are now of the form FEATURE_xxx
480  *    - Permanently turned off WIN_GUI_EDIT
481  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
482  *
483  *    Revision 1.12  2001/07/29 18:47:05  jongfoster
484  *    Adding missing #include "loadcfg.h"
485  *
486  *    Revision 1.11  2001/07/18 17:24:37  oes
487  *    Changed to conform to new pcrs interface
488  *
489  *    Revision 1.10  2001/07/13 13:53:13  oes
490  *    Removed all #ifdef PCRS and related code
491  *
492  *    Revision 1.9  2001/06/29 21:45:41  oes
493  *    Indentation, CRLF->LF, Tab-> Space
494  *
495  *    Revision 1.8  2001/06/29 13:21:46  oes
496  *    - Cosmetics: renamed and reordered functions, variables,
497  *      texts, improved comments  etc
498  *
499  *    - Removed ij_untrusted_url() The relevant
500  *      info is now part of the "untrusted" page,
501  *      which is generated by filters.c:trust_url()
502  *
503  *    - Generators of content now call finish_http_response()
504  *      themselves, making jcc.c:chat() a little less
505  *      cluttered
506  *
507  *    - Removed obsolete "Pragma: no-cache" from our headers
508  *
509  *    - http_responses now know their head length
510  *
511  *    - fill_template now uses the new interface to pcrs, so that
512  *       - long jobs (like whole files) no longer have to be assembled
513  *         in a fixed size buffer
514  *       - the new T (trivial) option is used, and the replacement may
515  *         contain Perl syntax backrefs without confusing pcrs
516  *
517  *    - Introduced default_exports() which generates a set of exports
518  *      common to all CGIs and other content generators
519  *
520  *    - Introduced convenience function map_block_killer()
521  *
522  *    - Introduced convenience function make_menu()
523  *
524  *    - Introduced CGI-like function error_response() which generates
525  *      the "No such domain" and "Connect failed" messages using the
526  *      CGI platform
527  *
528  *    - cgi_show_url_info:
529  *      - adapted to new CGI features
530  *      - form and answers now generated from same template
531  *      - http:// prefix in URL now OK
532  *
533  *    - cgi_show_status:
534  *      - adapted to new CGI features
535  *      - no longer uses csp->init_proxy_args
536  *
537  *    - cgi_default:
538  *      - moved menu generation to make_menu()
539  *
540  *    - add_stats now writes single export map entries instead
541  *      of a fixed string
542  *
543  *    - Moved redirect_url() to filters.c
544  *
545  *    - Fixed mem leak in free_http_response(), map_block_killer(),
546  *
547  *    - Removed logentry from cancelled commit
548  *
549  *    Revision 1.7  2001/06/09 10:51:58  jongfoster
550  *    Changing "show URL info" handler to new style.
551  *    Changing BUFSIZ ==> BUFFER_SIZE
552  *
553  *    Revision 1.6  2001/06/07 23:05:19  jongfoster
554  *    Removing code related to old forward and ACL files.
555  *
556  *    Revision 1.5  2001/06/05 19:59:16  jongfoster
557  *    Fixing multiline character string (a GCC-only "feature"), and snprintf (it's _snprintf under VC++).
558  *
559  *    Revision 1.4  2001/06/04 10:41:52  swa
560  *    show version string of cgi.h and cgi.c
561  *
562  *    Revision 1.3  2001/06/03 19:12:16  oes
563  *    introduced new cgi handling
564  *
565  *    No revisions before 1.3
566  *
567  **********************************************************************/
568 \f
569
570 #include "config.h"
571
572 #include <stdio.h>
573 #include <sys/types.h>
574 #include <stdlib.h>
575 #include <ctype.h>
576 #include <string.h>
577 #include <limits.h>
578 #include <assert.h>
579
580 #ifdef _WIN32
581 #define snprintf _snprintf
582 #endif /* def _WIN32 */
583
584 #include "project.h"
585 #include "cgi.h"
586 #include "list.h"
587 #include "encode.h"
588 #include "ssplit.h"
589 #include "errlog.h"
590 #include "filters.h"
591 #include "miscutil.h"
592 #include "cgisimple.h"
593 #ifdef FEATURE_CGI_EDIT_ACTIONS
594 #include "cgiedit.h"
595 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
596 #include "loadcfg.h"
597 /* loadcfg.h is for global_toggle_state only */
598 #ifdef FEATURE_PTHREAD
599 #include "jcc.h"
600 /* jcc.h is for mutex semaphore globals only */
601 #endif /* def FEATURE_PTHREAD */
602 const char cgi_h_rcs[] = CGI_H_VERSION;
603
604 /*
605  * List of CGI functions: name, handler, description
606  * Note: Do NOT use single quotes in the description;
607  *       this will break the dynamic "blocked" template!
608  */
609 static const struct cgi_dispatcher cgi_dispatchers[] = {
610    { "",
611          cgi_default,
612          "Privoxy main page",
613          TRUE },
614 #ifdef FEATURE_GRACEFUL_TERMINATION
615    { "die", 
616          cgi_die,  
617          "<b>Shut down</b> - <em class=\"warning\">Do not deploy this build in a production environment, "
618         "this is a one click Denial Of Service attack!!!</em>",
619          FALSE }, 
620 #endif
621    { "show-status", 
622          cgi_show_status,  
623 #ifdef FEATURE_CGI_EDIT_ACTIONS
624         "View &amp; change the current configuration",
625 #else
626         "View the current configuration",
627 #endif
628          TRUE }, 
629    { "show-version", 
630          cgi_show_version,  
631          "View the source code version numbers",
632           TRUE }, 
633    { "show-request", 
634          cgi_show_request,  
635          "View the request headers.",
636          TRUE }, 
637    { "show-url-info",
638          cgi_show_url_info, 
639          "Look up which actions apply to a URL and why",
640          TRUE },
641 #ifdef FEATURE_CGI_EDIT_ACTIONS
642 #ifdef FEATURE_TOGGLE
643    { "toggle",
644          cgi_toggle, 
645          "Toggle Privoxy on or off",
646          FALSE },
647 #endif /* def FEATURE_TOGGLE */
648    { "edit-actions", /* Edit the actions list */
649          cgi_edit_actions, 
650          NULL, FALSE },
651    { "eaa", /* Shortcut for edit-actions-add-url-form */
652          cgi_edit_actions_add_url_form, 
653          NULL, FALSE },
654    { "eau", /* Shortcut for edit-actions-url-form */
655          cgi_edit_actions_url_form, 
656          NULL, FALSE },
657    { "ear", /* Shortcut for edit-actions-remove-url-form */
658          cgi_edit_actions_remove_url_form, 
659          NULL, FALSE },
660    { "eal", /* Shortcut for edit-actions-list */
661          cgi_edit_actions_list, 
662          NULL, FALSE },
663    { "eafu", /* Shortcut for edit-actions-for-url */
664          cgi_edit_actions_for_url, 
665          NULL, FALSE },
666    { "eas", /* Shortcut for edit-actions-submit */
667          cgi_edit_actions_submit, 
668          NULL, FALSE },
669    { "easa", /* Shortcut for edit-actions-section-add */
670          cgi_edit_actions_section_add, 
671          NULL, FALSE  },
672    { "easr", /* Shortcut for edit-actions-section-remove */
673          cgi_edit_actions_section_remove, 
674          NULL, FALSE  },
675    { "eass", /* Shortcut for edit-actions-section-swap */
676          cgi_edit_actions_section_swap, 
677          NULL, FALSE  },
678    { "edit-actions-for-url",
679          cgi_edit_actions_for_url, 
680          NULL, FALSE  /* Edit the actions for (a) specified URL(s) */ },
681    { "edit-actions-list",
682          cgi_edit_actions_list, 
683          NULL, TRUE /* Edit the actions list */ },
684    { "edit-actions-submit",
685          cgi_edit_actions_submit, 
686          NULL, FALSE /* Change the actions for (a) specified URL(s) */ },
687    { "edit-actions-url",
688          cgi_edit_actions_url, 
689          NULL, FALSE /* Change a URL pattern in the actionsfile */ },
690    { "edit-actions-url-form",
691          cgi_edit_actions_url_form, 
692          NULL, FALSE /* Form to change a URL pattern in the actionsfile */ },
693    { "edit-actions-add-url",
694          cgi_edit_actions_add_url, 
695          NULL, FALSE /* Add a URL pattern to the actionsfile */ },
696    { "edit-actions-add-url-form",
697          cgi_edit_actions_add_url_form, 
698          NULL, FALSE /* Form to add a URL pattern to the actionsfile */ },
699    { "edit-actions-remove-url",
700          cgi_edit_actions_remove_url, 
701          NULL, FALSE /* Remove a URL pattern from the actionsfile */ },
702    { "edit-actions-remove-url-form",
703          cgi_edit_actions_remove_url_form, 
704          NULL, FALSE /* Form to remove a URL pattern from the actionsfile */ },
705    { "edit-actions-section-add",
706          cgi_edit_actions_section_add, 
707          NULL, FALSE /* Remove a section from the actionsfile */ },
708    { "edit-actions-section-remove",
709          cgi_edit_actions_section_remove, 
710          NULL, FALSE /* Remove a section from the actionsfile */ },
711    { "edit-actions-section-swap",
712          cgi_edit_actions_section_swap, 
713          NULL, FALSE /* Swap two sections in the actionsfile */ },
714 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
715    { "error-favicon.ico", 
716          cgi_send_error_favicon,  
717          NULL, TRUE /* Sends the favicon image for error pages. */ },
718    { "favicon.ico", 
719          cgi_send_default_favicon,  
720          NULL, TRUE /* Sends the default favicon image. */ },
721    { "robots.txt", 
722          cgi_robots_txt,  
723          NULL, TRUE /* Sends a robots.txt file to tell robots to go away. */ }, 
724    { "send-banner",
725          cgi_send_banner, 
726          NULL, TRUE /* Send a built-in image */ },
727    { "send-stylesheet",
728          cgi_send_stylesheet, 
729          NULL, FALSE /* Send templates/cgi-style.css */ },
730    { "t",
731          cgi_transparent_image, 
732          NULL, TRUE /* Send a transparent image (short name) */ },
733    { "user-manual",
734           cgi_send_user_manual,
735           NULL, TRUE /* Send user-manual */ },
736    { NULL, /* NULL Indicates end of list and default page */
737          cgi_error_404,
738          NULL, TRUE /* Unknown CGI page */ }
739 };
740
741
742 /*
743  * Built-in images for ad replacement
744  *
745  * Hint: You can encode your own images like this:
746  * cat your-image | perl -e 'while (read STDIN, $c, 1) { printf("\\%.3o", unpack("C", $c)); }'
747  */
748
749 #ifdef FEATURE_NO_GIFS
750
751 /*
752  * Checkerboard pattern, as a PNG.
753  */
754 const char image_pattern_data[] =
755    "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104"
756    "\122\000\000\000\004\000\000\000\004\010\006\000\000\000\251"
757    "\361\236\176\000\000\000\006\142\113\107\104\000\000\000\000"
758    "\000\000\371\103\273\177\000\000\000\033\111\104\101\124\010"
759    "\327\143\140\140\140\060\377\377\377\077\003\234\106\341\060"
760    "\060\230\063\020\124\001\000\161\021\031\241\034\364\030\143"
761    "\000\000\000\000\111\105\116\104\256\102\140\202";
762
763 /*
764  * 1x1 transparant PNG.
765  */
766 const char image_blank_data[] =
767  "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104\122"
768  "\000\000\000\001\000\000\000\001\001\003\000\000\000\045\333\126"
769  "\312\000\000\000\003\120\114\124\105\377\377\377\247\304\033\310"
770  "\000\000\000\001\164\122\116\123\000\100\346\330\146\000\000\000"
771  "\001\142\113\107\104\000\210\005\035\110\000\000\000\012\111\104"
772  "\101\124\170\001\143\140\000\000\000\002\000\001\163\165\001\030"
773  "\000\000\000\000\111\105\116\104\256\102\140\202";
774 #else
775
776 /*
777  * Checkerboard pattern, as a GIF.
778  */
779 const char image_pattern_data[] =
780    "\107\111\106\070\071\141\004\000\004\000\200\000\000\310\310"
781    "\310\377\377\377\041\376\016\111\040\167\141\163\040\141\040"
782    "\142\141\156\156\145\162\000\041\371\004\001\012\000\001\000"
783    "\054\000\000\000\000\004\000\004\000\000\002\005\104\174\147"
784    "\270\005\000\073";
785
786 /*
787  * 1x1 transparant GIF.
788  */
789 const char image_blank_data[] =
790    "GIF89a\001\000\001\000\200\000\000\377\377\377\000\000"
791    "\000!\371\004\001\000\000\000\000,\000\000\000\000\001"
792    "\000\001\000\000\002\002D\001\000;";
793 #endif
794
795 const size_t image_pattern_length = sizeof(image_pattern_data) - 1;
796 const size_t image_blank_length   = sizeof(image_blank_data) - 1;
797
798
799 static struct http_response cgi_error_memory_response[1];
800
801 static struct http_response *dispatch_known_cgi(struct client_state * csp,
802                                                 const char * path);
803 static struct map *parse_cgi_parameters(char *argstring);
804
805
806 /*********************************************************************
807  * 
808  * Function    :  dispatch_cgi
809  *
810  * Description :  Checks if a request URL has either the magical
811  *                hostname CGI_SITE_1_HOST (usually http://p.p/) or
812  *                matches CGI_SITE_2_HOST CGI_SITE_2_PATH (usually
813  *                http://config.privoxy.org/). If so, it passes
814  *                the (rest of the) path onto dispatch_known_cgi, which
815  *                calls the relevant CGI handler function.
816  *
817  * Parameters  :
818  *          1  :  csp = Current client state (buffers, headers, etc...)
819  *
820  * Returns     :  http_response if match, NULL if nonmatch or handler fail
821  *
822  *********************************************************************/
823 struct http_response *dispatch_cgi(struct client_state *csp)
824 {
825    const char *host = csp->http->host;
826    const char *path = csp->http->path;
827
828    /*
829     * Should we intercept ?
830     */
831
832    /* Note: "example.com" and "example.com." are equivalent hostnames. */
833
834    /* Either the host matches CGI_SITE_1_HOST ..*/
835    if (   ( (0 == strcmpic(host, CGI_SITE_1_HOST))
836          || (0 == strcmpic(host, CGI_SITE_1_HOST ".")))
837        && (path[0] == '/') )
838    {
839       /* ..then the path will all be for us.  Remove leading '/' */
840       path++;
841    }
842    /* Or it's the host part CGI_SITE_2_HOST, and the path CGI_SITE_2_PATH */
843    else if ( ( (0 == strcmpic(host, CGI_SITE_2_HOST ))
844             || (0 == strcmpic(host, CGI_SITE_2_HOST ".")) )
845           && (0 == strncmpic(path, CGI_SITE_2_PATH, strlen(CGI_SITE_2_PATH))) )
846    {
847       /* take everything following CGI_SITE_2_PATH */
848       path += strlen(CGI_SITE_2_PATH);
849       if (*path == '/')
850       {
851          /* skip the forward slash after CGI_SITE_2_PATH */
852          path++;
853       }
854       else if (*path != '\0')
855       {
856          /*
857           * weirdness: URL is /configXXX, where XXX is some string
858           * Do *NOT* intercept.
859           */
860          return NULL;
861       }
862    }
863    else
864    {
865       /* Not a CGI */
866       return NULL;
867    }
868
869    /* 
870     * This is a CGI call.
871     */
872
873    return dispatch_known_cgi(csp, path);
874 }
875
876
877 /*********************************************************************
878  *
879  * Function    :  grep_cgi_referrer
880  *
881  * Description :  Ugly provisorical fix that greps the value of the
882  *                referer HTTP header field out of a linked list of
883  *                strings like found at csp->headers. Will disappear
884  *                in Privoxy 3.1.
885  *
886  *                FIXME: csp->headers ought to be csp->http->headers
887  *                FIXME: Parsing all client header lines should
888  *                       happen right after the request is received!
889  *
890  * Parameters  :
891  *          1  :  csp = Current client state (buffers, headers, etc...)
892  *
893  * Returns     :  pointer to value (no copy!), or NULL if none found.
894  *
895  *********************************************************************/
896 char *grep_cgi_referrer(const struct client_state *csp)
897 {
898    struct list_entry *p;
899
900    for (p = csp->headers->first; p != NULL; p = p->next)
901    {
902       if (p->str == NULL) continue;
903       if (strncmpic(p->str, "Referer: ", 9) == 0)
904       {
905          return ((p->str) + 9);
906       }
907    }
908    return NULL;
909
910 }
911
912
913 /*********************************************************************
914  * 
915  * Function    :  referrer_is_safe
916  *
917  * Description :  Decides whether we trust the Referer for
918  *                CGI pages which are only meant to be reachable
919  *                through Privoxy's web interface directly.
920  *
921  * Parameters  :
922  *          1  :  csp = Current client state (buffers, headers, etc...)
923  *
924  * Returns     :  TRUE  if the referrer is safe, or
925  *                FALSE if the referrer is unsafe or not set.
926  *
927  *********************************************************************/
928 int referrer_is_safe (const struct client_state *csp)
929 {
930    char *referrer;
931    const char alternative_prefix[] = "http://" CGI_SITE_1_HOST "/";
932
933    referrer = grep_cgi_referrer(csp);
934
935    if (NULL == referrer)
936    {
937       /* No referrer, no access  */
938       log_error(LOG_LEVEL_ERROR, "Denying access to %s. No referrer found.",
939          csp->http->url);
940    }
941    else if ((0 == strncmp(referrer, CGI_PREFIX, sizeof(CGI_PREFIX)-1)
942          || (0 == strncmp(referrer, alternative_prefix, strlen(alternative_prefix)))))
943    {
944       /* Trustworthy referrer */
945       log_error(LOG_LEVEL_CGI, "Granting access to %s, referrer %s is trustworthy.",
946          csp->http->url, referrer);
947
948       return TRUE;
949    }
950    else
951    {
952       /* Untrustworthy referrer */
953       log_error(LOG_LEVEL_ERROR, "Denying access to %s, referrer %s isn't trustworthy.",
954          csp->http->url, referrer);
955    }
956
957    return FALSE;
958
959 }
960
961 /*********************************************************************
962  * 
963  * Function    :  dispatch_known_cgi
964  *
965  * Description :  Processes a CGI once dispatch_cgi has determined that
966  *                it matches one of the magic prefixes. Parses the path
967  *                as a cgi name plus query string, prepares a map that
968  *                maps CGI parameter names to their values, initializes
969  *                the http_response struct, and calls the relevant CGI
970  *                handler function.
971  *
972  * Parameters  :
973  *          1  :  csp = Current client state (buffers, headers, etc...)
974  *          2  :  path = Path of CGI, with the CGI prefix removed.
975  *                       Should not have a leading "/".
976  *
977  * Returns     :  http_response, or NULL on handler failure or out of
978  *                memory.
979  *
980  *********************************************************************/
981 static struct http_response *dispatch_known_cgi(struct client_state * csp,
982                                                 const char * path)
983 {
984    const struct cgi_dispatcher *d;
985    struct map *param_list;
986    struct http_response *rsp;
987    char *query_args_start;
988    char *path_copy;
989    jb_err err;
990
991    if (NULL == (path_copy = strdup(path)))
992    {
993       return cgi_error_memory();
994    }
995    query_args_start = path_copy;
996    while (*query_args_start && *query_args_start != '?' && *query_args_start != '/')
997    {
998       query_args_start++;
999    }
1000    if (*query_args_start == '/') 
1001    {
1002       *query_args_start++ = '\0';
1003       if ((param_list = new_map()))
1004       {
1005          map(param_list, "file", 1, url_decode(query_args_start), 0);
1006       }
1007    }
1008    else
1009    {
1010       if (*query_args_start == '?')
1011       {
1012          *query_args_start++ = '\0';
1013       }
1014       if (NULL == (param_list = parse_cgi_parameters(query_args_start)))
1015       {
1016          free(path_copy);
1017          return cgi_error_memory();
1018       }
1019    }
1020
1021    /*
1022     * At this point:
1023     * path_copy        = CGI call name
1024     * param_list       = CGI params, as map
1025     */
1026
1027    /* Get mem for response or fail*/
1028    if (NULL == (rsp = alloc_http_response()))
1029    {
1030       free(path_copy);
1031       free_map(param_list);
1032       return cgi_error_memory();
1033    }
1034
1035    /* 
1036     * Find and start the right CGI function
1037     */
1038    d = cgi_dispatchers;
1039    for (;;)
1040    {
1041       if ((d->name == NULL) || (strcmp(path_copy, d->name) == 0))
1042       {
1043          /*
1044           * If the called CGI is either harmless, or referred
1045           * from a trusted source, start it.
1046           */
1047          if (d->harmless || referrer_is_safe(csp))
1048          {
1049             err = (d->handler)(csp, rsp, param_list);
1050          }
1051          else
1052          {
1053             /*
1054              * Else, modify toggle calls so that they only display
1055              * the status, and deny all other calls.
1056              */
1057             if (0 == strcmp(path_copy, "toggle"))
1058             {
1059                unmap(param_list, "set");
1060                err = (d->handler)(csp, rsp, param_list);
1061             }
1062             else
1063             {
1064                err = cgi_error_disabled(csp, rsp);
1065             }
1066          }
1067
1068          free(path_copy);
1069          free_map(param_list);
1070
1071          if (err == JB_ERR_CGI_PARAMS)
1072          {
1073             err = cgi_error_bad_param(csp, rsp);
1074          }
1075          if (err && (err != JB_ERR_MEMORY))
1076          {
1077             /* Unexpected error! Shouldn't get here */
1078             log_error(LOG_LEVEL_ERROR, "Unexpected CGI error %d in top-level handler.  Please file a bug report!", err);
1079             err = cgi_error_unknown(csp, rsp, err);
1080          }
1081          if (!err)
1082          {
1083             /* It worked */
1084             rsp->reason = RSP_REASON_CGI_CALL;
1085             return finish_http_response(csp, rsp);
1086          }
1087          else
1088          {
1089             /* Error in handler, probably out-of-memory */
1090             free_http_response(rsp);
1091             return cgi_error_memory();
1092          }
1093       }
1094       d++;
1095    }
1096 }
1097    
1098         
1099 /*********************************************************************
1100  *
1101  * Function    :  parse_cgi_parameters
1102  *
1103  * Description :  Parse a URL-encoded argument string into name/value
1104  *                pairs and store them in a struct map list.
1105  *
1106  * Parameters  :
1107  *          1  :  argstring = string to be parsed.  Will be trashed.
1108  *
1109  * Returns     :  pointer to param list, or NULL if out of memory.
1110  *
1111  *********************************************************************/
1112 static struct map *parse_cgi_parameters(char *argstring)
1113 {
1114    char *p;
1115    char *vector[BUFFER_SIZE];
1116    int pairs, i;
1117    struct map *cgi_params;
1118
1119    if (NULL == (cgi_params = new_map()))
1120    {
1121       return NULL;
1122    }
1123
1124    /* 
1125     * IE 5 does, of course, violate RFC 2316 Sect 4.1 and sends
1126     * the fragment identifier along with the request, so we must
1127     * cut it off here, so it won't pollute the CGI params:
1128     */
1129    if (NULL != (p = strchr(argstring, '#')))
1130    {
1131       *p = '\0';
1132    }
1133
1134    pairs = ssplit(argstring, "&", vector, SZ(vector), 1, 1);
1135
1136    for (i = 0; i < pairs; i++)
1137    {
1138       if ((NULL != (p = strchr(vector[i], '='))) && (*(p+1) != '\0'))
1139       {
1140          *p = '\0';
1141          if (map(cgi_params, url_decode(vector[i]), 0, url_decode(++p), 0))
1142          {
1143             free_map(cgi_params);
1144             return NULL;
1145          }
1146       }
1147    }
1148
1149    return cgi_params;
1150
1151 }
1152
1153
1154 /*********************************************************************
1155  *
1156  * Function    :  get_char_param
1157  *
1158  * Description :  Get a single-character parameter passed to a CGI
1159  *                function.
1160  *
1161  * Parameters  :
1162  *          1  :  parameters = map of cgi parameters
1163  *          2  :  param_name = The name of the parameter to read
1164  *
1165  * Returns     :  Uppercase character on success, '\0' on error.
1166  *
1167  *********************************************************************/
1168 char get_char_param(const struct map *parameters,
1169                     const char *param_name)
1170 {
1171    char ch;
1172
1173    assert(parameters);
1174    assert(param_name);
1175
1176    ch = *(lookup(parameters, param_name));
1177    if ((ch >= 'a') && (ch <= 'z'))
1178    {
1179       ch = (char)(ch - 'a' + 'A');
1180    }
1181
1182    return ch;
1183 }
1184
1185
1186 /*********************************************************************
1187  *
1188  * Function    :  get_string_param
1189  *
1190  * Description :  Get a string paramater, to be used as an
1191  *                ACTION_STRING or ACTION_MULTI paramater.
1192  *                Validates the input to prevent stupid/malicious
1193  *                users from corrupting their action file.
1194  *
1195  * Parameters  :
1196  *          1  :  parameters = map of cgi parameters
1197  *          2  :  param_name = The name of the parameter to read
1198  *          3  :  pparam = destination for paramater.  Allocated as
1199  *                part of the map "parameters", so don't free it.
1200  *                Set to NULL if not specified.
1201  *
1202  * Returns     :  JB_ERR_OK         on success, or if the paramater
1203  *                                  was not specified.
1204  *                JB_ERR_MEMORY     on out-of-memory.
1205  *                JB_ERR_CGI_PARAMS if the paramater is not valid.
1206  *
1207  *********************************************************************/
1208 jb_err get_string_param(const struct map *parameters,
1209                         const char *param_name,
1210                         const char **pparam)
1211 {
1212    const char *param;
1213    const char *s;
1214    char ch;
1215
1216    assert(parameters);
1217    assert(param_name);
1218    assert(pparam);
1219
1220    *pparam = NULL;
1221
1222    param = lookup(parameters, param_name);
1223    if (!*param)
1224    {
1225       return JB_ERR_OK;
1226    }
1227
1228    if (strlen(param) >= CGI_PARAM_LEN_MAX)
1229    {
1230       /*
1231        * Too long.
1232        *
1233        * Note that the length limit is arbitrary, it just seems
1234        * sensible to limit it to *something*.  There's no
1235        * technical reason for any limit at all.
1236        */
1237       return JB_ERR_CGI_PARAMS;
1238    }
1239
1240    /* Check every character to see if it's legal */
1241    s = param;
1242    while ((ch = *s++) != '\0')
1243    {
1244       if ( ((unsigned char)ch < (unsigned char)' ')
1245         || (ch == '}') )
1246       {
1247          /* Probable hack attempt, or user accidentally used '}'. */
1248          return JB_ERR_CGI_PARAMS;
1249       }
1250    }
1251
1252    /* Success */
1253    *pparam = param;
1254
1255    return JB_ERR_OK;
1256 }
1257
1258
1259 /*********************************************************************
1260  *
1261  * Function    :  get_number_param
1262  *
1263  * Description :  Get a non-negative integer from the parameters
1264  *                passed to a CGI function.
1265  *
1266  * Parameters  :
1267  *          1  :  csp = Current client state (buffers, headers, etc...)
1268  *          2  :  parameters = map of cgi parameters
1269  *          3  :  name = Name of CGI parameter to read
1270  *          4  :  pvalue = destination for value.
1271  *                         Set to -1 on error.
1272  *
1273  * Returns     :  JB_ERR_OK         on success
1274  *                JB_ERR_MEMORY     on out-of-memory
1275  *                JB_ERR_CGI_PARAMS if the parameter was not specified
1276  *                                  or is not valid.
1277  *
1278  *********************************************************************/
1279 jb_err get_number_param(struct client_state *csp,
1280                         const struct map *parameters,
1281                         char *name,
1282                         unsigned *pvalue)
1283 {
1284    const char *param;
1285    char ch;
1286    unsigned value;
1287
1288    assert(csp);
1289    assert(parameters);
1290    assert(name);
1291    assert(pvalue);
1292
1293    *pvalue = 0; 
1294
1295    param = lookup(parameters, name);
1296    if (!*param)
1297    {
1298       return JB_ERR_CGI_PARAMS;
1299    }
1300
1301    /* We don't use atoi because I want to check this carefully... */
1302
1303    value = 0;
1304    while ((ch = *param++) != '\0')
1305    {
1306       if ((ch < '0') || (ch > '9'))
1307       {
1308          return JB_ERR_CGI_PARAMS;
1309       }
1310
1311       ch = (char)(ch - '0');
1312
1313       /* Note:
1314        *
1315        * <limits.h> defines UINT_MAX
1316        *
1317        * (UINT_MAX - ch) / 10 is the largest number that
1318        *     can be safely multiplied by 10 then have ch added.
1319        */
1320       if (value > ((UINT_MAX - (unsigned)ch) / 10U))
1321       {
1322          return JB_ERR_CGI_PARAMS;
1323       }
1324
1325       value = value * 10 + (unsigned)ch;
1326    }
1327
1328    /* Success */
1329    *pvalue = value;
1330
1331    return JB_ERR_OK;
1332
1333 }
1334
1335
1336 /*********************************************************************
1337  *
1338  * Function    :  error_response
1339  *
1340  * Description :  returns an http_response that explains the reason
1341  *                why a request failed.
1342  *
1343  * Parameters  :
1344  *          1  :  csp = Current client state (buffers, headers, etc...)
1345  *          2  :  templatename = Which template should be used for the answer
1346  *          3  :  sys_err = system error number
1347  *
1348  * Returns     :  A http_response.  If we run out of memory, this
1349  *                will be cgi_error_memory().
1350  *
1351  *********************************************************************/
1352 struct http_response *error_response(struct client_state *csp,
1353                                      const char *templatename,
1354                                      int sys_err)
1355 {
1356    jb_err err;
1357    struct http_response *rsp;
1358    struct map *exports = default_exports(csp, NULL);
1359    char *path = NULL;
1360
1361    if (exports == NULL)
1362    {
1363       return cgi_error_memory();
1364    }
1365
1366    if (NULL == (rsp = alloc_http_response()))
1367    {
1368       free_map(exports);
1369       return cgi_error_memory();
1370    }
1371
1372 #ifdef FEATURE_FORCE_LOAD
1373    if (csp->flags & CSP_FLAG_FORCED)
1374    {
1375       path = strdup(FORCE_PREFIX);
1376    }
1377    else
1378 #endif /* def FEATURE_FORCE_LOAD */
1379    {
1380       path = strdup("");
1381    }
1382    err = string_append(&path, csp->http->path);
1383
1384    if (!err) err = map(exports, "host", 1, html_encode(csp->http->host), 0);
1385    if (!err) err = map(exports, "hostport", 1, html_encode(csp->http->hostport), 0);
1386    if (!err) err = map(exports, "path", 1, html_encode_and_free_original(path), 0);
1387    if (!err) err = map(exports, "error", 1, html_encode_and_free_original(safe_strerror(sys_err)), 0);
1388    if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1); 
1389    if (!err)
1390    {
1391      err = map(exports, "host-ip", 1, html_encode(csp->http->host_ip_addr_str), 0);
1392      if (err)
1393      {
1394        /* Some failures, like "404 no such domain", don't have an IP address. */
1395        err = map(exports, "host-ip", 1, html_encode(csp->http->host), 0);
1396      }
1397    }
1398
1399
1400    if (err)
1401    {
1402       free_map(exports);
1403       free_http_response(rsp);
1404       return cgi_error_memory();
1405    }
1406
1407    if (!strcmp(templatename, "no-such-domain"))
1408    {
1409       rsp->status = strdup("404 No such domain");
1410       if (rsp->status == NULL)
1411       {
1412          free_map(exports);
1413          free_http_response(rsp);
1414          return cgi_error_memory();
1415       }
1416       rsp->reason = RSP_REASON_NO_SUCH_DOMAIN;
1417    }
1418    else if (!strcmp(templatename, "forwarding-failed"))
1419    {
1420       const struct forward_spec * fwd = forward_url(csp->http, csp);
1421       if (fwd == NULL)
1422       {
1423          log_error(LOG_LEVEL_FATAL, "gateway spec is NULL. This shouldn't happen!");
1424          /* Never get here - LOG_LEVEL_FATAL causes program exit */
1425       }
1426
1427       /*
1428        * XXX: While the template is called forwarding-failed,
1429        * it currently only handles socks forwarding failures.
1430        */
1431       assert(fwd->type != SOCKS_NONE);
1432
1433       /*
1434        * Map failure reason, forwarding type and forwarder.
1435        */
1436       if (NULL == csp->error_message)
1437       {
1438          /*
1439           * Either we forgot to record the failure reason,
1440           * or the memory allocation failed.
1441           */
1442          log_error(LOG_LEVEL_ERROR, "Socks failure reason missing.");
1443          csp->error_message = strdup("Failure reason missing. Check the log file for details.");
1444       }
1445       if (!err) err = map(exports, "gateway", 1, fwd->gateway_host, 1);
1446       if (!err) err = map(exports, "forwarding-type", 1, (fwd->type == SOCKS_4) ?
1447                          "socks4-" : "socks4a-", 1);
1448       if (!err) err = map(exports, "error-message", 1, html_encode(csp->error_message), 0);
1449
1450       if (!err) rsp->status = strdup("503 Forwarding failure");
1451       if ((rsp->status == NULL) || (NULL == csp->error_message) || err)
1452       {
1453          free_map(exports);
1454          free_http_response(rsp);
1455          return cgi_error_memory();
1456       }
1457       rsp->reason = RSP_REASON_FORWARDING_FAILED;
1458    }
1459    else if (!strcmp(templatename, "connect-failed"))
1460    {
1461       rsp->status = strdup("503 Connect failed");
1462       if (rsp->status == NULL)
1463       {
1464          free_map(exports);
1465          free_http_response(rsp);
1466          return cgi_error_memory();
1467       }
1468       rsp->reason = RSP_REASON_CONNECT_FAILED;
1469    }
1470
1471    err = template_fill_for_cgi(csp, templatename, exports, rsp);
1472    if (err)
1473    {
1474       free_http_response(rsp);
1475       return cgi_error_memory();
1476    }
1477
1478    return finish_http_response(csp, rsp);
1479 }
1480
1481
1482 /*********************************************************************
1483  *
1484  * Function    :  cgi_error_disabled
1485  *
1486  * Description :  CGI function that is called to generate an error
1487  *                response if the actions editor or toggle CGI are
1488  *                accessed despite having being disabled at compile-
1489  *                or run-time, or if the user followed an untrusted link
1490  *                to access a unsafe CGI feature that is only reachable
1491  *                through Privoxy directly.
1492  *
1493  * Parameters  :
1494  *          1  :  csp = Current client state (buffers, headers, etc...)
1495  *          2  :  rsp = http_response data structure for output
1496  *
1497  * CGI Parameters : none
1498  *
1499  * Returns     :  JB_ERR_OK on success
1500  *                JB_ERR_MEMORY on out-of-memory error.
1501  *
1502  *********************************************************************/
1503 jb_err cgi_error_disabled(struct client_state *csp,
1504                           struct http_response *rsp)
1505 {
1506    struct map *exports;
1507
1508    assert(csp);
1509    assert(rsp);
1510
1511    if (NULL == (exports = default_exports(csp, "cgi-error-disabled")))
1512    {
1513       return JB_ERR_MEMORY;
1514    }
1515    if (map(exports, "url", 1, html_encode(csp->http->url), 0))
1516    {
1517       /* Not important enough to do anything */
1518       log_error(LOG_LEVEL_ERROR, "Failed to fill in url.");
1519    }
1520
1521    return template_fill_for_cgi(csp, "cgi-error-disabled", exports, rsp);
1522 }
1523
1524
1525 /*********************************************************************
1526  *
1527  * Function    :  cgi_init_error_messages
1528  *
1529  * Description :  Call at the start of the program to initialize
1530  *                the error message used by cgi_error_memory().
1531  *
1532  * Parameters  :  N/A
1533  *
1534  * Returns     :  N/A
1535  *
1536  *********************************************************************/
1537 void cgi_init_error_messages(void)
1538 {
1539    memset(cgi_error_memory_response, '\0', sizeof(*cgi_error_memory_response));
1540    cgi_error_memory_response->head =
1541       "HTTP/1.0 500 Internal Privoxy Error\r\n"
1542       "Content-Type: text/html\r\n"
1543       "\r\n";
1544    cgi_error_memory_response->body =
1545       "<html>\r\n"
1546       "<head>\r\n"
1547       " <title>500 Internal Privoxy Error</title>\r\n"
1548       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1549       "</head>\r\n"
1550       "<body>\r\n"
1551       "<h1>500 Internal Privoxy Error</h1>\r\n"
1552       "<p>Privoxy <b>ran out of memory</b> while processing your request.</p>\r\n"
1553       "<p>Please contact your proxy administrator, or try again later</p>\r\n"
1554       "</body>\r\n"
1555       "</html>\r\n";
1556
1557    cgi_error_memory_response->head_length =
1558       strlen(cgi_error_memory_response->head);
1559    cgi_error_memory_response->content_length =
1560       strlen(cgi_error_memory_response->body);
1561    cgi_error_memory_response->reason = RSP_REASON_OUT_OF_MEMORY;
1562 }
1563
1564
1565 /*********************************************************************
1566  *
1567  * Function    :  cgi_error_memory
1568  *
1569  * Description :  Called if a CGI function runs out of memory.
1570  *                Returns a statically-allocated error response.
1571  *
1572  * Parameters  :  N/A
1573  *
1574  * Returns     :  http_response data structure for output.  This is
1575  *                statically allocated, for obvious reasons.
1576  *
1577  *********************************************************************/
1578 struct http_response *cgi_error_memory(void)
1579 {
1580    /* assert that it's been initialized. */
1581    assert(cgi_error_memory_response->head);
1582
1583    return cgi_error_memory_response;
1584 }
1585
1586
1587 /*********************************************************************
1588  *
1589  * Function    :  cgi_error_no_template
1590  *
1591  * Description :  Almost-CGI function that is called if a template
1592  *                cannot be loaded.  Note this is not a true CGI,
1593  *                it takes a template name rather than a map of 
1594  *                parameters.
1595  *
1596  * Parameters  :
1597  *          1  :  csp = Current client state (buffers, headers, etc...)
1598  *          2  :  rsp = http_response data structure for output
1599  *          3  :  template_name = Name of template that could not
1600  *                                be loaded.
1601  *
1602  * Returns     :  JB_ERR_OK on success
1603  *                JB_ERR_MEMORY on out-of-memory error.  
1604  *
1605  *********************************************************************/
1606 jb_err cgi_error_no_template(struct client_state *csp,
1607                              struct http_response *rsp,
1608                              const char *template_name)
1609 {
1610    static const char status[] =
1611       "500 Internal Privoxy Error";
1612    static const char body_prefix[] =
1613       "<html>\r\n"
1614       "<head>\r\n"
1615       " <title>500 Internal Privoxy Error</title>\r\n"
1616       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1617       "</head>\r\n"
1618       "<body>\r\n"
1619       "<h1>500 Internal Privoxy Error</h1>\r\n"
1620       "<p>Privoxy encountered an error while processing your request:</p>\r\n"
1621       "<p><b>Could not load template file <code>";
1622    static const char body_suffix[] =
1623       "</code> or one of it's included components.</b></p>\r\n"
1624       "<p>Please contact your proxy administrator.</p>\r\n"
1625       "<p>If you are the proxy administrator, please put the required file(s)"
1626       "in the <code><i>(confdir)</i>/templates</code> directory.  The "
1627       "location of the <code><i>(confdir)</i></code> directory "
1628       "is specified in the main Privoxy <code>config</code> "
1629       "file.  (It's typically the Privoxy install directory"
1630 #ifndef _WIN32
1631       ", or <code>/etc/privoxy/</code>"
1632 #endif /* ndef _WIN32 */
1633       ").</p>\r\n"
1634       "</body>\r\n"
1635       "</html>\r\n";
1636
1637    assert(csp);
1638    assert(rsp);
1639    assert(template_name);
1640
1641    /* Reset rsp, if needed */
1642    freez(rsp->status);
1643    freez(rsp->head);
1644    freez(rsp->body);
1645    rsp->content_length = 0;
1646    rsp->head_length = 0;
1647    rsp->is_static = 0;
1648
1649    rsp->body = malloc(strlen(body_prefix) + strlen(template_name) + strlen(body_suffix) + 1);
1650    if (rsp->body == NULL)
1651    {
1652       return JB_ERR_MEMORY;
1653    }
1654    strcpy(rsp->body, body_prefix);
1655    strcat(rsp->body, template_name);
1656    strcat(rsp->body, body_suffix);
1657
1658    rsp->status = strdup(status);
1659    if (rsp->status == NULL)
1660    {
1661       return JB_ERR_MEMORY;
1662    }
1663
1664    return JB_ERR_OK;
1665 }
1666
1667
1668 /*********************************************************************
1669  *
1670  * Function    :  cgi_error_unknown
1671  *
1672  * Description :  Almost-CGI function that is called if an unexpected
1673  *                error occurs in the top-level CGI dispatcher.
1674  *                In this context, "unexpected" means "anything other
1675  *                than JB_ERR_MEMORY or JB_ERR_CGI_PARAMS" - CGIs are
1676  *                expected to handle all other errors internally,
1677  *                since they can give more relavent error messages
1678  *                that way.
1679  *
1680  *                Note this is not a true CGI, it takes an error
1681  *                code rather than a map of parameters.
1682  *
1683  * Parameters  :
1684  *          1  :  csp = Current client state (buffers, headers, etc...)
1685  *          2  :  rsp = http_response data structure for output
1686  *          3  :  error_to_report = Error code to report.
1687  *
1688  * Returns     :  JB_ERR_OK on success
1689  *                JB_ERR_MEMORY on out-of-memory error.  
1690  *
1691  *********************************************************************/
1692 jb_err cgi_error_unknown(struct client_state *csp,
1693                          struct http_response *rsp,
1694                          jb_err error_to_report)
1695 {
1696    static const char status[] =
1697       "500 Internal Privoxy Error";
1698    static const char body_prefix[] =
1699       "<html>\r\n"
1700       "<head>\r\n"
1701       " <title>500 Internal Privoxy Error</title>\r\n"
1702       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1703       "</head>\r\n"
1704       "<body>\r\n"
1705       "<h1>500 Internal Privoxy Error</h1>\r\n"
1706       "<p>Privoxy encountered an error while processing your request:</p>\r\n"
1707       "<p><b>Unexpected internal error: ";
1708    static const char body_suffix[] =
1709       "</b></p>\r\n"
1710       "<p>Please "
1711       "<a href=\"http://sourceforge.net/tracker/?group_id=11118&amp;atid=111118\">"
1712       "file a bug report</a>.</p>\r\n"
1713       "</body>\r\n"
1714       "</html>\r\n";
1715    char errnumbuf[30];
1716    assert(csp);
1717    assert(rsp);
1718
1719    /* Reset rsp, if needed */
1720    freez(rsp->status);
1721    freez(rsp->head);
1722    freez(rsp->body);
1723    rsp->content_length = 0;
1724    rsp->head_length = 0;
1725    rsp->is_static = 0;
1726    rsp->reason = RSP_REASON_INTERNAL_ERROR;
1727
1728    snprintf(errnumbuf, sizeof(errnumbuf), "%d", error_to_report);
1729
1730    rsp->body = malloc(strlen(body_prefix) + strlen(errnumbuf) + strlen(body_suffix) + 1);
1731    if (rsp->body == NULL)
1732    {
1733       return JB_ERR_MEMORY;
1734    }
1735    strcpy(rsp->body, body_prefix);
1736    strcat(rsp->body, errnumbuf);
1737    strcat(rsp->body, body_suffix);
1738
1739    rsp->status = strdup(status);
1740    if (rsp->status == NULL)
1741    {
1742       return JB_ERR_MEMORY;
1743    }
1744
1745    return JB_ERR_OK;
1746 }
1747
1748
1749 /*********************************************************************
1750  *
1751  * Function    :  cgi_error_bad_param
1752  *
1753  * Description :  CGI function that is called if the parameters
1754  *                (query string) for a CGI were wrong.
1755  *               
1756  * Parameters  :
1757  *          1  :  csp = Current client state (buffers, headers, etc...)
1758  *          2  :  rsp = http_response data structure for output
1759  *
1760  * CGI Parameters : none
1761  *
1762  * Returns     :  JB_ERR_OK on success
1763  *                JB_ERR_MEMORY on out-of-memory error.  
1764  *
1765  *********************************************************************/
1766 jb_err cgi_error_bad_param(struct client_state *csp,
1767                            struct http_response *rsp)
1768 {
1769    struct map *exports;
1770
1771    assert(csp);
1772    assert(rsp);
1773
1774    if (NULL == (exports = default_exports(csp, NULL)))
1775    {
1776       return JB_ERR_MEMORY;
1777    }
1778
1779    return template_fill_for_cgi(csp, "cgi-error-bad-param", exports, rsp);
1780 }
1781
1782
1783 /*********************************************************************
1784  *
1785  * Function    :  cgi_redirect 
1786  *
1787  * Description :  CGI support function to generate a HTTP redirect
1788  *                message
1789  *
1790  * Parameters  :
1791  *          1  :  rsp = http_response data structure for output
1792  *          2  :  target = string with the target URL
1793  *
1794  * CGI Parameters : None
1795  *
1796  * Returns     :  JB_ERR_OK on success
1797  *                JB_ERR_MEMORY on out-of-memory error.  
1798  *
1799  *********************************************************************/
1800 jb_err cgi_redirect (struct http_response * rsp, const char *target)
1801 {
1802    jb_err err;
1803
1804    assert(rsp);
1805    assert(target);
1806
1807    err = enlist_unique_header(rsp->headers, "Location", target);
1808
1809    rsp->status = strdup("302 Local Redirect from Privoxy");
1810    if (rsp->status == NULL)
1811    {
1812       return JB_ERR_MEMORY;
1813    }
1814
1815    return err;
1816 }
1817
1818
1819 /*********************************************************************
1820  *
1821  * Function    :  add_help_link
1822  *
1823  * Description :  Produce a copy of the string given as item,
1824  *                embedded in an HTML link to its corresponding
1825  *                section (item name in uppercase) in the actions
1826  *                chapter of the user manual, (whose URL is given in
1827  *                the config and defaults to our web site).
1828  *
1829  *                FIXME: I currently only work for actions, and would
1830  *                       like to be generalized for other topics.
1831  *
1832  * Parameters  :  
1833  *          1  :  item = item (will NOT be free()d.) 
1834  *                       It is assumed to be HTML-safe.
1835  *          2  :  config = The current configuration.
1836  *
1837  * Returns     :  String with item embedded in link, or NULL on
1838  *                out-of-memory
1839  *
1840  *********************************************************************/
1841 char *add_help_link(const char *item,
1842                     struct configuration_spec *config)
1843 {
1844    char *result;
1845
1846    if (!item) return NULL;
1847
1848    result = strdup("<a href=\"");
1849    if (!strncmpic(config->usermanual, "file://", 7) ||
1850        !strncmpic(config->usermanual, "http", 4))
1851    {
1852       string_append(&result, config->usermanual);
1853    }
1854    else
1855    {
1856       string_append(&result, "http://");
1857       string_append(&result, CGI_SITE_2_HOST);
1858       string_append(&result, "/user-manual/");
1859    }
1860    string_append(&result, ACTIONS_HELP_PREFIX);
1861    string_join  (&result, string_toupper(item));
1862    string_append(&result, "\">");
1863    string_append(&result, item);
1864    string_append(&result, "</a> ");
1865
1866    return result;
1867 }
1868
1869
1870 /*********************************************************************
1871  *
1872  * Function    :  get_http_time
1873  *
1874  * Description :  Get the time in a format suitable for use in a
1875  *                HTTP header - e.g.:
1876  *                "Sun, 06 Nov 1994 08:49:37 GMT"
1877  *
1878  * Parameters  :  
1879  *          1  :  time_offset = Time returned will be current time
1880  *                              plus this number of seconds.
1881  *          2  :  buf = Destination for result.  Must be long enough
1882  *                      to hold 29 characters plus a trailing zero.
1883  *
1884  * Returns     :  N/A
1885  *
1886  *********************************************************************/
1887 void get_http_time(int time_offset, char *buf)
1888 {
1889    static const char day_names[7][4] =
1890       { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
1891    static const char month_names[12][4] =
1892       { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
1893         "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
1894
1895    struct tm *t;
1896    time_t current_time;
1897 #if defined(HAVE_GMTIME_R)
1898    /*
1899     * Declare dummy up here (instead of inside get/set gmt block) so it
1900     * doesn't go out of scope before it's potentially used in snprintf later.
1901     * Wrapping declaration inside HAVE_GMTIME_R keeps the compiler quiet when
1902     * !defined HAVE_GMTIME_R.
1903     */
1904    struct tm dummy; 
1905 #endif
1906
1907    assert(buf);
1908
1909    time(&current_time); /* get current time */
1910
1911    current_time += time_offset;
1912
1913    /* get and save the gmt */
1914    {
1915 #if HAVE_GMTIME_R
1916       t = gmtime_r(&current_time, &dummy);
1917 #elif FEATURE_PTHREAD
1918       pthread_mutex_lock(&gmtime_mutex);
1919       t = gmtime(&current_time);
1920       pthread_mutex_unlock(&gmtime_mutex);
1921 #else
1922       t = gmtime(&current_time);
1923 #endif
1924    }
1925
1926    /* Format: "Sun, 06 Nov 1994 08:49:37 GMT" */
1927    snprintf(buf, 30,
1928       "%s, %02d %s %4d %02d:%02d:%02d GMT",
1929       day_names[t->tm_wday],
1930       t->tm_mday,
1931       month_names[t->tm_mon],
1932       t->tm_year + 1900,
1933       t->tm_hour,
1934       t->tm_min,
1935       t->tm_sec
1936       );
1937
1938 }
1939
1940
1941 /*********************************************************************
1942  *
1943  * Function    :  finish_http_response
1944  *
1945  * Description :  Fill in the missing headers in an http response,
1946  *                and flatten the headers to an http head.
1947  *                For HEAD requests the body is freed once
1948  *                the Content-Length header is set.
1949  *
1950  * Parameters  :
1951  *          1  :  rsp = pointer to http_response to be processed
1952  *
1953  * Returns     :  A http_response, usually the rsp parameter.
1954  *                On error, free()s rsp and returns cgi_error_memory()
1955  *
1956  *********************************************************************/
1957 struct http_response *finish_http_response(const struct client_state *csp, struct http_response *rsp)
1958 {
1959    char buf[BUFFER_SIZE];
1960    jb_err err;
1961
1962    /* Special case - do NOT change this statically allocated response,
1963     * which is ready for output anyway.
1964     */
1965    if (rsp == cgi_error_memory_response)
1966    {
1967       return rsp;
1968    }
1969
1970    /* 
1971     * Fill in the HTTP Status
1972     */
1973    snprintf(buf, sizeof(buf), "HTTP/1.0 %s", rsp->status ? rsp->status : "200 OK");
1974    err = enlist_first(rsp->headers, buf);
1975
1976    /* 
1977     * Set the Content-Length
1978     */
1979    if (rsp->content_length == 0)
1980    {
1981       rsp->content_length = rsp->body ? strlen(rsp->body) : 0;
1982    }
1983    if (!err)
1984    {
1985       snprintf(buf, sizeof(buf), "Content-Length: %d", (int)rsp->content_length);
1986       err = enlist(rsp->headers, buf);
1987    }
1988
1989    if (0 == strcmpic(csp->http->gpc, "head"))
1990    {
1991       /*
1992        * The client only asked for the head. Dispose
1993        * the body and log an offensive message.
1994        *
1995        * While it may seem to be a bit inefficient to
1996        * prepare the body if it isn't needed, it's the
1997        * only way to get the Content-Length right for
1998        * dynamic pages. We could have disposed the body
1999        * earlier, but not without duplicating the
2000        * Content-Length setting code above.
2001        */
2002       log_error(LOG_LEVEL_CGI, "Preparing to give head to %s.", csp->ip_addr_str);
2003       freez(rsp->body);
2004       rsp->content_length = 0;
2005    }
2006
2007    if (strncmpic(rsp->status, "302", 3))
2008    {
2009      /*
2010       * If it's not a redirect without any content,
2011       * set the Content-Type to text/html if it's
2012       * not already specified.
2013       */
2014      if (!err) err = enlist_unique(rsp->headers, "Content-Type: text/html", 13);
2015    }
2016
2017    /*
2018     * Fill in the rest of the default headers:
2019     *
2020     * Date: set to current date/time.
2021     * Last-Modified: set to date/time the page was last changed.
2022     * Expires: set to date/time page next needs reloading.
2023     * Cache-Control: set to "no-cache" if applicable.
2024     * 
2025     * See http://www.w3.org/Protocols/rfc2068/rfc2068
2026     */
2027    if (rsp->is_static)
2028    {
2029       /*
2030        * Set Expires to about 10 min into the future so it'll get reloaded
2031        * occasionally, e.g. if Privoxy gets upgraded.
2032        */
2033
2034       if (!err)
2035       {
2036          get_http_time(0, buf);
2037          err = enlist_unique_header(rsp->headers, "Date", buf);
2038       }
2039
2040       /* Some date in the past. */
2041       if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Sat, 17 Jun 2000 12:00:00 GMT");
2042
2043       if (!err)
2044       {
2045          get_http_time(10 * 60, buf); /* 10 * 60sec = 10 minutes */
2046          err = enlist_unique_header(rsp->headers, "Expires", buf);
2047       }
2048    }
2049    else if (!strncmpic(rsp->status, "302", 3))
2050    {
2051       get_http_time(0, buf);
2052       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
2053    }
2054    else
2055    {
2056       /*
2057        * Setting "Cache-Control" to "no-cache" and  "Expires" to
2058        * the current time doesn't exactly forbid caching, it just
2059        * requires the client to revalidate the cached copy.
2060        *
2061        * If a temporary problem occurs and the user tries again after
2062        * getting Privoxy's error message, a compliant browser may set the
2063        * If-Modified-Since header with the content of the error page's
2064        * Last-Modified header. More often than not, the document on the server
2065        * is older than Privoxy's error message, the server would send status code
2066        * 304 and the browser would display the outdated error message again and again.
2067        *
2068        * For documents delivered with status code 403, 404 and 503 we set "Last-Modified"
2069        * to Tim Berners-Lee's birthday, which predates the age of any page on the web
2070        * and can be safely used to "revalidate" without getting a status code 304.
2071        *
2072        * There is no need to let the useless If-Modified-Since header reach the
2073        * server, it is therefore stripped by client_if_modified_since in parsers.c.
2074        */
2075       if (!err) err = enlist_unique_header(rsp->headers, "Cache-Control", "no-cache");
2076
2077       get_http_time(0, buf);
2078       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
2079       if (!strncmpic(rsp->status, "403", 3)
2080        || !strncmpic(rsp->status, "404", 3)
2081        || !strncmpic(rsp->status, "503", 3))
2082       {
2083          if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Wed, 08 Jun 1955 12:00:00 GMT");
2084       }
2085       else
2086       {
2087          if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", buf);
2088       }
2089       if (!err) err = enlist_unique_header(rsp->headers, "Expires", "Sat, 17 Jun 2000 12:00:00 GMT");
2090       if (!err) err = enlist_unique_header(rsp->headers, "Pragma", "no-cache");
2091    }
2092
2093    /*
2094     * Quoting RFC 2616:
2095     *
2096     * HTTP/1.1 applications that do not support persistent connections MUST
2097     * include the "close" connection option in every message.
2098     */
2099    if (!err) err = enlist_unique_header(rsp->headers, "Connection", "close");
2100
2101    /* 
2102     * Write the head
2103     */
2104    if (err || (NULL == (rsp->head = list_to_text(rsp->headers))))
2105    {
2106       free_http_response(rsp);
2107       return cgi_error_memory();
2108    }
2109    rsp->head_length = strlen(rsp->head);
2110
2111    return rsp;
2112
2113 }
2114
2115
2116 /*********************************************************************
2117  *
2118  * Function    :  alloc_http_response
2119  *
2120  * Description :  Allocates a new http_response structure.
2121  *
2122  * Parameters  :  N/A
2123  *
2124  * Returns     :  pointer to a new http_response, or NULL.
2125  *
2126  *********************************************************************/
2127 struct http_response *alloc_http_response(void)
2128 {
2129    return (struct http_response *) zalloc(sizeof(struct http_response));
2130
2131 }
2132
2133
2134 /*********************************************************************
2135  *
2136  * Function    :  free_http_response
2137  *
2138  * Description :  Free the memory occupied by an http_response
2139  *                and its depandant structures.
2140  *
2141  * Parameters  :
2142  *          1  :  rsp = pointer to http_response to be freed
2143  *
2144  * Returns     :  N/A
2145  *
2146  *********************************************************************/
2147 void free_http_response(struct http_response *rsp)
2148 {
2149    /*
2150     * Must special case cgi_error_memory_response, which is never freed.
2151     */
2152    if (rsp && (rsp != cgi_error_memory_response))
2153    {
2154       freez(rsp->status);
2155       freez(rsp->head);
2156       freez(rsp->body);
2157       destroy_list(rsp->headers);
2158       free(rsp);
2159    }
2160
2161 }
2162
2163
2164 /*********************************************************************
2165  *
2166  * Function    :  template_load
2167  *
2168  * Description :  CGI support function that loads a given HTML
2169  *                template, ignoring comment lines and following
2170  *                #include statements up to a depth of 1.
2171  *
2172  * Parameters  :
2173  *          1  :  csp = Current client state (buffers, headers, etc...)
2174  *          2  :  template_ptr = Destination for pointer to loaded
2175  *                               template text.
2176  *          3  :  templatename = name of the HTML template to be used
2177  *          4  :  recursive = Flag set if this function calls itself
2178  *                            following an #include statament
2179  *
2180  * Returns     :  JB_ERR_OK on success
2181  *                JB_ERR_MEMORY on out-of-memory error.  
2182  *                JB_ERR_FILE if the template file cannot be read
2183  *
2184  *********************************************************************/
2185 jb_err template_load(struct client_state *csp, char **template_ptr, 
2186                      const char *templatename, int recursive)
2187 {
2188    jb_err err;
2189    char *templates_dir_path;
2190    char *full_path;
2191    char *file_buffer;
2192    char *included_module;
2193    const char *p;
2194    FILE *fp;
2195    char buf[BUFFER_SIZE];
2196
2197    assert(csp);
2198    assert(template_ptr);
2199    assert(templatename);
2200
2201    *template_ptr = NULL;
2202
2203    /* Validate template name.  Paranoia. */
2204    for (p = templatename; *p != 0; p++)
2205    {
2206       if ( ((*p < 'a') || (*p > 'z'))
2207         && ((*p < 'A') || (*p > 'Z'))
2208         && ((*p < '0') || (*p > '9'))
2209         && (*p != '-')
2210         && (*p != '.'))
2211       {
2212          /* Illegal character */
2213          return JB_ERR_FILE;
2214       }
2215    }
2216
2217    /*
2218     * Generate full path using either templdir
2219     * or confdir/templates as base directory.
2220     */
2221    if (NULL != csp->config->templdir)
2222    {
2223       templates_dir_path = strdup(csp->config->templdir);
2224    }
2225    else
2226    {
2227       templates_dir_path = make_path(csp->config->confdir, "templates");
2228    }
2229
2230    if (templates_dir_path == NULL)
2231    {
2232       log_error(LOG_LEVEL_ERROR, "Out of memory while generating template path for %s.",
2233          templatename);
2234       return JB_ERR_MEMORY;
2235    }
2236
2237    full_path = make_path(templates_dir_path, templatename);
2238    free(templates_dir_path);
2239    if (full_path == NULL)
2240    {
2241       log_error(LOG_LEVEL_ERROR, "Out of memory while generating full template path for %s.",
2242          templatename);
2243       return JB_ERR_MEMORY;
2244    }
2245
2246    /* Allocate buffer */
2247
2248    file_buffer = strdup("");
2249    if (file_buffer == NULL)
2250    {
2251       log_error(LOG_LEVEL_ERROR, "Not enough free memory to buffer %s.", full_path);
2252       free(full_path);
2253       return JB_ERR_MEMORY;
2254    }
2255
2256    /* Open template file */
2257
2258    if (NULL == (fp = fopen(full_path, "r")))
2259    {
2260       log_error(LOG_LEVEL_ERROR, "Cannot open template file %s: %E", full_path);
2261       free(full_path);
2262       free(file_buffer);
2263       return JB_ERR_FILE;
2264    }
2265    free(full_path);
2266
2267    /* 
2268     * Read the file, ignoring comments, and honoring #include
2269     * statements, unless we're already called recursively.
2270     *
2271     * FIXME: The comment handling could break with lines >BUFFER_SIZE long.
2272     *        This is unlikely in practise.
2273     */
2274    while (fgets(buf, BUFFER_SIZE, fp))
2275    {
2276       if (!recursive && !strncmp(buf, "#include ", 9))
2277       {
2278          if (JB_ERR_OK != (err = template_load(csp, &included_module, chomp(buf + 9), 1)))
2279          {
2280             free(file_buffer);
2281             fclose(fp);
2282             return err;
2283          }
2284
2285          if (string_join(&file_buffer, included_module))
2286          {
2287             fclose(fp);
2288             return JB_ERR_MEMORY;
2289          }
2290
2291          continue;
2292       }
2293
2294       /* skip lines starting with '#' */
2295       if (*buf == '#')
2296       {
2297          continue;
2298       }
2299
2300       if (string_append(&file_buffer, buf))
2301       {
2302          fclose(fp);
2303          return JB_ERR_MEMORY;
2304       }
2305    }
2306    fclose(fp);
2307
2308    *template_ptr = file_buffer;
2309
2310    return JB_ERR_OK;
2311 }
2312
2313
2314 /*********************************************************************
2315  *
2316  * Function    :  template_fill
2317  *
2318  * Description :  CGI support function that fills in a pre-loaded
2319  *                HTML template by replacing @name@ with value using
2320  *                pcrs, for each item in the output map.
2321  *
2322  *                Note that a leading '$' charachter in the export map's
2323  *                values will be stripped and toggle on backreference
2324  *                interpretation.
2325  *
2326  * Parameters  :
2327  *          1  :  template_ptr = IN: Template to be filled out.
2328  *                                   Will be free()d.
2329  *                               OUT: Filled out template.
2330  *                                    Caller must free().
2331  *          2  :  exports = map with fill in symbol -> name pairs
2332  *
2333  * Returns     :  JB_ERR_OK on success (and for uncritical errors)
2334  *                JB_ERR_MEMORY on out-of-memory error
2335  *
2336  *********************************************************************/
2337 jb_err template_fill(char **template_ptr, const struct map *exports)
2338 {
2339    struct map_entry *m;
2340    pcrs_job *job;
2341    char buf[BUFFER_SIZE];
2342    char *tmp_out_buffer;
2343    char *file_buffer;
2344    size_t  size;
2345    int error;
2346    const char *flags;
2347
2348    assert(template_ptr);
2349    assert(*template_ptr);
2350    assert(exports);
2351
2352    file_buffer = *template_ptr;
2353    size = strlen(file_buffer) + 1;
2354
2355    /* 
2356     * Assemble pcrs joblist from exports map
2357     */
2358    for (m = exports->first; m != NULL; m = m->next)
2359    {
2360       if (*m->name == '$')
2361       {
2362          /*
2363           * First character of name is '$', so remove this flag
2364           * character and allow backreferences ($1 etc) in the
2365           * "replace with" text.
2366           */
2367          snprintf(buf, BUFFER_SIZE, "%s", m->name + 1);
2368          flags = "sigU";
2369       }
2370       else
2371       {
2372          /*
2373           * Treat the "replace with" text as a literal string - 
2374           * no quoting needed, no backreferences allowed.
2375           * ("Trivial" ['T'] flag).
2376           */
2377          flags = "sigTU";
2378
2379          /* Enclose name in @@ */
2380          snprintf(buf, BUFFER_SIZE, "@%s@", m->name);
2381       }
2382
2383
2384       log_error(LOG_LEVEL_CGI, "Substituting: s/%s/%s/%s", buf, m->value, flags);
2385
2386       /* Make and run job. */
2387       job = pcrs_compile(buf, m->value, flags,  &error);
2388       if (job == NULL) 
2389       {
2390          if (error == PCRS_ERR_NOMEM)
2391          {
2392             free(file_buffer);
2393             *template_ptr = NULL;
2394             return JB_ERR_MEMORY;
2395          }
2396          else
2397          {
2398             log_error(LOG_LEVEL_ERROR, "Error compiling template fill job %s: %d", m->name, error);
2399             /* Hope it wasn't important and silently ignore the invalid job */
2400          }
2401       }
2402       else
2403       {
2404          error = pcrs_execute(job, file_buffer, size, &tmp_out_buffer, &size);
2405
2406          pcrs_free_job(job);
2407          if (NULL == tmp_out_buffer)
2408          {
2409             *template_ptr = NULL;
2410             return JB_ERR_MEMORY;
2411          }
2412
2413          if (error < 0)
2414          {
2415             /* 
2416              * Substitution failed, keep the original buffer,
2417              * log the problem and ignore it.
2418              * 
2419              * The user might see some unresolved @CGI_VARIABLES@,
2420              * but returning a special CGI error page seems unreasonable
2421              * and could mask more important error messages.
2422              */
2423             free(tmp_out_buffer);
2424             log_error(LOG_LEVEL_ERROR, "Failed to execute s/%s/%s/%s. %s",
2425                buf, m->value, flags, pcrs_strerror(error));
2426          }
2427          else
2428          {
2429             /* Substitution succeeded, use modified buffer. */
2430             free(file_buffer);
2431             file_buffer = tmp_out_buffer;
2432          }
2433       }
2434    }
2435
2436    /*
2437     * Return
2438     */
2439    *template_ptr = file_buffer;
2440    return JB_ERR_OK;
2441 }
2442
2443
2444 /*********************************************************************
2445  *
2446  * Function    :  template_fill_for_cgi
2447  *
2448  * Description :  CGI support function that loads a HTML template
2449  *                and fills it in.  Handles file-not-found errors
2450  *                by sending a HTML error message.  For convenience,
2451  *                this function also frees the passed "exports" map.
2452  *
2453  * Parameters  :
2454  *          1  :  csp = Client state
2455  *          2  :  templatename = name of the HTML template to be used
2456  *          3  :  exports = map with fill in symbol -> name pairs.
2457  *                          Will be freed by this function.
2458  *          4  :  rsp = Response structure to fill in.
2459  *
2460  * Returns     :  JB_ERR_OK on success
2461  *                JB_ERR_MEMORY on out-of-memory error
2462  *
2463  *********************************************************************/
2464 jb_err template_fill_for_cgi(struct client_state *csp,
2465                              const char *templatename,
2466                              struct map *exports,
2467                              struct http_response *rsp)
2468 {
2469    jb_err err;
2470    
2471    assert(csp);
2472    assert(templatename);
2473    assert(exports);
2474    assert(rsp);
2475
2476    err = template_load(csp, &rsp->body, templatename, 0);
2477    if (err == JB_ERR_FILE)
2478    {
2479       free_map(exports);
2480       return cgi_error_no_template(csp, rsp, templatename);
2481    }
2482    else if (err)
2483    {
2484       free_map(exports);
2485       return err; /* JB_ERR_MEMORY */
2486    }
2487    err = template_fill(&rsp->body, exports);
2488    free_map(exports);
2489    return err;
2490 }
2491
2492
2493 /*********************************************************************
2494  *
2495  * Function    :  default_exports
2496  *
2497  * Description :  returns a struct map list that contains exports
2498  *                which are common to all CGI functions.
2499  *
2500  * Parameters  :
2501  *          1  :  csp = Current client state (buffers, headers, etc...)
2502  *          2  :  caller = name of CGI who calls us and which should
2503  *                         be excluded from the generated menu. May be
2504  *                         NULL.
2505  * Returns     :  NULL if no memory, else a new map.  Caller frees.
2506  *
2507  *********************************************************************/
2508 struct map *default_exports(const struct client_state *csp, const char *caller)
2509 {
2510    char buf[20];
2511    jb_err err;
2512    struct map * exports;
2513    int local_help_exists = 0;
2514
2515    assert(csp);
2516
2517    exports = new_map();
2518    if (exports == NULL)
2519    {
2520       return NULL;
2521    }
2522
2523    err = map(exports, "version", 1, html_encode(VERSION), 0);
2524    if (!err) err = map(exports, "my-ip-address", 1, html_encode(csp->my_ip_addr_str ? csp->my_ip_addr_str : "unknown"), 0);
2525    if (!err) err = map(exports, "my-hostname",   1, html_encode(csp->my_hostname ? csp->my_hostname : "unknown"), 0);
2526    if (!err) err = map(exports, "homepage",      1, html_encode(HOME_PAGE_URL), 0);
2527    if (!err) err = map(exports, "default-cgi",   1, html_encode(CGI_PREFIX), 0);
2528    if (!err) err = map(exports, "menu",          1, make_menu(caller, csp->config->feature_flags), 0);
2529    if (!err) err = map(exports, "code-status",   1, CODE_STATUS, 1);
2530    if (!strncmpic(csp->config->usermanual, "file://", 7) ||
2531        !strncmpic(csp->config->usermanual, "http", 4))
2532    {
2533       /* Manual is located somewhere else, just link to it. */
2534       if (!err) err = map(exports, "user-manual", 1, html_encode(csp->config->usermanual), 0);
2535    }
2536    else
2537    {
2538       /* Manual is delivered by Privoxy. */
2539       if (!err) err = map(exports, "user-manual", 1, html_encode(CGI_PREFIX"user-manual/"), 0);
2540    }
2541    if (!err) err = map(exports, "actions-help-prefix", 1, ACTIONS_HELP_PREFIX ,1);
2542 #ifdef FEATURE_TOGGLE
2543    if (!err) err = map_conditional(exports, "enabled-display", global_toggle_state);
2544 #else
2545    if (!err) err = map_block_killer(exports, "can-toggle");
2546 #endif
2547
2548    snprintf(buf, 20, "%d", csp->config->hport);
2549    if (!err) err = map(exports, "my-port", 1, buf, 1);
2550
2551    if(!strcmp(CODE_STATUS, "stable"))
2552    {
2553       if (!err) err = map_block_killer(exports, "unstable");
2554    }
2555
2556    if (csp->config->admin_address != NULL)
2557    {
2558       if (!err) err = map(exports, "admin-address", 1, html_encode(csp->config->admin_address), 0);
2559       local_help_exists = 1;
2560    }
2561    else
2562    {
2563       if (!err) err = map_block_killer(exports, "have-adminaddr-info");
2564    }
2565
2566    if (csp->config->proxy_info_url != NULL)
2567    {
2568       if (!err) err = map(exports, "proxy-info-url", 1, html_encode(csp->config->proxy_info_url), 0);
2569       local_help_exists = 1;
2570    }
2571    else
2572    {
2573       if (!err) err = map_block_killer(exports, "have-proxy-info");
2574    }
2575
2576    if (local_help_exists == 0)
2577    {
2578       if (!err) err = map_block_killer(exports, "have-help-info");
2579    }
2580
2581    if (err)
2582    {
2583       free_map(exports);
2584       return NULL;
2585    }
2586
2587    return exports;
2588 }
2589
2590
2591 /*********************************************************************
2592  *
2593  * Function    :  map_block_killer
2594  *
2595  * Description :  Convenience function.
2596  *                Adds a "killer" for the conditional HTML-template
2597  *                block <name>, i.e. a substitution of the regex
2598  *                "if-<name>-start.*if-<name>-end" to the given
2599  *                export list.
2600  *
2601  * Parameters  :  
2602  *          1  :  exports = map to extend
2603  *          2  :  name = name of conditional block
2604  *
2605  * Returns     :  JB_ERR_OK on success
2606  *                JB_ERR_MEMORY on out-of-memory error.  
2607  *
2608  *********************************************************************/
2609 jb_err map_block_killer(struct map *exports, const char *name)
2610 {
2611    char buf[1000]; /* Will do, since the names are hardwired */
2612
2613    assert(exports);
2614    assert(name);
2615    assert(strlen(name) < 490);
2616
2617    snprintf(buf, 1000, "if-%s-start.*if-%s-end", name, name);
2618    return map(exports, buf, 1, "", 1);
2619 }
2620
2621
2622 /*********************************************************************
2623  *
2624  * Function    :  map_block_keep
2625  *
2626  * Description :  Convenience function.  Removes the markers used
2627  *                by map-block-killer, to save a few bytes.
2628  *                i.e. removes "@if-<name>-start@" and "@if-<name>-end@"
2629  *
2630  * Parameters  :  
2631  *          1  :  exports = map to extend
2632  *          2  :  name = name of conditional block
2633  *
2634  * Returns     :  JB_ERR_OK on success
2635  *                JB_ERR_MEMORY on out-of-memory error.  
2636  *
2637  *********************************************************************/
2638 jb_err map_block_keep(struct map *exports, const char *name)
2639 {
2640    jb_err err;
2641    char buf[500]; /* Will do, since the names are hardwired */
2642
2643    assert(exports);
2644    assert(name);
2645    assert(strlen(name) < 490);
2646
2647    snprintf(buf, 500, "if-%s-start", name);
2648    err = map(exports, buf, 1, "", 1);
2649
2650    if (err)
2651    {
2652       return err;
2653    }
2654
2655    snprintf(buf, 500, "if-%s-end", name);
2656    return map(exports, buf, 1, "", 1);
2657 }
2658
2659
2660 /*********************************************************************
2661  *
2662  * Function    :  map_conditional
2663  *
2664  * Description :  Convenience function.
2665  *                Adds an "if-then-else" for the conditional HTML-template
2666  *                block <name>, i.e. a substitution of the form:
2667  *                @if-<name>-then@
2668  *                   True text
2669  *                @else-not-<name>@
2670  *                   False text
2671  *                @endif-<name>@
2672  *
2673  *                The control structure and one of the alternatives
2674  *                will be hidden.
2675  *
2676  * Parameters  :  
2677  *          1  :  exports = map to extend
2678  *          2  :  name = name of conditional block
2679  *          3  :  choose_first = nonzero for first, zero for second.
2680  *
2681  * Returns     :  JB_ERR_OK on success
2682  *                JB_ERR_MEMORY on out-of-memory error.  
2683  *
2684  *********************************************************************/
2685 jb_err map_conditional(struct map *exports, const char *name, int choose_first)
2686 {
2687    char buf[1000]; /* Will do, since the names are hardwired */
2688    jb_err err;
2689
2690    assert(exports);
2691    assert(name);
2692    assert(strlen(name) < 480);
2693
2694    snprintf(buf, 1000, (choose_first
2695       ? "else-not-%s@.*@endif-%s"
2696       : "if-%s-then@.*@else-not-%s"),
2697       name, name);
2698
2699    err = map(exports, buf, 1, "", 1);
2700    if (err)
2701    {
2702       return err;
2703    }
2704
2705    snprintf(buf, 1000, (choose_first ? "if-%s-then" : "endif-%s"), name);
2706    return map(exports, buf, 1, "", 1);
2707 }
2708
2709
2710 /*********************************************************************
2711  *
2712  * Function    :  make_menu
2713  *
2714  * Description :  Returns an HTML-formatted menu of the available 
2715  *                unhidden CGIs, excluding the one given in <self>
2716  *                and the toggle CGI if toggling is disabled.
2717  *
2718  * Parameters  :
2719  *          1  :  self = name of CGI to leave out, can be NULL for
2720  *                complete listing.
2721  *          2  :  feature_flags = feature bitmap from csp->config
2722  *                
2723  *
2724  * Returns     :  menu string, or NULL on out-of-memory error.
2725  *
2726  *********************************************************************/
2727 char *make_menu(const char *self, const unsigned feature_flags)
2728 {
2729    const struct cgi_dispatcher *d;
2730    char *result = strdup("");
2731
2732    if (self == NULL)
2733    {
2734       self = "NO-SUCH-CGI!";
2735    }
2736
2737    /* List available unhidden CGI's and export as "other-cgis" */
2738    for (d = cgi_dispatchers; d->name; d++)
2739    {
2740
2741 #ifdef FEATURE_TOGGLE
2742       if (!(feature_flags & RUNTIME_FEATURE_CGI_TOGGLE) && !strcmp(d->name, "toggle"))
2743       {
2744          /*
2745           * Suppress the toggle link if remote toggling is disabled.
2746           */
2747          continue;
2748       }
2749 #endif /* def FEATURE_TOGGLE */
2750
2751       if (d->description && strcmp(d->name, self))
2752       {
2753          char *html_encoded_prefix;
2754
2755          /*
2756           * Line breaks would be great, but break
2757           * the "blocked" template's JavaScript.
2758           */
2759          string_append(&result, "<li><a href=\"");
2760          html_encoded_prefix = html_encode(CGI_PREFIX);
2761          if (html_encoded_prefix == NULL)
2762          {
2763             return NULL;  
2764          }
2765          else
2766          {
2767             string_append(&result, html_encoded_prefix);
2768             free(html_encoded_prefix);
2769          }
2770          string_append(&result, d->name);
2771          string_append(&result, "\">");
2772          string_append(&result, d->description);
2773          string_append(&result, "</a></li>");
2774       }
2775    }
2776
2777    return result;
2778 }
2779
2780
2781 /*********************************************************************
2782  *
2783  * Function    :  dump_map
2784  *
2785  * Description :  HTML-dump a map for debugging (as table)
2786  *
2787  * Parameters  :
2788  *          1  :  the_map = map to dump
2789  *
2790  * Returns     :  string with HTML
2791  *
2792  *********************************************************************/
2793 char *dump_map(const struct map *the_map)
2794 {
2795    struct map_entry *cur_entry;
2796    char *ret = strdup("");
2797
2798    string_append(&ret, "<table>\n");
2799
2800    for (cur_entry = the_map->first;
2801         (cur_entry != NULL) && (ret != NULL);
2802         cur_entry = cur_entry->next)
2803    {
2804       string_append(&ret, "<tr><td><b>");
2805       string_join  (&ret, html_encode(cur_entry->name));
2806       string_append(&ret, "</b></td><td>");
2807       string_join  (&ret, html_encode(cur_entry->value));
2808       string_append(&ret, "</td></tr>\n");
2809    }
2810
2811    string_append(&ret, "</table>\n");
2812    return ret;
2813 }
2814
2815
2816 /*
2817   Local Variables:
2818   tab-width: 3
2819   end:
2820 */