FreeBSD/src 17e8437sys/net80211 ieee80211_ioctl.c

net80211: update get_sta_info() to only populate isi_txrate for legacy rates

The isi_txrate field is 8 bits and only represents legacy/HT rates.
So to avoid logging a warning, only populate if it's a legacy/HT
rate.

Differential Revision:  https://reviews.freebsd.org/D48616
DeltaFile
+11-1sys/net80211/ieee80211_ioctl.c
+11-11 files

FreeBSD/src 38075f7sys/net80211 ieee80211_node.c ieee80211_ioctl.c

net80211: remove direct use of ni->ni_txrate, add indirection methods

The summary:

* Refactor ni_txrate access into ieee80211_node_get_txrate_dot11rate()
  and ieee80211_node_set_txrate_dot11rate(). These wrap the ni->ni_txrate
  access and will eventually be able to do runtime sanity checks and
  fallback where necessary.

* Refactor ieee80211_node_get_txrate_kbit() from the ioctl code which
  sets isi_txmbps (which is in 0.5Mbit/s units.)  This new routine
  returns the TX rate in kbit/s units.

* Also use ieee80211_node_get_txrate_kbit() in various places in the
  code where the dot11rate was turned into a Mbit/sec value, which was
  very wrong for HT (but also only used for logging, so it didn't
  have an effect on normal runtime.)

* Mb -> Mbit/s

    [48 lines not shown]
DeltaFile
+65-0sys/net80211/ieee80211_node.c
+3-17sys/net80211/ieee80211_ioctl.c
+10-6sys/net80211/ieee80211_rssadapt.c
+9-5sys/net80211/ieee80211_amrr.c
+6-4sys/net80211/ieee80211_superg.c
+2-5sys/net80211/ieee80211_hostap.c
+95-377 files not shown
+112-5013 files

FreeBSD/src 36ace2asbin/ifconfig ifieee80211.c, sys/net80211 ieee80211_ioctl.c ieee80211_var.h

net80211: 11ac: add options to manage VHT STBC

Add IEEE80211_FVHT_STBC_(TX|RX) flags to allow userspace to manage
if STBC will be allowed for VHT RX/TX.
For RX this will only allow us to turn it off but no fine grained
control of the number of supported spatial streams.

Introduce IEEE80211_FVHT_CHANWIDTH_MASK as a helper to make the
spelling out of the IEEE80211_FVHT_MASK more readable.

Update ifconfig to allow setting of these flags.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    adrian
Differential Revision: https://reviews.freebsd.org/D47838

(cherry picked from commit 243f6925bf818a64f3c996c6a89fec6c8a6ff058)
DeltaFile
+20-0sys/net80211/ieee80211_ioctl.c
+10-2sys/net80211/ieee80211_var.h
+8-0sbin/ifconfig/ifieee80211.c
+2-4sys/net80211/ieee80211_vht.c
+4-0sys/net80211/ieee80211.c
+44-65 files

FreeBSD/src 243f692sbin/ifconfig ifieee80211.c, sys/net80211 ieee80211_ioctl.c ieee80211_var.h

net80211: 11ac: add options to manage VHT STBC

Add IEEE80211_FVHT_STBC_(TX|RX) flags to allow userspace to manage
if STBC will be allowed for VHT RX/TX.
For RX this will only allow us to turn it off but no fine grained
control of the number of supported spatial streams.

Introduce IEEE80211_FVHT_CHANWIDTH_MASK as a helper to make the
spelling out of the IEEE80211_FVHT_MASK more readable.

Update ifconfig to allow setting of these flags.

Sponsored by:   The FreeBSD Foundation
MFC atfer:      3 days
Reviewed by:    adrian
Differential Revision: https://reviews.freebsd.org/D47838
DeltaFile
+20-0sys/net80211/ieee80211_ioctl.c
+10-2sys/net80211/ieee80211_var.h
+8-0sbin/ifconfig/ifieee80211.c
+2-4sys/net80211/ieee80211_vht.c
+4-0sys/net80211/ieee80211.c
+44-65 files

FreeBSD/src 1116e8bshare/man/man9 ieee80211.9, sys/net80211 ieee80211_crypto.c ieee80211_ioctl.c

net80211: add a new field specifically for announcing specific ciphers

This dates way, way back with the original net80211 support w/ atheros chips.

