From patchwork Tue Aug 27 13:14:55 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jijie Shao X-Patchwork-Id: 13779566 X-Patchwork-Delegate: kuba@kernel.org Received: from szxga06-in.huawei.com (szxga06-in.huawei.com [45.249.212.32]) (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 4A3FA1C57B5; Tue, 27 Aug 2024 13:22:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.32 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724764949; cv=none; b=CdiKF+neFkfiMPLdAuZj2jSlAZ5LCkOptxiS0FBuZ3KcLXW6WmV2oiHRE8ZGKHRK0bUI+leUYC/cQY8Xx6Z7tE4TNmWnrDFesiox/JokYja+XpKhE0cEyeEz3zVqNRb6xo9RaVNKjYSinTn0oup1v2Af3xLlCQbI3rnVIZbt/vM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724764949; c=relaxed/simple; bh=eEypYZoG6QJSIUdINWthfnAlOoisMVXiIIU515ncHzA=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=H1dJVyj/jX2KnvLt6rwwQL2vaMqx1hSSW/d9vDvr8369IvIeEUge6AWXzER3WSqKeZBEdA81UmDLjx3EaHlTZOKuDIvMhGo0SjKj6UVGiKuP1aG6BwejnzoUWZD1yAzKFPcg4H+aLh97R+A0+DU7hh5Uo5G/8qqvyACebN8fhAw= 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.32 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.163]) by szxga06-in.huawei.com (SkyGuard) with ESMTP id 4WtSpL2yj8z1xvlh; Tue, 27 Aug 2024 21:20:26 +0800 (CST) Received: from kwepemm000007.china.huawei.com (unknown [7.193.23.189]) by mail.maildlp.com (Postfix) with ESMTPS id A105418002B; Tue, 27 Aug 2024 21:22:23 +0800 (CST) Received: from localhost.localdomain (10.90.30.45) by kwepemm000007.china.huawei.com (7.193.23.189) 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 21:22:22 +0800 From: Jijie Shao To: , , , CC: , , , , , , , , , , , , , , , , Subject: [PATCH V5 net-next 11/11] net: add ndo_validate_addr check in dev_set_mac_address Date: Tue, 27 Aug 2024 21:14:55 +0800 Message-ID: <20240827131455.2919051-12-shaojijie@huawei.com> X-Mailer: git-send-email 2.30.0 In-Reply-To: <20240827131455.2919051-1-shaojijie@huawei.com> References: <20240827131455.2919051-1-shaojijie@huawei.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-ClientProxiedBy: dggems704-chm.china.huawei.com (10.3.19.181) To kwepemm000007.china.huawei.com (7.193.23.189) X-Patchwork-Delegate: kuba@kernel.org If driver implements ndo_validate_addr, core should check the mac address before ndo_set_mac_address. Signed-off-by: Jijie Shao Reviewed-by: Andrew Lunn --- net/core/dev.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net/core/dev.c b/net/core/dev.c index e7260889d4cb..7e9c3017e705 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -9087,6 +9087,11 @@ int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa, return -EOPNOTSUPP; if (sa->sa_family != dev->type) return -EINVAL; + if (ops->ndo_validate_addr) { + err = ops->ndo_validate_addr(dev); + if (err) + return err; + } if (!netif_device_present(dev)) return -ENODEV; err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);