[{"id":3677290,"web_url":"http://patchwork.ozlabs.org/comment/3677290/","msgid":"<87h5pdzgmn.fsf@suse.de>","list_archive_url":null,"date":"2026-04-14T15:49:36","subject":"Re: [PATCH v3 1/4] io/channel: introduce qio_channel_pread{v,\n }_all{, _eof}()","submitter":{"id":85343,"url":"http://patchwork.ozlabs.org/api/people/85343/","name":"Fabiano Rosas","email":"farosas@suse.de"},"content":"Junjie Cao <junjie.cao@intel.com> writes:\n\n> qio_channel_pread() and qio_channel_preadv() perform a single\n> positioned read and may return a short result.  Callers that need all\n> bytes currently have to open-code a retry loop or simply treat a short\n> read as an error.\n>\n> Introduce four new helpers following the existing read_all / readv_all\n> pattern:\n>\n>   qio_channel_preadv_all_eof()  -- retry loop; returns 1 on success,\n>                                     0 on clean EOF, -1 on error.\n>   qio_channel_preadv_all()      -- wraps _eof; treats early EOF as\n>                                     error; returns 0 / -1.\n>   qio_channel_pread_all_eof()   -- single-buffer convenience wrapper\n>                                     around preadv_all_eof().\n>   qio_channel_pread_all()       -- single-buffer convenience wrapper\n>                                     around preadv_all().\n>\n> These advance the file offset internally after each partial read.\n> All four are marked coroutine_mixed_fn, consistent with the existing\n> _all helpers.\n>\n> Suggested-by: Peter Xu <peterx@redhat.com>\n> Signed-off-by: Junjie Cao <junjie.cao@intel.com>\n> ---\n>  include/io/channel.h | 92 ++++++++++++++++++++++++++++++++++++++++++++\n>  io/channel.c         | 91 +++++++++++++++++++++++++++++++++++++++++++\n>  2 files changed, 183 insertions(+)\n>\n> diff --git a/include/io/channel.h b/include/io/channel.h\n> index 1b02350437..47af409ede 100644\n> --- a/include/io/channel.h\n> +++ b/include/io/channel.h\n> @@ -634,6 +634,98 @@ ssize_t qio_channel_preadv(QIOChannel *ioc, const struct iovec *iov,\n>  ssize_t qio_channel_pread(QIOChannel *ioc, void *buf, size_t buflen,\n>                            off_t offset, Error **errp);\n>  \n> +/**\n> + * qio_channel_preadv_all_eof:\n> + * @ioc: the channel object\n> + * @iov: the array of memory regions to read data into\n> + * @niov: the length of the @iov array\n> + * @offset: the starting offset in the channel to read from\n> + * @errp: pointer to a NULL-initialized error object\n> + *\n> + * Reads @iov, possibly blocking or (if the channel is non-blocking)\n> + * yielding from the current coroutine multiple times until the entire\n> + * content is read.  If end-of-file occurs immediately it is not an\n> + * error, but if it occurs after data has been read it will return\n> + * an error rather than a short-read.  Otherwise behaves as\n> + * qio_channel_preadv().\n> + *\n> + * Returns: 1 if all bytes were read, 0 if end-of-file occurs\n> + *          without data, or -1 on error\n> + */\n> +int coroutine_mixed_fn qio_channel_preadv_all_eof(QIOChannel *ioc,\n> +                                                  const struct iovec *iov,\n> +                                                  size_t niov,\n> +                                                  off_t offset,\n> +                                                  Error **errp);\n> +\n> +/**\n> + * qio_channel_preadv_all:\n> + * @ioc: the channel object\n> + * @iov: the array of memory regions to read data into\n> + * @niov: the length of the @iov array\n> + * @offset: the starting offset in the channel to read from\n> + * @errp: pointer to a NULL-initialized error object\n> + *\n> + * Reads @iov, possibly blocking or (if the channel is non-blocking)\n> + * yielding from the current coroutine multiple times until the entire\n> + * content is read.  If end-of-file occurs before all requested data\n> + * has been read, an error will be reported.  Otherwise behaves as\n> + * qio_channel_preadv().\n> + *\n> + * Returns: 0 if all bytes were read, or -1 on error\n> + */\n> +int coroutine_mixed_fn qio_channel_preadv_all(QIOChannel *ioc,\n> +                                              const struct iovec *iov,\n> +                                              size_t niov,\n> +                                              off_t offset,\n> +                                              Error **errp);\n> +\n> +/**\n> + * qio_channel_pread_all_eof:\n> + * @ioc: the channel object\n> + * @buf: the memory region to read data into\n> + * @buflen: the number of bytes to read into @buf\n> + * @offset: the starting offset in the channel to read from\n> + * @errp: pointer to a NULL-initialized error object\n> + *\n> + * Reads @buflen bytes, possibly blocking or (if the channel is\n> + * non-blocking) yielding from the current coroutine multiple times\n> + * until the entire content is read.  If end-of-file occurs\n> + * immediately it is not an error, but if it occurs after data has\n> + * been read it will return an error rather than a short-read.\n> + * Otherwise behaves as qio_channel_pread().\n> + *\n> + * Returns: 1 if all bytes were read, 0 if end-of-file occurs\n> + *          without data, or -1 on error\n> + */\n> +int coroutine_mixed_fn qio_channel_pread_all_eof(QIOChannel *ioc,\n> +                                                 void *buf,\n> +                                                 size_t buflen,\n> +                                                 off_t offset,\n> +                                                 Error **errp);\n> +\n> +/**\n> + * qio_channel_pread_all:\n> + * @ioc: the channel object\n> + * @buf: the memory region to read data into\n> + * @buflen: the number of bytes to read into @buf\n> + * @offset: the starting offset in the channel to read from\n> + * @errp: pointer to a NULL-initialized error object\n> + *\n> + * Reads @buflen bytes, possibly blocking or (if the channel is\n> + * non-blocking) yielding from the current coroutine multiple times\n> + * until the entire content is read.  If end-of-file occurs before\n> + * all requested data has been read, an error will be reported.\n> + * Otherwise behaves as qio_channel_pread().\n> + *\n> + * Returns: 0 if all bytes were read, or -1 on error\n> + */\n> +int coroutine_mixed_fn qio_channel_pread_all(QIOChannel *ioc,\n> +                                             void *buf,\n> +                                             size_t buflen,\n> +                                             off_t offset,\n> +                                             Error **errp);\n> +\n>  /**\n>   * qio_channel_shutdown:\n>   * @ioc: the channel object\n> diff --git a/io/channel.c b/io/channel.c\n> index cc02d997a4..52c1abfcbc 100644\n> --- a/io/channel.c\n> +++ b/io/channel.c\n> @@ -507,6 +507,97 @@ ssize_t qio_channel_pread(QIOChannel *ioc, void *buf, size_t buflen,\n>      return qio_channel_preadv(ioc, &iov, 1, offset, errp);\n>  }\n>  \n> +int coroutine_mixed_fn qio_channel_preadv_all_eof(QIOChannel *ioc,\n> +                                                  const struct iovec *iov,\n> +                                                  size_t niov,\n> +                                                  off_t offset,\n> +                                                  Error **errp)\n> +{\n> +    int ret = -1;\n> +    struct iovec *local_iov = g_new(struct iovec, niov);\n> +    struct iovec *local_iov_head = local_iov;\n> +    unsigned int nlocal_iov = niov;\n> +    bool partial = false;\n> +\n> +    nlocal_iov = iov_copy(local_iov, nlocal_iov,\n> +                          iov, niov,\n> +                          0, iov_size(iov, niov));\n> +\n> +    while (nlocal_iov > 0) {\n> +        ssize_t len;\n> +        len = qio_channel_preadv(ioc, local_iov, nlocal_iov, offset, errp);\n> +\n> +        if (len == QIO_CHANNEL_ERR_BLOCK) {\n> +            qio_channel_wait_cond(ioc, G_IO_IN);\n> +            continue;\n> +        }\n> +\n> +        if (len == 0) {\n> +            if (!partial) {\n> +                ret = 0;\n> +                goto cleanup;\n> +            }\n> +            error_setg(errp,\n> +                       \"Unexpected end-of-file before all data were read\");\n> +            goto cleanup;\n> +        }\n> +\n> +        if (len < 0) {\n> +            goto cleanup;\n> +        }\n> +\n> +        partial = true;\n> +        offset += len;\n> +        iov_discard_front(&local_iov, &nlocal_iov, len);\n> +    }\n> +\n> +    ret = 1;\n> +\n> + cleanup:\n> +    g_free(local_iov_head);\n> +    return ret;\n> +}\n> +\n> +int coroutine_mixed_fn qio_channel_preadv_all(QIOChannel *ioc,\n> +                                              const struct iovec *iov,\n> +                                              size_t niov,\n> +                                              off_t offset,\n> +                                              Error **errp)\n> +{\n> +    int ret = qio_channel_preadv_all_eof(ioc, iov, niov, offset, errp);\n> +\n> +    if (ret == 0) {\n> +        error_setg(errp,\n> +                   \"Unexpected end-of-file before all data were read\");\n> +        return -1;\n> +    }\n> +    if (ret == 1) {\n> +        return 0;\n> +    }\n> +\n> +    return ret;\n> +}\n> +\n> +int coroutine_mixed_fn qio_channel_pread_all_eof(QIOChannel *ioc,\n> +                                                 void *buf,\n> +                                                 size_t buflen,\n> +                                                 off_t offset,\n> +                                                 Error **errp)\n> +{\n> +    struct iovec iov = { .iov_base = buf, .iov_len = buflen };\n> +    return qio_channel_preadv_all_eof(ioc, &iov, 1, offset, errp);\n> +}\n> +\n> +int coroutine_mixed_fn qio_channel_pread_all(QIOChannel *ioc,\n> +                                             void *buf,\n> +                                             size_t buflen,\n> +                                             off_t offset,\n> +                                             Error **errp)\n> +{\n> +    struct iovec iov = { .iov_base = buf, .iov_len = buflen };\n> +    return qio_channel_preadv_all(ioc, &iov, 1, offset, errp);\n> +}\n> +\n>  int qio_channel_shutdown(QIOChannel *ioc,\n>                           QIOChannelShutdown how,\n>                           Error **errp)\n\nReviewed-by: Fabiano Rosas <farosas@suse.de>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@legolas.ozlabs.org","Authentication-Results":["legolas.ozlabs.org;\n\tdkim=pass (1024-bit key;\n unprotected) header.d=suse.de header.i=@suse.de header.a=rsa-sha256\n header.s=susede2_rsa header.b=rsgtrsHU;\n\tdkim=pass header.d=suse.de header.i=@suse.de header.a=ed25519-sha256\n header.s=susede2_ed25519 header.b=NX3AbKL9;\n\tdkim=pass (1024-bit key) header.d=suse.de header.i=@suse.de\n header.a=rsa-sha256 header.s=susede2_rsa header.b=hOrhlE5i;\n\tdkim=neutral header.d=suse.de header.i=@suse.de header.a=ed25519-sha256\n header.s=susede2_ed25519 header.b=+XeVD1zS;\n\tdkim-atps=neutral","legolas.ozlabs.org;\n spf=pass (sender SPF authorized) smtp.mailfrom=nongnu.org\n (client-ip=209.51.188.17; helo=lists1p.gnu.org;\n envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n receiver=patchwork.ozlabs.org)","smtp-out1.suse.de;\n dkim=pass header.d=suse.de header.s=susede2_rsa header.b=hOrhlE5i;\n dkim=pass header.d=suse.de header.s=susede2_ed25519 header.b=+XeVD1zS"],"Received":["from lists1p.gnu.org (lists1p.gnu.org [209.51.188.17])\n\t(using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits))\n\t(No client certificate requested)\n\tby legolas.ozlabs.org (Postfix) with ESMTPS id 4fw7z433bgz1y2d\n\tfor <incoming@patchwork.ozlabs.org>; Wed, 15 Apr 2026 01:50:39 +1000 (AEST)","from localhost ([::1] helo=lists1p.gnu.org)\n\tby lists1p.gnu.org with esmtp (Exim 4.90_1)\n\t(envelope-from <qemu-devel-bounces@nongnu.org>)\n\tid 1wCg1I-0002kv-TL; Tue, 14 Apr 2026 11:49:44 -0400","from eggs.gnu.org ([2001:470:142:3::10])\n by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)\n (Exim 4.90_1) (envelope-from <farosas@suse.de>) id 1wCg1H-0002kj-WD\n for qemu-devel@nongnu.org; Tue, 14 Apr 2026 11:49:44 -0400","from smtp-out1.suse.de ([2a07:de40:b251:101:10:150:64:1])\n by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)\n (Exim 4.90_1) (envelope-from <farosas@suse.de>) id 1wCg1F-0007LR-RG\n for qemu-devel@nongnu.org; Tue, 14 Apr 2026 11:49:43 -0400","from imap1.dmz-prg2.suse.org (imap1.dmz-prg2.suse.org\n [IPv6:2a07:de40:b281:104:10:150:64:97])\n (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest\n SHA256)\n (No client certificate requested)\n by smtp-out1.suse.de (Postfix) with ESMTPS id 4F2636A914;\n Tue, 14 Apr 2026 15:49:39 +0000 (UTC)","from imap1.dmz-prg2.suse.org (localhost [127.0.0.1])\n (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)\n key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest\n SHA256)\n (No client certificate requested)\n by imap1.dmz-prg2.suse.org (Postfix) with ESMTPS id E1F074B50C;\n Tue, 14 Apr 2026 15:49:38 +0000 (UTC)","from dovecot-director2.suse.de ([2a07:de40:b281:106:10:150:64:167])\n by imap1.dmz-prg2.suse.org with ESMTPSA id aBIqLBJi3mkpTgAAD6G6ig\n (envelope-from <farosas@suse.de>); Tue, 14 Apr 2026 15:49:38 +0000"],"DKIM-Signature":["v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de;\n s=susede2_rsa;\n t=1776181780;\n h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc:\n mime-version:mime-version:content-type:content-type:\n in-reply-to:in-reply-to:references:references;\n bh=JuABFH/YdCvraeXYX7tHVSOPi3HjUeD7bFQHpxxpxHY=;\n b=rsgtrsHUAmtcwudAueO7svWVe9uSUiq2NofZ4nsrcHc8jGw/4xE7fBs5LiTt4E7DGaasn2\n 8ZrlIKHFHcKLZ5QMTvZXYXN4f2EXcxS3maXvvMen1/0mwujorJx53LfhLKMmf+D0+FCq1W\n +4u2XfEML6xdTHqICoLMSj+4F6E3ntE=","v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de;\n s=susede2_ed25519; t=1776181780;\n h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc:\n mime-version:mime-version:content-type:content-type:\n in-reply-to:in-reply-to:references:references;\n bh=JuABFH/YdCvraeXYX7tHVSOPi3HjUeD7bFQHpxxpxHY=;\n b=NX3AbKL9Y/TUvjfKphFncrlzU6XTdd3ahJiuMla1dIgYlUwQyeE26MUDYBhc1J8rtBmiWQ\n byd4YCK/I2nTVcCg==","v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de;\n s=susede2_rsa;\n t=1776181779;\n h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc:\n mime-version:mime-version:content-type:content-type:\n in-reply-to:in-reply-to:references:references;\n bh=JuABFH/YdCvraeXYX7tHVSOPi3HjUeD7bFQHpxxpxHY=;\n b=hOrhlE5ioBTmBV+nWb3XLDG9xfFTUeX2QObDbFTuehPsr5ym8R/4Fk35DgxvG+p4sj1RwU\n oxk0JnpPMWpaAv7ahM/ySk0RG/ZvETRBsxFZUAH2wasFBOAtaYcIPASnZYZ40I+i1Bw9Uc\n BbKHp0TK7GufV8aX6ua15ahq+lhtA2o=","v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de;\n s=susede2_ed25519; t=1776181779;\n h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc:\n mime-version:mime-version:content-type:content-type:\n in-reply-to:in-reply-to:references:references;\n bh=JuABFH/YdCvraeXYX7tHVSOPi3HjUeD7bFQHpxxpxHY=;\n b=+XeVD1zSlU1gvvACw6G1QMMWNSbNpvQevRIMr7qEuvJirohysTyQ2PRJkTrUKYfvKOnHq1\n QtrZTKecqMlR0QDA=="],"From":"Fabiano Rosas <farosas@suse.de>","To":"Junjie Cao <junjie.cao@intel.com>, qemu-devel@nongnu.org","Cc":"berrange@redhat.com, peterx@redhat.com, junjie.cao@intel.com","Subject":"Re: [PATCH v3 1/4] io/channel: introduce qio_channel_pread{v,\n }_all{, _eof}()","In-Reply-To":"<20260413214549.926435-2-junjie.cao@intel.com>","References":"<20260413214549.926435-1-junjie.cao@intel.com>\n <20260413214549.926435-2-junjie.cao@intel.com>","Date":"Tue, 14 Apr 2026 12:49:36 -0300","Message-ID":"<87h5pdzgmn.fsf@suse.de>","MIME-Version":"1.0","Content-Type":"text/plain","X-Spamd-Result":"default: False [-4.51 / 50.00]; BAYES_HAM(-3.00)[100.00%];\n NEURAL_HAM_LONG(-1.00)[-1.000];\n R_DKIM_ALLOW(-0.20)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519];\n NEURAL_HAM_SHORT(-0.20)[-1.000]; MIME_GOOD(-0.10)[text/plain];\n MX_GOOD(-0.01)[]; ARC_NA(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[];\n RCVD_TLS_ALL(0.00)[]; MISSING_XM_UA(0.00)[];\n TO_DN_SOME(0.00)[]; MIME_TRACE(0.00)[0:+];\n SPAMHAUS_XBL(0.00)[2a07:de40:b281:104:10:150:64:97:from];\n FUZZY_RATELIMITED(0.00)[rspamd.com];\n MID_RHS_MATCH_FROM(0.00)[];\n DKIM_SIGNED(0.00)[suse.de:s=susede2_rsa,suse.de:s=susede2_ed25519];\n FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[];\n RCPT_COUNT_FIVE(0.00)[5]; RCVD_COUNT_TWO(0.00)[2];\n TO_MATCH_ENVRCPT_ALL(0.00)[];\n DBL_BLOCKED_OPENRESOLVER(0.00)[imap1.dmz-prg2.suse.org:helo,imap1.dmz-prg2.suse.org:rdns,suse.de:mid,suse.de:dkim,suse.de:email];\n DKIM_TRACE(0.00)[suse.de:+]","X-Rspamd-Action":"no action","X-Spam-Score":"-4.51","X-Rspamd-Server":"rspamd1.dmz-prg2.suse.org","X-Rspamd-Queue-Id":"4F2636A914","Received-SPF":"pass client-ip=2a07:de40:b251:101:10:150:64:1;\n envelope-from=farosas@suse.de; helo=smtp-out1.suse.de","X-Spam_score_int":"-20","X-Spam_score":"-2.1","X-Spam_bar":"--","X-Spam_report":"(-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,\n DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001,\n SPF_PASS=-0.001 autolearn=ham autolearn_force=no","X-Spam_action":"no action","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"qemu development <qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<https://lists.nongnu.org/archive/html/qemu-devel>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n <mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org"}}]