X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=src%2Finitscripts%2Finit.d%2Fhostapd;h=c0b11e6af6ee7f4c004120eefeb681abeddbd9c2;hp=8200c2d353a32373b26772b020a3f3797cb50e74;hb=31901da1edb401590960558b61e31ddd9fda89c1;hpb=cab25d67ad7f0b0efec2332ae9dddf3c8d380e89 diff --git a/src/initscripts/init.d/hostapd b/src/initscripts/init.d/hostapd index 8200c2d353..c0b11e6af6 100644 --- a/src/initscripts/init.d/hostapd +++ b/src/initscripts/init.d/hostapd @@ -3,54 +3,111 @@ . ${rc_functions} CHANNEL="05" +COUNTRY="00" TXPOWER="auto" INTERFACE="blue0" +MACMODE="0" + eval $(/usr/local/bin/readhash /var/ipfire/wlanap/settings) case "${1}" in start) mkdir -p /var/run/hostapd - if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then - boot_mesg "Setting wlan $INTERFACE to Master mode... " + boot_mesg "Starting hostapd... " + + # Check Interface configuration + if ! ip link show $INTERFACE > /dev/null 2>&1; then + boot_mesg "Interface $INTERFACE doesn't exist." ${FAILURE} + echo_failure + exit 0 + fi + if [ "$(ip link show $INTERFACE | /bin/grep "ether")" == "" ]; then + boot_mesg "Interface $INTERFACE is assigned to wlan master device." ${FAILURE} + boot_mesg "Please reboot to fix this." ${FAILURE} + echo_failure + exit 0 + fi + if [ "$(iwconfig $INTERFACE | /bin/grep "IEEE")" == "" ]; then + boot_mesg "Interface $INTERFACE is no wireless device." ${FAILURE} + echo_failure + exit 0 + fi - # Set Atheros Cards to master mode - if [ -d /proc/net/madwifi/ath0/ ]; then - /usr/bin/wlanconfig ath0 destroy > /dev/null + # Detect driver + if [ -e "/sys/class/net/$INTERFACE/phy80211" ]; then + DRIVER="NL80211" + driver="nl80211" + elif [ -e "/sys/class/net/$INTERFACE/madwifi_name_type" ]; then + DRIVER="MADWIFI" + driver="madwifi" + elif [ "$(/bin/grep hostap /sys/class/net/$INTERFACE/uevent)" != "" ]; then + DRIVER="HOSTAP" + driver="hostap" + else + boot_mesg "Interface $INTERFACE is a not supported wireless device." ${FAILURE} + echo_failure + exit 0 fi - /usr/bin/wlanconfig $INTERFACE destroy > /dev/null - /usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode ap > /dev/null + echo driver=$driver > /etc/hostapd.conf.tmp + grep -v "^driver=" /etc/hostapd.conf >> /etc/hostapd.conf.tmp + mv /etc/hostapd.conf.tmp /etc/hostapd.conf + + echo DRIVER=$DRIVER > /var/ipfire/wlanap/settings.tmp + grep -v "^DRIVER=" /var/ipfire/wlanap/settings >> /var/ipfire/wlanap/settings.tmp + chown nobody:nobody /var/ipfire/wlanap/settings.tmp + chmod 644 /var/ipfire/wlanap/settings.tmp + mv /var/ipfire/wlanap/settings.tmp /var/ipfire/wlanap/settings - # Set other cards to master mode - #/usr/sbin/iwconfig blue0 mode master + if [ "$DRIVER" == "MADWIFI" ]; then + if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then + boot_mesg "Setting MADWIFI wlan $INTERFACE to Master mode... " + # Set Atheros Cards to master mode + /usr/bin/wlanconfig $INTERFACE destroy > /dev/null + /usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode ap > /dev/null + fi + elif [ "$DRIVER" == "HOSTAP" ]; then + if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then + boot_mesg "Setting HOSTAP wlan $INTERFACE to Master mode... " + # Set Prism Cards to master mode + /usr/bin/iwconfig $INTERFACE mode master > /dev/null + fi fi + # First reset to World (00) and then set new country + /usr/sbin/iw reg set 00 + /usr/sbin/iw reg set $COUNTRY + + /usr/sbin/iwconfig $INTERFACE channel $CHANNEL 2>/dev/null + /usr/sbin/iwconfig $INTERFACE txpower $TXPOWER + + /usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf >/dev/null 2>&1 & + + sleep 2 + + if [ $DRIVER == "MADWIFI" ]; then + iwpriv $INTERFACE maccmd 3 + if [ $MACMODE != 0 ]; then + FILE="/var/ipfire/wlanap/macfile" + exec < $FILE + while read LINE + do + iwpriv $INTERFACE addmac $LINE + done + + iwpriv $INTERFACE maccmd $MACMODE + fi + fi + + sleep 2 + if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then boot_mesg "Error! Can't set wlan master mode" echo_failure; - exit 1; + exit 0; else - # enable wlan module of collectd - sed -i -e "s|#LoadPlugin wireless|LoadPlugin wireless|g" /etc/collectd.conf - - boot_mesg "Starting hostapd... " - /usr/sbin/iwconfig $INTERFACE channel $CHANNEL - /usr/sbin/iwconfig $INTERFACE txpower $TXPOWER - /usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf /dev/tty12 2>&1 & - evaluate_retval - fi - - iwpriv $INTERFACE maccmd 3 - if [ $MACMODE != 0 ]; then - FILE="/var/ipfire/wlanap/macfile" - exec < $FILE - while read LINE - do - iwpriv $INTERFACE addmac $LINE - done - - iwpriv $INTERFACE maccmd $MACMODE + echo_ok fi ;;