xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Wen Congyang <wency@cn.fujitsu.com>,
	Ian Campbell <Ian.Campbell@citrix.com>
Cc: Ian Jackson <Ian.Jackson@eu.citrix.com>,
	Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [Patch v3 2/2] tools/libxc: Implement writev_exact() in the same style as write_exact()
Date: Fri, 18 Jul 2014 13:32:08 +0100	[thread overview]
Message-ID: <53C913C8.6070502@citrix.com> (raw)
In-Reply-To: <53C8F160.7040005@cn.fujitsu.com>

On 18/07/14 11:05, Wen Congyang wrote:
> At 07/18/2014 05:53 PM, Ian Campbell Wrote:
>> On Fri, 2014-07-18 at 10:20 +0100, Andrew Cooper wrote:
>>> On 18/07/14 02:14, Wen Congyang wrote:
>>>> At 07/16/2014 10:32 PM, Andrew Cooper Wrote:
>>>>> This implementation of writev_exact() will cope with an iovcnt greater than
>>>>> IOV_MAX because glibc will actually let this work anyway, and it is very
>>>>> useful not to have to work about this in the caller of writev_exact().  The
>>>>> caller is still required to ensure that the sum of iov_len's doesn't overflow
>>>>> a ssize_t.
>>>>>
>>>>> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
>>>>> CC: Ian Campbell <Ian.Campbell@citrix.com>
>>>>> CC: Ian Jackson <Ian.Jackson@eu.citrix.com>
>>>>>
>>>>> ---
>>>>> v3:
>>>>>  * Re-add adjustment for partial writes.
>>>>>  * Split min/max adjustment into separate patch.
>>>>>
>>>>> v2:
>>>>>  * Remove adjustment for partial writes of a specific iov[] entry.
>>>>> ---
>>>>>  tools/libxc/xc_private.c |   60 ++++++++++++++++++++++++++++++++++++++++++++++
>>>>>  tools/libxc/xc_private.h |    2 ++
>>>>>  2 files changed, 62 insertions(+)
>>>>>
>>>>> diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c
>>>>> index 1c214dd..0941b06 100644
>>>>> --- a/tools/libxc/xc_private.c
>>>>> +++ b/tools/libxc/xc_private.c
>>>>> @@ -858,6 +858,66 @@ int write_exact(int fd, const void *data, size_t size)
>>>>>      return 0;
>>>>>  }
>>>>>  
>>>>> +int writev_exact(int fd, const struct iovec *iov, int iovcnt)
>>>>> +{
>>>>> +    struct iovec *local_iov = NULL;
>>>>> +    int rc = 0, iov_idx = 0, saved_errno = 0;
>>>>> +    ssize_t len;
>>>>> +
>>>>> +    while ( iov_idx < iovcnt )
>>>>> +    {
>>>>> +        /* Skip over iov[] entries with 0 length. */
>>>>> +        while ( iov[iov_idx].iov_len == 0 )
>>>>> +            if ( ++iov_idx == iovcnt )
>>>>> +                goto out;
>>>> set saved_errn to 0 before goto out?
>>> Good catch.
>> Isn't this a success path? errno is generally undefined on success.
> Yes, but we set saved_errno to 0 here:
>> +    saved_errno = 0;
>> +
>> + out:
>> +    free(local_iov);
>> +    errno = saved_errno;
>> +    return rc;
>> +}
> I think there is no need to save errno in this function, because
> we return -1 when writev()/malloc() fails.
>
> Another problem:

I am deliberately creating the same (somewhat quirky) error semantics of
write_exact(), for consistency reasons.

The key point is that EOF is -1 and errno of 0.

>> +                    local_iov = malloc(iovcnt * sizeof(*iov));
>> +                    if ( !local_iov )
>> +                    {
>> +                        saved_errno = ENOMEM;
>> +                        goto out;
>> +                    }
>> +
> rc is not set to -1 before goto out.
>
> Thanks
> Wen Congyang

Good point.

~Andrew

  reply	other threads:[~2014-07-18 12:32 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-16 14:32 [Patch v3 1/2] tools/libxc: Shuffle definitions and uses of min()/max() macros Andrew Cooper
2014-07-16 14:32 ` [Patch v3 2/2] tools/libxc: Implement writev_exact() in the same style as write_exact() Andrew Cooper
2014-07-18  1:14   ` Wen Congyang
2014-07-18  9:20     ` Andrew Cooper
2014-07-18  9:31       ` [PATCH v4 " Andrew Cooper
2014-07-18  9:53       ` [Patch v3 " Ian Campbell
2014-07-18 10:05         ` Wen Congyang
2014-07-18 12:32           ` Andrew Cooper [this message]
2014-07-17 14:15 ` [Patch v3 1/2] tools/libxc: Shuffle definitions and uses of min()/max() macros Ian Campbell
2014-07-18 12:43   ` Ian Campbell

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=53C913C8.6070502@citrix.com \
    --to=andrew.cooper3@citrix.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=Ian.Jackson@eu.citrix.com \
    --cc=wency@cn.fujitsu.com \
    --cc=xen-devel@lists.xen.org \
    /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;
as well as URLs for NNTP newsgroup(s).