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 E65A6C433EF for ; Wed, 1 Dec 2021 05:52:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346822AbhLAFzS (ORCPT ); Wed, 1 Dec 2021 00:55:18 -0500 Received: from mx0b-00082601.pphosted.com ([67.231.153.30]:45020 "EHLO mx0b-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234582AbhLAFzP (ORCPT ); Wed, 1 Dec 2021 00:55:15 -0500 Received: from pps.filterd (m0109331.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.1.2/8.16.1.2) with SMTP id 1B12H04V003613 for ; Tue, 30 Nov 2021 21:51:53 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=2jEi4ZVqpAO9Zpf8xyWub7qM3fHLB8fg32+GBnuz10U=; b=JvvP7A4OrXBZWkd/qX4CN94dtGw2flroMAs7S9BZzxD8C/m6zQq1Y6ZmCgfZvakBTppq fHruOScMwqIYt6n5LO3RW0ucK0Q0B0IT2zOB/6wA492nv5Kncn4wp/Fd2QENujW+Iun2 YQ/82irt1oqKbV/OS80lte6Bfd+qYb7NbO8= Received: from mail.thefacebook.com ([163.114.132.120]) by mx0a-00082601.pphosted.com with ESMTP id 3cp047rx8a-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Tue, 30 Nov 2021 21:51:53 -0800 Received: from intmgw001.37.frc1.facebook.com (2620:10d:c085:108::4) by mail.thefacebook.com (2620:10d:c085:11d::7) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 30 Nov 2021 21:51:51 -0800 Received: by devvm225.atn0.facebook.com (Postfix, from userid 425415) id 61C2E7227183; Tue, 30 Nov 2021 21:51:46 -0800 (PST) From: Stefan Roesch To: , , CC: Subject: [PATCH v2 2/5] fs: split off setxattr_setup function from setxattr Date: Tue, 30 Nov 2021 21:51:41 -0800 Message-ID: <20211201055144.3141001-3-shr@fb.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20211201055144.3141001-1-shr@fb.com> References: <20211201055144.3141001-1-shr@fb.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-FB-Internal: Safe Content-Type: text/plain X-FB-Source: Intern X-Proofpoint-GUID: gXeTiLC1zHSaU3G6OMleN_jPMC3ZTJRt X-Proofpoint-ORIG-GUID: gXeTiLC1zHSaU3G6OMleN_jPMC3ZTJRt X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.790,Hydra:6.0.425,FMLib:17.0.607.475 definitions=2021-11-30_10,2021-11-28_01,2020-04-07_01 X-Proofpoint-Spam-Details: rule=fb_default_notspam policy=fb_default score=0 phishscore=0 lowpriorityscore=0 adultscore=0 mlxscore=0 mlxlogscore=999 impostorscore=0 clxscore=1015 bulkscore=0 priorityscore=1501 malwarescore=0 spamscore=0 suspectscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2110150000 definitions=main-2112010033 X-FB-Internal: deliver Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org This splits of the setup part of the function setxattr in its own dedicated function called setxattr_setup. This makes it possible to call this function from io_uring in the pre-processing of an xattr request. Signed-off-by: Stefan Roesch --- fs/internal.h | 17 ++++++++++++ fs/xattr.c | 75 ++++++++++++++++++++++++++++++++++----------------- 2 files changed, 67 insertions(+), 25 deletions(-) diff --git a/fs/internal.h b/fs/internal.h index 7979ff8d168c..1b88f29905e6 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -194,3 +194,20 @@ long splice_file_to_pipe(struct file *in, struct pipe_inode_info *opipe, loff_t *offset, size_t len, unsigned int flags); + + /* + * fs/xattr.c: + */ +struct xattr_ctx { + /* Value of attribute */ + const void __user *value; + size_t size; + /* Attribute name */ + char *kname; + int kname_sz; + int flags; +}; + +void *setxattr_setup(struct user_namespace *mnt_userns, + const char __user *name, + struct xattr_ctx *data); diff --git a/fs/xattr.c b/fs/xattr.c index 5c8c5175b385..79afea64d7ba 100644 --- a/fs/xattr.c +++ b/fs/xattr.c @@ -25,6 +25,8 @@ =20 #include =20 +#include "internal.h" + static const char * strcmp_prefix(const char *a, const char *a_prefix) { @@ -539,43 +541,66 @@ EXPORT_SYMBOL_GPL(vfs_removexattr); /* * Extended attribute SET operations */ -static long -setxattr(struct user_namespace *mnt_userns, struct dentry *d, - const char __user *name, const void __user *value, size_t size, - int flags) + +void *setxattr_setup(struct user_namespace *mnt_userns, const char __use= r *name, + struct xattr_ctx *ctx) { - int error; void *kvalue =3D NULL; - char kname[XATTR_NAME_MAX + 1]; + int error; =20 - if (flags & ~(XATTR_CREATE|XATTR_REPLACE)) - return -EINVAL; + if (ctx->flags & ~(XATTR_CREATE|XATTR_REPLACE)) + return ERR_PTR(-EINVAL); =20 - error =3D strncpy_from_user(kname, name, sizeof(kname)); - if (error =3D=3D 0 || error =3D=3D sizeof(kname)) - error =3D -ERANGE; + error =3D strncpy_from_user(ctx->kname, name, ctx->kname_sz); + if (error =3D=3D 0 || error =3D=3D ctx->kname_sz) + return ERR_PTR(-ERANGE); if (error < 0) - return error; + return ERR_PTR(error); =20 - if (size) { - if (size > XATTR_SIZE_MAX) - return -E2BIG; - kvalue =3D kvmalloc(size, GFP_KERNEL); + if (ctx->size) { + if (ctx->size > XATTR_SIZE_MAX) + return ERR_PTR(-E2BIG); + + kvalue =3D kvmalloc(ctx->size, GFP_KERNEL); if (!kvalue) - return -ENOMEM; - if (copy_from_user(kvalue, value, size)) { - error =3D -EFAULT; - goto out; + return ERR_PTR(-ENOMEM); + + if (copy_from_user(kvalue, ctx->value, ctx->size)) { + kvfree(kvalue); + return ERR_PTR(-EFAULT); } - if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) =3D=3D 0) || - (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) =3D=3D 0)) - posix_acl_fix_xattr_from_user(mnt_userns, kvalue, size); + + if ((strcmp(ctx->kname, XATTR_NAME_POSIX_ACL_ACCESS) =3D=3D 0) || + (strcmp(ctx->kname, XATTR_NAME_POSIX_ACL_DEFAULT) =3D=3D 0)) + posix_acl_fix_xattr_from_user(mnt_userns, kvalue, ctx->size); } =20 + return kvalue; +} + +static long +setxattr(struct user_namespace *mnt_userns, struct dentry *d, + const char __user *name, const void __user *value, size_t size, + int flags) +{ + char kname[XATTR_NAME_MAX + 1]; + struct xattr_ctx ctx =3D { + .value =3D value, + .size =3D size, + .kname =3D kname, + .kname_sz =3D sizeof(kname), + .flags =3D flags, + }; + void *kvalue; + int error; + + kvalue =3D setxattr_setup(mnt_userns, name, &ctx); + if (IS_ERR(kvalue)) + return PTR_ERR(kvalue); + error =3D vfs_setxattr(mnt_userns, d, kname, kvalue, size, flags); -out: - kvfree(kvalue); =20 + kvfree(kvalue); return error; } =20 --=20 2.30.2