The earliest chip (AR5210) had limitations supporting software encryption.
It only had the four WEP slots, and not any keycache entries.  So when
trying to do CCMP/TKIP encryption would be enabled and the key slots
would have nothing useful in them, resulting in garbage encryption/decryption.

I changed this back in 2012 to disable supporting hardware WEP for AR5210
so if_ath(4) / net80211 crypto is all done in software and yes,
I could do CCMP/TKIP on AR5210 in software.

Fast-forward to newer-ish hardware - the Qualcomm 11ac hardware.
Those also don't support pass-through keycache slots! Well, the hardware
does at that layer, but then there's a whole offload data path encap/decap
layer that's turning the frames from raw wifi into ethernet frames (for
"dumb" AP behaviours) or "wifi direct" frames (ie, "windows".)
This hides a bunch of header frame contents required for doing the software

    [29 lines not shown]
DeltaFile
+12-0sys/net80211/ieee80211_crypto.c
+5-1sys/net80211/ieee80211_ioctl.c
+2-2sys/net80211/ieee80211_ioctl.h
+3-1sys/net80211/ieee80211_var.h
+3-1share/man/man9/ieee80211.9
+25-55 files

FreeBSD/src f765ef3sys/net80211 ieee80211_ioctl.c

ieee80211: Check for copyout() errors in the SIOCG80211STATS handler

In preparation for annotating copyin() and related functions with
__result_use_check.

Reviewed by:    bz, emaste
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43095

(cherry picked from commit d760d74dbed81638979e662130e24111b3a5db0d)
DeltaFile
+2-2sys/net80211/ieee80211_ioctl.c
+2-21 files

FreeBSD/src 70025e7sys/net80211 ieee80211_ioctl.c

ieee80211: Check for copyout() errors in the SIOCG80211STATS handler

In preparation for annotating copyin() and related functions with
__result_use_check.

Reviewed by:    bz, emaste
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43095

(cherry picked from commit d760d74dbed81638979e662130e24111b3a5db0d)
DeltaFile
+2-2sys/net80211/ieee80211_ioctl.c
+2-21 files

FreeBSD/src d760d74sys/net80211 ieee80211_ioctl.c

ieee80211: Check for copyout() errors in the SIOCG80211STATS handler

In preparation for annotating copyin() and related functions with
__result_use_check.

Reviewed by:    bz, emaste
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D43095
DeltaFile
+2-2sys/net80211/ieee80211_ioctl.c
+2-21 files

FreeBSD/src 5f760adsys/net80211 ieee80211_ht.c ieee80211_vht.c

net80211: rename iv_flags_vht to iv_vht_flags

While the flag field is internal start naming it as well as "iv_vht*"
so we keep all "VHT" fields together.  This breaks with what was done
done for HT but with HE, EHT, .. coming one day seems the more logic
choice.

No functional changes intended.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    adrian, cc
Differential Revision: https://reviews.freebsd.org/D42419

(cherry picked from commit ef48d4fa122d863db11e41608ceea641eec54704)
DeltaFile
+6-6sys/net80211/ieee80211_ht.c
+5-5sys/net80211/ieee80211_vht.c
+4-4sys/net80211/ieee80211_scan_sta.c
+3-3sys/net80211/ieee80211.c
+3-3sys/net80211/ieee80211_node.c
+3-3sys/net80211/ieee80211_output.c
+24-243 files not shown
+28-289 files

FreeBSD/src 7019af0sys/compat/linuxkpi/common/src linux_80211.c, sys/net80211 ieee80211_vht.c ieee80211.c

net80211: migrate ic_vhtcaps, ic_vht_mcsinfo, ic_flags_vht

Like for the VAP rename ic_flags_vht to ic_vht_flags for consistency to
keep "VHT" fields together and merge ic_vhtcaps and ic_vht_mcsinfo
into struct ieee80211_vht_cap ic_vht_cap.

While the structure layout changes no other functional changes intended.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    adrian, cc
Differential Revision: https://reviews.freebsd.org/D42421

(cherry picked from commit 562adbe1d354377a260e66eedb6072b720a606dc)
DeltaFile
+7-7sys/net80211/ieee80211_vht.c
+3-3sys/net80211/ieee80211.c
+3-3sys/compat/linuxkpi/common/src/linux_80211.c
+2-3sys/net80211/ieee80211_var.h
+2-2sys/net80211/ieee80211_regdomain.c
+1-1sys/net80211/ieee80211_node.c
+18-192 files not shown
+20-218 files

