mod_authz_dbm.c revision c6f91de827649de5a4dd77cf4bac3101d9421073
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2002 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
* 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
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
/*
* http_auth: authentication
*
* Rob McCool & Brian Behlendorf.
*
* Adapted to Apache by rst.
*
* dirkx - Added Authoritative control to allow passing on to lower
* modules if and only if the userid is not known to this
* module. A known user with a faulty or absent password still
* causes an AuthRequired. The default is 'Authoritative', i.e.
* no control is passed along.
*/
#define APR_WANT_STRFUNC
#include "apr_want.h"
#include "apr_strings.h"
#include "apr_dbm.h"
#include "apr_md5.h"
#include "httpd.h"
#include "http_config.h"
#include "http_core.h"
#include "http_log.h"
#include "http_protocol.h"
#include "http_request.h" /* for ap_hook_(check_user_id | auth_checker)*/
typedef struct {
char *grpfile;
char *dbmtype;
int authoritative;
/* This should go into APR; perhaps with some nice
*/
{
apr_datum_t d, q;
#ifndef NETSCAPE_DBM_COMPAT
#else
#endif
}
return NULL;
}
static void *create_authz_dbm_dir_config(apr_pool_t *p, char *d)
{
return conf;
}
static const command_rec authz_dbm_cmds[] =
{
OR_AUTHCFG, "database file containing group names and member user IDs"),
OR_AUTHCFG, "what type of DBM file the group file is"),
OR_AUTHCFG, "Set to 'Off' to allow access control to be passed along to "
"lower modules, if the group required is not found or empty, or the user "
" is not in the required groups. (default is On.)"),
{NULL}
};
/* We do something strange with the group file. If the group file
* contains any : we assume the format is
* key=username value=":"groupname [":"anything here is ignored]
* otherwise we now (0.8.14+) assume that the format is
* key=username value=groupname
* The first allows the password and group files to be the same
* physical DBM file; key=username value=password":"groupname[":"anything]
*
* mark@telescope.org, 22Sep95
*/
char *dbmgrpfile, char *dbtype,
const char ** out)
{
char *grp_colon;
apr_dbm_t *f;
APR_OS_DEFAULT, r->pool);
if (retval != APR_SUCCESS) {
return retval;
}
/* Try key2 only if key1 failed */
}
apr_dbm_close(f);
if (grp_colon2) {
*grp_colon2 = '\0';
}
}
return retval;
}
/* Checking ID */
static int dbm_check_auth(request_rec *r)
{
int m = r->method_number;
register int x;
const char *t;
char *w;
return DECLINED;
}
if (!reqs_arr) {
return DECLINED;
}
continue;
}
t = reqs[x].requirement;
w = ap_getword_white(r->pool, &t);
if (!strcmp(w, "group")) {
const char *realm = ap_auth_name(r);
const char *orig_groups, *groups;
char *v;
status = get_dbm_grp(r,
user,
if (status != APR_SUCCESS) {
"could not open dbm (type %s) group access file: %s",
return HTTP_INTERNAL_SERVER_ERROR;
}
if (!conf->authoritative) {
return DECLINED;
}
"user %s not in DBM group file %s: %s",
return HTTP_UNAUTHORIZED;
}
while (t[0]) {
w = ap_getword_white(r->pool, &t);
while (groups[0]) {
if (!strcmp(v, w)) {
return OK;
}
}
}
"user %s not in right group: %s",
return HTTP_UNAUTHORIZED;
}
}
return DECLINED;
}
static void register_hooks(apr_pool_t *p)
{
}
{
create_authz_dbm_dir_config, /* dir config creater */
NULL, /* dir merger --- default is to override */
NULL, /* server config */
NULL, /* merge server config */
authz_dbm_cmds, /* command apr_table_t */
register_hooks /* register hooks */
};