From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 4DD5D44AB91; Tue, 21 Jul 2026 21:42:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670167; cv=none; b=EPfSbRZX+vG+3x0IssUNUvIXxA6ZD5UWVJ6RzvK5uGrAQcBatsStnE5ifo0V27bsvRzA0H8Vq9dfzF3UoiGLMgGnuPUcO9VMIKmpD0RTzD3W2PZUoxt42xnFubBVBgLdiJvJfehm8FRbMUCdxfYCwdPZOMH4lDgaW2sFrQmpH9k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670167; c=relaxed/simple; bh=yK7jSNBy9OytUPhXtUIzUwbr2cRXdp6LmOkKwrdAfPc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=q8rq2vmLxvJl3PBlk0Lx5yOTSQenqOzYES2tdokLBQACoKIE/UAr6ps2757wnGJGGv6HzNORj+uJ+/vRuhzoAoi+AlSZuFpNc4O/m3Yh+BQR/59hhG0pxod8sW55kaqIct7Zk7uIxxpc+DPzkIR3fKH4suqwc6knmINHC7hpmyE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=nfI90m4h; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="nfI90m4h" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B32561F000E9; Tue, 21 Jul 2026 21:42:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670166; bh=af80tW5MGPXnTXyv++PwP3eEdIV//Ua+Cq0Zrm25388=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=nfI90m4hZnBCUNEKWp5q9McbBWHpkV8f3Hiwi/rB6+m8R3/bBgdINqa77zeqQKQIP nXuXLzo413xMkWs8GLFLgN/onndB8b2R4QIBT0zrIjRepqh22bAv7LmtROqaSK4KLA LXiqdowPM6WEklN2yqMhTQbmBEKzU60aloE/DIpw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Thorsten Blum , Jarkko Sakkinen Subject: [PATCH 6.1 0829/1067] tpm: fix event_size output in tpm1_binary_bios_measurements_show Date: Tue, 21 Jul 2026 17:23:50 +0200 Message-ID: <20260721152443.094508554@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thorsten Blum commit 1a58f6115bfb34eabcc7de8a3a9745b219179781 upstream. Commit 186d124f07da ("tpm_eventlog.c: fix binary_bios_measurements") split the output to write the endian-converted event header first and then the variable-length event data. However, the split was at sizeof(struct tcpa_event) - 1, even though event_data was a zero-length array, and later a flexible array member, both of which already excluded the event data. Therefore, the current code writes the first three bytes of event_size from the endian-converted header and then the last byte from the raw header, which can emit a corrupted event_size on PPC64, where do_endian_conversion() maps to be32_to_cpu(). Split one byte later to write the full endian-converted header first, followed by the variable-length event->event_data. Fixes: 186d124f07da ("tpm_eventlog.c: fix binary_bios_measurements") Cc: stable@vger.kernel.org # v5.10+ Signed-off-by: Thorsten Blum Signed-off-by: Jarkko Sakkinen Signed-off-by: Greg Kroah-Hartman --- drivers/char/tpm/eventlog/tpm1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/char/tpm/eventlog/tpm1.c +++ b/drivers/char/tpm/eventlog/tpm1.c @@ -236,12 +236,12 @@ static int tpm1_binary_bios_measurements temp_ptr = (char *) &temp_event; - for (i = 0; i < (sizeof(struct tcpa_event) - 1) ; i++) + for (i = 0; i < sizeof(struct tcpa_event); i++) seq_putc(m, temp_ptr[i]); temp_ptr = (char *) v; - for (i = (sizeof(struct tcpa_event) - 1); + for (i = sizeof(struct tcpa_event); i < (sizeof(struct tcpa_event) + temp_event.event_size); i++) seq_putc(m, temp_ptr[i]);