]> git.ipfire.org Git - thirdparty/hostap.git/blame - doc/driver_wrapper.doxygen
doc: Add D-Bus global Capabilities property
[thirdparty/hostap.git] / doc / driver_wrapper.doxygen
CommitLineData
30c28971
JM
1/**
2\page driver_wrapper Driver wrapper implementation (driver.h, drivers.c)
3
4All hardware and driver dependent functionality is in separate C files
5that implement defined wrapper functions. Other parts
6of the %wpa_supplicant are designed to be hardware, driver, and operating
7system independent.
8
9Driver wrappers need to implement whatever calls are used in the
10target operating system/driver for controlling wireless LAN
11devices. As an example, in case of Linux, these are mostly some glue
12code and ioctl() calls and netlink message parsing for Linux Wireless
13Extensions (WE). Since features required for WPA were added only recently to
14Linux Wireless Extensions (in version 18), some driver specific code is used
15in number of driver interface implementations. These driver dependent parts
16can be replaced with generic code in driver_wext.c once the target driver
17includes full support for WE-18. After that, all Linux drivers, at
18least in theory, could use the same driver wrapper code.
19
20A driver wrapper needs to implement some or all of the functions
21defined in driver.h. These functions are registered by filling struct
22wpa_driver_ops with function pointers. Hardware independent parts of
23%wpa_supplicant will call these functions to control the driver/wlan
24card. In addition, support for driver events is required. The event
25callback function, wpa_supplicant_event(), and its parameters are
26documented in driver.h. In addition, a pointer to the 'struct
27wpa_driver_ops' needs to be registered in drivers.c file.
28
29When porting to other operating systems, the driver wrapper should be
30modified to use the native interface of the target OS. It is possible
31that some extra requirements for the interface between the driver
32wrapper and generic %wpa_supplicant code are discovered during porting
33to a new operating system. These will be addressed on case by case
34basis by modifying the interface and updating the other driver
35wrappers for this. The goal is to avoid changing this interface
36without very good reasons in order to limit the number of changes
37needed to other wrappers and hardware independent parts of
38%wpa_supplicant. When changes are required, recommended way is to
39make them in backwards compatible way that allows existing driver
40interface implementations to be compiled without any modification.
41
42Generic Linux Wireless Extensions functions are implemented in
43driver_wext.c. All Linux driver wrappers can use these when the kernel
44driver supports the generic ioctl()s and wireless events. Driver
45specific functions are implemented in separate C files, e.g.,
46driver_hostap.c. These files need to define struct wpa_driver_ops
47entry that will be used in wpa_supplicant.c when calling driver
48functions. struct wpa_driver_ops entries are registered in drivers.c.
49
50In general, it is likely to be useful to first take a look at couple
51of driver interface examples before starting on implementing a new
52one. driver_hostap.c and driver_wext.c include a complete
53implementation for Linux drivers that use %wpa_supplicant-based control
54of WPA IE and roaming. driver_ndis.c (with help from driver_ndis_.c)
55is an example of a complete interface for Windows NDIS interface for
56drivers that generate WPA IE themselves and decide when to roam. These
57example implementations include full support for all security modes.
58
59
60\section driver_req Driver requirements for WPA
61
62WPA introduces new requirements for the device driver. At least some
63of these need to be implemented in order to provide enough support for
64%wpa_supplicant.
65
66\subsection driver_tkip_ccmp TKIP/CCMP
67
68WPA requires that the pairwise cipher suite (encryption algorithm for
69unicast data packets) is TKIP or CCMP. These are new encryption
70protocols and thus, the driver will need to be modified to support
71them. Depending on the used wlan hardware, some parts of these may be
72implemented by the hardware/firmware.
73
74Specification for both TKIP and CCMP is available from IEEE (IEEE
75802.11i amendment). Fully functional, hardware independent
76implementation of both encryption protocols is also available in Host
77AP driver (driver/modules/hostap_{tkip,ccmp}.c). In addition, Linux 2.6
78kernel tree has generic implementations for WEP, TKIP, and CCMP that can
79be used in Linux drivers.
80
81The driver will also need to provide configuration mechanism to allow
82user space programs to configure TKIP and CCMP. Linux Wireless Extensions
83v18 added support for configuring these algorithms and
84individual/non-default keys. If the target kernel does not include WE-18,
85private ioctls can be used to provide similar functionality.
86
87\subsection driver_roaming Roaming control and scanning support
88
89%wpa_supplicant can optionally control AP selection based on the
90information received from Beacon and/or Probe Response frames
91(ap_scan=1 mode in configuration). This means that the driver should
92support external control for scan process. In case of Linux, use of
93new Wireless Extensions scan support (i.e., 'iwlist wlan0 scan') is
94recommended. The current driver wrapper (driver_wext.c) uses this for
95scan results.
96
97Scan results must also include the WPA information element. Support for
98this was added in WE-18. With older versions, a custom event can be used
99to provide the full WPA IE (including element id and length) as a hex
100string that is included in the scan results.
101
102%wpa_supplicant needs to also be able to request the driver to
103associate with a specific BSS. Current Host AP driver and matching
104driver_hostap.c wrapper uses following sequence for this
105request. Similar/identical mechanism should be usable also with other
106drivers.
107
108- set WPA IE for AssocReq with private ioctl
109- set SSID with SIOCSIWESSID
110- set channel/frequency with SIOCSIWFREQ
111- set BSSID with SIOCSIWAP
112 (this last ioctl will trigger the driver to request association)
113
114\subsection driver_wpa_ie WPA IE generation
115
116%wpa_supplicant selects which cipher suites and key management suites
117are used. Based on this information, it generates a WPA IE. This is
118provided to the driver interface in the associate call. This does not
119match with Windows NDIS drivers which generate the WPA IE
120themselves.
121
122%wpa_supplicant allows Windows NDIS-like behavior by providing the
123selected cipher and key management suites in the associate call. If
124the driver generates its own WPA IE and that differs from the one
125generated by %wpa_supplicant, the driver has to inform %wpa_supplicant
126about the used WPA IE (i.e., the one it used in (Re)Associate
127Request). This notification is done using EVENT_ASSOCINFO event (see
128driver.h). %wpa_supplicant is normally configured to use
129ap_scan=2 mode with drivers that control WPA IE generation and roaming.
130
131\subsection driver_events Driver events
132
133%wpa_supplicant needs to receive event callbacks when certain events
134occur (association, disassociation, Michael MIC failure, scan results
135available, PMKSA caching candidate). These events and the callback
136details are defined in driver.h (wpa_supplicant_event() function
137and enum wpa_event_type).
138
139On Linux, association and disassociation can use existing Wireless
140Extensions event that is reporting new AP with SIOCGIWAP
141event. Similarly, completion of a scan can be reported with SIOCGIWSCAN
142event.
143
144Michael MIC failure event was added in WE-18. Older versions of Wireless
145Extensions will need to use a custom event. Host AP driver used a custom
146event with following contents: MLME-MICHAELMICFAILURE.indication(keyid=#
147broadcast/unicast addr=addr2). This is the recommended format until
148the driver can be moved to use WE-18 mechanism.
149
150\subsection driver_wext_summary Summary of Linux Wireless Extensions use
151
152AP selection depends on ap_scan configuration:
153
154ap_scan=1:
155
156- %wpa_supplicant requests scan with SIOCSIWSCAN
157- driver reports scan complete with wireless event SIOCGIWSCAN
158- %wpa_supplicant reads scan results with SIOCGIWSCAN (multiple call if
159 a larget buffer is needed)
160- %wpa_supplicant decides which AP to use based on scan results
161- %wpa_supplicant configures driver to associate with the selected BSS
162 (SIOCSIWMODE, SIOCSIWGENIE, SIOCSIWAUTH, SIOCSIWFREQ,
163 SIOCSIWESSID, SIOCSIWAP)
164
165ap_scan=2:
166
167- %wpa_supplicant configures driver to associate with an SSID
168 (SIOCSIWMODE, SIOCSIWGENIE, SIOCSIWAUTH, SIOCSIWESSID)
169
170
171After this, both modes use similar steps:
172
173- optionally (or required for drivers that generate WPA/RSN IE for
174 (Re)AssocReq), driver reports association parameters (AssocReq IEs)
175 with wireless event IWEVASSOCREQIE (and optionally IWEVASSOCRESPIE)
176- driver reports association with wireless event SIOCGIWAP
177- %wpa_supplicant takes care of EAPOL frame handling (validating
178 information from associnfo and if needed, from scan results if WPA/RSN
179 IE from the Beacon frame is not reported through associnfo)
180*/