On 02/05/2016 08:35 PM, William Lima wrote:
I had a "FATAL: Received Segment Violation...dying." after 2 hours in 
production. I suppose that's associated with the async behaviour before the conditional 
(src/ssl/helper.cc:238-241):

I can not find any error in your patch.
Did you kept any core/backtrace of this crash?
Maybe it is a different bug.



[...]

     Ssl::CertValidationHelper::CbDialer *dialer = 
dynamic_cast<Ssl::CertValidationHelper::CbDialer*>(crtdvdData->callback->getDialer());
     Must(dialer);
     dialer->arg1 = validationResponse;
     ScheduleCallHere(crtdvdData->callback);

[...]

----- Mensagem original -----
De: "Christos Tsantilas" <[email protected]>
Para: [email protected]
Enviadas: Sexta-feira, 5 de Fevereiro de 2016 16:08:20
Assunto: Re: [squid-dev] [PATCH] NotePairs, SSL and Cert Validation memory leaks

On 02/05/2016 07:24 PM, William Lima wrote:
My patch isn't working properly. I can't just delete there.

It should work.
Which is the problem?



William

----- Mensagem original -----
De: "William Lima" <[email protected]>
Para: [email protected]
Enviadas: Sexta-feira, 5 de Fevereiro de 2016 12:38:35
Assunto: Re: [squid-dev] [PATCH] NotePairs, SSL and Cert Validation memory leaks

Hi all,

This patch fixes the last leak I mentioned. It happens when the cache of 
sslcrtvalidator_program is disabled via ttl=0.

William

----- Mensagem original -----
De: "William Lima" <[email protected]>
Para: [email protected]
Enviadas: Quinta-feira, 4 de Fevereiro de 2016 15:14:17
Assunto: Re: [squid-dev] NotePairs, SSL and Cert Validation memory leaks

Hi Christos,

The leak is now fixed with your patch. Thank you!

FYI, the leak below persists:

   48,694 (3,168 direct, 45,526 indirect) bytes in 396 blocks are definitely 
lost in loss record 3,809 of 3,904
      at 0x4C27A2E: malloc (vg_replace_malloc.c:270)
      by 0x643214: xmalloc (xalloc.cc:114)
      by 0x4FD5F9: sslCrtvdHandleReplyWrapper(void*, Helper::Reply const&) 
(SquidNew.h:23)
      by 0x33F3A9: helperHandleRead(RefCount<Comm::Connection> const&, char*, 
unsigned long, Comm::Flag, int, void*) (helper.cc:818)
      by 0x4B482F: AsyncCall::make() (AsyncCall.cc:40)
      by 0x4B7EF2: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
      by 0x4B827F: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
      by 0x31CF2B: EventLoop::runOnce() (EventLoop.cc:120)
      by 0x31D0F7: EventLoop::run() (EventLoop.cc:82)
      by 0x390AAD: SquidMain(int, char**) (main.cc:1539)
      by 0x391867: main (main.cc:1263)

William

----- Mensagem original -----
De: "Christos Tsantilas" <[email protected]>
Para: "William Lima" <[email protected]>
Cc: [email protected]
Enviadas: Segunda-feira, 18 de Janeiro de 2016 16:35:40
Assunto: Re: [squid-dev] NotePairs, SSL and Cert Validation memory leaks

Hi William,

     I am attaching a patch for squid-3.5 in the case you want to test it.


On 01/15/2016 06:17 PM, William Lima wrote:
Hi Christos,

Great news! I can also test your patch. About the other (Notes) leaks, they 
still occur, although they are smaller if compared to the Cert Validation.

William

----- Mensagem original -----
De: "Christos Tsantilas" <[email protected]>
Para: "William Lima" <[email protected]>
Cc: [email protected]
Enviadas: Quinta-feira, 14 de Janeiro de 2016 17:33:26
Assunto: Re: [squid-dev] NotePairs, SSL and Cert Validation memory leaks

Hi William,

      We had already recognise the reason of this leek and we are testing
localy a patch.

I am not able to reproduce Notes related memory leaks.
Are the other Notes related memory leaks disappeared for you using the
r13974?



On 01/14/2016 09:24 PM, William Lima wrote:
Christos,

The problem persists with the r13974.

     15,620 (192 direct, 15,428 indirect) bytes in 4 blocks are definitely lost 
in loss record 2,921 of 2,998
        at 0x4C267BB: calloc (vg_replace_malloc.c:593)
        by 0x642FD6: xcalloc (xalloc.cc:83)
        by 0x63D582: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
        by 0x29ACB5: cbdataInternalAlloc(int) (cbdata.cc:281)
        by 0x4EA600: 
