From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-183.mta1.migadu.com (out-183.mta1.migadu.com [95.215.58.183]) (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 4CCEA331221 for ; Fri, 14 Nov 2025 16:04:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.183 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763136275; cv=none; b=iEoE/JTqIWuAZLPd55C36gdczz4wbZbVa/fcWE1SmYS2kx0QncQDMLuR/Ojrozo+F8s6De4AhZrc4nLCJ09Ivk9eZJALhV69qVecP4i5t4v457x4tiD3nbHGTYvhHeFtMKGQd/IKLbJBWYHXR6IUYsQ20MU81rKzESQ5FgFLrKY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763136275; c=relaxed/simple; bh=dl1zQgO825gtxWSn9aBnwjxd+TPfUiQ/S7B9+8QV7lc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=GqGyy8+6o1gFS3Uc4ozl87/a+oWJD1wifG6E7LDLMH60Ofm4WNfsC3XaTzf2LjzdaLFavLxYeXgkLQqGzy6uCCR/sg9hciNykRmYZUICmvXdCODVMjTWMs97lD2swhxVhXmAg/YRV7Xq/SIdW8e8uJgZD7Ub/FBlE829JsUjfec= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=DxCt/7Ow; arc=none smtp.client-ip=95.215.58.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="DxCt/7Ow" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1763136271; 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=rvFgK6FEHqB5imV1GEiicuipGjQZKEOacLlkDJLiHJQ=; b=DxCt/7Ow2uwmuMRtMwG5hyOiaMpLhJfspeTu/qVHeeoHOwfHwEmBl+ugMuCifunsRS2Fs+ FoYLsQePkzLgGJzFs1tmHTb4ha0xG5EDek6v03wPjOXAm3kOsG14sN+rx3QS8uda8wG8Bb BzbOVF3i87KmacduttrlNxtVdczF5mc= From: Thorsten Blum To: Alexander Shishkin , Maxime Coquelin , Alexandre Torgue Cc: Thorsten Blum , linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH RESEND 2/2] stm class: Replace kzalloc + copy_from_user with memdup_user_nul Date: Fri, 14 Nov 2025 17:04:15 +0100 Message-ID: <20251114160416.230513-2-thorsten.blum@linux.dev> In-Reply-To: <20251114160416.230513-1-thorsten.blum@linux.dev> References: <20251114160416.230513-1-thorsten.blum@linux.dev> 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-Migadu-Flow: FLOW_OUT Replace kzalloc() followed by copy_from_user() with memdup_user_nul() to simplify and improve stm_char_policy_set_ioctl(). Remove the obsolete comment. Signed-off-by: Thorsten Blum --- drivers/hwtracing/stm/core.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/drivers/hwtracing/stm/core.c b/drivers/hwtracing/stm/core.c index 5834f796e86b..335bcf749214 100644 --- a/drivers/hwtracing/stm/core.c +++ b/drivers/hwtracing/stm/core.c @@ -733,18 +733,9 @@ static int stm_char_policy_set_ioctl(struct stm_file *stmf, void __user *arg) if (size < sizeof(*id) || size >= PATH_MAX + sizeof(*id)) return -EINVAL; - /* - * size + 1 to make sure the .id string at the bottom is terminated, - * which is also why memdup_user() is not useful here - */ - id = kzalloc(size + 1, GFP_KERNEL); - if (!id) - return -ENOMEM; - - if (copy_from_user(id, arg, size)) { - ret = -EFAULT; - goto err_free; - } + id = memdup_user_nul(arg, size); + if (IS_ERR(id)) + return PTR_ERR(id); if (id->__reserved_0 || id->__reserved_1) goto err_free; -- 2.51.1