]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/extended.c
cleanup
[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-2006 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 static BI_op_extended ldap_back_exop_passwd;
32 static BI_op_extended ldap_back_exop_generic;
33
34 static struct exop {
35         struct berval   oid;
36         BI_op_extended  *extended;
37 } exop_table[] = {
38         { BER_BVC(LDAP_EXOP_MODIFY_PASSWD),     ldap_back_exop_passwd },
39         { BER_BVNULL, NULL }
40 };
41
42 static int
43 ldap_back_extended_one( Operation *op, SlapReply *rs, BI_op_extended exop )
44 {
45         ldapconn_t      *lc;
46         LDAPControl     **oldctrls = NULL;
47         int             rc;
48
49         /* FIXME: this needs to be called here, so it is
50          * called twice; maybe we could avoid the 
51          * ldap_back_dobind() call inside each extended()
52          * call ... */
53         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
54         if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
55                 return -1;
56         }
57
58         oldctrls = op->o_ctrls;
59         if ( ldap_back_proxy_authz_ctrl( lc, op, rs, &op->o_ctrls ) ) {
60                 op->o_ctrls = oldctrls;
61                 send_ldap_extended( op, rs );
62                 rs->sr_text = NULL;
63                 /* otherwise frontend resends result */
64                 rc = rs->sr_err = SLAPD_ABANDON;
65                 goto done;
66         }
67
68         rc = exop( op, rs );
69
70         if ( op->o_ctrls && op->o_ctrls != oldctrls ) {
71                 free( op->o_ctrls[ 0 ] );
72                 free( op->o_ctrls );
73         }
74         op->o_ctrls = oldctrls;
75
76 done:;
77         if ( lc != NULL ) {
78                 ldap_back_release_conn( op, rs, lc );
79         }
80                         
81         return rc;
82 }
83
84 int
85 ldap_back_extended(
86                 Operation       *op,
87                 SlapReply       *rs )
88 {
89         int     i;
90
91         for ( i = 0; exop_table[i].extended != NULL; i++ ) {
92                 if ( bvmatch( &exop_table[i].oid, &op->oq_extended.rs_reqoid ) )
93                 {
94                         return ldap_back_extended_one( op, rs, exop_table[i].extended );
95                 }
96         }
97
98         /* if we get here, the exop is known; the best that we can do
99          * is pass it thru as is */
100         /* FIXME: maybe a list of OIDs to pass thru would be safer */
101         return ldap_back_extended_one( op, rs, ldap_back_exop_generic );
102 }
103
104 static int
105 ldap_back_exop_passwd(
106                 Operation       *op,
107                 SlapReply       *rs )
108 {
109         ldapconn_t      *lc;
110         req_pwdexop_s   *qpw = &op->oq_pwdexop;
111         LDAPMessage     *res;
112         ber_int_t       msgid;
113         int             rc, isproxy;
114         int             do_retry = 1;
115
116         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
117         if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
118                 return -1;
119         }
120
121         isproxy = ber_bvcmp( &op->o_req_ndn, &op->o_ndn );
122
123         Debug( LDAP_DEBUG_ARGS, "==> ldap_back_exop_passwd(\"%s\")%s\n",
124                 op->o_req_dn.bv_val, isproxy ? " (proxy)" : "", 0 );
125
126 retry:
127         rc = ldap_passwd( lc->lc_ld, isproxy ? &op->o_req_dn : NULL,
128                 qpw->rs_old.bv_val ? &qpw->rs_old : NULL,
129                 qpw->rs_new.bv_val ? &qpw->rs_new : NULL,
130                 op->o_ctrls, NULL, &msgid );
131
132         if ( rc == LDAP_SUCCESS ) {
133                 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, NULL, &res ) == -1 ) {
134                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
135                         ldap_back_freeconn( op, lc, 0 );
136                         lc = NULL;
137
138                 } else {
139                         /* sigh. parse twice, because parse_passwd
140                          * doesn't give us the err / match / msg info.
141                          */
142                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
143                                         (char **)&rs->sr_matched,
144                                         (char **)&rs->sr_text,
145                                         NULL, NULL, 0 );
146
147                         if ( rc == LDAP_SUCCESS ) {
148                                 if ( rs->sr_err == LDAP_SUCCESS ) {
149                                         struct berval   newpw;
150
151                                         /* this never happens because 
152                                          * the frontend is generating 
153                                          * the new password, so when
154                                          * the passwd exop is proxied,
155                                          * it never delegates password
156                                          * generation to the remote server
157                                          */
158                                         rc = ldap_parse_passwd( lc->lc_ld, res,
159                                                         &newpw );
160                                         if ( rc == LDAP_SUCCESS &&
161                                                         !BER_BVISNULL( &newpw ) )
162                                         {
163                                                 rs->sr_type = REP_EXTENDED;
164                                                 rs->sr_rspdata = slap_passwd_return( &newpw );
165                                                 free( newpw.bv_val );
166                                         }
167
168                                 } else {
169                                         rc = rs->sr_err;
170                                 }
171                         }
172                         ldap_msgfree( res );
173                 }
174         }
175         if ( rc != LDAP_SUCCESS ) {
176                 rs->sr_err = slap_map_api2result( rs );
177                 if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
178                         do_retry = 0;
179                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
180                                 goto retry;
181                         }
182                 }
183                 send_ldap_extended( op, rs );
184                 /* otherwise frontend resends result */
185                 rc = rs->sr_err = SLAPD_ABANDON;
186         }
187
188         /* these have to be freed anyway... */
189         if ( rs->sr_matched ) {
190                 free( (char *)rs->sr_matched );
191                 rs->sr_matched = NULL;
192         }
193         if ( rs->sr_text ) {
194                 free( (char *)rs->sr_text );
195                 rs->sr_text = NULL;
196         }
197
198         if ( lc != NULL ) {
199                 ldap_back_release_conn( op, rs, lc );
200         }
201
202         return rc;
203 }
204
205 static int
206 ldap_back_exop_generic(
207         Operation       *op,
208         SlapReply       *rs )
209 {
210         ldapconn_t      *lc;
211         LDAPMessage     *res;
212         ber_int_t       msgid;
213         int             rc;
214         int             do_retry = 1;
215
216         lc = ldap_back_getconn( op, rs, LDAP_BACK_SENDERR );
217         if ( !lc || !ldap_back_dobind( lc, op, rs, LDAP_BACK_SENDERR ) ) {
218                 return -1;
219         }
220
221         Debug( LDAP_DEBUG_ARGS, "==> ldap_back_exop_generic(%s, \"%s\")\n",
222                 op->ore_reqoid.bv_val, op->o_req_dn.bv_val, 0 );
223
224 retry:
225         rc = ldap_extended_operation( lc->lc_ld,
226                 op->ore_reqoid.bv_val, op->ore_reqdata,
227                 op->o_ctrls, NULL, &msgid );
228
229         if ( rc == LDAP_SUCCESS ) {
230                 if ( ldap_result( lc->lc_ld, msgid, LDAP_MSG_ALL, NULL, &res ) == -1 ) {
231                         ldap_get_option( lc->lc_ld, LDAP_OPT_ERROR_NUMBER, &rc );
232                         ldap_back_freeconn( op, lc, 0 );
233                         lc = NULL;
234
235                 } else {
236                         /* sigh. parse twice, because parse_passwd
237                          * doesn't give us the err / match / msg info.
238                          */
239                         rc = ldap_parse_result( lc->lc_ld, res, &rs->sr_err,
240                                         (char **)&rs->sr_matched,
241                                         (char **)&rs->sr_text,
242                                         NULL, NULL, 0 );
243                         if ( rc == LDAP_SUCCESS ) {
244                                 if ( rs->sr_err == LDAP_SUCCESS ) {
245                                         rc = ldap_parse_extended_result( lc->lc_ld, res,
246                                                         (char **)&rs->sr_rspoid, &rs->sr_rspdata, 0 );
247                                         if ( rc == LDAP_SUCCESS ) {
248                                                 rs->sr_type = REP_EXTENDED;
249                                         }
250
251                                 } else {
252                                         rc = rs->sr_err;
253                                 }
254                         }
255                         ldap_msgfree( res );
256                 }
257         }
258         if ( rc != LDAP_SUCCESS ) {
259                 rs->sr_err = slap_map_api2result( rs );
260                 if ( rs->sr_err == LDAP_UNAVAILABLE && do_retry ) {
261                         do_retry = 0;
262                         if ( ldap_back_retry( &lc, op, rs, LDAP_BACK_SENDERR ) ) {
263                                 goto retry;
264                         }
265                 }
266                 send_ldap_extended( op, rs );
267                 /* otherwise frontend resends result */
268                 rc = rs->sr_err = SLAPD_ABANDON;
269         }
270
271         /* these have to be freed anyway... */
272         if ( rs->sr_matched ) {
273                 free( (char *)rs->sr_matched );
274                 rs->sr_matched = NULL;
275         }
276         if ( rs->sr_text ) {
277                 free( (char *)rs->sr_text );
278                 rs->sr_text = NULL;
279         }
280
281         if ( lc != NULL ) {
282                 ldap_back_release_conn( op, rs, lc );
283         }
284
285         return rc;
286 }
287