Ssl::PeerConnector::sslCrtvdCheckForErrors(Ssl::CertValidationResponse const&, 
Ssl::ErrorDetail*&) (CbDataList.h:37)
        by 0x4EC2AC: 
Ssl::PeerConnector::sslCrtvdHandleReply(RefCount<Ssl::CertValidationResponse>) 
(PeerConnector.cc:489)
        by 0x4EEEDE: UnaryMemFunT<Ssl::PeerConnector, 
RefCount<Ssl::CertValidationResponse>, RefCount<Ssl::CertValidationResponse> 
>::doDial() (AsyncJobCalls.h:121)
        by 0x4EE59A: JobDialer<Ssl::PeerConnector>::dial(AsyncCall&) 
(AsyncJobCalls.h:174)
        by 0x4B479F: AsyncCall::make() (AsyncCall.cc:40)
        by 0x4B7E62: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
        by 0x4B81EF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
        by 0x31CE9B: EventLoop::runOnce() (EventLoop.cc:120)
        by 0x31D067: EventLoop::run() (EventLoop.cc:82)
        by 0x390A1D: SquidMain(int, char**) (main.cc:1539)
        by 0x3917D7: main (main.cc:1263)


William

----- Mensagem original -----
De: "Christos Tsantilas" <[email protected]>
Para: [email protected]
Enviadas: Quarta-feira, 13 de Janeiro de 2016 14:24:11
Assunto: Re: [squid-dev] NotePairs, SSL and Cert Validation memory leaks

On 01/13/2016 05:47 PM, Alex Rousskov wrote:
On 01/13/2016 07:50 AM, William Lima wrote:

I'm using r13967.

If Christos is right, you should be using r13974.

Unfortunately the patch-r13967 is fixing some similar problems. This is
the last with similar fixes.



Alex.


----- Mensagem original -----
De: "Christos Tsantilas" <[email protected]>
Para: "William Lima" <[email protected]>, 
[email protected]
Enviadas: Quarta-feira, 13 de Janeiro de 2016 12:28:57
Assunto: Re: [squid-dev] NotePairs, SSL and Cert Validation memory leaks

The latest squid-3.5.13 release should include fixes for these leaks.
Which squid version are you using?


On 01/11/2016 07:04 PM, William Lima wrote:
Hi all,

I have identified those memory leaks in the latest version of Squid 3.5:

       128 (48 direct, 80 indirect) bytes in 1 blocks are definitely lost in 
loss record 1,875 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A59D1: NotePairs::add(char const*, char const*) (Notes.h:211)
          by 0x563C63: Helper::Reply::parse(char*, unsigned long) (Reply.cc:106)
          by 0x563D6E: Helper::Reply::Reply(char*, unsigned long) (Reply.cc:23)
          by 0x33DC72: helperStatefulHandleRead(RefCount<Comm::Connection> 
const&, char*, unsigned long, Comm::Flag, int, void*) (helper.cc:1000)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       128 (48 direct, 80 indirect) bytes in 1 blocks are definitely lost in 
loss record 1,876 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A59D1: NotePairs::add(char const*, char const*) (Notes.h:211)
          by 0x562F01: Helper::Reply::parseResponseKeys() (Reply.cc:182)
          by 0x5635AA: Helper::Reply::parse(char*, unsigned long) (Reply.cc:127)
          by 0x563D6E: Helper::Reply::Reply(char*, unsigned long) (Reply.cc:23)
          by 0x33F178: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:817)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       144 (96 direct, 48 indirect) bytes in 2 blocks are definitely lost in 
loss record 1,917 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x29AB25: cbdataInternalAlloc(int) (cbdata.cc:281)
          by 0x4F9220: ssl_verify_cb(int, x509_store_ctx_st*) (CbDataList.h:37)
          by 0x5B85EB1: X509_verify_cert (x509_vfy.c:349)
          by 0x5843087: ssl_verify_cert_chain (ssl_cert.c:554)
          by 0x58221C2: ssl3_get_server_certificate (s3_clnt.c:1161)
          by 0x5824831: ssl3_connect (s3_clnt.c:334)
          by 0x582D676: ssl23_connect (s23_clnt.c:776)
          by 0x4ED7DB: Ssl::PeerConnector::negotiateSsl() (PeerConnector.cc:248)
          by 0x4EDF9A: JobDialer<Ssl::PeerConnector>::dial(AsyncCall&) 
