]> git.sur5r.net Git - openldap/blob - servers/slapd/extended.c
Quick merge: everything from HEAD
[openldap] / servers / slapd / extended.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2007 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
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>.
14  */
15
16 /*
17  * LDAPv3 Extended Operation Request
18  *      ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
19  *              requestName      [0] LDAPOID,
20  *              requestValue     [1] OCTET STRING OPTIONAL
21  *      }
22  *
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
28  *      }
29  *
30  */
31
32 #include "portable.h"
33
34 #include <stdio.h>
35
36 #include <ac/socket.h>
37 #include <ac/string.h>
38
39 #include "slap.h"
40 #include "lber_pvt.h"
41
42 static struct extop_list {
43         struct extop_list *next;
44         struct berval oid;
45         slap_mask_t flags;
46         SLAP_EXTOP_MAIN_FN *ext_main;
47 } *supp_ext_list = NULL;
48
49 static SLAP_EXTOP_MAIN_FN whoami_extop;
50
51 /* This list of built-in extops is for extops that are not part
52  * of backends or in external modules.  Essentially, this is
53  * just a way to get built-in extops onto the extop list without
54  * having a separate init routine for each built-in extop.
55  */
56 static struct {
57         const struct berval *oid;
58         slap_mask_t flags;
59         SLAP_EXTOP_MAIN_FN *ext_main;
60 } builtin_extops[] = {
61 #ifdef LDAP_X_TXN
62         { &slap_EXOP_TXN_START, 0, txn_start_extop },
63         { &slap_EXOP_TXN_END, 0, txn_end_extop },
64 #endif
65         { &slap_EXOP_CANCEL, 0, cancel_extop },
66         { &slap_EXOP_WHOAMI, 0, whoami_extop },
67         { &slap_EXOP_MODIFY_PASSWD, SLAP_EXOP_WRITES, passwd_extop },
68         { NULL, 0, NULL }
69 };
70
71
72 static struct extop_list *find_extop(
73         struct extop_list *list, struct berval *oid );
74
75 struct berval *
76 get_supported_extop (int index)
77 {
78         struct extop_list *ext;
79
80         /* linear scan is slow, but this way doesn't force a
81          * big change on root_dse.c, where this routine is used.
82          */
83         for (ext = supp_ext_list; ext != NULL && --index >= 0; ext = ext->next) {
84                 ; /* empty */
85         }
86
87         if (ext == NULL) return NULL;
88
89         return &ext->oid;
90 }
91
92
93 int exop_root_dse_info( Entry *e )
94 {
95         AttributeDescription *ad_supportedExtension
96                 = slap_schema.si_ad_supportedExtension;
97         struct berval vals[2];
98         struct extop_list *ext;
99
100         vals[1].bv_val = NULL;
101         vals[1].bv_len = 0;
102
103         for (ext = supp_ext_list; ext != NULL; ext = ext->next) {
104                 if( ext->flags & SLAP_EXOP_HIDE ) continue;
105
106                 vals[0] = ext->oid;
107
108                 if( attr_merge( e, ad_supportedExtension, vals, NULL ) ) {
109                         return LDAP_OTHER;
110                 }
111         }
112
113         return LDAP_SUCCESS;
114 }
115
116 int
117 do_extended(
118     Operation   *op,
119     SlapReply   *rs
120 )
121 {
122         struct berval reqdata = {0, NULL};
123         ber_tag_t tag;
124         ber_len_t len;
125
126         Debug( LDAP_DEBUG_TRACE, "do_extended\n", 0, 0, 0 );
127
128         if( op->o_protocol < LDAP_VERSION3 ) {
129                 Debug( LDAP_DEBUG_ANY,
130                         "do_extended: protocol version (%d) too low\n",
131                         op->o_protocol, 0 ,0 );
132                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "requires LDAPv3" );
133                 rs->sr_err = SLAPD_DISCONNECT;
134                 goto done;
135         }
136
137         if ( ber_scanf( op->o_ber, "{m" /*}*/, &op->ore_reqoid ) == LBER_ERROR ) {
138                 Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
139                 send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
140                 rs->sr_err = SLAPD_DISCONNECT;
141                 goto done;
142         }
143
144         tag = ber_peek_tag( op->o_ber, &len );
145         
146         if( ber_peek_tag( op->o_ber, &len ) == LDAP_TAG_EXOP_REQ_VALUE ) {
147                 if( ber_scanf( op->o_ber, "m", &reqdata ) == LBER_ERROR ) {
148                         Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
149                         send_ldap_discon( op, rs, LDAP_PROTOCOL_ERROR, "decoding error" );
150                         rs->sr_err = SLAPD_DISCONNECT;
151                         goto done;
152                 }
153         }
154
155         if( get_ctrls( op, rs, 1 ) != LDAP_SUCCESS ) {
156                 Debug( LDAP_DEBUG_ANY, "do_extended: get_ctrls failed\n", 0, 0 ,0 );
157                 return rs->sr_err;
158         } 
159
160         /* check for controls inappropriate for all extended operations */
161         if( get_manageDSAit( op ) == SLAP_CONTROL_CRITICAL ) {
162                 Statslog( LDAP_DEBUG_STATS, "%s EXT oid=%s\n",
163                     op->o_log_prefix, op->ore_reqoid.bv_val, 0, 0, 0 );
164                 send_ldap_error( op, rs,
165                         LDAP_UNAVAILABLE_CRITICAL_EXTENSION,
166                         "manageDSAit control inappropriate" );
167                 goto done;
168         }
169
170         /* FIXME: temporary? */
171         if ( reqdata.bv_val ) {
172                 op->ore_reqdata = &reqdata;
173         }
174
175         op->o_bd = frontendDB;
176         rs->sr_err = frontendDB->be_extended( op, rs );
177
178         /* clean up in case some overlay set them? */
179         if ( !BER_BVISNULL( &op->o_req_ndn ) ) {
180                 if ( !BER_BVISNULL( &op->o_req_dn )
181                         && op->o_req_ndn.bv_val != op->o_req_dn.bv_val )
182                 {
183                         op->o_tmpfree( op->o_req_dn.bv_val, op->o_tmpmemctx );
184                 }
185                 op->o_tmpfree( op->o_req_ndn.bv_val, op->o_tmpmemctx );
186                 BER_BVZERO( &op->o_req_dn );
187                 BER_BVZERO( &op->o_req_ndn );
188         }
189
190 done:
191         return rs->sr_err;
192 }
193
194 int
195 fe_extended( Operation *op, SlapReply *rs )
196 {
197         struct extop_list       *ext = NULL;
198         struct berval           reqdata = BER_BVNULL;
199
200         if (op->ore_reqdata) {
201                 reqdata = *op->ore_reqdata;
202         }
203
204         ext = find_extop(supp_ext_list, &op->ore_reqoid );
205         if ( ext == NULL ) {
206                 Statslog( LDAP_DEBUG_STATS, "%s EXT oid=%s\n",
207                     op->o_log_prefix, op->ore_reqoid.bv_val, 0, 0, 0 );
208                 Debug( LDAP_DEBUG_ANY, "do_extended: unsupported operation \"%s\"\n",
209                         op->ore_reqoid.bv_val, 0 ,0 );
210                 send_ldap_error( op, rs, LDAP_PROTOCOL_ERROR,
211                         "unsupported extended operation" );
212                 goto done;
213         }
214
215         op->ore_flags = ext->flags;
216
217         Debug( LDAP_DEBUG_ARGS, "do_extended: oid=%s\n",
218                 op->ore_reqoid.bv_val, 0 ,0 );
219
220         { /* start of OpenLDAP extended operation */
221                 BackendDB       *bd = op->o_bd;
222
223                 rs->sr_err = (ext->ext_main)( op, rs );
224
225                 if( rs->sr_err != SLAPD_ABANDON ) {
226                         if ( rs->sr_err == LDAP_REFERRAL && rs->sr_ref == NULL ) {
227                                 rs->sr_ref = referral_rewrite( default_referral,
228                                         NULL, NULL, LDAP_SCOPE_DEFAULT );
229                                 if ( !rs->sr_ref ) rs->sr_ref = default_referral;
230                                 if ( !rs->sr_ref ) {
231                                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
232                                         rs->sr_text = "referral missing";
233                                 }
234                         }
235
236                         if ( op->o_bd == NULL )
237                                 op->o_bd = bd;
238                         send_ldap_extended( op, rs );
239
240                         if ( rs->sr_ref != default_referral ) {
241                                 ber_bvarray_free( rs->sr_ref );
242                                 rs->sr_ref = NULL;
243                         }
244                 }
245
246                 if ( rs->sr_rspoid != NULL ) {
247                         free( (char *)rs->sr_rspoid );
248                 }
249
250                 if ( rs->sr_rspdata != NULL ) {
251                         ber_bvfree( rs->sr_rspdata );
252                 }
253         } /* end of OpenLDAP extended operation */
254
255 done:;
256         return rs->sr_err;
257 }
258
259 int
260 load_extop2(
261         const struct berval *ext_oid,
262         slap_mask_t ext_flags,
263         SLAP_EXTOP_MAIN_FN *ext_main,
264         unsigned flags )
265 {
266         struct berval           oidm = BER_BVNULL;
267         struct extop_list       *ext;
268         int                     insertme = 0;
269
270         if ( !ext_main ) {
271                 return -1; 
272         }
273
274         if ( ext_oid == NULL || BER_BVISNULL( ext_oid ) ||
275                 BER_BVISEMPTY( ext_oid ) )
276         {
277                 return -1; 
278         }
279
280         if ( numericoidValidate( NULL, (struct berval *)ext_oid ) !=
281                 LDAP_SUCCESS )
282         {
283                 oidm.bv_val = oidm_find( ext_oid->bv_val );
284                 if ( oidm.bv_val == NULL ) {
285                         return -1;
286                 }
287                 oidm.bv_len = strlen( oidm.bv_val );
288                 ext_oid = &oidm;
289         }
290
291         for ( ext = supp_ext_list; ext; ext = ext->next ) {
292                 if ( bvmatch( ext_oid, &ext->oid ) ) {
293                         if ( flags == 1 ) {
294                                 break;
295                         }
296                         return -1;
297                 }
298         }
299
300         if ( flags == 0 || ext == NULL ) {
301                 ext = ch_calloc( 1, sizeof(struct extop_list) + ext_oid->bv_len + 1 );
302                 if ( ext == NULL ) {
303                         return(-1);
304                 }
305
306                 ext->oid.bv_val = (char *)(ext + 1);
307                 AC_MEMCPY( ext->oid.bv_val, ext_oid->bv_val, ext_oid->bv_len );
308                 ext->oid.bv_len = ext_oid->bv_len;
309                 ext->oid.bv_val[ext->oid.bv_len] = '\0';
310
311                 insertme = 1;
312         }
313
314         ext->flags = ext_flags;
315         ext->ext_main = ext_main;
316
317         if ( insertme ) {
318                 ext->next = supp_ext_list;
319                 supp_ext_list = ext;
320         }
321
322         return(0);
323 }
324
325 int
326 extops_init (void)
327 {
328         int i;
329
330         for ( i = 0; builtin_extops[i].oid != NULL; i++ ) {
331                 load_extop( (struct berval *)builtin_extops[i].oid,
332                         builtin_extops[i].flags,
333                         builtin_extops[i].ext_main );
334         }
335         return(0);
336 }
337
338 int
339 extops_kill (void)
340 {
341         struct extop_list *ext;
342
343         /* we allocated the memory, so we have to free it, too. */
344         while ((ext = supp_ext_list) != NULL) {
345                 supp_ext_list = ext->next;
346                 ch_free(ext);
347         }
348         return(0);
349 }
350
351 static struct extop_list *
352 find_extop( struct extop_list *list, struct berval *oid )
353 {
354         struct extop_list *ext;
355
356         for (ext = list; ext; ext = ext->next) {
357                 if (bvmatch(&ext->oid, oid))
358                         return(ext);
359         }
360         return(NULL);
361 }
362
363
364 const struct berval slap_EXOP_WHOAMI = BER_BVC(LDAP_EXOP_WHO_AM_I);
365
366 static int
367 whoami_extop (
368         Operation *op,
369         SlapReply *rs )
370 {
371         struct berval *bv;
372
373         if ( op->ore_reqdata != NULL ) {
374                 /* no request data should be provided */
375                 rs->sr_text = "no request data expected";
376                 return LDAP_PROTOCOL_ERROR;
377         }
378
379         Statslog( LDAP_DEBUG_STATS, "%s WHOAMI\n",
380             op->o_log_prefix, 0, 0, 0, 0 );
381
382         op->o_bd = op->o_conn->c_authz_backend;
383         if( backend_check_restrictions( op, rs,
384                 (struct berval *)&slap_EXOP_WHOAMI ) != LDAP_SUCCESS )
385         {
386                 return rs->sr_err;
387         }
388
389         bv = (struct berval *) ch_malloc( sizeof(struct berval) );
390         if( op->o_dn.bv_len ) {
391                 bv->bv_len = op->o_dn.bv_len + STRLENOF( "dn:" );
392                 bv->bv_val = ch_malloc( bv->bv_len + 1 );
393                 AC_MEMCPY( bv->bv_val, "dn:", STRLENOF( "dn:" ) );
394                 AC_MEMCPY( &bv->bv_val[STRLENOF( "dn:" )], op->o_dn.bv_val,
395                         op->o_dn.bv_len );
396                 bv->bv_val[bv->bv_len] = '\0';
397
398         } else {
399                 bv->bv_len = 0;
400                 bv->bv_val = NULL;
401         }
402
403         rs->sr_rspdata = bv;
404         return LDAP_SUCCESS;
405 }