/** BEGIN COPYRIGHT BLOCK * This Program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; version 2 of the License. * * This Program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place, Suite 330, Boston, MA 02111-1307 USA. * * In addition, as a special exception, Red Hat, Inc. gives You the additional * right to link the code of this Program with code not covered under the GNU * General Public License ("Non-GPL Code") and to distribute linked combinations * including the two, subject to the limitations in this paragraph. Non-GPL Code * permitted under this exception must only link to the code of this Program * through those well defined interfaces identified in the file named EXCEPTION * found in the source code files (the "Approved Interfaces"). The files of * Non-GPL Code may instantiate templates or use macros or inline functions from * the Approved Interfaces without causing the resulting work to be covered by * the GNU General Public License. Only Red Hat, Inc. may make changes or * additions to the list of Approved Interfaces. You must obey the GNU General * Public License in all respects for all of the Program code and other code used * in conjunction with the Program except the Non-GPL Code covered by this * exception. If you modify this file, you may extend this exception to your * version of the file, but you are not obligated to do so. If you do not wish to * provide this exception without modification, you must delete this exception * statement from your version and license this file solely under the GPL without * exception. * * * Copyright (C) 2009 Red Hat, Inc. * All rights reserved. * END COPYRIGHT BLOCK **/ #ifdef HAVE_CONFIG_H # include #endif #include "slap.h" /* * Parse the value from an LDAPv3 "Simple Paged Results" control. They look * like this: * * realSearchControlValue ::= SEQUENCE { * size INTEGER (0..maxInt), * -- requested page size from client * -- result set size estimate from server * cookie OCTET STRING * -- index for the pagedresults array in the connection * } * * Return an LDAP error code (LDAP_SUCCESS if all goes well). */ int pagedresults_parse_control_value( Slapi_PBlock *pb, struct berval *psbvp, ber_int_t *pagesize, int *index ) { int rc = LDAP_SUCCESS; struct berval cookie = {0}; Connection *conn = pb->pb_conn; Operation *op = pb->pb_op; BerElement *ber = NULL; LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_parse_control_value\n"); if ( NULL == conn || NULL == op || NULL == pagesize || NULL == index ) { LDAPDebug1Arg(LDAP_DEBUG_ANY, "<-- pagedresults_parse_control_value: %d\n", LDAP_OPERATIONS_ERROR); return LDAP_OPERATIONS_ERROR; } *index = -1; if ( psbvp->bv_len == 0 || psbvp->bv_val == NULL ) { LDAPDebug0Args(LDAP_DEBUG_ANY, "<-- pagedresults_parse_control_value: no control value\n"); return LDAP_PROTOCOL_ERROR; } ber = ber_init( psbvp ); if ( ber == NULL ) { LDAPDebug0Args(LDAP_DEBUG_ANY, "<-- pagedresults_parse_control_value: no control value\n"); return LDAP_PROTOCOL_ERROR; } if ( ber_scanf( ber, "{io}", pagesize, &cookie ) == LBER_ERROR ) { LDAPDebug0Args(LDAP_DEBUG_ANY, "<-- pagedresults_parse_control_value: corrupted control value\n"); return LDAP_PROTOCOL_ERROR; } PR_Lock(conn->c_mutex); /* the ber encoding is no longer needed */ ber_free(ber, 1); if ( cookie.bv_len <= 0 ) { int i; int maxlen; /* first time? */ maxlen = conn->c_pagedresults.prl_maxlen; if (conn->c_pagedresults.prl_count == maxlen) { if (0 == maxlen) { /* first time */ conn->c_pagedresults.prl_maxlen = 1; conn->c_pagedresults.prl_list = (PagedResults *)slapi_ch_calloc(1, sizeof(PagedResults)); } else { /* new max length */ conn->c_pagedresults.prl_maxlen *= 2; conn->c_pagedresults.prl_list = (PagedResults *)slapi_ch_realloc( (char *)conn->c_pagedresults.prl_list, sizeof(PagedResults) * conn->c_pagedresults.prl_maxlen); /* initialze newly allocated area */ memset(conn->c_pagedresults.prl_list + maxlen, '\0', sizeof(PagedResults) * maxlen); } *index = maxlen; /* the first position in the new area */ } else { for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { if (!conn->c_pagedresults.prl_list[i].pr_current_be) { *index = i; break; } } } if (!conn->c_pagedresults.prl_list[*index].pr_mutex) { conn->c_pagedresults.prl_list[*index].pr_mutex = PR_NewLock(); } conn->c_pagedresults.prl_count++; } else { /* Repeated paged results request. * PagedResults is already allocated. */ char *ptr = slapi_ch_malloc(cookie.bv_len + 1); memcpy(ptr, cookie.bv_val, cookie.bv_len); *(ptr+cookie.bv_len) = '\0'; *index = strtol(ptr, NULL, 10); slapi_ch_free_string(&ptr); } /* reset sizelimit */ op->o_pagedresults_sizelimit = -1; slapi_ch_free((void **)&cookie.bv_val); if ((*index > -1) && (*index < conn->c_pagedresults.prl_maxlen)) { if (conn->c_pagedresults.prl_list[*index].pr_flags & CONN_FLAG_PAGEDRESULTS_ABANDONED) { rc = LDAP_CANCELLED; } else { /* Need to keep the latest msgid to prepare for the abandon. */ conn->c_pagedresults.prl_list[*index].pr_msgid = op->o_msgid; } } else { rc = LDAP_PROTOCOL_ERROR; LDAPDebug1Arg(LDAP_DEBUG_ANY, "pagedresults_parse_control_value: invalid cookie: %d\n", *index); } PR_Unlock(conn->c_mutex); LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_parse_control_value: idx %d\n", *index); return rc; } /* * controlType = LDAP_CONTROL_PAGEDRESULTS; * criticality = n/a; * controlValue: * realSearchControlValue ::= SEQUENCE { * size INTEGER (0..maxInt), * -- requested page size from client * -- result set size estimate from server * cookie OCTET STRING * } */ void pagedresults_set_response_control( Slapi_PBlock *pb, int iscritical, ber_int_t estimate, int current_search_count, int index ) { LDAPControl **resultctrls = NULL; LDAPControl pr_respctrl; BerElement *ber = NULL; struct berval *berval = NULL; char *cookie_str = NULL; int found = 0; int i; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_response_control: idx=%d\n", index); if ( (ber = der_alloc()) == NULL ) { goto bailout; } /* begin sequence, payload, end sequence */ if (current_search_count < 0) { cookie_str = slapi_ch_strdup(""); } else { cookie_str = slapi_ch_smprintf("%d", index); } ber_printf ( ber, "{io}", estimate, cookie_str, strlen(cookie_str) ); if ( ber_flatten ( ber, &berval ) != LDAP_SUCCESS ) { goto bailout; } pr_respctrl.ldctl_oid = LDAP_CONTROL_PAGEDRESULTS; pr_respctrl.ldctl_iscritical = iscritical; pr_respctrl.ldctl_value.bv_val = berval->bv_val; pr_respctrl.ldctl_value.bv_len = berval->bv_len; slapi_pblock_get ( pb, SLAPI_RESCONTROLS, &resultctrls ); for (i = 0; resultctrls && resultctrls[i]; i++) { if (strcmp(resultctrls[i]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS) == 0) { /* * We get here if search returns more than one entry * and this is not the first entry. */ ldap_control_free ( resultctrls[i] ); resultctrls[i] = slapi_dup_control (&pr_respctrl); found = 1; break; } } if ( !found ) { /* slapi_pblock_set() will dup the control */ slapi_pblock_set ( pb, SLAPI_ADD_RESCONTROL, &pr_respctrl ); } bailout: slapi_ch_free_string(&cookie_str); ber_free ( ber, 1 ); /* ber_free() checks for NULL param */ ber_bvfree ( berval ); /* ber_bvfree() checks for NULL param */ LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_response_control: idx=%d\n", index); } int pagedresults_free_one( Connection *conn, Operation *op, int index ) { int rc = -1; if (!op_is_pagedresults(op)) { return 0; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_free_one: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (conn->c_pagedresults.prl_count <= 0) { LDAPDebug2Args(LDAP_DEBUG_TRACE, "pagedresults_free_one: " "conn=%d paged requests list count is %d\n", conn->c_connid, conn->c_pagedresults.prl_count); } else if (index < conn->c_pagedresults.prl_maxlen) { PRLock *prmutex = NULL; PagedResults *prp = conn->c_pagedresults.prl_list + index; if (prp && prp->pr_current_be && prp->pr_current_be->be_search_results_release && prp->pr_search_result_set) { prp->pr_current_be->be_search_results_release(&(prp->pr_search_result_set)); } if (prp->pr_mutex) { /* pr_mutex is reused; back it up and reset it. */ prmutex = prp->pr_mutex; } memset(prp, '\0', sizeof(PagedResults)); prp->pr_mutex = prmutex; conn->c_pagedresults.prl_count--; rc = 0; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_free_one: %d\n", rc); return rc; } /* Used for abandoning */ int pagedresults_free_one_msgid_nolock( Connection *conn, ber_int_t msgid ) { int rc = -1; int i; if (conn && (msgid > -1)) { if (conn->c_pagedresults.prl_count <= 0) { ; /* Not a paged result. */ } else { LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_free_one: msgid=%d\n", msgid); for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { if (conn->c_pagedresults.prl_list[i].pr_msgid == msgid) { PagedResults *prp = conn->c_pagedresults.prl_list + i; if (prp && prp->pr_current_be && prp->pr_current_be->be_search_results_release && prp->pr_search_result_set) { prp->pr_current_be->be_search_results_release(&(prp->pr_search_result_set)); } prp->pr_flags |= CONN_FLAG_PAGEDRESULTS_ABANDONED; prp->pr_flags &= ~CONN_FLAG_PAGEDRESULTS_PROCESSING; conn->c_pagedresults.prl_count--; rc = 0; break; } } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_free_one: %d\n", rc); } } return rc; } /* setters and getters for the connection */ Slapi_Backend * pagedresults_get_current_be(Connection *conn, int index) { Slapi_Backend *be = NULL; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_current_be: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { be = conn->c_pagedresults.prl_list[index].pr_current_be; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_current_be: %p\n", be); return be; } int pagedresults_set_current_be(Connection *conn, Slapi_Backend *be, int index) { int rc = -1; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_current_be: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_current_be = be; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_current_be: %d\n", rc); return rc; } void * pagedresults_get_search_result(Connection *conn, Operation *op, int index) { void *sr = NULL; if (!op_is_pagedresults(op)) { return sr; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_search_result: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { sr = conn->c_pagedresults.prl_list[index].pr_search_result_set; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_search_result: %p\n", sr); return sr; } int pagedresults_set_search_result(Connection *conn, Operation *op, void *sr, int locked, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return 0; /* noop */ } LDAPDebug2Args(LDAP_DEBUG_TRACE, "--> pagedresults_set_search_result: idx=%d, sr=%p\n", index, sr); if (conn && (index > -1)) { if (!locked) PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { if (sr) { /* set */ if (NULL == conn->c_pagedresults.prl_list[index].pr_search_result_set) { conn->c_pagedresults.prl_list[index].pr_search_result_set = sr; rc = 0; } } else { /* reset */ conn->c_pagedresults.prl_list[index].pr_search_result_set = sr; rc = 0; } } if (!locked) PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_search_result: %d\n", rc); return rc; } int pagedresults_get_search_result_count(Connection *conn, Operation *op, int index) { int count = 0; if (!op_is_pagedresults(op)) { return count; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_search_result_count: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { count = conn->c_pagedresults.prl_list[index].pr_search_result_count; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_search_result_count: %d\n", count); return count; } int pagedresults_set_search_result_count(Connection *conn, Operation *op, int count, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_search_result_count: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_search_result_count = count; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_search_result_count: %d\n", rc); return rc; } int pagedresults_get_search_result_set_size_estimate(Connection *conn, Operation *op, int index) { int count = 0; if (!op_is_pagedresults(op)) { return count; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_search_result_set_size_estimate: " "idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { count = conn->c_pagedresults.prl_list[index].pr_search_result_set_size_estimate; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_search_result_set_size_estimate: %d\n", count); return count; } int pagedresults_set_search_result_set_size_estimate(Connection *conn, Operation *op, int count, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_search_result_set_size_estimate: " "idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_search_result_set_size_estimate = count; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_search_result_set_size_estimate: %d\n", rc); return rc; } int pagedresults_get_with_sort(Connection *conn, Operation *op, int index) { int flags = 0; if (!op_is_pagedresults(op)) { return flags; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_with_sort: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { flags = conn->c_pagedresults.prl_list[index].pr_flags&CONN_FLAG_PAGEDRESULTS_WITH_SORT; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_with_sort: %p\n", flags); return flags; } int pagedresults_set_with_sort(Connection *conn, Operation *op, int flags, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_with_sort: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { if (flags & OP_FLAG_SERVER_SIDE_SORTING) { conn->c_pagedresults.prl_list[index].pr_flags |= CONN_FLAG_PAGEDRESULTS_WITH_SORT; } } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_with_sort: %d\n", rc); return rc; } int pagedresults_get_unindexed(Connection *conn, Operation *op, int index) { int flags = 0; if (!op_is_pagedresults(op)) { return flags; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_unindexed: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { flags = conn->c_pagedresults.prl_list[index].pr_flags&CONN_FLAG_PAGEDRESULTS_UNINDEXED; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_unindexed: %p\n", flags); return flags; } int pagedresults_set_unindexed(Connection *conn, Operation *op, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_unindexed: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_flags |= CONN_FLAG_PAGEDRESULTS_UNINDEXED; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_unindexed: %d\n", rc); return rc; } int pagedresults_get_sort_result_code(Connection *conn, Operation *op, int index) { int code = LDAP_OPERATIONS_ERROR; if (!op_is_pagedresults(op)) { return code; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_sort_result_code: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { code = conn->c_pagedresults.prl_list[index].pr_sort_result_code; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_get_sort_result_code: %d\n", code); return code; } int pagedresults_set_sort_result_code(Connection *conn, Operation *op, int code, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_sort_result_code: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_sort_result_code = code; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_sort_result_code: %d\n", rc); return rc; } int pagedresults_set_timelimit(Connection *conn, Operation *op, time_t timelimit, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_timelimit: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { conn->c_pagedresults.prl_list[index].pr_timelimit = timelimit; } PR_Unlock(conn->c_mutex); rc = 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_timelimit: %d\n", rc); return rc; } int pagedresults_set_sizelimit(Connection *conn, Operation *op, int sizelimit, int index) { int rc = -1; if (!op_is_pagedresults(op)) { return rc; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_set_sizelimit: idx=%d\n", index); op->o_pagedresults_sizelimit = sizelimit; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_set_sizelimit: %d\n", rc); return rc; } int pagedresults_get_sizelimit(Connection *conn, Operation *op, int index) { int sizelimit = -1; if (!op_is_pagedresults(op)) { return sizelimit; /* noop */ } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_get_sizelimit: idx=%d\n", index); sizelimit = op->o_pagedresults_sizelimit; LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_get_sizelimit\n"); return sizelimit; } /* * pagedresults_cleanup cleans up the pagedresults list; * it does not free the list. * return values * 0: not a simple paged result connection * 1: simple paged result and successfully abandoned */ int pagedresults_cleanup(Connection *conn, int needlock) { int rc = 0; int i; PagedResults *prp = NULL; LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_cleanup\n"); if (NULL == conn) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_cleanup: -\n"); return 0; } if (needlock) { PR_Lock(conn->c_mutex); } for (i = 0; conn->c_pagedresults.prl_list && i < conn->c_pagedresults.prl_maxlen; i++) { prp = conn->c_pagedresults.prl_list + i; if (prp->pr_current_be && prp->pr_search_result_set && prp->pr_current_be->be_search_results_release) { prp->pr_current_be->be_search_results_release(&(prp->pr_search_result_set)); rc = 1; } if (prp->pr_mutex) { PR_DestroyLock(prp->pr_mutex); } memset(prp, '\0', sizeof(PagedResults)); } conn->c_pagedresults.prl_count = 0; if (needlock) { PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_cleanup: %d\n", rc); return rc; } /* * pagedresults_cleanup_all frees the list. * return values * 0: not a simple paged result connection * 1: simple paged result and successfully abandoned */ int pagedresults_cleanup_all(Connection *conn, int needlock) { int rc = 0; int i; PagedResults *prp = NULL; LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_cleanup_all\n"); if (NULL == conn) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_cleanup_all: -\n"); return 0; } if (needlock) { PR_Lock(conn->c_mutex); } for (i = 0; conn->c_pagedresults.prl_list && i < conn->c_pagedresults.prl_maxlen; i++) { prp = conn->c_pagedresults.prl_list + i; if (prp->pr_mutex) { PR_DestroyLock(prp->pr_mutex); } if (prp->pr_current_be && prp->pr_search_result_set && prp->pr_current_be->be_search_results_release) { prp->pr_current_be->be_search_results_release(&(prp->pr_search_result_set)); rc = 1; } } slapi_ch_free((void **)&conn->c_pagedresults.prl_list); conn->c_pagedresults.prl_maxlen = 0; conn->c_pagedresults.prl_count = 0; if (needlock) { PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_cleanup_all: %d\n", rc); return rc; } #if 0 /* Stopped using it (#47347) */ /* * check to see if this connection is currently processing * a pagedresults search - if it is, return True - if not, * mark that it is processing, and return False */ int pagedresults_check_or_set_processing(Connection *conn, int index) { int ret = 0; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_check_or_set_processing\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { ret = (conn->c_pagedresults.prl_list[index].pr_flags & CONN_FLAG_PAGEDRESULTS_PROCESSING); /* if ret is true, the following doesn't do anything */ conn->c_pagedresults.prl_list[index].pr_flags |= CONN_FLAG_PAGEDRESULTS_PROCESSING; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_check_or_set_processing: %d\n", ret); return ret; } /* * mark the connection as being done with pagedresults * processing - returns True if it was processing, * False otherwise */ int pagedresults_reset_processing(Connection *conn, int index) { int ret = 0; LDAPDebug1Arg(LDAP_DEBUG_TRACE, "--> pagedresults_reset_processing: idx=%d\n", index); if (conn && (index > -1)) { PR_Lock(conn->c_mutex); if (index < conn->c_pagedresults.prl_maxlen) { ret = (conn->c_pagedresults.prl_list[index].pr_flags & CONN_FLAG_PAGEDRESULTS_PROCESSING); /* if ret is false, the following doesn't do anything */ conn->c_pagedresults.prl_list[index].pr_flags &= ~CONN_FLAG_PAGEDRESULTS_PROCESSING; } PR_Unlock(conn->c_mutex); } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_reset_processing: %d\n", ret); return ret; } #endif /* Are all the paged results requests timed out? */ int pagedresults_is_timedout_nolock(Connection *conn) { int i; PagedResults *prp = NULL; time_t ctime; int rc = 0; LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_is_timedout\n"); if (NULL == conn || 0 == conn->c_pagedresults.prl_count) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_is_timedout: -\n"); return rc; } ctime = current_time(); for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { prp = conn->c_pagedresults.prl_list + i; if (prp->pr_current_be && (prp->pr_timelimit > 0)) { if (ctime < prp->pr_timelimit) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_is_timedout: 0\n"); return 0; /* at least, one request is not timed out. */ } else { rc = 1; /* possibly timed out */ } } } LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_is_timedout: 1\n"); return rc; /* all requests are timed out. */ } /* reset all timeout */ int pagedresults_reset_timedout_nolock(Connection *conn) { int i; PagedResults *prp = NULL; if (NULL == conn) { return 0; } LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_reset_timedout\n"); for (i = 0; i < conn->c_pagedresults.prl_maxlen; i++) { prp = conn->c_pagedresults.prl_list + i; prp->pr_timelimit = 0; } LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_reset_timedout: 0\n"); return 0; } /* paged results requests are in progress. */ int pagedresults_in_use_nolock(Connection *conn) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "--> pagedresults_in_use\n"); if (NULL == conn) { LDAPDebug0Args(LDAP_DEBUG_TRACE, "<-- pagedresults_in_use: -\n"); return 0; } LDAPDebug1Arg(LDAP_DEBUG_TRACE, "<-- pagedresults_in_use: %d\n", conn->c_pagedresults.prl_count); return conn->c_pagedresults.prl_count; } int op_is_pagedresults(Operation *op) { if (NULL == op) { return 0; } return op->o_flags & OP_FLAG_PAGED_RESULTS; } void op_set_pagedresults(Operation *op) { if (NULL == op) { return; } op->o_flags |= OP_FLAG_PAGED_RESULTS; } /* * pagedresults_lock/unlock -- introduced to protect search results for the * asynchronous searches. */ void pagedresults_lock( Connection *conn, int index ) { PagedResults *prp; if (!conn || (index < 0) || (index >= conn->c_pagedresults.prl_maxlen)) { return; } prp = conn->c_pagedresults.prl_list + index; if (prp->pr_mutex) { PR_Lock(prp->pr_mutex); } return; } void pagedresults_unlock( Connection *conn, int index ) { PagedResults *prp; if (!conn || (index < 0) || (index >= conn->c_pagedresults.prl_maxlen)) { return; } prp = conn->c_pagedresults.prl_list + index; if (prp->pr_mutex) { PR_Unlock(prp->pr_mutex); } return; }