2016-09-01 07:05:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Disable wifi, and remove all modules.
|
Various Wi-Fi QoL improvements (#6424)
* Revamped most actions that require an internet connection to a new/fixed backend that allows forwarding the initial action and running it automatically once connected. (i.e., it'll allow you to set "Action when Wi-Fi is off" to "turn_on", and whatch stuff connect and do what you wanted automatically without having to re-click anywhere instead of showing you a Wi-Fi prompt and then not doing anything without any other feedback).
* Speaking of, fixed the "turn_on" beforeWifi action to, well, actually work. It's no longer marked as experimental.
* Consistently use "Wi-Fi" everywhere.
* On Kobo/Cervantes/Sony, implemented a "Kill Wi-Fi connection when inactive" system that will automatically disconnect from Wi-Fi after sustained *network* inactivity (i.e., you can keep reading, it'll eventually turn off on its own). This should be smart and flexible enough not to murder Wi-Fi while you need it, while still not keeping it uselessly on and murdering your battery.
(i.e., enable that + turn Wi-Fi on when off and enjoy never having to bother about Wi-Fi ever again).
* Made sending `NetworkConnected` / `NetworkDisconnected` events consistent (they were only being sent... sometimes, which made relying on 'em somewhat problematic).
* restoreWifiAsync is now only run when really needed (i.e., we no longer stomp on an existing working connection just for the hell of it).
* We no longer attempt to kill a bogus non-existent Wi-Fi connection when going to suspend, we only do it when it's actually needed.
* Every method of enabling Wi-Fi will now properly tear down Wi-Fi on failure, instead of leaving it in an undefined state.
* Fixed an issue in the fancy crash screen on Kobo/reMarkable that could sometime lead to the log excerpt being missing.
* Worked-around a number of sneaky issues related to low-level Wi-Fi/DHCP/DNS handling on Kobo (see the lengthy comments [below](https://github.com/koreader/koreader/pull/6424#issuecomment-663881059) for details). Fix #6421
Incidentally, this should also fix the inconsistencies experienced re: Wi-Fi behavior in Nickel when toggling between KOReader and Nickel (use NM/KFMon, and run a current FW for best results).
* For developers, this involves various cleanups around NetworkMgr and NetworkListener. Documentation is in-line, above the concerned functions.
2020-07-27 01:39:06 +00:00
|
|
|
# NOTE: Save our resolv.conf to avoid ending up with an empty one, in case the DHCP client wipes it on release (#6424).
|
|
|
|
cp -a "/etc/resolv.conf" "/tmp/resolv.ko"
|
|
|
|
old_hash="$(md5sum "/etc/resolv.conf" | cut -f1 -d' ')"
|
2016-09-01 07:05:40 +00:00
|
|
|
|
Various Wi-Fi QoL improvements (#6424)
* Revamped most actions that require an internet connection to a new/fixed backend that allows forwarding the initial action and running it automatically once connected. (i.e., it'll allow you to set "Action when Wi-Fi is off" to "turn_on", and whatch stuff connect and do what you wanted automatically without having to re-click anywhere instead of showing you a Wi-Fi prompt and then not doing anything without any other feedback).
* Speaking of, fixed the "turn_on" beforeWifi action to, well, actually work. It's no longer marked as experimental.
* Consistently use "Wi-Fi" everywhere.
* On Kobo/Cervantes/Sony, implemented a "Kill Wi-Fi connection when inactive" system that will automatically disconnect from Wi-Fi after sustained *network* inactivity (i.e., you can keep reading, it'll eventually turn off on its own). This should be smart and flexible enough not to murder Wi-Fi while you need it, while still not keeping it uselessly on and murdering your battery.
(i.e., enable that + turn Wi-Fi on when off and enjoy never having to bother about Wi-Fi ever again).
* Made sending `NetworkConnected` / `NetworkDisconnected` events consistent (they were only being sent... sometimes, which made relying on 'em somewhat problematic).
* restoreWifiAsync is now only run when really needed (i.e., we no longer stomp on an existing working connection just for the hell of it).
* We no longer attempt to kill a bogus non-existent Wi-Fi connection when going to suspend, we only do it when it's actually needed.
* Every method of enabling Wi-Fi will now properly tear down Wi-Fi on failure, instead of leaving it in an undefined state.
* Fixed an issue in the fancy crash screen on Kobo/reMarkable that could sometime lead to the log excerpt being missing.
* Worked-around a number of sneaky issues related to low-level Wi-Fi/DHCP/DNS handling on Kobo (see the lengthy comments [below](https://github.com/koreader/koreader/pull/6424#issuecomment-663881059) for details). Fix #6421
Incidentally, this should also fix the inconsistencies experienced re: Wi-Fi behavior in Nickel when toggling between KOReader and Nickel (use NM/KFMon, and run a current FW for best results).
* For developers, this involves various cleanups around NetworkMgr and NetworkListener. Documentation is in-line, above the concerned functions.
2020-07-27 01:39:06 +00:00
|
|
|
if [ -x "/sbin/dhcpcd" ]; then
|
|
|
|
env -u LD_LIBRARY_PATH dhcpcd -d -k "${INTERFACE}"
|
|
|
|
killall -q -TERM udhcpc default.script
|
|
|
|
else
|
|
|
|
killall -q -TERM udhcpc default.script dhcpcd
|
|
|
|
fi
|
|
|
|
|
|
|
|
# NOTE: dhcpcd -k waits for the signalled process to die, but busybox's killall doesn't have a -w, --wait flag,
|
|
|
|
# so we have to wait for udhcpc to die ourselves...
|
2020-07-29 01:27:04 +00:00
|
|
|
# NOTE: But if all is well, there *isn't* any udhcpc process or script left to begin with...
|
Various Wi-Fi QoL improvements (#6424)
* Revamped most actions that require an internet connection to a new/fixed backend that allows forwarding the initial action and running it automatically once connected. (i.e., it'll allow you to set "Action when Wi-Fi is off" to "turn_on", and whatch stuff connect and do what you wanted automatically without having to re-click anywhere instead of showing you a Wi-Fi prompt and then not doing anything without any other feedback).
* Speaking of, fixed the "turn_on" beforeWifi action to, well, actually work. It's no longer marked as experimental.
* Consistently use "Wi-Fi" everywhere.
* On Kobo/Cervantes/Sony, implemented a "Kill Wi-Fi connection when inactive" system that will automatically disconnect from Wi-Fi after sustained *network* inactivity (i.e., you can keep reading, it'll eventually turn off on its own). This should be smart and flexible enough not to murder Wi-Fi while you need it, while still not keeping it uselessly on and murdering your battery.
(i.e., enable that + turn Wi-Fi on when off and enjoy never having to bother about Wi-Fi ever again).
* Made sending `NetworkConnected` / `NetworkDisconnected` events consistent (they were only being sent... sometimes, which made relying on 'em somewhat problematic).
* restoreWifiAsync is now only run when really needed (i.e., we no longer stomp on an existing working connection just for the hell of it).
* We no longer attempt to kill a bogus non-existent Wi-Fi connection when going to suspend, we only do it when it's actually needed.
* Every method of enabling Wi-Fi will now properly tear down Wi-Fi on failure, instead of leaving it in an undefined state.
* Fixed an issue in the fancy crash screen on Kobo/reMarkable that could sometime lead to the log excerpt being missing.
* Worked-around a number of sneaky issues related to low-level Wi-Fi/DHCP/DNS handling on Kobo (see the lengthy comments [below](https://github.com/koreader/koreader/pull/6424#issuecomment-663881059) for details). Fix #6421
Incidentally, this should also fix the inconsistencies experienced re: Wi-Fi behavior in Nickel when toggling between KOReader and Nickel (use NM/KFMon, and run a current FW for best results).
* For developers, this involves various cleanups around NetworkMgr and NetworkListener. Documentation is in-line, above the concerned functions.
2020-07-27 01:39:06 +00:00
|
|
|
kill_timeout=0
|
|
|
|
while pkill -0 udhcpc; do
|
|
|
|
# Stop waiting after 5s
|
|
|
|
if [ ${kill_timeout} -ge 20 ]; then
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
usleep 250000
|
|
|
|
kill_timeout=$((kill_timeout + 1))
|
|
|
|
done
|
|
|
|
|
|
|
|
new_hash="$(md5sum "/etc/resolv.conf" | cut -f1 -d' ')"
|
|
|
|
# Restore our network-specific resolv.conf if the DHCP client wiped it when releasing the lease...
|
|
|
|
if [ "${new_hash}" != "${old_hash}" ]; then
|
|
|
|
mv -f "/tmp/resolv.ko" "/etc/resolv.conf"
|
|
|
|
else
|
|
|
|
rm -f "/tmp/resolv.ko"
|
|
|
|
fi
|
|
|
|
|
|
|
|
wpa_cli terminate
|
2016-09-01 07:05:40 +00:00
|
|
|
|
2021-07-21 16:12:58 +00:00
|
|
|
[ "${WIFI_MODULE}" = "dhd" ] && wlarm_le -i "${INTERFACE}" down
|
2018-05-01 12:49:37 +00:00
|
|
|
ifconfig "${INTERFACE}" down
|
2016-09-01 07:05:40 +00:00
|
|
|
|
2016-12-12 22:36:07 +00:00
|
|
|
# Some sleep in between may avoid system getting hung
|
|
|
|
# (we test if a module is actually loaded to avoid unneeded sleeps)
|
2021-09-02 20:33:10 +00:00
|
|
|
if grep -q "^${WIFI_MODULE}" "/proc/modules"; then
|
2018-05-10 10:26:07 +00:00
|
|
|
usleep 250000
|
2018-06-16 21:05:20 +00:00
|
|
|
rmmod "${WIFI_MODULE}"
|
2016-12-12 22:36:07 +00:00
|
|
|
fi
|
2021-09-02 20:33:10 +00:00
|
|
|
if grep -q "^sdio_wifi_pwr" "/proc/modules"; then
|
2020-11-25 14:50:47 +00:00
|
|
|
# Handle the shitty DVFS switcheroo...
|
|
|
|
if [ -n "${CPUFREQ_DVFS}" ]; then
|
|
|
|
echo "0" >"/sys/devices/platform/mxc_dvfs_core.0/enable"
|
|
|
|
if [ -n "${CPUFREQ_CONSERVATIVE}" ]; then
|
|
|
|
echo "conservative" >"/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"
|
|
|
|
else
|
|
|
|
echo "userspace" >"/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor"
|
|
|
|
cat "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq" >"/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
|
|
|
|
fi
|
|
|
|
fi
|
2018-05-10 10:26:07 +00:00
|
|
|
usleep 250000
|
2018-06-16 21:05:20 +00:00
|
|
|
rmmod sdio_wifi_pwr
|
2016-12-12 22:36:07 +00:00
|
|
|
fi
|
2021-08-09 00:30:59 +00:00
|
|
|
|
|
|
|
# Poke the kernel via ioctl on platforms without the dedicated power module...
|
|
|
|
if [ ! -e "/drivers/${PLATFORM}/wifi/sdio_wifi_pwr.ko" ]; then
|
|
|
|
usleep 250000
|
|
|
|
./luajit frontend/device/kobo/ntx_io.lua 208 0
|
|
|
|
fi
|