summaryrefslogtreecommitdiffstats
path: root/src/lua
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2019-03-27 11:00:10 +0000
committerGitHub <noreply@github.com>2019-03-27 11:00:10 +0000
commitdf2fba1c90b25c486d4c33f6c99b2cc2d768063c (patch)
tree65af86d723f4f7753ff44af044cc39f564b058c7 /src/lua
parentb6288e22c5a6bb4d567d5882cdb0f2c8714974ca (diff)
parent89c5fe4c05012315e9229e033ae3ded8c31b1cd7 (diff)
downloadrspamd-df2fba1c90b25c486d4c33f6c99b2cc2d768063c.tar.gz
rspamd-df2fba1c90b25c486d4c33f6c99b2cc2d768063c.zip
Merge pull request #2813 from miecio45/add_lua_mixed_script
[Minor] Add util.if_utf_mixed_script to lua
Diffstat (limited to 'src/lua')
-rw-r--r--src/lua/lua_util.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c
index 1a37eaef6..af4673af8 100644
--- a/src/lua/lua_util.c
+++ b/src/lua/lua_util.c
@@ -29,6 +29,7 @@
#include <zlib.h>
#include "unicode/uspoof.h"
+#include "unicode/uscript.h"
/***
* @module rspamd_util
@@ -394,6 +395,14 @@ LUA_FUNCTION_DEF (util, normalize_prob);
LUA_FUNCTION_DEF (util, is_utf_spoofed);
/**
+* @function util.is_utf_mixed_script(str)
+* Returns true if a string contains mixed unicode scripts
+* @param {string} String to check
+* @return {boolean} true if a string contains chars with mixed unicode script
+*/
+LUA_FUNCTION_DEF (util, is_utf_mixed_script);
+
+/**
* @function util.is_utf_outside_range(str, range_start, range_end)
* Returns true if a string contains chars outside range
* @param {string} String to check
@@ -633,6 +642,7 @@ static const struct luaL_reg utillib_f[] = {
LUA_INTERFACE_DEF (util, caseless_hash),
LUA_INTERFACE_DEF (util, caseless_hash_fast),
LUA_INTERFACE_DEF (util, is_utf_spoofed),
+ LUA_INTERFACE_DEF (util, is_utf_mixed_script),
LUA_INTERFACE_DEF (util, is_utf_outside_range),
LUA_INTERFACE_DEF (util, get_string_stats),
LUA_INTERFACE_DEF (util, is_valid_utf8),
@@ -2499,6 +2509,50 @@ lua_util_is_utf_spoofed (lua_State *L)
}
static gint
+lua_util_is_utf_mixed_script(lua_State *L)
+{
+ LUA_TRACE_POINT;
+ gsize len_of_string;
+ const gchar *string_to_check = lua_tolstring (L, 1, &len_of_string);
+ UScriptCode last_script_code = USCRIPT_INVALID_CODE;
+ UErrorCode uc_err = U_ZERO_ERROR;
+
+ if (string_to_check) {
+ uint index = 0;
+ UChar32 char_to_check = 0;
+ while(index < len_of_string) {
+ U8_NEXT(string_to_check, index, len_of_string, char_to_check);
+ if (char_to_check < 0 ) {
+ return luaL_error (L, "passed string is not valid utf");
+ }
+ UScriptCode current_script_code = uscript_getScript(char_to_check, &uc_err);
+ if (uc_err != U_ZERO_ERROR){
+ msg_err ("cannot get unicode script for character, error: %s", u_errorName (uc_err));
+ lua_pushboolean (L, false);
+ return 1;
+ }
+ if ( current_script_code != USCRIPT_COMMON && current_script_code != USCRIPT_INHERITED ){
+ if (last_script_code == USCRIPT_INVALID_CODE ){
+ last_script_code = current_script_code;
+ } else {
+ if ( last_script_code != current_script_code ){
+ lua_pushboolean (L, true);
+ return 1;
+ }
+ }
+ }
+ }
+ }
+ else {
+ return luaL_error (L, "invalid arguments");
+ }
+
+ lua_pushboolean (L, false);
+
+ return 1;
+}
+
+static gint
lua_util_get_string_stats (lua_State *L)
{
LUA_TRACE_POINT;