From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7DD0AC77B73 for ; Wed, 31 May 2023 08:16:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235147AbjEaIQy (ORCPT ); Wed, 31 May 2023 04:16:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43266 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235146AbjEaIQu (ORCPT ); Wed, 31 May 2023 04:16:50 -0400 Received: from out30-132.freemail.mail.aliyun.com (out30-132.freemail.mail.aliyun.com [115.124.30.132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 03ECC93 for ; Wed, 31 May 2023 01:16:48 -0700 (PDT) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R931e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018046059;MF=jefflexu@linux.alibaba.com;NM=1;PH=DS;RN=6;SR=0;TI=SMTPD_---0Vjwqwcr_1685521005; Received: from 30.221.149.27(mailfrom:jefflexu@linux.alibaba.com fp:SMTPD_---0Vjwqwcr_1685521005) by smtp.aliyun-inc.com; Wed, 31 May 2023 16:16:46 +0800 Message-ID: Date: Wed, 31 May 2023 16:16:43 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH v4 4/5] erofs: unify inline/share xattr iterators for listxattr/getxattr Content-Language: en-US To: Gao Xiang , xiang@kernel.org, chao@kernel.org, huyue2@coolpad.com, linux-erofs@lists.ozlabs.org Cc: linux-kernel@vger.kernel.org References: <20230531031330.3504-1-jefflexu@linux.alibaba.com> <20230531031330.3504-5-jefflexu@linux.alibaba.com> <349a1523-6d1c-9e96-d948-78dd4f2a209d@linux.alibaba.com> From: Jingbo Xu In-Reply-To: <349a1523-6d1c-9e96-d948-78dd4f2a209d@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/31/23 2:57 PM, Gao Xiang wrote: > > > On 2023/5/31 11:13, Jingbo Xu wrote: >>   -static int inline_xattr_iter_begin(struct erofs_xattr_iter *it, >> -                   struct inode *inode) >> -{ >> -    struct erofs_inode *const vi = EROFS_I(inode); >> -    unsigned int xattr_header_sz, inline_xattr_ofs; >> - >> -    xattr_header_sz = sizeof(struct erofs_xattr_ibody_header) + >> -              sizeof(u32) * vi->xattr_shared_count; >> -    if (xattr_header_sz >= vi->xattr_isize) { >> -        DBG_BUGON(xattr_header_sz > vi->xattr_isize); >> -        return -ENOATTR; >> -    } In the original implementation, here when xattr_header_sz >= vi->xattr_isize, inline_xattr_iter_begin() will return -ENOATTR rather than a negative integer (i.e. vi->xattr_isize - xattr_header_sz). >>   static int erofs_xattr_generic_get(const struct xattr_handler *handler, >>                      struct dentry *unused, struct inode *inode, >>                      const char *name, void *buffer, size_t size) >> @@ -542,45 +432,98 @@ static const struct xattr_iter_handlers >> list_xattr_handlers = { >>       .value = NULL >>   }; >>   -static int inline_listxattr(struct erofs_xattr_iter *it) >> +static int erofs_iter_inline_xattr(struct erofs_xattr_iter *it, >> +                   struct inode *inode, bool getxattr) >>   { >> +    struct erofs_inode *const vi = EROFS_I(inode); >> +    const struct xattr_iter_handlers *op; >> +    unsigned int xattr_header_sz, remaining; >> +    erofs_off_t pos; >>       int ret; >> -    unsigned int remaining; >>   -    ret = inline_xattr_iter_begin(it, d_inode(it->dentry)); > > In the past, "ret" here is "an int", and >     vi->xattr_isize - xattr_header_sz < 0 will return > negative value (although I think that value is problematic). > > see below. See comment above. > > >> -    if (ret < 0) >> -        return ret; >> +    xattr_header_sz = sizeof(struct erofs_xattr_ibody_header) + >> +              sizeof(u32) * vi->xattr_shared_count; >> +    if (xattr_header_sz >= vi->xattr_isize) { >> +        DBG_BUGON(xattr_header_sz > vi->xattr_isize); >> +        return -ENOATTR; >> +    } This checking for "xattr_header_sz >= vi->xattr_isize" is also included in this patch. -- Thanks, Jingbo