TODO: Remove CVS id and update URL
[privoxy.git] / cgi.c
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/cgi.c,v $
4  *
5  * Purpose     :  Declares functions to intercept request, generate
6  *                html or gif answers, and to compose HTTP resonses.
7  *                This only contains the framework functions, the
8  *                actual handler functions are declared elsewhere.
9  *
10  * Copyright   :  Written by and Copyright (C) 2001-2017
11  *                members of the Privoxy team. http://www.privoxy.org/
12  *
13  *                Based on the Internet Junkbuster originally written
14  *                by and Copyright (C) 1997 Anonymous Coders and
15  *                Junkbusters Corporation.  http://www.junkbusters.com
16  *
17  *                This program is free software; you can redistribute it
18  *                and/or modify it under the terms of the GNU General
19  *                Public License as published by the Free Software
20  *                Foundation; either version 2 of the License, or (at
21  *                your option) any later version.
22  *
23  *                This program is distributed in the hope that it will
24  *                be useful, but WITHOUT ANY WARRANTY; without even the
25  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
26  *                PARTICULAR PURPOSE.  See the GNU General Public
27  *                License for more details.
28  *
29  *                The GNU General Public License should be included with
30  *                this file.  If not, you can view it at
31  *                http://www.gnu.org/copyleft/gpl.html
32  *                or write to the Free Software Foundation, Inc., 59
33  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
34  *
35  **********************************************************************/
36
37
38 #include "config.h"
39
40 #include <stdio.h>
41 #include <sys/types.h>
42 #include <stdlib.h>
43 #include <ctype.h>
44 #include <string.h>
45 #include <limits.h>
46 #include <assert.h>
47
48 #ifdef FEATURE_COMPRESSION
49 #include <zlib.h>
50 #endif
51
52 #include "project.h"
53 #include "cgi.h"
54 #include "list.h"
55 #include "encode.h"
56 #include "ssplit.h"
57 #include "errlog.h"
58 #include "filters.h"
59 #include "miscutil.h"
60 #include "cgisimple.h"
61 #include "jbsockets.h"
62 #if defined(FEATURE_CGI_EDIT_ACTIONS) || defined(FEATURE_TOGGLE)
63 #include "cgiedit.h"
64 #endif /* defined(FEATURE_CGI_EDIT_ACTIONS) || defined (FEATURE_TOGGLE) */
65
66 /* loadcfg.h is for global_toggle_state only */
67 #include "loadcfg.h"
68 /* jcc.h is for mutex semaphore globals only */
69 #include "jcc.h"
70
71 /*
72  * List of CGI functions: name, handler, description
73  * Note: Do NOT use single quotes in the description;
74  *       this will break the dynamic "blocked" template!
75  */
76 static const struct cgi_dispatcher cgi_dispatchers[] = {
77    { "",
78          cgi_default,
79          "Privoxy main page",
80          TRUE },
81 #ifdef FEATURE_GRACEFUL_TERMINATION
82    { "die",
83          cgi_die,
84          "<b>Shut down</b> - <em class=\"warning\">Do not deploy this build in a production environment, "
85         "this is a one click Denial Of Service attack!!!</em>",
86          FALSE },
87 #endif
88    { "show-status",
89          cgi_show_status,
90 #ifdef FEATURE_CGI_EDIT_ACTIONS
91         "View &amp; change the current configuration",
92 #else
93         "View the current configuration",
94 #endif
95          TRUE },
96 #ifdef FEATURE_CLIENT_TAGS
97    /*
98     * This is marked as harmless because despite the description
99     * used in the menu the actual toggling is done through another
100     * path ("/toggle-client-tag").
101     */
102    { "client-tags",
103          cgi_show_client_tags,
104          "View or toggle the tags that can be set based on the clients address",
105          TRUE },
106 #endif
107    { "show-request",
108          cgi_show_request,
109          "View the request headers",
110          TRUE },
111    { "show-url-info",
112          cgi_show_url_info,
113          "Look up which actions apply to a URL and why",
114          TRUE },
115 #ifdef FEATURE_TOGGLE
116    { "toggle",
117          cgi_toggle,
118          "Toggle Privoxy on or off",
119          FALSE },
120 #endif /* def FEATURE_TOGGLE */
121 #ifdef FEATURE_CLIENT_TAGS
122    { "toggle-client-tag",
123          cgi_toggle_client_tag,
124          NULL,
125          FALSE },
126 #endif
127 #ifdef FEATURE_CGI_EDIT_ACTIONS
128    { "edit-actions", /* Edit the actions list */
129          cgi_edit_actions,
130          NULL, FALSE },
131    { "eaa", /* Shortcut for edit-actions-add-url-form */
132          cgi_edit_actions_add_url_form,
133          NULL, FALSE },
134    { "eau", /* Shortcut for edit-actions-url-form */
135          cgi_edit_actions_url_form,
136          NULL, FALSE },
137    { "ear", /* Shortcut for edit-actions-remove-url-form */
138          cgi_edit_actions_remove_url_form,
139          NULL, FALSE },
140    { "eal", /* Shortcut for edit-actions-list */
141          cgi_edit_actions_list,
142          NULL, FALSE },
143    { "eafu", /* Shortcut for edit-actions-for-url */
144          cgi_edit_actions_for_url,
145          NULL, FALSE },
146    { "eas", /* Shortcut for edit-actions-submit */
147          cgi_edit_actions_submit,
148          NULL, FALSE },
149    { "easa", /* Shortcut for edit-actions-section-add */
150          cgi_edit_actions_section_add,
151          NULL, FALSE  },
152    { "easr", /* Shortcut for edit-actions-section-remove */
153          cgi_edit_actions_section_remove,
154          NULL, FALSE  },
155    { "eass", /* Shortcut for edit-actions-section-swap */
156          cgi_edit_actions_section_swap,
157          NULL, FALSE  },
158    { "edit-actions-for-url",
159          cgi_edit_actions_for_url,
160          NULL, FALSE  /* Edit the actions for (a) specified URL(s) */ },
161    { "edit-actions-list",
162          cgi_edit_actions_list,
163          NULL, TRUE /* Edit the actions list */ },
164    { "edit-actions-submit",
165          cgi_edit_actions_submit,
166          NULL, FALSE /* Change the actions for (a) specified URL(s) */ },
167    { "edit-actions-url",
168          cgi_edit_actions_url,
169          NULL, FALSE /* Change a URL pattern in the actionsfile */ },
170    { "edit-actions-url-form",
171          cgi_edit_actions_url_form,
172          NULL, FALSE /* Form to change a URL pattern in the actionsfile */ },
173    { "edit-actions-add-url",
174          cgi_edit_actions_add_url,
175          NULL, FALSE /* Add a URL pattern to the actionsfile */ },
176    { "edit-actions-add-url-form",
177          cgi_edit_actions_add_url_form,
178          NULL, FALSE /* Form to add a URL pattern to the actionsfile */ },
179    { "edit-actions-remove-url",
180          cgi_edit_actions_remove_url,
181          NULL, FALSE /* Remove a URL pattern from the actionsfile */ },
182    { "edit-actions-remove-url-form",
183          cgi_edit_actions_remove_url_form,
184          NULL, FALSE /* Form to remove a URL pattern from the actionsfile */ },
185    { "edit-actions-section-add",
186          cgi_edit_actions_section_add,
187          NULL, FALSE /* Remove a section from the actionsfile */ },
188    { "edit-actions-section-remove",
189          cgi_edit_actions_section_remove,
190          NULL, FALSE /* Remove a section from the actionsfile */ },
191    { "edit-actions-section-swap",
192          cgi_edit_actions_section_swap,
193          NULL, FALSE /* Swap two sections in the actionsfile */ },
194 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
195    { "error-favicon.ico",
196          cgi_send_error_favicon,
197          NULL, TRUE /* Sends the favicon image for error pages. */ },
198    { "favicon.ico",
199          cgi_send_default_favicon,
200          NULL, TRUE /* Sends the default favicon image. */ },
201    { "robots.txt",
202          cgi_robots_txt,
203          NULL, TRUE /* Sends a robots.txt file to tell robots to go away. */ },
204    { "send-banner",
205          cgi_send_banner,
206          NULL, TRUE /* Send a built-in image */ },
207    { "send-stylesheet",
208          cgi_send_stylesheet,
209          NULL, FALSE /* Send templates/cgi-style.css */ },
210    { "t",
211          cgi_transparent_image,
212          NULL, TRUE /* Send a transparent image (short name) */ },
213    { "url-info-osd.xml",
214          cgi_send_url_info_osd,
215          NULL, TRUE /* Send templates/url-info-osd.xml */ },
216    { "user-manual",
217           cgi_send_user_manual,
218           NULL, TRUE /* Send user-manual */ },
219    { NULL, /* NULL Indicates end of list and default page */
220          cgi_error_404,
221          NULL, TRUE /* Unknown CGI page */ }
222 };
223
224
225 /*
226  * Built-in images for ad replacement
227  *
228  * Hint: You can encode your own images like this:
229  * cat your-image | perl -e 'while (read STDIN, $c, 1) { printf("\\%.3o", unpack("C", $c)); }'
230  */
231
232 #ifdef FEATURE_NO_GIFS
233
234 /*
235  * Checkerboard pattern, as a PNG.
236  */
237 const char image_pattern_data[] =
238    "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104"
239    "\122\000\000\000\004\000\000\000\004\010\006\000\000\000\251"
240    "\361\236\176\000\000\000\006\142\113\107\104\000\000\000\000"
241    "\000\000\371\103\273\177\000\000\000\033\111\104\101\124\010"
242    "\327\143\140\140\140\060\377\377\377\077\003\234\106\341\060"
243    "\060\230\063\020\124\001\000\161\021\031\241\034\364\030\143"
244    "\000\000\000\000\111\105\116\104\256\102\140\202";
245
246 /*
247  * 1x1 transparant PNG.
248  */
249 const char image_blank_data[] =
250  "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104\122"
251  "\000\000\000\001\000\000\000\001\001\003\000\000\000\045\333\126"
252  "\312\000\000\000\003\120\114\124\105\377\377\377\247\304\033\310"
253  "\000\000\000\001\164\122\116\123\000\100\346\330\146\000\000\000"
254  "\001\142\113\107\104\000\210\005\035\110\000\000\000\012\111\104"
255  "\101\124\170\001\143\140\000\000\000\002\000\001\163\165\001\030"
256  "\000\000\000\000\111\105\116\104\256\102\140\202";
257 #else
258
259 /*
260  * Checkerboard pattern, as a GIF.
261  */
262 const char image_pattern_data[] =
263    "\107\111\106\070\071\141\004\000\004\000\200\000\000\310\310"
264    "\310\377\377\377\041\376\016\111\040\167\141\163\040\141\040"
265    "\142\141\156\156\145\162\000\041\371\004\001\012\000\001\000"
266    "\054\000\000\000\000\004\000\004\000\000\002\005\104\174\147"
267    "\270\005\000\073";
268
269 /*
270  * 1x1 transparant GIF.
271  */
272 const char image_blank_data[] =
273    "GIF89a\001\000\001\000\200\000\000\377\377\377\000\000"
274    "\000!\371\004\001\000\000\000\000,\000\000\000\000\001"
275    "\000\001\000\000\002\002D\001\000;";
276 #endif
277
278 const size_t image_pattern_length = sizeof(image_pattern_data) - 1;
279 const size_t image_blank_length   = sizeof(image_blank_data) - 1;
280
281 #ifdef FEATURE_COMPRESSION
282 /*
283  * Minimum length which a buffer has to reach before
284  * we bother to (re-)compress it. Completely arbitrary.
285  */
286 const size_t LOWER_LENGTH_LIMIT_FOR_COMPRESSION = 1024U;
287 #endif
288
289 static struct http_response cgi_error_memory_response[1];
290
291 static struct http_response *dispatch_known_cgi(struct client_state * csp,
292                                                 const char * path);
293 static struct map *parse_cgi_parameters(char *argstring);
294
295
296 /*********************************************************************
297  *
298  * Function    :  dispatch_cgi
299  *
300  * Description :  Checks if a request URL has either the magical
301  *                hostname CGI_SITE_1_HOST (usually http://p.p/) or
302  *                matches CGI_SITE_2_HOST CGI_SITE_2_PATH (usually
303  *                http://config.privoxy.org/). If so, it passes
304  *                the (rest of the) path onto dispatch_known_cgi, which
305  *                calls the relevant CGI handler function.
306  *
307  * Parameters  :
308  *          1  :  csp = Current client state (buffers, headers, etc...)
309  *
310  * Returns     :  http_response if match, NULL if nonmatch or handler fail
311  *
312  *********************************************************************/
313 struct http_response *dispatch_cgi(struct client_state *csp)
314 {
315    const char *host = csp->http->host;
316    const char *path = csp->http->path;
317
318    /*
319     * Should we intercept ?
320     */
321
322    /* Note: "example.com" and "example.com." are equivalent hostnames. */
323
324    /* Either the host matches CGI_SITE_1_HOST ..*/
325    if (   ( (0 == strcmpic(host, CGI_SITE_1_HOST))
326          || (0 == strcmpic(host, CGI_SITE_1_HOST ".")))
327        && (path[0] == '/'))
328    {
329       /* ..then the path will all be for us.  Remove leading '/' */
330       path++;
331    }
332    /* Or it's the host part CGI_SITE_2_HOST, and the path CGI_SITE_2_PATH */
333    else if ((  (0 == strcmpic(host, CGI_SITE_2_HOST))
334             || (0 == strcmpic(host, CGI_SITE_2_HOST ".")))
335           && (0 == strncmpic(path, CGI_SITE_2_PATH, strlen(CGI_SITE_2_PATH))))
336    {
337       /* take everything following CGI_SITE_2_PATH */
338       path += strlen(CGI_SITE_2_PATH);
339       if (*path == '/')
340       {
341          /* skip the forward slash after CGI_SITE_2_PATH */
342          path++;
343       }
344       else if (*path != '\0')
345       {
346          /*
347           * weirdness: URL is /configXXX, where XXX is some string
348           * Do *NOT* intercept.
349           */
350          return NULL;
351       }
352    }
353    else
354    {
355       /* Not a CGI */
356       return NULL;
357    }
358
359    if (strcmpic(csp->http->gpc, "GET")
360     && strcmpic(csp->http->gpc, "HEAD"))
361    {
362       log_error(LOG_LEVEL_ERROR,
363          "CGI request with unsupported method received: %s", csp->http->gpc);
364       /*
365        * The CGI pages currently only support GET and HEAD requests.
366        *
367        * If the client used a different method, ditch any data following
368        * the current headers to reduce the likelihood of parse errors
369        * with the following request.
370        */
371       csp->client_iob->eod = csp->client_iob->cur;
372    }
373
374    /*
375     * This is a CGI call.
376     */
377
378    return dispatch_known_cgi(csp, path);
379 }
380
381
382 /*********************************************************************
383  *
384  * Function    :  grep_cgi_referrer
385  *
386  * Description :  Ugly provisorical fix that greps the value of the
387  *                referer HTTP header field out of a linked list of
388  *                strings like found at csp->headers. Will disappear
389  *                in Privoxy 3.1.
390  *
391  *                FIXME: csp->headers ought to be csp->http->headers
392  *                FIXME: Parsing all client header lines should
393  *                       happen right after the request is received!
394  *
395  * Parameters  :
396  *          1  :  csp = Current client state (buffers, headers, etc...)
397  *
398  * Returns     :  pointer to value (no copy!), or NULL if none found.
399  *
400  *********************************************************************/
401 static char *grep_cgi_referrer(const struct client_state *csp)
402 {
403    struct list_entry *p;
404
405    for (p = csp->headers->first; p != NULL; p = p->next)
406    {
407       if (p->str == NULL) continue;
408       if (strncmpic(p->str, "Referer: ", 9) == 0)
409       {
410          return ((p->str) + 9);
411       }
412    }
413    return NULL;
414
415 }
416
417
418 /*********************************************************************
419  *
420  * Function    :  referrer_is_safe
421  *
422  * Description :  Decides whether we trust the Referer for
423  *                CGI pages which are only meant to be reachable
424  *                through Privoxy's web interface directly.
425  *
426  * Parameters  :
427  *          1  :  csp = Current client state (buffers, headers, etc...)
428  *
429  * Returns     :  TRUE  if the referrer is safe, or
430  *                FALSE if the referrer is unsafe or not set.
431  *
432  *********************************************************************/
433 static int referrer_is_safe(const struct client_state *csp)
434 {
435    char *referrer;
436    static const char alternative_prefix[] = "http://" CGI_SITE_1_HOST "/";
437    const char *trusted_cgi_referrer = csp->config->trusted_cgi_referrer;
438
439    referrer = grep_cgi_referrer(csp);
440
441    if (NULL == referrer)
442    {
443       /* No referrer, no access  */
444       log_error(LOG_LEVEL_ERROR, "Denying access to %s. No referrer found.",
445          csp->http->url);
446    }
447    else if ((0 == strncmp(referrer, CGI_PREFIX, sizeof(CGI_PREFIX)-1)
448          || (0 == strncmp(referrer, alternative_prefix, strlen(alternative_prefix)))))
449    {
450       /* Trustworthy referrer */
451       log_error(LOG_LEVEL_CGI, "Granting access to %s, referrer %s is trustworthy.",
452          csp->http->url, referrer);
453
454       return TRUE;
455    }
456    else if ((trusted_cgi_referrer != NULL) && (0 == strncmp(referrer,
457             trusted_cgi_referrer, strlen(trusted_cgi_referrer))))
458    {
459       /*
460        * After some more testing this block should be merged with
461        * the previous one or the log level should bedowngraded.
462        */
463       log_error(LOG_LEVEL_INFO, "Granting access to %s based on trusted referrer %s",
464          csp->http->url, referrer);
465
466       return TRUE;
467    }
468    else
469    {
470       /* Untrustworthy referrer */
471       log_error(LOG_LEVEL_ERROR, "Denying access to %s, referrer %s isn't trustworthy.",
472          csp->http->url, referrer);
473    }
474
475    return FALSE;
476
477 }
478
479 /*********************************************************************
480  *
481  * Function    :  dispatch_known_cgi
482  *
483  * Description :  Processes a CGI once dispatch_cgi has determined that
484  *                it matches one of the magic prefixes. Parses the path
485  *                as a cgi name plus query string, prepares a map that
486  *                maps CGI parameter names to their values, initializes
487  *                the http_response struct, and calls the relevant CGI
488  *                handler function.
489  *
490  * Parameters  :
491  *          1  :  csp = Current client state (buffers, headers, etc...)
492  *          2  :  path = Path of CGI, with the CGI prefix removed.
493  *                       Should not have a leading "/".
494  *
495  * Returns     :  http_response, or NULL on handler failure or out of
496  *                memory.
497  *
498  *********************************************************************/
499 static struct http_response *dispatch_known_cgi(struct client_state * csp,
500                                                 const char * path)
501 {
502    const struct cgi_dispatcher *d;
503    struct map *param_list;
504    struct http_response *rsp;
505    char *query_args_start;
506    char *path_copy;
507    jb_err err;
508
509    if (NULL == (path_copy = strdup(path)))
510    {
511       return cgi_error_memory();
512    }
513    query_args_start = path_copy;
514    while (*query_args_start && *query_args_start != '?' && *query_args_start != '/')
515    {
516       query_args_start++;
517    }
518    if (*query_args_start == '/')
519    {
520       *query_args_start++ = '\0';
521       param_list = new_map();
522       err = map(param_list, "file", 1, url_decode(query_args_start), 0);
523       if (JB_ERR_OK != err) {
524          free(param_list);
525          free(path_copy);
526          return cgi_error_memory();
527       }
528    }
529    else
530    {
531       if (*query_args_start == '?')
532       {
533          *query_args_start++ = '\0';
534       }
535       if (NULL == (param_list = parse_cgi_parameters(query_args_start)))
536       {
537          free(path_copy);
538          return cgi_error_memory();
539       }
540    }
541
542    /*
543     * At this point:
544     * path_copy        = CGI call name
545     * param_list       = CGI params, as map
546     */
547
548    /* Get mem for response or fail*/
549    if (NULL == (rsp = alloc_http_response()))
550    {
551       free(path_copy);
552       free_map(param_list);
553       return cgi_error_memory();
554    }
555
556    /*
557     * Find and start the right CGI function
558     */
559    d = cgi_dispatchers;
560    for (;;)
561    {
562       if ((d->name == NULL) || (strcmp(path_copy, d->name) == 0))
563       {
564          /*
565           * If the called CGI is either harmless, or referred
566           * from a trusted source, start it.
567           */
568          if (d->harmless || referrer_is_safe(csp))
569          {
570             err = (d->handler)(csp, rsp, param_list);
571          }
572          else
573          {
574             /*
575              * Else, modify toggle calls so that they only display
576              * the status, and deny all other calls.
577              */
578             if (0 == strcmp(path_copy, "toggle"))
579             {
580                unmap(param_list, "set");
581                err = (d->handler)(csp, rsp, param_list);
582             }
583             else
584             {
585                err = cgi_error_disabled(csp, rsp);
586             }
587          }
588
589          free(path_copy);
590          free_map(param_list);
591
592          if (err == JB_ERR_CGI_PARAMS)
593          {
594             err = cgi_error_bad_param(csp, rsp);
595          }
596          if (err && (err != JB_ERR_MEMORY))
597          {
598             /* Unexpected error! Shouldn't get here */
599             log_error(LOG_LEVEL_ERROR,
600                "Unexpected CGI error %d in top-level handler. "
601                "Please file a bug report!", err);
602             err = cgi_error_unknown(csp, rsp, err);
603          }
604          if (!err)
605          {
606             /* It worked */
607             rsp->crunch_reason = CGI_CALL;
608             return finish_http_response(csp, rsp);
609          }
610          else
611          {
612             /* Error in handler, probably out-of-memory */
613             free_http_response(rsp);
614             return cgi_error_memory();
615          }
616       }
617       d++;
618    }
619 }
620
621
622 /*********************************************************************
623  *
624  * Function    :  parse_cgi_parameters
625  *
626  * Description :  Parse a URL-encoded argument string into name/value
627  *                pairs and store them in a struct map list.
628  *
629  * Parameters  :
630  *          1  :  argstring = string to be parsed.  Will be trashed.
631  *
632  * Returns     :  pointer to param list, or NULL if out of memory.
633  *
634  *********************************************************************/
635 static struct map *parse_cgi_parameters(char *argstring)
636 {
637    char *p;
638    char **vector;
639    int pairs, i;
640    struct map *cgi_params;
641
642    /*
643     * XXX: This estimate is guaranteed to be high enough as we
644     *      let ssplit() ignore empty fields, but also a bit wasteful.
645     *      The same hack is used in get_last_url() so it looks like
646     *      a real solution is needed.
647     */
648    size_t max_segments = strlen(argstring) / 2;
649    if (max_segments == 0)
650    {
651       /*
652        * XXX: If the argstring is empty, there's really
653        *      no point in creating a param list, but currently
654        *      other parts of Privoxy depend on the list's existence.
655        */
656       max_segments = 1;
657    }
658    vector = malloc_or_die(max_segments * sizeof(char *));
659
660    cgi_params = new_map();
661
662    /*
663     * IE 5 does, of course, violate RFC 2316 Sect 4.1 and sends
664     * the fragment identifier along with the request, so we must
665     * cut it off here, so it won't pollute the CGI params:
666     */
667    if (NULL != (p = strchr(argstring, '#')))
668    {
669       *p = '\0';
670    }
671
672    pairs = ssplit(argstring, "&", vector, max_segments);
673    assert(pairs != -1);
674    if (pairs == -1)
675    {
676       freez(vector);
677       free_map(cgi_params);
678       return NULL;
679    }
680
681    for (i = 0; i < pairs; i++)
682    {
683       if ((NULL != (p = strchr(vector[i], '='))) && (*(p+1) != '\0'))
684       {
685          *p = '\0';
686          if (map(cgi_params, url_decode(vector[i]), 0, url_decode(++p), 0))
687          {
688             freez(vector);
689             free_map(cgi_params);
690             return NULL;
691          }
692       }
693    }
694
695    freez(vector);
696
697    return cgi_params;
698
699 }
700
701
702 /*********************************************************************
703  *
704  * Function    :  get_char_param
705  *
706  * Description :  Get a single-character parameter passed to a CGI
707  *                function.
708  *
709  * Parameters  :
710  *          1  :  parameters = map of cgi parameters
711  *          2  :  param_name = The name of the parameter to read
712  *
713  * Returns     :  Uppercase character on success, '\0' on error.
714  *
715  *********************************************************************/
716 char get_char_param(const struct map *parameters,
717                     const char *param_name)
718 {
719    char ch;
720
721    assert(parameters);
722    assert(param_name);
723
724    ch = *(lookup(parameters, param_name));
725    if ((ch >= 'a') && (ch <= 'z'))
726    {
727       ch = (char)(ch - 'a' + 'A');
728    }
729
730    return ch;
731 }
732
733
734 /*********************************************************************
735  *
736  * Function    :  get_string_param
737  *
738  * Description :  Get a string paramater, to be used as an
739  *                ACTION_STRING or ACTION_MULTI paramater.
740  *                Validates the input to prevent stupid/malicious
741  *                users from corrupting their action file.
742  *
743  * Parameters  :
744  *          1  :  parameters = map of cgi parameters
745  *          2  :  param_name = The name of the parameter to read
746  *          3  :  pparam = destination for paramater.  Allocated as
747  *                part of the map "parameters", so don't free it.
748  *                Set to NULL if not specified.
749  *
750  * Returns     :  JB_ERR_OK         on success, or if the paramater
751  *                                  was not specified.
752  *                JB_ERR_MEMORY     on out-of-memory.
753  *                JB_ERR_CGI_PARAMS if the paramater is not valid.
754  *
755  *********************************************************************/
756 jb_err get_string_param(const struct map *parameters,
757                         const char *param_name,
758                         const char **pparam)
759 {
760    const char *param;
761    const char *s;
762    char ch;
763
764    assert(parameters);
765    assert(param_name);
766    assert(pparam);
767
768    *pparam = NULL;
769
770    param = lookup(parameters, param_name);
771    if (!*param)
772    {
773       return JB_ERR_OK;
774    }
775
776    if (strlen(param) >= CGI_PARAM_LEN_MAX)
777    {
778       /*
779        * Too long.
780        *
781        * Note that the length limit is arbitrary, it just seems
782        * sensible to limit it to *something*.  There's no
783        * technical reason for any limit at all.
784        */
785       return JB_ERR_CGI_PARAMS;
786    }
787
788    /* Check every character to see if it's legal */
789    s = param;
790    while ((ch = *s++) != '\0')
791    {
792       if (((unsigned char)ch < (unsigned char)' ')
793         || (ch == '}'))
794       {
795          /* Probable hack attempt, or user accidentally used '}'. */
796          return JB_ERR_CGI_PARAMS;
797       }
798    }
799
800    /* Success */
801    *pparam = param;
802
803    return JB_ERR_OK;
804 }
805
806
807 /*********************************************************************
808  *
809  * Function    :  get_number_param
810  *
811  * Description :  Get a non-negative integer from the parameters
812  *                passed to a CGI function.
813  *
814  * Parameters  :
815  *          1  :  csp = Current client state (buffers, headers, etc...)
816  *          2  :  parameters = map of cgi parameters
817  *          3  :  name = Name of CGI parameter to read
818  *          4  :  pvalue = destination for value.
819  *                         Set to -1 on error.
820  *
821  * Returns     :  JB_ERR_OK         on success
822  *                JB_ERR_MEMORY     on out-of-memory
823  *                JB_ERR_CGI_PARAMS if the parameter was not specified
824  *                                  or is not valid.
825  *
826  *********************************************************************/
827 jb_err get_number_param(struct client_state *csp,
828                         const struct map *parameters,
829                         char *name,
830                         unsigned *pvalue)
831 {
832    const char *param;
833    char *endptr;
834
835    assert(csp);
836    assert(parameters);
837    assert(name);
838    assert(pvalue);
839
840    *pvalue = 0;
841
842    param = lookup(parameters, name);
843    if (!*param)
844    {
845       return JB_ERR_CGI_PARAMS;
846    }
847
848    *pvalue = (unsigned int)strtol(param, &endptr, 0);
849    if (*endptr != '\0')
850    {
851       return JB_ERR_CGI_PARAMS;
852    }
853
854    return JB_ERR_OK;
855
856 }
857
858
859 /*********************************************************************
860  *
861  * Function    :  error_response
862  *
863  * Description :  returns an http_response that explains the reason
864  *                why a request failed.
865  *
866  * Parameters  :
867  *          1  :  csp = Current client state (buffers, headers, etc...)
868  *          2  :  templatename = Which template should be used for the answer
869  *
870  * Returns     :  A http_response.  If we run out of memory, this
871  *                will be cgi_error_memory().
872  *
873  *********************************************************************/
874 struct http_response *error_response(struct client_state *csp,
875                                      const char *templatename)
876 {
877    jb_err err;
878    struct http_response *rsp;
879    struct map *exports = default_exports(csp, NULL);
880    char *path = NULL;
881
882    if (exports == NULL)
883    {
884       return cgi_error_memory();
885    }
886
887    if (NULL == (rsp = alloc_http_response()))
888    {
889       free_map(exports);
890       return cgi_error_memory();
891    }
892
893 #ifdef FEATURE_FORCE_LOAD
894    if (csp->flags & CSP_FLAG_FORCED)
895    {
896       path = strdup(FORCE_PREFIX);
897    }
898    else
899 #endif /* def FEATURE_FORCE_LOAD */
900    {
901       path = strdup("");
902    }
903    err = string_append(&path, csp->http->path);
904
905    if (!err) err = map(exports, "host", 1, html_encode(csp->http->host), 0);
906    if (!err) err = map(exports, "hostport", 1, html_encode(csp->http->hostport), 0);
907    if (!err) err = map(exports, "path", 1, html_encode_and_free_original(path), 0);
908    if (!err) err = map(exports, "protocol", 1, csp->http->ssl ? "https://" : "http://", 1);
909    if (!err)
910    {
911      err = map(exports, "host-ip", 1, html_encode(csp->http->host_ip_addr_str), 0);
912      if (err)
913      {
914        /* Some failures, like "404 no such domain", don't have an IP address. */
915        err = map(exports, "host-ip", 1, html_encode(csp->http->host), 0);
916      }
917    }
918
919
920    if (err)
921    {
922       free_map(exports);
923       free_http_response(rsp);
924       return cgi_error_memory();
925    }
926
927    if (!strcmp(templatename, "no-such-domain"))
928    {
929       rsp->status = strdup("404 No such domain");
930       rsp->crunch_reason = NO_SUCH_DOMAIN;
931    }
932    else if (!strcmp(templatename, "forwarding-failed"))
933    {
934       const struct forward_spec *fwd = forward_url(csp, csp->http);
935       char *socks_type = NULL;
936       if (fwd == NULL)
937       {
938          log_error(LOG_LEVEL_FATAL, "gateway spec is NULL. This shouldn't happen!");
939          /* Never get here - LOG_LEVEL_FATAL causes program exit */
940       }
941
942       /*
943        * XXX: While the template is called forwarding-failed,
944        * it currently only handles socks forwarding failures.
945        */
946       assert(fwd != NULL);
947       assert(fwd->type != SOCKS_NONE);
948
949       /*
950        * Map failure reason, forwarding type and forwarder.
951        */
952       if (NULL == csp->error_message)
953       {
954          /*
955           * Either we forgot to record the failure reason,
956           * or the memory allocation failed.
957           */
958          log_error(LOG_LEVEL_ERROR, "Socks failure reason missing.");
959          csp->error_message = strdup("Failure reason missing. Check the log file for details.");
960       }
961       if (!err) err = map(exports, "gateway", 1, fwd->gateway_host, 1);
962
963       /*
964        * XXX: this is almost the same code as in cgi_show_url_info()
965        * and thus should be factored out and shared.
966        */
967       switch (fwd->type)
968       {
969          case SOCKS_4:
970             socks_type = "socks4-";
971             break;
972          case SOCKS_4A:
973             socks_type = "socks4a-";
974             break;
975          case SOCKS_5:
976             socks_type = "socks5-";
977             break;
978          case SOCKS_5T:
979             socks_type = "socks5t-";
980             break;
981          default:
982             log_error(LOG_LEVEL_FATAL, "Unknown socks type: %d.", fwd->type);
983       }
984
985       if (!err) err = map(exports, "forwarding-type", 1, socks_type, 1);
986       if (!err) err = map(exports, "error-message", 1, html_encode(csp->error_message), 0);
987       if ((NULL == csp->error_message) || err)
988       {
989          free_map(exports);
990          free_http_response(rsp);
991          return cgi_error_memory();
992       }
993
994       rsp->status = strdup("503 Forwarding failure");
995       rsp->crunch_reason = FORWARDING_FAILED;
996    }
997    else if (!strcmp(templatename, "connect-failed"))
998    {
999       rsp->status = strdup("503 Connect failed");
1000       rsp->crunch_reason = CONNECT_FAILED;
1001    }
1002    else if (!strcmp(templatename, "connection-timeout"))
1003    {
1004       rsp->status = strdup("504 Connection timeout");
1005       rsp->crunch_reason = CONNECTION_TIMEOUT;
1006    }
1007    else if (!strcmp(templatename, "no-server-data"))
1008    {
1009       rsp->status = strdup("502 No data received from server or forwarder");
1010       rsp->crunch_reason = NO_SERVER_DATA;
1011    }
1012
1013    if (rsp->status == NULL)
1014    {
1015       free_map(exports);
1016       free_http_response(rsp);
1017       return cgi_error_memory();
1018    }
1019
1020    err = template_fill_for_cgi(csp, templatename, exports, rsp);
1021    if (err)
1022    {
1023       free_http_response(rsp);
1024       return cgi_error_memory();
1025    }
1026
1027    return finish_http_response(csp, rsp);
1028 }
1029
1030
1031 /*********************************************************************
1032  *
1033  * Function    :  cgi_error_disabled
1034  *
1035  * Description :  CGI function that is called to generate an error
1036  *                response if the actions editor or toggle CGI are
1037  *                accessed despite having being disabled at compile-
1038  *                or run-time, or if the user followed an untrusted link
1039  *                to access a unsafe CGI feature that is only reachable
1040  *                through Privoxy directly.
1041  *
1042  * Parameters  :
1043  *          1  :  csp = Current client state (buffers, headers, etc...)
1044  *          2  :  rsp = http_response data structure for output
1045  *
1046  * CGI Parameters : none
1047  *
1048  * Returns     :  JB_ERR_OK on success
1049  *                JB_ERR_MEMORY on out-of-memory error.
1050  *
1051  *********************************************************************/
1052 jb_err cgi_error_disabled(const struct client_state *csp,
1053                           struct http_response *rsp)
1054 {
1055    struct map *exports;
1056
1057    assert(csp);
1058    assert(rsp);
1059
1060    rsp->status = strdup_or_die("403 Request not trusted or feature disabled");
1061
1062    if (NULL == (exports = default_exports(csp, "cgi-error-disabled")))
1063    {
1064       return JB_ERR_MEMORY;
1065    }
1066    if (map(exports, "url", 1, html_encode(csp->http->url), 0))
1067    {
1068       /* Not important enough to do anything */
1069       log_error(LOG_LEVEL_ERROR, "Failed to fill in url.");
1070    }
1071
1072    return template_fill_for_cgi(csp, "cgi-error-disabled", exports, rsp);
1073 }
1074
1075
1076 /*********************************************************************
1077  *
1078  * Function    :  cgi_init_error_messages
1079  *
1080  * Description :  Call at the start of the program to initialize
1081  *                the error message used by cgi_error_memory().
1082  *
1083  * Parameters  :  N/A
1084  *
1085  * Returns     :  N/A
1086  *
1087  *********************************************************************/
1088 void cgi_init_error_messages(void)
1089 {
1090    memset(cgi_error_memory_response, '\0', sizeof(*cgi_error_memory_response));
1091    cgi_error_memory_response->head =
1092       "HTTP/1.0 500 Internal Privoxy Error\r\n"
1093       "Content-Type: text/html\r\n"
1094       "\r\n";
1095    cgi_error_memory_response->body =
1096       "<html>\n"
1097       "<head>\n"
1098       " <title>500 Internal Privoxy Error</title>\n"
1099       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1100       "</head>\n"
1101       "<body>\n"
1102       "<h1>500 Internal Privoxy Error</h1>\n"
1103       "<p>Privoxy <b>ran out of memory</b> while processing your request.</p>\n"
1104       "<p>Please contact your proxy administrator, or try again later</p>\n"
1105       "</body>\n"
1106       "</html>\n";
1107
1108    cgi_error_memory_response->head_length =
1109       strlen(cgi_error_memory_response->head);
1110    cgi_error_memory_response->content_length =
1111       strlen(cgi_error_memory_response->body);
1112    cgi_error_memory_response->crunch_reason = OUT_OF_MEMORY;
1113 }
1114
1115
1116 /*********************************************************************
1117  *
1118  * Function    :  cgi_error_memory
1119  *
1120  * Description :  Called if a CGI function runs out of memory.
1121  *                Returns a statically-allocated error response.
1122  *
1123  * Parameters  :  N/A
1124  *
1125  * Returns     :  http_response data structure for output.  This is
1126  *                statically allocated, for obvious reasons.
1127  *
1128  *********************************************************************/
1129 struct http_response *cgi_error_memory(void)
1130 {
1131    /* assert that it's been initialized. */
1132    assert(cgi_error_memory_response->head);
1133
1134    return cgi_error_memory_response;
1135 }
1136
1137
1138 /*********************************************************************
1139  *
1140  * Function    :  cgi_error_no_template
1141  *
1142  * Description :  Almost-CGI function that is called if a template
1143  *                cannot be loaded.  Note this is not a true CGI,
1144  *                it takes a template name rather than a map of
1145  *                parameters.
1146  *
1147  * Parameters  :
1148  *          1  :  csp = Current client state (buffers, headers, etc...)
1149  *          2  :  rsp = http_response data structure for output
1150  *          3  :  template_name = Name of template that could not
1151  *                                be loaded.
1152  *
1153  * Returns     :  JB_ERR_OK on success
1154  *                JB_ERR_MEMORY on out-of-memory error.
1155  *
1156  *********************************************************************/
1157 jb_err cgi_error_no_template(const struct client_state *csp,
1158                              struct http_response *rsp,
1159                              const char *template_name)
1160 {
1161    static const char status[] =
1162       "500 Internal Privoxy Error";
1163    static const char body_prefix[] =
1164       "<html>\n"
1165       "<head>\n"
1166       " <title>500 Internal Privoxy Error</title>\n"
1167       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1168       "</head>\n"
1169       "<body>\n"
1170       "<h1>500 Internal Privoxy Error</h1>\n"
1171       "<p>Privoxy encountered an error while processing your request:</p>\n"
1172       "<p><b>Could not load template file <code>";
1173    static const char body_suffix[] =
1174       "</code> or one of its included components.</b></p>\n"
1175       "<p>Please contact your proxy administrator.</p>\n"
1176       "<p>If you are the proxy administrator, please put the required file(s)"
1177       "in the <code><i>(confdir)</i>/templates</code> directory.  The "
1178       "location of the <code><i>(confdir)</i></code> directory "
1179       "is specified in the main Privoxy <code>config</code> "
1180       "file.  (It's typically the Privoxy install directory"
1181 #ifndef _WIN32
1182       ", or <code>/etc/privoxy/</code>"
1183 #endif /* ndef _WIN32 */
1184       ").</p>\n"
1185       "</body>\n"
1186       "</html>\n";
1187    const size_t body_size = strlen(body_prefix) + strlen(template_name) + strlen(body_suffix) + 1;
1188
1189    assert(csp);
1190    assert(rsp);
1191    assert(template_name);
1192
1193    /* Reset rsp, if needed */
1194    freez(rsp->status);
1195    freez(rsp->head);
1196    freez(rsp->body);
1197    rsp->content_length = 0;
1198    rsp->head_length = 0;
1199    rsp->is_static = 0;
1200
1201    rsp->body = malloc_or_die(body_size);
1202    strlcpy(rsp->body, body_prefix, body_size);
1203    strlcat(rsp->body, template_name, body_size);
1204    strlcat(rsp->body, body_suffix, body_size);
1205
1206    rsp->status = strdup(status);
1207    if (rsp->status == NULL)
1208    {
1209       return JB_ERR_MEMORY;
1210    }
1211
1212    return JB_ERR_OK;
1213 }
1214
1215
1216 /*********************************************************************
1217  *
1218  * Function    :  cgi_error_unknown
1219  *
1220  * Description :  Almost-CGI function that is called if an unexpected
1221  *                error occurs in the top-level CGI dispatcher.
1222  *                In this context, "unexpected" means "anything other
1223  *                than JB_ERR_MEMORY or JB_ERR_CGI_PARAMS" - CGIs are
1224  *                expected to handle all other errors internally,
1225  *                since they can give more relavent error messages
1226  *                that way.
1227  *
1228  *                Note this is not a true CGI, it takes an error
1229  *                code rather than a map of parameters.
1230  *
1231  * Parameters  :
1232  *          1  :  csp = Current client state (buffers, headers, etc...)
1233  *          2  :  rsp = http_response data structure for output
1234  *          3  :  error_to_report = Error code to report.
1235  *
1236  * Returns     :  JB_ERR_OK on success
1237  *                JB_ERR_MEMORY on out-of-memory error.
1238  *
1239  *********************************************************************/
1240 jb_err cgi_error_unknown(const struct client_state *csp,
1241                          struct http_response *rsp,
1242                          jb_err error_to_report)
1243 {
1244    static const char status[] =
1245       "500 Internal Privoxy Error";
1246    static const char body_prefix[] =
1247       "<html>\n"
1248       "<head>\n"
1249       " <title>500 Internal Privoxy Error</title>\n"
1250       " <link rel=\"shortcut icon\" href=\"" CGI_PREFIX "error-favicon.ico\" type=\"image/x-icon\">"
1251       "</head>\n"
1252       "<body>\n"
1253       "<h1>500 Internal Privoxy Error</h1>\n"
1254       "<p>Privoxy encountered an error while processing your request:</p>\n"
1255       "<p><b>Unexpected internal error: ";
1256    static const char body_suffix[] =
1257       "</b></p>\n"
1258       "<p>Please "
1259       "<a href=\"http://sourceforge.net/tracker/?group_id=11118&amp;atid=111118\">"
1260       "file a bug report</a>.</p>\n"
1261       "</body>\n"
1262       "</html>\n";
1263    /* Includes room for larger error numbers in the future. */
1264    const size_t body_size = sizeof(body_prefix) + sizeof(body_suffix) + 5;
1265    assert(csp);
1266    assert(rsp);
1267
1268    /* Reset rsp, if needed */
1269    freez(rsp->status);
1270    freez(rsp->head);
1271    freez(rsp->body);
1272    rsp->content_length = 0;
1273    rsp->head_length = 0;
1274    rsp->is_static = 0;
1275    rsp->crunch_reason = INTERNAL_ERROR;
1276
1277    rsp->body = malloc_or_die(body_size);
1278
1279    snprintf(rsp->body, body_size, "%s%d%s", body_prefix, error_to_report, body_suffix);
1280
1281    rsp->status = strdup(status);
1282    if (rsp->status == NULL)
1283    {
1284       return JB_ERR_MEMORY;
1285    }
1286
1287    return JB_ERR_OK;
1288 }
1289
1290
1291 /*********************************************************************
1292  *
1293  * Function    :  cgi_error_bad_param
1294  *
1295  * Description :  CGI function that is called if the parameters
1296  *                (query string) for a CGI were wrong.
1297  *
1298  * Parameters  :
1299  *          1  :  csp = Current client state (buffers, headers, etc...)
1300  *          2  :  rsp = http_response data structure for output
1301  *
1302  * CGI Parameters : none
1303  *
1304  * Returns     :  JB_ERR_OK on success
1305  *                JB_ERR_MEMORY on out-of-memory error.
1306  *
1307  *********************************************************************/
1308 jb_err cgi_error_bad_param(const struct client_state *csp,
1309                            struct http_response *rsp)
1310 {
1311    struct map *exports;
1312
1313    assert(csp);
1314    assert(rsp);
1315
1316    if (NULL == (exports = default_exports(csp, NULL)))
1317    {
1318       return JB_ERR_MEMORY;
1319    }
1320
1321    return template_fill_for_cgi(csp, "cgi-error-bad-param", exports, rsp);
1322 }
1323
1324
1325 /*********************************************************************
1326  *
1327  * Function    :  cgi_redirect
1328  *
1329  * Description :  CGI support function to generate a HTTP redirect
1330  *                message
1331  *
1332  * Parameters  :
1333  *          1  :  rsp = http_response data structure for output
1334  *          2  :  target = string with the target URL
1335  *
1336  * CGI Parameters : None
1337  *
1338  * Returns     :  JB_ERR_OK on success
1339  *                JB_ERR_MEMORY on out-of-memory error.
1340  *
1341  *********************************************************************/
1342 jb_err cgi_redirect (struct http_response * rsp, const char *target)
1343 {
1344    jb_err err;
1345
1346    assert(rsp);
1347    assert(target);
1348
1349    err = enlist_unique_header(rsp->headers, "Location", target);
1350
1351    rsp->status = strdup("302 Local Redirect from Privoxy");
1352    if (rsp->status == NULL)
1353    {
1354       return JB_ERR_MEMORY;
1355    }
1356
1357    return err;
1358 }
1359
1360
1361 /*********************************************************************
1362  *
1363  * Function    :  add_help_link
1364  *
1365  * Description :  Produce a copy of the string given as item,
1366  *                embedded in an HTML link to its corresponding
1367  *                section (item name in uppercase) in the actions
1368  *                chapter of the user manual, (whose URL is given in
1369  *                the config and defaults to our web site).
1370  *
1371  *                FIXME: I currently only work for actions, and would
1372  *                       like to be generalized for other topics.
1373  *
1374  * Parameters  :
1375  *          1  :  item = item (will NOT be free()d.)
1376  *                       It is assumed to be HTML-safe.
1377  *          2  :  config = The current configuration.
1378  *
1379  * Returns     :  String with item embedded in link, or NULL on
1380  *                out-of-memory
1381  *
1382  *********************************************************************/
1383 char *add_help_link(const char *item,
1384                     struct configuration_spec *config)
1385 {
1386    char *result;
1387
1388    if (!item) return NULL;
1389
1390    result = strdup("<a href=\"");
1391    if (!strncmpic(config->usermanual, "file://", 7) ||
1392        !strncmpic(config->usermanual, "http", 4))
1393    {
1394       string_append(&result, config->usermanual);
1395    }
1396    else
1397    {
1398       string_append(&result, "http://");
1399       string_append(&result, CGI_SITE_2_HOST);
1400       string_append(&result, "/user-manual/");
1401    }
1402    string_append(&result, ACTIONS_HELP_PREFIX);
1403    string_join  (&result, string_toupper(item));
1404    string_append(&result, "\">");
1405    string_append(&result, item);
1406    string_append(&result, "</a>");
1407
1408    return result;
1409 }
1410
1411
1412 /*********************************************************************
1413  *
1414  * Function    :  get_http_time
1415  *
1416  * Description :  Get the time in a format suitable for use in a
1417  *                HTTP header - e.g.:
1418  *                "Sun, 06 Nov 1994 08:49:37 GMT"
1419  *
1420  * Parameters  :
1421  *          1  :  time_offset = Time returned will be current time
1422  *                              plus this number of seconds.
1423  *          2  :  buf = Destination for result.
1424  *          3  :  buffer_size = Size of the buffer above. Must be big
1425  *                              enough to hold 29 characters plus a
1426  *                              trailing zero.
1427  *
1428  * Returns     :  N/A
1429  *
1430  *********************************************************************/
1431 void get_http_time(int time_offset, char *buf, size_t buffer_size)
1432 {
1433    struct tm *t;
1434    time_t current_time;
1435 #if defined(HAVE_GMTIME_R)
1436    struct tm dummy;
1437 #endif
1438
1439    assert(buf);
1440    assert(buffer_size > (size_t)29);
1441
1442    time(&current_time);
1443
1444    current_time += time_offset;
1445
1446    /* get and save the gmt */
1447 #if HAVE_GMTIME_R
1448    t = gmtime_r(&current_time, &dummy);
1449 #elif defined(MUTEX_LOCKS_AVAILABLE)
1450    privoxy_mutex_lock(&gmtime_mutex);
1451    t = gmtime(&current_time);
1452    privoxy_mutex_unlock(&gmtime_mutex);
1453 #else
1454    t = gmtime(&current_time);
1455 #endif
1456
1457    strftime(buf, buffer_size, "%a, %d %b %Y %H:%M:%S GMT", t);
1458
1459 }
1460
1461 /*********************************************************************
1462  *
1463  * Function    :  get_locale_time
1464  *
1465  * Description :  Get the time in a date(1)-like format
1466  *                according to the current locale - e.g.:
1467  *                "Fri Aug 29 19:37:12 CEST 2008"
1468  *
1469  *                XXX: Should we allow the user to change the format?
1470  *
1471  * Parameters  :
1472  *          1  :  buf         = Destination for result.
1473  *          2  :  buffer_size = Size of the buffer above. Must be big
1474  *                              enough to hold 29 characters plus a
1475  *                              trailing zero.
1476  *
1477  * Returns     :  N/A
1478  *
1479  *********************************************************************/
1480 static void get_locale_time(char *buf, size_t buffer_size)
1481 {
1482    struct tm *timeptr;
1483    time_t current_time;
1484 #if defined(HAVE_LOCALTIME_R)
1485    struct tm dummy;
1486 #endif
1487
1488    assert(buf);
1489    assert(buffer_size > (size_t)29);
1490
1491    time(&current_time);
1492
1493 #if HAVE_LOCALTIME_R
1494    timeptr = localtime_r(&current_time, &dummy);
1495 #elif defined(MUTEX_LOCKS_AVAILABLE)
1496    privoxy_mutex_lock(&localtime_mutex);
1497    timeptr = localtime(&current_time);
1498    privoxy_mutex_unlock(&localtime_mutex);
1499 #else
1500    timeptr = localtime(&current_time);
1501 #endif
1502
1503    strftime(buf, buffer_size, "%a %b %d %X %Z %Y", timeptr);
1504
1505 }
1506
1507
1508 #ifdef FEATURE_COMPRESSION
1509 /*********************************************************************
1510  *
1511  * Function    :  compress_buffer
1512  *
1513  * Description :  Compresses the content of a buffer with zlib's deflate
1514  *                Allocates a new buffer for the result, free'ing it is
1515  *                up to the caller.
1516  *
1517  * Parameters  :
1518  *          1  :  buffer = buffer whose content should be compressed
1519  *          2  :  buffer_length = length of the buffer
1520  *          3  :  compression_level = compression level for compress2()
1521  *
1522  * Returns     :  NULL on error, otherwise a pointer to the compressed
1523  *                content of the input buffer.
1524  *
1525  *********************************************************************/
1526 char *compress_buffer(char *buffer, size_t *buffer_length, int compression_level)
1527 {
1528    char *compressed_buffer;
1529    uLongf new_length;
1530    assert(-1 <= compression_level && compression_level <= 9);
1531
1532    /* Let zlib figure out the maximum length of the compressed data */
1533    new_length = compressBound((uLongf)*buffer_length);
1534
1535    compressed_buffer = malloc_or_die(new_length);
1536
1537    if (Z_OK != compress2((Bytef *)compressed_buffer, &new_length,
1538          (Bytef *)buffer, *buffer_length, compression_level))
1539    {
1540       log_error(LOG_LEVEL_ERROR,
1541          "compress2() failed. Buffer size: %d, compression level: %d.",
1542          new_length, compression_level);
1543       freez(compressed_buffer);
1544       return NULL;
1545    }
1546
1547    log_error(LOG_LEVEL_RE_FILTER,
1548       "Compressed content from %d to %d bytes. Compression level: %d",
1549       *buffer_length, new_length, compression_level);
1550
1551    *buffer_length = (size_t)new_length;
1552
1553    return compressed_buffer;
1554
1555 }
1556 #endif
1557
1558
1559 /*********************************************************************
1560  *
1561  * Function    :  finish_http_response
1562  *
1563  * Description :  Fill in the missing headers in an http response,
1564  *                and flatten the headers to an http head.
1565  *                For HEAD requests the body is freed once
1566  *                the Content-Length header is set.
1567  *
1568  * Parameters  :
1569  *          1  :  rsp = pointer to http_response to be processed
1570  *
1571  * Returns     :  A http_response, usually the rsp parameter.
1572  *                On error, free()s rsp and returns cgi_error_memory()
1573  *
1574  *********************************************************************/
1575 struct http_response *finish_http_response(struct client_state *csp, struct http_response *rsp)
1576 {
1577    char buf[BUFFER_SIZE];
1578    jb_err err;
1579
1580    /* Special case - do NOT change this statically allocated response,
1581     * which is ready for output anyway.
1582     */
1583    if (rsp == cgi_error_memory_response)
1584    {
1585       return rsp;
1586    }
1587
1588    /*
1589     * Fill in the HTTP Status, using HTTP/1.1
1590     * unless the client asked for HTTP/1.0.
1591     */
1592    snprintf(buf, sizeof(buf), "%s %s",
1593       strcmpic(csp->http->ver, "HTTP/1.0") ? "HTTP/1.1" : "HTTP/1.0",
1594       rsp->status ? rsp->status : "200 OK");
1595    err = enlist_first(rsp->headers, buf);
1596
1597    /*
1598     * Set the Content-Length
1599     */
1600    if (rsp->content_length == 0)
1601    {
1602       rsp->content_length = rsp->body ? strlen(rsp->body) : 0;
1603    }
1604
1605 #ifdef FEATURE_COMPRESSION
1606    if (!err && (csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE)
1607       && (rsp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION))
1608    {
1609       char *compressed_content;
1610
1611       compressed_content = compress_buffer(rsp->body, &rsp->content_length,
1612          csp->config->compression_level);
1613       if (NULL != compressed_content)
1614       {
1615          freez(rsp->body);
1616          rsp->body = compressed_content;
1617          err = enlist_unique_header(rsp->headers, "Content-Encoding", "deflate");
1618       }
1619    }
1620 #endif
1621
1622    if (!err)
1623    {
1624       snprintf(buf, sizeof(buf), "Content-Length: %d", (int)rsp->content_length);
1625       /*
1626        * Signal serve() that the client will be able to figure out
1627        * the end of the response without having to close the connection.
1628        */
1629       csp->flags |= CSP_FLAG_SERVER_CONTENT_LENGTH_SET;
1630       err = enlist(rsp->headers, buf);
1631    }
1632
1633    if (0 == strcmpic(csp->http->gpc, "head"))
1634    {
1635       /*
1636        * The client only asked for the head. Dispose
1637        * the body and log an offensive message.
1638        *
1639        * While it may seem to be a bit inefficient to
1640        * prepare the body if it isn't needed, it's the
1641        * only way to get the Content-Length right for
1642        * dynamic pages. We could have disposed the body
1643        * earlier, but not without duplicating the
1644        * Content-Length setting code above.
1645        */
1646       log_error(LOG_LEVEL_CGI, "Preparing to give head to %s.", csp->ip_addr_str);
1647       freez(rsp->body);
1648       rsp->content_length = 0;
1649    }
1650
1651    if (strncmpic(rsp->status, "302", 3))
1652    {
1653       /*
1654        * If it's not a redirect without any content,
1655        * set the Content-Type to text/html if it's
1656        * not already specified.
1657        */
1658       if (!err) err = enlist_unique(rsp->headers, "Content-Type: text/html", 13);
1659    }
1660
1661    /*
1662     * Fill in the rest of the default headers:
1663     *
1664     * Date: set to current date/time.
1665     * Last-Modified: set to date/time the page was last changed.
1666     * Expires: set to date/time page next needs reloading.
1667     * Cache-Control: set to "no-cache" if applicable.
1668     *
1669     * See http://www.w3.org/Protocols/rfc2068/rfc2068
1670     */
1671    if (rsp->is_static)
1672    {
1673       /*
1674        * Set Expires to about 10 min into the future so it'll get reloaded
1675        * occasionally, e.g. if Privoxy gets upgraded.
1676        */
1677
1678       if (!err)
1679       {
1680          get_http_time(0, buf, sizeof(buf));
1681          err = enlist_unique_header(rsp->headers, "Date", buf);
1682       }
1683
1684       /* Some date in the past. */
1685       if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Sat, 17 Jun 2000 12:00:00 GMT");
1686
1687       if (!err)
1688       {
1689          get_http_time(10 * 60, buf, sizeof(buf)); /* 10 * 60sec = 10 minutes */
1690          err = enlist_unique_header(rsp->headers, "Expires", buf);
1691       }
1692    }
1693    else if (!strncmpic(rsp->status, "302", 3))
1694    {
1695       get_http_time(0, buf, sizeof(buf));
1696       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
1697    }
1698    else
1699    {
1700       /*
1701        * Setting "Cache-Control" to "no-cache" and  "Expires" to
1702        * the current time doesn't exactly forbid caching, it just
1703        * requires the client to revalidate the cached copy.
1704        *
1705        * If a temporary problem occurs and the user tries again after
1706        * getting Privoxy's error message, a compliant browser may set the
1707        * If-Modified-Since header with the content of the error page's
1708        * Last-Modified header. More often than not, the document on the server
1709        * is older than Privoxy's error message, the server would send status code
1710        * 304 and the browser would display the outdated error message again and again.
1711        *
1712        * For documents delivered with status code 403, 404 and 503 we set "Last-Modified"
1713        * to Tim Berners-Lee's birthday, which predates the age of any page on the web
1714        * and can be safely used to "revalidate" without getting a status code 304.
1715        *
1716        * There is no need to let the useless If-Modified-Since header reach the
1717        * server, it is therefore stripped by client_if_modified_since in parsers.c.
1718        */
1719       if (!err) err = enlist_unique_header(rsp->headers, "Cache-Control", "no-cache");
1720
1721       get_http_time(0, buf, sizeof(buf));
1722       if (!err) err = enlist_unique_header(rsp->headers, "Date", buf);
1723       if (!strncmpic(rsp->status, "403", 3)
1724        || !strncmpic(rsp->status, "404", 3)
1725        || !strncmpic(rsp->status, "502", 3)
1726        || !strncmpic(rsp->status, "503", 3)
1727        || !strncmpic(rsp->status, "504", 3))
1728       {
1729          if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", "Wed, 08 Jun 1955 12:00:00 GMT");
1730       }
1731       else
1732       {
1733          if (!err) err = enlist_unique_header(rsp->headers, "Last-Modified", buf);
1734       }
1735       if (!err) err = enlist_unique_header(rsp->headers, "Expires", "Sat, 17 Jun 2000 12:00:00 GMT");
1736       if (!err) err = enlist_unique_header(rsp->headers, "Pragma", "no-cache");
1737    }
1738
1739    if (!err && (!(csp->flags & CSP_FLAG_CLIENT_CONNECTION_KEEP_ALIVE)
1740               || (csp->flags & CSP_FLAG_SERVER_SOCKET_TAINTED)))
1741    {
1742       err = enlist_unique_header(rsp->headers, "Connection", "close");
1743    }
1744
1745    /*
1746     * Write the head
1747     */
1748    if (err || (NULL == (rsp->head = list_to_text(rsp->headers))))
1749    {
1750       free_http_response(rsp);
1751       return cgi_error_memory();
1752    }
1753    rsp->head_length = strlen(rsp->head);
1754
1755    return rsp;
1756
1757 }
1758
1759
1760 /*********************************************************************
1761  *
1762  * Function    :  alloc_http_response
1763  *
1764  * Description :  Allocates a new http_response structure.
1765  *
1766  * Parameters  :  N/A
1767  *
1768  * Returns     :  pointer to a new http_response, or NULL.
1769  *
1770  *********************************************************************/
1771 struct http_response *alloc_http_response(void)
1772 {
1773    return (struct http_response *) zalloc(sizeof(struct http_response));
1774
1775 }
1776
1777
1778 /*********************************************************************
1779  *
1780  * Function    :  free_http_response
1781  *
1782  * Description :  Free the memory occupied by an http_response
1783  *                and its depandant structures.
1784  *
1785  * Parameters  :
1786  *          1  :  rsp = pointer to http_response to be freed
1787  *
1788  * Returns     :  N/A
1789  *
1790  *********************************************************************/
1791 void free_http_response(struct http_response *rsp)
1792 {
1793    /*
1794     * Must special case cgi_error_memory_response, which is never freed.
1795     */
1796    if (rsp && (rsp != cgi_error_memory_response))
1797    {
1798       freez(rsp->status);
1799       freez(rsp->head);
1800       freez(rsp->body);
1801       destroy_list(rsp->headers);
1802       free(rsp);
1803    }
1804
1805 }
1806
1807
1808 /*********************************************************************
1809  *
1810  * Function    :  template_load
1811  *
1812  * Description :  CGI support function that loads a given HTML
1813  *                template, ignoring comment lines and following
1814  *                #include statements up to a depth of 1.
1815  *
1816  * Parameters  :
1817  *          1  :  csp = Current client state (buffers, headers, etc...)
1818  *          2  :  template_ptr = Destination for pointer to loaded
1819  *                               template text.
1820  *          3  :  templatename = name of the HTML template to be used
1821  *          4  :  recursive = Flag set if this function calls itself
1822  *                            following an #include statament
1823  *
1824  * Returns     :  JB_ERR_OK on success
1825  *                JB_ERR_MEMORY on out-of-memory error.
1826  *                JB_ERR_FILE if the template file cannot be read
1827  *
1828  *********************************************************************/
1829 jb_err template_load(const struct client_state *csp, char **template_ptr,
1830                      const char *templatename, int recursive)
1831 {
1832    jb_err err;
1833    char *templates_dir_path;
1834    char *full_path;
1835    char *file_buffer;
1836    char *included_module;
1837    const char *p;
1838    FILE *fp;
1839    char buf[BUFFER_SIZE];
1840
1841    assert(csp);
1842    assert(template_ptr);
1843    assert(templatename);
1844
1845    *template_ptr = NULL;
1846
1847    /* Validate template name.  Paranoia. */
1848    for (p = templatename; *p != 0; p++)
1849    {
1850       if ( ((*p < 'a') || (*p > 'z'))
1851         && ((*p < 'A') || (*p > 'Z'))
1852         && ((*p < '0') || (*p > '9'))
1853         && (*p != '-')
1854         && (*p != '.'))
1855       {
1856          /* Illegal character */
1857          return JB_ERR_FILE;
1858       }
1859    }
1860
1861    /*
1862     * Generate full path using either templdir
1863     * or confdir/templates as base directory.
1864     */
1865    if (NULL != csp->config->templdir)
1866    {
1867       templates_dir_path = strdup(csp->config->templdir);
1868    }
1869    else
1870    {
1871       templates_dir_path = make_path(csp->config->confdir, "templates");
1872    }
1873
1874    if (templates_dir_path == NULL)
1875    {
1876       log_error(LOG_LEVEL_ERROR, "Out of memory while generating template path for %s.",
1877          templatename);
1878       return JB_ERR_MEMORY;
1879    }
1880
1881    full_path = make_path(templates_dir_path, templatename);
1882    free(templates_dir_path);
1883    if (full_path == NULL)
1884    {
1885       log_error(LOG_LEVEL_ERROR, "Out of memory while generating full template path for %s.",
1886          templatename);
1887       return JB_ERR_MEMORY;
1888    }
1889
1890    /* Allocate buffer */
1891
1892    file_buffer = strdup("");
1893    if (file_buffer == NULL)
1894    {
1895       log_error(LOG_LEVEL_ERROR, "Not enough free memory to buffer %s.", full_path);
1896       free(full_path);
1897       return JB_ERR_MEMORY;
1898    }
1899
1900    /* Open template file */
1901
1902    if (NULL == (fp = fopen(full_path, "r")))
1903    {
1904       log_error(LOG_LEVEL_ERROR, "Cannot open template file %s: %E", full_path);
1905       free(full_path);
1906       free(file_buffer);
1907       return JB_ERR_FILE;
1908    }
1909    free(full_path);
1910
1911    /*
1912     * Read the file, ignoring comments, and honoring #include
1913     * statements, unless we're already called recursively.
1914     *
1915     * XXX: The comment handling could break with lines lengths > sizeof(buf).
1916     *      This is unlikely in practise.
1917     */
1918    while (fgets(buf, sizeof(buf), fp))
1919    {
1920       if (!recursive && !strncmp(buf, "#include ", 9))
1921       {
1922          if (JB_ERR_OK != (err = template_load(csp, &included_module, chomp(buf + 9), 1)))
1923          {
1924             free(file_buffer);
1925             fclose(fp);
1926             return err;
1927          }
1928
1929          if (string_join(&file_buffer, included_module))
1930          {
1931             fclose(fp);
1932             return JB_ERR_MEMORY;
1933          }
1934
1935          continue;
1936       }
1937
1938       /* skip lines starting with '#' */
1939       if (*buf == '#')
1940       {
1941          continue;
1942       }
1943
1944       if (string_append(&file_buffer, buf))
1945       {
1946          fclose(fp);
1947          return JB_ERR_MEMORY;
1948       }
1949    }
1950    fclose(fp);
1951
1952    *template_ptr = file_buffer;
1953
1954    return JB_ERR_OK;
1955 }
1956
1957
1958 /*********************************************************************
1959  *
1960  * Function    :  template_fill
1961  *
1962  * Description :  CGI support function that fills in a pre-loaded
1963  *                HTML template by replacing @name@ with value using
1964  *                pcrs, for each item in the output map.
1965  *
1966  *                Note that a leading '$' character in the export map's
1967  *                values will be stripped and toggle on backreference
1968  *                interpretation.
1969  *
1970  * Parameters  :
1971  *          1  :  template_ptr = IN: Template to be filled out.
1972  *                                   Will be free()d.
1973  *                               OUT: Filled out template.
1974  *                                    Caller must free().
1975  *          2  :  exports = map with fill in symbol -> name pairs
1976  *
1977  * Returns     :  JB_ERR_OK on success (and for uncritical errors)
1978  *                JB_ERR_MEMORY on out-of-memory error
1979  *
1980  *********************************************************************/
1981 jb_err template_fill(char **template_ptr, const struct map *exports)
1982 {
1983    struct map_entry *m;
1984    pcrs_job *job;
1985    char buf[BUFFER_SIZE];
1986    char *tmp_out_buffer;
1987    char *file_buffer;
1988    size_t size;
1989    int error;
1990    const char *flags;
1991
1992    assert(template_ptr);
1993    assert(*template_ptr);
1994    assert(exports);
1995
1996    file_buffer = *template_ptr;
1997    size = strlen(file_buffer) + 1;
1998
1999    /*
2000     * Assemble pcrs joblist from exports map
2001     */
2002    for (m = exports->first; m != NULL; m = m->next)
2003    {
2004       if (*m->name == '$')
2005       {
2006          /*
2007           * First character of name is '$', so remove this flag
2008           * character and allow backreferences ($1 etc) in the
2009           * "replace with" text.
2010           */
2011          snprintf(buf, sizeof(buf), "%s", m->name + 1);
2012          flags = "sigU";
2013       }
2014       else
2015       {
2016          /*
2017           * Treat the "replace with" text as a literal string -
2018           * no quoting needed, no backreferences allowed.
2019           * ("Trivial" ['T'] flag).
2020           */
2021          flags = "sigTU";
2022
2023          /* Enclose name in @@ */
2024          snprintf(buf, sizeof(buf), "@%s@", m->name);
2025       }
2026
2027       log_error(LOG_LEVEL_CGI, "Substituting: s/%s/%s/%s", buf, m->value, flags);
2028
2029       /* Make and run job. */
2030       job = pcrs_compile(buf, m->value, flags,  &error);
2031       if (job == NULL)
2032       {
2033          if (error == PCRS_ERR_NOMEM)
2034          {
2035             free(file_buffer);
2036             *template_ptr = NULL;
2037             return JB_ERR_MEMORY;
2038          }
2039          else
2040          {
2041             log_error(LOG_LEVEL_ERROR, "Error compiling template fill job %s: %d", m->name, error);
2042             /* Hope it wasn't important and silently ignore the invalid job */
2043          }
2044       }
2045       else
2046       {
2047          error = pcrs_execute(job, file_buffer, size, &tmp_out_buffer, &size);
2048
2049          pcrs_free_job(job);
2050          if (NULL == tmp_out_buffer)
2051          {
2052             *template_ptr = NULL;
2053             return JB_ERR_MEMORY;
2054          }
2055
2056          if (error < 0)
2057          {
2058             /*
2059              * Substitution failed, keep the original buffer,
2060              * log the problem and ignore it.
2061              *
2062              * The user might see some unresolved @CGI_VARIABLES@,
2063              * but returning a special CGI error page seems unreasonable
2064              * and could mask more important error messages.
2065              */
2066             free(tmp_out_buffer);
2067             log_error(LOG_LEVEL_ERROR, "Failed to execute s/%s/%s/%s. %s",
2068                buf, m->value, flags, pcrs_strerror(error));
2069          }
2070          else
2071          {
2072             /* Substitution succeeded, use modified buffer. */
2073             free(file_buffer);
2074             file_buffer = tmp_out_buffer;
2075          }
2076       }
2077    }
2078
2079    /*
2080     * Return
2081     */
2082    *template_ptr = file_buffer;
2083    return JB_ERR_OK;
2084 }
2085
2086
2087 /*********************************************************************
2088  *
2089  * Function    :  template_fill_for_cgi
2090  *
2091  * Description :  CGI support function that loads a HTML template
2092  *                and fills it in.  Handles file-not-found errors
2093  *                by sending a HTML error message.  For convenience,
2094  *                this function also frees the passed "exports" map.
2095  *
2096  * Parameters  :
2097  *          1  :  csp = Client state
2098  *          2  :  templatename = name of the HTML template to be used
2099  *          3  :  exports = map with fill in symbol -> name pairs.
2100  *                          Will be freed by this function.
2101  *          4  :  rsp = Response structure to fill in.
2102  *
2103  * Returns     :  JB_ERR_OK on success
2104  *                JB_ERR_MEMORY on out-of-memory error
2105  *
2106  *********************************************************************/
2107 jb_err template_fill_for_cgi(const struct client_state *csp,
2108                              const char *templatename,
2109                              struct map *exports,
2110                              struct http_response *rsp)
2111 {
2112    jb_err err;
2113
2114    assert(csp);
2115    assert(templatename);
2116    assert(exports);
2117    assert(rsp);
2118
2119    err = template_load(csp, &rsp->body, templatename, 0);
2120    if (err == JB_ERR_FILE)
2121    {
2122       err = cgi_error_no_template(csp, rsp, templatename);
2123    }
2124    else if (err == JB_ERR_OK)
2125    {
2126       err = template_fill(&rsp->body, exports);
2127    }
2128    free_map(exports);
2129    return err;
2130 }
2131
2132
2133 /*********************************************************************
2134  *
2135  * Function    :  default_exports
2136  *
2137  * Description :  returns a struct map list that contains exports
2138  *                which are common to all CGI functions.
2139  *
2140  * Parameters  :
2141  *          1  :  csp = Current client state (buffers, headers, etc...)
2142  *          2  :  caller = name of CGI who calls us and which should
2143  *                         be excluded from the generated menu. May be
2144  *                         NULL.
2145  * Returns     :  NULL if no memory, else a new map.  Caller frees.
2146  *
2147  *********************************************************************/
2148 struct map *default_exports(const struct client_state *csp, const char *caller)
2149 {
2150    char buf[30];
2151    jb_err err;
2152    struct map * exports;
2153    int local_help_exists = 0;
2154    char *ip_address = NULL;
2155    char *port = NULL;
2156    char *hostname = NULL;
2157
2158    assert(csp);
2159
2160    exports = new_map();
2161
2162    if (csp->config->hostname)
2163    {
2164       get_host_information(csp->cfd, &ip_address, &port, NULL);
2165       hostname = strdup(csp->config->hostname);
2166    }
2167    else
2168    {
2169       get_host_information(csp->cfd, &ip_address, &port, &hostname);
2170    }
2171
2172    err = map(exports, "version", 1, html_encode(VERSION), 0);
2173    get_locale_time(buf, sizeof(buf));
2174    if (!err) err = map(exports, "time",          1, html_encode(buf), 0);
2175    if (!err) err = map(exports, "my-ip-address", 1, html_encode(ip_address ? ip_address : "unknown"), 0);
2176    freez(ip_address);
2177    if (!err) err = map(exports, "my-port",       1, html_encode(port ? port : "unknown"), 0);
2178    freez(port);
2179    if (!err) err = map(exports, "my-hostname",   1, html_encode(hostname ? hostname : "unknown"), 0);
2180    freez(hostname);
2181    if (!err) err = map(exports, "homepage",      1, html_encode(HOME_PAGE_URL), 0);
2182    if (!err) err = map(exports, "default-cgi",   1, html_encode(CGI_PREFIX), 0);
2183    if (!err) err = map(exports, "menu",          1, make_menu(caller, csp->config->feature_flags), 0);
2184    if (!err) err = map(exports, "code-status",   1, CODE_STATUS, 1);
2185    if (!strncmpic(csp->config->usermanual, "file://", 7) ||
2186        !strncmpic(csp->config->usermanual, "http", 4))
2187    {
2188       /* Manual is located somewhere else, just link to it. */
2189       if (!err) err = map(exports, "user-manual", 1, html_encode(csp->config->usermanual), 0);
2190    }
2191    else
2192    {
2193       /* Manual is delivered by Privoxy. */
2194       if (!err) err = map(exports, "user-manual", 1, html_encode(CGI_PREFIX"user-manual/"), 0);
2195    }
2196    if (!err) err = map(exports, "actions-help-prefix", 1, ACTIONS_HELP_PREFIX ,1);
2197 #ifdef FEATURE_TOGGLE
2198    if (!err) err = map_conditional(exports, "enabled-display", global_toggle_state);
2199 #else
2200    if (!err) err = map_block_killer(exports, "can-toggle");
2201 #endif
2202
2203    if (!strcmp(CODE_STATUS, "stable"))
2204    {
2205       if (!err) err = map_block_killer(exports, "unstable");
2206    }
2207
2208    if (csp->config->admin_address != NULL)
2209    {
2210       if (!err) err = map(exports, "admin-address", 1, html_encode(csp->config->admin_address), 0);
2211       local_help_exists = 1;
2212    }
2213    else
2214    {
2215       if (!err) err = map_block_killer(exports, "have-adminaddr-info");
2216    }
2217
2218    if (csp->config->proxy_info_url != NULL)
2219    {
2220       if (!err) err = map(exports, "proxy-info-url", 1, html_encode(csp->config->proxy_info_url), 0);
2221       local_help_exists = 1;
2222    }
2223    else
2224    {
2225       if (!err) err = map_block_killer(exports, "have-proxy-info");
2226    }
2227
2228    if (local_help_exists == 0)
2229    {
2230       if (!err) err = map_block_killer(exports, "have-help-info");
2231    }
2232
2233    if (err)
2234    {
2235       free_map(exports);
2236       return NULL;
2237    }
2238
2239    return exports;
2240 }
2241
2242
2243 /*********************************************************************
2244  *
2245  * Function    :  map_block_killer
2246  *
2247  * Description :  Convenience function.
2248  *                Adds a "killer" for the conditional HTML-template
2249  *                block <name>, i.e. a substitution of the regex
2250  *                "if-<name>-start.*if-<name>-end" to the given
2251  *                export list.
2252  *
2253  * Parameters  :
2254  *          1  :  exports = map to extend
2255  *          2  :  name = name of conditional block
2256  *
2257  * Returns     :  JB_ERR_OK on success
2258  *                JB_ERR_MEMORY on out-of-memory error.
2259  *
2260  *********************************************************************/
2261 jb_err map_block_killer(struct map *exports, const char *name)
2262 {
2263    char buf[1000]; /* Will do, since the names are hardwired */
2264
2265    assert(exports);
2266    assert(name);
2267    assert(strlen(name) < (size_t)490);
2268
2269    snprintf(buf, sizeof(buf), "if-%s-start.*if-%s-end", name, name);
2270    return map(exports, buf, 1, "", 1);
2271 }
2272
2273
2274 /*********************************************************************
2275  *
2276  * Function    :  map_block_keep
2277  *
2278  * Description :  Convenience function.  Removes the markers used
2279  *                by map-block-killer, to save a few bytes.
2280  *                i.e. removes "@if-<name>-start@" and "@if-<name>-end@"
2281  *
2282  * Parameters  :
2283  *          1  :  exports = map to extend
2284  *          2  :  name = name of conditional block
2285  *
2286  * Returns     :  JB_ERR_OK on success
2287  *                JB_ERR_MEMORY on out-of-memory error.
2288  *
2289  *********************************************************************/
2290 jb_err map_block_keep(struct map *exports, const char *name)
2291 {
2292    jb_err err;
2293    char buf[500]; /* Will do, since the names are hardwired */
2294
2295    assert(exports);
2296    assert(name);
2297    assert(strlen(name) < (size_t)490);
2298
2299    snprintf(buf, sizeof(buf), "if-%s-start", name);
2300    err = map(exports, buf, 1, "", 1);
2301
2302    if (err)
2303    {
2304       return err;
2305    }
2306
2307    snprintf(buf, sizeof(buf), "if-%s-end", name);
2308    return map(exports, buf, 1, "", 1);
2309 }
2310
2311
2312 /*********************************************************************
2313  *
2314  * Function    :  map_conditional
2315  *
2316  * Description :  Convenience function.
2317  *                Adds an "if-then-else" for the conditional HTML-template
2318  *                block <name>, i.e. a substitution of the form:
2319  *                @if-<name>-then@
2320  *                   True text
2321  *                @else-not-<name>@
2322  *                   False text
2323  *                @endif-<name>@
2324  *
2325  *                The control structure and one of the alternatives
2326  *                will be hidden.
2327  *
2328  * Parameters  :
2329  *          1  :  exports = map to extend
2330  *          2  :  name = name of conditional block
2331  *          3  :  choose_first = nonzero for first, zero for second.
2332  *
2333  * Returns     :  JB_ERR_OK on success
2334  *                JB_ERR_MEMORY on out-of-memory error.
2335  *
2336  *********************************************************************/
2337 jb_err map_conditional(struct map *exports, const char *name, int choose_first)
2338 {
2339    char buf[1000]; /* Will do, since the names are hardwired */
2340    jb_err err;
2341
2342    assert(exports);
2343    assert(name);
2344    assert(strlen(name) < (size_t)480);
2345
2346    snprintf(buf, sizeof(buf), (choose_first
2347       ? "else-not-%s@.*@endif-%s"
2348       : "if-%s-then@.*@else-not-%s"),
2349       name, name);
2350
2351    err = map(exports, buf, 1, "", 1);
2352    if (err)
2353    {
2354       return err;
2355    }
2356
2357    snprintf(buf, sizeof(buf), (choose_first ? "if-%s-then" : "endif-%s"), name);
2358    return map(exports, buf, 1, "", 1);
2359 }
2360
2361
2362 /*********************************************************************
2363  *
2364  * Function    :  make_menu
2365  *
2366  * Description :  Returns an HTML-formatted menu of the available
2367  *                unhidden CGIs, excluding the one given in <self>
2368  *                and the toggle CGI if toggling is disabled.
2369  *
2370  * Parameters  :
2371  *          1  :  self = name of CGI to leave out, can be NULL for
2372  *                complete listing.
2373  *          2  :  feature_flags = feature bitmap from csp->config
2374  *
2375  *
2376  * Returns     :  menu string, or NULL on out-of-memory error.
2377  *
2378  *********************************************************************/
2379 char *make_menu(const char *self, const unsigned feature_flags)
2380 {
2381    const struct cgi_dispatcher *d;
2382    char *result = strdup("");
2383
2384    if (self == NULL)
2385    {
2386       self = "NO-SUCH-CGI!";
2387    }
2388
2389    /* List available unhidden CGI's and export as "other-cgis" */
2390    for (d = cgi_dispatchers; d->name; d++)
2391    {
2392
2393 #ifdef FEATURE_TOGGLE
2394       if (!(feature_flags & RUNTIME_FEATURE_CGI_TOGGLE) && !strcmp(d->name, "toggle"))
2395       {
2396          /*
2397           * Suppress the toggle link if remote toggling is disabled.
2398           */
2399          continue;
2400       }
2401 #endif /* def FEATURE_TOGGLE */
2402
2403       if (d->description && strcmp(d->name, self))
2404       {
2405          char *html_encoded_prefix;
2406
2407          /*
2408           * Line breaks would be great, but break
2409           * the "blocked" template's JavaScript.
2410           */
2411          string_append(&result, "<li><a href=\"");
2412          html_encoded_prefix = html_encode(CGI_PREFIX);
2413          if (html_encoded_prefix == NULL)
2414          {
2415             return NULL;
2416          }
2417          else
2418          {
2419             string_append(&result, html_encoded_prefix);
2420             free(html_encoded_prefix);
2421          }
2422          string_append(&result, d->name);
2423          string_append(&result, "\">");
2424          string_append(&result, d->description);
2425          string_append(&result, "</a></li>");
2426       }
2427    }
2428
2429    return result;
2430 }
2431
2432
2433 /*********************************************************************
2434  *
2435  * Function    :  dump_map
2436  *
2437  * Description :  HTML-dump a map for debugging (as table)
2438  *
2439  * Parameters  :
2440  *          1  :  the_map = map to dump
2441  *
2442  * Returns     :  string with HTML
2443  *
2444  *********************************************************************/
2445 char *dump_map(const struct map *the_map)
2446 {
2447    struct map_entry *cur_entry;
2448    char *ret = strdup("");
2449
2450    string_append(&ret, "<table>\n");
2451
2452    for (cur_entry = the_map->first;
2453         (cur_entry != NULL) && (ret != NULL);
2454         cur_entry = cur_entry->next)
2455    {
2456       string_append(&ret, "<tr><td><b>");
2457       string_join  (&ret, html_encode(cur_entry->name));
2458       string_append(&ret, "</b></td><td>");
2459       string_join  (&ret, html_encode(cur_entry->value));
2460       string_append(&ret, "</td></tr>\n");
2461    }
2462
2463    string_append(&ret, "</table>\n");
2464    return ret;
2465 }
2466
2467
2468 /*
2469   Local Variables:
2470   tab-width: 3
2471   end:
2472 */