(AsyncJobCalls.h:174)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       192 (144 direct, 48 indirect) bytes in 3 blocks are definitely lost in 
loss record 2,046 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x29AB25: cbdataInternalAlloc(int) (cbdata.cc:281)
          by 0x4F902A: ssl_verify_cb(int, x509_store_ctx_st*) (CbDataList.h:37)
          by 0x5B865CD: X509_verify_cert (x509_vfy.c:679)
          by 0x5843087: ssl_verify_cert_chain (ssl_cert.c:554)
          by 0x58221C2: ssl3_get_server_certificate (s3_clnt.c:1161)
          by 0x5824831: ssl3_connect (s3_clnt.c:334)
          by 0x582D676: ssl23_connect (s23_clnt.c:776)
          by 0x4ED7DB: Ssl::PeerConnector::negotiateSsl() (PeerConnector.cc:248)
          by 0x4EDF9A: JobDialer<Ssl::PeerConnector>::dial(AsyncCall&) 
(AsyncJobCalls.h:174)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       5,000 (1,776 direct, 3,224 indirect) bytes in 37 blocks are definitely 
lost in loss record 3,060 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A5AF7: NotePairs::append(NotePairs const*) (Notes.h:211)
          by 0x327345: ExternalACLEntry::update(ExternalACLEntryData const&) 
(ExternalACLEntry.cc:41)
          by 0x322A3D: external_acl_cache_add(external_acl*, char const*, 
ExternalACLEntryData const&) (external_acl.cc:1264)
          by 0x3230E4: externalAclHandleReply(void*, Helper::Reply const&) 
(external_acl.cc:1376)
          by 0x33F189: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:818)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       6,368 (2,256 direct, 4,112 indirect) bytes in 47 blocks are definitely 
lost in loss record 3,077 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A5AF7: NotePairs::append(NotePairs const*) (Notes.h:211)
          by 0x322C2B: externalAclHandleReply(void*, Helper::Reply const&) 
(external_acl.cc:1346)
          by 0x33F189: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:818)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       8,088 (2,736 direct, 5,352 indirect) bytes in 57 blocks are definitely 
lost in loss record 3,090 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A5EE9: NotePairs::appendNewOnly(NotePairs const*) (Notes.h:211)
          by 0x48AD6C: Auth::Ntlm::UserRequest::HandleReply(void*, Helper::Reply 
const&) (UserRequest.cc:274)
          by 0x33DCB1: helperStatefulHandleRead(RefCount<Comm::Connection> 
const&, char*, unsigned long, Comm::Flag, int, void*) (helper.cc:1002)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       15,551 (96 direct, 15,455 indirect) bytes in 2 blocks are definitely 
lost in loss record 3,137 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x29AB25: cbdataInternalAlloc(int) (cbdata.cc:281)
          by 0x4F902A: ssl_verify_cb(int, x509_store_ctx_st*) (CbDataList.h:37)
          by 0x5B8643C: X509_verify_cert (x509_vfy.c:382)
          by 0x5843087: ssl_verify_cert_chain (ssl_cert.c:554)
          by 0x58221C2: ssl3_get_server_certificate (s3_clnt.c:1161)
          by 0x5824831: ssl3_connect (s3_clnt.c:334)
          by 0x582D676: ssl23_connect (s23_clnt.c:776)
          by 0x4ED7DB: Ssl::PeerConnector::negotiateSsl() (PeerConnector.cc:248)
          by 0x4EDF9A: JobDialer<Ssl::PeerConnector>::dial(AsyncCall&) 
(AsyncJobCalls.h:174)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       15,810 (192 direct, 15,618 indirect) bytes in 4 blocks are definitely 
lost in loss record 3,140 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x29AB25: cbdataInternalAlloc(int) (cbdata.cc:281)
          by 0x4EA000: 
Ssl::PeerConnector::sslCrtvdCheckForErrors(Ssl::CertValidationResponse const&, 
Ssl::ErrorDetail*&) (CbDataList.h:37)
          by 0x4EBCAC: 
Ssl::PeerConnector::sslCrtvdHandleReply(RefCount<Ssl::CertValidationResponse>) 
(PeerConnector.cc:489)
          by 0x4EE8DE: UnaryMemFunT<Ssl::PeerConnector, 
RefCount<Ssl::CertValidationResponse>, RefCount<Ssl::CertValidationResponse> 
>::doDial() (AsyncJobCalls.h:121)
          by 0x4EDF9A: JobDialer<Ssl::PeerConnector>::dial(AsyncCall&) 
(AsyncJobCalls.h:174)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       17,432 (5,712 direct, 11,720 indirect) bytes in 119 blocks are 
definitely lost in loss record 3,151 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A5AF7: NotePairs::append(NotePairs const*) (Notes.h:211)
          by 0x327345: ExternalACLEntry::update(ExternalACLEntryData const&) 
