From nobody Sat Feb 7 19:45:19 2026 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 C0511C0015E for ; Fri, 28 Jul 2023 06:59:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233724AbjG1G7T (ORCPT ); Fri, 28 Jul 2023 02:59:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35630 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233339AbjG1G7K (ORCPT ); Fri, 28 Jul 2023 02:59:10 -0400 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 2D5D41BC1 for ; Thu, 27 Jul 2023 23:58:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690527505; 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: in-reply-to:in-reply-to:references:references; bh=mmcFpYRdWBxfuVgjThhmNKGNVqeFsdrzbtdmI8Kv2Ng=; b=IZebKkHZp3ZwnNxhEbyZ0ovY5HyE2HjZWyH7LXH2L1Hrdyp7V5Sc7WC86ZxULjk2jZWiJ/ rlGJEtIDOlEUVGJJuJ7fKOXtWFbLPlxRPTEpLYie3jVVvVa2GfCj3H8lhHACw0g9auADqE 1Tbsjj1y0E77dQCajZDCFxFJxB3pmaU= 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-383-L_OHHr74OO2PcBNgd8HHvg-1; Fri, 28 Jul 2023 02:58:21 -0400 X-MC-Unique: L_OHHr74OO2PcBNgd8HHvg-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 24C5F80027F; Fri, 28 Jul 2023 06:58:21 +0000 (UTC) Received: from localhost (unknown [10.45.224.187]) by smtp.corp.redhat.com (Postfix) with ESMTP id D31142166B25; Fri, 28 Jul 2023 06:58:20 +0000 (UTC) From: Oleksandr Natalenko To: linux-kernel@vger.kernel.org Cc: linux-scsi@vger.kernel.org, Saurav Kashyap , Johannes Thumshirn , GR-QLogic-Storage-Upstream@marvell.com, "James E.J. Bottomley" , "Martin K. Petersen" , Jozef Bacik , Laurence Oberman , Rob Evers Subject: [PATCH 1/3] scsi: qedf: do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly Date: Fri, 28 Jul 2023 08:58:17 +0200 Message-ID: <20230728065819.139694-2-oleksandr@redhat.com> In-Reply-To: <20230728065819.139694-1-oleksandr@redhat.com> References: <20230728065819.139694-1-oleksandr@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.6 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The qedf_dbg_stop_io_on_error_cmd_read() function invokes sprintf() directly on a __user pointer, which may crash the kernel. Avoid doing that by using a small on-stack buffer for sprintf() and then calling simple_read_from_buffer() which does a proper copy_to_user() call. Fixes: 61d8658b4a ("scsi: qedf: Add QLogic FastLinQ offload FCoE driver fra= mework.") Link: https://lore.kernel.org/lkml/20230724120241.40495-1-oleksandr@redhat.= com/ Link: https://lore.kernel.org/linux-scsi/20230726101236.11922-1-skashyap@ma= rvell.com/ Cc: Saurav Kashyap Cc: Rob Evers Cc: Johannes Thumshirn Cc: Jozef Bacik Cc: Laurence Oberman Cc: "James E.J. Bottomley" Cc: "Martin K. Petersen" Cc: GR-QLogic-Storage-Upstream@marvell.com Cc: linux-scsi@vger.kernel.org Tested-by: Laurence Oberman Signed-off-by: Oleksandr Natalenko Acked-by: Saurav Kashyap for full series. Reviewed-by: Johannes Thumshirn Reviewed-by: Laurence Oberman --- drivers/scsi/qedf/qedf_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/qedf/qedf_debugfs.c b/drivers/scsi/qedf/qedf_debu= gfs.c index a3ed681c8ce3f..4d1b99569d490 100644 --- a/drivers/scsi/qedf/qedf_debugfs.c +++ b/drivers/scsi/qedf/qedf_debugfs.c @@ -185,18 +185,17 @@ qedf_dbg_stop_io_on_error_cmd_read(struct file *filp,= char __user *buffer, size_t count, loff_t *ppos) { int cnt; + char cbuf[7]; struct qedf_dbg_ctx *qedf_dbg =3D (struct qedf_dbg_ctx *)filp->private_data; struct qedf_ctx *qedf =3D container_of(qedf_dbg, struct qedf_ctx, dbg_ctx); =20 QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "entered\n"); - cnt =3D sprintf(buffer, "%s\n", + cnt =3D sprintf(cbuf, "%s\n", qedf->stop_io_on_error ? "true" : "false"); =20 - cnt =3D min_t(int, count, cnt - *ppos); - *ppos +=3D cnt; - return cnt; + return simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); } =20 static ssize_t --=20 2.41.0 From nobody Sat Feb 7 19:45:19 2026 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 38F5BEB64DD for ; Fri, 28 Jul 2023 06:59:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233731AbjG1G7W (ORCPT ); Fri, 28 Jul 2023 02:59:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35626 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233609AbjG1G7O (ORCPT ); Fri, 28 Jul 2023 02:59:14 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1847F1BF2 for ; Thu, 27 Jul 2023 23:58:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690527506; 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: in-reply-to:in-reply-to:references:references; bh=Cx8pZcxe7Tol87UHFv5qRe9RKAKvmBBhEVVXZjU3G5s=; b=Zx54brO34sGifwInYvJn6Uj+pz0TjxX6y5K1XlSQSSa5SywrlDGrxcxdcdrGq9lB0WM6pl q0B+LYZo+CJRreGHumEczTcrejW85H35pWuLZ28gdisw23UyFQnXvE2Bke7r5+2QzgxCTx hfY2SiRQp03kp0y5cNTrT071FFKeXRY= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-442-cL1K542jMgaP8FTszt_LCw-1; Fri, 28 Jul 2023 02:58:22 -0400 X-MC-Unique: cL1K542jMgaP8FTszt_LCw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 1C8791C29AEC; Fri, 28 Jul 2023 06:58:22 +0000 (UTC) Received: from localhost (unknown [10.45.224.187]) by smtp.corp.redhat.com (Postfix) with ESMTP id CCAE94094DC9; Fri, 28 Jul 2023 06:58:21 +0000 (UTC) From: Oleksandr Natalenko To: linux-kernel@vger.kernel.org Cc: linux-scsi@vger.kernel.org, Saurav Kashyap , Johannes Thumshirn , GR-QLogic-Storage-Upstream@marvell.com, "James E.J. Bottomley" , "Martin K. Petersen" , Jozef Bacik , Laurence Oberman , Rob Evers Subject: [PATCH 2/3] scsi: qedf: do not touch __user pointer in qedf_dbg_debug_cmd_read() directly Date: Fri, 28 Jul 2023 08:58:18 +0200 Message-ID: <20230728065819.139694-3-oleksandr@redhat.com> In-Reply-To: <20230728065819.139694-1-oleksandr@redhat.com> References: <20230728065819.139694-1-oleksandr@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The qedf_dbg_debug_cmd_read() function invokes sprintf() directly on a __user pointer, which may crash the kernel. Avoid doing that by using a small on-stack buffer for sprintf() and then calling simple_read_from_buffer() which does a proper copy_to_user() call. Fixes: 61d8658b4a ("scsi: qedf: Add QLogic FastLinQ offload FCoE driver fra= mework.") Link: https://lore.kernel.org/lkml/20230724120241.40495-1-oleksandr@redhat.= com/ Link: https://lore.kernel.org/linux-scsi/20230726101236.11922-1-skashyap@ma= rvell.com/ Cc: Saurav Kashyap Cc: Rob Evers Cc: Johannes Thumshirn Cc: Jozef Bacik Cc: Laurence Oberman Cc: "James E.J. Bottomley" Cc: "Martin K. Petersen" Cc: GR-QLogic-Storage-Upstream@marvell.com Cc: linux-scsi@vger.kernel.org Tested-by: Laurence Oberman Signed-off-by: Oleksandr Natalenko Acked-by: Saurav Kashyap for full series. Reviewed-by: Johannes Thumshirn Reviewed-by: Laurence Oberman --- drivers/scsi/qedf/qedf_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/qedf/qedf_debugfs.c b/drivers/scsi/qedf/qedf_debu= gfs.c index 4d1b99569d490..f910af0029a2c 100644 --- a/drivers/scsi/qedf/qedf_debugfs.c +++ b/drivers/scsi/qedf/qedf_debugfs.c @@ -138,15 +138,14 @@ qedf_dbg_debug_cmd_read(struct file *filp, char __use= r *buffer, size_t count, loff_t *ppos) { int cnt; + char cbuf[35]; struct qedf_dbg_ctx *qedf_dbg =3D (struct qedf_dbg_ctx *)filp->private_data; =20 QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "debug mask=3D0x%x\n", qedf_debug); - cnt =3D sprintf(buffer, "debug mask =3D 0x%x\n", qedf_debug); + cnt =3D sprintf(cbuf, "debug mask =3D 0x%x\n", qedf_debug); =20 - cnt =3D min_t(int, count, cnt - *ppos); - *ppos +=3D cnt; - return cnt; + return simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); } =20 static ssize_t --=20 2.41.0 From nobody Sat Feb 7 19:45:19 2026 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 E4D6FC41513 for ; Fri, 28 Jul 2023 06:59:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233778AbjG1G7b (ORCPT ); Fri, 28 Jul 2023 02:59:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35652 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233625AbjG1G7Q (ORCPT ); Fri, 28 Jul 2023 02:59:16 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 851401FFF for ; Thu, 27 Jul 2023 23:58:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690527508; 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: in-reply-to:in-reply-to:references:references; bh=8g3K5u6ld8VQPfnAPv8OVfldh/6YKqeR6ZjyYLoq2jo=; b=UxOf+JheGRpLSIngaNE8vS0JM3Ev+FkqWKMgrSULmyOlHTKFhUl0b0dZ3PpUQ6Tv3jm2ne H8XkB4Bk38ZzDQ2HPTre7jQmvJyDEDOY7kuiJLVUsqY5iwkqnOcfrsBd3UXuE5haY82czQ pbGLe4gP+aYjTedfH0upJPqeU4+ZSsA= 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-544-2GSlm20uPKax2edw8LuRWQ-1; Fri, 28 Jul 2023 02:58:23 -0400 X-MC-Unique: 2GSlm20uPKax2edw8LuRWQ-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 133C185A58A; Fri, 28 Jul 2023 06:58:23 +0000 (UTC) Received: from localhost (unknown [10.45.224.187]) by smtp.corp.redhat.com (Postfix) with ESMTP id C540EC57964; Fri, 28 Jul 2023 06:58:22 +0000 (UTC) From: Oleksandr Natalenko To: linux-kernel@vger.kernel.org Cc: linux-scsi@vger.kernel.org, Saurav Kashyap , Johannes Thumshirn , GR-QLogic-Storage-Upstream@marvell.com, "James E.J. Bottomley" , "Martin K. Petersen" , Jozef Bacik , Laurence Oberman , Rob Evers Subject: [PATCH 3/3] scsi: qedf: do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly Date: Fri, 28 Jul 2023 08:58:19 +0200 Message-ID: <20230728065819.139694-4-oleksandr@redhat.com> In-Reply-To: <20230728065819.139694-1-oleksandr@redhat.com> References: <20230728065819.139694-1-oleksandr@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.1 on 10.11.54.8 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The qedf_dbg_fp_int_cmd_read() function invokes sprintf() directly on a __user pointer, which may crash the kernel. Avoid doing that by vmalloc()'ating a buffer for scnprintf() and then calling simple_read_from_buffer() which does a proper copy_to_user() call. Fixes: 61d8658b4a ("scsi: qedf: Add QLogic FastLinQ offload FCoE driver fra= mework.") Link: https://lore.kernel.org/lkml/20230724120241.40495-1-oleksandr@redhat.= com/ Link: https://lore.kernel.org/linux-scsi/20230726101236.11922-1-skashyap@ma= rvell.com/ Cc: Saurav Kashyap Cc: Rob Evers Cc: Johannes Thumshirn Cc: Jozef Bacik Cc: Laurence Oberman Cc: "James E.J. Bottomley" Cc: "Martin K. Petersen" Cc: GR-QLogic-Storage-Upstream@marvell.com Cc: linux-scsi@vger.kernel.org Tested-by: Laurence Oberman Signed-off-by: Oleksandr Natalenko Acked-by: Saurav Kashyap for full series. Reviewed-by: Johannes Thumshirn Reviewed-by: Laurence Oberman --- drivers/scsi/qedf/qedf_dbg.h | 2 ++ drivers/scsi/qedf/qedf_debugfs.c | 21 +++++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/drivers/scsi/qedf/qedf_dbg.h b/drivers/scsi/qedf/qedf_dbg.h index f4d81127239eb..5ec2b817c694a 100644 --- a/drivers/scsi/qedf/qedf_dbg.h +++ b/drivers/scsi/qedf/qedf_dbg.h @@ -59,6 +59,8 @@ extern uint qedf_debug; #define QEDF_LOG_NOTICE 0x40000000 /* Notice logs */ #define QEDF_LOG_WARN 0x80000000 /* Warning logs */ =20 +#define QEDF_DEBUGFS_LOG_LEN (2 * PAGE_SIZE) + /* Debug context structure */ struct qedf_dbg_ctx { unsigned int host_no; diff --git a/drivers/scsi/qedf/qedf_debugfs.c b/drivers/scsi/qedf/qedf_debu= gfs.c index f910af0029a2c..6db996b73fe39 100644 --- a/drivers/scsi/qedf/qedf_debugfs.c +++ b/drivers/scsi/qedf/qedf_debugfs.c @@ -8,6 +8,7 @@ #include #include #include +#include =20 #include "qedf.h" #include "qedf_dbg.h" @@ -98,7 +99,9 @@ static ssize_t qedf_dbg_fp_int_cmd_read(struct file *filp, char __user *buffer, size_t co= unt, loff_t *ppos) { + ssize_t ret; size_t cnt =3D 0; + char *cbuf; int id; struct qedf_fastpath *fp =3D NULL; struct qedf_dbg_ctx *qedf_dbg =3D @@ -108,19 +111,25 @@ qedf_dbg_fp_int_cmd_read(struct file *filp, char __us= er *buffer, size_t count, =20 QEDF_INFO(qedf_dbg, QEDF_LOG_DEBUGFS, "entered\n"); =20 - cnt =3D sprintf(buffer, "\nFastpath I/O completions\n\n"); + cbuf =3D vmalloc(QEDF_DEBUGFS_LOG_LEN); + if (!cbuf) + return 0; + + cnt +=3D scnprintf(cbuf + cnt, QEDF_DEBUGFS_LOG_LEN - cnt, "\nFastpath I/= O completions\n\n"); =20 for (id =3D 0; id < qedf->num_queues; id++) { fp =3D &(qedf->fp_array[id]); if (fp->sb_id =3D=3D QEDF_SB_ID_NULL) continue; - cnt +=3D sprintf((buffer + cnt), "#%d: %lu\n", id, - fp->completions); + cnt +=3D scnprintf(cbuf + cnt, QEDF_DEBUGFS_LOG_LEN - cnt, + "#%d: %lu\n", id, fp->completions); } =20 - cnt =3D min_t(int, count, cnt - *ppos); - *ppos +=3D cnt; - return cnt; + ret =3D simple_read_from_buffer(buffer, count, ppos, cbuf, cnt); + + vfree(cbuf); + + return ret; } =20 static ssize_t --=20 2.41.0