blob: 2d2781a1a22124ecb596f4d600d981fc1246bf4e [file] [log] [blame]
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2001 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
#define CORE_PRIVATE
#include "mod_cache.h"
#define MAX_CACHE 5000
module AP_MODULE_DECLARE_DATA mem_cache_module;
/*
* XXX
* This cache uses apr_hash functions which leak storage when something is removed
* from the cache. This can be fixed in the apr_hash functions by making them use
* malloc/free rather than pools to manage their storage requirements.
*/
/*
* XXX Introduce a type field that identifies whether the cache obj
* references malloc'ed or mmap storage or a file descriptor
*/
typedef enum {
CACHE_TYPE_FILE = 1,
CACHE_TYPE_MALLOC,
CACHE_TYPE_MMAP
} cache_type_e;
typedef struct {
cache_type_e type;
char *key;
void *m;
apr_size_t m_len;
cache_info info;
int complete;
} cache_object_t;
typedef struct {
apr_lock_t *lock;
apr_hash_t *cacheht;
int space;
apr_time_t maxexpire;
apr_time_t defaultexpire;
} mem_cache_conf;
static mem_cache_conf *sconf;
#define DEFAULT_CACHE_SPACE 100*1024
#define CACHEFILE_LEN 20
/* Forward declarations */
static int remove_entity(cache_handle *h);
static int write_headers(cache_handle *h, request_rec *r, cache_info *i);
static int write_body(cache_handle *h, apr_bucket_brigade *b);
static int read_headers(cache_handle *h, request_rec *r, cache_info **info);
static int read_body(cache_handle *h, apr_bucket_brigade *bb);
static void cleanup_cache_object(cache_object_t *obj)
{
/* The cache object has been removed from the cache. Now clean
* it up, freeing any storage, closing file descriptors, etc.
*/
/* XXX -
* The action of freeing a cache entry is asynchronous with the rest of
* the operation of the cache. Frees can be driven by garbage collection,
* the result of some command or an HTTP request. It is okay to remove
* an entry from the cache at anytime but we need a mechanism to keep
* us from cleaning up the cache entry out from under other threads
* that may still be referencing it.
*
* Bill thinks that we need a special purpose reference counted
* bucket (or three). When an entry is removed from the cache, the
* bucket for that entry is marked for cleanup. A bucket marked for
* cleanup is freed by the last routine referencing the bucket,
* either during brigade destroy or this routine.
*/
/*
* Ref count decrementing and checking needs to be atomic
obj->ref_count--;
if (obj->ref_count) {
defer_cleanup (let the brigade cleanup free the bucket)
}
else {
free the bucket
}
*/
if (obj->info.content_type)
free(obj->info.content_type);
if (obj->key)
free(obj->key);
if (obj->m)
free(obj->m);
free(obj);
}
static apr_status_t cleanup_cache_mem(void *sconfv)
{
cache_object_t *obj;
apr_hash_index_t *hi;
mem_cache_conf *co = (mem_cache_conf*) sconfv;
if (!co) {
return APR_SUCCESS;
}
/* Iterate over the frag hash table and clean up each entry */
/* XXX need to lock the hash */
for (hi = apr_hash_first(NULL, co->cacheht); hi; hi=apr_hash_next(hi)) {
apr_hash_this(hi, NULL, NULL, (void **)&obj);
if (obj)
cleanup_cache_object(obj);
}
return APR_SUCCESS;
}
static void *create_cache_config(apr_pool_t *p, server_rec *s)
{
sconf = apr_pcalloc(p, sizeof(mem_cache_conf));
sconf->space = DEFAULT_CACHE_SPACE;
#if 0
sconf->maxexpire = DEFAULT_CACHE_MAXEXPIRE;
sconf->defaultexpire = DEFAULT_CACHE_EXPIRE;
#endif
apr_lock_create(&sconf->lock, APR_MUTEX, APR_INTRAPROCESS, "foo", p);
sconf->cacheht = apr_hash_make(p);
apr_pool_cleanup_register(p, NULL, cleanup_cache_mem, apr_pool_cleanup_null);
return sconf;
}
static int create_entity(cache_handle **hp, const char *type, char *key, apr_size_t len)
{
apr_status_t rv;
cache_object_t *obj;
cache_handle *h;
/* Create the cache handle and begin populating it.
*/
if (strcasecmp(type, "mem")) {
return DECLINED;
}
/* Check len to see if it is withing acceptable bounds
* XXX max cache check should be configurable variable.
*/
if (len < 0 || len > MAX_CACHE) {
return DECLINED;
}
/* Check total cache size and number of entries. Are they within the
* configured limits? If not, kick off garbage collection thread.
*/
/* Allocate the cache_handle and set up call back functions specific to
* this cache handler.
*/
h = malloc(sizeof(cache_handle));
*hp = h;
if (!h) {
/* handle the error */
return DECLINED;
}
h->read_body = &read_body;
h->read_headers = &read_headers;
h->write_body = &write_body;
h->write_headers = &write_headers;
/* Allocate and initialize the cache object. The cache object is
* unique to this implementation.
*/
obj = malloc(sizeof(*obj));
if (!obj) {
/* Handle ther error */
free(h);
return DECLINED;
}
obj->key = malloc(strlen(key));
if (!obj->key) {
/* XXX Uuugh, there has got to be a better way to manage memory.
*/
free(h);
free(obj);
return DECLINED;
}
obj->m_len = len; /* One of these len fields can go */
obj->info.len = len;
strcpy(obj->key, key);
h->cache_obj = (void *) obj;
/* Mark the cache object as incomplete and put it into the cache */
obj->complete = 0;
/* XXX Need a way to insert into the cache w/o sch coarse grained locking */
apr_lock_acquire(sconf->lock);
apr_hash_set(sconf->cacheht, obj->key, strlen(obj->key), obj);
apr_lock_release(sconf->lock);
}
static int open_entity(cache_handle **hp, const char *type, char *key)
{
cache_object_t *obj;
cache_handle *h;
/* Look up entity keyed to 'url' */
if (strcasecmp(type, "mem")) {
return DECLINED;
}
apr_lock_acquire(sconf->lock);
obj = (cache_object_t *) apr_hash_get(sconf->cacheht, key, APR_HASH_KEY_STRING);
apr_lock_release(sconf->lock);
if (!obj || !(obj->complete)) {
return DECLINED;
}
/* Allocate the cache_handle and initialize it */
h = malloc(sizeof(cache_handle));
*hp = h;
if (!h) {
/* handle the error */
return DECLINED;
}
h->read_body = &read_body;
h->read_headers = &read_headers;
h->write_body = &write_body;
h->write_headers = &write_headers;
h->cache_obj = obj;
if (!obj || !(obj->complete)) {
return DECLINED;
}
return OK;
}
static int remove_entity(cache_handle *h)
{
cache_object_t *obj = (cache_object_t *) h->cache_obj;
apr_lock_acquire(sconf->lock);
apr_hash_set(sconf->cacheht, obj->key, strlen(obj->key), NULL);
apr_lock_release(sconf->lock);
cleanup_cache_object(obj);
/* Reinit the cache_handle fields? */
h->cache_obj = NULL;
/* The caller should free the cache_handle ? */
free(h);
}
/* Define request processing hook handlers */
static int remove_url(const char *type, char *key)
{
cache_object_t *obj;
if (strcasecmp(type, "mem")) {
return DECLINED;
}
/* WIBNIF
* apr_hash_set(..,..,..,NULL) returned pointer to the object just removed.
* That way, we could free the object w/o doing another call to an
* apr_hash function.
*/
/* First, find the object in the cache */
apr_lock_acquire(sconf->lock);
obj = (cache_object_t *) apr_hash_get(sconf->cacheht, key, APR_HASH_KEY_STRING);
apr_lock_release(sconf->lock);
if (!obj) {
return DECLINED;
}
/* Found it. Now take it out of the cache and free it. */
apr_lock_acquire(sconf->lock);
apr_hash_set(sconf->cacheht, obj->key, strlen(obj->key), NULL);
apr_lock_release(sconf->lock);
cleanup_cache_object(obj);
return OK;
}
static int read_headers(cache_handle *h, request_rec *r, cache_info **info)
{
cache_object_t *obj = (cache_object_t*) h->cache_obj;
*info = &(obj->info);
return OK;
}
static int read_body(cache_handle *h, apr_bucket_brigade *bb)
{
apr_bucket *b;
cache_object_t *obj = h->cache_obj;
b = apr_bucket_immortal_create(obj->m, obj->m_len);
APR_BRIGADE_INSERT_TAIL(bb, b);
b = apr_bucket_eos_create();
APR_BRIGADE_INSERT_TAIL(bb, b);
return OK;
}
static int write_headers(cache_handle *h, request_rec *r, cache_info *info)
{
apr_size_t len;
cache_object_t *obj = (cache_object_t*) h->cache_obj;
if (info->date) {
obj->info.date = info->date;
}
if (info->lastmod) {
obj->info.lastmod = info->lastmod;
}
if (info->expire) {
obj->info.expire = info->expire;
}
if (info->content_type) {
obj->info.content_type = (char*) malloc(strlen(info->content_type));
if (obj->info.content_type)
strcpy(obj->info.content_type, info->content_type);
}
return OK;
}
static int write_body(cache_handle *h, apr_bucket_brigade *b)
{
apr_status_t rv;
apr_size_t idx = 0;
cache_object_t *obj = (cache_object_t *) h->cache_obj;
apr_read_type_e eblock = APR_BLOCK_READ;
apr_bucket *e;
/* XXX mmap, malloc or file?
* Enable this decision to be configured....
*/
char *m = malloc(obj->m_len);
obj->m = m;
if (!m) {
/* Cleanup cache entry and return */
}
obj->type = CACHE_TYPE_MALLOC;
/* Iterate accross the brigade and populate the cache storage */
/* XXX doesn't handle multiple brigades */
APR_BRIGADE_FOREACH(e, b) {
const char *s;
apr_size_t len;
rv = apr_bucket_read(e, &s, &len, eblock);
if (rv != APR_SUCCESS) {
/* Big problem! Cleanup cache entry and return */
}
/* XXX Check for overflow */
if (len ) {
memcpy(m, s, len);
m+=len;
}
}
/* XXX - Check for EOS before setting obj->complete
* Open for business. This entry can be served from the cache
*/
obj->complete = 1;
return OK;
}
static const char
*set_cache_size(cmd_parms *parms, char *struct_ptr, char *arg)
{
int val;
if (sscanf(arg, "%d", &val) != 1)
return "CacheSize value must be an integer (kBytes)";
sconf->space = val;
return NULL;
}
#if 0
static const char
*set_cache_factor(cmd_parms *parms, void *dummy, char *arg)
{
double val;
if (sscanf(arg, "%lg", &val) != 1)
return "CacheLastModifiedFactor value must be a float";
sconf->lmfactor = val;
return NULL;
}
#endif
#if 0
static const char
*set_cache_maxex(cmd_parms *parms, void *dummy, char *arg)
{
mem_cache_conf *pc = ap_get_module_config(parms->server->module_config, &mem_cache_module);
double val;
if (sscanf(arg, "%lg", &val) != 1)
return "CacheMaxExpire value must be a float";
sconf->maxexpire = (apr_time_t) (val * MSEC_ONE_HR);
return NULL;
}
#endif
#if 0
static const char
*set_cache_defex(cmd_parms *parms, void *dummy, char *arg)
{
mem_cache_conf *pc = ap_get_module_config(parms->server->module_config, &mem_cache_module);
double val;
if (sscanf(arg, "%lg", &val) != 1)
return "CacheDefaultExpire value must be a float";
pc->defaultexpire = (apr_time_t) (val * MSEC_ONE_HR);
return NULL;
}
#endif
static const command_rec cache_cmds[] =
{
/* XXX
* What config directives does this module need?
* Should this module manage expire policy for its entries?
* Certainly cache limits like max number of entries,
* max entry size, and max size of the cache should
* be managed by this module.
*/
AP_INIT_TAKE1("CacheSizeMem", set_cache_size, NULL, RSRC_CONF,
"The maximum disk space used by the cache in Kb"),
{NULL}
};
static void register_hooks(apr_pool_t *p)
{
/* cache initializer */
/* cache_hook_cache_init(cache_init, NULL, NULL, AP_HOOK_FIRST); */
cache_hook_create_entity(create_entity, NULL, NULL, APR_HOOK_MIDDLE);
cache_hook_open_entity(open_entity, NULL, NULL, APR_HOOK_MIDDLE);
cache_hook_remove_url(remove_url, NULL, NULL, APR_HOOK_MIDDLE);
}
module AP_MODULE_DECLARE_DATA mem_cache_module =
{
STANDARD20_MODULE_STUFF,
NULL, /* create per-directory config structure */
NULL, /* merge per-directory config structures */
create_cache_config, /* create per-server config structure */
NULL, /* merge per-server config structures */
cache_cmds, /* command apr_table_t */
register_hooks
};