diff --git a/CMakeLists.txt b/CMakeLists.txt index 71663a1..ee94831 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(nginx_js C) set(CMAKE_C_STANDARD 11) -add_library(nginx_js SHARED library.c) +add_library(nginx_js SHARED ngx_http_js_challenge.c) target_include_directories( nginx_js diff --git a/README.md b/README.md index ff84b55..8d4add0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,26 @@ +## ngx_http_js_challenge_module + +![GitHub](https://img.shields.io/github/license/simon987/ngx_http_js_challenge_module.svg) +[![CodeFactor](https://www.codefactor.io/repository/github/simon987/ngx_http_js_challenge_module/badge)](https://www.codefactor.io/repository/github/simon987/ngx_http_js_challenge_module) +[![Development snapshots](https://ci.simon987.net/app/rest/builds/buildType(JsChallenge_Build)/statusIcon)](https://files.simon987.net/artifacts/JsChallenge/Build/) + +Simple javascript proof-of-work based access for Nginx with virtually no overhead. + +Easy installation: just add `load_module /path/to/ngx_http_js_challenge_module.so;` to your +`nginx.conf` file and follow the [configuration instructions](#configuration). + + +![throughput.png](throughput.png) + + +### Configuration + +//todo + + +### Build from source + //todo ```bash diff --git a/build.sh b/build.sh index 90283d2..7e7fc64 100755 --- a/build.sh +++ b/build.sh @@ -14,7 +14,7 @@ make modules #cp objs/ "${WD}" ) -#rm /test/*.so -mv /home/simon/Downloads/nginx-1.16.1/objs/ngx_http_hello_world_module.so /test/module.so +rm /test/*.so +mv /home/simon/Downloads/nginx-1.16.1/objs/ngx_http_js_challenge_module.so /test/module.so chown -R www-data /test/ systemctl restart nginx diff --git a/config b/config index 37f5e68..f20118b 100644 --- a/config +++ b/config @@ -1,11 +1,11 @@ -ngx_addon_name=ngx_http_hello_world_module +ngx_addon_name=ngx_http_js_challenge_module if test -n "$ngx_module_link"; then ngx_module_type=HTTP - ngx_module_name=ngx_http_hello_world_module - ngx_module_srcs="$ngx_addon_dir/library.c" + ngx_module_name=ngx_http_js_challenge_module + ngx_module_srcs="$ngx_addon_dir/ngx_http_js_challenge.c" . auto/module else - HTTP_MODULES="$HTTP_MODULES ngx_http_hello_world_module" - NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/library.c" + HTTP_MODULES="$HTTP_MODULES ngx_http_js_challenge_module" + NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_js_challenge.c" fi \ No newline at end of file diff --git a/library.c b/ngx_http_js_challenge.c similarity index 88% rename from library.c rename to ngx_http_js_challenge.c index b6468f4..7b992c9 100644 --- a/library.c +++ b/ngx_http_js_challenge.c @@ -1,14 +1,14 @@ #include #include "ngx_http.c" -static ngx_int_t ngx_http_hello_world(ngx_conf_t *cf); +static ngx_int_t ngx_http_js_challenge(ngx_conf_t *cf); static char *setup1(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); -static ngx_int_t ngx_http_hello_world_handler(ngx_http_request_t *r); +static ngx_int_t ngx_http_js_challenge_handler(ngx_http_request_t *r); -static ngx_command_t ngx_http_hello_world_commands[] = { +static ngx_command_t ngx_http_js_challenge_commands[] = { {ngx_string("hello_world"), @@ -16,22 +16,19 @@ static ngx_command_t ngx_http_hello_world_commands[] = { // NGX_CONF_FLAG for boolean NGX_HTTP_LOC_CONF | NGX_HTTP_SRV_CONF | NGX_CONF_NOARGS, - setup1, /* configuration setup function */ 0, /* No offset. Only one context is supported. */ 0, /* No offset when storing the module configuration on struct. */ NULL}, - - ngx_null_command /* command termination */ + ngx_null_command }; -/* The hello world string. */ -//static u_char ngx_hello_world[] = HELLO_WORLD; - -/* The module context. */ -static ngx_http_module_t ngx_http_hello_world_module_ctx = { +/** + * Module context + */ +static ngx_http_module_t ngx_http_js_challenge_module_ctx = { NULL, /* preconfiguration */ - ngx_http_hello_world, /* postconfiguration */ + ngx_http_js_challenge, /* postconfiguration */ NULL, /* create main configuration */ NULL, /* init main configuration */ @@ -39,15 +36,16 @@ static ngx_http_module_t ngx_http_hello_world_module_ctx = { NULL, /* create server configuration */ NULL, /* merge server configuration */ + //todo NULL, /* create location configuration */ NULL /* merge location configuration */ }; /* Module definition. */ -ngx_module_t ngx_http_hello_world_module = { +ngx_module_t ngx_http_js_challenge_module = { NGX_MODULE_V1, - &ngx_http_hello_world_module_ctx, /* module context */ - ngx_http_hello_world_commands, /* module directives */ + &ngx_http_js_challenge_module_ctx, /* module context */ + ngx_http_js_challenge_commands, /* module directives */ NGX_HTTP_MODULE, /* module type */ NULL, /* init master */ NULL, /* init module */ @@ -60,7 +58,7 @@ ngx_module_t ngx_http_hello_world_module = { }; __always_inline -void buf2hex(const unsigned char *buf, size_t buflen, char *hex_string) { +static void buf2hex(const unsigned char *buf, size_t buflen, char *hex_string) { static const char hexdig[] = "0123456789ABCDEF"; const unsigned char *p; @@ -90,7 +88,7 @@ static const u_char JS_SOLVER[] = " document.cookie = 'res=' + c + i + ';';" " window.location.reload();" " break;" - " };" + " }" " i++;" " }" "Hello"; @@ -155,6 +153,7 @@ int verify_response(int32_t bucket, ngx_str_t addr, const char *secret, ngx_str_ * ^ offset 24 */ + //todo also check if the response is too large if (response.len <= SHA1_STR_LEN) { return -1; } @@ -199,7 +198,7 @@ int get_cookie(ngx_http_request_t *r, ngx_str_t *name, ngx_str_t *value) { return -1; } -static ngx_int_t ngx_http_hello_world_handler(ngx_http_request_t *r) { +static ngx_int_t ngx_http_js_challenge_handler(ngx_http_request_t *r) { //TODO: If the bucket is less than 5sec away from the next one, accept both current and latest bucket @@ -245,11 +244,11 @@ static ngx_int_t ngx_http_hello_world_handler(ngx_http_request_t *r) { static char *setup1(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) { // ngx_http_core_loc_conf_t *clcf; /* pointer to core location configuration */ // clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module); -// clcf->handler = ngx_http_hello_world_handler; +// clcf->handler = ngx_http_js_challenge_handler; return NGX_CONF_OK; } -static ngx_int_t ngx_http_hello_world(ngx_conf_t *cf) { +static ngx_int_t ngx_http_js_challenge(ngx_conf_t *cf) { ngx_http_handler_pt *h; ngx_http_core_main_conf_t *cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module); @@ -260,7 +259,7 @@ static ngx_int_t ngx_http_hello_world(ngx_conf_t *cf) { return NGX_ERROR; } - *h = ngx_http_hello_world_handler; + *h = ngx_http_js_challenge_handler; return NGX_OK; } diff --git a/throughput.png b/throughput.png new file mode 100644 index 0000000..34d04f5 Binary files /dev/null and b/throughput.png differ