]> git.sur5r.net Git - openldap/blob - servers/slapd/result.c
Add support for users to -DSLAPD_UNDEFINED_OC_IS_NOT_EXTENSIBLE
[openldap] / servers / slapd / result.c
1 /* result.c - routines to send ldap results, errors, and referrals */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6
7 #include <ac/errno.h>
8 #include <ac/signal.h>
9 #include <ac/socket.h>
10 #include <ac/string.h>
11 #include <ac/time.h>
12 #include <ac/unistd.h>          /* get close() */
13
14 #include "slap.h"
15
16
17 static void
18 send_ldap_result2(
19     Connection  *conn,
20     Operation   *op,
21     int         err,
22     char        *matched,
23     char        *text,
24     int         nentries
25 )
26 {
27         BerElement      *ber;
28         int             rc, sd;
29         unsigned long   tag, bytes;
30
31         if ( err == LDAP_PARTIAL_RESULTS && (text == NULL || *text == '\0') )
32                 err = LDAP_NO_SUCH_OBJECT;
33
34         Debug( LDAP_DEBUG_TRACE, "send_ldap_result %d:%s:%s\n", err, matched ?
35             matched : "", text ? text : "" );
36
37         switch ( op->o_tag ) {
38         case LBER_DEFAULT:
39                 tag = LBER_SEQUENCE;
40                 break;
41
42         case LDAP_REQ_SEARCH:
43                 tag = LDAP_RES_SEARCH_RESULT;
44                 break;
45
46         case LDAP_REQ_DELETE:
47                 tag = LDAP_RES_DELETE;
48                 break;
49
50         default:
51                 tag = op->o_tag + 1;
52                 break;
53         }
54
55 #ifdef LDAP_COMPAT30
56         if ( (ber = ber_alloc_t( conn->c_version == 30 ? 0 : LBER_USE_DER ))
57             == NULLBER ) {
58 #else
59         if ( (ber = der_alloc()) == NULLBER ) {
60 #endif
61                 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
62                 return;
63         }
64
65 #ifdef LDAP_CONNECTIONLESS
66         if ( op->o_cldap ) {
67                 rc = ber_printf( ber, "{is{t{ess}}}", op->o_msgid, "", tag,
68                     err, matched ? matched : "", text ? text : "" );
69         } else
70 #endif
71 #ifdef LDAP_COMPAT30
72         if ( conn->c_version == 30 ) {
73                 rc = ber_printf( ber, "{it{{ess}}}", op->o_msgid, tag, err,
74                     matched ? matched : "", text ? text : "" );
75         } else
76 #endif
77                 rc = ber_printf( ber, "{it{ess}}", op->o_msgid, tag, err,
78                     matched ? matched : "", text ? text : "" );
79
80         if ( rc == -1 ) {
81                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
82                 ber_free( ber, 1 );
83                 return;
84         }
85
86         /* write only one pdu at a time - wait til it's our turn */
87         ldap_pvt_thread_mutex_lock( &conn->c_pdumutex );
88
89         /* write the pdu */
90         bytes = ber->ber_ptr - ber->ber_buf;
91         ldap_pvt_thread_mutex_lock( &new_conn_mutex );
92         while ( conn->c_connid == op->o_connid && ber_flush( &conn->c_sb, ber,
93             0 ) != 0 ) {
94                 int err = errno;
95                 ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
96                 /*
97                  * we got an error.  if it's ewouldblock, we need to
98                  * wait on the socket being writable.  otherwise, figure
99                  * it's a hard error and return.
100                  */
101
102                 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno %d msg (%s)\n",
103                     err, err > -1 && err < sys_nerr ? sys_errlist[err]
104                     : "unknown", 0 );
105
106                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
107                         close_connection( conn, op->o_connid, op->o_opid );
108
109                         ldap_pvt_thread_mutex_unlock( &conn->c_pdumutex );
110                         ber_free( ber, 1 );
111                         return;
112                 }
113
114                 /* wait for socket to be write-ready */
115                 ldap_pvt_thread_mutex_lock( &active_threads_mutex );
116                 active_threads--;
117                 conn->c_writewaiter = 1;
118
119                 ldap_pvt_thread_kill( listener_tid, LDAP_SIGUSR1 );
120
121                 ldap_pvt_thread_cond_wait( &conn->c_wcv, &active_threads_mutex );
122
123                 if( active_threads < 1 ) {
124                         ldap_pvt_thread_cond_signal(&active_threads_cond);
125                 }
126                 ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
127
128                 ldap_pvt_thread_yield();
129                 ldap_pvt_thread_mutex_lock( &new_conn_mutex );
130         }
131         ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
132         ldap_pvt_thread_mutex_unlock( &conn->c_pdumutex );
133
134         ber_free( ber, 1 );
135
136         ldap_pvt_thread_mutex_lock( &num_sent_mutex );
137         num_bytes_sent += bytes;
138         ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
139
140         Statslog( LDAP_DEBUG_STATS,
141             "conn=%d op=%d RESULT err=%d tag=%d nentries=%d\n", conn->c_connid,
142             op->o_opid, err, tag, nentries );
143
144         return;
145 }
146
147 void
148 send_ldap_result(
149     Connection  *conn,
150     Operation   *op,
151     int         err,
152     char        *matched,
153     char        *text
154 )
155 {
156 #ifdef LDAP_CONNECTIONLESS
157         if ( op->o_cldap ) {
158                 SAFEMEMCPY( (char *)conn->c_sb.sb_useaddr, &op->o_clientaddr,
159                     sizeof( struct sockaddr ));
160                 Debug( LDAP_DEBUG_TRACE, "UDP response to %s port %d\n", 
161                     inet_ntoa(((struct sockaddr_in *)
162                     conn->c_sb.sb_useaddr)->sin_addr ),
163                     ((struct sockaddr_in *) conn->c_sb.sb_useaddr)->sin_port,
164                     0 );
165         }
166 #endif
167         send_ldap_result2( conn, op, err, matched, text, 0 );
168 }
169
170 void
171 send_ldap_search_result(
172     Connection  *conn,
173     Operation   *op,
174     int         err,
175     char        *matched,
176     char        *text,
177     int         nentries
178 )
179 {
180         send_ldap_result2( conn, op, err, matched, text, nentries );
181 }
182
183 int
184 send_search_entry(
185     Backend     *be,
186     Connection  *conn,
187     Operation   *op,
188     Entry       *e,
189     char        **attrs,
190     int         attrsonly
191 )
192 {
193         BerElement      *ber;
194         Attribute       *a;
195         int             i, rc, bytes, sd;
196         struct acl      *acl;
197         char            *edn;
198         int allattrs;
199
200         Debug( LDAP_DEBUG_TRACE, "=> send_search_entry (%s)\n", e->e_dn, 0, 0 );
201
202         if ( ! access_allowed( be, conn, op, e,
203                 "entry", NULL, ACL_READ ) )
204         {
205                 Debug( LDAP_DEBUG_ACL, "acl: access to entry not allowed\n",
206                     0, 0, 0 );
207                 return( 1 );
208         }
209
210         edn = e->e_ndn;
211
212 #ifdef LDAP_COMPAT30
213         if ( (ber = ber_alloc_t( conn->c_version == 30 ? 0 : LBER_USE_DER ))
214                 == NULLBER )
215 #else
216         if ( (ber = der_alloc()) == NULLBER )
217 #endif
218         {
219                 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
220                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
221                         "ber_alloc" );
222                 goto error_return;
223         }
224
225 #ifdef LDAP_COMPAT30
226         if ( conn->c_version == 30 ) {
227                 rc = ber_printf( ber, "{it{{s{", op->o_msgid,
228                     LDAP_RES_SEARCH_ENTRY, e->e_dn );
229         } else
230 #endif
231         {
232                 rc = ber_printf( ber, "{it{s{", op->o_msgid,
233                         LDAP_RES_SEARCH_ENTRY, e->e_dn );
234         }
235
236         if ( rc == -1 ) {
237                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
238                 ber_free( ber, 1 );
239                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
240                     "ber_printf dn" );
241                 goto error_return;
242         }
243
244         allattrs = ( (attrs == NULL) || charray_inlist( attrs, "*" ) );
245
246         for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
247                 regmatch_t       matches[MAXREMATCHES];
248
249                 if ( !allattrs && !charray_inlist( attrs, a->a_type ) ) {
250                         continue;
251                 }
252
253                 acl = acl_get_applicable( be, op, e, a->a_type,
254                         MAXREMATCHES, matches );
255
256                 if ( ! acl_access_allowed( acl, be, conn, e,
257                         NULL, op, ACL_READ, edn, matches ) ) 
258                 {
259                         continue;
260                 }
261
262                 if ( ber_printf( ber, "{s[", a->a_type ) == -1 ) {
263                         Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
264                         ber_free( ber, 1 );
265                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
266                             NULL, "ber_printf type" );
267                         goto error_return;
268                 }
269
270                 if ( ! attrsonly ) {
271                         for ( i = 0; a->a_vals[i] != NULL; i++ ) {
272                                 if ( a->a_syntax & SYNTAX_DN && 
273                                         ! acl_access_allowed( acl, be, conn, e, a->a_vals[i], op,
274                                                 ACL_READ, edn, matches) )
275                                 {
276                                         continue;
277                                 }
278
279                                 if ( ber_printf( ber, "o",
280                                     a->a_vals[i]->bv_val,
281                                     a->a_vals[i]->bv_len ) == -1 )
282                                 {
283                                         Debug( LDAP_DEBUG_ANY,
284                                             "ber_printf failed\n", 0, 0, 0 );
285                                         ber_free( ber, 1 );
286                                         send_ldap_result( conn, op,
287                                             LDAP_OPERATIONS_ERROR, NULL,
288                                             "ber_printf value" );
289                                         goto error_return;
290                                 }
291                         }
292                 }
293
294                 if ( ber_printf( ber, "]}" ) == -1 ) {
295                         Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
296                         ber_free( ber, 1 );
297                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
298                             NULL, "ber_printf type end" );
299                         goto error_return;
300                 }
301         }
302
303 #ifdef LDAP_COMPAT30
304         if ( conn->c_version == 30 ) {
305                 rc = ber_printf( ber, "}}}}" );
306         } else
307 #endif
308                 rc = ber_printf( ber, "}}}" );
309
310         if ( rc == -1 ) {
311                 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
312                 ber_free( ber, 1 );
313                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
314                     "ber_printf entry end" );
315                 return( 1 );
316         }
317
318         /* write only one pdu at a time - wait til it's our turn */
319         ldap_pvt_thread_mutex_lock( &conn->c_pdumutex );
320
321         bytes = ber->ber_ptr - ber->ber_buf;
322         ldap_pvt_thread_mutex_lock( &new_conn_mutex );
323         while ( conn->c_connid == op->o_connid && ber_flush( &conn->c_sb, ber,
324             0 ) != 0 ) {
325                 int err = errno;
326                 ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
327                 /*
328                  * we got an error.  if it's ewouldblock, we need to
329                  * wait on the socket being writable.  otherwise, figure
330                  * it's a hard error and return.
331                  */
332
333                 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno %d msg (%s)\n",
334                     err, err > -1 && err < sys_nerr ? sys_errlist[err]
335                     : "unknown", 0 );
336
337                 if ( err != EWOULDBLOCK && err != EAGAIN ) {
338                         close_connection( conn, op->o_connid, op->o_opid );
339
340                         ldap_pvt_thread_mutex_unlock( &conn->c_pdumutex );
341                         ber_free( ber, 1 );
342                         return( -1 );
343                 }
344
345                 /* wait for socket to be write-ready */
346                 ldap_pvt_thread_mutex_lock( &active_threads_mutex );
347                 active_threads--;
348                 conn->c_writewaiter = 1;
349                 ldap_pvt_thread_kill( listener_tid, LDAP_SIGUSR1 );
350                 ldap_pvt_thread_cond_wait( &conn->c_wcv, &active_threads_mutex );
351
352                 if( active_threads < 1 ) {
353                         ldap_pvt_thread_cond_signal(&active_threads_cond);
354                 }
355                 ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
356
357                 ldap_pvt_thread_yield();
358                 ldap_pvt_thread_mutex_lock( &new_conn_mutex );
359         }
360         ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
361         ldap_pvt_thread_mutex_unlock( &conn->c_pdumutex );
362
363         ber_free( ber, 1 );
364
365         ldap_pvt_thread_mutex_lock( &num_sent_mutex );
366         num_bytes_sent += bytes;
367         num_entries_sent++;
368         ldap_pvt_thread_mutex_unlock( &num_sent_mutex );
369
370         ldap_pvt_thread_mutex_lock( &new_conn_mutex );
371         if ( conn->c_connid == op->o_connid ) {
372                 rc = 0;
373                 Statslog( LDAP_DEBUG_STATS2, "conn=%d op=%d ENTRY dn=\"%s\"\n",
374                     conn->c_connid, op->o_opid, e->e_dn, 0, 0 );
375         } else {
376                 rc = -1;
377         }
378         ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
379
380         Debug( LDAP_DEBUG_TRACE, "<= send_search_entry\n", 0, 0, 0 );
381
382         return( rc );
383
384 error_return:;
385         return( 1 );
386 }
387
388 int
389 str2result(
390     char        *s,
391     int         *code,
392     char        **matched,
393     char        **info
394 )
395 {
396         int     rc;
397         char    *c;
398
399         *code = LDAP_SUCCESS;
400         *matched = NULL;
401         *info = NULL;
402
403         if ( strncasecmp( s, "RESULT", 6 ) != 0 ) {
404                 Debug( LDAP_DEBUG_ANY, "str2result (%s) expecting \"RESULT\"\n",
405                     s, 0, 0 );
406
407                 return( -1 );
408         }
409
410         rc = 0;
411         while ( (s = strchr( s, '\n' )) != NULL ) {
412                 *s++ = '\0';
413                 if ( *s == '\0' ) {
414                         break;
415                 }
416                 if ( (c = strchr( s, ':' )) != NULL ) {
417                         c++;
418                 }
419
420                 if ( strncasecmp( s, "code", 4 ) == 0 ) {
421                         if ( c != NULL ) {
422                                 *code = atoi( c );
423                         }
424                 } else if ( strncasecmp( s, "matched", 7 ) == 0 ) {
425                         if ( c != NULL ) {
426                                 *matched = c;
427                         }
428                 } else if ( strncasecmp( s, "info", 4 ) == 0 ) {
429                         if ( c != NULL ) {
430                                 *info = c;
431                         }
432                 } else {
433                         Debug( LDAP_DEBUG_ANY, "str2result (%s) unknown\n",
434                             s, 0, 0 );
435                         rc = -1;
436                 }
437         }
438
439         return( rc );
440 }
441
442 /*
443  * close_connection - close a connection. takes the connection to close,
444  * the connid associated with the operation generating the close (so we
445  * don't accidentally close a connection that's not ours), and the opid
446  * of the operation generating the close (for logging purposes).
447  */
448 void
449 close_connection( Connection *conn, int opconnid, int opid )
450 {
451         ldap_pvt_thread_mutex_lock( &new_conn_mutex );
452         if ( conn->c_sb.sb_sd != -1 && conn->c_connid == opconnid ) {
453                 int err;
454                 close( conn->c_sb.sb_sd );
455                 err = errno;
456                 Statslog( LDAP_DEBUG_STATS,
457                     "conn=%d op=%d fd=%d closed errno=%d\n", conn->c_connid,
458                     opid, conn->c_sb.sb_sd, err, 0 );
459                 conn->c_sb.sb_sd = -1;
460                 conn->c_version = 0;
461         }
462         ldap_pvt_thread_mutex_unlock( &new_conn_mutex );
463 }