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