]> git.sur5r.net Git - openldap/blob - servers/slapd/extended.c
Place passwd extended op into builtin list.
[openldap] / servers / slapd / extended.c
1 /* $OpenLDAP$ */
2 /* 
3  * Copyright 1999 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 static int extop_callback(
65         Connection *conn, Operation *op,
66         int msg, int arg, void *argp);
67
68 char *
69 get_supported_extop (int index)
70 {
71         extop_list_t *ext;
72
73         /* linear scan is slow, but this way doesn't force a
74          * big change on root_dse.c, where this routine is used.
75          */
76         for (ext = supp_ext_list; ext != NULL && --index >= 0; ext = ext->next) ;
77         if (ext == NULL)
78                 return(NULL);
79         return(ext->oid);
80 }
81
82 int
83 do_extended(
84     Connection  *conn,
85     Operation   *op
86 )
87 {
88         int rc = LDAP_SUCCESS;
89         char* oid;
90         struct berval *reqdata;
91         ber_tag_t tag;
92         ber_len_t len;
93         extop_list_t *ext;
94         char *text;
95         struct berval *rspdata;
96
97         Debug( LDAP_DEBUG_TRACE, "do_extended\n", 0, 0, 0 );
98
99         oid = NULL;
100         reqdata = NULL;
101
102         if( op->o_protocol < LDAP_VERSION3 ) {
103                 Debug( LDAP_DEBUG_ANY, "do_extended: protocol version (%d) too low\n",
104                         op->o_protocol, 0 ,0 );
105                 send_ldap_disconnect( conn, op,
106                         LDAP_PROTOCOL_ERROR, "requires LDAPv3" );
107                 rc = -1;
108                 goto done;
109         }
110
111         if ( ber_scanf( op->o_ber, "{a" /*}*/, &oid ) == LBER_ERROR ) {
112                 Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
113                 send_ldap_disconnect( conn, op,
114                         LDAP_PROTOCOL_ERROR, "decoding error" );
115                 rc = -1;
116                 goto done;
117         }
118
119         if( !(ext = find_extop(supp_ext_list, oid)) ) {
120                 Debug( LDAP_DEBUG_ANY, "do_extended: unsupported operation \"%s\"\n",
121                         oid, 0 ,0 );
122                 send_ldap_result( conn, op, rc = LDAP_PROTOCOL_ERROR,
123                         NULL, "unsupported extended operation", NULL, NULL );
124                 goto done;
125         }
126
127         tag = ber_peek_tag( op->o_ber, &len );
128         
129         if( ber_peek_tag( op->o_ber, &len ) == LDAP_TAG_EXOP_REQ_VALUE ) {
130                 if( ber_scanf( op->o_ber, "O", &reqdata ) == LBER_ERROR ) {
131                         Debug( LDAP_DEBUG_ANY, "do_extended: ber_scanf failed\n", 0, 0 ,0 );
132                         send_ldap_disconnect( conn, op,
133                                 LDAP_PROTOCOL_ERROR, "decoding error" );
134                         rc = -1;
135                         goto done;
136                 }
137         }
138
139         if( (rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
140                 Debug( LDAP_DEBUG_ANY, "do_extended: get_ctrls failed\n", 0, 0 ,0 );
141                 return rc;
142         } 
143
144         Debug( LDAP_DEBUG_ARGS, "do_extended: oid=%s\n", oid, 0 ,0 );
145
146         rspdata = NULL;
147         text = NULL;
148
149         rc = (ext->ext_main)( extop_callback, conn, op,
150                 oid, reqdata, &rspdata, &text );
151
152         if( rc != SLAPD_ABANDON ) {
153                 send_ldap_extended( conn, op, rc, NULL, text,
154                         oid, rspdata );
155         }
156
157         if ( rspdata != NULL )
158                 ber_bvfree( rspdata );
159
160         if ( text != NULL )
161                 free(text);
162
163 done:
164         if ( reqdata != NULL ) {
165                 ber_bvfree( reqdata );
166         }
167         if ( oid != NULL ) {
168                 free( oid );
169         }
170
171         return rc;
172 }
173
174 int
175 load_extop(
176         const char *ext_oid,
177         SLAP_EXTOP_MAIN_FN ext_main )
178 {
179         extop_list_t *ext;
180
181         if( ext_oid == NULL || *ext_oid == '\0' ) return -1; 
182         if(!ext_main) return -1; 
183
184         ext = ch_calloc(1, sizeof(extop_list_t));
185         if (ext == NULL)
186                 return(-1);
187
188         ext->oid = ch_strdup( ext_oid );
189         if (ext->oid == NULL) {
190                 free(ext);
191                 return(-1);
192         }
193
194         ext->ext_main = ext_main;
195         ext->next = supp_ext_list;
196
197         supp_ext_list = ext;
198
199         return(0);
200 }
201
202 int
203 extops_init (void)
204 {
205         int i;
206
207         for (i = 0; builtin_extops[i].oid != NULL; i++) {
208                 load_extop(builtin_extops[i].oid, builtin_extops[i].ext_main);
209         }
210         return(0);
211 }
212
213 int
214 extops_kill (void)
215 {
216         extop_list_t *ext;
217
218         /* we allocated the memory, so we have to free it, too. */
219         while ((ext = supp_ext_list) != NULL) {
220                 supp_ext_list = ext->next;
221                 if (ext->oid != NULL)
222                         ch_free(ext->oid);
223                 ch_free(ext);
224         }
225         return(0);
226 }
227
228 static extop_list_t *
229 find_extop( extop_list_t *list, char *oid )
230 {
231         extop_list_t *ext;
232
233         for (ext = list; ext; ext = ext->next) {
234                 if (strcmp(ext->oid, oid) == 0)
235                         return(ext);
236         }
237         return(NULL);
238 }
239
240 int
241 extop_callback(
242         Connection *conn, Operation *op,
243         int msg, int arg, void *argp)
244 {
245         if (argp == NULL)
246                 return(-1);
247
248         switch (msg) {
249         case SLAPD_EXTOP_GETVERSION:
250                 *(int *)argp = 1;
251                 return(0);
252
253         case SLAPD_EXTOP_GETPROTO:
254                 *(int *)argp = op->o_protocol;
255                 return(0);
256         
257         case SLAPD_EXTOP_GETAUTH:
258                 *(int *)argp = op->o_authtype;
259                 return(0);
260         
261         case SLAPD_EXTOP_GETDN:
262                 *(char **)argp = op->o_dn;
263                 return(0);
264         
265         case SLAPD_EXTOP_GETCLIENT:
266                 if (conn->c_peer_domain != NULL && *conn->c_peer_domain != 0) {
267                         *(char **)argp = conn->c_peer_domain;
268                         return(0);
269                 }
270                 if (conn->c_peer_name != NULL && *conn->c_peer_name != 0) {
271                         *(char **)argp = conn->c_peer_name;
272                         return(0);
273                 }
274                 break;
275         
276         default:
277                 break;
278         }
279         return(-1);
280 }