blob: 65c77d8d76317f710ad8d009bc76a3c67d79acc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
.\"
.\" SPDX-License-Identifier: BSD-2-Clause
.\"
.\" Copyright (c) 2025 The FreeBSD Foundation
.\"
.\" This documentation was written by Bj\xc3\xb6rn Zeeb under sponsorship from
.\" the FreeBSD Foundation.
.\"
.Dd December 28, 2025
.Dt LINUXKPI_WLAN 4
.Os
.Sh NAME
.Nm linuxkpi_wlan
.Nd LinuxKPI 802.11 support
.Sh DESCRIPTION
The
.Nm
kernel module provides an 802.11 compat layer to translate between Linux
802.11 drivers and the native net8011 wireless stack.
It currently supports
.Em mac80211
based drivers.
Parts of the
.Em cfg80211
exist but there is no code for net80211 to drive it.
.Pp
.Nm
currently supports the following
.Em wlanmode
operating modes:
.Bl -tag -width monitor -compact
.It Cm sta
client station in an infrastructure bss (IBSS).
.El
.Pp
Compat code for 802.11n (HT) and 802.11ac (VHT) is implemented but
support may vary for different drivers due to different KPI usage.
.Pp
Crypto support for hardware acceleration needs to be enabled using the
.Va compat.linuxkpi.80211.hw_crypto
tunable.
The following cipher suites are supported:
.Bl -tag -width CCMP -compact
.It Cm tkip
Support for
.Xr wlan_tkip 4
has to be manually enabled using the
.Va compat.linuxkpi.80211.tkip
tunable.
.It Cm ccmp
Support for
.Xr wlan_ccmp 4
is available.
.It Cm gcmp
Support for
.Xr wlan_gcmp 4
is available.
.El
Further cipher suites will be implemented as soon as
.Xr net80211 4
grows support.
While it would be possible to implement
.Xr wlan_wep 4
support, it was decided not to do so given
.Em Wired Equivalent Privacy (WEP)
has been deprecated since 2004.
.Pp
The list of supported drivers includes
.Xr iwlwifi 4 ,
.Xr rtw88 4 ,
and
.Xr rtw89 4 .
.Sh SYSCTL VARIABLES AND LOADER TUNABLES
The
.Nm
module supports the following
.Xr loader 8
tunable and read-only
.Xr sysctl 8
variables:
.Bl -tag -width "compat.linuxkpi.80211.hw_crypto"
.It Va compat.linuxkpi.80211.hw_crypto
Turn on hardware crypto offload support.
Default
.Ql 0 .
.It Va compat.linuxkpi.80211.tkip
Turn on support for
.Xr wlan_tkip 4
offloading.
Default
.Ql 0 .
.El
.Pp
The
.Nm
module supports the following
.Xr sysctl 8
variables:
.Bl -tag -width "compat.linuxkpi.80211.IF.dump_stas"
.It Va compat.linuxkpi.80211.debug
If the kernel is compiled with
.Dv IEEE80211_DEBUG
or
.Dv LINUXKPI_DEBUG_80211
is manually enabled, the sysctl is a bitmask to turn on individual
debug messages.
See
.Pa sys/compat/linuxkpi/common/src/linux_80211.h
for details.
.It Va compat.linuxkpi.80211.IF.dump_stas
Print statistics for a given, associated
.Xr wlan 4
interface; typically IF would be
.Em wlan0 .
.It Va compat.linuxkpi.80211.IF.dump_stas_queues
Like
.Va compat.linuxkpi.80211.IF.dump_stas
but also print queue statistics.
This sysctl is
.Sq hidden
and normally only needed for debugging purposes.
.El
.Sh SEE ALSO
.Xr iwlwifi 4 ,
.Xr linuxkpi 4 ,
.Xr rtw88 4 ,
.Xr rtw89 4 ,
.Xr wlan 4
.Sh HISTORY
The
.Nm
module first appeared in
.Fx 13.1 .
Support for IEEE 802.11n and 802.11ac in
.Nm
first appeared in
.Fx 14.3 .
.Sh AUTHORS
LinuxKPI 802.11 support was developed by
.An Bjoern A. Zeeb
under sponsorship from the FreeBSD Foundation.
|