1 /* result.c - routines to send ldap results, errors, and referrals */
10 #include <ac/string.h>
12 #include <ac/unistd.h> /* get close() */
29 unsigned long tag, bytes;
31 if ( err == LDAP_PARTIAL_RESULTS && (text == NULL || *text == '\0') )
32 err = LDAP_NO_SUCH_OBJECT;
34 Debug( LDAP_DEBUG_TRACE, "send_ldap_result %d:%s:%s\n", err, matched ?
35 matched : "", text ? text : "" );
37 switch ( op->o_tag ) {
43 tag = LDAP_RES_SEARCH_RESULT;
47 tag = LDAP_RES_DELETE;
56 if ( (ber = ber_alloc_t( conn->c_version == 30 ? 0 : LBER_USE_DER ))
59 if ( (ber = der_alloc()) == NULLBER ) {
61 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
65 #ifdef LDAP_CONNECTIONLESS
67 rc = ber_printf( ber, "{is{t{ess}}}", op->o_msgid, "", tag,
68 err, matched ? matched : "", text ? text : "" );
72 if ( conn->c_version == 30 ) {
73 rc = ber_printf( ber, "{it{{ess}}}", op->o_msgid, tag, err,
74 matched ? matched : "", text ? text : "" );
77 rc = ber_printf( ber, "{it{ess}}", op->o_msgid, tag, err,
78 matched ? matched : "", text ? text : "" );
81 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
85 /* write only one pdu at a time - wait til it's our turn */
86 pthread_mutex_lock( &conn->c_pdumutex );
89 bytes = ber->ber_ptr - ber->ber_buf;
90 pthread_mutex_lock( &new_conn_mutex );
91 while ( conn->c_connid == op->o_connid && ber_flush( &conn->c_sb, ber,
93 pthread_mutex_unlock( &new_conn_mutex );
95 * we got an error. if it's ewouldblock, we need to
96 * wait on the socket being writable. otherwise, figure
97 * it's a hard error and return.
100 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno %d msg (%s)\n",
101 errno, errno > -1 && errno < sys_nerr ? sys_errlist[errno]
104 if ( errno != EWOULDBLOCK && errno != EAGAIN ) {
105 close_connection( conn, op->o_connid, op->o_opid );
107 pthread_mutex_unlock( &conn->c_pdumutex );
111 /* wait for socket to be write-ready */
112 pthread_mutex_lock( &active_threads_mutex );
114 conn->c_writewaiter = 1;
116 pthread_kill( listener_tid, LDAP_SIGUSR1 );
118 pthread_cond_wait( &conn->c_wcv, &active_threads_mutex );
120 if( active_threads < 1 ) {
121 pthread_cond_signal(&active_threads_cond);
123 pthread_mutex_unlock( &active_threads_mutex );
126 pthread_mutex_lock( &new_conn_mutex );
128 pthread_mutex_unlock( &new_conn_mutex );
129 pthread_mutex_unlock( &conn->c_pdumutex );
131 pthread_mutex_lock( &num_sent_mutex );
132 num_bytes_sent += bytes;
133 pthread_mutex_unlock( &num_sent_mutex );
135 Statslog( LDAP_DEBUG_STATS,
136 "conn=%d op=%d RESULT err=%d tag=%d nentries=%d\n", conn->c_connid,
137 op->o_opid, err, tag, nentries );
151 #ifdef LDAP_CONNECTIONLESS
153 SAFEMEMCPY( (char *)conn->c_sb.sb_useaddr, &op->o_clientaddr,
154 sizeof( struct sockaddr ));
155 Debug( LDAP_DEBUG_TRACE, "UDP response to %s port %d\n",
156 inet_ntoa(((struct sockaddr_in *)
157 conn->c_sb.sb_useaddr)->sin_addr ),
158 ((struct sockaddr_in *) conn->c_sb.sb_useaddr)->sin_port,
162 send_ldap_result2( conn, op, err, matched, text, 0 );
166 send_ldap_search_result(
175 send_ldap_result2( conn, op, err, matched, text, nentries );
190 int i, rc, bytes, sd;
194 Debug( LDAP_DEBUG_TRACE, "=> send_search_entry (%s)\n", e->e_dn, 0, 0 );
196 if ( ! access_allowed( be, conn, op, e,
197 "entry", NULL, ACL_READ ) )
199 Debug( LDAP_DEBUG_ACL, "acl: access to entry not allowed\n",
207 if ( (ber = ber_alloc_t( conn->c_version == 30 ? 0 : LBER_USE_DER ))
210 if ( (ber = der_alloc()) == NULLBER )
213 Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
214 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
220 if ( conn->c_version == 30 ) {
221 rc = ber_printf( ber, "{it{{s{", op->o_msgid,
222 LDAP_RES_SEARCH_ENTRY, e->e_dn );
226 rc = ber_printf( ber, "{it{s{", op->o_msgid,
227 LDAP_RES_SEARCH_ENTRY, e->e_dn );
231 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
233 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
238 for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
239 regmatch_t matches[MAXREMATCHES];
241 if ( attrs != NULL && ! charray_inlist( attrs, a->a_type ) ) {
245 /* the lastmod attributes are ignored by ACL checking */
246 if ( strcasecmp( a->a_type, "modifiersname" ) == 0 ||
247 strcasecmp( a->a_type, "modifytimestamp" ) == 0 ||
248 strcasecmp( a->a_type, "creatorsname" ) == 0 ||
249 strcasecmp( a->a_type, "createtimestamp" ) == 0 )
251 Debug( LDAP_DEBUG_ACL, "LASTMOD attribute: %s access DEFAULT\n",
255 acl = acl_get_applicable( be, op, e, a->a_type,
256 MAXREMATCHES, matches );
259 if ( ! acl_access_allowed( acl, be, conn, e,
260 NULL, op, ACL_READ, edn, matches ) )
265 if ( ber_printf( ber, "{s[", a->a_type ) == -1 ) {
266 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
268 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
269 NULL, "ber_printf type" );
274 for ( i = 0; a->a_vals[i] != NULL; i++ ) {
275 if ( a->a_syntax & SYNTAX_DN &&
276 ! acl_access_allowed( acl, be, conn, e, a->a_vals[i], op,
277 ACL_READ, edn, matches) )
282 if ( ber_printf( ber, "o",
283 a->a_vals[i]->bv_val,
284 a->a_vals[i]->bv_len ) == -1 )
286 Debug( LDAP_DEBUG_ANY,
287 "ber_printf failed\n", 0, 0, 0 );
289 send_ldap_result( conn, op,
290 LDAP_OPERATIONS_ERROR, NULL,
291 "ber_printf value" );
297 if ( ber_printf( ber, "]}" ) == -1 ) {
298 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
300 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
301 NULL, "ber_printf type end" );
307 if ( conn->c_version == 30 ) {
308 rc = ber_printf( ber, "}}}}" );
311 rc = ber_printf( ber, "}}}" );
314 Debug( LDAP_DEBUG_ANY, "ber_printf failed\n", 0, 0, 0 );
316 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
317 "ber_printf entry end" );
321 /* write only one pdu at a time - wait til it's our turn */
322 pthread_mutex_lock( &conn->c_pdumutex );
324 bytes = ber->ber_ptr - ber->ber_buf;
325 pthread_mutex_lock( &new_conn_mutex );
326 while ( conn->c_connid == op->o_connid && ber_flush( &conn->c_sb, ber,
328 pthread_mutex_unlock( &new_conn_mutex );
330 * we got an error. if it's ewouldblock, we need to
331 * wait on the socket being writable. otherwise, figure
332 * it's a hard error and return.
335 Debug( LDAP_DEBUG_CONNS, "ber_flush failed errno %d msg (%s)\n",
336 errno, errno > -1 && errno < sys_nerr ? sys_errlist[errno]
339 if ( errno != EWOULDBLOCK && errno != EAGAIN ) {
340 close_connection( conn, op->o_connid, op->o_opid );
342 pthread_mutex_unlock( &conn->c_pdumutex );
346 /* wait for socket to be write-ready */
347 pthread_mutex_lock( &active_threads_mutex );
349 conn->c_writewaiter = 1;
350 pthread_kill( listener_tid, LDAP_SIGUSR1 );
351 pthread_cond_wait( &conn->c_wcv, &active_threads_mutex );
353 if( active_threads < 1 ) {
354 pthread_cond_signal(&active_threads_cond);
356 pthread_mutex_unlock( &active_threads_mutex );
359 pthread_mutex_lock( &new_conn_mutex );
361 pthread_mutex_unlock( &new_conn_mutex );
362 pthread_mutex_unlock( &conn->c_pdumutex );
364 pthread_mutex_lock( &num_sent_mutex );
365 num_bytes_sent += bytes;
367 pthread_mutex_unlock( &num_sent_mutex );
369 pthread_mutex_lock( &new_conn_mutex );
370 if ( conn->c_connid == op->o_connid ) {
372 Statslog( LDAP_DEBUG_STATS2, "conn=%d op=%d ENTRY dn=\"%s\"\n",
373 conn->c_connid, op->o_opid, e->e_dn, 0, 0 );
377 pthread_mutex_unlock( &new_conn_mutex );
379 Debug( LDAP_DEBUG_TRACE, "<= send_search_entry\n", 0, 0, 0 );
398 *code = LDAP_SUCCESS;
402 if ( strncasecmp( s, "RESULT", 6 ) != 0 ) {
403 Debug( LDAP_DEBUG_ANY, "str2result (%s) expecting \"RESULT\"\n",
410 while ( (s = strchr( s, '\n' )) != NULL ) {
415 if ( (c = strchr( s, ':' )) != NULL ) {
419 if ( strncasecmp( s, "code", 4 ) == 0 ) {
423 } else if ( strncasecmp( s, "matched", 7 ) == 0 ) {
427 } else if ( strncasecmp( s, "info", 4 ) == 0 ) {
432 Debug( LDAP_DEBUG_ANY, "str2result (%s) unknown\n",
442 * close_connection - close a connection. takes the connection to close,
443 * the connid associated with the operation generating the close (so we
444 * don't accidentally close a connection that's not ours), and the opid
445 * of the operation generating the close (for logging purposes).
448 close_connection( Connection *conn, int opconnid, int opid )
450 pthread_mutex_lock( &new_conn_mutex );
451 if ( conn->c_sb.sb_sd != -1 && conn->c_connid == opconnid ) {
452 Statslog( LDAP_DEBUG_STATS,
453 "conn=%d op=%d fd=%d closed errno=%d\n", conn->c_connid,
454 opid, conn->c_sb.sb_sd, errno, 0 );
455 close( conn->c_sb.sb_sd );
456 conn->c_sb.sb_sd = -1;
458 conn->c_protocol = 0;
460 pthread_mutex_unlock( &new_conn_mutex );