From: Pedro Alves <palves@redhat.com>
To: Pierre Muller <pierre.muller@ics-cnrs.unistra.fr>
Cc: gdb-patches@sourceware.org
Subject: Re: [RFA] gdbserver/win32-low.c: Check Read/WriteProcessMemory return value (followup to [RFA] windows-nat.c: Handle ERROR_PARTIAL_COPY in windows_xfer_memory function)
Date: Mon, 02 Sep 2013 14:09:00 -0000 [thread overview]
Message-ID: <52249C06.1020100@redhat.com> (raw)
In-Reply-To: <52249a22.42bd420a.28f1.722cSMTPIN_ADDED_BROKEN@mx.google.com>
On 09/02/2013 03:00 PM, Pierre Muller wrote:
>>> What about this patch,
>>> it still does not allow to really return the number of bytes read or
>>> written,
>>> but at least it checks correctly if the API calls succeeded.
>>
>> No, as long as the read_memory/write_memory interfaces do not
>> support partial transfers, we should only return true if the
>> all of LEN was transferred. Otherwise, things like:
>>
>> static int
>> gdb_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
>> {
>> ...
>> {
>> res = read_inferior_memory (memaddr, myaddr, len);
>> done_accessing_memory ();
>>
>> return res == 0 ? len : -1;
>> }
>> }
>>
>> will behave incorrectly in the ERROR_PARTIAL_COPY scenario...
>
> This is still done in win32_{read/write}_inferior_memory which are the two
> only callers of the static child_xfer_memory function in win32-low.c
> Thus the aim was to narrow the behavior gap between
> windows-nat.c windows_xfer_memory function
> and the win32-low.c child_xfer_memory function,
> without (for now) changing anything to the beghavior of gdbserver,
> as guaranteed by the
> static int
> win32_write_inferior_memory (CORE_ADDR memaddr, const unsigned char *myaddr,
> int len)
> {
> return child_xfer_memory (memaddr, (char *) myaddr, len, 1, 0) != len;
> }
>
> code...
>
> The only thing I changed is that child_xfer_memory returns the correct
> amount of read/written memory or -1 if an error, other than
> ERRO_PARTIAL_COPY, occurred.
> Thus I think that your answer is missing the intermediate
> win32_{read/write}_inferior_memory level.
>
Ah, indeed.
Why the different styles in gdb's and gdbserver patches, though?
gdb:
> + if (!success && lasterror == ERROR_PARTIAL_COPY && done > 0)
> + return done;
> + else
> + return success ? done : TARGET_XFER_E_IO;
gdbserver:
> + if (success)
> + return done;
> + else
> + {
> + if (lasterror == ERROR_PARTIAL_COPY && done > 0)
> + return done;
> + else
> + return -1;
> }
We should be able to compare the functions and see at
a glance they are almost duplicates. With the different
styles, it's not immediately obvious. Can you make the
gdbserver code look like gdb's?
Thanks,
--
Pedro Alves
next prev parent reply other threads:[~2013-09-02 14:09 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <5223bb46.c6c0420a.5a41.008dSMTPIN_ADDED_BROKEN@mx.google.com>
2013-09-02 12:34 ` [RFA] windows-nat.c: Handle ERROR_PARTIAL_COPY in windows_xfer_memory function Pedro Alves
2013-09-02 12:48 ` Pierre Muller
2013-09-02 12:50 ` Pedro Alves
2013-09-02 13:05 ` Pierre Muller
2013-09-02 13:19 ` Pedro Alves
2013-09-02 13:38 ` [RFA] gdbserver/win32-low.c: Check Read/WriteProcessMemory return value (followup to [RFA] windows-nat.c: Handle ERROR_PARTIAL_COPY in windows_xfer_memory function) Pierre Muller
[not found] ` <522494dc.297a420a.6ab0.6047SMTPIN_ADDED_BROKEN@mx.google.com>
2013-09-02 13:50 ` Pedro Alves
2013-09-02 14:01 ` Pierre Muller
[not found] ` <52249a22.42bd420a.28f1.722cSMTPIN_ADDED_BROKEN@mx.google.com>
2013-09-02 14:09 ` Pedro Alves [this message]
2013-09-02 14:18 ` Pierre Muller
[not found] ` <52249e27.e8a4420a.4293.ffff89a0SMTPIN_ADDED_BROKEN@mx.google.com>
2013-09-02 14:19 ` Pedro Alves
2013-09-02 14:25 ` [RFA-v2] " Pierre Muller
2013-09-02 14:29 ` Pedro Alves
2013-09-02 14:35 ` Pierre Muller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52249C06.1020100@redhat.com \
--to=palves@redhat.com \
--cc=gdb-patches@sourceware.org \
--cc=pierre.muller@ics-cnrs.unistra.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox