]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/extended.c
57223f2f5f4e0d5e47ceb40221ec23a763fe2416
[openldap] / servers / slapd / back-ldap / extended.c
1 /* extended.c - ldap backend extended routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2010 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by the Howard Chu for inclusion
18  * in OpenLDAP Software and subsequently enhanced by Pierangelo
19  * Masarati. 
20  */
21
22 #include "portable.h"
23
24 #include <stdio.h>
25 #include <ac/string.h>
26
27 #include "slap.h"
28 #include "back-ldap.h"
29 #include "lber_pvt.h"
30
31 typedef int (ldap_back_exop_f)( Operation *op, SlapReply *rs, ldapconn_t **lc );
32
33 static ldap_back_exop_f ldap_back_exop_passwd;
34 static ldap_back_exop_f ldap_back_exop_generic;
35
36 static struct exop {
37         struct berval           oid;
38         ldap_back_exop_f        *extended;
39 } exop_table[] = {
40         { BER_BVC(LDAP_EXOP_MODIFY_PASSWD),     ldap_back_exop_passwd },
41         { BER_BVNULL, NULL }
42 };
43
44 static int
45 ldap_back_extended_one( Operation *op, SlapReply *rs, ldap_back_exop_f exop )
46 {
47         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
48
49         ldapconn_t      *lc = NULL;
50         LDAPControl     **ctrls = NULL, **oldctrls = NULL;
51         int             rc;
52
53         /* FIXME: this needs to be called here, so it is
54          * called twice; maybe we could avoid the 
55          * ldap_back_dobind() call inside each extended()
56          * call ... */
57         if ( !ldap_back_dobind( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
58                 return -1;
59         }
60
61         ctrls = op->o_ctrls;
62         if ( ldap_back_controls_add( op, rs, lc, &ctrls ) )
63         {
64                 op->o_ctrls = oldctrls;
65                 send_ldap_extended( op, rs );
66                 rs->sr_text = NULL;
67                 /* otherwise frontend resends result */
68                 rc = rs->sr_err = SLAPD_ABANDON;
69                 goto done;
70         }
71
72         op->o_ctrls = ctrls;
73         rc = exop( op, rs, &lc );
74
75         op->o_ctrls = oldctrls;
76         (void)ldap_back_controls_free( op, rs, &ctrls );
77
78 done:;
79         if ( lc != NULL ) {
80                 ldap_back_release_conn( li, lc );
81         }
82                         
83         return rc;
84 }
85
86 int
87 ldap_back_extended(
88                 Operation       *op,
89                 SlapReply       *rs )
90 {
91         int     i;
92
93         for ( i = 0; exop_table[i].extended != NULL; i++ ) {
94                 if ( bvmatch( &exop_table[i].oid, &op->oq_extended.rs_reqoid ) )
95                 {
96                         return ldap_back_extended_one( op, rs, exop_table[i].extended );
97                 }
98         }
99
100         /* if we get here, the exop is known; the best that we can do
101          * is pass it thru as is */
102         /* FIXME: maybe a list of OIDs to pass thru would be safer */
103         return ldap_back_extended_one( op, rs, ldap_back_exop_generic );
104 }
105
106 static int
107 ldap_back_exop_passwd(
108         Operation       *op,
109         SlapReply       *rs,
110         ldapconn_t      **lcp )
111 {
112         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
113
114         ldapconn_t      *lc = *lcp;
115         req_pwdexop_s   *qpw = &op->oq_pwdexop;
116         LDAPMessage     *res;
117         ber_int_t       msgid;
118         int             rc, isproxy, freedn = 0;
119         int             do_retry = 1;
120         char            *text = NULL;
121         struct berval   dn = op->o_req_dn,
122                         ndn = op->o_req_ndn;
123
124         assert( lc != NULL );
125         assert( rs->sr_ctrls == NULL );
126
127         if ( BER_BVISNULL( &ndn ) && op->ore_reqdata != NULL ) {
128                 /* NOTE: most of this code is mutated
129                  * from slap_passwd_parse();
130                  * But here we only need
131                  * the first berval... */
132
133                 ber_tag_t tag;
134                 ber_len_t len = -1;
135                 BerElementBuffer berbuf;
136                 BerElement *ber = (BerElement *)&berbuf;
137
138                 struct berval   tmpid = BER_BVNULL;
139
140                 if ( op->ore_reqdata->bv_len == 0 ) {
141                         return LDAP_PROTOCOL_ERROR;
142                 }
143
144                 /* ber_init2 uses reqdata directly, doesn't allocate new buffers */
145                 ber_init2( ber, op->ore_reqdata, 0 );
146
147                 tag = ber_scanf( ber, "{" /*}*/ );
148
149                 if ( tag == LBER_ERROR ) {
150                         return LDAP_PROTOCOL_ERROR;
151                 }
152
153                 tag = ber_peek_tag( ber, &len );
154                 if ( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_ID ) {
155                         tag = ber_get_stringbv( ber, &tmpid, LBER_BV_NOTERM );
156
157                         if ( tag == LBER_ERROR ) {
158                                 return LDAP_PROTOCOL_ERROR;
159                         }
160                 }
161
162                 if ( !BER_BVISEMPTY( &tmpid ) ) {
163                         char idNull = tmpid.bv_val[tmpid.bv_len];
164                         tmpid.bv_val[tmpid.bv_len] = '\0';
165                         rs->sr_err = dnPrettyNormal( NULL, &tmpid, &dn,
166                                 &ndn, op->o_tmpmemctx );
167                         tmpid.bv_val[tmpid.bv_len] = idNull;
168                         if ( rs->sr_err != LDAP_SUCCESS ) {
169                                 /* should have been successfully parsed earlier! */
170                                 return rs->sr_err;
171                         }
172                         freedn = 1;
173
174                 } else {
175                         dn = op->o_dn;
176                         ndn = op->o_ndn;
177                 }
178         }
179
180         isproxy = ber_bvcmp( &ndn, &op->o_ndn );
181
182         Debug( LDAP_DEBUG_ARGS, "==> ldap_back_exop_passwd(\"%s\")%s\n",
183                 dn.bv_val, isproxy ? " (proxy)" : "", 0 );
184
185 retry:
186         rc = ldap_passwd( lc->lc_ld, isproxy ? &dn : NULL,
187                 qpw->rs_old.bv_val ? &qpw->rs_old : NULL,
188                 qpw->rs_new.bv_val ? &qpw->rs_new : NULL,
189                 op->o_ctrls, NULL, &msgid );
190
191         if ( rc == LDAP_SUCCESS ) {
192                 /* TODO: set timeout? */
193                 /* by now, make sure no timeout is used (ITS#6282) */
194                 struct timeval tv = { -1, 0 };
195                 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
196                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
197                         rs->sr_err = rc;
198
199                 } else {
200                         /* only touch when activity actually took place... */
201                         if ( li->li_idle_timeout && lc ) {
202                                 lc->lc_time = op->o_time;
203                         }
204
205                         /* sigh. parse twice, because parse_passwd
206                          * doesn't give us the err / match / msg info.
207                          */
208                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
209                                         (char **)&rs->sr_matched,
210                                         &text,
211                                         NULL, &rs->sr_ctrls, 0 );
212
213                         if ( rc == LDAP_SUCCESS ) {
214                                 if ( rs->sr_err == LDAP_SUCCESS ) {
215                                         struct berval   newpw;
216
217                                         /* this never happens because 
218                                          * the frontend is generating 
219                                          * the new password, so when
220                                          * the passwd exop is proxied,
221                                          * it never delegates password
222                                          * generation to the remote server
223                                          */
224                                         rc = ldap_parse_passwd( lc->lc_ld, res,
225                                                         &newpw );
226                                         if ( rc == LDAP_SUCCESS &&
227                                                         !BER_BVISNULL( &newpw ) )
228                                         {
229                                                 rs->sr_type = REP_EXTENDED;
230                                                 rs->sr_rspdata = slap_passwd_return( &newpw );
231                                                 free( newpw.bv_val );
232                                         }
233
234                                 } else {
235                                         rc = rs->sr_err;
236                                 }
237                         }
238                         ldap_msgfree( res );
239                 }
240         }
241
242         if ( rc != LDAP_SUCCESS ) {
243                 rs->sr_err = slap_map_api2result( rs );
244                 if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
245                         do_retry = 0;
246                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
247                                 goto retry;
248                         }
249                 }
250
251                 if ( LDAP_BACK_QUARANTINE( li ) ) {
252                         ldap_back_quarantine( op, rs );
253                 }
254
255                 if ( text ) rs->sr_text = text;
256                 send_ldap_extended( op, rs );
257                 /* otherwise frontend resends result */
258                 rc = rs->sr_err = SLAPD_ABANDON;
259
260         } else if ( LDAP_BACK_QUARANTINE( li ) ) {
261                 ldap_back_quarantine( op, rs );
262         }
263
264         if ( freedn ) {
265                 op->o_tmpfree( dn.bv_val, op->o_tmpmemctx );
266                 op->o_tmpfree( ndn.bv_val, op->o_tmpmemctx );
267         }
268
269         /* these have to be freed anyway... */
270         if ( rs->sr_matched ) {
271                 free( (char *)rs->sr_matched );
272                 rs->sr_matched = NULL;
273         }
274
275         if ( rs->sr_ctrls ) {
276                 ldap_controls_free( rs->sr_ctrls );
277                 rs->sr_ctrls = NULL;
278         }
279
280         if ( text ) {
281                 free( text );
282                 rs->sr_text = NULL;
283         }
284
285         /* in case, cleanup handler */
286         if ( lc == NULL ) {
287                 *lcp = NULL;
288         }
289
290         return rc;
291 }
292
293 static int
294 ldap_back_exop_generic(
295         Operation       *op,
296         SlapReply       *rs,
297         ldapconn_t      **lcp )
298 {
299         ldapinfo_t      *li = (ldapinfo_t *) op->o_bd->be_private;
300
301         ldapconn_t      *lc = *lcp;
302         LDAPMessage     *res;
303         ber_int_t       msgid;
304         int             rc;
305         int             do_retry = 1;
306         char            *text = NULL;
307
308         Debug( LDAP_DEBUG_ARGS, "==> ldap_back_exop_generic(%s, \"%s\")\n",
309                 op->ore_reqoid.bv_val, op->o_req_dn.bv_val, 0 );
310         assert( lc != NULL );
311         assert( rs->sr_ctrls == NULL );
312
313 retry:
314         rc = ldap_extended_operation( lc->lc_ld,
315                 op->ore_reqoid.bv_val, op->ore_reqdata,
316                 op->o_ctrls, NULL, &msgid );
317
318         if ( rc == LDAP_SUCCESS ) {
319                 /* TODO: set timeout? */
320                 /* by now, make sure no timeout is used (ITS#6282) */
321                 struct timeval tv = { -1, 0 };
322                 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, &tv, &res ) == -1 ) {
323                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
324                         rs->sr_err = rc;
325
326                 } else {
327                         /* only touch when activity actually took place... */
328                         if ( li->li_idle_timeout && lc ) {
329                                 lc->lc_time = op->o_time;
330                         }
331
332                         /* sigh. parse twice, because parse_passwd
333                          * doesn't give us the err / match / msg info.
334                          */
335                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
336                                         (char **)&rs->sr_matched,
337                                         &text,
338                                         NULL, &rs->sr_ctrls, 0 );
339                         if ( rc == LDAP_SUCCESS ) {
340                                 if ( rs->sr_err == LDAP_SUCCESS ) {
341                                         rc = ldap_parse_extended_result( lc->lc_ld, res,
342                                                         (char **)&rs->sr_rspoid, &rs->sr_rspdata, 0 );
343                                         if ( rc == LDAP_SUCCESS ) {
344                                                 rs->sr_type = REP_EXTENDED;
345                                         }
346
347                                 } else {
348                                         rc = rs->sr_err;
349                                 }
350                         }
351                         ldap_msgfree( res );
352                 }
353         }
354
355         if ( rc != LDAP_SUCCESS ) {
356                 rs->sr_err = slap_map_api2result( rs );
357                 if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
358                         do_retry = 0;
359                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
360                                 goto retry;
361                         }
362                 }
363
364                 if ( LDAP_BACK_QUARANTINE( li ) ) {
365                         ldap_back_quarantine( op, rs );
366                 }
367
368                 if ( text ) rs->sr_text = text;
369                 send_ldap_extended( op, rs );
370                 /* otherwise frontend resends result */
371                 rc = rs->sr_err = SLAPD_ABANDON;
372
373         } else if ( LDAP_BACK_QUARANTINE( li ) ) {
374                 ldap_back_quarantine( op, rs );
375         }
376
377         /* these have to be freed anyway... */
378         if ( rs->sr_matched ) {
379                 free( (char *)rs->sr_matched );
380                 rs->sr_matched = NULL;
381         }
382
383         if ( rs->sr_ctrls ) {
384                 ldap_controls_free( rs->sr_ctrls );
385                 rs->sr_ctrls = NULL;
386         }
387
388         if ( text ) {
389                 free( text );
390                 rs->sr_text = NULL;
391         }
392
393         /* in case, cleanup handler */
394         if ( lc == NULL ) {
395                 *lcp = NULL;
396         }
397
398         return rc;
399 }
400