FreeBSD/src 0ba89cbsys/compat/linuxkpi/common/src linux_80211.c, sys/net80211 ieee80211_vht.c ieee80211.c

net80211: migrate ic_vhtcaps, ic_vht_mcsinfo, ic_flags_vht

Like for the VAP rename ic_flags_vht to ic_vht_flags for consistency to
keep "VHT" fields together and merge ic_vhtcaps and ic_vht_mcsinfo
into struct ieee80211_vht_cap ic_vht_cap.

While the structure layout changes no other functional changes intended.

Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 562adbe1d354377a260e66eedb6072b720a606dc)
DeltaFile
+7-7sys/net80211/ieee80211_vht.c
+3-3sys/compat/linuxkpi/common/src/linux_80211.c
+3-3sys/net80211/ieee80211.c
+2-3sys/net80211/ieee80211_var.h
+2-2sys/net80211/ieee80211_regdomain.c
+1-1sys/net80211/ieee80211_ioctl.c
+18-192 files not shown
+20-218 files

FreeBSD/src fec7988sys/net80211 ieee80211_ht.c ieee80211_vht.c

net80211: rename iv_flags_vht to iv_vht_flags

While the flag field is internal start naming it as well as "iv_vht*"
so we keep all "VHT" fields together.  This breaks with what was done
done for HT but with HE, EHT, .. coming one day seems the more logic
choice.

No functional changes intended.

Sponsored by:   The FreeBSD Foundation

(cherry picked from commit ef48d4fa122d863db11e41608ceea641eec54704)
DeltaFile
+6-6sys/net80211/ieee80211_ht.c
+5-5sys/net80211/ieee80211_vht.c
+4-4sys/net80211/ieee80211_scan_sta.c
+3-3sys/net80211/ieee80211_node.c
+3-3sys/net80211/ieee80211_output.c
+3-3sys/net80211/ieee80211.c
+24-243 files not shown
+28-289 files

FreeBSD/src 7d558c4sys/net80211 ieee80211_ddb.c ieee80211_scan.h

net80211: improve scan debugging

While debugging other problems I ran into the case where net80211
was thinking a scan was ongoing and new scans could not be started
but given other logging there was clearly no more scan running.
It was hard after the fact to quickly determine enough state to
reconstruct or validate assumptions.

Improve a MSG_SCAN debug logging and implement _db_show_scan() ddb
output which can be printed along with show com /S or /a.

Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 33396ec29f1daae31f4738f0da98dce168ca73c6)
DeltaFile
+68-6sys/net80211/ieee80211_ddb.c
+5-1sys/net80211/ieee80211_scan.h
+4-2sys/net80211/ieee80211_ioctl.c
+77-93 files

FreeBSD/src ef48d4fsys/net80211 ieee80211_ht.c ieee80211_vht.c

net80211: rename iv_flags_vht to iv_vht_flags

While the flag field is internal start naming it as well as "iv_vht*"
so we keep all "VHT" fields together.  This breaks with what was done
done for HT but with HE, EHT, .. coming one day seems the more logic
choice.

No functional changes intended.

Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
Reviewed by:    adrian, cc
Differential Revision: https://reviews.freebsd.org/D42419
DeltaFile
+6-6sys/net80211/ieee80211_ht.c
+5-5sys/net80211/ieee80211_vht.c
+4-4sys/net80211/ieee80211_scan_sta.c
+3-3sys/net80211/ieee80211.c
+3-3sys/net80211/ieee80211_node.c
+3-3sys/net80211/ieee80211_output.c
+24-243 files not shown
+28-289 files

FreeBSD/src 562adbesys/compat/linuxkpi/common/src linux_80211.c, sys/net80211 ieee80211_vht.c ieee80211.c

net80211: migrate ic_vhtcaps, ic_vht_mcsinfo, ic_flags_vht

Like for the VAP rename ic_flags_vht to ic_vht_flags for consistency to
keep "VHT" fields together and merge ic_vhtcaps and ic_vht_mcsinfo
into struct ieee80211_vht_cap ic_vht_cap.

