From f199398dc100edcfa81bcd1b891c644de1dd794d Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 21 May 2007 10:54:46 +0000 Subject: [PATCH] - Use strlcpy() instead of strcpy(). - Stop treating actions files special. Expect a complete file name (with or without path) like it's done for the rest of the files. Closes FR#588084. - Don't rerun sed() in cgi_show_request(). --- cgisimple.c | 21 +++++++++++++-------- templates/edit-actions-list | 7 ++++++- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/cgisimple.c b/cgisimple.c index 3e322954..71b11739 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -1,4 +1,4 @@ -const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.54 2007/04/09 18:11:35 fabiankeil Exp $"; +const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.55 2007/04/13 13:36:46 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgisimple.c,v $ @@ -36,6 +36,11 @@ const char cgisimple_rcs[] = "$Id: cgisimple.c,v 1.54 2007/04/09 18:11:35 fabian * * Revisions : * $Log: cgisimple.c,v $ + * Revision 1.55 2007/04/13 13:36:46 fabiankeil + * Reference action files in CGI URLs by id instead + * of using the first part of the file name. + * Fixes BR 1694250 and BR 1590556. + * * Revision 1.54 2007/04/09 18:11:35 fabiankeil * Don't mistake VC++'s _snprintf() for a snprintf() replacement. * @@ -544,8 +549,7 @@ jb_err cgi_show_request(struct client_state *csp, return JB_ERR_MEMORY; } - if (map(exports, "processed-request", 1, html_encode_and_free_original( - sed(client_patterns, add_client_headers, csp)), 0)) + if (map(exports, "processed-request", 1, html_encode(list_to_text(csp->headers)), 0)) { free_map(exports); return JB_ERR_MEMORY; @@ -1382,15 +1386,16 @@ jb_err cgi_show_url_info(struct client_state *csp, /* * Unknown prefix - assume http:// */ - char * url_param_prefixed = malloc(7 + 1 + strlen(url_param)); + const size_t url_param_prefixed_size = 7 + 1 + strlen(url_param); + char * url_param_prefixed = malloc(url_param_prefixed_size); if (NULL == url_param_prefixed) { free(url_param); free_map(exports); return JB_ERR_MEMORY; } - strcpy(url_param_prefixed, "http://"); - strcpy(url_param_prefixed + 7, url_param); + strlcpy(url_param_prefixed, "http://", url_param_prefixed_size); + strlcat(url_param_prefixed, url_param, url_param_prefixed_size); free(url_param); url_param = url_param_prefixed; } @@ -1499,7 +1504,7 @@ jb_err cgi_show_url_info(struct client_state *csp, for (i = 0; i < MAX_AF_FILES; i++) { if (NULL == csp->config->actions_file_short[i] - || !strcmp(csp->config->actions_file_short[i], "standard")) continue; + || !strcmp(csp->config->actions_file_short[i], "standard.action")) continue; b = NULL; hits = 1; @@ -1510,7 +1515,7 @@ jb_err cgi_show_url_info(struct client_state *csp, /* FIXME: Hardcoded HTML! */ string_append(&matches, "In file: "); string_join (&matches, html_encode(csp->config->actions_file_short[i])); - snprintf(buf, 150, ".action ", i); + snprintf(buf, sizeof(buf), " ", i); string_append(&matches, buf); string_append(&matches, "View"); #ifdef FEATURE_CGI_EDIT_ACTIONS diff --git a/templates/edit-actions-list b/templates/edit-actions-list index 616d6e68..1a1b4cc2 100644 --- a/templates/edit-actions-list +++ b/templates/edit-actions-list @@ -31,6 +31,11 @@ # # Revisions : # $Log: edit-actions-list,v $ +# Revision 1.33 2007/04/08 13:21:06 fabiankeil +# Reference action files in CGI URLs by id instead +# of using the first part of the file name. +# Fixes BR 1694250 and BR 1590556. +# # Revision 1.32 2007/01/23 16:03:16 fabiankeil # - Add favicon links. # - Remove useless W3C validator links. @@ -197,7 +202,7 @@ - Privoxy: Edit actions file @f@.action + Privoxy: Edit actions file @actions-file@