From dev-return-57074-archive-asf-public=cust-asf.ponee.io@directory.apache.org Tue Jan 23 08:26:14 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 0ACE5180621 for ; Tue, 23 Jan 2018 08:26:14 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EE26A160C17; Tue, 23 Jan 2018 07:26:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5081E160C39 for ; Tue, 23 Jan 2018 08:26:13 +0100 (CET) Received: (qmail 4473 invoked by uid 500); 23 Jan 2018 07:26:07 -0000 Mailing-List: contact dev-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache Directory Developers List" Delivered-To: mailing list dev@directory.apache.org Received: (qmail 4460 invoked by uid 99); 23 Jan 2018 07:26:07 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Jan 2018 07:26:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 0DD3CC04DF for ; Tue, 23 Jan 2018 07:26:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -107.911 X-Spam-Level: X-Spam-Status: No, score=-107.911 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_LOW=-0.7, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id vahoPfRzOyks for ; Tue, 23 Jan 2018 07:26:06 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id D12F860CF7 for ; Tue, 23 Jan 2018 07:26:05 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 5E316E25FA for ; Tue, 23 Jan 2018 07:26:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 4DED025C7F for ; Tue, 23 Jan 2018 07:26:03 +0000 (UTC) Date: Tue, 23 Jan 2018 07:26:03 +0000 (UTC) From: "Emmanuel Lecharny (JIRA)" To: dev@directory.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DIRSERVER-2145) A BIND request will do 2 lookups of the entry trying to bind MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DIRSERVER-2145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Emmanuel Lecharny updated DIRSERVER-2145: ----------------------------------------- Fix Version/s: (was: 2.0.0-M24) 2.0.0-M25 > A BIND request will do 2 lookups of the entry trying to bind > ------------------------------------------------------------ > > Key: DIRSERVER-2145 > URL: https://issues.apache.org/jira/browse/DIRSERVER-2145 > Project: Directory ApacheDS > Issue Type: Improvement > Affects Versions: 2.0.0-M21 > Reporter: Emmanuel Lecharny > Priority: Major > Fix For: 2.0.0-M25 > > > When we process a {{BindRequest}}, we first fetch the principal : > {noformat} > public void handleSimpleAuth( LdapSession ldapSession, BindRequest bindRequest ) throws Exception > { > ... > principalEntry = directoryService.getAdminSession().lookup( bindRequest.getDn() ); > ... > {noformat} > then we do the actual bind : > {noformat} > ... > directoryService.getOperationManager().bind( bindContext ); > ... > {noformat} > At this point, we have not kept a trace of the entry we just fetched previously. This is a waste of CPU... -- This message was sent by Atlassian JIRA (v7.6.3#76005)