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 6346DC54EAA for ; Fri, 27 Jan 2023 17:25:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235189AbjA0RZG (ORCPT ); Fri, 27 Jan 2023 12:25:06 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50196 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235172AbjA0RZD (ORCPT ); Fri, 27 Jan 2023 12:25:03 -0500 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 89CB878AEA for ; Fri, 27 Jan 2023 09:24:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1674840258; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=eX6Cm8kNYSgck1tuSa55reiDXfLO+860Yz9cAHbWxZ0=; b=MON7qxkKMh1Qs/hyHsmPq0M1XCWWBPKsK80HLuVP0MMZeU+FCy4uyHrVN9EncYFF6CgLBI pKu32EsMKNCl/28ncXTmRGuNk7KDK/MuiLhAJNFwzqctsKS5YEW7KT9U1Qc8xfD8Jql2jU AgrsubUtOTG3YpVChiBe95I4zC8vswI= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-437-OGMzI3qxM8SD5hKBXp2rUw-1; Fri, 27 Jan 2023 12:24:15 -0500 X-MC-Unique: OGMzI3qxM8SD5hKBXp2rUw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id D34D8101A521; Fri, 27 Jan 2023 17:24:14 +0000 (UTC) Received: from madcap2.tricolour.com (ovpn-0-3.rdu2.redhat.com [10.22.0.3]) by smtp.corp.redhat.com (Postfix) with ESMTP id 54BD72166B26; Fri, 27 Jan 2023 17:24:13 +0000 (UTC) From: Richard Guy Briggs To: Linux-Audit Mailing List , LKML , io-uring@vger.kernel.org Cc: Paul Moore , Eric Paris , Steve Grubb , Richard Guy Briggs , Stefan Roesch , Christian Brauner , Jens Axboe , Pavel Begunkov Subject: [PATCH v1 2/2] io_uring,audit: do not log IORING_OP_*GETXATTR Date: Fri, 27 Jan 2023 12:23:46 -0500 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-type: text/plain Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Getting XATTRs is not particularly interesting security-wise. Suggested-by: Steve Grubb Fixes: a56834e0fafe ("io_uring: add fgetxattr and getxattr support") Signed-off-by: Richard Guy Briggs --- io_uring/opdef.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/io_uring/opdef.c b/io_uring/opdef.c index a2bf53b4a38a..f6bfe2cf078c 100644 --- a/io_uring/opdef.c +++ b/io_uring/opdef.c @@ -462,12 +462,14 @@ const struct io_op_def io_op_defs[] = { }, [IORING_OP_FGETXATTR] = { .needs_file = 1, + .audit_skip = 1, .name = "FGETXATTR", .prep = io_fgetxattr_prep, .issue = io_fgetxattr, .cleanup = io_xattr_cleanup, }, [IORING_OP_GETXATTR] = { + .audit_skip = 1, .name = "GETXATTR", .prep = io_getxattr_prep, .issue = io_getxattr, -- 2.27.0