From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF3C4C55178 for ; Tue, 27 Oct 2020 15:04:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9664621D24 for ; Tue, 27 Oct 2020 15:04:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603811076; bh=6qYIEown5iXZtI6ThJkmi6PORhf8GcZAiktFz9c5daw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=f8EyfQbCTIsKI+fRIuC/iJ/wd/50ajE2D0bFMr7QpAeNQL273VZ96DHNx/zssIzIr By/b5u7C8XDL2zTxGyHe3hNNRzVtjBUH3h5ecEUqCfmbJwgd6kwTF217rqtDdlkQRh ySV+n5LmADDP5oFIZMn5fqm0LD3pOHc880EFRaO8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1790449AbgJ0PEf (ORCPT ); Tue, 27 Oct 2020 11:04:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:35620 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1789198AbgJ0PBm (ORCPT ); Tue, 27 Oct 2020 11:01:42 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 853B020715; Tue, 27 Oct 2020 15:01:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603810900; bh=6qYIEown5iXZtI6ThJkmi6PORhf8GcZAiktFz9c5daw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iczDljgBiDkdQStBvp0gaAsz82yWW3F+CpqHn9ksrfBSWeHcYlFEwIy63jmKo0qa0 KkM5arE3pjxdl+whg41tgpght87sCcK4VsClEloA5SE5UnTuWE/A5XpWEw+PkTxxSP JWDWhKx342g7JxzjeihRMC4pE9xVPIaYWFdpeM08= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Johannes Berg , Sasha Levin Subject: [PATCH 5.8 302/633] nl80211: fix non-split wiphy information Date: Tue, 27 Oct 2020 14:50:45 +0100 Message-Id: <20201027135536.836609551@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135522.655719020@linuxfoundation.org> References: <20201027135522.655719020@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Johannes Berg [ Upstream commit ab10c22bc3b2024f0c9eafa463899a071eac8d97 ] When dumping wiphy information, we try to split the data into many submessages, but for old userspace we still support the old mode where this doesn't happen. However, in this case we were not resetting our state correctly and dumping multiple messages for each wiphy, which would have broken such older userspace. This was broken pretty much immediately afterwards because it only worked in the original commit where non-split dumps didn't have any more data than split dumps... Fixes: fe1abafd942f ("nl80211: re-add channel width and extended capa advertising") Signed-off-by: Johannes Berg Link: https://lore.kernel.org/r/20200928130717.3e6d9c6bada2.Ie0f151a8d0d00a8e1e18f6a8c9244dd02496af67@changeid Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- net/wireless/nl80211.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 7cbb94b4d4917..47ab86ee192ac 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -2355,7 +2355,10 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev, * case we'll continue with more data in the next round, * but break unconditionally so unsplit data stops here. */ - state->split_start++; + if (state->split) + state->split_start++; + else + state->split_start = 0; break; case 9: if (rdev->wiphy.extended_capabilities && -- 2.25.1