X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=filters.c;h=c9448fd2290204135474c513ec9bcc9fa7e0ff83;hp=0192314c63e1e823ee72fb06246744d18d929f03;hb=a2aecee087f670ef38547fcc6ae9379188bbb1fa;hpb=96163abe99e1f229f4f0fcc2cd4bd378368261fc diff --git a/filters.c b/filters.c index 0192314c..c9448fd2 100644 --- a/filters.c +++ b/filters.c @@ -1,4 +1,4 @@ -const char filters_rcs[] = "$Id: filters.c,v 1.19 2001/06/29 21:45:41 oes Exp $"; +const char filters_rcs[] = "$Id: filters.c,v 1.25 2001/07/26 10:09:46 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/filters.c,v $ @@ -8,7 +8,7 @@ const char filters_rcs[] = "$Id: filters.c,v 1.19 2001/06/29 21:45:41 oes Exp $" * `acl_addr', `add_stats', `block_acl', `block_imageurl', * `block_url', `url_actions', `domaincmp', `dsplit', * `filter_popups', `forward_url', 'redirect_url', - * `ij_untrusted_url', `intercept_url', `re_process_buffer', + * `ij_untrusted_url', `intercept_url', `pcrs_filter_respose', * `show_proxy_args', 'ijb_send_banner', and `trust_url' * * Copyright : Written by and Copyright (C) 2001 the SourceForge @@ -38,6 +38,31 @@ const char filters_rcs[] = "$Id: filters.c,v 1.19 2001/06/29 21:45:41 oes Exp $" * * Revisions : * $Log: filters.c,v $ + * Revision 1.25 2001/07/26 10:09:46 oes + * Made browser detection a little less naive + * + * Revision 1.24 2001/07/25 17:22:51 oes + * Added workaround for Netscape bug that prevents display of page when loading a component fails. + * + * Revision 1.23 2001/07/23 13:40:12 oes + * Fixed bug that caused document body to be dropped when pcrs joblist was empty. + * + * Revision 1.22 2001/07/18 12:29:34 oes + * - Made gif_deanimate_response respect + * csp->action->string[ACTION_STRING_DEANIMATE] + * - Logging cosmetics + * + * Revision 1.21 2001/07/13 13:59:53 oes + * - Introduced gif_deanimate_response which shares the + * generic content modification interface of pcrs_filter_response + * and acts as a wrapper to deanimate.c:gif_deanimate() + * - Renamed re_process_buffer to pcrs_filter_response + * - pcrs_filter_response now returns NULL on failiure + * - Removed all #ifdef PCRS + * + * Revision 1.20 2001/07/01 17:01:04 oes + * Added comments and missing return statement in is_untrusted_url() + * * Revision 1.19 2001/06/29 21:45:41 oes * Indentation, CRLF->LF, Tab-> Space * @@ -246,6 +271,7 @@ const char filters_rcs[] = "$Id: filters.c,v 1.19 2001/06/29 21:45:41 oes Exp $" #include "actions.h" #include "cgi.h" #include "list.h" +#include "deanimate.h" #ifdef _WIN32 #include "win32.h" @@ -263,7 +289,7 @@ const char filters_h_rcs[] = FILTERS_H_VERSION; #define ijb_isdigit(__X) isdigit((int)(unsigned char)(__X)) -#ifdef ACL_FILES +#ifdef FEATURE_ACL /********************************************************************* * * Function : block_acl @@ -397,7 +423,7 @@ int acl_addr(char *aspec, struct access_control_addr *aca) return(0); } -#endif /* def ACL_FILES */ +#endif /* def FEATURE_ACL */ /********************************************************************* @@ -414,7 +440,9 @@ int acl_addr(char *aspec, struct access_control_addr *aca) *********************************************************************/ struct http_response *block_url(struct client_state *csp) { +#ifdef FEATURE_IMAGE_BLOCKING char *p; +#endif /* def FEATURE_IMAGE_BLOCKING */ struct http_response *rsp; struct map *exports = NULL; @@ -438,7 +466,7 @@ struct http_response *block_url(struct client_state *csp) * If it's an image-url, send back an image or redirect * as specified by the relevant +image action */ -#ifdef IMAGE_BLOCKING +#ifdef FEATURE_IMAGE_BLOCKING if (((csp->action->flags & ACTION_IMAGE_BLOCKER) != 0) && is_imageurl(csp)) { @@ -467,7 +495,7 @@ struct http_response *block_url(struct client_state *csp) } } else -#endif /* def IMAGE_BLOCKING */ +#endif /* def FEATURE_IMAGE_BLOCKING */ /* * Else, generate an HTML "blocked" message: @@ -475,11 +503,11 @@ struct http_response *block_url(struct client_state *csp) { exports = default_exports(csp, NULL); -#ifdef FORCE_LOAD +#ifdef FEATURE_FORCE_LOAD exports = map(exports, "force-prefix", 1, FORCE_PREFIX, 1); -#else +#else /* ifndef FEATURE_FORCE_LOAD */ exports = map_block_killer(exports, "force-support"); -#endif /* ndef FORCE_LOAD */ +#endif /* ndef FEATURE_FORCE_LOAD */ exports = map(exports, "hostport", 1, csp->http->hostport, 1); exports = map(exports, "hostport-html", 1, html_encode(csp->http->hostport), 0); @@ -489,7 +517,24 @@ struct http_response *block_url(struct client_state *csp) rsp->body = fill_template(csp, "blocked", exports); free_map(exports); - rsp->status = strdup("403 Request for blocked URL"); + /* + * Workaround for stupid Netscape bug which prevents + * pages from being displayed if loading a referenced + * JavaScript or style sheet fails. So make it appear + * as if it succeeded. + */ + if (csp->http->user_agent + && !strncmpic(csp->http->user_agent, "mozilla", 7) + && !strstr(csp->http->user_agent, "compatible") + && !strstr(csp->http->user_agent, "Opera")) + { + rsp->status = strdup("200 Request for blocked URL"); + } + else + { + rsp->status = strdup("404 Request for blocked URL"); + } + } return(finish_http_response(rsp)); @@ -497,7 +542,7 @@ struct http_response *block_url(struct client_state *csp) } -#ifdef TRUST_FILES +#ifdef FEATURE_TRUST /********************************************************************* * * Function : trust_url FIXME: I should be called distrust_url @@ -587,11 +632,11 @@ struct http_response *trust_url(struct client_state *csp) /* * Export the force prefix or the force conditional block killer */ -#ifdef FORCE_LOAD +#ifdef FEATURE_FORCE_LOAD exports = map(exports, "force-prefix", 1, FORCE_PREFIX, 1); -#else +#else /* ifndef FEATURE_FORCE_LOAD */ exports = map_block_killer(exports, "force-support"); -#endif /* ndef FORCE_LOAD */ +#endif /* ndef FEATURE_FORCE_LOAD */ /* * Build the response @@ -602,10 +647,10 @@ struct http_response *trust_url(struct client_state *csp) return(finish_http_response(rsp)); } -#endif /* def TRUST_FILES */ +#endif /* def FEATURE_TRUST */ -#ifdef FAST_REDIRECTS +#ifdef FEATURE_FAST_REDIRECTS /********************************************************************* * * Function : redirect_url @@ -658,18 +703,18 @@ struct http_response *redirect_url(struct client_state *csp) } } -#endif /* def FAST_REDIRECTS */ +#endif /* def FEATURE_FAST_REDIRECTS */ -#ifdef IMAGE_BLOCKING +#ifdef FEATURE_IMAGE_BLOCKING /********************************************************************* * * Function : is_imageurl * * Description : Given a URL, decide whether it is an image or not, * using either the info from a previous +image action - * or, #ifdef DETECT_MSIE_IMAGES, the info from the - * browser's accept header. + * or, #ifdef FEATURE_IMAGE_DETECT_MSIE, the info from + * the browser's accept header. * * Parameters : * 1 : csp = Current client state (buffers, headers, etc...) @@ -680,7 +725,7 @@ struct http_response *redirect_url(struct client_state *csp) *********************************************************************/ int is_imageurl(struct client_state *csp) { -#ifdef DETECT_MSIE_IMAGES +#ifdef FEATURE_IMAGE_DETECT_MSIE if ((csp->accept_types & (ACCEPT_TYPE_IS_MSIE|ACCEPT_TYPE_MSIE_IMAGE|ACCEPT_TYPE_MSIE_HTML)) == (ACCEPT_TYPE_IS_MSIE|ACCEPT_TYPE_MSIE_IMAGE)) @@ -693,15 +738,15 @@ int is_imageurl(struct client_state *csp) { return 0; } -#endif +#endif /* def FEATURE_IMAGE_DETECT_MSIE */ return ((csp->action->flags & ACTION_IMAGE) != 0); } -#endif /* def IMAGE_BLOCKING */ +#endif /* def FEATURE_IMAGE_BLOCKING */ -#ifdef TRUST_FILES +#ifdef FEATURE_COOKIE_JAR /********************************************************************* * * Function : is_untrusted_url @@ -863,13 +908,12 @@ int is_untrusted_url(struct client_state *csp) } return(1); } -#endif /* def TRUST_FILES */ +#endif /* def FEATURE_COOKIE_JAR */ -#ifdef PCRS /********************************************************************* * - * Function : re_process_buffer + * Function : pcrs_filter_response * * Description : Apply all the pcrs jobs from the joblist (re_filterfile) * to the text buffer that's been accumulated in @@ -880,10 +924,10 @@ int is_untrusted_url(struct client_state *csp) * 1 : csp = Current client state (buffers, headers, etc...) * * Returns : a pointer to the (newly allocated) modified buffer. - * or an empty string in case something went wrong + * or NULL in case something went wrong * *********************************************************************/ -char *re_process_buffer(struct client_state *csp) +char *pcrs_filter_response(struct client_state *csp) { int hits=0; int size = csp->iob->eod - csp->iob->cur; @@ -897,13 +941,19 @@ char *re_process_buffer(struct client_state *csp) /* Sanity first ;-) */ if (size <= 0) { - return(strdup("")); + return(NULL); } if ( ( NULL == (fl = csp->rlist) ) || ( NULL == (b = fl->f) ) ) { log_error(LOG_LEVEL_ERROR, "Unable to get current state of regexp filtering."); - return(strdup("")); + return(NULL); + } + + if ( NULL == b->joblist ) + { + log_error(LOG_LEVEL_RE_FILTER, "Empty joblist. Nothing to do."); + return(NULL); } log_error(LOG_LEVEL_RE_FILTER, "re_filtering %s%s (size %d) ...", @@ -926,7 +976,57 @@ char *re_process_buffer(struct client_state *csp) return(new); } -#endif /* def PCRS */ + + +/********************************************************************* + * + * Function : gif_deanimate_response + * + * Description : Deanimate the GIF image that has been accumulated in + * csp->iob->buf and set csp->content_length to the modified + * size. + * + * Parameters : + * 1 : csp = Current client state (buffers, headers, etc...) + * + * Returns : a pointer to the (newly allocated) modified buffer. + * or NULL in case something went wrong. + * + *********************************************************************/ +char *gif_deanimate_response(struct client_state *csp) +{ + struct binbuffer *in, *out; + char *p; + int size = csp->iob->eod - csp->iob->cur; + + if ( (NULL == (in = (struct binbuffer *)zalloc(sizeof *in ))) + || (NULL == (out = (struct binbuffer *)zalloc(sizeof *out))) ) + { + log_error(LOG_LEVEL_DEANIMATE, "failed! (no mem)"); + return NULL; + } + + in->buffer = csp->iob->cur; + in->size = size; + + if (gif_deanimate(in, out, strncmp("last", csp->action->string[ACTION_STRING_DEANIMATE], 4))) + { + log_error(LOG_LEVEL_DEANIMATE, "failed! (gif parsing)"); + free(in); + buf_free(out); + return(NULL); + } + else + { + log_error(LOG_LEVEL_DEANIMATE, "Success! GIF shrunk from %d bytes to %d.", size, out->offset); + csp->content_length = out->offset; + p = out->buffer; + free(in); + free(out); + return(p); + } + +} /*********************************************************************