1 /*********************************************************************
3 * File : $Source: /cvsroot/ijbswa/current/cgiedit.c,v $
5 * Purpose : CGI-based actionsfile editor.
7 * NOTE: The CGIs in this file use parameter names
8 * such as "f" and "s" which are really *BAD* choices.
9 * However, I'm trying to save bytes in the
10 * edit-actions-list HTML page - the standard actions
11 * file generated a 550kbyte page, which is ridiculous.
13 * Stick to the short names in this file for consistency.
15 * Copyright : Written by and Copyright (C) 2001-2014 the
16 * Privoxy team. http://www.privoxy.org/
18 * Based on the Internet Junkbuster originally written
19 * by and Copyright (C) 1997 Anonymous Coders and
20 * Junkbusters Corporation. http://www.junkbusters.com
22 * This program is free software; you can redistribute it
23 * and/or modify it under the terms of the GNU General
24 * Public License as published by the Free Software
25 * Foundation; either version 2 of the License, or (at
26 * your option) any later version.
28 * This program is distributed in the hope that it will
29 * be useful, but WITHOUT ANY WARRANTY; without even the
30 * implied warranty of MERCHANTABILITY or FITNESS FOR A
31 * PARTICULAR PURPOSE. See the GNU General Public
32 * License for more details.
34 * The GNU General Public License should be included with
35 * this file. If not, you can view it at
36 * http://www.gnu.org/copyleft/gpl.html
37 * or write to the Free Software Foundation, Inc., 59
38 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
40 **********************************************************************/
46 * FIXME: Following includes copied from cgi.c - which are actually needed?
51 #include <sys/types.h>
60 #include "cgisimple.h"
68 /* loadcfg.h is for global_toggle_state only */
70 #endif /* def FEATURE_TOGGLE */
74 #ifdef FEATURE_CGI_EDIT_ACTIONS
77 * A line in an editable_file.
81 /** Next entry in the linked list */
82 struct file_line * next;
84 /** The raw data, to write out if this line is unmodified. */
87 /** Comments and/or whitespace to put before this line if it's modified
88 and then written out. */
91 /** The actual data, as a string. Line continuation and comment removal
92 are performed on the data read from file before it's stored here, so
93 it will be a single line of data. */
96 /** The type of data on this line. One of the FILE_LINE_xxx constants. */
99 /** The actual data, processed into some sensible data type. */
103 /** An action specification. */
104 struct action_spec action[1];
106 /** A name=value pair. */
110 /** The name in the name=value pair. */
113 /** The value in the name=value pair, as a string. */
116 /** The value in the name=value pair, as an integer. */
125 /** This file_line has not been processed yet. */
126 #define FILE_LINE_UNPROCESSED 1
128 /** This file_line is blank. Can only appear at the end of a file, due to
129 the way the parser works. */
130 #define FILE_LINE_BLANK 2
132 /** This file_line says {{alias}}. */
133 #define FILE_LINE_ALIAS_HEADER 3
135 /** This file_line defines an alias. */
136 #define FILE_LINE_ALIAS_ENTRY 4
138 /** This file_line defines an {action}. */
139 #define FILE_LINE_ACTION 5
141 /** This file_line specifies a URL pattern. */
142 #define FILE_LINE_URL 6
144 /** This file_line says {{settings}}. */
145 #define FILE_LINE_SETTINGS_HEADER 7
147 /** This file_line is in a {{settings}} block. */
148 #define FILE_LINE_SETTINGS_ENTRY 8
150 /** This file_line says {{description}}. */
151 #define FILE_LINE_DESCRIPTION_HEADER 9
153 /** This file_line is in a {{description}} block. */
154 #define FILE_LINE_DESCRIPTION_ENTRY 10
157 * Number of file modification time mismatches
158 * before the CGI editor gets turned off.
160 #define ACCEPTABLE_TIMESTAMP_MISMATCHES 3
163 * A configuration file, in a format that can be edited and written back to
168 struct file_line * lines; /**< The contents of the file. A linked list of lines. */
169 const char * filename; /**< Full pathname - e.g. "/etc/privoxy/wibble.action". */
170 unsigned identifier; /**< The file name's position in csp->config->actions_file[]. */
171 const char * version_str; /**< Last modification time, as a string. For CGI param. */
172 /**< Can be used in URL without using url_param(). */
173 unsigned version; /**< Last modification time - prevents chaos with
174 the browser's "back" button. Note that this is a
175 time_t cast to an unsigned. When comparing, always
176 cast the time_t to an unsigned, and *NOT* vice-versa.
177 This may lose the top few bits, but they're not
178 significant anyway. */
179 int newline; /**< Newline convention - one of the NEWLINE_xxx constants.
180 Note that changing this after the file has been
181 read in will cause a mess. */
182 struct file_line * parse_error; /**< On parse error, this is the offending line. */
183 const char * parse_error_text; /**< On parse error, this is the problem.
184 (Statically allocated) */
188 * Information about the filter types.
189 * Used for macro replacement in cgi_edit_actions_for_url.
191 struct filter_type_info
193 const int multi_action_index; /**< The multi action index as defined in project.h */
194 const char *macro_name; /**< Name of the macro that has to be replaced
195 with the prepared templates.
196 For example "content-filter-params" */
197 const char *type; /**< Name of the filter type,
198 for example "server-header-filter". */
199 /* XXX: check if these two can be combined. */
200 const char *disable_all_option; /**< Name of the catch-all radio option that has
201 to be checked or unchecked for this filter type. */
202 const char *disable_all_param; /**< Name of the parameter that causes all filters of
203 this type to be disabled. */
204 const char *abbr_type; /**< Abbreviation of the filter type, usually the
205 first or second character capitalized */
206 const char *anchor; /**< Anchor for the User Manual link,
207 for example "SERVER-HEADER-FILTER" */
210 /* Accessed by index, keep the order in the way the FT_ macros are defined. */
211 static const struct filter_type_info filter_type_info[] =
215 "content-filter-params", "filter",
216 "filter-all", "filter_all",
220 ACTION_MULTI_CLIENT_HEADER_FILTER,
221 "client-header-filter-params", "client-header-filter",
222 "client-header-filter-all", "client_header_filter_all",
223 "C", "CLIENT-HEADER-FILTER"
226 ACTION_MULTI_SERVER_HEADER_FILTER,
227 "server-header-filter-params", "server-header-filter",
228 "server-header-filter-all", "server_header_filter_all",
229 "S", "SERVER-HEADER-FILTER"
232 ACTION_MULTI_CLIENT_HEADER_TAGGER,
233 "client-header-tagger-params", "client-header-tagger",
234 "client-header-tagger-all", "client_header_tagger_all",
235 "L", "CLIENT-HEADER-TAGGER"
238 ACTION_MULTI_SERVER_HEADER_TAGGER,
239 "server-header-tagger-params", "server-header-tagger",
240 "server-header-tagger-all", "server_header_tagger_all",
241 "E", "SERVER-HEADER-TAGGER"
243 #ifdef FEATURE_EXTERNAL_FILTERS
245 ACTION_MULTI_EXTERNAL_FILTER,
246 "external-content-filter-params", "external-filter",
247 "external-content-filter-all", "external_content_filter_all",
248 "E", "EXTERNAL-CONTENT-FILTER"
253 /* FIXME: Following non-static functions should be prototyped in .h or made static */
255 /* Functions to read and write arbitrary config files */
256 jb_err edit_read_file(struct client_state *csp,
257 const struct map *parameters,
259 struct editable_file **pfile);
260 jb_err edit_write_file(struct editable_file * file);
261 void edit_free_file(struct editable_file * file);
263 /* Functions to read and write actions files */
264 jb_err edit_parse_actions_file(struct editable_file * file);
265 jb_err edit_read_actions_file(struct client_state *csp,
266 struct http_response *rsp,
267 const struct map *parameters,
269 struct editable_file **pfile);
272 jb_err cgi_error_modified(struct client_state *csp,
273 struct http_response *rsp,
274 const char *filename);
275 jb_err cgi_error_parse(struct client_state *csp,
276 struct http_response *rsp,
277 struct editable_file *file);
278 jb_err cgi_error_file(struct client_state *csp,
279 struct http_response *rsp,
280 const char *filename);
281 jb_err cgi_error_file_read_only(struct client_state *csp,
282 struct http_response *rsp,
283 const char *filename);
285 /* Internal arbitrary config file support functions */
286 static jb_err edit_read_file_lines(FILE *fp, struct file_line ** pfile, int *newline);
287 static void edit_free_file_lines(struct file_line * first_line);
289 /* Internal actions file support functions */
290 static int match_actions_file_header_line(const char * line, const char * name);
291 static jb_err split_line_on_equals(const char * line, char ** pname, char ** pvalue);
293 /* Internal parameter parsing functions */
294 static jb_err get_url_spec_param(struct client_state *csp,
295 const struct map *parameters,
300 /* Internal actionsfile <==> HTML conversion functions */
301 static jb_err map_radio(struct map * exports,
302 const char * optionname,
305 static jb_err actions_to_radio(struct map * exports,
306 const struct action_spec *action);
307 static jb_err actions_from_radio(const struct map * parameters,
308 struct action_spec *action);
311 static jb_err map_copy_parameter_html(struct map *out,
312 const struct map *in,
315 static jb_err get_file_name_param(struct client_state *csp,
316 const struct map *parameters,
317 const char *param_name,
318 const char **pfilename);
320 /* Internal convenience functions */
321 static char *section_target(const unsigned sectionid);
323 /*********************************************************************
325 * Function : section_target
327 * Description : Given an unsigned (section id) n, produce a dynamically
328 * allocated string of the form #l<n>, for use in link
331 * XXX: The hash should be moved into the templates
332 * to make this function more generic and render
333 * stringify() obsolete.
336 * 1 : sectionid = start line number of section
338 * Returns : String with link target, or NULL if out of
341 *********************************************************************/
342 static char *section_target(const unsigned sectionid)
346 snprintf(buf, sizeof(buf), "#l%u", sectionid);
352 /*********************************************************************
354 * Function : stringify
356 * Description : Convert a number into a dynamically allocated string.
359 * 1 : number = The number to convert.
361 * Returns : String with link target, or NULL if out of memory
363 *********************************************************************/
364 static char *stringify(const unsigned number)
368 snprintf(buf, sizeof(buf), "%u", number);
373 /*********************************************************************
375 * Function : map_copy_parameter_html
377 * Description : Copy a CGI parameter from one map to another, HTML
381 * 1 : out = target map
382 * 2 : in = source map
383 * 3 : name = name of cgi parameter to copy
385 * Returns : JB_ERR_OK on success
386 * JB_ERR_MEMORY on out-of-memory
387 * JB_ERR_CGI_PARAMS if the parameter doesn't exist
390 *********************************************************************/
391 static jb_err map_copy_parameter_html(struct map *out,
392 const struct map *in,
402 value = lookup(in, name);
403 err = map(out, name, 1, html_encode(value), 0);
410 else if (*value == '\0')
412 return JB_ERR_CGI_PARAMS;
421 /*********************************************************************
423 * Function : cgi_edit_actions_url_form
425 * Description : CGI function that displays a form for
429 * 1 : csp = Current client state (buffers, headers, etc...)
430 * 2 : rsp = http_response data structure for output
431 * 3 : parameters = map of cgi parameters
434 * i : (action index) Identifies the file to edit
435 * v : (version) File's last-modified time
436 * p : (pattern) Line number of pattern to edit
438 * Returns : JB_ERR_OK on success
439 * JB_ERR_MEMORY on out-of-memory
440 * JB_ERR_CGI_PARAMS if the CGI parameters are not
441 * specified or not valid.
443 *********************************************************************/
444 jb_err cgi_edit_actions_url_form(struct client_state *csp,
445 struct http_response *rsp,
446 const struct map *parameters)
448 struct map * exports;
450 struct editable_file * file;
451 struct file_line * cur_line;
452 unsigned line_number;
453 unsigned section_start_line_number = 0;
460 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
462 return cgi_error_disabled(csp, rsp);
465 err = get_number_param(csp, parameters, "p", &patternid);
471 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
474 /* No filename specified, can't read file, modified, or out of memory. */
475 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
478 cur_line = file->lines;
480 for (line_number = 1; (cur_line != NULL) && (line_number < patternid); line_number++)
482 if (cur_line->type == FILE_LINE_ACTION)
484 section_start_line_number = line_number;
486 cur_line = cur_line->next;
489 if ( (cur_line == NULL)
490 || (line_number != patternid)
492 || (cur_line->type != FILE_LINE_URL))
494 /* Invalid "patternid" parameter */
495 edit_free_file(file);
496 return JB_ERR_CGI_PARAMS;
499 if (NULL == (exports = default_exports(csp, NULL)))
501 edit_free_file(file);
502 return JB_ERR_MEMORY;
505 err = map(exports, "f", 1, stringify(file->identifier), 0);
506 if (!err) err = map(exports, "v", 1, file->version_str, 1);
507 if (!err) err = map(exports, "p", 1, url_encode(lookup(parameters, "p")), 0);
508 if (!err) err = map(exports, "u", 1, html_encode(cur_line->unprocessed), 0);
509 if (!err) err = map(exports, "jumptarget", 1, section_target(section_start_line_number), 0);
511 edit_free_file(file);
519 return template_fill_for_cgi(csp, "edit-actions-url-form", exports, rsp);
523 /*********************************************************************
525 * Function : cgi_edit_actions_add_url_form
527 * Description : CGI function that displays a form for
531 * 1 : csp = Current client state (buffers, headers, etc...)
532 * 2 : rsp = http_response data structure for output
533 * 3 : parameters = map of cgi parameters
536 * f : (filename) Identifies the file to edit
537 * v : (version) File's last-modified time
538 * s : (section) Line number of section to edit
540 * Returns : JB_ERR_OK on success
541 * JB_ERR_MEMORY on out-of-memory
542 * JB_ERR_CGI_PARAMS if the CGI parameters are not
543 * specified or not valid.
545 *********************************************************************/
546 jb_err cgi_edit_actions_add_url_form(struct client_state *csp,
547 struct http_response *rsp,
548 const struct map *parameters)
557 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
559 return cgi_error_disabled(csp, rsp);
562 if (NULL == (exports = default_exports(csp, NULL)))
564 return JB_ERR_MEMORY;
567 err = map_copy_parameter_html(exports, parameters, "f");
568 if (!err) err = map_copy_parameter_html(exports, parameters, "v");
569 if (!err) err = map_copy_parameter_html(exports, parameters, "s");
577 return template_fill_for_cgi(csp, "edit-actions-add-url-form", exports, rsp);
581 /*********************************************************************
583 * Function : cgi_edit_actions_remove_url_form
585 * Description : CGI function that displays a form for
589 * 1 : csp = Current client state (buffers, headers, etc...)
590 * 2 : rsp = http_response data structure for output
591 * 3 : parameters = map of cgi parameters
594 * f : (number) The action file identifier.
595 * v : (version) File's last-modified time
596 * p : (pattern) Line number of pattern to edit
598 * Returns : JB_ERR_OK on success
599 * JB_ERR_MEMORY on out-of-memory
600 * JB_ERR_CGI_PARAMS if the CGI parameters are not
601 * specified or not valid.
603 *********************************************************************/
604 jb_err cgi_edit_actions_remove_url_form(struct client_state *csp,
605 struct http_response *rsp,
606 const struct map *parameters)
608 struct map * exports;
610 struct editable_file * file;
611 struct file_line * cur_line;
612 unsigned line_number;
613 unsigned section_start_line_number = 0;
620 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
622 return cgi_error_disabled(csp, rsp);
625 err = get_number_param(csp, parameters, "p", &patternid);
631 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
634 /* No filename specified, can't read file, modified, or out of memory. */
635 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
638 cur_line = file->lines;
640 for (line_number = 1; (cur_line != NULL) && (line_number < patternid); line_number++)
642 if (cur_line->type == FILE_LINE_ACTION)
644 section_start_line_number = line_number;
646 cur_line = cur_line->next;
649 if ( (cur_line == NULL)
650 || (line_number != patternid)
652 || (cur_line->type != FILE_LINE_URL))
654 /* Invalid "patternid" parameter */
655 edit_free_file(file);
656 return JB_ERR_CGI_PARAMS;
659 if (NULL == (exports = default_exports(csp, NULL)))
661 edit_free_file(file);
662 return JB_ERR_MEMORY;
665 err = map(exports, "f", 1, stringify(file->identifier), 0);
666 if (!err) err = map(exports, "v", 1, file->version_str, 1);
667 if (!err) err = map(exports, "p", 1, url_encode(lookup(parameters, "p")), 0);
668 if (!err) err = map(exports, "u", 1, html_encode(cur_line->unprocessed), 0);
669 if (!err) err = map(exports, "jumptarget", 1, section_target(section_start_line_number), 0);
670 if (!err) err = map(exports, "actions-file", 1, html_encode(file->filename), 0);
672 edit_free_file(file);
680 return template_fill_for_cgi(csp, "edit-actions-remove-url-form", exports, rsp);
684 /*********************************************************************
686 * Function : edit_write_file
688 * Description : Write a complete file to disk.
691 * 1 : file = File to write.
693 * Returns : JB_ERR_OK on success
694 * JB_ERR_FILE on error writing to file.
695 * JB_ERR_MEMORY on out of memory
697 *********************************************************************/
698 jb_err edit_write_file(struct editable_file * file)
701 struct file_line * cur_line;
702 struct stat statbuf[1];
703 char version_buf[22]; /* 22 = ceil(log10(2^64)) + 2 = max number of
704 digits in time_t, assuming this is a 64-bit
705 machine, plus null terminator, plus one
709 assert(file->filename);
711 if (NULL == (fp = fopen(file->filename, "wb")))
716 cur_line = file->lines;
717 while (cur_line != NULL)
721 if (fputs(cur_line->raw, fp) < 0)
729 if (cur_line->prefix)
731 if (fputs(cur_line->prefix, fp) < 0)
737 if (cur_line->unprocessed)
740 if (NULL != strchr(cur_line->unprocessed, '#'))
742 /* Must quote '#' characters */
749 /* Count number of # characters, so we know length of output string */
750 src = cur_line->unprocessed;
751 while (NULL != (src = strchr(src, '#')))
758 /* Allocate new memory for string */
759 len = strlen(cur_line->unprocessed) + (size_t)numhash;
760 str = malloc_or_die(len + 1);
762 /* Copy string but quote hashes */
763 src = cur_line->unprocessed;
771 assert(numhash >= 0);
777 assert(numhash == 0);
778 assert(strlen(str) == len);
779 assert(str == dest - len);
780 assert(src - len <= cur_line->unprocessed);
782 if ((strlen(str) != len) || (numhash != 0))
785 * Escaping didn't work as expected, go spread the news.
786 * Only reached in non-debugging builds.
788 log_error(LOG_LEVEL_ERROR,
789 "Looks like hash escaping failed. %s might be corrupted now.",
793 if (fputs(str, fp) < 0)
804 /* Can write without quoting '#' characters. */
805 if (fputs(cur_line->unprocessed, fp) < 0)
811 if (fputs(NEWLINE(file->newline), fp) < 0)
819 /* FIXME: Write data from file->data->whatever */
823 cur_line = cur_line->next;
829 /* Update the version stamp in the file structure, since we just
830 * wrote to the file & changed it's date.
832 if (stat(file->filename, statbuf) < 0)
834 /* Error, probably file not found. */
837 file->version = (unsigned)statbuf->st_mtime;
839 /* Correct file->version_str */
840 freez(file->version_str);
841 snprintf(version_buf, sizeof(version_buf), "%u", file->version);
842 version_buf[sizeof(version_buf)-1] = '\0';
843 file->version_str = strdup_or_die(version_buf);
849 /*********************************************************************
851 * Function : edit_free_file
853 * Description : Free a complete file in memory.
856 * 1 : file = Data structure to free.
860 *********************************************************************/
861 void edit_free_file(struct editable_file * file)
865 /* Silently ignore NULL pointer */
869 edit_free_file_lines(file->lines);
870 freez(file->version_str);
872 file->parse_error_text = NULL; /* Statically allocated */
873 file->parse_error = NULL;
879 /*********************************************************************
881 * Function : edit_free_file_lines
883 * Description : Free an entire linked list of file lines.
886 * 1 : first_line = Data structure to free.
890 *********************************************************************/
891 static void edit_free_file_lines(struct file_line * first_line)
893 struct file_line * next_line;
895 while (first_line != NULL)
897 next_line = first_line->next;
898 first_line->next = NULL;
899 freez(first_line->raw);
900 freez(first_line->prefix);
901 freez(first_line->unprocessed);
902 switch(first_line->type)
904 case 0: /* special case if memory zeroed */
905 case FILE_LINE_UNPROCESSED:
906 case FILE_LINE_BLANK:
907 case FILE_LINE_ALIAS_HEADER:
908 case FILE_LINE_SETTINGS_HEADER:
909 case FILE_LINE_DESCRIPTION_HEADER:
910 case FILE_LINE_DESCRIPTION_ENTRY:
911 case FILE_LINE_ALIAS_ENTRY:
913 /* No data is stored for these */
916 case FILE_LINE_ACTION:
917 free_action(first_line->data.action);
920 case FILE_LINE_SETTINGS_ENTRY:
921 freez(first_line->data.setting.name);
922 freez(first_line->data.setting.svalue);
925 /* Should never happen */
929 first_line->type = 0; /* paranoia */
931 first_line = next_line;
936 /*********************************************************************
938 * Function : match_actions_file_header_line
940 * Description : Match an actions file {{header}} line
943 * 1 : line = String from file
944 * 2 : name = Header to match against
946 * Returns : 0 iff they match.
948 *********************************************************************/
949 static int match_actions_file_header_line(const char * line, const char * name)
957 if ((line[0] != '{') || (line[1] != '{'))
963 /* Look for optional whitespace */
964 while ((*line == ' ') || (*line == '\t'))
969 /* Look for the specified name (case-insensitive) */
971 if (0 != strncmpic(line, name, len))
977 /* Look for optional whitespace */
978 while ((*line == ' ') || (*line == '\t'))
983 /* Look for "}}" and end of string*/
984 if ((line[0] != '}') || (line[1] != '}') || (line[2] != '\0'))
994 /*********************************************************************
996 * Function : match_actions_file_header_line
998 * Description : Match an actions file {{header}} line
1001 * 1 : line = String from file. Must not start with
1002 * whitespace (else infinite loop!)
1003 * 2 : pname = Destination for name
1004 * 2 : pvalue = Destination for value
1006 * Returns : JB_ERR_OK on success
1007 * JB_ERR_MEMORY on out-of-memory
1008 * JB_ERR_PARSE if there's no "=" sign, or if there's
1009 * nothing before the "=" sign (but empty
1010 * values *after* the "=" sign are legal).
1012 *********************************************************************/
1013 static jb_err split_line_on_equals(const char * line, char ** pname, char ** pvalue)
1015 const char * name_end;
1016 const char * value_start;
1022 assert(*line != ' ');
1023 assert(*line != '\t');
1028 value_start = strchr(line, '=');
1029 if ((value_start == NULL) || (value_start == line))
1031 return JB_ERR_PARSE;
1034 name_end = value_start - 1;
1036 /* Eat any whitespace before the '=' */
1037 while ((*name_end == ' ') || (*name_end == '\t'))
1040 * we already know we must have at least 1 non-ws char
1041 * at start of buf - no need to check
1046 name_len = (size_t)(name_end - line) + 1; /* Length excluding \0 */
1047 *pname = malloc_or_die(name_len + 1);
1048 strncpy(*pname, line, name_len);
1049 (*pname)[name_len] = '\0';
1051 /* Eat any the whitespace after the '=' */
1053 while ((*value_start == ' ') || (*value_start == '\t'))
1058 if (NULL == (*pvalue = strdup(value_start)))
1062 return JB_ERR_MEMORY;
1069 /*********************************************************************
1071 * Function : edit_parse_actions_file
1073 * Description : Parse an actions file in memory.
1075 * Passed linked list must have the "data" member
1076 * zeroed, and must contain valid "next" and
1077 * "unprocessed" fields. The "raw" and "prefix"
1078 * fields are ignored, and "type" is just overwritten.
1080 * Note that on error the file may have been
1084 * 1 : file = Actions file to be parsed in-place.
1086 * Returns : JB_ERR_OK on success
1087 * JB_ERR_MEMORY on out-of-memory
1088 * JB_ERR_PARSE on error
1090 *********************************************************************/
1091 jb_err edit_parse_actions_file(struct editable_file * file)
1093 struct file_line * cur_line;
1095 const char * text; /* Text from a line */
1096 char * name; /* For lines of the form name=value */
1097 char * value; /* For lines of the form name=value */
1098 struct action_alias * alias_list = NULL;
1099 jb_err err = JB_ERR_OK;
1101 /* alias_list contains the aliases defined in this file.
1102 * It might be better to use the "file_line.data" fields
1103 * in the relavent places instead.
1106 cur_line = file->lines;
1108 /* A note about blank line support: Blank lines should only
1109 * ever occur as the last line in the file. This function
1110 * is more forgiving than that - FILE_LINE_BLANK can occur
1114 /* Skip leading blanks. Should only happen if file is
1115 * empty (which is valid, but pointless).
1117 while ((cur_line != NULL)
1118 && (cur_line->unprocessed[0] == '\0'))
1121 cur_line->type = FILE_LINE_BLANK;
1122 cur_line = cur_line->next;
1125 if ((cur_line != NULL)
1126 && (cur_line->unprocessed[0] != '{'))
1128 /* File doesn't start with a header */
1129 file->parse_error = cur_line;
1130 file->parse_error_text = "First (non-comment) line of the file must contain a header.";
1131 return JB_ERR_PARSE;
1134 if ((cur_line != NULL) && (0 ==
1135 match_actions_file_header_line(cur_line->unprocessed, "settings")))
1137 cur_line->type = FILE_LINE_SETTINGS_HEADER;
1139 cur_line = cur_line->next;
1140 while ((cur_line != NULL) && (cur_line->unprocessed[0] != '{'))
1142 if (cur_line->unprocessed[0])
1144 cur_line->type = FILE_LINE_SETTINGS_ENTRY;
1146 err = split_line_on_equals(cur_line->unprocessed,
1147 &cur_line->data.setting.name,
1148 &cur_line->data.setting.svalue);
1149 if (err == JB_ERR_MEMORY)
1153 else if (err != JB_ERR_OK)
1155 /* Line does not contain a name=value pair */
1156 file->parse_error = cur_line;
1157 file->parse_error_text = "Expected a name=value pair on this {{description}} line, but couldn't find one.";
1158 return JB_ERR_PARSE;
1163 cur_line->type = FILE_LINE_BLANK;
1165 cur_line = cur_line->next;
1169 if ((cur_line != NULL) && (0 ==
1170 match_actions_file_header_line(cur_line->unprocessed, "description")))
1172 cur_line->type = FILE_LINE_DESCRIPTION_HEADER;
1174 cur_line = cur_line->next;
1175 while ((cur_line != NULL) && (cur_line->unprocessed[0] != '{'))
1177 if (cur_line->unprocessed[0])
1179 cur_line->type = FILE_LINE_DESCRIPTION_ENTRY;
1183 cur_line->type = FILE_LINE_BLANK;
1185 cur_line = cur_line->next;
1189 if ((cur_line != NULL) && (0 ==
1190 match_actions_file_header_line(cur_line->unprocessed, "alias")))
1192 cur_line->type = FILE_LINE_ALIAS_HEADER;
1194 cur_line = cur_line->next;
1195 while ((cur_line != NULL) && (cur_line->unprocessed[0] != '{'))
1197 if (cur_line->unprocessed[0])
1199 /* define an alias */
1200 struct action_alias * new_alias;
1202 cur_line->type = FILE_LINE_ALIAS_ENTRY;
1204 err = split_line_on_equals(cur_line->unprocessed, &name, &value);
1205 if (err == JB_ERR_MEMORY)
1207 free_alias_list(alias_list);
1210 else if (err != JB_ERR_OK)
1212 /* Line does not contain a name=value pair */
1213 file->parse_error = cur_line;
1214 file->parse_error_text = "Expected a name=value pair on this {{alias}} line, but couldn't find one.";
1215 free_alias_list(alias_list);
1216 return JB_ERR_PARSE;
1219 new_alias = zalloc_or_die(sizeof(*new_alias));
1221 err = get_actions(value, alias_list, new_alias->action);
1224 /* Invalid action or out of memory */
1228 free_alias_list(alias_list);
1229 if (err == JB_ERR_MEMORY)
1235 /* Line does not contain a name=value pair */
1236 file->parse_error = cur_line;
1237 file->parse_error_text = "This alias does not specify a valid set of actions.";
1238 return JB_ERR_PARSE;
1244 new_alias->name = name;
1247 new_alias->next = alias_list;
1248 alias_list = new_alias;
1252 cur_line->type = FILE_LINE_BLANK;
1254 cur_line = cur_line->next;
1258 /* Header done, process the main part of the file */
1259 while (cur_line != NULL)
1261 /* At this point, (cur_line->unprocessed[0] == '{') */
1262 assert(cur_line->unprocessed[0] == '{');
1263 text = cur_line->unprocessed + 1;
1264 len = strlen(text) - 1;
1265 if (text[len] != '}')
1267 /* No closing } on header */
1268 free_alias_list(alias_list);
1269 file->parse_error = cur_line;
1270 file->parse_error_text = "Headers starting with '{' must have a "
1271 "closing bracket ('}'). Headers starting with two brackets ('{{') "
1272 "must close with two brackets ('}}').";
1273 return JB_ERR_PARSE;
1278 /* An invalid {{ header. */
1279 free_alias_list(alias_list);
1280 file->parse_error = cur_line;
1281 file->parse_error_text = "Unknown or unexpected two-bracket header. "
1282 "Please remember that the system (two-bracket) headers must "
1283 "appear in the order {{settings}}, {{description}}, {{alias}}, "
1284 "and must appear before any actions (one-bracket) headers. "
1285 "Also note that system headers may not be repeated.";
1286 return JB_ERR_PARSE;
1289 while ((*text == ' ') || (*text == '\t'))
1294 while ((len > (size_t)0)
1295 && ((text[len - 1] == ' ')
1296 || (text[len - 1] == '\t')))
1301 cur_line->type = FILE_LINE_ACTION;
1303 /* Remove {} and make copy */
1304 value = malloc_or_die(len + 1);
1305 strncpy(value, text, len);
1309 err = get_actions(value, alias_list, cur_line->data.action);
1312 /* Invalid action or out of memory */
1314 free_alias_list(alias_list);
1315 if (err == JB_ERR_MEMORY)
1321 /* Line does not contain a name=value pair */
1322 file->parse_error = cur_line;
1323 file->parse_error_text = "This header does not specify a valid set of actions.";
1324 return JB_ERR_PARSE;
1328 /* Done with string - it was clobbered anyway */
1331 /* Process next line */
1332 cur_line = cur_line->next;
1334 /* Loop processing URL patterns */
1335 while ((cur_line != NULL) && (cur_line->unprocessed[0] != '{'))
1337 if (cur_line->unprocessed[0])
1339 /* Could parse URL here, but this isn't currently needed */
1341 cur_line->type = FILE_LINE_URL;
1345 cur_line->type = FILE_LINE_BLANK;
1347 cur_line = cur_line->next;
1349 } /* End main while(cur_line != NULL) loop */
1351 free_alias_list(alias_list);
1357 /*********************************************************************
1359 * Function : edit_read_file_lines
1361 * Description : Read all the lines of a file into memory.
1362 * Handles whitespace, comments and line continuation.
1365 * 1 : fp = File to read from. On return, this will be
1366 * at EOF but it will not have been closed.
1367 * 2 : pfile = Destination for a linked list of file_lines.
1368 * Will be set to NULL on error.
1369 * 3 : newline = How to handle newlines.
1371 * Returns : JB_ERR_OK on success
1372 * JB_ERR_MEMORY on out-of-memory
1374 *********************************************************************/
1375 jb_err edit_read_file_lines(FILE *fp, struct file_line ** pfile, int *newline)
1377 struct file_line * first_line; /* Keep for return value or to free */
1378 struct file_line * cur_line; /* Current line */
1379 struct file_line * prev_line; /* Entry with prev_line->next = cur_line */
1387 cur_line = first_line = zalloc_or_die(sizeof(struct file_line));
1389 cur_line->type = FILE_LINE_UNPROCESSED;
1391 rval = edit_read_line(fp, &cur_line->raw, &cur_line->prefix, &cur_line->unprocessed, newline, NULL);
1394 /* Out of memory or empty file. */
1395 /* Note that empty file is not an error we propagate up */
1397 return ((rval == JB_ERR_FILE) ? JB_ERR_OK : rval);
1402 prev_line = cur_line;
1403 cur_line = prev_line->next = zalloc_or_die(sizeof(struct file_line));
1405 cur_line->type = FILE_LINE_UNPROCESSED;
1407 rval = edit_read_line(fp, &cur_line->raw, &cur_line->prefix, &cur_line->unprocessed, newline, NULL);
1408 if ((rval != JB_ERR_OK) && (rval != JB_ERR_FILE))
1411 edit_free_file_lines(first_line);
1412 return JB_ERR_MEMORY;
1416 while (rval != JB_ERR_FILE);
1420 /* We allocated one too many - free it */
1421 prev_line->next = NULL;
1424 *pfile = first_line;
1429 /*********************************************************************
1431 * Function : edit_read_file
1433 * Description : Read a complete file into memory.
1434 * Handles CGI parameter parsing. If requested, also
1435 * checks the file's modification timestamp.
1438 * 1 : csp = Current client state (buffers, headers, etc...)
1439 * 2 : parameters = map of cgi parameters.
1440 * 3 : require_version = true to check "ver" parameter.
1441 * 4 : pfile = Destination for the file. Will be set
1445 * f : The action file identifier.
1446 * ver : (Only if require_version is nonzero)
1447 * Timestamp of the actions file. If wrong, this
1448 * function fails with JB_ERR_MODIFIED.
1450 * Returns : JB_ERR_OK on success
1451 * JB_ERR_MEMORY on out-of-memory
1452 * JB_ERR_CGI_PARAMS if "filename" was not specified
1454 * JB_ERR_FILE if the file cannot be opened or
1456 * JB_ERR_MODIFIED if version checking was requested and
1457 * failed - the file was modified outside
1458 * of this CGI editor instance.
1460 *********************************************************************/
1461 jb_err edit_read_file(struct client_state *csp,
1462 const struct map *parameters,
1463 int require_version,
1464 struct editable_file **pfile)
1466 struct file_line * lines;
1469 const char *filename = NULL;
1470 struct editable_file * file;
1471 unsigned version = 0;
1472 struct stat statbuf[1];
1473 char version_buf[22];
1474 int newline = NEWLINE_UNKNOWN;
1483 err = get_number_param(csp, parameters, "f", &i);
1484 if ((JB_ERR_OK == err) && (i < MAX_AF_FILES) && (NULL != csp->config->actions_file[i]))
1486 filename = csp->config->actions_file[i];
1488 else if (JB_ERR_CGI_PARAMS == err)
1491 * Probably an old-school URL like
1492 * http://config.privoxy.org/edit-actions-list?f=default
1494 get_file_name_param(csp, parameters, "f", &filename);
1497 if (NULL == filename || stat(filename, statbuf) < 0)
1499 /* Error, probably file not found. */
1502 version = (unsigned) statbuf->st_mtime;
1504 if (require_version)
1506 unsigned specified_version;
1507 err = get_number_param(csp, parameters, "v", &specified_version);
1513 if (version != specified_version)
1515 return JB_ERR_MODIFIED;
1519 if (NULL == (fp = fopen(filename,"rb")))
1524 err = edit_read_file_lines(fp, &lines, &newline);
1533 file = zalloc_or_die(sizeof(*file));
1535 file->lines = lines;
1536 file->newline = newline;
1537 file->filename = filename;
1538 file->version = version;
1539 file->identifier = i;
1541 /* Correct file->version_str */
1542 freez(file->version_str);
1543 snprintf(version_buf, sizeof(version_buf), "%u", file->version);
1544 version_buf[sizeof(version_buf)-1] = '\0';
1545 file->version_str = strdup_or_die(version_buf);
1552 /*********************************************************************
1554 * Function : edit_read_actions_file
1556 * Description : Read a complete actions file into memory.
1557 * Handles CGI parameter parsing. If requested, also
1558 * checks the file's modification timestamp.
1560 * If this function detects an error in the categories
1561 * JB_ERR_FILE, JB_ERR_MODIFIED, or JB_ERR_PARSE,
1562 * then it handles it by filling in the specified
1563 * response structure and returning JB_ERR_FILE.
1566 * 1 : csp = Current client state (buffers, headers, etc...)
1567 * 2 : rsp = HTTP response. Only filled in on error.
1568 * 2 : parameters = map of cgi parameters.
1569 * 3 : require_version = true to check "ver" parameter.
1570 * 4 : pfile = Destination for the file. Will be set
1574 * f : The actions file identifier.
1575 * ver : (Only if require_version is nonzero)
1576 * Timestamp of the actions file. If wrong, this
1577 * function fails with JB_ERR_MODIFIED.
1579 * Returns : JB_ERR_OK on success
1580 * JB_ERR_MEMORY on out-of-memory
1581 * JB_ERR_CGI_PARAMS if "filename" was not specified
1583 * JB_ERR_FILE if the file does not contain valid data,
1584 * or if file cannot be opened or
1585 * contains no data, or if version
1586 * checking was requested and failed.
1588 *********************************************************************/
1589 jb_err edit_read_actions_file(struct client_state *csp,
1590 struct http_response *rsp,
1591 const struct map *parameters,
1592 int require_version,
1593 struct editable_file **pfile)
1596 struct editable_file *file;
1597 static int acceptable_failures = ACCEPTABLE_TIMESTAMP_MISMATCHES - 1;
1605 err = edit_read_file(csp, parameters, require_version, &file);
1608 /* Try to handle if possible */
1609 if (err == JB_ERR_FILE)
1611 err = cgi_error_file(csp, rsp, lookup(parameters, "f"));
1613 else if (err == JB_ERR_MODIFIED)
1615 assert(require_version);
1616 err = cgi_error_modified(csp, rsp, lookup(parameters, "f"));
1617 log_error(LOG_LEVEL_ERROR,
1618 "Blocking CGI edit request due to modification time mismatch.");
1619 if (acceptable_failures > 0)
1621 log_error(LOG_LEVEL_INFO,
1622 "The CGI editor will be turned off after another %d mismatche(s).",
1623 acceptable_failures);
1624 acceptable_failures--;
1628 log_error(LOG_LEVEL_INFO,
1629 "Timestamp mismatch limit reached, turning CGI editor off. "
1630 "Reload the configuration file to re-enable it.");
1631 csp->config->feature_flags &= ~RUNTIME_FEATURE_CGI_EDIT_ACTIONS;
1634 if (err == JB_ERR_OK)
1637 * Signal to higher-level CGI code that there was a problem but we
1638 * handled it, they should just return JB_ERR_OK.
1645 err = edit_parse_actions_file(file);
1648 if (err == JB_ERR_PARSE)
1650 err = cgi_error_parse(csp, rsp, file);
1651 if (err == JB_ERR_OK)
1654 * Signal to higher-level CGI code that there was a problem but we
1655 * handled it, they should just return JB_ERR_OK.
1660 edit_free_file(file);
1669 /*********************************************************************
1671 * Function : get_file_name_param
1673 * Description : Get the name of the file to edit from the parameters
1674 * passed to a CGI function using the old syntax.
1675 * This function handles security checks and only
1676 * accepts files that Privoxy already knows.
1679 * 1 : csp = Current client state (buffers, headers, etc...)
1680 * 2 : parameters = map of cgi parameters
1681 * 3 : param_name = The name of the parameter to read
1682 * 4 : pfilename = pointer to the filename in
1683 * csp->config->actions_file[] if found. Set to NULL on error.
1685 * Returns : JB_ERR_OK on success
1686 * JB_ERR_MEMORY on out-of-memory
1687 * JB_ERR_CGI_PARAMS if "filename" was not specified
1690 *********************************************************************/
1691 static jb_err get_file_name_param(struct client_state *csp,
1692 const struct map *parameters,
1693 const char *param_name,
1694 const char **pfilename)
1697 const char suffix[] = ".action";
1712 param = lookup(parameters, param_name);
1715 return JB_ERR_CGI_PARAMS;
1718 len = strlen(param);
1719 if (len >= FILENAME_MAX)
1722 return JB_ERR_CGI_PARAMS;
1726 * Check every character to see if it's legal.
1727 * Totally unnecessary but we do it anyway.
1730 while ((ch = *s++) != '\0')
1732 if ( ((ch < 'A') || (ch > 'Z'))
1733 && ((ch < 'a') || (ch > 'z'))
1734 && ((ch < '0') || (ch > '9'))
1738 /* Probable hack attempt. */
1739 return JB_ERR_CGI_PARAMS;
1743 /* Append extension */
1744 name_size = len + strlen(suffix) + 1;
1745 name = malloc_or_die(name_size);
1746 strlcpy(name, param, name_size);
1747 strlcat(name, suffix, name_size);
1750 fullpath = make_path(csp->config->confdir, name);
1753 if (fullpath == NULL)
1755 return JB_ERR_MEMORY;
1758 /* Check if the file is known */
1759 for (i = 0; i < MAX_AF_FILES; i++)
1761 if (NULL != csp->config->actions_file[i] &&
1762 !strcmp(fullpath, csp->config->actions_file[i]))
1765 *pfilename = csp->config->actions_file[i];
1773 return JB_ERR_CGI_PARAMS;
1777 /*********************************************************************
1779 * Function : get_url_spec_param
1781 * Description : Get a URL pattern from the parameters
1782 * passed to a CGI function. Removes leading/trailing
1783 * spaces and validates it.
1786 * 1 : csp = Current client state (buffers, headers, etc...)
1787 * 2 : parameters = map of cgi parameters
1788 * 3 : name = Name of CGI parameter to read
1789 * 4 : pvalue = destination for value. Will be malloc()'d.
1790 * Set to NULL on error.
1792 * Returns : JB_ERR_OK on success
1793 * JB_ERR_MEMORY on out-of-memory
1794 * JB_ERR_CGI_PARAMS if the parameter was not specified
1797 *********************************************************************/
1798 static jb_err get_url_spec_param(struct client_state *csp,
1799 const struct map *parameters,
1803 const char *orig_param;
1806 struct pattern_spec compiled[1];
1816 orig_param = lookup(parameters, name);
1819 return JB_ERR_CGI_PARAMS;
1822 /* Copy and trim whitespace */
1823 param = strdup(orig_param);
1826 return JB_ERR_MEMORY;
1830 /* Must be non-empty, and can't allow 1st character to be '{' */
1831 if (param[0] == '\0' || param[0] == '{')
1834 return JB_ERR_CGI_PARAMS;
1837 /* Check for embedded newlines */
1838 for (s = param; *s != '\0'; s++)
1840 if ((*s == '\r') || (*s == '\n'))
1843 return JB_ERR_CGI_PARAMS;
1847 /* Check that regex is valid */
1852 return JB_ERR_MEMORY;
1854 err = create_pattern_spec(compiled, s);
1859 return (err == JB_ERR_MEMORY) ? JB_ERR_MEMORY : JB_ERR_CGI_PARAMS;
1861 free_pattern_spec(compiled);
1863 if (param[strlen(param) - 1] == '\\')
1866 * Must protect trailing '\\' from becoming line continuation character.
1867 * Two methods: 1) If it's a domain only, add a trailing '/'.
1868 * 2) For path, add the do-nothing PCRE expression (?:) to the end
1870 if (strchr(param, '/') == NULL)
1872 err = string_append(¶m, "/");
1876 err = string_append(¶m, "(?:)");
1883 /* Check that the modified regex is valid */
1888 return JB_ERR_MEMORY;
1890 err = create_pattern_spec(compiled, s);
1895 return (err == JB_ERR_MEMORY) ? JB_ERR_MEMORY : JB_ERR_CGI_PARAMS;
1897 free_pattern_spec(compiled);
1904 /*********************************************************************
1906 * Function : map_radio
1908 * Description : Map a set of radio button values. E.g. if you have
1909 * 3 radio buttons, declare them as:
1910 * <option type="radio" name="xyz" @xyz-a@>
1911 * <option type="radio" name="xyz" @xyz-b@>
1912 * <option type="radio" name="xyz" @xyz-c@>
1913 * Then map one of the @xyz-?@ variables to "checked"
1914 * and all the others to empty by calling:
1915 * map_radio(exports, "xyz", "abc", sel)
1916 * Where 'sel' is 'a', 'b', or 'c'.
1919 * 1 : exports = Exports map to modify.
1920 * 2 : optionname = name for map
1921 * 3 : values = null-terminated list of values;
1922 * 4 : value = Selected value.
1924 * CGI Parameters : None
1926 * Returns : JB_ERR_OK on success
1927 * JB_ERR_MEMORY on out-of-memory
1929 *********************************************************************/
1930 static jb_err map_radio(struct map * exports,
1931 const char * optionname,
1932 const char * values,
1938 const size_t len = strlen(optionname);
1939 const size_t buf_size = len + 3;
1945 buf = malloc_or_die(buf_size);
1947 strlcpy(buf, optionname, buf_size);
1949 /* XXX: this looks ... interesting */
1954 while ((c = *values++) != '\0')
1959 if (map(exports, buf, 1, "", 1))
1961 return JB_ERR_MEMORY;
1967 return map(exports, buf, 0, "checked", 1);
1971 /*********************************************************************
1973 * Function : cgi_error_modified
1975 * Description : CGI function that is called when a file is modified
1976 * outside the CGI editor.
1979 * 1 : csp = Current client state (buffers, headers, etc...)
1980 * 2 : rsp = http_response data structure for output
1981 * 3 : filename = The file that was modified.
1983 * CGI Parameters : none
1985 * Returns : JB_ERR_OK on success
1986 * JB_ERR_MEMORY on out-of-memory error.
1988 *********************************************************************/
1989 jb_err cgi_error_modified(struct client_state *csp,
1990 struct http_response *rsp,
1991 const char *filename)
1993 struct map *exports;
2000 if (NULL == (exports = default_exports(csp, NULL)))
2002 return JB_ERR_MEMORY;
2005 err = map(exports, "f", 1, html_encode(filename), 0);
2012 return template_fill_for_cgi(csp, "cgi-error-modified", exports, rsp);
2016 /*********************************************************************
2018 * Function : cgi_error_parse
2020 * Description : CGI function that is called when a file cannot
2021 * be parsed by the CGI editor.
2024 * 1 : csp = Current client state (buffers, headers, etc...)
2025 * 2 : rsp = http_response data structure for output
2026 * 3 : file = The file that was modified.
2028 * CGI Parameters : none
2030 * Returns : JB_ERR_OK on success
2031 * JB_ERR_MEMORY on out-of-memory error.
2033 *********************************************************************/
2034 jb_err cgi_error_parse(struct client_state *csp,
2035 struct http_response *rsp,
2036 struct editable_file *file)
2038 struct map *exports;
2040 struct file_line *cur_line;
2046 if (NULL == (exports = default_exports(csp, NULL)))
2048 return JB_ERR_MEMORY;
2051 err = map(exports, "f", 1, stringify(file->identifier), 0);
2052 if (!err) err = map(exports, "parse-error", 1, html_encode(file->parse_error_text), 0);
2054 cur_line = file->parse_error;
2057 if (!err) err = map(exports, "line-raw", 1, html_encode(cur_line->raw), 0);
2058 if (!err) err = map(exports, "line-data", 1, html_encode(cur_line->unprocessed), 0);
2066 return template_fill_for_cgi(csp, "cgi-error-parse", exports, rsp);
2070 /*********************************************************************
2072 * Function : cgi_error_file
2074 * Description : CGI function that is called when a file cannot be
2075 * opened by the CGI editor.
2078 * 1 : csp = Current client state (buffers, headers, etc...)
2079 * 2 : rsp = http_response data structure for output
2080 * 3 : filename = The file that was modified.
2082 * CGI Parameters : none
2084 * Returns : JB_ERR_OK on success
2085 * JB_ERR_MEMORY on out-of-memory error.
2087 *********************************************************************/
2088 jb_err cgi_error_file(struct client_state *csp,
2089 struct http_response *rsp,
2090 const char *filename)
2092 struct map *exports;
2099 if (NULL == (exports = default_exports(csp, NULL)))
2101 return JB_ERR_MEMORY;
2104 err = map(exports, "f", 1, html_encode(filename), 0);
2111 return template_fill_for_cgi(csp, "cgi-error-file", exports, rsp);
2115 /*********************************************************************
2117 * Function : cgi_error_file_read_only
2119 * Description : CGI function that is called when a file cannot be
2120 * opened for writing by the CGI editor.
2123 * 1 : csp = Current client state (buffers, headers, etc...)
2124 * 2 : rsp = http_response data structure for output
2125 * 3 : filename = The file that we can't write to
2127 * CGI Parameters : none
2129 * Returns : JB_ERR_OK on success
2130 * JB_ERR_MEMORY on out-of-memory error.
2132 *********************************************************************/
2133 jb_err cgi_error_file_read_only(struct client_state *csp,
2134 struct http_response *rsp,
2135 const char *filename)
2137 struct map *exports;
2144 if (NULL == (exports = default_exports(csp, NULL)))
2146 return JB_ERR_MEMORY;
2149 err = map(exports, "f", 1, html_encode(filename), 0);
2156 return template_fill_for_cgi(csp, "cgi-error-file-read-only", exports, rsp);
2160 /*********************************************************************
2162 * Function : cgi_edit_actions
2164 * Description : CGI function that allows the user to choose which
2165 * actions file to edit.
2168 * 1 : csp = Current client state (buffers, headers, etc...)
2169 * 2 : rsp = http_response data structure for output
2170 * 3 : parameters = map of cgi parameters
2172 * CGI Parameters : None
2174 * Returns : JB_ERR_OK on success
2175 * JB_ERR_MEMORY on out-of-memory error
2177 *********************************************************************/
2178 jb_err cgi_edit_actions(struct client_state *csp,
2179 struct http_response *rsp,
2180 const struct map *parameters)
2184 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
2186 return cgi_error_disabled(csp, rsp);
2189 /* FIXME: Incomplete */
2191 return cgi_redirect(rsp, CGI_PREFIX "edit-actions-list?f=default");
2196 /*********************************************************************
2198 * Function : cgi_edit_actions_list
2200 * Description : CGI function that edits the actions list.
2201 * FIXME: This function shouldn't FATAL ever.
2202 * FIXME: This function doesn't check the retval of map()
2204 * 1 : csp = Current client state (buffers, headers, etc...)
2205 * 2 : rsp = http_response data structure for output
2206 * 3 : parameters = map of cgi parameters
2208 * CGI Parameters : filename
2210 * Returns : JB_ERR_OK on success
2211 * JB_ERR_MEMORY on out-of-memory
2212 * JB_ERR_FILE if the file cannot be opened or
2214 * JB_ERR_CGI_PARAMS if "filename" was not specified
2217 *********************************************************************/
2218 jb_err cgi_edit_actions_list(struct client_state *csp,
2219 struct http_response *rsp,
2220 const struct map *parameters)
2222 char * section_template;
2223 char * url_template;
2228 struct map * exports;
2229 struct map * section_exports;
2230 struct map * url_exports;
2231 struct editable_file * file;
2232 struct file_line * cur_line;
2233 unsigned line_number = 0;
2234 unsigned prev_section_line_number = ((unsigned) (-1));
2236 struct file_list * fl;
2237 struct url_actions * b;
2238 char * buttons = NULL;
2241 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
2243 return cgi_error_disabled(csp, rsp);
2246 if (NULL == (exports = default_exports(csp, NULL)))
2248 return JB_ERR_MEMORY;
2251 /* Load actions file */
2252 err = edit_read_actions_file(csp, rsp, parameters, 0, &file);
2255 /* No filename specified, can't read file, or out of memory. */
2257 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
2260 /* Find start of actions in file */
2261 cur_line = file->lines;
2263 while ((cur_line != NULL) && (cur_line->type != FILE_LINE_ACTION))
2265 cur_line = cur_line->next;
2270 * Conventional actions files should have a match all block
2272 * cur_line = {...global actions...}
2273 * cur_line->next = /
2274 * cur_line->next->next = {...actions...} or EOF
2276 if ( (cur_line != NULL)
2277 && (cur_line->type == FILE_LINE_ACTION)
2278 && (cur_line->next != NULL)
2279 && (cur_line->next->type == FILE_LINE_URL)
2280 && (0 == strcmp(cur_line->next->unprocessed, "/"))
2281 && ( (cur_line->next->next == NULL)
2282 || (cur_line->next->next->type != FILE_LINE_URL)
2286 * Generate string with buttons to set actions for "/" to
2287 * any predefined set of actions (named standard.*, probably
2288 * residing in standard.action).
2291 err = template_load(csp, §ion_template, "edit-actions-list-button", 0);
2294 edit_free_file(file);
2296 if (err == JB_ERR_FILE)
2298 return cgi_error_no_template(csp, rsp, "edit-actions-list-button");
2303 err = template_fill(§ion_template, exports);
2306 edit_free_file(file);
2311 buttons = strdup("");
2312 for (i = 0; i < MAX_AF_FILES; i++)
2314 if (((fl = csp->actions_list[i]) != NULL) && ((b = fl->f) != NULL))
2316 for (b = b->next; NULL != b; b = b->next)
2318 if (!strncmp(b->url->spec, "standard.", 9) && *(b->url->spec + 9) != '\0')
2323 free(section_template);
2324 edit_free_file(file);
2326 return JB_ERR_MEMORY;
2329 section_exports = new_map();
2330 err = map(section_exports, "button-name", 1, b->url->spec + 9, 1);
2332 if (err || (NULL == (s = strdup(section_template))))
2334 free_map(section_exports);
2336 free(section_template);
2337 edit_free_file(file);
2339 return JB_ERR_MEMORY;
2342 if (!err) err = template_fill(&s, section_exports);
2343 free_map(section_exports);
2344 if (!err) err = string_join(&buttons, s);
2349 freez(section_template);
2350 if (!err) err = map(exports, "all-urls-buttons", 1, buttons, 0);
2353 * Conventional actions file, supply extra editing help.
2354 * (e.g. don't allow them to make it an unconventional one).
2356 if (!err) err = map_conditional(exports, "all-urls-present", 1);
2358 snprintf(buf, sizeof(buf), "%u", line_number);
2359 if (!err) err = map(exports, "all-urls-s", 1, buf, 1);
2360 snprintf(buf, sizeof(buf), "%u", line_number + 2);
2361 if (!err) err = map(exports, "all-urls-s-next", 1, buf, 1);
2362 if (!err) err = map(exports, "all-urls-actions", 1,
2363 actions_to_html(csp, cur_line->data.action), 0);
2365 /* Skip the 2 lines */
2366 cur_line = cur_line->next->next;
2370 * Note that prev_section_line_number is NOT set here.
2371 * This is deliberate and not a bug. It stops a "Move up"
2372 * option appearing on the next section. Clicking "Move
2373 * up" would make the actions file unconventional, which
2374 * we don't want, so we hide this option.
2380 * Non-standard actions file - does not begin with
2381 * the "All URLs" section.
2383 if (!err) err = map_conditional(exports, "all-urls-present", 0);
2386 /* Set up global exports */
2388 if (!err) err = map(exports, "actions-file", 1, html_encode(file->filename), 0);
2389 if (!err) err = map(exports, "f", 1, stringify(file->identifier), 0);
2390 if (!err) err = map(exports, "v", 1, file->version_str, 1);
2392 /* Discourage private additions to default.action */
2394 if (!err) err = map_conditional(exports, "default-action",
2395 (strstr("default.action", file->filename) != NULL));
2398 edit_free_file(file);
2403 /* Should do all global exports above this point */
2405 /* Load templates */
2407 err = template_load(csp, §ion_template, "edit-actions-list-section", 0);
2410 edit_free_file(file);
2412 if (err == JB_ERR_FILE)
2414 return cgi_error_no_template(csp, rsp, "edit-actions-list-section");
2419 err = template_load(csp, &url_template, "edit-actions-list-url", 0);
2422 free(section_template);
2423 edit_free_file(file);
2425 if (err == JB_ERR_FILE)
2427 return cgi_error_no_template(csp, rsp, "edit-actions-list-url");
2432 err = template_fill(§ion_template, exports);
2436 edit_free_file(file);
2441 err = template_fill(&url_template, exports);
2444 free(section_template);
2445 edit_free_file(file);
2450 if (NULL == (sections = strdup("")))
2452 free(section_template);
2454 edit_free_file(file);
2456 return JB_ERR_MEMORY;
2459 while ((cur_line != NULL) && (cur_line->type == FILE_LINE_ACTION))
2461 section_exports = new_map();
2463 snprintf(buf, sizeof(buf), "%u", line_number);
2464 err = map(section_exports, "s", 1, buf, 1);
2465 if (!err) err = map(section_exports, "actions", 1,
2466 actions_to_html(csp, cur_line->data.action), 0);
2469 && (cur_line->next != NULL)
2470 && (cur_line->next->type == FILE_LINE_URL))
2472 /* This section contains at least one URL, don't allow delete */
2473 err = map_block_killer(section_exports, "empty-section");
2477 if (!err) err = map_block_keep(section_exports, "empty-section");
2480 if (prev_section_line_number != ((unsigned)(-1)))
2482 /* Not last section */
2483 snprintf(buf, sizeof(buf), "%u", prev_section_line_number);
2484 if (!err) err = map(section_exports, "s-prev", 1, buf, 1);
2485 if (!err) err = map_block_keep(section_exports, "s-prev-exists");
2490 if (!err) err = map_block_killer(section_exports, "s-prev-exists");
2492 prev_section_line_number = line_number;
2497 free(section_template);
2499 edit_free_file(file);
2501 free_map(section_exports);
2505 /* Should do all section-specific exports above this point */
2507 if (NULL == (urls = strdup("")))
2510 free(section_template);
2512 edit_free_file(file);
2514 free_map(section_exports);
2515 return JB_ERR_MEMORY;
2520 cur_line = cur_line->next;
2523 while ((cur_line != NULL) && (cur_line->type == FILE_LINE_URL))
2525 url_exports = new_map();
2527 snprintf(buf, sizeof(buf), "%u", line_number);
2528 err = map(url_exports, "p", 1, buf, 1);
2530 snprintf(buf, sizeof(buf), "%d", url_1_2);
2531 if (!err) err = map(url_exports, "url-1-2", 1, buf, 1);
2533 if (!err) err = map(url_exports, "url-html", 1,
2534 html_encode(cur_line->unprocessed), 0);
2535 if (!err) err = map(url_exports, "url", 1,
2536 url_encode(cur_line->unprocessed), 0);
2542 free(section_template);
2544 edit_free_file(file);
2546 free_map(section_exports);
2547 free_map(url_exports);
2551 if (NULL == (s = strdup(url_template)))
2555 free(section_template);
2557 edit_free_file(file);
2559 free_map(section_exports);
2560 free_map(url_exports);
2561 return JB_ERR_MEMORY;
2564 err = template_fill(&s, section_exports);
2565 if (!err) err = template_fill(&s, url_exports);
2566 if (!err) err = string_append(&urls, s);
2568 free_map(url_exports);
2575 free(section_template);
2577 edit_free_file(file);
2579 free_map(section_exports);
2583 url_1_2 = 3 - url_1_2;
2585 cur_line = cur_line->next;
2589 err = map(section_exports, "urls", 1, urls, 0);
2591 /* Could also do section-specific exports here, but it wouldn't be as fast */
2593 snprintf(buf, sizeof(buf), "%u", line_number);
2594 if (!err) err = map(section_exports, "s-next", 1, buf, 1);
2596 if ((cur_line != NULL)
2597 && (cur_line->type == FILE_LINE_ACTION))
2599 /* Not last section */
2600 if (!err) err = map_block_keep(section_exports, "s-next-exists");
2605 if (!err) err = map_block_killer(section_exports, "s-next-exists");
2611 free(section_template);
2613 edit_free_file(file);
2615 free_map(section_exports);
2619 if (NULL == (s = strdup(section_template)))
2622 free(section_template);
2624 edit_free_file(file);
2626 free_map(section_exports);
2627 return JB_ERR_MEMORY;
2630 err = template_fill(&s, section_exports);
2631 if (!err) err = string_append(§ions, s);
2634 free_map(section_exports);
2639 free(section_template);
2641 edit_free_file(file);
2647 edit_free_file(file);
2648 free(section_template);
2651 err = map(exports, "sections", 1, sections, 0);
2658 /* Could also do global exports here, but it wouldn't be as fast */
2660 return template_fill_for_cgi(csp, "edit-actions-list", exports, rsp);
2664 /*********************************************************************
2666 * Function : cgi_edit_actions_for_url
2668 * Description : CGI function that edits the Actions list.
2671 * 1 : csp = Current client state (buffers, headers, etc...)
2672 * 2 : rsp = http_response data structure for output
2673 * 3 : parameters = map of cgi parameters
2675 * CGI Parameters : None
2677 * Returns : JB_ERR_OK on success
2678 * JB_ERR_MEMORY on out-of-memory
2679 * JB_ERR_CGI_PARAMS if the CGI parameters are not
2680 * specified or not valid.
2682 *********************************************************************/
2683 jb_err cgi_edit_actions_for_url(struct client_state *csp,
2684 struct http_response *rsp,
2685 const struct map *parameters)
2687 struct map * exports;
2689 struct editable_file * file;
2690 struct file_line * cur_line;
2691 unsigned line_number;
2693 struct re_filterfile_spec *filter_group;
2694 int i, have_filters = 0;
2696 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
2698 return cgi_error_disabled(csp, rsp);
2701 err = get_number_param(csp, parameters, "s", §ionid);
2707 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
2710 /* No filename specified, can't read file, modified, or out of memory. */
2711 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
2714 cur_line = file->lines;
2716 for (line_number = 1; (cur_line != NULL) && (line_number < sectionid); line_number++)
2718 cur_line = cur_line->next;
2721 if ( (cur_line == NULL)
2722 || (line_number != sectionid)
2724 || (cur_line->type != FILE_LINE_ACTION))
2726 /* Invalid "sectionid" parameter */
2727 edit_free_file(file);
2728 return JB_ERR_CGI_PARAMS;
2731 if (NULL == (exports = default_exports(csp, NULL)))
2733 edit_free_file(file);
2734 return JB_ERR_MEMORY;
2737 err = map(exports, "f", 1, stringify(file->identifier), 0);
2738 if (!err) err = map(exports, "v", 1, file->version_str, 1);
2739 if (!err) err = map(exports, "s", 1, url_encode(lookup(parameters, "s")), 0);
2741 if (!err) err = actions_to_radio(exports, cur_line->data.action);
2744 * XXX: Some browsers (at least IE6 and IE7) have an artificial URL
2745 * length limitation and ignore clicks on the Submit buttons if
2746 * the resulting GET URL would be longer than their limit.
2748 * In Privoxy 3.0.5 beta the standard edit-actions-for-url template
2749 * reached this limit and action editing stopped working in these
2750 * browsers (BR #1570678).
2752 * The config option split-large-forms works around this browser
2753 * bug (HTTP has no URL length limitation) by deviding the action
2754 * list form into multiple smaller ones. It means the URLs are shorter
2755 * and work in broken browsers as well, but the user can no longer change
2756 * all actions with one submit.
2758 * A better solution would be to switch to POST requests,
2759 * but this will do for now.
2761 if (!err && (csp->config->feature_flags & RUNTIME_FEATURE_SPLIT_LARGE_FORMS))
2763 /* Generate multiple smaller form by killing the big one. */
2764 err = map_block_killer(exports, "one-form-only");
2768 /* Default: Generate one large form by killing the smaller ones. */
2769 err = map_block_killer(exports, "multiple-forms");
2772 for (i = 0; i < MAX_AF_FILES; i++)
2774 if ((csp->rlist[i] != NULL) && (csp->rlist[i]->f != NULL))
2776 if (!err) err = map_conditional(exports, "any-filters-defined", 1);
2782 #ifndef FEATURE_EXTERNAL_FILTERS
2783 if (!err) err = map_block_killer(exports, "external-content-filters");
2788 edit_free_file(file);
2793 if (0 == have_filters)
2795 err = map(exports, "filter-params", 1, "", 1);
2800 * List available filters and their settings.
2802 char *filter_template;
2803 int filter_identifier = 0;
2804 char *prepared_templates[MAX_FILTER_TYPES];
2806 for (i = 0; i < MAX_FILTER_TYPES; i++)
2808 prepared_templates[i] = strdup("");
2811 err = template_load(csp, &filter_template, "edit-actions-for-url-filter", 0);
2814 edit_free_file(file);
2816 if (err == JB_ERR_FILE)
2818 return cgi_error_no_template(csp, rsp, "edit-actions-for-url-filter");
2823 err = template_fill(&filter_template, exports);
2825 for (i = 0; i < MAX_AF_FILES; i++)
2827 if ((csp->rlist[i] != NULL) && (csp->rlist[i]->f != NULL))
2829 filter_group = csp->rlist[i]->f;
2830 for (;(!err) && (filter_group != NULL); filter_group = filter_group->next)
2832 char current_mode = 'x';
2834 struct list_entry *filter_name;
2835 struct map *line_exports;
2836 const enum filter_type type = filter_group->type;
2837 const int multi_action_index = filter_type_info[type].multi_action_index;
2839 assert(type < MAX_FILTER_TYPES);
2841 filter_name = cur_line->data.action->multi_add[multi_action_index]->first;
2842 while ((filter_name != NULL)
2843 && (0 != strcmp(filter_group->name, filter_name->str)))
2845 filter_name = filter_name->next;
2848 if (filter_name != NULL)
2854 filter_name = cur_line->data.action->multi_remove[multi_action_index]->first;
2855 while ((filter_name != NULL)
2856 && (0 != strcmp(filter_group->name, filter_name->str)))
2858 filter_name = filter_name->next;
2860 if (filter_name != NULL)
2866 /* Generate a unique serial number */
2867 snprintf(number, sizeof(number), "%x", filter_identifier++);
2868 number[sizeof(number) - 1] = '\0';
2870 line_exports = new_map();
2871 if (line_exports == NULL)
2873 err = JB_ERR_MEMORY;
2879 if (!err) err = map(line_exports, "index", 1, number, 1);
2880 if (!err) err = map(line_exports, "name", 1, filter_group->name, 1);
2881 if (!err) err = map(line_exports, "description", 1, filter_group->description, 1);
2882 if (!err) err = map_radio(line_exports, "this-filter", "ynx", current_mode);
2883 if (!err) err = map(line_exports, "filter-type", 1, filter_type_info[type].type, 1);
2884 if (!err) err = map(line_exports, "abbr-filter-type", 1, filter_type_info[type].abbr_type, 1);
2885 if (!err) err = map(line_exports, "anchor", 1, filter_type_info[type].anchor, 1);
2889 filter_line = strdup(filter_template);
2890 if (filter_line == NULL) err = JB_ERR_MEMORY;
2892 if (!err) err = template_fill(&filter_line, line_exports);
2893 string_join(&prepared_templates[type], filter_line);
2895 free_map(line_exports);
2900 freez(filter_template);
2902 /* Replace all filter macros with the aggregated templates */
2903 for (i = 0; i < MAX_FILTER_TYPES; i++)
2906 err = map(exports, filter_type_info[i].macro_name, 1, prepared_templates[i], 0);
2911 /* Free aggregated templates */
2912 for (i = 0; i < MAX_FILTER_TYPES; i++)
2914 freez(prepared_templates[i]);
2919 /* Check or uncheck the "disable all of this type" radio buttons. */
2920 for (i = 0; i < MAX_FILTER_TYPES; i++)
2922 const int a = filter_type_info[i].multi_action_index;
2923 const int disable_all = cur_line->data.action->multi_remove_all[a];
2925 err = map_radio(exports, filter_type_info[i].disable_all_option, "nx", (disable_all ? 'n' : 'x'));
2928 edit_free_file(file);
2936 return template_fill_for_cgi(csp, "edit-actions-for-url", exports, rsp);
2940 /*********************************************************************
2942 * Function : cgi_edit_actions_submit
2944 * Description : CGI function that actually edits the Actions list.
2947 * 1 : csp = Current client state (buffers, headers, etc...)
2948 * 2 : rsp = http_response data structure for output
2949 * 3 : parameters = map of cgi parameters
2951 * CGI Parameters : None
2953 * Returns : JB_ERR_OK on success
2954 * JB_ERR_MEMORY on out-of-memory
2955 * JB_ERR_CGI_PARAMS if the CGI parameters are not
2956 * specified or not valid.
2958 *********************************************************************/
2959 jb_err cgi_edit_actions_submit(struct client_state *csp,
2960 struct http_response *rsp,
2961 const struct map *parameters)
2966 size_t newtext_size;
2968 struct editable_file * file;
2969 struct file_line * cur_line;
2970 unsigned line_number;
2973 int filter_identifier;
2975 const char * action_set_name;
2976 struct file_list * fl;
2977 struct url_actions * b;
2979 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
2981 return cgi_error_disabled(csp, rsp);
2984 err = get_number_param(csp, parameters, "s", §ionid);
2990 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
2993 /* No filename specified, can't read file, modified, or out of memory. */
2994 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
2997 cur_line = file->lines;
2999 for (line_number = 1; (cur_line != NULL) && (line_number < sectionid); line_number++)
3001 cur_line = cur_line->next;
3004 if ( (cur_line == NULL)
3005 || (line_number != sectionid)
3007 || (cur_line->type != FILE_LINE_ACTION))
3009 /* Invalid "sectionid" parameter */
3010 edit_free_file(file);
3011 return JB_ERR_CGI_PARAMS;
3014 get_string_param(parameters, "p", &action_set_name);
3015 if (action_set_name != NULL)
3017 for (filter_identifier = 0; filter_identifier < MAX_AF_FILES; filter_identifier++)
3019 if (((fl = csp->actions_list[filter_identifier]) != NULL) && ((b = fl->f) != NULL))
3021 for (b = b->next; NULL != b; b = b->next)
3023 if (!strncmp(b->url->spec, "standard.", 9) && !strcmp(b->url->spec + 9, action_set_name))
3025 copy_action(cur_line->data.action, b->action);
3031 edit_free_file(file);
3032 return JB_ERR_CGI_PARAMS;
3038 err = actions_from_radio(parameters, cur_line->data.action);
3044 edit_free_file(file);
3048 /* Check the "disable all of this type" parameters. */
3049 for (i = 0; i < MAX_FILTER_TYPES; i++)
3051 const int multi_action_index = filter_type_info[i].multi_action_index;
3052 const char ch = get_char_param(parameters, filter_type_info[i].disable_all_param);
3056 list_remove_all(cur_line->data.action->multi_add[multi_action_index]);
3057 list_remove_all(cur_line->data.action->multi_remove[multi_action_index]);
3058 cur_line->data.action->multi_remove_all[multi_action_index] = 1;
3062 cur_line->data.action->multi_remove_all[multi_action_index] = 0;
3066 for (filter_identifier = 0; !err; filter_identifier++)
3073 * Filter state. Valid states are: 'Y' (active),
3074 * 'N' (inactive) and 'X' (no change).
3078 * Abbreviated filter type. Valid types are: 'F' (content filter),
3079 * 'S' (server-header filter) and 'C' (client-header filter).
3081 int multi_action_index = 0;
3083 /* Generate the keys */
3084 snprintf(key_value, sizeof(key_value), "filter_r%x", filter_identifier);
3085 key_value[sizeof(key_value) - 1] = '\0'; /* XXX: Why? */
3086 snprintf(key_name, sizeof(key_name), "filter_n%x", filter_identifier);
3087 key_name[sizeof(key_name) - 1] = '\0'; /* XXX: Why? */
3088 snprintf(key_type, sizeof(key_type), "filter_t%x", filter_identifier);
3090 err = get_string_param(parameters, key_name, &name);
3099 type = get_char_param(parameters, key_type);
3103 multi_action_index = ACTION_MULTI_FILTER;
3106 multi_action_index = ACTION_MULTI_SERVER_HEADER_FILTER;
3109 multi_action_index = ACTION_MULTI_CLIENT_HEADER_FILTER;
3112 multi_action_index = ACTION_MULTI_CLIENT_HEADER_TAGGER;
3115 multi_action_index = ACTION_MULTI_SERVER_HEADER_TAGGER;
3118 log_error(LOG_LEVEL_ERROR,
3119 "Unknown filter type: %c for filter %s. Filter ignored.", type, name);
3122 assert(multi_action_index);
3124 value = get_char_param(parameters, key_value);
3127 list_remove_item(cur_line->data.action->multi_add[multi_action_index], name);
3128 if (!err) err = enlist(cur_line->data.action->multi_add[multi_action_index], name);
3129 list_remove_item(cur_line->data.action->multi_remove[multi_action_index], name);
3131 else if (value == 'N')
3133 list_remove_item(cur_line->data.action->multi_add[multi_action_index], name);
3134 if (!cur_line->data.action->multi_remove_all[multi_action_index])
3136 list_remove_item(cur_line->data.action->multi_remove[multi_action_index], name);
3137 if (!err) err = enlist(cur_line->data.action->multi_remove[multi_action_index], name);
3140 else if (value == 'X')
3142 list_remove_item(cur_line->data.action->multi_add[multi_action_index], name);
3143 list_remove_item(cur_line->data.action->multi_remove[multi_action_index], name);
3150 edit_free_file(file);
3154 if (NULL == (actiontext = actions_to_text(cur_line->data.action)))
3157 edit_free_file(file);
3158 return JB_ERR_MEMORY;
3161 len = strlen(actiontext);
3165 * Empty action - must special-case this.
3166 * Simply setting len to 1 is sufficient...
3171 newtext_size = len + 2;
3172 newtext = malloc_or_die(newtext_size);
3173 strlcpy(newtext, actiontext, newtext_size);
3177 newtext[len + 1] = '\0';
3179 freez(cur_line->raw);
3180 freez(cur_line->unprocessed);
3181 cur_line->unprocessed = newtext;
3183 err = edit_write_file(file);
3186 /* Error writing file */
3187 if (err == JB_ERR_FILE)
3189 /* Read-only file. */
3190 err = cgi_error_file_read_only(csp, rsp, file->filename);
3192 edit_free_file(file);
3196 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%i#l%u",
3197 (long) time(NULL), file->identifier, sectionid);
3199 edit_free_file(file);
3201 return cgi_redirect(rsp, target);
3205 /*********************************************************************
3207 * Function : cgi_edit_actions_url
3209 * Description : CGI function that actually edits a URL pattern in
3213 * 1 : csp = Current client state (buffers, headers, etc...)
3214 * 2 : rsp = http_response data structure for output
3215 * 3 : parameters = map of cgi parameters
3218 * filename : Identifies the file to edit
3219 * ver : File's last-modified time
3220 * section : Line number of section to edit
3221 * pattern : Line number of pattern to edit
3222 * newval : New value for pattern
3224 * Returns : JB_ERR_OK on success
3225 * JB_ERR_MEMORY on out-of-memory
3226 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3227 * specified or not valid.
3229 *********************************************************************/
3230 jb_err cgi_edit_actions_url(struct client_state *csp,
3231 struct http_response *rsp,
3232 const struct map *parameters)
3236 struct editable_file * file;
3237 struct file_line * cur_line;
3238 unsigned line_number;
3239 unsigned section_start_line_number = 0;
3247 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3249 return cgi_error_disabled(csp, rsp);
3252 err = get_number_param(csp, parameters, "p", &patternid);
3259 return JB_ERR_CGI_PARAMS;
3262 err = get_url_spec_param(csp, parameters, "u", &new_pattern);
3268 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3271 /* No filename specified, can't read file, modified, or out of memory. */
3273 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3277 cur_line = file->lines;
3279 while ((cur_line != NULL) && (line_number < patternid))
3281 if (cur_line->type == FILE_LINE_ACTION)
3283 section_start_line_number = line_number;
3285 cur_line = cur_line->next;
3289 if ((cur_line == NULL)
3290 || (cur_line->type != FILE_LINE_URL))
3292 /* Invalid "patternid" parameter */
3294 edit_free_file(file);
3295 return JB_ERR_CGI_PARAMS;
3298 /* At this point, the line to edit is in cur_line */
3300 freez(cur_line->raw);
3301 freez(cur_line->unprocessed);
3302 cur_line->unprocessed = new_pattern;
3304 err = edit_write_file(file);
3307 /* Error writing file */
3308 if (err == JB_ERR_FILE)
3310 /* Read-only file. */
3311 err = cgi_error_file_read_only(csp, rsp, file->filename);
3313 edit_free_file(file);
3317 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%i#l%u",
3318 (long) time(NULL), file->identifier, section_start_line_number);
3320 edit_free_file(file);
3322 return cgi_redirect(rsp, target);
3326 /*********************************************************************
3328 * Function : cgi_edit_actions_add_url
3330 * Description : CGI function that actually adds a URL pattern to
3334 * 1 : csp = Current client state (buffers, headers, etc...)
3335 * 2 : rsp = http_response data structure for output
3336 * 3 : parameters = map of cgi parameters
3339 * filename : Identifies the file to edit
3340 * ver : File's last-modified time
3341 * section : Line number of section to edit
3342 * newval : New pattern
3344 * Returns : JB_ERR_OK on success
3345 * JB_ERR_MEMORY on out-of-memory
3346 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3347 * specified or not valid.
3349 *********************************************************************/
3350 jb_err cgi_edit_actions_add_url(struct client_state *csp,
3351 struct http_response *rsp,
3352 const struct map *parameters)
3356 struct file_line * new_line;
3357 struct editable_file * file;
3358 struct file_line * cur_line;
3359 unsigned line_number;
3363 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3365 return cgi_error_disabled(csp, rsp);
3368 err = get_number_param(csp, parameters, "s", §ionid);
3375 return JB_ERR_CGI_PARAMS;
3378 err = get_url_spec_param(csp, parameters, "u", &new_pattern);
3384 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3387 /* No filename specified, can't read file, modified, or out of memory. */
3389 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3393 cur_line = file->lines;
3395 while ((cur_line != NULL) && (line_number < sectionid))
3397 cur_line = cur_line->next;
3401 if ((cur_line == NULL)
3402 || (cur_line->type != FILE_LINE_ACTION))
3404 /* Invalid "sectionid" parameter */
3406 edit_free_file(file);
3407 return JB_ERR_CGI_PARAMS;
3410 /* At this point, the section header is in cur_line - add after this. */
3412 /* Allocate the new line */
3413 new_line = zalloc_or_die(sizeof(*new_line));
3415 /* Fill in the data members of the new line */
3416 new_line->raw = NULL;
3417 new_line->prefix = NULL;
3418 new_line->unprocessed = new_pattern;
3419 new_line->type = FILE_LINE_URL;
3421 /* Link new_line into the list, after cur_line */
3422 new_line->next = cur_line->next;
3423 cur_line->next = new_line;
3425 /* Done making changes, now commit */
3427 err = edit_write_file(file);
3430 /* Error writing file */
3431 if (err == JB_ERR_FILE)
3433 /* Read-only file. */
3434 err = cgi_error_file_read_only(csp, rsp, file->filename);
3436 edit_free_file(file);
3440 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%i#l%u",
3441 (long) time(NULL), file->identifier, sectionid);
3443 edit_free_file(file);
3445 return cgi_redirect(rsp, target);
3449 /*********************************************************************
3451 * Function : cgi_edit_actions_remove_url
3453 * Description : CGI function that actually removes a URL pattern from
3457 * 1 : csp = Current client state (buffers, headers, etc...)
3458 * 2 : rsp = http_response data structure for output
3459 * 3 : parameters = map of cgi parameters
3462 * f : (filename) Identifies the file to edit
3463 * v : (version) File's last-modified time
3464 * p : (pattern) Line number of pattern to remove
3466 * Returns : JB_ERR_OK on success
3467 * JB_ERR_MEMORY on out-of-memory
3468 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3469 * specified or not valid.
3471 *********************************************************************/
3472 jb_err cgi_edit_actions_remove_url(struct client_state *csp,
3473 struct http_response *rsp,
3474 const struct map *parameters)
3477 struct editable_file * file;
3478 struct file_line * cur_line;
3479 struct file_line * prev_line;
3480 unsigned line_number;
3481 unsigned section_start_line_number = 0;
3485 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3487 return cgi_error_disabled(csp, rsp);
3490 err = get_number_param(csp, parameters, "p", &patternid);
3496 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3499 /* No filename specified, can't read file, modified, or out of memory. */
3500 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3505 cur_line = file->lines;
3507 while ((cur_line != NULL) && (line_number < patternid))
3509 if (cur_line->type == FILE_LINE_ACTION)
3511 section_start_line_number = line_number;
3513 prev_line = cur_line;
3514 cur_line = cur_line->next;
3518 if ( (cur_line == NULL)
3519 || (prev_line == NULL)
3520 || (cur_line->type != FILE_LINE_URL))
3522 /* Invalid "patternid" parameter */
3523 edit_free_file(file);
3524 return JB_ERR_CGI_PARAMS;
3527 /* At this point, the line to remove is in cur_line, and the previous
3528 * one is in prev_line
3531 /* Unlink cur_line */
3532 prev_line->next = cur_line->next;
3533 cur_line->next = NULL;
3536 edit_free_file_lines(cur_line);
3538 err = edit_write_file(file);
3541 /* Error writing file */
3542 if (err == JB_ERR_FILE)
3544 /* Read-only file. */
3545 err = cgi_error_file_read_only(csp, rsp, file->filename);
3547 edit_free_file(file);
3551 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%u#l%u",
3552 (long) time(NULL), file->identifier, section_start_line_number);
3554 edit_free_file(file);
3556 return cgi_redirect(rsp, target);
3560 /*********************************************************************
3562 * Function : cgi_edit_actions_section_remove
3564 * Description : CGI function that actually removes a whole section from
3565 * the actions file. The section must be empty first
3566 * (else JB_ERR_CGI_PARAMS).
3569 * 1 : csp = Current client state (buffers, headers, etc...)
3570 * 2 : rsp = http_response data structure for output
3571 * 3 : parameters = map of cgi parameters
3574 * f : (filename) Identifies the file to edit
3575 * v : (version) File's last-modified time
3576 * s : (section) Line number of section to edit
3578 * Returns : JB_ERR_OK on success
3579 * JB_ERR_MEMORY on out-of-memory
3580 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3581 * specified or not valid.
3583 *********************************************************************/
3584 jb_err cgi_edit_actions_section_remove(struct client_state *csp,
3585 struct http_response *rsp,
3586 const struct map *parameters)
3589 struct editable_file * file;
3590 struct file_line * cur_line;
3591 struct file_line * prev_line;
3592 unsigned line_number;
3596 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3598 return cgi_error_disabled(csp, rsp);
3601 err = get_number_param(csp, parameters, "s", §ionid);
3607 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3610 /* No filename specified, can't read file, modified, or out of memory. */
3611 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3615 cur_line = file->lines;
3618 while ((cur_line != NULL) && (line_number < sectionid))
3620 prev_line = cur_line;
3621 cur_line = cur_line->next;
3625 if ((cur_line == NULL)
3626 || (cur_line->type != FILE_LINE_ACTION))
3628 /* Invalid "sectionid" parameter */
3629 edit_free_file(file);
3630 return JB_ERR_CGI_PARAMS;
3633 if ((cur_line->next != NULL)
3634 && (cur_line->next->type == FILE_LINE_URL))
3636 /* Section not empty. */
3637 edit_free_file(file);
3638 return JB_ERR_CGI_PARAMS;
3641 /* At this point, the line to remove is in cur_line, and the previous
3642 * one is in prev_line
3645 /* Unlink cur_line */
3646 if (prev_line == NULL)
3648 /* Removing the first line from the file */
3649 file->lines = cur_line->next;
3653 prev_line->next = cur_line->next;
3655 cur_line->next = NULL;
3658 edit_free_file_lines(cur_line);
3660 err = edit_write_file(file);
3663 /* Error writing file */
3664 if (err == JB_ERR_FILE)
3666 /* Read-only file. */
3667 err = cgi_error_file_read_only(csp, rsp, file->filename);
3669 edit_free_file(file);
3673 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%u",
3674 (long) time(NULL), file->identifier);
3676 edit_free_file(file);
3678 return cgi_redirect(rsp, target);
3682 /*********************************************************************
3684 * Function : cgi_edit_actions_section_add
3686 * Description : CGI function that adds a new empty section to
3690 * 1 : csp = Current client state (buffers, headers, etc...)
3691 * 2 : rsp = http_response data structure for output
3692 * 3 : parameters = map of cgi parameters
3695 * f : (filename) Identifies the file to edit
3696 * v : (version) File's last-modified time
3697 * s : (section) Line number of section to add after, 0 for
3700 * Returns : JB_ERR_OK on success
3701 * JB_ERR_MEMORY on out-of-memory
3702 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3703 * specified or not valid.
3705 *********************************************************************/
3706 jb_err cgi_edit_actions_section_add(struct client_state *csp,
3707 struct http_response *rsp,
3708 const struct map *parameters)
3711 struct file_line * new_line;
3713 struct editable_file * file;
3714 struct file_line * cur_line;
3715 unsigned line_number;
3719 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3721 return cgi_error_disabled(csp, rsp);
3724 err = get_number_param(csp, parameters, "s", §ionid);
3730 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3733 /* No filename specified, can't read file, modified, or out of memory. */
3734 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3738 cur_line = file->lines;
3740 if (sectionid <= 1U)
3742 /* Add to start of file */
3743 if (cur_line != NULL && cur_line->type != FILE_LINE_ACTION)
3745 /* There's something in the file, find the line before the first
3748 while ((cur_line->next != NULL)
3749 && (cur_line->next->type != FILE_LINE_ACTION))
3751 cur_line = cur_line->next;
3757 /* File starts with action line, so insert at top */
3763 /* Add after stated section. */
3764 while ((cur_line != NULL) && (line_number < sectionid))
3766 cur_line = cur_line->next;
3770 if ((cur_line == NULL)
3771 || (cur_line->type != FILE_LINE_ACTION))
3773 /* Invalid "sectionid" parameter */
3774 edit_free_file(file);
3775 return JB_ERR_CGI_PARAMS;
3778 /* Skip through the section to find the last line in it. */
3779 while ((cur_line->next != NULL)
3780 && (cur_line->next->type != FILE_LINE_ACTION))
3782 cur_line = cur_line->next;
3787 /* At this point, the last line in the previous section is in cur_line
3788 * - add after this. (Or if we need to add as the first line, cur_line
3792 new_text = strdup("{}");
3793 if (NULL == new_text)
3795 edit_free_file(file);
3796 return JB_ERR_MEMORY;
3799 /* Allocate the new line */
3800 new_line = zalloc_or_die(sizeof(*new_line));
3802 /* Fill in the data members of the new line */
3803 new_line->raw = NULL;
3804 new_line->prefix = NULL;
3805 new_line->unprocessed = new_text;
3806 new_line->type = FILE_LINE_ACTION;
3808 if (cur_line != NULL)
3810 /* Link new_line into the list, after cur_line */
3811 new_line->next = cur_line->next;
3812 cur_line->next = new_line;
3816 /* Link new_line into the list, as first line */
3817 new_line->next = file->lines;
3818 file->lines = new_line;
3821 /* Done making changes, now commit */
3823 err = edit_write_file(file);
3826 /* Error writing file */
3827 if (err == JB_ERR_FILE)
3829 /* Read-only file. */
3830 err = cgi_error_file_read_only(csp, rsp, file->filename);
3832 edit_free_file(file);
3836 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%u",
3837 (long) time(NULL), file->identifier);
3839 edit_free_file(file);
3841 return cgi_redirect(rsp, target);
3845 /*********************************************************************
3847 * Function : cgi_edit_actions_section_swap
3849 * Description : CGI function that swaps the order of two sections
3850 * in the actions file. Note that this CGI can actually
3851 * swap any two arbitrary sections, but the GUI interface
3852 * currently only allows consecutive sections to be
3856 * 1 : csp = Current client state (buffers, headers, etc...)
3857 * 2 : rsp = http_response data structure for output
3858 * 3 : parameters = map of cgi parameters
3861 * f : (filename) Identifies the file to edit
3862 * v : (version) File's last-modified time
3863 * s1 : (section1) Line number of first section to swap
3864 * s2 : (section2) Line number of second section to swap
3866 * Returns : JB_ERR_OK on success
3867 * JB_ERR_MEMORY on out-of-memory
3868 * JB_ERR_CGI_PARAMS if the CGI parameters are not
3869 * specified or not valid.
3871 *********************************************************************/
3872 jb_err cgi_edit_actions_section_swap(struct client_state *csp,
3873 struct http_response *rsp,
3874 const struct map *parameters)
3878 struct editable_file * file;
3879 struct file_line * cur_line;
3880 struct file_line * prev_line;
3881 struct file_line * line_before_section1;
3882 struct file_line * line_start_section1;
3883 struct file_line * line_end_section1;
3884 struct file_line * line_after_section1;
3885 struct file_line * line_before_section2;
3886 struct file_line * line_start_section2;
3887 struct file_line * line_end_section2;
3888 struct file_line * line_after_section2;
3889 unsigned line_number;
3893 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_EDIT_ACTIONS))
3895 return cgi_error_disabled(csp, rsp);
3898 err = get_number_param(csp, parameters, "s1", §ion1);
3899 if (!err) err = get_number_param(csp, parameters, "s2", §ion2);
3905 if (section1 > section2)
3907 unsigned temp = section2;
3908 section2 = section1;
3912 err = edit_read_actions_file(csp, rsp, parameters, 1, &file);
3915 /* No filename specified, can't read file, modified, or out of memory. */
3916 return (err == JB_ERR_FILE ? JB_ERR_OK : err);
3919 /* Start at the beginning... */
3921 cur_line = file->lines;
3924 /* ... find section1 ... */
3925 while ((cur_line != NULL) && (line_number < section1))
3927 prev_line = cur_line;
3928 cur_line = cur_line->next;
3932 if ((cur_line == NULL)
3933 || (cur_line->type != FILE_LINE_ACTION))
3935 /* Invalid "section1" parameter */
3936 edit_free_file(file);
3937 return JB_ERR_CGI_PARAMS;
3940 /* If no-op, we've validated params and can skip the rest. */
3941 if (section1 != section2)
3943 /* ... find the end of section1 ... */
3944 line_before_section1 = prev_line;
3945 line_start_section1 = cur_line;
3948 prev_line = cur_line;
3949 cur_line = cur_line->next;
3952 while ((cur_line != NULL) && (cur_line->type == FILE_LINE_URL));
3953 line_end_section1 = prev_line;
3954 line_after_section1 = cur_line;
3956 /* ... find section2 ... */
3957 while ((cur_line != NULL) && (line_number < section2))
3959 prev_line = cur_line;
3960 cur_line = cur_line->next;
3964 if ((cur_line == NULL)
3965 || (cur_line->type != FILE_LINE_ACTION))
3967 /* Invalid "section2" parameter */
3968 edit_free_file(file);
3969 return JB_ERR_CGI_PARAMS;
3972 /* ... find the end of section2 ... */
3973 line_before_section2 = prev_line;
3974 line_start_section2 = cur_line;
3977 prev_line = cur_line;
3978 cur_line = cur_line->next;
3981 while ((cur_line != NULL) && (cur_line->type == FILE_LINE_URL));
3982 line_end_section2 = prev_line;
3983 line_after_section2 = cur_line;
3985 /* Now have all the pointers we need. Do the swap. */
3987 /* Change the pointer to section1 to point to section2 instead */
3988 if (line_before_section1 == NULL)
3990 file->lines = line_start_section2;
3994 line_before_section1->next = line_start_section2;
3997 if (line_before_section2 == line_end_section1)
3999 /* Consecutive sections */
4000 line_end_section2->next = line_start_section1;
4004 line_end_section2->next = line_after_section1;
4005 line_before_section2->next = line_start_section1;
4008 /* Set the pointer from the end of section1 to the rest of the file */
4009 line_end_section1->next = line_after_section2;
4011 err = edit_write_file(file);
4014 /* Error writing file */
4015 if (err == JB_ERR_FILE)
4017 /* Read-only file. */
4018 err = cgi_error_file_read_only(csp, rsp, file->filename);
4020 edit_free_file(file);
4023 } /* END if (section1 != section2) */
4025 snprintf(target, sizeof(target), CGI_PREFIX "edit-actions-list?foo=%lu&f=%u",
4026 (long) time(NULL), file->identifier);
4028 edit_free_file(file);
4030 return cgi_redirect(rsp, target);
4034 /*********************************************************************
4036 * Function : javascriptify
4038 * Description : Converts a string into a form JavaScript will like.
4040 * Netscape 4's JavaScript sucks - it doesn't use
4041 * "id" parameters, so you have to set the "name"
4042 * used to submit a form element to something JavaScript
4043 * will like. (Or access the elements by index in an
4044 * array. That array contains >60 elements and will
4045 * be changed whenever we add a new action to the
4046 * editor, so I'm NOT going to use indexes that have
4047 * to be figured out by hand.)
4049 * Currently the only thing we have to worry about
4050 * is "-" ==> "_" conversion.
4052 * This is a length-preserving operation so it is
4053 * carried out in-place, no memory is allocated
4057 * 1 : identifier = String to make JavaScript-friendly.
4061 *********************************************************************/
4062 static void javascriptify(char * identifier)
4064 char * p = identifier;
4065 while (NULL != (p = strchr(p, '-')))
4072 /*********************************************************************
4074 * Function : actions_to_radio
4076 * Description : Converts a actionsfile entry into settings for
4077 * radio buttons and edit boxes on a HTML form.
4080 * 1 : exports = List of substitutions to add to.
4081 * 2 : action = Action to read
4083 * Returns : JB_ERR_OK on success
4084 * JB_ERR_MEMORY on out-of-memory
4086 *********************************************************************/
4087 static jb_err actions_to_radio(struct map * exports,
4088 const struct action_spec *action)
4099 mask = action->mask;
4102 /* sanity - prevents "-feature +feature" */
4106 #define DEFINE_ACTION_BOOL(name, bit) \
4107 if (!(mask & bit)) \
4109 current_mode = 'n'; \
4111 else if (add & bit) \
4113 current_mode = 'y'; \
4117 current_mode = 'x'; \
4119 if (map_radio(exports, name, "ynx", current_mode)) \
4121 return JB_ERR_MEMORY; \
4124 #define DEFINE_ACTION_STRING(name, bit, index) \
4125 DEFINE_ACTION_BOOL(name, bit); \
4128 #define DEFINE_CGI_PARAM_RADIO(name, bit, index, value, is_default) \
4131 checked = !strcmp(action->string[index], value); \
4135 checked = is_default; \
4137 mapped_param |= checked; \
4138 if (map(exports, name "-param-" value, 1, (checked ? "checked" : ""), 1)) \
4140 return JB_ERR_MEMORY; \
4143 #define DEFINE_CGI_PARAM_CUSTOM(name, bit, index, default_val) \
4144 if (map(exports, name "-param-custom", 1, \
4145 ((!mapped_param) ? "checked" : ""), 1)) \
4147 return JB_ERR_MEMORY; \
4149 if (map(exports, name "-param", 1, \
4150 (((add & bit) && !mapped_param) ? \
4151 action->string[index] : default_val), 1)) \
4153 return JB_ERR_MEMORY; \
4156 #define DEFINE_CGI_PARAM_NO_RADIO(name, bit, index, default_val) \
4157 if (map(exports, name "-param", 1, \
4158 ((add & bit) ? action->string[index] : default_val), 1)) \
4160 return JB_ERR_MEMORY; \
4163 #define DEFINE_ACTION_MULTI(name, index) \
4164 if (action->multi_add[index]->first) \
4166 current_mode = 'y'; \
4168 else if (action->multi_remove_all[index]) \
4170 current_mode = 'n'; \
4172 else if (action->multi_remove[index]->first) \
4174 current_mode = 'y'; \
4178 current_mode = 'x'; \
4180 if (map_radio(exports, name, "ynx", current_mode)) \
4182 return JB_ERR_MEMORY; \
4185 #define DEFINE_ACTION_ALIAS 0 /* No aliases for output */
4187 #include "actionlist.h"
4189 #undef DEFINE_ACTION_MULTI
4190 #undef DEFINE_ACTION_STRING
4191 #undef DEFINE_ACTION_BOOL
4192 #undef DEFINE_ACTION_ALIAS
4193 #undef DEFINE_CGI_PARAM_CUSTOM
4194 #undef DEFINE_CGI_PARAM_RADIO
4195 #undef DEFINE_CGI_PARAM_NO_RADIO
4201 /*********************************************************************
4203 * Function : actions_from_radio
4205 * Description : Converts a map of parameters passed to a CGI function
4206 * into an actionsfile entry.
4209 * 1 : parameters = parameters to the CGI call
4210 * 2 : action = Action to change. Must be valid before
4211 * the call, actions not specified will be
4214 * Returns : JB_ERR_OK on success
4215 * JB_ERR_MEMORY on out-of-memory
4217 *********************************************************************/
4218 static jb_err actions_from_radio(const struct map * parameters,
4219 struct action_spec *action)
4224 const char * js_name;
4225 jb_err err = JB_ERR_OK;
4230 /* Statics are generally a potential race condition,
4231 * but in this case we're safe and don't need semaphores.
4232 * Be careful if you modify this function.
4234 * The js_name_arr's are never free()d, but this is no
4235 * problem, since they will only be created once and
4236 * used by all threads thereafter. -oes
4239 #define JAVASCRIPTIFY(dest_var, string) \
4241 static int first_time = 1; \
4242 static char *js_name_arr; \
4245 js_name_arr = strdup(string); \
4246 javascriptify(js_name_arr); \
4248 dest_var = js_name_arr; \
4252 #define DEFINE_ACTION_BOOL(name, bit) \
4253 JAVASCRIPTIFY(js_name, name); \
4254 ch = get_char_param(parameters, js_name); \
4257 action->add |= bit; \
4258 action->mask |= bit; \
4260 else if (ch == 'N') \
4262 action->add &= ~bit; \
4263 action->mask &= ~bit; \
4265 else if (ch == 'X') \
4267 action->add &= ~bit; \
4268 action->mask |= bit; \
4271 #define DEFINE_ACTION_STRING(name, bit, index) \
4272 JAVASCRIPTIFY(js_name, name); \
4273 ch = get_char_param(parameters, js_name); \
4277 JAVASCRIPTIFY(js_name, name "-mode"); \
4278 if (!err) err = get_string_param(parameters, js_name, ¶m); \
4279 if ((param == NULL) || (0 == strcmp(param, "CUSTOM"))) \
4281 JAVASCRIPTIFY(js_name, name "-param"); \
4282 if (!err) err = get_string_param(parameters, js_name, ¶m); \
4284 if (param != NULL) \
4286 if (NULL == (param_dup = strdup(param))) \
4288 return JB_ERR_MEMORY; \
4290 freez(action->string[index]); \
4291 action->add |= bit; \
4292 action->mask |= bit; \
4293 action->string[index] = param_dup; \
4296 else if (ch == 'N') \
4298 if (action->add & bit) \
4300 freez(action->string[index]); \
4302 action->add &= ~bit; \
4303 action->mask &= ~bit; \
4305 else if (ch == 'X') \
4307 if (action->add & bit) \
4309 freez(action->string[index]); \
4311 action->add &= ~bit; \
4312 action->mask |= bit; \
4315 #define DEFINE_ACTION_MULTI(name, index) \
4316 JAVASCRIPTIFY(js_name, name); \
4317 ch = get_char_param(parameters, js_name); \
4322 else if (ch == 'N') \
4324 list_remove_all(action->multi_add[index]); \
4325 list_remove_all(action->multi_remove[index]); \
4326 action->multi_remove_all[index] = 1; \
4328 else if (ch == 'X') \
4330 list_remove_all(action->multi_add[index]); \
4331 list_remove_all(action->multi_remove[index]); \
4332 action->multi_remove_all[index] = 0; \
4335 #define DEFINE_ACTION_ALIAS 0 /* No aliases for URL parsing */
4337 #include "actionlist.h"
4339 #undef DEFINE_ACTION_MULTI
4340 #undef DEFINE_ACTION_STRING
4341 #undef DEFINE_ACTION_BOOL
4342 #undef DEFINE_ACTION_ALIAS
4343 #undef JAVASCRIPTIFY
4347 #endif /* def FEATURE_CGI_EDIT_ACTIONS */
4350 #ifdef FEATURE_TOGGLE
4351 /*********************************************************************
4353 * Function : cgi_toggle
4355 * Description : CGI function that adds a new empty section to
4359 * 1 : csp = Current client state (buffers, headers, etc...)
4360 * 2 : rsp = http_response data structure for output
4361 * 3 : parameters = map of cgi parameters
4364 * set : If present, how to change toggle setting:
4365 * "enable", "disable", "toggle", or none (default).
4366 * mini : If present, use mini reply template.
4368 * Returns : JB_ERR_OK on success
4369 * JB_ERR_MEMORY on out-of-memory
4371 *********************************************************************/
4372 jb_err cgi_toggle(struct client_state *csp,
4373 struct http_response *rsp,
4374 const struct map *parameters)
4376 struct map *exports;
4378 const char *template_name;
4384 if (0 == (csp->config->feature_flags & RUNTIME_FEATURE_CGI_TOGGLE))
4386 return cgi_error_disabled(csp, rsp);
4389 mode = get_char_param(parameters, "set");
4394 global_toggle_state = 1;
4396 else if (mode == 'D')
4399 global_toggle_state = 0;
4401 else if (mode == 'T')
4404 global_toggle_state = !global_toggle_state;
4407 log_error(LOG_LEVEL_INFO, "Now toggled %s.", global_toggle_state ? "ON" : "OFF");
4409 if (NULL == (exports = default_exports(csp, "toggle")))
4411 return JB_ERR_MEMORY;
4414 template_name = (get_char_param(parameters, "mini")
4418 return template_fill_for_cgi(csp, template_name, exports, rsp);
4420 #endif /* def FEATURE_TOGGLE */