1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/* denyop.c - Denies operations */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 2004-2006 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/* ACKNOWLEDGEMENTS:
* This work was initially developed by Pierangelo Masarati for inclusion in
* OpenLDAP Software.
*/
#include "portable.h"
#ifdef SLAPD_OVER_DENYOP
#include <stdio.h>
#include <ac/string.h>
#include <ac/socket.h>
#include "slap.h"
/* This overlay provides a quick'n'easy way to deny selected operations
* for a database whose backend implements the operations. It is intended
* to be less expensive than ACLs because its evaluation occurs before
* any backend specific operation is actually even initiated.
*/
enum {
denyop_add = 0,
denyop_bind,
denyop_compare,
denyop_delete,
denyop_extended,
denyop_modify,
denyop_modrdn,
denyop_search,
denyop_unbind
} denyop_e;
typedef struct denyop_info {
int do_op[denyop_unbind + 1];
} denyop_info;
static int
denyop_func( Operation *op, SlapReply *rs )
{
slap_overinst *on = (slap_overinst *) op->o_bd->bd_info;
denyop_info *oi = (denyop_info *)on->on_bi.bi_private;
int deny = 0;
switch( op->o_tag ) {
case LDAP_REQ_BIND:
deny = oi->do_op[denyop_bind];
break;
case LDAP_REQ_ADD:
deny = oi->do_op[denyop_add];
break;
case LDAP_REQ_DELETE:
deny = oi->do_op[denyop_delete];
break;
case LDAP_REQ_MODRDN:
deny = oi->do_op[denyop_modrdn];
break;
case LDAP_REQ_MODIFY:
deny = oi->do_op[denyop_modify];
break;
case LDAP_REQ_COMPARE:
deny = oi->do_op[denyop_compare];
break;
case LDAP_REQ_SEARCH:
deny = oi->do_op[denyop_search];
break;
case LDAP_REQ_EXTENDED:
deny = oi->do_op[denyop_extended];
break;
case LDAP_REQ_UNBIND:
deny = oi->do_op[denyop_unbind];
break;
}
if ( !deny ) {
return SLAP_CB_CONTINUE;
}
op->o_bd->bd_info = (BackendInfo *)on->on_info;
send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
"operation not allowed within namingContext" );
return 0;
}
static int
denyop_over_init(
BackendDB *be
)
{
slap_overinst *on = (slap_overinst *) be->bd_info;
denyop_info *oi;
oi = (denyop_info *)ch_malloc(sizeof(denyop_info));
memset(oi, 0, sizeof(denyop_info));
on->on_bi.bi_private = oi;
return 0;
}
static int
denyop_config(
BackendDB *be,
const char *fname,
int lineno,
int argc,
char **argv
)
{
slap_overinst *on = (slap_overinst *) be->bd_info;
denyop_info *oi = (denyop_info *)on->on_bi.bi_private;
if ( strcasecmp( argv[0], "denyop" ) == 0 ) {
char *op;
if ( argc != 2 ) {
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
"operation list missing in "
"\"denyop <op-list>\" line.\n",
fname, lineno, 0 );
return( 1 );
}
/* The on->on_bi.bi_private pointer can be used for
* anything this instance of the overlay needs.
*/
op = argv[1];
do {
char *next = strchr( op, ',' );
if ( next ) {
next[0] = '\0';
next++;
}
if ( strcmp( op, "add" ) == 0 ) {
oi->do_op[denyop_add] = 1;
} else if ( strcmp( op, "bind" ) == 0 ) {
oi->do_op[denyop_bind] = 1;
} else if ( strcmp( op, "compare" ) == 0 ) {
oi->do_op[denyop_compare] = 1;
} else if ( strcmp( op, "delete" ) == 0 ) {
oi->do_op[denyop_delete] = 1;
} else if ( strcmp( op, "extended" ) == 0 ) {
oi->do_op[denyop_extended] = 1;
} else if ( strcmp( op, "modify" ) == 0 ) {
oi->do_op[denyop_modify] = 1;
} else if ( strcmp( op, "modrdn" ) == 0 ) {
oi->do_op[denyop_modrdn] = 1;
} else if ( strcmp( op, "search" ) == 0 ) {
oi->do_op[denyop_search] = 1;
} else if ( strcmp( op, "unbind" ) == 0 ) {
oi->do_op[denyop_unbind] = 1;
} else {
Debug( LDAP_DEBUG_ANY, "%s: line %d: "
"unknown operation \"%s\" at "
"\"denyop <op-list>\" line.\n",
fname, lineno, op );
return( 1 );
}
op = next;
} while ( op );
} else {
return SLAP_CONF_UNKNOWN;
}
return 0;
}
static int
denyop_destroy(
BackendDB *be
)
{
slap_overinst *on = (slap_overinst *) be->bd_info;
denyop_info *oi = (denyop_info *)on->on_bi.bi_private;
if ( oi ) {
ch_free( oi );
}
return 0;
}
/* This overlay is set up for dynamic loading via moduleload. For static
* configuration, you'll need to arrange for the slap_overinst to be
* initialized and registered by some other function inside slapd.
*/
static slap_overinst denyop;
int
denyop_initialize( void )
{
memset( &denyop, 0, sizeof( slap_overinst ) );
denyop.on_bi.bi_type = "denyop";
denyop.on_bi.bi_db_init = denyop_over_init;
denyop.on_bi.bi_db_config = denyop_config;
denyop.on_bi.bi_db_destroy = denyop_destroy;
denyop.on_bi.bi_op_bind = denyop_func;
denyop.on_bi.bi_op_search = denyop_func;
denyop.on_bi.bi_op_compare = denyop_func;
denyop.on_bi.bi_op_modify = denyop_func;
denyop.on_bi.bi_op_modrdn = denyop_func;
denyop.on_bi.bi_op_add = denyop_func;
denyop.on_bi.bi_op_delete = denyop_func;
denyop.on_bi.bi_extended = denyop_func;
denyop.on_bi.bi_op_unbind = denyop_func;
denyop.on_response = NULL /* denyop_response */ ;
return overlay_register( &denyop );
}
#if SLAPD_OVER_DENYOP == SLAPD_MOD_DYNAMIC
int
init_module( int argc, char *argv[] )
{
return denyop_initialize();
}
#endif /* SLAPD_OVER_DENYOP == SLAPD_MOD_DYNAMIC */
#endif /* defined(SLAPD_OVER_DENYOP) */
|