]> granicus.if.org Git - apache/commitdiff
Log CGI/FCGI Last-Modified header value changes.
authorLuca Toscano <elukey@apache.org>
Thu, 30 Jun 2016 07:00:31 +0000 (07:00 +0000)
committerLuca Toscano <elukey@apache.org>
Thu, 30 Jun 2016 07:00:31 +0000 (07:00 +0000)
The Last-Modified header coming from a backend FCGI/CGI script is inspected
by util_script.c to enforce RFC2616 (https://tools.ietf.org/html/rfc2616#section-14.29).
The Last-Modified header also needs to be compliant with RFC882/1123 as stated in
https://tools.ietf.org/html/rfc2616#section-3.3.1, and one important assumption that
httpd makes (correctly, as the RFC suggests) is to assume the GMT timezone. If the datestr
returned by the FCGI/CGI script is set with a different timezone, then the value might be considered
"in the future" and replaced with GMT now() as calculated by httpd. Adding a trace log might
help sysadmins while debugging these kind of issues. This is a follow up of r1748379.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1750747 13f79535-47bb-0310-9956-ffa450edef68

server/util_script.c

index aa24518eaebd57b849f3378e6c267f72bb3060a6..5a70159a14a3c6174387ed2fd7c6ef1e051b8262 100644 (file)
@@ -669,6 +669,25 @@ AP_DECLARE(int) ap_scan_script_header_err_core_ex(request_rec *r, char *buffer,
             if (last_modified_date != APR_DATE_BAD) {
                 ap_update_mtime(r, last_modified_date);
                 ap_set_last_modified(r);
+                if (APLOGrtrace1(r)) {
+                    const char* datestr = apr_table_get(r->headers_out, 
+                                                        "Last-Modified");
+                    apr_time_t timestamp = apr_date_parse_http(datestr);
+                    if (timestamp < last_modified_date) {
+                        char *last_modified_datestr = apr_palloc(r->pool,
+                                                                 APR_RFC822_DATE_LEN);
+                        apr_rfc822_date(last_modified_datestr, last_modified_date);
+                        ap_log_rerror(SCRIPT_LOG_MARK, APLOG_TRACE1, 0, r,
+                                 "The Last-Modified header value '%s' "
+                                 "(parsed as RFC882/RFC1123 datetime, "
+                                 "that assumes the GMT timezone) "
+                                 "has been replaced with: '%s'. "
+                                 "An origin server with a clock must not send "
+                                 "a Last-Modified date that is later than the "
+                                 "server's time of message origination.", 
+                                 last_modified_datestr, datestr);
+                    }
+                }
             }
             else {
                 if (APLOGrtrace1(r))