From patchwork Mon Nov 25 16:29:20 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Issam Hamdi X-Patchwork-Id: 13885136 X-Patchwork-Delegate: johannes@sipsolutions.net Received: from mail.simonwunderlich.de (mail.simonwunderlich.de [23.88.38.48]) (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 75CE21B4F08 for ; Mon, 25 Nov 2024 16:29:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=23.88.38.48 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1732552167; cv=none; b=CjJpPgbbmYgh6YSWwoooA0fCcweY8W395TIZ65rAIexhdFj88M0VSBikIXx6pGvUv6zli4oQnxJZs05oRZfY9v4H+ukx6iTLiu4dQscBh4w6q2bu0k0BJujKw4p0QqYzM0GzkY30dj6SD9QhavU+Do28JFemRibGdqbjMB0RHCY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1732552167; c=relaxed/simple; bh=8/J4oIpteJJ95dbc78abzzPl5e46aavnlnkVICyFP+A=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=UJDxpeXSVFJ/SYjUNXRApGDPksrscKgvCl9u98TLfz3mr7FPmWpS3OA0Hu/YG9dBQRCBvvVmYi4W1XvTSyKZ+q4FXkhmdW/VJaicHCUcVZ+13/9O7X/Jjs9p6NFwL1whe9MrRCDYDXHR1IrGfKwlIsCljY+cIoIVeV8jbu2YFaw= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=simonwunderlich.de; spf=pass smtp.mailfrom=simonwunderlich.de; arc=none smtp.client-ip=23.88.38.48 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=simonwunderlich.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=simonwunderlich.de Received: from localhost (p200300C597034590000000000000032B.dip0.t-ipconnect.de [IPv6:2003:c5:9703:4590::32b]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.simonwunderlich.de (Postfix) with ESMTPSA id 95B22FA132; Mon, 25 Nov 2024 17:29:22 +0100 (CET) From: Issam Hamdi To: lkp@intel.com Cc: ih@simonwunderlich.de, johannes@sipsolutions.net, linux-wireless@vger.kernel.org, mathias.kretschmer@fit.fraunhofer.de, oe-kbuild-all@lists.linux.dev, sw@simonwunderlich.de Subject: [PATCH v3] wifi: mac80211: fix mbss changed flags corruption on 32 bit systems Date: Mon, 25 Nov 2024 17:29:20 +0100 Message-Id: <20241125162920.2711462-1-ih@simonwunderlich.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <202411220516.wuQOEE8t-lkp@intel.com> References: <202411220516.wuQOEE8t-lkp@intel.com> Precedence: bulk X-Mailing-List: linux-wireless@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 On 32-bit systems, the size of an unsigned long is 4 bytes, while a u64 is 8 bytes. Therefore, when using or_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE), the code is incorrectly searching for a bit in a 32-bit variable that is expected to be 64 bits in size, leading to incorrect bit finding. Solution: Ensure that the size of the bits variable is correctly adjusted for each architecture. Call Trace: ? show_regs+0x54/0x58 ? __warn+0x6b/0xd4 ? ieee80211_link_info_change_notify+0xcc/0xd4 [mac80211] ? report_bug+0x113/0x150 ? exc_overflow+0x30/0x30 ? handle_bug+0x27/0x44 ? exc_invalid_op+0x18/0x50 ? handle_exception+0xf6/0xf6 ? exc_overflow+0x30/0x30 ? ieee80211_link_info_change_notify+0xcc/0xd4 [mac80211] ? exc_overflow+0x30/0x30 ? ieee80211_link_info_change_notify+0xcc/0xd4 [mac80211] ? ieee80211_mesh_work+0xff/0x260 [mac80211] ? cfg80211_wiphy_work+0x72/0x98 [cfg80211] ? process_one_work+0xf1/0x1fc ? worker_thread+0x2c0/0x3b4 ? kthread+0xc7/0xf0 ? mod_delayed_work_on+0x4c/0x4c ? kthread_complete_and_exit+0x14/0x14 ? ret_from_fork+0x24/0x38 ? kthread_complete_and_exit+0x14/0x14 ? ret_from_fork_asm+0xf/0x14 ? entry_INT80_32+0xf0/0xf0 Signed-off-by: Issam Hamdi --- Changes in v2: - Use BITMAP_FROM_U64() to map all the 64 bits. - Update the commit description. Changes in v3: - Remove not needed check on the variable bits. --- net/mac80211/mesh.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) base-commit: dfc14664794a4706e0c2186a0c082386e6b14c4d diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c index cb5f16366b9c..9c33ad56da14 100644 --- a/net/mac80211/mesh.c +++ b/net/mac80211/mesh.c @@ -1157,14 +1157,11 @@ void ieee80211_mbss_info_change_notify(struct ieee80211_sub_if_data *sdata, u64 changed) { struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh; - unsigned long bits = changed; + unsigned long bits[] = { BITMAP_FROM_U64(changed) }; u32 bit; - if (!bits) - return; - /* if we race with running work, worst case this work becomes a noop */ - for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE) + for_each_set_bit(bit, bits, sizeof(changed) * BITS_PER_BYTE) set_bit(bit, ifmsh->mbss_changed); set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags); wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work);