]> git.sur5r.net Git - openldap/blob - servers/slapd/extended.c
ITS#955: update cosine schema based upon X.500 recommendations
[openldap] / servers / slapd / extended.c
1 /* $OpenLDAP$ */
2 /* 
3  * Copyright 1999-2000 The OpenLDAP Foundation.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 /*
13  * LDAPv3 Extended Operation Request
14  *      ExtendedRequest ::= [APPLICATION 23] SEQUENCE {
15  *              requestName      [0] LDAPOID,
16  *              requestValue     [1] OCTET STRING OPTIONAL
17  *      }
18  *
19  * LDAPv3 Extended Operation Response
20  *      ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
21  *              COMPONENTS OF LDAPResult,
22  *              responseName     [10] LDAPOID OPTIONAL,
23  *              response         [11] OCTET STRING OPTIONAL
24  *      }
25  *
26  */
27
28 #include "portable.h"
29
30 #include <stdio.h>
31 #include <ac/socket.h>
32
33 #include "slap.h"
34
35 #define MAX_OID_LENGTH  128
36
37 typedef struct extop_list_t {
38         struct extop_list_t *next;
39         char *oid;
40         SLAP_EXTOP_MAIN_FN ext_main;
41 } extop_list_t;
42
43 extop_list_t *supp_ext_list = NULL;
44
45 /* this list of built-in extops is for extops that are not part
46  * of backends or in external modules.  essentially, this is
47  * just a way to get built-in extops onto the extop list without
48  * having a separate init routine for each built-in extop.
49  */
50 struct {
51         char *oid;
52         SLAP_EXTOP_MAIN_FN ext_main;
53 } builtin_extops[] = {
54 #ifdef HAVE_TLS
55                 { LDAP_EXOP_START_TLS, starttls_extop },
56 #endif
57                 { LDAP_EXOP_X_MODIFY_PASSWD, passwd_extop },
58                 { NULL, NULL }
59         };
60
61
62 static extop_list_t *find_extop( extop_list_t *list, char *oid );
63
64 char *
65 get_supported_extop (int index)
66 {
67         extop_list_t *ext;
68
69         /* linear scan is slow, but this way doesn't force a
70          * big change on root_dse.c, where this routine is used.
71          */
72         for (ext = supp_ext_list; ext != NULL && --index >= 0; ext = ext->next) ;
73         if (ext == NULL)
74                 return(NULL);
75         return(ext->oid);
76 }
77
78 int
79 do_extended(
80     Connection  *conn,
81     Operation   *op
82 )
83 {
84         int rc = LDAP_SUCCESS;
85         char* reqoid;
86         struct berval *reqdata;
87         ber_tag_t tag;
88         ber_len_t len;
89         extop_list_t *ext;
90         const char *text;
91         struct berval **refs;
92         char *rspoid;
93         struct berval *rspdata;
94         LDAPControl **rspctrls;
95
96         Debug( LDAP_DEBUG_TRACE, "do_extended\n", 0, 0, 0 );
97
98         reqoid = NULL;
99         reqdata = NULL;
100
101         if( op->o_protocol < LDAP_VERSION3 ) {
102                 Debug( LDAP_DEBUG_ANY, "do_extended: protocol version (%d) too low\n",
103                         op->o_protocol, 0 ,0 );
104                 send_ldap_disconnect( conn, op,
105                         LDAP_PROTOCOL_ERROR, "requires LDAPv3" );
106                 rc = -1;
107                 goto done;
108         }
109
110         if ( ber_scanf( op->o_ber, "{a" /*}*/, &reqoid ) == LBER_ERROR ) {
111                 Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
112                 send_ldap_disconnect( conn, op,
113                         LDAP_PROTOCOL_ERROR, "decoding error" );
114                 rc = -1;
115                 goto done;
116         }
117
118         if( !(ext = find_extop(supp_ext_list, reqoid)) ) {
119                 Debug( LDAP_DEBUG_ANY, "do_extended: unsupported operation \"%s\"\n",
120                         reqoid, 0 ,0 );
121                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
122                         NULL, "unsupported extended operation", NULL, NULL );
123                 goto done;
124         }
125
126         tag = ber_peek_tag( op->o_ber, &len );
127         
128         if( ber_peek_tag( op->o_ber, &len ) == LDAP_TAG_EXOP_REQ_VALUE ) {
129                 if( ber_scanf( op->o_ber, "O", &reqdata ) == LBER_ERROR ) {
130                         Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
131                         send_ldap_disconnect( conn, op,
132                                 LDAP_PROTOCOL_ERROR, "decoding error" );
133                         rc = -1;
134                         goto done;
135                 }
136         }
137
138         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
139                 Debug( LDAP_DEBUG_ANY, "do_extended: get_ctrls failed\n", 0, 0 ,0 );
140                 return rc;
141         } 
142
143         Debug( LDAP_DEBUG_ARGS, "do_extended: oid=%s\n", reqoid, 0 ,0 );
144
145         rspoid = NULL;
146         rspdata = NULL;
147         rspctrls = NULL;
148         text = NULL;
149         refs = NULL;
150
151         rc = (ext->ext_main)( conn, op,
152                 reqoid, reqdata,
153                 &rspoid, &rspdata, &rspctrls, &text, &refs );
154
155         if( rc != SLAPD_ABANDON ) {
156                 if (rc == LDAP_REFERRAL) {
157                         refs = default_referral;
158                 }
159
160                 send_ldap_extended( conn, op, rc, NULL, text, refs,
161                         rspoid, rspdata, rspctrls );
162         }
163
164         if ( rspoid != NULL ) {
165                 free( rspoid );
166         }
167
168         if ( rspdata != NULL )
169                 ber_bvfree( rspdata );
170
171 done:
172         if ( reqdata != NULL ) {
173                 ber_bvfree( reqdata );
174         }
175         if ( reqoid != NULL ) {
176                 free( reqoid );
177         }
178
179         return rc;
180 }
181
182 int
183 load_extop(
184         const char *ext_oid,
185         SLAP_EXTOP_MAIN_FN ext_main )
186 {
187         extop_list_t *ext;
188
189         if( ext_oid == NULL || *ext_oid == '\0' ) return -1; 
190         if(!ext_main) return -1; 
191
192         ext = ch_calloc(1, sizeof(extop_list_t));
193         if (ext == NULL)
194                 return(-1);
195
196         ext->oid = ch_strdup( ext_oid );
197         if (ext->oid == NULL) {
198                 free(ext);
199                 return(-1);
200         }
201
202         ext->ext_main = ext_main;
203         ext->next = supp_ext_list;
204
205         supp_ext_list = ext;
206
207         return(0);
208 }
209
210 int
211 extops_init (void)
212 {
213         int i;
214
215         for (i = 0; builtin_extops[i].oid != NULL; i++) {
216                 load_extop(builtin_extops[i].oid, builtin_extops[i].ext_main);
217         }
218         return(0);
219 }
220
221 int
222 extops_kill (void)
223 {
224         extop_list_t *ext;
225
226         /* we allocated the memory, so we have to free it, too. */
227         while ((ext = supp_ext_list) != NULL) {
228                 supp_ext_list = ext->next;
229                 if (ext->oid != NULL)
230                         ch_free(ext->oid);
231                 ch_free(ext);
232         }
233         return(0);
234 }
235
236 static extop_list_t *
237 find_extop( extop_list_t *list, char *oid )
238 {
239         extop_list_t *ext;
240
241         for (ext = list; ext; ext = ext->next) {
242                 if (strcmp(ext->oid, oid) == 0)
243                         return(ext);
244         }
245         return(NULL);
246 }