altarch-user / rpms / httpd

Forked from rpms/httpd 2 years ago
Clone

Blame SOURCES/httpd-2.4.4-cachehardmax.patch

008793
diff --git a/modules/cache/cache_util.h b/modules/cache/cache_util.h
008793
index eec38f3..1a2d5ee 100644
008793
--- a/modules/cache/cache_util.h
008793
+++ b/modules/cache/cache_util.h
008793
@@ -194,6 +194,9 @@ typedef struct {
008793
     unsigned int store_nostore_set:1;
008793
     unsigned int enable_set:1;
008793
     unsigned int disable_set:1;
008793
+    /* treat maxex as hard limit */
008793
+    unsigned int hardmaxex:1;
008793
+    unsigned int hardmaxex_set:1;
008793
 } cache_dir_conf;
008793
 
008793
 /* A linked-list of authn providers. */
008793
diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c
008793
index 4f2d3e0..30c88f4 100644
008793
--- a/modules/cache/mod_cache.c
008793
+++ b/modules/cache/mod_cache.c
008793
@@ -1299,6 +1299,11 @@ static apr_status_t cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in)
008793
             exp = date + dconf->defex;
008793
         }
008793
     }
008793
+    /* else, forcibly cap the expiry date if required */
008793
+    else if (dconf->hardmaxex && (date + dconf->maxex) < exp) {
008793
+        exp = date + dconf->maxex;
008793
+    }        
008793
+
008793
     info->expire = exp;
008793
 
008793
     /* We found a stale entry which wasn't really stale. */
008793
@@ -1717,7 +1722,9 @@ static void *create_dir_config(apr_pool_t *p, char *dummy)
008793
 
008793
     /* array of providers for this URL space */
008793
     dconf->cacheenable = apr_array_make(p, 10, sizeof(struct cache_enable));
008793
-
008793
+    /* flag; treat maxex as hard limit */
008793
+    dconf->hardmaxex = 0;
008793
+    dconf->hardmaxex_set = 0;
008793
     return dconf;
008793
 }
008793
 
008793
@@ -1767,7 +1774,10 @@ static void *merge_dir_config(apr_pool_t *p, void *basev, void *addv) {
008793
     new->enable_set = add->enable_set || base->enable_set;
008793
     new->disable = (add->disable_set == 0) ? base->disable : add->disable;
008793
     new->disable_set = add->disable_set || base->disable_set;
008793
-
008793
+    new->hardmaxex = 
008793
+        (add->hardmaxex_set == 0)
008793
+        ? base->hardmaxex
008793
+        : add->hardmaxex;
008793
     return new;
008793
 }
008793
 
008793
@@ -2096,12 +2106,18 @@ static const char *add_cache_disable(cmd_parms *parms, void *dummy,
008793
 }
008793
 
008793
 static const char *set_cache_maxex(cmd_parms *parms, void *dummy,
008793
-                                   const char *arg)
008793
+                                   const char *arg, const char *hard)
008793
 {
008793
     cache_dir_conf *dconf = (cache_dir_conf *)dummy;
008793
 
008793
     dconf->maxex = (apr_time_t) (atol(arg) * MSEC_ONE_SEC);
008793
     dconf->maxex_set = 1;
008793
+    
008793
+    if (hard && strcasecmp(hard, "hard") == 0) {
008793
+        dconf->hardmaxex = 1;
008793
+        dconf->hardmaxex_set = 1;
008793
+    }
008793
+
008793
     return NULL;
008793
 }
008793
 
008793
@@ -2309,7 +2325,7 @@ static const command_rec cache_cmds[] =
008793
                    "caching is enabled"),
008793
     AP_INIT_TAKE1("CacheDisable", add_cache_disable, NULL, RSRC_CONF|ACCESS_CONF,
008793
                   "A partial URL prefix below which caching is disabled"),
008793
-    AP_INIT_TAKE1("CacheMaxExpire", set_cache_maxex, NULL, RSRC_CONF|ACCESS_CONF,
008793
+    AP_INIT_TAKE12("CacheMaxExpire", set_cache_maxex, NULL, RSRC_CONF|ACCESS_CONF,
008793
                   "The maximum time in seconds to cache a document"),
008793
     AP_INIT_TAKE1("CacheMinExpire", set_cache_minex, NULL, RSRC_CONF|ACCESS_CONF,
008793
                   "The minimum time in seconds to cache a document"),