From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 92488 invoked by alias); 12 May 2015 09:43:02 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 92469 invoked by uid 89); 12 May 2015 09:43:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 12 May 2015 09:43:00 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id 5DFE8DBB; Tue, 12 May 2015 09:42:59 +0000 (UTC) Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t4C9gvcd001711; Tue, 12 May 2015 05:42:58 -0400 Message-ID: <5551CB20.4090104@redhat.com> Date: Tue, 12 May 2015 09:43:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Joel Brobecker CC: gdb-patches@sourceware.org, Jerome Guitton Subject: Re: [RFA/commit] Memory leak in on reading frame register References: <1431100524-7793-1-git-send-email-brobecker@adacore.com> <55508A83.3060605@redhat.com> <20150511205312.GE4767@adacore.com> In-Reply-To: <20150511205312.GE4767@adacore.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2015-05/txt/msg00264.txt.bz2 On 05/11/2015 09:53 PM, Joel Brobecker wrote: >>> When using a conditional breakpoint where the condition evaluated >>> to false a large number of times before the program stopped, >>> a user reported that GDB's memory consumption was growing very >>> quickly until it ran out of memory. >>> >>> The problem was tracked down to temporary struct values being created >>> each time the program stops and we evaluate those conditions. This >>> patch fixes the issue by releasing the temporary values, and adds >>> a comment explaining why we do that. >>> >>> gdb/ChangeLog: >>> >>> Jerome Guitton : >>> * findvar.c (read_frame_register_value): Fix a memory leak. >>> >>> Tested on x86_64-linux. No regression. >>> >> >> Not sure about this. >> >> How come this in bpstat_check_breakpoint_conditions didn't >> handle this issue already? : >> >> ... >> /* We use value_mark and value_free_to_mark because it could >> be a long time before we return to the command level and >> call free_all_values. We can't call free_all_values >> because we might be in the middle of evaluating a >> function call. */ >> struct value *mark = value_mark (); >> >> ... >> value_free_to_mark (mark); > > An excellent question, which I will try to research in the next > couple of days! Thanks. I wonder whether the leaks come from constructing the current frame at each stop, instead of from evaluating breakpoint conditions. E.g.., if we do a "step" over: while (1); ... are we constantly leaking values until the user does ctrl-c? That would suggest to me to that we should be doing value_mark/value_free_to_mark around each handle_inferior_event. > > ... > >> Otherwise, what is releasing other kinds of temporary values? >> Are we leaking them? E.g., with: >> >> int global_val; >> void foo () {} >> int main () { while (1) foo (); } >> >> and then: >> >> (gdb) break foo if global_var == 1 >> >> an/or: >> >> (gdb) break foo if (global_var + 1) == 2 >> >> >> Maybe nothing breaks with this patch as its deleting register lval >> values, but the case above would involve lval_memory values, >> and if we did something for those like in this patch, I fear >> that places that want to walk an expression's value chain, >> like update_watchpoint / can_use_hardware_watchpoint would break. > > But I confess I don't quite understand what you mean by the above. > Are you saying that the current patch may be OK (because we're Right, I'm saying that it may not be breaking things just because (I think) we don't look at lval_register values in the code I pointed out. > creating and deleting a value that we know is independent of all > other values), but that it sets a precendent for other forms where > it might not be OK? Right. Thanks, Pedro Alves