While the structure layout changes no other functional changes intended.

Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
Reviewed by:    adrian, cc
Differential Revision: https://reviews.freebsd.org/D42421
DeltaFile
+7-7sys/net80211/ieee80211_vht.c
+3-3sys/compat/linuxkpi/common/src/linux_80211.c
+3-3sys/net80211/ieee80211.c
+2-3sys/net80211/ieee80211_var.h
+2-2sys/net80211/ieee80211_regdomain.c
+1-1sys/net80211/ieee80211_ioctl.c
+18-192 files not shown
+20-218 files

FreeBSD/src 20ca85csys/net80211 ieee80211_ddb.c ieee80211_ioctl.c

net80211: improve scan debugging

While debugging other problems I ran into the case where net80211
was thinking a scan was ongoing and new scans could not be started
but given other logging there was clearly no more scan running.
It was hard after the fact to quickly determine enough state to
reconstruct or validate assumptions.

Improve a MSG_SCAN debug logging and implement _db_show_scan() ddb
output which can be printed along with show com /S or /a.

Sponsored by:   The FreeBSD Foundation

(cherry picked from commit 33396ec29f1daae31f4738f0da98dce168ca73c6)
DeltaFile
+68-6sys/net80211/ieee80211_ddb.c
+4-2sys/net80211/ieee80211_ioctl.c
+5-1sys/net80211/ieee80211_scan.h
+77-93 files

FreeBSD/src 33396ecsys/net80211 ieee80211_ddb.c ieee80211_ioctl.c

net80211: improve scan debugging

While debugging other problems I ran into the case where net80211
was thinking a scan was ongoing and new scans could not be started
but given other logging there was clearly no more scan running.
It was hard after the fact to quickly determine enough state to
reconstruct or validate assumptions.

Improve a MSG_SCAN debug logging and implement _db_show_scan() ddb
output which can be printed along with show com /S or /a.

Sponsored by:   The FreeBSD Foundation
MFC after:      3 days
DeltaFile
+68-6sys/net80211/ieee80211_ddb.c
+4-2sys/net80211/ieee80211_ioctl.c
+5-1sys/net80211/ieee80211_scan.h
+77-93 files

FreeBSD/src 3bc8099sys/arm64/qoriq qoriq_dw_pci.c, sys/dev/cfe cfe_env.c

sys: Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/

Similar commit in current:
(cherry picked from commit 685dc743dc3b)
DeltaFile
+0-3sys/dev/cfe/cfe_env.c
+0-3sys/dev/extres/clk/clk_gate.c
+0-3sys/dev/ioat/ioat_test.h
+0-3sys/kern/subr_syscall.c
+0-3sys/arm64/qoriq/qoriq_dw_pci.c
+0-3sys/dev/cxgb/common/cxgb_t3_hw.c
+0-184,033 files not shown
+0-7,9144,039 files

FreeBSD/src 685dc74sys/arm/arm blockio.S exception.S, sys/arm/mv/armadaxp mptramp.S

sys: Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
DeltaFile
+0-3sys/arm/arm/blockio.S
+0-3sys/arm/arm/exception.S
+0-3sys/arm/arm/swtch-v6.S
+0-3sys/arm/arm/swtch.S
+0-3sys/dev/extres/clk/clk_gate.c
+0-3sys/arm/mv/armadaxp/mptramp.S
+0-183,795 files not shown
+0-7,4523,801 files

FreeBSD/src caa41f6include bitstring.h complex.h, sys/dev/qlxge qls_isr.c

spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD

The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch
up to that fact and revert to their recommended match of BSD-2-Clause.

Discussed with:         pfg
MFC After:              3 days
Sponsored by:           Netflix

(cherry picked from commit 4d846d260e2b9a3d4d0a701462568268cbfe7a5b)
DeltaFile
+2-2sys/dev/qlxge/qls_isr.c
+2-2sys/xen/xenbus/xenbusb.h
+1-1include/bitstring.h
+1-1include/complex.h
+1-1include/cpio.h
+1-1include/elf-hints.h
+8-85,432 files not shown
+5,440-5,4405,438 files

FreeBSD/src 4d846d2lib/libc/stdio wscanf.c xprintf_errno.c, sys/dev/qlxge qls_isr.c

spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD

The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch
up to that fact and revert to their recommended match of BSD-2-Clause.

Discussed with:         pfg
MFC After:              3 days
Sponsored by:           Netflix
DeltaFile
+2-2sys/dev/qlxge/qls_isr.c
+2-2sys/xen/xenbus/xenbusb.h
+1-1lib/libc/stdio/wscanf.c
+1-1lib/libc/stdio/xprintf_errno.c
+1-1lib/libc/stdio/xprintf_hexdump.c
+1-1lib/libc/stdio/xprintf_quote.c
+8-85,571 files not shown
+5,579-5,5795,577 files

