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