From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11274 invoked by alias); 19 Oct 2009 18:02:20 -0000 Received: (qmail 11186 invoked by uid 22791); 19 Oct 2009 18:02:19 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from smtp-outbound-1.vmware.com (HELO smtp-outbound-1.vmware.com) (65.115.85.69) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 19 Oct 2009 18:02:15 +0000 Received: from mailhost4.vmware.com (mailhost4.vmware.com [10.16.67.124]) by smtp-outbound-1.vmware.com (Postfix) with ESMTP id 2CFEF131AF; Mon, 19 Oct 2009 11:02:14 -0700 (PDT) Received: from [10.20.94.141] (msnyder-server.eng.vmware.com [10.20.94.141]) by mailhost4.vmware.com (Postfix) with ESMTP id 1B192C9B34; Mon, 19 Oct 2009 11:02:14 -0700 (PDT) Message-ID: <4ADCA837.3010808@vmware.com> Date: Mon, 19 Oct 2009 18:02:00 -0000 From: Michael Snyder User-Agent: Thunderbird 1.5.0.12 (X11/20080411) MIME-Version: 1.0 To: Hui Zhu CC: "gdb-patches@sourceware.org" , "drow@false.org" Subject: Re: Seems like a bug in target_read_stack / dcache_xfer_memory? References: <4ADB9759.7060305@vmware.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes 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 X-SW-Source: 2009-10/txt/msg00435.txt.bz2 Hui Zhu wrote: > I just want talk to you about it. > > + if (target_read_memory (entry->u.mem.addr, mem, entry->u.mem.len)) > + { > + entry->u.mem.mem_entry_not_accessible = 1; > + if (record_debug) > + warning (_("Process record: error reading memory at " > + "addr = %s len = %d."), > + paddress (gdbarch, entry->u.mem.addr), > + entry->u.mem.len); > + } > + else > + { > + if (target_write_memory (entry->u.mem.addr, > + record_get_loc (entry), > + entry->u.mem.len)) > > Maybe we need change it to: > if (target_read_memory (entry->u.mem.addr, mem, entry->u.mem.len) <= 0) > if (target_write_memory (entry->u.mem.addr, > + record_get_loc (entry), > + entry->u.mem.len) <= 0) Yeah, I think you're right. That warning used to be an error, so we wouldn't fall through, but now we do. However, this is not what causes my current problem. I'll leave it up to you to find a fix for this one. ;-) > On Mon, Oct 19, 2009 at 06:31, Michael Snyder wrote: >> OK, this is right at the hairy edge of my understanding, and I >> admit up front that I did not carefully follow the email thread, but... >> >> There was this email thread about reading beyond the stack, and >> using dcache, which I did not follow carefully. And now I think >> I'm running into it. >> >> Short version: code in memory_xfer_partial looks like this: >> >> 1280 /* FIXME drow/2006-08-09: If we're going to preserve const >> 1281 correctness dcache_xfer_memory should take readbuf and >> 1282 writebuf. */ >> 1283 res = dcache_xfer_memory (ops, target_dcache, memaddr, >> 1284 (void *) writebuf, >> 1285 reg_len, 1); >> 1286 if (res <= 0) >> 1287 return -1; >> >> I think that's wrong. I think it needs to test for "res == 0". >> >> Comment at dcache_xfer_memory says: >> >> The meaning of the result is the same as for target_write >> >> (Gripe: someone please fix that comment. Why should I have to >> go find another function in another file to find out what this >> function returns?) >> >> So the comment at target_write says... oh wait! There is no >> comment at target_write! I'm afraid I'm going to have to start >> getting grumpy now... >> >> Well, that returns target_write_with_progress. The comment >> there makes no mention of the return value. But it returns >> target_write_partial. STILL no comment about the return value. >> But this returns target_xfer_partial. GUESS WHAT? >> >> Well, this returns memory_xfer_partial, which is right back >> where I started. And *its* comment says: >> >> The arguments and return >> value are just as for target_xfer_partial >> >> Ummm, come on guys. Its Sunday and I've had a long day. >> Joke's getting old. Whoever took the comments, please put them back. >> >> Anyway, I don't even remember now how I figured this out, but >> I *THINK* what all these guys return is either 0 for success, >> or an errno value less than zoro. >> >> And if that's true, then line 1286 up there needs to bail out >> on zero and let the other target stack methods have a chance >> to read the memory. >> >> Eh? >> >> We now return you to the nice Michael. ;-) >> >> Daniel, you're not the target, you're only Cc:ed because your >> name is in the one comment that I *did* find. >> >> >>