FreeBSD/src 3d0d5b2sys/net80211 ieee80211_ddb.c, sys/netinet ip_fastfwd.c ip_gre.c

IfAPI: Explicitly include <net/if_private.h> in netstack

Summary:
In preparation of making if_t completely opaque outside of the netstack,
explicitly include the header.  <net/if_var.h> will stop including the
header in the future.

Sponsored by:   Juniper Networks, Inc.
Reviewed by:    glebius, melifaro
Differential Revision: https://reviews.freebsd.org/D38200
DeltaFile
+3-3sys/net80211/ieee80211_ddb.c
+1-1sys/netinet6/nd6.h
+1-0sys/netinet/ip_fastfwd.c
+1-0sys/netinet/ip_gre.c
+1-0sys/netinet/ip_icmp.c
+1-0sys/netinet/ip_input.c
+8-480 files not shown
+88-486 files

FreeBSD/src f36e7c5sys/net80211 ieee80211_output.c ieee80211_freebsd.c

net80211: consistently use the IEEE80211_M_ memory related options

Replace a malloc() by IEEE80211_MALLOC().
For malloc flags even in the local ieee80211_freebsd.c there was a mix
of both versions M_ and IEEE80211_M_.
Consistently use the IEEE80211_M_ malloc options everywhere.
If the field is changed for malloc, it'll also be changed for the
other accessor functions taking a "how" field to avoid any confusion.

Sponsored by:   The FreeBSD Foundation
Reviewed by:    adrian
Differential Revision: https://reviews.freebsd.org/D36249

(cherry picked from commit bd29f81763aa9cac74c75b663c2cf46723f05528)
DeltaFile
+14-13sys/net80211/ieee80211_output.c
+8-8sys/net80211/ieee80211_freebsd.c
+4-3sys/net80211/ieee80211.c
+3-3sys/net80211/ieee80211_superg.c
+3-3sys/net80211/ieee80211_mesh.c
+2-2sys/net80211/ieee80211_ioctl.c
+34-328 files not shown
+43-4114 files

FreeBSD/src bd29f81sys/net80211 ieee80211_output.c ieee80211_freebsd.c

net80211: consistently use the IEEE80211_M_ memory related options

Replace a malloc() by IEEE80211_MALLOC().
For malloc flags even in the local ieee80211_freebsd.c there was a mix
of both versions M_ and IEEE80211_M_.
Consistently use the IEEE80211_M_ malloc options everywhere.
If the field is changed for malloc, it'll also be changed for the
other accessor functions taking a "how" field to avoid any confusion.

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Reviewed by:    adrian
Differential Revision: https://reviews.freebsd.org/D36249
DeltaFile
+14-13sys/net80211/ieee80211_output.c
+8-8sys/net80211/ieee80211_freebsd.c
+4-3sys/net80211/ieee80211.c
+3-3sys/net80211/ieee80211_mesh.c
+3-3sys/net80211/ieee80211_superg.c
+2-2sys/net80211/ieee80211_hostap.c
+34-328 files not shown
+43-4114 files

FreeBSD/src 46f1fb8sys/net80211 ieee80211_ioctl.c

net80211: proper ssid length check in setmlme_assoc_adhoc()

A user supplied SSID length is used without proper checks in
setmlme_assoc_adhoc() which can lead to copies beyond the end
of the user supplied buffer.
The ssid is a fixed size array for the ioctl and the argument
to setmlme_assoc_adhoc().
In addition to an ssid_len check of 0 also error in case the
ssid_len is larger than the size of the ssid array to prevent
problems.

PR:             254737
Reported by:    Tommaso (cutesmilee.research protonmail.com)

(cherry picked from commit 526370fb85db4b659cff4625eb2f379acaa4a1a8)
(cherry picked from commit 0525ece3554edce14fa68a7fb61078ae2110c44b)
(cherry picked from commit ab5678c6c0d0b28feafdb2fd397866d6088f37d8)
(cherry picked from commit f4d0e8787a09f4cdfb856924aaca97f1c78b65b1)


    [2 lines not shown]
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files

FreeBSD/src 6eb932asys/net80211 ieee80211_ioctl.c

