2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1999-2008 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
17 * LDAPv3 Extended Operation Request
18 * ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
19 * requestName [0] LDAPOID,
20 * requestValue [1] OCTET STRING OPTIONAL
23 * LDAPv3 Extended Operation Response
24 * ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
25 * COMPONENTS OF LDAPResult,
26 * responseName [10] LDAPOID OPTIONAL,
27 * response [11] OCTET STRING OPTIONAL
36 #include <ac/socket.h>
37 #include <ac/string.h>
42 #define UNSUPPORTED_EXOP "unsupported extended operation"
45 static struct extop_list {
46 struct extop_list *next;
49 SLAP_EXTOP_MAIN_FN *ext_main;
50 } *supp_ext_list = NULL;
52 static SLAP_EXTOP_MAIN_FN whoami_extop;
54 /* This list of built-in extops is for extops that are not part
55 * of backends or in external modules. Essentially, this is
56 * just a way to get built-in extops onto the extop list without
57 * having a separate init routine for each built-in extop.
59 const struct berval slap_EXOP_CANCEL = BER_BVC(LDAP_EXOP_X_CANCEL);
60 const struct berval slap_EXOP_WHOAMI = BER_BVC(LDAP_EXOP_X_WHO_AM_I);
61 const struct berval slap_EXOP_MODIFY_PASSWD = BER_BVC(LDAP_EXOP_MODIFY_PASSWD);
62 const struct berval slap_EXOP_START_TLS = BER_BVC(LDAP_EXOP_START_TLS);
65 const struct berval *oid;
67 SLAP_EXTOP_MAIN_FN *ext_main;
68 } builtin_extops[] = {
69 { &slap_EXOP_CANCEL, SLAP_EXOP_HIDE, cancel_extop },
70 { &slap_EXOP_WHOAMI, 0, whoami_extop },
71 { &slap_EXOP_MODIFY_PASSWD, SLAP_EXOP_WRITES, passwd_extop },
76 static struct extop_list *find_extop(
77 struct extop_list *list, struct berval *oid );
80 get_supported_extop (int index)
82 struct extop_list *ext;
84 /* linear scan is slow, but this way doesn't force a
85 * big change on root_dse.c, where this routine is used.
87 for (ext = supp_ext_list; ext != NULL && --index >= 0; ext = ext->next) {
91 if (ext == NULL) return NULL;
97 int exop_root_dse_info( Entry *e )
99 AttributeDescription *ad_supportedExtension
100 = slap_schema.si_ad_supportedExtension;
101 struct berval vals[2];
102 struct extop_list *ext;
104 vals[1].bv_val = NULL;
107 for (ext = supp_ext_list; ext != NULL; ext = ext->next) {
108 if( ext->flags & SLAP_EXOP_HIDE ) continue;
112 if( attr_merge( e, ad_supportedExtension, vals, NULL ) ) {
126 struct berval reqdata = {0, NULL};
130 Debug( LDAP_DEBUG_TRACE, "do_extended\n", 0, 0, 0 );
132 if( op->o_protocol < LDAP_VERSION3 ) {
133 Debug( LDAP_DEBUG_ANY,
134 "do_extended: protocol version (%d) too low\n",
135 op->o_protocol, 0 ,0 );
136 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "requires LDAPv3" );
137 rs->sr_err = SLAPD_DISCONNECT;
141 if ( ber_scanf( op->o_ber, "{m" /*}*/, &op->ore_reqoid ) == LBER_ERROR ) {
142 Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
143 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
144 rs->sr_err = SLAPD_DISCONNECT;
148 tag = ber_peek_tag( op->o_ber, &len );
150 if( ber_peek_tag( op->o_ber, &len ) == LDAP_TAG_EXOP_REQ_VALUE ) {
151 if( ber_scanf( op->o_ber, "m", &reqdata ) == LBER_ERROR ) {
152 Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
153 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
154 rs->sr_err = SLAPD_DISCONNECT;
159 if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
160 Debug( LDAP_DEBUG_ANY, "do_extended: get_ctrls failed\n", 0, 0 ,0 );
164 /* check for controls inappropriate for all extended operations */
165 if( get_manageDSAit( op ) == SLAP_CONTROL_CRITICAL ) {
166 Statslog( LDAP_DEBUG_STATS, "%s EXT oid=%s\n",
167 op->o_log_prefix, op->ore_reqoid.bv_val, 0, 0, 0 );
168 send_ldap_error( op, rs,
169 LDAP_UNAVAILABLE_CRITICAL_EXTENSION,
170 "manageDSAit control inappropriate" );
174 /* FIXME: temporary? */
175 if ( reqdata.bv_val ) {
176 op->ore_reqdata = &reqdata;
179 op->o_bd = frontendDB;
180 rs->sr_err = frontendDB->be_extended( op, rs );
187 fe_extended( Operation *op, SlapReply *rs )
189 struct extop_list *ext = NULL;
190 struct berval reqdata = BER_BVNULL;
192 if (op->ore_reqdata) {
193 reqdata = *op->ore_reqdata;
196 ext = find_extop(supp_ext_list, &op->ore_reqoid );
198 Statslog( LDAP_DEBUG_STATS, "%s EXT oid=%s\n",
199 op->o_log_prefix, op->ore_reqoid.bv_val, 0, 0, 0 );
200 Debug( LDAP_DEBUG_ANY, "do_extended: unsupported operation \"%s\"\n",
201 op->ore_reqoid.bv_val, 0 ,0 );
202 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
203 "unsupported extended operation" );
207 op->ore_flags = ext->flags;
209 Debug( LDAP_DEBUG_ARGS, "do_extended: oid=%s\n",
210 op->ore_reqoid.bv_val, 0 ,0 );
212 { /* start of OpenLDAP extended operation */
213 BackendDB *bd = op->o_bd;
215 rs->sr_err = (ext->ext_main)( op, rs );
217 if( rs->sr_err != SLAPD_ABANDON ) {
218 if ( rs->sr_err == LDAP_REFERRAL && rs->sr_ref == NULL ) {
219 rs->sr_ref = referral_rewrite( default_referral,
220 NULL, NULL, LDAP_SCOPE_DEFAULT );
221 if ( !rs->sr_ref ) rs->sr_ref = default_referral;
223 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
224 rs->sr_text = "referral missing";
228 if ( op->o_bd == NULL )
230 send_ldap_extended( op, rs );
232 if ( rs->sr_ref != default_referral ) {
233 ber_bvarray_free( rs->sr_ref );
238 if ( rs->sr_rspoid != NULL ) {
239 free( (char *)rs->sr_rspoid );
242 if ( rs->sr_rspdata != NULL ) {
243 ber_bvfree( rs->sr_rspdata );
245 } /* end of OpenLDAP extended operation */
253 const struct berval *ext_oid,
254 slap_mask_t ext_flags,
255 SLAP_EXTOP_MAIN_FN *ext_main )
257 struct extop_list *ext;
259 if( ext_oid == NULL || ext_oid->bv_val == NULL ||
260 ext_oid->bv_val[0] == '\0' || ext_oid->bv_len == 0 ) return -1;
261 if(!ext_main) return -1;
263 ext = ch_calloc(1, sizeof(struct extop_list) + ext_oid->bv_len + 1);
267 ext->flags = ext_flags;
269 ext->oid.bv_val = (char *)(ext + 1);
270 AC_MEMCPY( ext->oid.bv_val, ext_oid->bv_val, ext_oid->bv_len );
271 ext->oid.bv_len = ext_oid->bv_len;
272 ext->oid.bv_val[ext->oid.bv_len] = '\0';
274 ext->ext_main = ext_main;
275 ext->next = supp_ext_list;
287 for (i = 0; builtin_extops[i].oid != NULL; i++) {
288 load_extop((struct berval *)builtin_extops[i].oid,
289 builtin_extops[i].flags,
290 builtin_extops[i].ext_main);
298 struct extop_list *ext;
300 /* we allocated the memory, so we have to free it, too. */
301 while ((ext = supp_ext_list) != NULL) {
302 supp_ext_list = ext->next;
308 static struct extop_list *
309 find_extop( struct extop_list *list, struct berval *oid )
311 struct extop_list *ext;
313 for (ext = list; ext; ext = ext->next) {
314 if (bvmatch(&ext->oid, oid))
328 if ( op->ore_reqdata != NULL ) {
329 /* no request data should be provided */
330 rs->sr_text = "no request data expected";
331 return LDAP_PROTOCOL_ERROR;
334 Statslog( LDAP_DEBUG_STATS, "%s WHOAMI\n",
335 op->o_log_prefix, 0, 0, 0, 0 );
337 op->o_bd = op->o_conn->c_authz_backend;
338 if( backend_check_restrictions( op, rs,
339 (struct berval *)&slap_EXOP_WHOAMI ) != LDAP_SUCCESS ) {
343 bv = (struct berval *) ch_malloc( sizeof(struct berval) );
344 if( op->o_dn.bv_len ) {
345 bv->bv_len = op->o_dn.bv_len + STRLENOF( "dn:" );
346 bv->bv_val = ch_malloc( bv->bv_len + 1 );
347 AC_MEMCPY( bv->bv_val, "dn:", STRLENOF( "dn:" ) );
348 AC_MEMCPY( &bv->bv_val[STRLENOF( "dn:" )], op->o_dn.bv_val,
350 bv->bv_val[bv->bv_len] = '\0';