mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
New module: mod_authn_cache
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@956966 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
2
CHANGES
2
CHANGES
@ -2,6 +2,8 @@
|
||||
|
||||
Changes with Apache 2.3.7
|
||||
|
||||
*) mod_authn_cache: new module [Nick Kew]
|
||||
|
||||
*) core: Try to proceed with authorization even if authentication failed.
|
||||
This allows e.g. to authorize by user _or_ ip address. [Stefan Fritsch]
|
||||
|
||||
|
@ -107,6 +107,18 @@ typedef struct {
|
||||
const char *require_line);
|
||||
} authz_provider;
|
||||
|
||||
/* ap_authn_cache_store: Optional function for authn providers
|
||||
* to enable cacheing their lookups with mod_authn_cache
|
||||
* @param r The request rec
|
||||
* @param module Module identifier
|
||||
* @param user User name to authenticate
|
||||
* @param realm Digest authn realm (NULL for basic authn)
|
||||
* @param data The value looked up by the authn provider, to cache
|
||||
*/
|
||||
APR_DECLARE_OPTIONAL_FN(void, ap_authn_cache_store,
|
||||
(request_rec*, const char*, const char*,
|
||||
const char*, const char*));
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
403
modules/aaa/mod_authn_cache.c
Normal file
403
modules/aaa/mod_authn_cache.c
Normal file
@ -0,0 +1,403 @@
|
||||
/* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed with
|
||||
* this work for additional information regarding copyright ownership.
|
||||
* The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
* (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "apr_strings.h"
|
||||
#include "apr_md5.h" /* for apr_password_validate */
|
||||
|
||||
#include "ap_config.h"
|
||||
#include "ap_provider.h"
|
||||
#include "httpd.h"
|
||||
#include "http_config.h"
|
||||
#include "http_core.h"
|
||||
#include "http_log.h"
|
||||
#include "http_protocol.h"
|
||||
#include "http_request.h"
|
||||
|
||||
#include "mod_auth.h"
|
||||
|
||||
#include "ap_socache.h"
|
||||
#include "util_mutex.h"
|
||||
#include "apr_optional.h"
|
||||
|
||||
module AP_MODULE_DECLARE_DATA authn_cache_module;
|
||||
|
||||
typedef struct authn_cache_dircfg {
|
||||
apr_interval_time_t timeout;
|
||||
apr_array_header_t *providers;
|
||||
const char *context;
|
||||
} authn_cache_dircfg;
|
||||
|
||||
/* FIXME: figure out usage of socache create vs init
|
||||
* I think the cache and mutex should be global
|
||||
*/
|
||||
static apr_global_mutex_t *authn_cache_mutex = NULL;
|
||||
static ap_socache_provider_t *socache_provider = NULL;
|
||||
static ap_socache_instance_t *socache_instance = NULL;
|
||||
static const char *const authn_cache_id = "authn-cache";
|
||||
|
||||
static apr_status_t remove_lock(void *data)
|
||||
{
|
||||
if (authn_cache_mutex) {
|
||||
apr_global_mutex_destroy(authn_cache_mutex);
|
||||
authn_cache_mutex = NULL;
|
||||
}
|
||||
return APR_SUCCESS;
|
||||
}
|
||||
static apr_status_t destroy_cache(void *data)
|
||||
{
|
||||
if (socache_instance) {
|
||||
socache_provider->destroy(socache_instance, (server_rec*)data);
|
||||
socache_instance = NULL;
|
||||
}
|
||||
return APR_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static int authn_cache_precfg(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptmp)
|
||||
{
|
||||
apr_status_t rv = ap_mutex_register(pconf, authn_cache_id,
|
||||
NULL, APR_LOCK_DEFAULT, 0);
|
||||
if (rv != APR_SUCCESS) {
|
||||
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog,
|
||||
"failed to register %s mutex", authn_cache_id);
|
||||
return 500; /* An HTTP status would be a misnomer! */
|
||||
}
|
||||
socache_provider = ap_lookup_provider(AP_SOCACHE_PROVIDER_GROUP,
|
||||
AP_SOCACHE_DEFAULT_PROVIDER,
|
||||
AP_SOCACHE_PROVIDER_VERSION);
|
||||
return OK;
|
||||
}
|
||||
static int authn_cache_post_config(apr_pool_t *pconf, apr_pool_t *plog,
|
||||
apr_pool_t *ptmp, server_rec *s)
|
||||
{
|
||||
apr_status_t rv;
|
||||
const char *errmsg;
|
||||
static struct ap_socache_hints authn_cache_hints = {64, 32, 60000000};
|
||||
|
||||
rv = ap_global_mutex_create(&authn_cache_mutex, NULL,
|
||||
authn_cache_id, NULL, s, pconf, 0);
|
||||
if (rv != APR_SUCCESS) {
|
||||
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog,
|
||||
"failed to create %s mutex", authn_cache_id);
|
||||
return 500; /* An HTTP status would be a misnomer! */
|
||||
}
|
||||
apr_pool_cleanup_register(pconf, NULL, remove_lock, apr_pool_cleanup_null);
|
||||
|
||||
errmsg = socache_provider->create(&socache_instance, NULL, ptmp, pconf);
|
||||
if (errmsg) {
|
||||
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog, "%s", errmsg);
|
||||
return 500; /* An HTTP status would be a misnomer! */
|
||||
}
|
||||
|
||||
rv = socache_provider->init(socache_instance, authn_cache_id,
|
||||
&authn_cache_hints, s, pconf);
|
||||
if (rv != APR_SUCCESS) {
|
||||
ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, plog,
|
||||
"failed to initialise %s cache", authn_cache_id);
|
||||
return 500; /* An HTTP status would be a misnomer! */
|
||||
}
|
||||
apr_pool_cleanup_register(pconf, (void*)s, destroy_cache, apr_pool_cleanup_null);
|
||||
return OK;
|
||||
}
|
||||
static void authn_cache_child_init(apr_pool_t *p, server_rec *s)
|
||||
{
|
||||
const char *lock = apr_global_mutex_lockfile(authn_cache_mutex);
|
||||
apr_status_t rv = apr_global_mutex_child_init(&authn_cache_mutex, lock, p);
|
||||
if (rv != APR_SUCCESS) {
|
||||
ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s,
|
||||
"failed to initialise mutex in child_init");
|
||||
}
|
||||
}
|
||||
|
||||
static const char *authn_cache_socache(cmd_parms *cmd, void *CFG,
|
||||
const char *arg)
|
||||
{
|
||||
const char *errmsg = ap_check_cmd_context(cmd, GLOBAL_ONLY);
|
||||
socache_provider = ap_lookup_provider(AP_SOCACHE_PROVIDER_GROUP, arg,
|
||||
AP_SOCACHE_PROVIDER_VERSION);
|
||||
if (socache_provider == NULL) {
|
||||
errmsg = "Unknown socache provider";
|
||||
}
|
||||
return errmsg;
|
||||
}
|
||||
|
||||
static const char *const directory = "directory";
|
||||
static void* authn_cache_dircfg_create(apr_pool_t *pool, char *s)
|
||||
{
|
||||
authn_cache_dircfg *ret = apr_palloc(pool, sizeof(authn_cache_dircfg));
|
||||
ret->timeout = apr_time_from_sec(300);
|
||||
ret->providers = NULL;
|
||||
ret->context = directory;
|
||||
return ret;
|
||||
}
|
||||
/* not sure we want this. Might be safer to document use-all-or-none */
|
||||
static void* authn_cache_dircfg_merge(apr_pool_t *pool, void *BASE, void *ADD)
|
||||
{
|
||||
authn_cache_dircfg *base = BASE;
|
||||
authn_cache_dircfg *add = ADD;
|
||||
authn_cache_dircfg *ret = apr_pmemdup(pool, add, sizeof(authn_cache_dircfg));
|
||||
/* preserve context and timeout if not defaults */
|
||||
if (add->context == directory) {
|
||||
ret->context = base->context;
|
||||
}
|
||||
if (add->timeout == apr_time_from_sec(300)) {
|
||||
ret->timeout = base->timeout;
|
||||
}
|
||||
if (add->providers == NULL) {
|
||||
ret->providers = base->providers;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static const char *authn_cache_setprovider(cmd_parms *cmd, void *CFG,
|
||||
const char *arg)
|
||||
{
|
||||
authn_cache_dircfg *cfg = CFG;
|
||||
if (cfg->providers == NULL) {
|
||||
cfg->providers = apr_array_make(cmd->pool, 4, sizeof(const char*));
|
||||
}
|
||||
APR_ARRAY_PUSH(cfg->providers, const char*) = arg;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static const char *authn_cache_timeout(cmd_parms *cmd, void *CFG,
|
||||
const char *arg)
|
||||
{
|
||||
authn_cache_dircfg *cfg = CFG;
|
||||
int secs = atoi(arg);
|
||||
cfg->timeout = apr_time_from_sec(secs);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static const command_rec authn_cache_cmds[] =
|
||||
{
|
||||
/* global stuff: cache and mutex */
|
||||
AP_INIT_TAKE1("AuthnCacheSOCache", authn_cache_socache, NULL, RSRC_CONF,
|
||||
"socache provider for authn cache"),
|
||||
/* per-dir stuff */
|
||||
AP_INIT_ITERATE("AuthnCacheProvider", authn_cache_setprovider, NULL,
|
||||
OR_AUTHCFG, "Determine what authn providers to cache for"),
|
||||
AP_INIT_TAKE1("AuthnCacheTimeout", authn_cache_timeout, NULL,
|
||||
OR_AUTHCFG, "Timeout (secs) for cached credentials"),
|
||||
AP_INIT_TAKE1("AuthnCacheContext", ap_set_string_slot,
|
||||
(void*)APR_OFFSETOF(authn_cache_dircfg, context),
|
||||
OR_AUTHCFG, "Context for authn cache"),
|
||||
{NULL}
|
||||
};
|
||||
|
||||
static const char *construct_key(request_rec *r, const char *context,
|
||||
const char *user, const char *realm)
|
||||
{
|
||||
/* handle "special" context values */
|
||||
if (!strcmp(context, "directory")) {
|
||||
/* FIXME: are we at risk of this blowing up? */
|
||||
char *slash = strrchr(r->uri, '/');
|
||||
context = apr_pstrndup(r->pool, r->uri, slash - r->uri + 1);
|
||||
}
|
||||
else if (!strcmp(context, "server")) {
|
||||
context = r->server->server_hostname;
|
||||
}
|
||||
/* any other context value is literal */
|
||||
|
||||
if (realm == NULL) { /* basic auth */
|
||||
return apr_pstrcat(r->pool, context, ":", user, NULL);
|
||||
}
|
||||
else { /* digest auth */
|
||||
return apr_pstrcat(r->pool, context, ":", user, ":", realm, NULL);
|
||||
}
|
||||
}
|
||||
static void ap_authn_cache_store(request_rec *r, const char *module,
|
||||
const char *user, const char *realm,
|
||||
const char* data)
|
||||
{
|
||||
apr_status_t rv;
|
||||
authn_cache_dircfg *dcfg;
|
||||
const char *key;
|
||||
apr_interval_time_t expiry;
|
||||
int i;
|
||||
int use_cache = 0;
|
||||
|
||||
/* first check whether we're cacheing for this module */
|
||||
dcfg = ap_get_module_config(r->per_dir_config, &authn_cache_module);
|
||||
for (i = 0; i < dcfg->providers->nelts; ++i) {
|
||||
if (!strcmp(module, APR_ARRAY_IDX(dcfg->providers, i, const char*))) {
|
||||
use_cache = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!use_cache) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* OK, we're on. Grab mutex to do our business */
|
||||
rv = apr_global_mutex_trylock(authn_cache_mutex);
|
||||
if (APR_STATUS_IS_EBUSY(rv)) {
|
||||
/* don't wait around; just abandon it */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r,
|
||||
"authn credentials for %s not cached (mutex busy)", user);
|
||||
return;
|
||||
}
|
||||
else if (rv != APR_SUCCESS) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Failed to cache authn credentials for %s in %s",
|
||||
module, dcfg->context);
|
||||
return;
|
||||
}
|
||||
|
||||
/* We have the mutex, so go ahead */
|
||||
/* first build our key and determine expiry time */
|
||||
key = construct_key(r, dcfg->context, user, realm);
|
||||
expiry = apr_time_now() + dcfg->timeout;
|
||||
|
||||
/* store it */
|
||||
rv = socache_provider->store(socache_instance, r->server,
|
||||
(unsigned char*)key, strlen(key), expiry,
|
||||
(unsigned char*)data, strlen(data), r->pool);
|
||||
if (rv == APR_SUCCESS) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Cached authn credentials for %s in %s",
|
||||
user, dcfg->context);
|
||||
}
|
||||
else {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Failed to cache authn credentials for %s in %s",
|
||||
module, dcfg->context);
|
||||
}
|
||||
|
||||
/* We're done with the mutex */
|
||||
rv = apr_global_mutex_unlock(authn_cache_mutex);
|
||||
if (rv != APR_SUCCESS) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, "Failed to release mutex!");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
#define MAX_VAL_LEN 100
|
||||
static authn_status check_password(request_rec *r, const char *user,
|
||||
const char *password)
|
||||
{
|
||||
|
||||
/* construct key
|
||||
* look it up
|
||||
* if found, test password
|
||||
*
|
||||
* mutexing here would be a big performance drag.
|
||||
* It's definitely unnecessary with some backends (like ndbm or gdbm)
|
||||
* Is there a risk in the general case? I guess the only risk we
|
||||
* care about is a race condition that gets us a dangling pointer
|
||||
* to no-longer-defined memory. Hmmm ...
|
||||
*/
|
||||
apr_status_t rv;
|
||||
unsigned char val[MAX_VAL_LEN];
|
||||
unsigned int vallen = MAX_VAL_LEN - 1;
|
||||
authn_cache_dircfg *dcfg = ap_get_module_config(r->per_dir_config,
|
||||
&authn_cache_module);
|
||||
const char *key = construct_key(r, dcfg->context, user, NULL);
|
||||
rv = socache_provider->retrieve(socache_instance, r->server,
|
||||
(unsigned char*)key, strlen(key),
|
||||
val, &vallen, r->pool);
|
||||
|
||||
if (APR_STATUS_IS_NOTFOUND(rv)) {
|
||||
/* not found - just return */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Authn cache: no credentials found for %s", user);
|
||||
return AUTH_USER_NOT_FOUND;
|
||||
}
|
||||
else if (rv == APR_SUCCESS) {
|
||||
/* OK, we got a value */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Authn cache: found credentials for %s", user);
|
||||
val[vallen] = 0;
|
||||
}
|
||||
else {
|
||||
/* error: give up and pass the buck */
|
||||
/* FIXME: getting this for NOTFOUND - prolly a bug in mod_socache */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Error accessing authentication cache");
|
||||
return AUTH_USER_NOT_FOUND;
|
||||
}
|
||||
|
||||
rv = apr_password_validate(password, (char*) val);
|
||||
if (rv != APR_SUCCESS) {
|
||||
return AUTH_DENIED;
|
||||
}
|
||||
|
||||
return AUTH_GRANTED;
|
||||
}
|
||||
|
||||
static authn_status get_realm_hash(request_rec *r, const char *user,
|
||||
const char *realm, char **rethash)
|
||||
{
|
||||
apr_status_t rv;
|
||||
authn_cache_dircfg *dcfg;
|
||||
unsigned char val[MAX_VAL_LEN];
|
||||
unsigned int vallen = MAX_VAL_LEN - 1;
|
||||
dcfg = ap_get_module_config(r->per_dir_config, &authn_cache_module);
|
||||
const char *key = construct_key(r, dcfg->context, user, realm);
|
||||
rv = socache_provider->retrieve(socache_instance, r->server,
|
||||
(unsigned char*)key, strlen(key),
|
||||
val, &vallen, r->pool);
|
||||
|
||||
if (APR_STATUS_IS_NOTFOUND(rv)) {
|
||||
/* not found - just return */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Authn cache: no credentials found for %s", user);
|
||||
return AUTH_USER_NOT_FOUND;
|
||||
}
|
||||
else if (rv == APR_SUCCESS) {
|
||||
/* OK, we got a value */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||
"Authn cache: found credentials for %s", user);
|
||||
val[vallen] = 0;
|
||||
}
|
||||
else {
|
||||
/* error: give up and pass the buck */
|
||||
/* FIXME: getting this for NOTFOUND - prolly a bug in mod_socache */
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Error accessing authentication cache");
|
||||
return AUTH_USER_NOT_FOUND;
|
||||
}
|
||||
*rethash = (char*)val;
|
||||
|
||||
return AUTH_USER_FOUND;
|
||||
}
|
||||
|
||||
static const authn_provider authn_cache_provider =
|
||||
{
|
||||
&check_password,
|
||||
&get_realm_hash,
|
||||
};
|
||||
static void register_hooks(apr_pool_t *p)
|
||||
{
|
||||
ap_register_auth_provider(p, AUTHN_PROVIDER_GROUP, "cache",
|
||||
AUTHN_PROVIDER_VERSION,
|
||||
&authn_cache_provider, AP_AUTH_INTERNAL_PER_CONF);
|
||||
APR_REGISTER_OPTIONAL_FN(ap_authn_cache_store);
|
||||
ap_hook_pre_config(authn_cache_precfg, NULL, NULL, APR_HOOK_MIDDLE);
|
||||
ap_hook_post_config(authn_cache_post_config, NULL, NULL, APR_HOOK_MIDDLE);
|
||||
ap_hook_child_init(authn_cache_child_init, NULL, NULL, APR_HOOK_MIDDLE);
|
||||
}
|
||||
|
||||
AP_DECLARE_MODULE(authn_cache) =
|
||||
{
|
||||
STANDARD20_MODULE_STUFF,
|
||||
authn_cache_dircfg_create,
|
||||
authn_cache_dircfg_merge,
|
||||
NULL,
|
||||
NULL,
|
||||
authn_cache_cmds,
|
||||
register_hooks
|
||||
};
|
Reference in New Issue
Block a user