(ExternalACLEntry.cc:41)
          by 0x3224FA: external_acl_cache_add(external_acl*, char const*, 
ExternalACLEntryData const&) (external_acl.cc:1257)
          by 0x3230E4: externalAclHandleReply(void*, Helper::Reply const&) 
(external_acl.cc:1376)
          by 0x33F189: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:818)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       36,456 (12,912 direct, 23,544 indirect) bytes in 269 blocks are 
definitely lost in loss record 3,188 of 3,225
          at 0x4C267BB: calloc (vg_replace_malloc.c:593)
          by 0x642906: xcalloc (xalloc.cc:83)
          by 0x63CEB2: MemPoolMalloc::allocate() (MemPoolMalloc.cc:39)
          by 0x3A5AF7: NotePairs::append(NotePairs const*) (Notes.h:211)
          by 0x3A5C91: UpdateRequestNotes(ConnStateData*, HttpRequest&, NotePairs 
const&) (Notes.cc:275)
          by 0x324708: ACLExternal::match(ACLChecklist*) (external_acl.cc:716)
          by 0x4ABE07: ACL::matches(ACLChecklist*) const (Acl.cc:154)
          by 0x4AF1DA: ACLChecklist::matchChild(Acl::InnerNode const*, 
__gnu_cxx::__normal_iterator<ACL* const*, std::vector<ACL*, std::allocator<ACL*> > 
>, ACL const*) (Checklist.cc:94)
          by 0x4AE372: Acl::AndNode::doMatch(ACLChecklist*, __gnu_cxx::__normal_iterator<ACL* 
const*, std::vector<ACL*, std::allocator<ACL*> > >) const (BoolOps.cc:89)
          by 0x4B1953: Acl::InnerNode::resumeMatchingAt(ACLChecklist*, 
__gnu_cxx::__normal_iterator<ACL* const*, std::vector<ACL*, std::allocator<ACL*> > 
>) const (InnerNode.cc:95)
          by 0x4AF08B: ACLChecklist::matchChild(Acl::InnerNode const*, 
__gnu_cxx::__normal_iterator<ACL* const*, std::vector<ACL*, std::allocator<ACL*> > 
>, ACL const*) (Checklist.cc:99)
          by 0x4AE2EE: Acl::OrNode::doMatch(ACLChecklist*, __gnu_cxx::__normal_iterator<ACL* 
const*, std::vector<ACL*, std::allocator<ACL*> > >) const (BoolOps.cc:133)
          by 0x4B1953: Acl::InnerNode::resumeMatchingAt(ACLChecklist*, 
__gnu_cxx::__normal_iterator<ACL* const*, std::vector<ACL*, std::allocator<ACL*> > 
>) const (InnerNode.cc:95)
          by 0x4AF7DC: ACLChecklist::matchAndFinish() (Checklist.cc:300)
          by 0x4B0E27: 
ACLChecklist::resumeNonBlockingCheck(ACLChecklist::AsyncState*) 
(Checklist.cc:282)
          by 0x322E0E: externalAclHandleReply(void*, Helper::Reply const&) 
(external_acl.cc:1390)
          by 0x33F189: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:818)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

       98,125 (5,360 direct, 92,765 indirect) bytes in 670 blocks are 
definitely lost in loss record 3,215 of 3,225
          at 0x4C27A2E: malloc (vg_replace_malloc.c:270)
          by 0x642864: xmalloc (xalloc.cc:114)
          by 0x4FCE69: sslCrtvdHandleReplyWrapper(void*, Helper::Reply const&) 
(SquidNew.h:23)
          by 0x33F189: helperHandleRead(RefCount<Comm::Connection> const&, 
char*, unsigned long, Comm::Flag, int, void*) (helper.cc:818)
          by 0x4B419F: AsyncCall::make() (AsyncCall.cc:40)
          by 0x4B7862: AsyncCallQueue::fireNext() (AsyncCallQueue.cc:56)
          by 0x4B7BEF: AsyncCallQueue::fire() (AsyncCallQueue.cc:42)
          by 0x31CD0B: EventLoop::runOnce() (EventLoop.cc:120)
          by 0x31CED7: EventLoop::run() (EventLoop.cc:82)
          by 0x39088D: SquidMain(int, char**) (main.cc:1539)
          by 0x391647: main (main.cc:1263)

Does anyone have a clue about the NotePairs leaks?

Thanks in advance,

William Lima
_______________________________________________
squid-dev mailing list
[email protected]
http://lists.squid-cache.org/listinfo/squid-dev

Reply via email to