#! /bin/bash . /usr/lib/network/network . $SUBR_DIR/8021x . $SUBR_DIR/wireless wireless_up() { PROFILE="$1" load_profile "$PROFILE" enable_rf $INTERFACE $RFKILL $RFKILL_NAME || return 1 # Check if interface exists is_interface "$INTERFACE" || { report_fail "interface $INTERFACE does not exist"; return 1; } # Kill any lingering wpa_supplicants. report_debug wireless_up stop_wpa "$INTERFACE" stop_wpa "$INTERFACE" # Most drivers (mac80211) need mode set before device is brought up if [[ $(iwgetid -sm "$INTERFACE") -ne Managed ]]; then report_debug wireless_up iwconfig "$INTERFACE" mode managed iwconfig "$INTERFACE" mode managed fi report_debug wireless_up ifup bring_interface up "$INTERFACE" || return 1 # Scan for network's existence first if checkyesno "${SCAN:-no}"; then report_debug wireless_up scanning local OLDESSID="$ESSID" if [[ -n "$AP" ]]; then ESSID=$(find_ap "$INTERFACE" "$AP") else ESSID=$(find_essid "$INTERFACE" "$ESSID") fi if [[ $? -gt 0 ]]; then report_fail "Wireless network \"$OLDESSID\" not present." return 1 fi fi # Manually set iwconfig options if [[ -n "$IWCONFIG" ]]; then report_debug wireless_up iwconfig "$INTERFACE" $IWCONFIG iwconfig "$INTERFACE" $IWCONFIG fi # Set to 'none' if not set [[ -z "$SECURITY" ]] && SECURITY="none" if [[ "$SECURITY" != "${SECURITY%-old}" ]]; then report_warn "SECURITY=none-old, wep-old are deprecated, please use none, wep instead!" SECURITY=${SECURITY%-old} fi case "$SECURITY" in wpa-config) [[ -z "$WPA_CONF" ]] && WPA_CONF="/etc/wpa_supplicant.conf" # defaults ;; none|wep|wpa|wpa-configsection) WPA_CONF="$(make_wpa_config_file $INTERFACE)" echo -e "network={ \n$(make_wpa_config) \n}">> "$WPA_CONF" ;; *) report_fail "Invalid SECURITY setting: $SECURITY" ;; esac if [[ ${SECURITY:(-4)} != "-old" ]]; then report_debug wireless_up "Configuration generated at $WPA_CONF" [[ -z "$WPA_DRIVER" ]] && WPA_DRIVER="nl80211,wext" report_debug wireless_up start_wpa "$INTERFACE" "$WPA_CONF" "$WPA_DRIVER" "$WPA_OPTS" if ! start_wpa "$INTERFACE" "$WPA_CONF" "$WPA_DRIVER" "$WPA_OPTS"; then report_fail "wpa_supplicant did not start, possible configuration error" return 1 fi report_debug wireless_up wpa_check if ! wpa_check "$INTERFACE" "$TIMEOUT"; then report_fail "WPA Authentication/Association Failed" return 1 fi fi if ! "$CONN_DIR/ethernet" up "$PROFILE"; then wireless_down "$PROFILE" YES return 1 fi } # wireless_down PROFILE [ LEAVE ifconfig up? default no ] wireless_down() { local PROFILE="$1" load_profile "$PROFILE" "$CONN_DIR/ethernet" down "$PROFILE" report_debug wireless_down stop_wpa "$INTERFACE" stop_wpa "$INTERFACE" rm -rf "$STATE_DIR/wpa.$INTERFACE" bring_interface down "$INTERFACE" # Handle wireless kill switches # Any reason why a hardware switch should be considered on interface down? if [[ "$RFKILL" == "soft" ]]; then . "$SUBR_DIR/wireless" set_rf_state "$INTERFACE" disabled $RFKILL_NAME || return 1 fi } # Returns status of profile - is it still functional? wireless_status() { load_profile "$1" if [[ "$(iwgetid -r)" -ne "$ESSID" ]]; then return 1 elif ! ip link show dev "$INTERFACE" | fgrep -q "state UP"; then return 1 fi } wireless_$1 "$2" "$3" exit $? # vim: ft=sh ts=4 et sw=4 tw=0: