luci-0.9: merge r4848, r4849 and r4850

This commit is contained in:
Jo-Philipp Wich 2009-06-16 14:44:01 +00:00
parent 9aea9f8db8
commit 8276e4c6bb
2 changed files with 57 additions and 1 deletions

View file

@ -14,6 +14,8 @@ $Id$
local srv = require "luci.lucid.http.server"
local proto = require "luci.http.protocol"
local util = require "luci.util"
local ip = require "luci.ip"
local ipairs = ipairs
module "luci.lucid.http.handler.catchall"
@ -28,6 +30,19 @@ function Redirect.handle_GET(self, request)
local target = self.target
local protocol = request.env.HTTPS and "https://" or "http://"
local server = request.env.SERVER_ADDR
if request.env.REMOTE_ADDR and not request.env.REMOTE_ADDR:find(":") then
local compare = ip.IPv4(request.env.REMOTE_ADDR)
for _, iface in ipairs(request.server.interfaces) do
if iface.family == "inet" and iface.addr and iface.netmask then
if ip.IPv4(iface.addr, iface.netmask):contains(compare) then
server = iface.addr
break
end
end
end
end
if server:find(":") then
server = "[" .. server .. "]"
end
@ -51,4 +66,4 @@ Redirect.handle_POST = Redirect.handle_GET
function Redirect.handle_HEAD(self, request)
local stat, head = self:handle_GET(request)
return stat, head
end
end

View file

@ -0,0 +1,41 @@
# Fixup various configurations to remove quirks
# from former versions.
_log() {
logger -t "Config Migration" "$1"
}
_uci() {
uci get "$1" 2>/dev/null
}
# Splash redirector had a wrong virtual url match
# which resulted in "No such handler"
[ "$(_uci lucid.splashredir.virtual)" == "/" ] && {
_log "Fix splash redirector configuration"
uci set lucid.splashredir.virtual=''
uci commit lucid
/etc/init.d/lucid restart
}
# Newer OLSR versions have the MinTCVtime hack active,
# ensure proper timings or olsrd won't start
FIX=0
for i in 0 1 2 3 4; do
[ -z "$(_uci olsrd.@Interface[$i].TcInterval)" ] && \
[ -z "$(_uci olsrd.@Interface[$i].TcValidityTime)" ] || {
uci delete olsrd.@Interface[$i].TcInterval
uci delete olsrd.@Interface[$i].TcValidityTime
FIX=1
}
done
[ "$FIX" == 1 ] && {
_log "Fix olsrd configuration for MinTCVTime hack"
uci commit olsrd
/etc/init.d/olsrd restart
}