first proposal of a structure.
[privoxy.git] / showargs.c
1 const char showargs_rcs[] = "$Id: showargs.c,v 1.23 2001/08/02 22:03:23 jongfoster Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/showargs.c,v $
5  *
6  * Purpose     :  Contains various utility routines needed to 
7  *                generate the show-proxy-args page.
8  *                FIXME: Is this really stuff for a separate file?
9  *
10  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
11  *                IJBSWA team.  http://ijbswa.sourceforge.net
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  * Revisions   :
36  *    $Log: showargs.c,v $
37  *    Revision 1.23  2001/08/02 22:03:23  jongfoster
38  *    Fixing an unterminated character constant.
39  *
40  *    Revision 1.22  2001/08/01 00:20:57  jongfoster
41  *    Changing show_defines so that it doesn't contain any HTML.
42  *
43  *    Revision 1.21  2001/07/30 22:08:36  jongfoster
44  *    Tidying up #defines:
45  *    - All feature #defines are now of the form FEATURE_xxx
46  *    - Permanently turned off WIN_GUI_EDIT
47  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
48  *
49  *    Revision 1.20  2001/07/18 17:27:22  oes
50  *    Adapted to new #defines
51  *
52  *    Revision 1.19  2001/07/13 14:11:36  oes
53  *     - Included SHOW_RCS for deanimate.*
54  *     - Removed all #ifdef PCRS
55  *
56  *
57  *    Revision 1.18  2001/07/02 02:55:16  iwanttokeepanon
58  *    Apended " on some sites" to the HTML generating function `show_defines' (@ line
59  *    392); since "DENY_GZIP" is not *really* necessary for all PCRS functionallity.
60  *
61  *    Revision 1.17  2001/06/29 21:45:41  oes
62  *    Indentation, CRLF->LF, Tab-> Space
63  *
64  *    Revision 1.16  2001/06/29 13:35:07  oes
65  *    - Adapted
66  *    - Improved comments
67  *    - Removed init_proxy_args
68  *    - Renamed end_proxy_args(csp) to show_rcs(void)
69  *    - Removed logentry from cancelled commit
70  *    - Destroyed support for ndef SPLIT_PROXY_ARGS (Ooops)
71  *    - Separated the #define list into show_defines()
72  *
73  *    Revision 1.15  2001/06/09 10:55:28  jongfoster
74  *    Changing BUFSIZ ==> BUFFER_SIZE
75  *
76  *    Revision 1.14  2001/06/07 23:15:40  jongfoster
77  *    Removing config->proxy_args_gateways
78  *    Missing return statement added to end_proxy_args().
79  *
80  *    Revision 1.13  2001/06/06 09:37:59  sarantis
81  *    Fix misplaced comment start.
82  *
83  *    Revision 1.12  2001/06/04 10:41:52  swa
84  *    show version string of cgi.h and cgi.c
85  *
86  *    Revision 1.11  2001/06/03 11:03:48  oes
87  *    moved stuff to cgi.c
88  *
89  *    Revision 1.10  2001/05/31 21:36:07  jongfoster
90  *    Added RCS for actions.[ch] and list.[ch]
91  *
92  *    Revision 1.9  2001/05/29 23:11:38  oes
93  *
94  *     - Moved strsav() from showargs to miscutil
95  *
96  *    Revision 1.8  2001/05/29 09:50:24  jongfoster
97  *    Unified blocklist/imagelist/permissionslist.
98  *    File format is still under discussion, but the internal changes
99  *    are (mostly) done.
100  *
101  *    Also modified interceptor behaviour:
102  *    - We now intercept all URLs beginning with one of the following
103  *      prefixes (and *only* these prefixes):
104  *        * http://i.j.b/
105  *        * http://ijbswa.sf.net/config/
106  *        * http://ijbswa.sourceforge.net/config/
107  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
108  *    - Internal changes so that intercepted and fast redirect pages
109  *      are not replaced with an image.
110  *    - Interceptors now have the option to send a binary page direct
111  *      to the client. (i.e. ijb-send-banner uses this)
112  *    - Implemented show-url-info interceptor.  (Which is why I needed
113  *      the above interceptors changes - a typical URL is
114  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
115  *      The previous mechanism would not have intercepted that, and
116  *      if it had been intercepted then it then it would have replaced
117  *      it with an image.)
118  *
119  *    Revision 1.7  2001/05/26 00:28:36  jongfoster
120  *    Automatic reloading of config file.
121  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
122  *    Most of the global variables have been moved to a new
123  *    struct configuration_spec, accessed through csp->config->globalname
124  *    Most of the globals remaining are used by the Win32 GUI.
125  *
126  *    Revision 1.6  2001/05/25 22:32:56  jongfoster
127  *    CRLF->LF
128  *
129  *    Revision 1.5  2001/05/22 18:54:49  oes
130  *
131  *    - Enabled filtering banners by size rather than URL
132  *      by adding patterns that replace all standard banner
133  *      sizes with the "Junkbuster" gif to the re_filterfile
134  *
135  *    - Enabled filtering WebBugs by providing a pattern
136  *      which kills all 1x1 images
137  *
138  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
139  *      which is selected by the (nonstandard and therefore
140  *      capital) letter 'U' in the option string.
141  *      It causes the quantifiers to be ungreedy by default.
142  *      Appending a ? turns back to greedy (!).
143  *
144  *    - Added a new interceptor ijb-send-banner, which
145  *      sends back the "Junkbuster" gif. Without imagelist or
146  *      MSIE detection support, or if tinygif = 1, or the
147  *      URL isn't recognized as an imageurl, a lame HTML
148  *      explanation is sent instead.
149  *
150  *    - Added new feature, which permits blocking remote
151  *      script redirects and firing back a local redirect
152  *      to the browser.
153  *      The feature is conditionally compiled, i.e. it
154  *      can be disabled with --disable-fast-redirects,
155  *      plus it must be activated by a "fast-redirects"
156  *      line in the config file, has its own log level
157  *      and of course wants to be displayed by show-proxy-args
158  *      Note: Boy, all the #ifdefs in 1001 locations and
159  *      all the fumbling with configure.in and acconfig.h
160  *      were *way* more work than the feature itself :-(
161  *
162  *    - Because a generic redirect template was needed for
163  *      this, tinygif = 3 now uses the same.
164  *
165  *    - Moved GIFs, and other static HTTP response templates
166  *      to project.h
167  *
168  *    - Some minor fixes
169  *
170  *    - Removed some >400 CRs again (Jon, you really worked
171  *      a lot! ;-)
172  *
173  *    Revision 1.4  2001/05/20 16:44:47  jongfoster
174  *    Removing last hardcoded JunkBusters.com URLs.
175  *
176  *    Revision 1.3  2001/05/20 01:21:20  jongfoster
177  *    Version 2.9.4 checkin.
178  *    - Merged popupfile and cookiefile, and added control over PCRS
179  *      filtering, in new "permissionsfile".
180  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
181  *      file error you now get a message box (in the Win32 GUI) rather
182  *      than the program exiting with no explanation.
183  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
184  *      skipping.
185  *    - Removed tabs from "config"
186  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
187  *    - Bumped up version number.
188  *
189  *    Revision 1.2  2001/05/17 23:01:01  oes
190  *     - Cleaned CRLF's from the sources and related files
191  *
192  *    Revision 1.1.1.1  2001/05/15 13:59:03  oes
193  *    Initial import of version 2.9.3 source tree
194  *
195  *
196  *********************************************************************/
197 \f
198 #include "config.h"
199
200 #include <stdio.h>
201 #include <stdlib.h>
202 #include <sys/types.h>
203 #include <string.h>
204 #include <malloc.h>
205 #include <errno.h>
206
207 #include "project.h"
208 #include "showargs.h"
209 #include "jcc.h"
210 #include "encode.h"
211 #include "parsers.h"
212 #include "errlog.h"
213 #include "miscutil.h"
214 #include "gateway.h"
215 #include "cgi.h"
216 #include "list.h"
217
218 const char showargs_h_rcs[] = SHOWARGS_H_VERSION;
219
220
221 /*********************************************************************
222  *
223  * Function    :  savearg
224  *
225  * Description :  Called from `load_config'.  It saves each non-empty
226  *                and non-comment line from config into a list.  This
227  *                list is used to create the show-proxy-args page.
228  *
229  * Parameters  :
230  *          1  :  c = config setting that was found
231  *          2  :  o = the setting's argument (if any)
232  *
233  * Returns     :  N/A
234  *
235  *********************************************************************/
236 void savearg(char *c, char *o, struct configuration_spec * config)
237 {
238    char buf[BUFFER_SIZE];
239
240    *buf = '\0';
241
242    if ( ( NULL != c ) && ( '\0' != *c ) )
243    {
244       if ((c = html_encode(c)))
245       {
246          sprintf(buf, "<a href=\"" REDIRECT_URL "option#%s\">%s</a> ", c, c);
247       }
248       freez(c);
249    }
250    if ( ( NULL != o ) && ( '\0' != *o ) )
251    {
252       if ((o = html_encode(o)))
253       {
254          if (strncmpic(o, "http://", 7) == 0)
255          {
256             strcat(buf, "<a href=\"");
257             strcat(buf, o);
258             strcat(buf, "\">");
259             strcat(buf, o);
260             strcat(buf, "</a>");
261          }
262          else
263          {
264             strcat(buf, o);
265          }
266       }
267       freez(o);
268    }
269
270    strcat(buf, "<br>\n");
271
272    config->proxy_args = strsav(config->proxy_args, buf);
273
274 }
275
276
277 /*********************************************************************
278  *
279  * Function    :  show_rcs
280  *
281  * Description :  Create a string with the rcs info for all sourcefiles
282  *
283  * Parameters  :  None
284  *
285  * Returns     :  string 
286  *
287  *********************************************************************/
288 char *show_rcs(void)
289 {
290    char *b = NULL;
291    char buf[BUFFER_SIZE];
292
293    /* Instead of including *all* dot h's in the project (thus creating a
294     * tremendous amount of dependencies), I will concede to declaring them
295     * as extern's.  This forces the developer to add to this list, but oh well.
296     */
297
298 #define SHOW_RCS(__x)            \
299    {                             \
300       extern const char __x[];   \
301       sprintf(buf, "%s\n", __x); \
302       b = strsav(b, buf);        \
303    }
304
305    /* In alphabetical order */
306    SHOW_RCS(actions_h_rcs)
307    SHOW_RCS(actions_rcs)
308    SHOW_RCS(cgi_h_rcs)
309    SHOW_RCS(cgi_rcs)
310 #ifdef __MINGW32__
311    SHOW_RCS(cygwin_h_rcs)
312 #endif
313    SHOW_RCS(deanimate_h_rcs)
314    SHOW_RCS(deanimate_rcs)
315    SHOW_RCS(encode_h_rcs)
316    SHOW_RCS(encode_rcs)
317    SHOW_RCS(errlog_h_rcs)
318    SHOW_RCS(errlog_rcs)
319    SHOW_RCS(filters_h_rcs)
320    SHOW_RCS(filters_rcs)
321    SHOW_RCS(gateway_h_rcs)
322    SHOW_RCS(gateway_rcs)
323 #ifdef GNU_REGEX
324    SHOW_RCS(gnu_regex_h_rcs)
325    SHOW_RCS(gnu_regex_rcs)
326 #endif /* def GNU_REGEX */
327    SHOW_RCS(jbsockets_h_rcs)
328    SHOW_RCS(jbsockets_rcs)
329    SHOW_RCS(jcc_h_rcs)
330    SHOW_RCS(jcc_rcs)
331 #ifdef FEATURE_KILL_POPUPS
332    SHOW_RCS(killpopup_h_rcs)
333    SHOW_RCS(killpopup_rcs)
334 #endif /* def FEATURE_KILL_POPUPS */
335    SHOW_RCS(list_h_rcs)
336    SHOW_RCS(list_rcs)
337    SHOW_RCS(loadcfg_h_rcs)
338    SHOW_RCS(loadcfg_rcs)
339    SHOW_RCS(loaders_h_rcs)
340    SHOW_RCS(loaders_rcs)
341    SHOW_RCS(miscutil_h_rcs)
342    SHOW_RCS(miscutil_rcs)
343    SHOW_RCS(parsers_h_rcs)
344    SHOW_RCS(parsers_rcs)
345    SHOW_RCS(pcrs_rcs)
346    SHOW_RCS(pcrs_h_rcs)
347    SHOW_RCS(project_h_rcs)
348    SHOW_RCS(showargs_h_rcs)
349    SHOW_RCS(showargs_rcs)
350    SHOW_RCS(ssplit_h_rcs)
351    SHOW_RCS(ssplit_rcs)
352 #ifdef _WIN32
353 #ifndef _WIN_CONSOLE
354    SHOW_RCS(w32log_h_rcs)
355    SHOW_RCS(w32log_rcs)
356    SHOW_RCS(w32res_h_rcs)
357    SHOW_RCS(w32taskbar_h_rcs)
358    SHOW_RCS(w32taskbar_rcs)
359 #endif /* ndef _WIN_CONSOLE */
360    SHOW_RCS(win32_h_rcs)
361    SHOW_RCS(win32_rcs)
362 #endif /* def _WIN32 */
363
364 #undef SHOW_RCS
365
366    return(b);
367 }
368
369 /*********************************************************************
370  *
371  * Function    :  show_defines
372  *
373  * Description :  Create a string with all conditional #defines used
374  *                when building
375  *
376  * Parameters  :  None
377  *
378  * Returns     :  string 
379  *
380  *********************************************************************/
381 void show_defines(struct map *exports)
382 {
383
384 #ifdef FEATURE_ACL
385    map_conditional(exports, "FEATURE_ACL", 1);
386 #else /* ifndef FEATURE_ACL */
387    map_conditional(exports, "FEATURE_ACL", 0);
388 #endif /* ndef FEATURE_ACL */
389
390 #ifdef FEATURE_COOKIE_JAR
391    map_conditional(exports, "FEATURE_COOKIE_JAR", 1);
392 #else /* ifndef FEATURE_COOKIE_JAR */
393    map_conditional(exports, "FEATURE_COOKIE_JAR", 0);
394 #endif /* ndef FEATURE_COOKIE_JAR */
395
396 #ifdef FEATURE_DENY_GZIP
397    map_conditional(exports, "FEATURE_DENY_GZIP", 1);
398 #else /* ifndef FEATURE_DENY_GZIP */
399    map_conditional(exports, "FEATURE_DENY_GZIP", 0);
400 #endif /* ndef FEATURE_DENY_GZIP */
401
402 #ifdef FEATURE_FAST_REDIRECTS
403    map_conditional(exports, "FEATURE_FAST_REDIRECTS", 1);
404 #else /* ifndef FEATURE_FAST_REDIRECTS */
405    map_conditional(exports, "FEATURE_FAST_REDIRECTS", 0);
406 #endif /* ndef FEATURE_FAST_REDIRECTS */
407
408 #ifdef FEATURE_FORCE_LOAD
409    map_conditional(exports, "FEATURE_FORCE_LOAD", 1);
410 #else /* ifndef FEATURE_FORCE_LOAD */
411    map_conditional(exports, "FEATURE_FORCE_LOAD", 0);
412 #endif /* ndef FEATURE_FORCE_LOAD */
413
414 #ifdef FEATURE_IMAGE_BLOCKING
415    map_conditional(exports, "FEATURE_IMAGE_BLOCKING", 1);
416 #else /* ifndef FEATURE_IMAGE_BLOCKING */
417    map_conditional(exports, "FEATURE_IMAGE_BLOCKING", 0);
418 #endif /* ndef FEATURE_IMAGE_BLOCKING */
419
420 #ifdef FEATURE_IMAGE_DETECT_MSIE
421    map_conditional(exports, "FEATURE_IMAGE_DETECT_MSIE", 1);
422 #else /* ifndef FEATURE_IMAGE_DETECT_MSIE */
423    map_conditional(exports, "FEATURE_IMAGE_DETECT_MSIE", 0);
424 #endif /* ndef FEATURE_IMAGE_DETECT_MSIE */
425
426 #ifdef FEATURE_KILL_POPUPS
427    map_conditional(exports, "FEATURE_KILL_POPUPS", 1);
428 #else /* ifndef FEATURE_KILL_POPUPS */
429    map_conditional(exports, "FEATURE_KILL_POPUPS", 0);
430 #endif /* ndef FEATURE_KILL_POPUPS */
431
432 #ifdef FEATURE_PTHREAD
433    map_conditional(exports, "FEATURE_PTHREAD", 1);
434 #else /* ifndef FEATURE_PTHREAD */
435    map_conditional(exports, "FEATURE_PTHREAD", 0);
436 #endif /* ndef FEATURE_PTHREAD */
437
438 #ifdef FEATURE_STATISTICS
439    map_conditional(exports, "FEATURE_STATISTICS", 1);
440 #else /* ifndef FEATURE_STATISTICS */
441    map_conditional(exports, "FEATURE_STATISTICS", 0);
442 #endif /* ndef FEATURE_STATISTICS */
443
444 #ifdef FEATURE_TOGGLE
445    map_conditional(exports, "FEATURE_TOGGLE", 1);
446 #else /* ifndef FEATURE_TOGGLE */
447    map_conditional(exports, "FEATURE_TOGGLE", 0);
448 #endif /* ndef FEATURE_TOGGLE */
449
450 #ifdef FEATURE_TRUST
451    map_conditional(exports, "FEATURE_TRUST", 1);
452 #else /* ifndef FEATURE_TRUST */
453    map_conditional(exports, "FEATURE_TRUST", 0);
454 #endif /* ndef FEATURE_TRUST */
455
456 #ifdef REGEX_GNU
457    map_conditional(exports, "REGEX_GNU", 1);
458 #else /* ifndef REGEX_GNU */
459    map_conditional(exports, "REGEX_GNU", 0);
460 #endif /* def REGEX_GNU */
461
462 #ifdef REGEX_PCRE
463    map_conditional(exports, "REGEX_PCRE", 1);
464 #else /* ifndef REGEX_PCRE */
465    map_conditional(exports, "REGEX_PCRE", 0);
466 #endif /* def REGEX_PCRE */
467
468 #ifdef STATIC_PCRE
469    map_conditional(exports, "STATIC_PCRE", 1);
470 #else /* ifndef STATIC_PCRE */
471    map_conditional(exports, "STATIC_PCRE", 0);
472 #endif /* ndef STATIC_PCRE */
473
474 #ifdef STATIC_PCRS
475    map_conditional(exports, "STATIC_PCRS", 1);
476 #else /* ifndef STATIC_PCRS */
477    map_conditional(exports, "STATIC_PCRS", 0);
478 #endif /* ndef STATIC_PCRS */
479
480    map(exports, "FORCE_PREFIX", 1, FORCE_PREFIX, 1);
481 }
482
483
484 /*
485   Local Variables:
486   tab-width: 3
487   end:
488 */