net80211: proper ssid length check in setmlme_assoc_adhoc()

A user supplied SSID length is used without proper checks in
setmlme_assoc_adhoc() which can lead to copies beyond the end
of the user supplied buffer.
The ssid is a fixed size array for the ioctl and the argument
to setmlme_assoc_adhoc().
In addition to an ssid_len check of 0 also error in case the
ssid_len is larger than the size of the ssid array to prevent
problems.

PR:             254737
Reported by:    Tommaso (cutesmilee.research protonmail.com)

(cherry picked from commit 526370fb85db4b659cff4625eb2f379acaa4a1a8)
(cherry picked from commit 0525ece3554edce14fa68a7fb61078ae2110c44b)
(cherry picked from commit ab5678c6c0d0b28feafdb2fd397866d6088f37d8)

Approved by:    so
Security:       FreeBSD-SA-22:02.wifi
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files

FreeBSD/src b2107e6sys/net80211 ieee80211_ioctl.c

net80211: proper ssid length check in setmlme_assoc_adhoc()

A user supplied SSID length is used without proper checks in
setmlme_assoc_adhoc() which can lead to copies beyond the end
of the user supplied buffer.
The ssid is a fixed size array for the ioctl and the argument
to setmlme_assoc_adhoc().
In addition to an ssid_len check of 0 also error in case the
ssid_len is larger than the size of the ssid array to prevent
problems.

PR:             254737
Reported by:    Tommaso (cutesmilee.research protonmail.com)

(cherry picked from commit 526370fb85db4b659cff4625eb2f379acaa4a1a8)
(cherry picked from commit 0525ece3554edce14fa68a7fb61078ae2110c44b)
(cherry picked from commit ab5678c6c0d0b28feafdb2fd397866d6088f37d8)
(cherry picked from commit f4d0e8787a09f4cdfb856924aaca97f1c78b65b1)


    [2 lines not shown]
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files

FreeBSD/src f4d0e87sys/net80211 ieee80211_ioctl.c

net80211: proper ssid length check in setmlme_assoc_adhoc()

A user supplied SSID length is used without proper checks in
setmlme_assoc_adhoc() which can lead to copies beyond the end
of the user supplied buffer.
The ssid is a fixed size array for the ioctl and the argument
to setmlme_assoc_adhoc().
In addition to an ssid_len check of 0 also error in case the
ssid_len is larger than the size of the ssid array to prevent
problems.

PR:             254737
Reported by:    Tommaso (cutesmilee.research protonmail.com)

(cherry picked from commit 526370fb85db4b659cff4625eb2f379acaa4a1a8)
(cherry picked from commit 0525ece3554edce14fa68a7fb61078ae2110c44b)
(cherry picked from commit ab5678c6c0d0b28feafdb2fd397866d6088f37d8)
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files

FreeBSD/src ab5678csys/net80211 ieee80211_ioctl.c

net80211: proper ssid length check in setmlme_assoc_adhoc()

A user supplied SSID length is used without proper checks in
setmlme_assoc_adhoc() which can lead to copies beyond the end
of the user supplied buffer.
The ssid is a fixed size array for the ioctl and the argument
to setmlme_assoc_adhoc().
In addition to an ssid_len check of 0 also error in case the
ssid_len is larger than the size of the ssid array to prevent
problems.

PR:             254737
Reported by:    Tommaso (cutesmilee.research protonmail.com)

(cherry picked from commit 526370fb85db4b659cff4625eb2f379acaa4a1a8)
(cherry picked from commit 0525ece3554edce14fa68a7fb61078ae2110c44b)
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files

FreeBSD/src 0525ecesys/net80211 ieee80211_ioctl.c

net80211: fix build for 526370fb85db4b659cff4625eb2f379acaa4a1a8

In 526370fb85db4b659cff4625eb2f379acaa4a1a8 "net80211: proper ssid
length check in setmlme_assoc_adhoc()" we are checking the
sizeof on an array function parameter which leads to a warning that
it will resturn the size of the type of the array rather than the
array size itself.  Use the defined length used both in the ioctl
and the sizing of the array function parameter instead.

Reported by:    CI
MFC after:      3 days
X-MFC with:     526370fb85db4b659cff4625eb2f379acaa4a1a8
DeltaFile
+1-1sys/net80211/ieee80211_ioctl.c
+1-11 files