From: Jo-Philipp Wich Date: Sat, 13 Nov 2010 12:16:51 +0000 (+0000) Subject: libs/core: switch to C pcdata() implementation, its up to 7 times faster while also... X-Git-Tag: 0.10.0~496 X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=5a03beffcb753780f3442ce3899713d08aeb0562;p=project%2Fluci.git libs/core: switch to C pcdata() implementation, its up to 7 times faster while also ensuring safe UTF-8 --- diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index 79efa5545..7856d1162 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -31,6 +31,7 @@ local debug = require "debug" local ldebug = require "luci.debug" local string = require "string" local coroutine = require "coroutine" +local tparser = require "luci.template.parser" local getmetatable, setmetatable = getmetatable, setmetatable local rawget, rawset, unpack = rawget, rawset, unpack @@ -193,25 +194,8 @@ end --- Create valid XML PCDATA from given string. -- @param value String value containing the data to escape -- @return String value containing the escaped data -local function _pcdata_repl(c) - local i = string.byte(c) - - if ( i >= 0x00 and i <= 0x08 ) or ( i >= 0x0B and i <= 0x0C ) or - ( i >= 0x0E and i <= 0x1F ) or ( i == 0x7F ) - then - return "" - - elseif ( i == 0x26 ) or ( i == 0x27 ) or ( i == 0x22 ) or - ( i == 0x3C ) or ( i == 0x3E ) - then - return string.format("&#%i;", i) - end - - return c -end - function pcdata(value) - return value and tostring(value):gsub("[&\"'<>%c]", _pcdata_repl) + return value and tparser.sanitize_pcdata(tostring(value)) end --- Strip HTML tags from given string. @@ -293,6 +277,8 @@ function imatch(v) v = "" elseif type(v) == "table" then v = table.concat(v, " ") + elseif type(v) ~= "string" then + v = tostring(v) end return v:gmatch("%S+")