2008-07-24 18:48:31 +00:00
|
|
|
/*
|
|
|
|
* Unit tests for JS normalizer.
|
|
|
|
*
|
2020-01-03 15:44:07 -05:00
|
|
|
* Copyright (C) 2013-2020 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
2019-01-25 10:15:50 -05:00
|
|
|
* Copyright (C) 2008-2013 Sourcefire, Inc.
|
2008-07-24 18:48:31 +00:00
|
|
|
*
|
|
|
|
* Authors: Török Edvin
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*/
|
2008-07-08 19:02:15 +00:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
#include "clamav-config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <check.h>
|
2008-07-15 14:31:33 +00:00
|
|
|
#include <fcntl.h>
|
2008-09-18 14:54:36 +00:00
|
|
|
#include <ctype.h>
|
2009-10-26 19:35:27 +02:00
|
|
|
#include <errno.h>
|
2014-02-08 00:31:12 -05:00
|
|
|
|
Add CMake build tooling
This patch adds experimental-quality CMake build tooling.
The libmspack build required a modification to use "" instead of <> for
header #includes. This will hopefully be included in the libmspack
upstream project when adding CMake build tooling to libmspack.
Removed use of libltdl when using CMake.
Flex & Bison are now required to build.
If -DMAINTAINER_MODE, then GPERF is also required, though it currently
doesn't actually do anything. TODO!
I found that the autotools build system was generating the lexer output
but not actually compiling it, instead using previously generated (and
manually renamed) lexer c source. As a consequence, changes to the .l
and .y files weren't making it into the build. To resolve this, I
removed generated flex/bison files and fixed the tooling to use the
freshly generated files. Flex and bison are now required build tools.
On Windows, this adds a dependency on the winflexbison package,
which can be obtained using Chocolatey or may be manually installed.
CMake tooling only has partial support for building with external LLVM
library, and no support for the internal LLVM (to be removed in the
future). I.e. The CMake build currently only supports the bytecode
interpreter.
Many files used include paths relative to the top source directory or
relative to the current project, rather than relative to each build
target. Modern CMake support requires including internal dependency
headers the same way you would external dependency headers (albeit
with "" instead of <>). This meant correcting all header includes to
be relative to the build targets and not relative to the workspace.
For example, ...
```c
include "../libclamav/clamav.h"
include "clamd/clamd_others.h"
```
... becomes:
```c
// libclamav
include "clamav.h"
// clamd
include "clamd_others.h"
```
Fixes header name conflicts by renaming a few of the files.
Converted the "shared" code into a static library, which depends on
libclamav. The ironically named "shared" static library provides
features common to the ClamAV apps which are not required in
libclamav itself and are not intended for use by downstream projects.
This change was required for correct modern CMake practices but was
also required to use the automake "subdir-objects" option.
This eliminates warnings when running autoreconf which, in the next
version of autoconf & automake are likely to break the build.
libclamav used to build in multiple stages where an earlier stage is
a static library containing utils required by the "shared" code.
Linking clamdscan and clamdtop with this libclamav utils static lib
allowed these two apps to function without libclamav. While this is
nice in theory, the practical gains are minimal and it complicates
the build system. As such, the autotools and CMake tooling was
simplified for improved maintainability and this feature was thrown
out. clamdtop and clamdscan now require libclamav to function.
Removed the nopthreads version of the autotools
libclamav_internal_utils static library and added pthread linking to
a couple apps that may have issues building on some platforms without
it, with the intention of removing needless complexity from the
source. Kept the regular version of libclamav_internal_utils.la
though it is no longer used anywhere but in libclamav.
Added an experimental doxygen build option which attempts to build
clamav.h and libfreshclam doxygen html docs.
The CMake build tooling also may build the example program(s), which
isn't a feature in the Autotools build system.
Changed C standard to C90+ due to inline linking issues with socket.h
when linking libfreshclam.so on Linux.
Generate common.rc for win32.
Fix tabs/spaces in shared Makefile.am, and remove vestigial ifndef
from misc.c.
Add CMake files to the automake dist, so users can try the new
CMake tooling w/out having to build from a git clone.
clamonacc changes:
- Renamed FANOTIFY macro to HAVE_SYS_FANOTIFY_H to better match other
similar macros.
- Added a new clamav-clamonacc.service systemd unit file, based on
the work of ChadDevOps & Aaron Brighton.
- Added missing clamonacc man page.
Updates to clamdscan man page, add missing options.
Remove vestigial CL_NOLIBCLAMAV definitions (all apps now use
libclamav).
Rename Windows mspack.dll to libmspack.dll so all ClamAV-built
libraries have the lib-prefix with Visual Studio as with CMake.
2020-08-13 00:25:34 -07:00
|
|
|
// libclamav
|
|
|
|
#include "clamav.h"
|
|
|
|
#include "others.h"
|
|
|
|
#include "dconf.h"
|
|
|
|
#include "htmlnorm.h"
|
|
|
|
#include "jsparse/js-norm.h"
|
|
|
|
#include "jsparse/lexglobal.h"
|
|
|
|
#include "jsparse/textbuf.h"
|
|
|
|
#include "jsparse/generated/keywords.h"
|
|
|
|
#include "jsparse/generated/operators.h"
|
|
|
|
|
2008-07-10 13:29:32 +00:00
|
|
|
#include "checks.h"
|
2008-07-08 19:02:15 +00:00
|
|
|
|
|
|
|
struct test {
|
2018-12-03 12:40:13 -05:00
|
|
|
const char *str;
|
|
|
|
int is;
|
2008-07-08 19:02:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct test kw_test[] = {
|
2018-12-03 12:40:13 -05:00
|
|
|
{"new", 1},
|
|
|
|
{"eval", 0},
|
|
|
|
{"function", 1},
|
|
|
|
{"eval1", 0},
|
|
|
|
{"ne", 0}};
|
2008-07-08 19:02:15 +00:00
|
|
|
|
|
|
|
static struct test op_test[] = {
|
2018-12-03 12:40:13 -05:00
|
|
|
{"-", 1},
|
|
|
|
{"---", 0}};
|
2008-07-08 19:02:15 +00:00
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_keywords)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
|
|
|
const struct keyword *kw = in_word_set(kw_test[_i].str, strlen(kw_test[_i].str));
|
2018-12-03 12:40:13 -05:00
|
|
|
if (kw_test[_i].is) {
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(kw && !strcmp(kw->name, kw_test[_i].str), "keyword mismatch");
|
2008-07-08 19:02:15 +00:00
|
|
|
} else {
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!kw, "non-keyword detected as keyword");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_operators)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
const struct operator*op = in_op_set(op_test[_i].str, strlen(op_test[_i].str));
|
|
|
|
if (op_test[_i].is)
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(op && !strcmp(op->name, op_test[_i].str), "operator mismatch");
|
2008-07-08 19:02:15 +00:00
|
|
|
else
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!op, "non-operator detected as operator");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_token_string)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char str[] = "test";
|
|
|
|
yystype tok;
|
|
|
|
memset(&tok, 0, sizeof(tok));
|
|
|
|
|
|
|
|
TOKEN_SET(&tok, string, str);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(TOKEN_GET(&tok, string) == str, "token string get/set");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, cstring) == str, "token string->cstring");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, scope) == NULL, "token string->scope");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, ival) == -1, "token string->ival");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_token_cstring)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
const char *str = "test";
|
|
|
|
yystype tok;
|
|
|
|
memset(&tok, 0, sizeof(tok));
|
|
|
|
|
|
|
|
TOKEN_SET(&tok, cstring, str);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(TOKEN_GET(&tok, string) == NULL, "token cstring->string");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, cstring) == str, "token string->cstring");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, scope) == NULL, "token string->scope");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, ival) == -1, "token string->ival");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_token_scope)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
struct scope *sc = (struct scope *)0xdeadbeef;
|
|
|
|
yystype tok;
|
|
|
|
memset(&tok, 0, sizeof(tok));
|
|
|
|
|
|
|
|
TOKEN_SET(&tok, scope, sc);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(TOKEN_GET(&tok, string) == NULL, "token scope->string");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, cstring) == NULL, "token scope->cstring");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, scope) == sc, "token scope->scope");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, ival) == -1, "token scope->ival");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_token_ival)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
int val = 0x1234567;
|
|
|
|
yystype tok;
|
|
|
|
memset(&tok, 0, sizeof(tok));
|
|
|
|
|
|
|
|
TOKEN_SET(&tok, ival, val);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(TOKEN_GET(&tok, string) == NULL, "token ival->string");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, cstring) == NULL, "token ival->cstring");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, scope) == NULL, "token ival->scope");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, dval) - -1 < 1e-9, "token ival->dval");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, ival) == val, "token ival->ival");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_token_dval)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
double val = 0.12345;
|
|
|
|
yystype tok;
|
|
|
|
memset(&tok, 0, sizeof(tok));
|
|
|
|
|
|
|
|
TOKEN_SET(&tok, dval, val);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(TOKEN_GET(&tok, string) == NULL, "token dval->string");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, cstring) == NULL, "token dval->cstring");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, scope) == NULL, "token dval->scope");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, dval) - val < 1e-9, "token dval->dval");
|
|
|
|
ck_assert_msg(TOKEN_GET(&tok, ival) == -1, "token dval->ival");
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_init_destroy)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
struct parser_state *state = cli_js_init();
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!state, "cli_js_init()");
|
2018-12-03 12:40:13 -05:00
|
|
|
cli_js_destroy(state);
|
|
|
|
cli_js_destroy(NULL);
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(test_init_parse_destroy)
|
2008-07-08 19:02:15 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
const char buf[] = "function (p) { return \"anonymous\";}";
|
|
|
|
struct parser_state *state = cli_js_init();
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!state, "cli_js_init()");
|
2018-12-03 12:40:13 -05:00
|
|
|
cli_js_process_buffer(state, buf, strlen(buf));
|
|
|
|
cli_js_process_buffer(state, buf, strlen(buf));
|
|
|
|
cli_js_parse_done(state);
|
|
|
|
cli_js_destroy(state);
|
2008-07-08 19:02:15 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(js_begin_end)
|
2008-07-14 19:31:56 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char buf[16384] = "</script>";
|
|
|
|
size_t p;
|
|
|
|
|
|
|
|
for (p = strlen(buf); p < 8191; p++) {
|
|
|
|
buf[p++] = 'a';
|
|
|
|
buf[p] = ' ';
|
|
|
|
}
|
|
|
|
strncpy(buf + 8192, " stuff stuff <script language='javascript'> function () {}", 8192);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(html_normalise_mem((unsigned char *)buf, sizeof(buf), NULL, NULL, dconf) == 1, "normalise");
|
2008-07-14 19:31:56 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(multiple_scripts)
|
2008-07-14 19:31:56 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char buf[] = "</script> stuff"
|
|
|
|
"<script language='Javascript'> function foo() {} </script>"
|
|
|
|
"<script language='Javascript'> function bar() {} </script>";
|
2008-07-14 19:31:56 +00:00
|
|
|
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!dconf, "failed to init dconf");
|
|
|
|
ck_assert_msg(html_normalise_mem((unsigned char *)buf, sizeof(buf), NULL, NULL, dconf) == 1, "normalise");
|
2018-12-03 12:40:13 -05:00
|
|
|
/* TODO: test that both had been normalized */
|
2008-07-15 14:31:33 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
|
|
|
static struct parser_state *state;
|
|
|
|
static char *tmpdir = NULL;
|
|
|
|
|
|
|
|
static void jstest_setup(void)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
cl_init(CL_INIT_DEFAULT);
|
|
|
|
state = cli_js_init();
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!state, "js init");
|
2018-12-03 12:40:13 -05:00
|
|
|
tmpdir = cli_gentemp(NULL);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!tmpdir, "js tmp dir");
|
|
|
|
ck_assert_msg(mkdir(tmpdir, 0700) == 0, "tempdir mkdir of %s failed: %s", tmpdir, strerror(errno));
|
2008-07-15 14:31:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void jstest_teardown(void)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
if (tmpdir) {
|
|
|
|
cli_rmdirs(tmpdir);
|
|
|
|
free(tmpdir);
|
|
|
|
}
|
|
|
|
cli_js_destroy(state);
|
|
|
|
state = NULL;
|
2008-07-15 14:31:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void tokenizer_test(const char *in, const char *expected, int split)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char filename[1024];
|
|
|
|
int fd;
|
|
|
|
ssize_t len = strlen(expected);
|
|
|
|
size_t inlen = strlen(in);
|
|
|
|
|
|
|
|
if (split) {
|
|
|
|
cli_js_process_buffer(state, in, inlen / 2);
|
|
|
|
cli_js_process_buffer(state, in + inlen / 2, inlen - inlen / 2);
|
|
|
|
} else {
|
|
|
|
cli_js_process_buffer(state, in, inlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
cli_js_parse_done(state);
|
|
|
|
cli_js_output(state, tmpdir);
|
|
|
|
snprintf(filename, 1023, "%s/javascript", tmpdir);
|
|
|
|
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
jstest_teardown();
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg("failed to open output file: %s", filename);
|
2018-12-03 12:40:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
diff_file_mem(fd, expected, len);
|
2008-07-15 14:31:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char jstest_buf0[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"function foo(a, b) {\n"
|
|
|
|
"var x = 1.9e2*2*a/ 4.;\n"
|
|
|
|
"var y = 'test\\'tst';//var\n"
|
|
|
|
"x=b[5],/* multiline\nvar z=6;\nsome*some/other**/"
|
|
|
|
"z=x/y;/* multiline oneline */var t=z/a;\n"
|
|
|
|
"z=[test;testi];"
|
|
|
|
"document.writeln('something\n');}";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected0[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function n000(n001,n002){"
|
|
|
|
"var n003=190*2*n001/4;"
|
|
|
|
"var n004=\"test\'tst\";"
|
|
|
|
"n003=n002[5],"
|
|
|
|
"z=n003/n004;var n005=z/n001;"
|
|
|
|
"z=[test;testi];"
|
|
|
|
"document.writeln(\"something \");}</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf1[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"function () { var id\\u1234tx;}";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected1[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function(){var n000;}</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf2[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"function () { var tst=\"a\"+'bc'+ 'd'; }";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected2[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function(){var n000=\"abcd\";}</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf3[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"dF('bmfsu%2639%2638x11u%2638%263%3A%264C1');";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected3[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>alert(\"w00t\");</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
2008-07-16 09:53:18 +00:00
|
|
|
#define B64 "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
/* TODO: document.write should be normalized too */
|
2008-09-16 18:13:07 +00:00
|
|
|
static char jstest_buf4[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"qbphzrag.jevgr(harfpncr('%3P%73%63%72%69%70%74%20%6P%61%6R%67%75%61%67%65%3Q%22%6N%61%76%61%73%63%72%69%70%74%22%3R%66%75%6R%63%74%69%6S%6R%20%64%46%28%73%29%7O%76%61%72%20%73%31%3Q%75%6R%65%73%63%61%70%65%28%73%2R%73%75%62%73%74%72%28%30%2P%73%2R%6P%65%6R%67%74%68%2Q%31%29%29%3O%20%76%61%72%20%74%3Q%27%27%3O%66%6S%72%28%69%3Q%30%3O%69%3P%73%31%2R%6P%65%6R%67%74%68%3O%69%2O%2O%29%74%2O%3Q%53%74%72%69%6R%67%2R%66%72%6S%6Q%43%68%61%72%43%6S%64%65%28%73%31%2R%63%68%61%72%43%6S%64%65%41%74%28%69%29%2Q%73%2R%73%75%62%73%74%72%28%73%2R%6P%65%6R%67%74%68%2Q%31%2P%31%29%29%3O%64%6S%63%75%6Q%65%6R%74%2R%77%72%69%74%65%28%75%6R%65%73%63%61%70%65%28%74%29%29%3O%7Q%3P%2S%73%63%72%69%70%74%3R'));riny(qS('tV%285%3O%285%3Nsdwjl%28585%3N7%28586Q%28585%3N7%3P%7P55l%28585%3N7%3P%28585%3N7%28586R%28585%3N8T5%285%3N%285%3P%286R3'));";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
2008-09-16 18:13:07 +00:00
|
|
|
static char jstest_expected4[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<fpevcg>qbphzrag.jevgr(\"<fpevcg ynathntr=\"wninfpevcg\">shapgvba qs(f){ine f1=harfpncr(f.fhofge(0,f.yratgu-1)); ine g='';sbe(v=0;v<f1.yratgu;v++)g+=fgevat.sebzpunepbqr(f1.punepbqrng(v)-f.fhofge(f.yratgu-1,1));qbphzrag.jevgr(harfpncr(g));}</fpevcg>\");riny();nyreg(\"j00g\");</fpevcg>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
2008-09-16 18:13:07 +00:00
|
|
|
static char jstest_buf5[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"shapgvba (c,n,p,x,r,e){}('0(\\'1\\');',2,2,'nyreg|j00g'.fcyvg('|'),0,{});";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected5[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function(n000,n001,n002,n003,n004,n005){}(alert(\"w00t\"););</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf6[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"function $(p,a,c,k,e,d){} something(); $('0(\\'1\\');',2,2,'alert|w00t'.split('|'),0,{});";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected6[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function n000(n001,n002,n003,n004,n005,n006){}something();$(alert(\"w00t\"););</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf7[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"var z=\"tst" B64 "tst\";";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected7[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>var n000=\"tst" B64 "tst\";</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_buf8[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"var z=\'tst" B64 "tst\';";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
|
|
|
static const char jstest_expected8[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>var n000=\"tst" B64 "tst\";</script>";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
2008-09-16 18:13:07 +00:00
|
|
|
static char jstest_buf9[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"riny(harfpncr('%61%6p%65%72%74%28%27%74%65%73%74%27%29%3o'));";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
|
|
|
static const char jstest_expected9[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>alert(\"test\");</script>";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
|
|
|
static const char jstest_buf10[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"function $ $() dF(x); function (p,a,c,k,e,r){function $(){}";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
|
|
|
static const char jstest_expected10[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>function n000 n000()n001(x);function(n002,n003,n004,n005,n006,n007){function n008(){}</script>";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
|
|
|
static const char jstest_buf11[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"var x=123456789 ;";
|
2008-07-16 09:53:18 +00:00
|
|
|
|
|
|
|
static const char jstest_expected11[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>var n000=123456789;</script>";
|
2008-07-15 14:31:33 +00:00
|
|
|
|
2008-08-04 12:44:16 +00:00
|
|
|
static const char jstest_buf12[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"var x='test\\u0000test';";
|
2008-08-04 12:44:16 +00:00
|
|
|
|
|
|
|
static const char jstest_expected12[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>var n000=\"test\x1test\";</script>";
|
2008-08-04 12:44:16 +00:00
|
|
|
|
2008-08-25 12:39:09 +00:00
|
|
|
static const char jstest_buf13[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"var x\\s12345";
|
2008-08-25 12:39:09 +00:00
|
|
|
|
|
|
|
static const char jstest_expected13[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>var n000</script>";
|
2008-08-25 12:39:09 +00:00
|
|
|
|
2008-10-11 10:27:27 +00:00
|
|
|
static const char jstest_buf14[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"document.write(unescape('test%20test";
|
2008-10-11 10:27:27 +00:00
|
|
|
|
|
|
|
static const char jstest_expected14[] =
|
2018-12-03 12:40:13 -05:00
|
|
|
"<script>document.write(\"test test\")</script>";
|
2008-08-25 12:39:09 +00:00
|
|
|
|
2008-07-15 14:31:33 +00:00
|
|
|
static struct {
|
2018-12-03 12:40:13 -05:00
|
|
|
const char *in;
|
|
|
|
const char *expected;
|
2008-07-15 14:31:33 +00:00
|
|
|
} js_tests[] = {
|
2018-12-03 12:40:13 -05:00
|
|
|
{jstest_buf0, jstest_expected0},
|
|
|
|
{jstest_buf1, jstest_expected1},
|
|
|
|
{jstest_buf2, jstest_expected2},
|
|
|
|
{jstest_buf3, jstest_expected3},
|
|
|
|
{jstest_buf4, jstest_expected4},
|
|
|
|
{jstest_buf5, jstest_expected5},
|
|
|
|
{jstest_buf6, jstest_expected6},
|
|
|
|
{jstest_buf7, jstest_expected7},
|
|
|
|
{jstest_buf8, jstest_expected8},
|
|
|
|
{jstest_buf9, jstest_expected9},
|
|
|
|
{jstest_buf10, jstest_expected10},
|
|
|
|
{jstest_buf11, jstest_expected11},
|
|
|
|
{jstest_buf12, jstest_expected12},
|
|
|
|
{jstest_buf13, jstest_expected13},
|
|
|
|
{jstest_buf14, jstest_expected14}};
|
2008-07-15 14:31:33 +00:00
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(tokenizer_basic)
|
2008-07-15 14:31:33 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
tokenizer_test(js_tests[_i].in, js_tests[_i].expected, 0);
|
2008-07-15 14:31:33 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(tokenizer_split)
|
2008-07-15 14:31:33 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
tokenizer_test(js_tests[_i].in, js_tests[_i].expected, 1);
|
2008-07-14 19:31:56 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(js_buffer)
|
2008-07-16 09:53:18 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
const size_t len = 512 * 1024;
|
|
|
|
const char s[] = "x=\"";
|
|
|
|
const char e[] = "\"";
|
|
|
|
const char s_exp[] = "<script>";
|
|
|
|
const char e_exp[] = "</script>";
|
|
|
|
char *tst = malloc(len);
|
|
|
|
char *exp = malloc(len + sizeof(s_exp) + sizeof(e_exp) - 2);
|
|
|
|
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!tst, "malloc");
|
|
|
|
ck_assert_msg(!!exp, "malloc");
|
2018-12-03 12:40:13 -05:00
|
|
|
|
|
|
|
memset(tst, 'a', len);
|
|
|
|
strncpy(tst, s, strlen(s));
|
|
|
|
strncpy(tst + len - sizeof(e), e, sizeof(e));
|
|
|
|
|
|
|
|
strncpy(exp, s_exp, len);
|
|
|
|
strncpy(exp + sizeof(s_exp) - 1, tst, len - 1);
|
|
|
|
strncpy(exp + sizeof(s_exp) + len - 2, e_exp, sizeof(e_exp));
|
|
|
|
|
|
|
|
tokenizer_test(tst, exp, 1);
|
|
|
|
free(exp);
|
|
|
|
free(tst);
|
2008-07-16 09:53:18 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
START_TEST(screnc_infloop)
|
2008-08-01 17:37:06 +00:00
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char buf[24700] = "<%@ language='jscript.encode'>";
|
|
|
|
size_t p;
|
|
|
|
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(!!dconf, "failed to init dconf");
|
2018-12-03 12:40:13 -05:00
|
|
|
for (p = strlen(buf); p < 16384; p++) {
|
|
|
|
buf[p] = ' ';
|
|
|
|
}
|
|
|
|
for (; p < 24625; p++) {
|
|
|
|
buf[p] = 'a';
|
|
|
|
}
|
|
|
|
strncpy(buf + 24626, "#@~^ ", 10);
|
2020-01-15 08:14:23 -08:00
|
|
|
ck_assert_msg(html_normalise_mem((unsigned char *)buf, sizeof(buf), NULL, NULL, dconf) == 1, "normalise");
|
2008-08-01 17:37:06 +00:00
|
|
|
}
|
|
|
|
END_TEST
|
|
|
|
|
2008-09-16 18:13:07 +00:00
|
|
|
static void prepare_s(char *s)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
char xlat[] = "NOPQRSTUVWXYZABCDEFGHIJKLM[\\]^_`nopqrstuvwxyzabcdefghijklm";
|
|
|
|
while (*s) {
|
|
|
|
if (isalpha(*s)) {
|
|
|
|
*s = xlat[*s - 'A'];
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
}
|
2008-09-16 18:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void prepare(void)
|
|
|
|
{
|
2018-12-03 12:40:13 -05:00
|
|
|
prepare_s(jstest_buf4);
|
|
|
|
prepare_s(jstest_expected4);
|
|
|
|
prepare_s(jstest_buf5);
|
|
|
|
prepare_s(jstest_buf9);
|
2008-09-16 18:13:07 +00:00
|
|
|
}
|
|
|
|
|
2008-07-08 19:02:15 +00:00
|
|
|
Suite *test_jsnorm_suite(void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create("jsnorm");
|
2008-08-01 17:37:06 +00:00
|
|
|
TCase *tc_jsnorm_gperf, *tc_jsnorm_token, *tc_jsnorm_api,
|
2018-12-03 12:40:13 -05:00
|
|
|
*tc_jsnorm_tokenizer, *tc_jsnorm_bugs;
|
2008-08-01 17:37:06 +00:00
|
|
|
|
2008-09-16 18:13:07 +00:00
|
|
|
prepare();
|
2008-07-08 19:02:15 +00:00
|
|
|
tc_jsnorm_gperf = tcase_create("jsnorm gperf");
|
2018-12-03 12:40:13 -05:00
|
|
|
suite_add_tcase(s, tc_jsnorm_gperf);
|
2020-01-15 08:14:23 -08:00
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
tcase_add_loop_test(tc_jsnorm_gperf, test_keywords, 0, sizeof(kw_test) / sizeof(kw_test[0]));
|
|
|
|
tcase_add_loop_test(tc_jsnorm_gperf, test_operators, 0, sizeof(op_test) / sizeof(op_test[0]));
|
2020-01-15 08:14:23 -08:00
|
|
|
|
2008-07-08 19:02:15 +00:00
|
|
|
tc_jsnorm_token = tcase_create("jsnorm token functions");
|
2018-12-03 12:40:13 -05:00
|
|
|
suite_add_tcase(s, tc_jsnorm_token);
|
2008-07-08 19:02:15 +00:00
|
|
|
tcase_add_test(tc_jsnorm_token, test_token_string);
|
|
|
|
tcase_add_test(tc_jsnorm_token, test_token_cstring);
|
|
|
|
tcase_add_test(tc_jsnorm_token, test_token_scope);
|
|
|
|
tcase_add_test(tc_jsnorm_token, test_token_ival);
|
|
|
|
tcase_add_test(tc_jsnorm_token, test_token_dval);
|
|
|
|
|
|
|
|
tc_jsnorm_api = tcase_create("jsnorm api functions");
|
2018-12-03 12:40:13 -05:00
|
|
|
suite_add_tcase(s, tc_jsnorm_api);
|
2008-07-08 19:02:15 +00:00
|
|
|
tcase_add_test(tc_jsnorm_api, test_init_destroy);
|
|
|
|
tcase_add_test(tc_jsnorm_api, test_init_parse_destroy);
|
|
|
|
|
2008-07-14 19:31:56 +00:00
|
|
|
tc_jsnorm_tokenizer = tcase_create("jsnorm tokenizer");
|
2018-12-03 12:40:13 -05:00
|
|
|
suite_add_tcase(s, tc_jsnorm_tokenizer);
|
|
|
|
tcase_add_checked_fixture(tc_jsnorm_tokenizer, jstest_setup, jstest_teardown);
|
2020-01-15 08:14:23 -08:00
|
|
|
|
2018-12-03 12:40:13 -05:00
|
|
|
tcase_add_loop_test(tc_jsnorm_tokenizer, tokenizer_basic, 0, sizeof(js_tests) / sizeof(js_tests[0]));
|
|
|
|
tcase_add_loop_test(tc_jsnorm_tokenizer, tokenizer_split, 0, sizeof(js_tests) / sizeof(js_tests[0]));
|
2020-01-15 08:14:23 -08:00
|
|
|
|
2008-07-16 09:53:18 +00:00
|
|
|
tcase_add_test(tc_jsnorm_tokenizer, js_buffer);
|
2008-07-14 19:31:56 +00:00
|
|
|
|
2008-11-03 19:26:57 +00:00
|
|
|
tc_jsnorm_bugs = tcase_create("bugs");
|
2018-12-03 12:40:13 -05:00
|
|
|
suite_add_tcase(s, tc_jsnorm_bugs);
|
2008-11-03 19:26:57 +00:00
|
|
|
tcase_add_checked_fixture(tc_jsnorm_bugs, dconf_setup, dconf_teardown);
|
2008-07-14 19:31:56 +00:00
|
|
|
tcase_add_test(tc_jsnorm_bugs, js_begin_end);
|
|
|
|
tcase_add_test(tc_jsnorm_bugs, multiple_scripts);
|
2008-11-03 19:26:57 +00:00
|
|
|
tcase_add_test(tc_jsnorm_bugs, screnc_infloop);
|
2008-08-01 17:37:06 +00:00
|
|
|
|
2008-07-08 19:02:15 +00:00
|
|
|
return s;
|
|
|
|
}
|