From patchwork Tue Aug 27 11:35:21 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hongbo Li X-Patchwork-Id: 13779350 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) (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 699DA19E83D; Tue, 27 Aug 2024 11:27:35 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.189 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724758057; cv=none; b=bPlFWy/ZV+Ujda58dqi5tB/n8XqHP+yM0Fqhtoxu2pyj5re6iuOEtVz83z1bAN2L86MqBfozaShJzPUR7JtlBP0Cx+YMVH1M2xzlhDlMt3aB63v15rbwblnC2imtbtKy/K2Y5AoJjbh/OOiw17+YFm/EbKOER4U1HYHCZPQWoaE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724758057; c=relaxed/simple; bh=4/5dD4pWLHgOIe9GUqGD+bM+B6Z2dK3bEF3yT3AM518=; h=From:To:CC:Subject:Date:Message-ID:MIME-Version:Content-Type; b=K3WJt7zmRFnDXyXeeWpLt4h21l1EZx/erOH9jFqNPqmZPzON6kQu//PkOC5tW2UlyHr7ggk2TMJ7YNnv0aZh4PGR0VMdnq9Zh2P9u/IMKGA9mZGF4OFv0/WyxZxwjBw+tB8aJt6AgLFGcPVaC3N2zoNdMp4oLAJjMXK3N2mYuS0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.189 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.194]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4WtQBW4M18zQqtl; Tue, 27 Aug 2024 19:22:43 +0800 (CST) Received: from dggpeml500022.china.huawei.com (unknown [7.185.36.66]) by mail.maildlp.com (Postfix) with ESMTPS id 543D4140202; Tue, 27 Aug 2024 19:27:32 +0800 (CST) Received: from huawei.com (10.90.53.73) by dggpeml500022.china.huawei.com (7.185.36.66) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Tue, 27 Aug 2024 19:27:32 +0800 From: Hongbo Li To: , , , , , , , CC: , , Subject: [PATCH net-next 0/6] replace deprecated strcpy with strscpy Date: Tue, 27 Aug 2024 19:35:21 +0800 Message-ID: <20240827113527.4019856-1-lihongbo22@huawei.com> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggpeml500022.china.huawei.com (7.185.36.66) X-Patchwork-Delegate: kuba@kernel.org The deprecated helper strcpy() performs no bounds checking on the destination buffer. This could result in linear overflows beyond the end of the buffer, leading to all kinds of misbehaviors. The safe replacement is strscpy() [1]. Link: https://www.kernel.org/doc/html/latest/process/deprecated.html#strcpy [1] Hongbo Li (6): net: prefer strscpy over strcpy net/ipv6: replace deprecated strcpy with strscpy net/netrom: prefer strscpy over strcpy net/netfilter: replace deprecated strcpy with strscpy net/tipc: replace deprecated strcpy with strscpy net/ipv4: net: prefer strscpy over strcpy net/core/dev.c | 2 +- net/ipv4/ip_tunnel.c | 2 +- net/ipv4/netfilter/arp_tables.c | 2 +- net/ipv4/netfilter/ip_tables.c | 2 +- net/ipv6/ndisc.c | 2 +- net/netfilter/xt_recent.c | 2 +- net/netrom/nr_route.c | 4 ++-- net/tipc/bearer.c | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-)