]> git.ipfire.org Git - people/ms/network.git/blame - src/functions/functions.hostapd
hostapd: Remove now useless comment
[people/ms/network.git] / src / functions / functions.hostapd
CommitLineData
0e035311
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2012 IPFire Network Development Team #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
49ec20d8 22HOSTAPD_CONTROL_INTERFACE_DIR="/run/hostapd/ctrl"
0e035311 23
6c262922
MT
24HOSTAPD_SUPPORTED_MODES="802.11a 802.11a/n 802.11ac 802.11g 802.11g/n"
25
1c6a4e30 26hostapd_config_write() {
0e035311 27 local device=${1}
49ec20d8 28 assert isset device
0e035311 29
49ec20d8
MT
30 local file=${2}
31 assert isset file
32
33 # Shift the device and file argument.
34 shift 2
0e035311
MT
35
36 local broadcast_ssid
37 local channel
f9e980d9 38 local channel_bandwidth
31670741 39 local country_code="$(wireless_get_reg_domain)"
7b297fb2 40 local dfs="on"
0e035311 41 local encryption
7842c2ce 42 local environment="${WIRELESS_DEFAULT_ENVIRONMENT}"
0e035311
MT
43 local key
44 local mode
45 local ssid
19c166f8 46 local wmm="1"
0e035311
MT
47
48 while [ $# -gt 0 ]; do
49 case "${1}" in
50 --broadcast-ssid=*)
2212045f 51 broadcast_ssid=$(cli_get_val "${1}")
0e035311
MT
52 ;;
53 --channel=*)
2212045f 54 channel=$(cli_get_val "${1}")
0e035311 55 ;;
f9e980d9
MT
56 --channel-bandwidth=*)
57 channel_bandwidth="$(cli_get_val "${1}")"
58 ;;
7b297fb2
MT
59 --dfs=*)
60 dfs="$(cli_get_val "${1}")"
61 ;;
0e035311 62 --encryption=*)
2212045f 63 encryption=$(cli_get_val "${1}")
0e035311 64 ;;
7842c2ce
MT
65 --environment=*)
66 environment="$(cli_get_val "${1}")"
67 ;;
0e035311 68 --key=*)
2212045f 69 key=$(cli_get_val "${1}")
0e035311 70 ;;
4cfc085f 71 --mode=*)
2212045f 72 mode=$(cli_get_val "${1}")
6c262922
MT
73
74 if ! isoneof mode ${HOSTAPD_SUPPORTED_MODES}; then
75 error "Unsupported mode: ${mode}"
76 return ${EXIT_ERROR}
77 fi
4cfc085f
MT
78 ;;
79 --ssid=*)
2212045f 80 ssid=$(cli_get_val "${1}")
4cfc085f 81 ;;
19c166f8
MT
82 --wmm=*)
83 local val="$(cli_get_val "${1}")"
84 if enabled val; then
85 wmm="1"
86 else
87 wmm="0"
88 fi
89 ;;
0e035311
MT
90 *)
91 warning_log "Ignoring unknown argument '${1}'."
92 ;;
93 esac
94 shift
95 done
96
6c262922
MT
97 # Check if mode is set
98 if ! isset mode; then
99 error "Mode is not set"
100 return ${EXIT_ERROR}
101 fi
102
0e035311
MT
103 assert isset broadcast_ssid
104 assert isbool broadcast_ssid
105
106 assert isset channel
107 assert isinteger channel
108
0e035311
MT
109 assert isset mode
110 assert isset ssid
111
112 # Check if key is set when encryption is used.
113 if isset encryption; then
114 assert isoneof encryption WPA WPA2 WPA/WPA2
115 assert isset key
116 fi
117
7842c2ce
MT
118 # Check wireless environment
119 if ! wireless_environment_is_valid "${environment}"; then
120 error "Invalid wireless environment: ${environment}"
121 return ${EXIT_ERROR}
122 fi
123
1b4aa2ca
MT
124 # With channel 0, ACS must be supported
125 if [ ${channel} -eq 0 ] && ! wireless_supports_acs "${device}"; then
126 error "ACS requested, but not supported by ${device}"
127 return ${EXIT_ERROR}
128 fi
129
f9e980d9
MT
130 # Check channel bandwidth for validity
131 if isset channel_bandwidth && ! wireless_channel_bandwidth_is_valid "${mode}" "${channel_bandwidth}"; then
132 error "Invalid channel bandwidth for ${mode}: ${channel_bandwidth}"
133 return ${EXIT_ERROR}
134 fi
135
6c262922
MT
136 # 802.11ac/n flags
137 local ieee80211ac
138 local ieee80211n
139 local vht_caps
f9e980d9 140 local vht_oper_chwidth="0"
6c262922
MT
141 local ht_caps
142
143 local hw_mode
144 case "${mode}" in
145 802.11a)
146 hw_mode="a"
147 ;;
148
149 802.11a/n)
150 hw_mode="a"
151 ieee80211n="1"
152
153 # Fetch HT caps
154 ht_caps="$(wireless_get_ht_caps "${device}")"
155 ;;
156
157 802.11g)
158 hw_mode="g"
159 ;;
160
161 802.11g/n)
162 hw_mode="g"
163 ieee80211n="1"
164
165 # Fetch HT caps
166 ht_caps="$(wireless_get_ht_caps "${device}")"
167 ;;
168
169 802.11ac)
170 hw_mode="a"
171 ieee80211ac="1"
172 ieee80211n="1"
173
174 # Fetch VHT caps
175 vht_caps="$(wireless_get_vht_caps "${device}")"
1526e219 176
6c262922
MT
177 # Fetch HT caps
178 ht_caps="$(wireless_get_ht_caps "${device}")"
f9e980d9
MT
179
180 case "${channel_bandwidth}" in
181 80)
182 vht_oper_chwidth="1"
183 ;;
184 160)
185 vht_oper_chwidth="2"
186 ;;
187 80+80)
188 vht_oper_chwidth="3"
189 ;;
190 esac
6c262922
MT
191 ;;
192 esac
0e1c630c 193
49ec20d8
MT
194 # Create configuration directory.
195 local config_dir=$(dirname ${file})
196 mkdir -p ${HOSTAPD_CONTROL_INTERFACE_DIR} ${config_dir} 2>/dev/null
197
198 config_header "hostapd" > ${file}
199
200 # Interface configuration
201 (
202 print "# Interface configuration"
203 print "driver=nl80211"
204 print "interface=${device}"
205 print
206 ) >> ${file}
207
208 # Wireless configuration
0e035311
MT
209 local ignore_broadcast_ssid
210 if enabled broadcast_ssid; then
211 ignore_broadcast_ssid="0"
212 else
213 ignore_broadcast_ssid="1"
214 fi
215
49ec20d8 216 (
b6ec3dd6
MT
217 # Advertise country code and maximum transmission power
218 print "ieee80211d=1"
7842c2ce
MT
219 print "country_code=${country_code}"
220
221 # Wireless Environment
222 case "${environment}" in
223 indoor)
224 print "country3=0x49"
225 country3
226 ;;
227 outdoor)
228 print "country3=0x4f"
229 ;;
230 indoor+outdoor)
231 print "country3=0x20"
232 ;;
233 esac
b6ec3dd6 234
6c262922 235 # Enable Radar Detection
dc6d97fb 236 if enabled dfs && wireless_supports_dfs "${device}"; then
7b297fb2
MT
237 print "ieee80211h=1"
238 else
239 print "ieee80211h=0"
240 fi
6c262922
MT
241
242 print # empty line
243
49ec20d8 244 print "# Wireless configuration"
6c262922
MT
245 print "hw_mode=${hw_mode}"
246
247 if isset ieee80211ac; then
248 print "ieee80211ac=${ieee80211ac}"
249 fi
250
251 if isset ieee80211n; then
252 print "ieee80211n=${ieee80211n}"
253 fi
254
49ec20d8 255 print "channel=${channel}"
49ec20d8 256 print "ignore_broadcast_ssid=${ignore_broadcast_ssid}"
0e035311 257
49ec20d8
MT
258 if contains_spaces "${ssid}"; then
259 print "ssid=\"${ssid}\""
260 else
261 print "ssid=${ssid}"
262 fi
0e035311 263
19c166f8
MT
264 # WMM
265 print "wmm_enabled=${wmm}"
266
1526e219
MT
267 # Enable VHT caps
268 if isset vht_caps; then
269 print "vht_capab=${vht_caps}"
270 fi
271
0e1c630c
MT
272 # Enable HT caps
273 print "ht_capab=${ht_caps}"
274
f9e980d9
MT
275 # Wider Channels
276 print "vht_oper_chwidth=${vht_oper_chwidth}"
277
49ec20d8
MT
278 print
279 ) >> ${file}
0e035311 280
49ec20d8
MT
281 # Control interface.
282 (
283 print "# Control interface"
284 print "ctrl_interface=${HOSTAPD_CONTROL_INTERFACE_DIR}"
285 print "ctrl_interface_group=0"
286 print
287 ) >> ${file}
0e035311 288
49ec20d8 289 # Encryption settings
0e035311
MT
290 if isset encryption; then
291 local encryption_mode=0
292 case "${encryption}" in
293 WPA)
294 encryption_mode=1
295 ;;
296 WPA2)
297 encryption_mode=2
298 ;;
299 WPA/WPA2)
300 encryption_mode=3
301 ;;
302 esac
303
49ec20d8
MT
304 (
305 print "# Encryption settings"
306 print "wpa=${encryption_mode}"
307 print "wpa_passphrase=${key}"
308 print "wpa_key_mgmt=WPA-PSK"
309 print "wpa_pairwise=TKIP"
310 print "rsn_pairwise=CCMP"
311 print
312 ) >> ${file}
0e035311
MT
313 fi
314
315 return ${EXIT_OK}
316}
317
1c6a4e30 318hostapd_start() {
0e035311 319 local device=${1}
0e035311
MT
320 assert isset device
321
0e035311
MT
322 service_start "hostapd@${device}.service"
323 local ret=$?
324
49ec20d8
MT
325 if [ ${ret} -eq ${EXIT_OK} ]; then
326 log DEBUG "hostapd has been successfully started on '${device}'"
327 else
328 log ERROR "Could not start hostapd on '${device}': ${ret}"
329 return ${EXIT_ERROR}
330 fi
331
332 return ${EXIT_OK}
0e035311
MT
333}
334
1c6a4e30 335hostapd_stop() {
0e035311
MT
336 local device=${1}
337 assert isset device
338
339 service_stop "hostapd@${device}.service"
0e035311 340}