From: Manuel Munz Date: Sat, 12 Feb 2011 19:39:54 +0000 (+0000) Subject: web: Relax hostname validation for length X-Git-Tag: 0.11.0~2263 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=489279bb9a4d9984315bc0e0f97a56fea800bbcd;hp=4b0d5f9205de41d772e5f393123ceafed1c92c6c;p=project%2Fluci.git web: Relax hostname validation for length --- diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js index d12d050a8a..2bcfb8c3df 100644 --- a/libs/web/htdocs/luci-static/resources/cbi.js +++ b/libs/web/htdocs/luci-static/resources/cbi.js @@ -141,7 +141,7 @@ var cbi_validators = { }, 'hostname': function(v) - { if ( v.length <= 24 ) + { if ( v.length <= 253 ) return (v.match(/^[a-zA-Z0-9][a-zA-Z0-9\-.]*[a-zA-Z0-9]$/) != null); }, diff --git a/libs/web/luasrc/cbi/datatypes.lua b/libs/web/luasrc/cbi/datatypes.lua index d1ac8f405a..58b54de6e6 100644 --- a/libs/web/luasrc/cbi/datatypes.lua +++ b/libs/web/luasrc/cbi/datatypes.lua @@ -127,7 +127,7 @@ function macaddr(val) end function hostname(val) - if val and (#val < 25) and val.match(val, "^[a-zA-Z0-9][a-zA-Z0-9%-%.]*[a-zA-Z0-9]$") then + if val and (#val < 254) and val.match(val, "^[a-zA-Z0-9][a-zA-Z0-9%-%.]*[a-zA-Z0-9]$") then return true end return false