From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A24FA426D17 for ; Mon, 11 May 2026 16:08:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.129.124 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778515691; cv=none; b=MW+SnbJFxerQtOT8ZBVpdYczZopp8mQSjmJ27pzN+v8ar3qKaj8PHYvakR4C3FcWmoVkPz6DU7/2PU/kctRgx5uCNcTp1tPJekKC40l4RRORHNJ9Jit0SftTboAc4uV9pziJ7ldBgx4PUV9SmIyR6rLs3msPCBNnqRsCMzHxMlo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778515691; c=relaxed/simple; bh=HK4MCwhfyt9ibnRO04VTu4Jdd7IDk7J0IS6n+D1jTnY=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=aGqhsxhCp+744hLBBhy6uUW2QPBEo2XzyG/A3i49yKepE/XYW8Gn8UV4lDhl9VFX2wW9NVXQ+1oav0RN1hu8wFuN5pZFnk88GayZiEN9jgYJUjbaRtybeIIRFUt/RQGsxZC0N6ZpgZGQqXQl0IjB/fNAduoDbLmFUsqqWOCokPM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=fVAGGXik; arc=none smtp.client-ip=170.10.129.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="fVAGGXik" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1778515688; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=JW3MiTOFMa2gQ0jtbM/Ke7EaW8T6dpP8mKSUpldJkdA=; b=fVAGGXikxy7JXiBI5Sbhx20cdZaV2ynPBfdXw49YJ3I71WPF6ysolN5mz6PhcDxnAd2vrq tuSmKb4n9iztTrPtF52fUEx9XgVhWevjp2VZVc3yjDoRGFIfNwJL6tvVRuBH13T0l3CaQq A5odNKnisspM0459asQ2knoWEw4EGtc= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-605-lLr3-bHjPJOeoZiHGs72LA-1; Mon, 11 May 2026 12:08:05 -0400 X-MC-Unique: lLr3-bHjPJOeoZiHGs72LA-1 X-Mimecast-MFC-AGG-ID: lLr3-bHjPJOeoZiHGs72LA_1778515683 Received: from mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.111]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 40A9E19560A6; Mon, 11 May 2026 16:08:03 +0000 (UTC) Received: from warthog.procyon.org.com (unknown [10.44.48.83]) by mx-prod-int-08.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 277781800465; Mon, 11 May 2026 16:07:58 +0000 (UTC) From: David Howells To: netdev@vger.kernel.org Cc: David Howells , Hyunwoo Kim , Marc Dionne , Jakub Kicinski , "David S. Miller" , Eric Dumazet , Paolo Abeni , Simon Horman , linux-afs@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH net 0/3] rxrpc: Better fix for DATA/RESPONSE decrypt vs splice() Date: Mon, 11 May 2026 17:07:46 +0100 Message-ID: <20260511160753.607296-1-dhowells@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.111 Here are two patches containing better fixes for the in-place decryption of DATA and RESPONSE packets that can corrupt pagecache spliced into UDP packets and sent to an AF_RXRPC server [CVE-2026-43500]. [!] Note that Hyunwoo Kim's fix is included as that is a prerequisite for the main patches to build. This is in Linus's tree, but not yet net/main. One patch fixes DATA decryption by having recvmsg unconditionally extract the data into a flat bounce buffer and, if need be, decrypt it there. It doesn't seem to cause a performance problem to do this even on unencrypted packets; for encrypted packets it makes sure the content is correctly aligned for crypto which seems to get a small performance gain. Further, it means that DATA packets are no longer copied in the I/O thread, avoiding a slowdown of the protocol engine that runs there. The other patch fixes RESPONSE decryption by having the connection event handler worker copy the data to a flat buffer and, again, decrypt it there. This simplifies RESPONSE handling. With these two fixes, the data content of the received sk_buff no longer gets altered. David The patches can be found here also: http://git.kernel.org/cgit/linux/kernel/git/dhowells/linux-fs.git/log/?h=rxrpc-fixes David Howells (2): rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg rxrpc: Fix RESPONSE packet verification to extract skb to a linear buffer Hyunwoo Kim (1): rxrpc: Also unshare DATA/RESPONSE packets when paged frags are present net/rxrpc/ar-internal.h | 77 ++++++++++++++++-- net/rxrpc/call_event.c | 20 +---- net/rxrpc/call_object.c | 2 + net/rxrpc/conn_event.c | 32 ++++---- net/rxrpc/insecure.c | 8 +- net/rxrpc/protocol.h | 1 - net/rxrpc/recvmsg.c | 72 +++++++++++++---- net/rxrpc/rxgk.c | 175 ++++++++++++++-------------------------- net/rxrpc/rxgk_app.c | 91 +++++++++------------ net/rxrpc/rxgk_common.h | 76 ++++++++--------- net/rxrpc/rxkad.c | 175 +++++++++++++++------------------------- 11 files changed, 349 insertions(+), 380 deletions(-)