1#!/bin/sh 2#- 3# Copyright (c) 2011 Nathan Whitehorn 4# Copyright (c) 2013-2016 Devin Teske 5# All rights reserved. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions 9# are met: 10# 1. Redistributions of source code must retain the above copyright 11# notice, this list of conditions and the following disclaimer. 12# 2. Redistributions in binary form must reproduce the above copyright 13# notice, this list of conditions and the following disclaimer in the 14# documentation and/or other materials provided with the distribution. 15# 16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26# SUCH DAMAGE. 27# 28# $FreeBSD$ 29# 30############################################################ INCLUDES 31 32BSDCFG_SHARE="/usr/share/bsdconfig" 33. $BSDCFG_SHARE/common.subr || exit 1 34f_include $BSDCFG_SHARE/dialog.subr 35f_dialog_backtitle "FreeBSD Installer" 36 37############################################################ FUNCTIONS 38 39country_set() 40{ 41 local error_str iface_up ifconfig_args= 42 43 # 44 # Setup what was selected 45 # NB: Do not change order of arguments (or regdomain will be ignored) 46 # 47 [ "$2" ] && ifconfig_args="$ifconfig_args country $2" 48 [ "$1" ] && ifconfig_args="$ifconfig_args regdomain $1" 49 [ "$ifconfig_args" ] || return $SUCCESS # Nothing to do 50 ifconfig_args="${ifconfig_args# }" 51 52 # Regdomain/country cannot be applied while interface is running 53 iface_up=$( ifconfig -lu | grep -w "$WLAN_IFACE" ) 54 [ "$iface_up" ] && ifconfig "$WLAN_IFACE" down 55 f_eval_catch -dk error_str wlanconfig ifconfig "ifconfig %s %s" \ 56 "$WLAN_IFACE" "$ifconfig_args" 57 error_str="${error_str#ifconfig: }" 58 # Restart wpa_supplicant(8) (should not fail). 59 [ "$iface_up" ] && f_eval_catch -d wlanconfig wpa_supplicant \ 60 'wpa_supplicant -B -i "%s" -c "%s/wpa_supplicant.conf"' \ 61 "$WLAN_IFACE" "$BSDINSTALL_TMPETC" 62 if [ "$error_str" ]; then 63 $DIALOG \ 64 --title "$msg_error" \ 65 --backtitle "$DIALOG_BACKTITLE" \ 66 --yes-label Change \ 67 --no-label Ignore \ 68 --yesno \ 69 "Error while applying chosen settings ($error_str)" \ 70 0 0 || return $SUCCESS # Skip 71 return $FAILURE # Restart 72 else 73 awk 'sub(/^\t\t/,"")||1' \ 74 > "$BSDINSTALL_TMPETC/rc.conf.net.wlan" <<-EOF 75 create_args_$WLAN_IFACE="$ifconfig_args" 76 EOF 77 fi 78 79 return $SUCCESS 80} 81 82dialog_country_select() 83{ 84 local input regdomains countries regdomain country prompt 85 local no_default="<not selected>" 86 local default_regdomain="${1:-$no_default}" 87 local default_country="${2:-$no_default}" 88 89 # 90 # Parse available countries/regdomains 91 # 92 input=$( ifconfig "$WLAN_IFACE" list countries | sed -e 's/DEBUG//gi' ) 93 regdomains=$( echo "$input" | awk ' 94 sub(/.*domains:/, ""), /[^[:alnum:][[:space:]]/ { 95 n = split($0, domains) 96 for (i = 1; i <= n; i++) 97 printf "'\''%s'\'' '\'\''", domains[i] 98 } 99 ' | sort ) 100 countries=$( echo "$input" | awk ' 101 sub(/Country codes:/, ""), sub(/Regulatory.*/, "") { 102 while (match($0, /[[:upper:]][[:upper:][:digit:]] /)) { 103 country = substr($0, RSTART) 104 sub(/ [[:upper:]][[:upper:][:digit:]].*/, "", country) 105 code = substr(country, 1, 2) 106 desc = substr(country, 4) 107 sub(/[[:space:]]*$/, "", desc) 108 printf "'\''%s'\'' '\''%s'\''\n", code, desc 109 $0 = substr($0, RSTART + RLENGTH) 110 } 111 } 112 ' | sort ) 113 114 f_dialog_title "Regdomain selection" 115 prompt="Select your regdomain." 116 eval f_dialog_menu_size height width rows \ 117 \"\$DIALOG_TITLE\" \"\$DIALOG_BACKTITLE\" \ 118 \"\$prompt\" \"\" $regdomains 119 regdomain=$( eval $DIALOG \ 120 --title \"\$DIALOG_TITLE\" \ 121 --backtitle \"\$DIALOG_BACKTITLE\" \ 122 --cancel-label \"\$msg_skip\" \ 123 --default-item \"\$default_regdomain\" \ 124 --menu \"\$prompt\" \ 125 $height $width $rows \ 126 $regdomains \ 127 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 128 ) 129 f_dialog_data_sanitize regdomain 130 131 f_dialog_title "Country selection" 132 prompt="Select your country." 133 eval f_dialog_menu_size height width rows \ 134 \"\$DIALOG_TITLE\" \"\$DIALOG_BACKTITLE\" \ 135 \"\$prompt\" \"\" $countries 136 country=$( eval $DIALOG \ 137 --title \"\$DIALOG_TITLE\" \ 138 --backtitle \"\$DIALOG_BACKTITLE\" \ 139 --cancel-label \"\$msg_skip\" \ 140 --default-item \"\$default_country\" \ 141 --menu \"\$prompt\" \ 142 $height $width $rows \ 143 $countries \ 144 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 145 ) 146 f_dialog_data_sanitize country 147 148 country_set "$regdomain" "$country" 149} 150 151############################################################ MAIN 152 153: > "$BSDINSTALL_TMPETC/wpa_supplicant.conf" 154chmod 0600 "$BSDINSTALL_TMPETC/wpa_supplicant.conf" 155 156cat >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" << EOF 157ctrl_interface=/var/run/wpa_supplicant 158eapol_version=2 159ap_scan=1 160fast_reauth=1 161 162EOF 163 164# 165# Try to reach wpa_supplicant. If it isn't running and we can modify the 166# existing system, start it. Otherwise, fail. 167# 168if ! f_eval_catch -d wlanconfig wpa_cli "wpa_cli ping"; then 169 if [ ! "$BSDINSTALL_CONFIGCURRENT" ]; then 170 f_show_err "Wireless cannot be configured without %s" \ 171 "making changes to the local system!" 172 exit 1 173 fi 174 f_eval_catch wlanconfig wpa_supplicant \ 175 'wpa_supplicant -B -i "%s" -c "%s/wpa_supplicant.conf"' \ 176 "$1" "$BSDINSTALL_TMPETC" || exit 1 177 178 f_eval_catch wlanconfig wpa_cli "wpa_cli ping" || exit 1 179fi 180 181# 182# There is no way to check country/regdomain without (possible) 183# interface state modification 184# 185if [ "$BSDINSTALL_CONFIGCURRENT" ]; then 186 # Get current country/regdomain for selected interface 187 WLAN_IFACE=$( wpa_cli ifname | tail -1 ) 188 INPUT=$( ifconfig "$WLAN_IFACE" list regdomain | head -1 ) 189 DEF_REGDOMAIN=$( echo "$INPUT" | cut -w -f 2 ) 190 DEF_COUNTRY=$( echo "$INPUT" | cut -w -f 4 ) 191 [ "$DEF_REGDOMAIN" = 0 ] && DEF_REGDOMAIN="<not selected>" 192 [ "$DEF_COUNTRY" = 0 ] && DEF_COUNTRY="<not selected>" 193 f_dialog_title "Regdomain/country" 194 f_yesno "Change regdomain/country (now $DEF_REGDOMAIN/$DEF_COUNTRY)?" 195 if [ $? -eq 0 ]; then 196 while :; do 197 dialog_country_select "$DEF_REGDOMAIN" "$DEF_COUNTRY" 198 if [ $? -eq $SUCCESS ]; then 199 break 200 fi 201 done 202 fi 203fi 204 205while :; do 206 SCANSSID=0 207 f_eval_catch -d wlanconfig wpa_cli "wpa_cli scan" 208 f_dialog_title "Scanning" 209 f_dialog_pause "Waiting 5 seconds to scan for wireless networks..." 5 || 210 exit 1 211 212 f_eval_catch -dk SCAN_RESULTS wlanconfig wpa_cli "wpa_cli scan_results" 213 NETWORKS=$( echo "$SCAN_RESULTS" | awk -F '\t' ' 214 /..:..:..:..:..:../ && $5 { printf "\"%s\"\t%s\n", $5, $4 } 215 ' | sort | uniq ) 216 217 if [ ! "$NETWORKS" ]; then 218 f_dialog_title "$msg_error" 219 f_yesno "No wireless networks were found. Rescan?" && continue 220 exit 1 221 fi 222 223 f_dialog_title "Network Selection" 224 prompt="Select a wireless network to connect to." 225 menu_list=$( echo $NETWORKS | tr '\n' ' ' ) 226 f_dialog_menu_size height width rows "$DIALOG_TITLE" \ 227 "$DIALOG_BACKTITLE" "$prompt" "" $menu_list 228 NETWORK=$( eval $DIALOG \ 229 --title \"\$DIALOG_TITLE\" \ 230 --backtitle \"\$DIALOG_BACKTITLE\" \ 231 --extra-button \ 232 --extra-label \"Rescan\" \ 233 --menu \"\$prompt\" \ 234 $height $width $rows \ 235 $menu_list \ 236 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 237 ) 238 retval=$? 239 f_dialog_data_sanitize NETWORK 240 case $retval in 241 $DIALOG_OK) break ;; 242 $DIALOG_CANCEL) 243 # Ask if the user wants to select network manually 244 f_dialog_title "Network Selection" 245 f_yesno "Do you want to select the network manually?" || exit 1 246 f_dialog_input NETWORK "Enter SSID" || exit 1 247 prompt="Select encryption type" 248 menu_list=" 249 '1 WPA/WPA2 PSK' '' 250 '2 WPA/WPA2 EAP' '' 251 '3 WEP' '' 252 '0 None' '' 253 " # END-QUOTE 254 eval f_dialog_menu_size height width rows \"\$DIALOG_TITLE\" \ 255 \"\$DIALOG_BACKTITLE\" \"\$prompt\" \"\" $menu_list 256 ENCRYPTION=$( eval $DIALOG \ 257 --title \"\$DIALOG_TITLE\" \ 258 --backtitle \"\$DIALOG_BACKTITLE\" \ 259 --menu \"\$prompt\" \ 260 $height $width $rows \ 261 $menu_list \ 262 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 263 ) || exit 1 264 SCANSSID=1 265 break 266 ;; 267 $DIALOG_EXTRA) # Rescan 268 ;; 269 esac 270done 271 272[ "$ENCRYPTION" ] || ENCRYPTION=$( echo "$NETWORKS" | 273 awk -F '\t' "/^\"$NETWORK\"\t/ { print \$2 }" ) 274 275if echo "$ENCRYPTION" | grep -q PSK; then 276 PASS=$( $DIALOG \ 277 --title "WPA Setup" \ 278 --backtitle "$DIALOG_BACKTITLE" \ 279 --insecure \ 280 --mixedform "" \ 281 0 0 0 \ 282 "SSID" 1 0 "$NETWORK" 1 12 0 0 2 \ 283 "Password" 2 0 "" 2 12 15 63 1 \ 284 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 285 ) || exec "$0" "$@" 286 awk 'sub(/^\t/,"")||1' \ 287 >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" <<-EOF 288 network={ 289 ssid="$NETWORK" 290 scan_ssid=$SCANSSID 291 psk="$PASS" 292 priority=5 293 } 294 EOF 295elif echo "$ENCRYPTION" | grep -q EAP; then 296 USERPASS=$( $DIALOG \ 297 --title "WPA-Enterprise Setup" \ 298 --backtitle "$DIALOG_BACKTITLE" \ 299 --insecure \ 300 --mixedform "" \ 301 0 0 0 \ 302 "SSID" 1 0 "$NETWORK" 1 12 0 0 2 \ 303 "Username" 2 0 "" 2 12 25 63 0 \ 304 "Password" 3 0 "" 3 12 25 63 1 \ 305 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 306 ) || exec "$0" "$@" 307 awk 'sub(/^\t/,"")||1' \ 308 >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" <<-EOF 309 network={ 310 ssid="$NETWORK" 311 scan_ssid=$SCANSSID 312 key_mgmt=WPA-EAP$( 313 echo "$USERPASS" | awk ' 314 NR == 1 { printf "\n\t\tidentity=\"%s\"", $1 } 315 NR == 2 { printf "\n\t\tpassword=\"%s\"", $1 } 316 ' ) 317 priority=5 318 } 319 EOF 320elif echo "$ENCRYPTION" | grep -q WEP; then 321 WEPKEY=$( $DIALOG \ 322 --title "WEP Setup" \ 323 --backtitle "$DIALOG_BACKTITLE" \ 324 --insecure \ 325 --mixedform "" \ 326 0 0 0 \ 327 "SSID" 1 0 "$NETWORK" 1 12 0 0 2 \ 328 "WEP Key 0" 2 0 "" 2 12 15 0 1 \ 329 2>&1 >&$DIALOG_TERMINAL_PASSTHRU_FD 330 ) || exec "$0" "$@" 331 awk 'sub(/^\t/,"")||1' \ 332 >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" <<-EOF 333 network={ 334 ssid="$NETWORK" 335 scan_ssid=$SCANSSID 336 key_mgmt=NONE 337 wep_key0="$WEPKEY" 338 wep_tx_keyidx=0 339 priority=5 340 } 341 EOF 342else # Open 343 awk 'sub(/^\t/,"")||1' \ 344 >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" <<-EOF 345 network={ 346 ssid="$NETWORK" 347 scan_ssid=$SCANSSID 348 key_mgmt=NONE 349 priority=5 350 } 351 EOF 352fi 353 354# Connect to any open networks policy 355cat >> "$BSDINSTALL_TMPETC/wpa_supplicant.conf" << EOF 356network={ 357 priority=0 358 key_mgmt=NONE 359} 360EOF 361 362# Bring up new network 363if [ "$BSDINSTALL_CONFIGCURRENT" ]; then 364 f_eval_catch -d wlanconfig wpa_cli "wpa_cli reconfigure" 365fi 366 367exit $SUCCESS 368 369################################################################################ 370# END 371################################################################################ 372