Re: [PATCH v2] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan

2024-11-04 Thread Aleksei Vetrov
kernel coverage in general. Best regards, -- Aleksei Vetrov

Re: [PATCH v2] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan

2024-11-04 Thread Aleksei Vetrov
ux-hardening guys and I didn't took in account that now I need the maintainer response that will take much more time. Thank you again for taking your time to look into my patch! -- Aleksei Vetrov

Re: [PATCH v2] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan

2024-11-04 Thread Aleksei Vetrov
Hello everyone, On Tue, Oct 29, 2024 at 01:22:11PM +, Aleksei Vetrov wrote: > The channels array in the cfg80211_scan_request has a __counted_by > attribute attached to it, which points to the n_channels variable. This > attribute is used in bounds checking, and if it is not set b

Re: [PATCH] ASoC: dapm: fix bounds checker error in dapm_widget_list_create

2024-10-29 Thread Aleksei Vetrov
gt; team asking them to pick this patch from git. Cheers -- Aleksei Vetrov

Re: [PATCH] ASoC: dapm: fix bounds checker error in dapm_widget_list_create

2024-10-29 Thread Aleksei Vetrov
On Tue, Oct 29, 2024 at 01:37:09PM +, Aleksei Vetrov wrote: > On Mon, Oct 28, 2024 at 04:58:58PM -0600, Gustavo A. R. Silva wrote: > > > > As in the previous patch, this should include the following tag > > (and probably CC stable): > > > > Fixes: 80e698

Re: [PATCH] ASoC: dapm: fix bounds checker error in dapm_widget_list_create

2024-10-29 Thread Aleksei Vetrov
t;) Thank you very much for this suggestion! I didn't understand how Fixes tag works until your comment, but I've just read about Linux stable process and it makes sense now. Sent v2. -- Aleksei Vetrov

[PATCH v2] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan

2024-10-29 Thread Aleksei Vetrov
Signed-off-by: Aleksei Vetrov --- Changes in v2: - Added Fixes tag and added stable to CC - Link to v1: https://lore.kernel.org/r/20241028-nl80211_parse_sched_scan-bounds-checker-fix-v1-1-bb640be0e...@google.com --- net/wireless/nl80211.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ne

[PATCH] ASoC: dapm: fix bounds checker error in dapm_widget_list_create

2024-10-28 Thread Aleksei Vetrov
commit: 81983758430957d9a5cbfe324fd70cf63e7e change-id: 20241028-soc-dapm-bounds-checker-fix-5bae621455b2 Best regards, -- Aleksei Vetrov

[PATCH] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan

2024-10-28 Thread Aleksei Vetrov via B4 Relay
From: Aleksei Vetrov The channels array in the cfg80211_scan_request has a __counted_by attribute attached to it, which points to the n_channels variable. This attribute is used in bounds checking, and if it is not set before the array is filled, then the bounds sanitizer will issue a warning or