Update readme & quick cleanup

This commit is contained in:
simon987 2020-03-02 09:00:33 -05:00
parent a41acf4983
commit 52ca6cea21
6 changed files with 50 additions and 29 deletions

View File

@ -4,7 +4,7 @@ project(nginx_js C)
set(CMAKE_C_STANDARD 11) 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( target_include_directories(
nginx_js nginx_js

View File

@ -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 //todo
```bash ```bash

View File

@ -14,7 +14,7 @@ make modules
#cp objs/ "${WD}" #cp objs/ "${WD}"
) )
#rm /test/*.so rm /test/*.so
mv /home/simon/Downloads/nginx-1.16.1/objs/ngx_http_hello_world_module.so /test/module.so mv /home/simon/Downloads/nginx-1.16.1/objs/ngx_http_js_challenge_module.so /test/module.so
chown -R www-data /test/ chown -R www-data /test/
systemctl restart nginx systemctl restart nginx

10
config
View File

@ -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 if test -n "$ngx_module_link"; then
ngx_module_type=HTTP ngx_module_type=HTTP
ngx_module_name=ngx_http_hello_world_module ngx_module_name=ngx_http_js_challenge_module
ngx_module_srcs="$ngx_addon_dir/library.c" ngx_module_srcs="$ngx_addon_dir/ngx_http_js_challenge.c"
. auto/module . auto/module
else else
HTTP_MODULES="$HTTP_MODULES ngx_http_hello_world_module" HTTP_MODULES="$HTTP_MODULES ngx_http_js_challenge_module"
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/library.c" NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_js_challenge.c"
fi fi

View File

@ -1,14 +1,14 @@
#include <stdio.h> #include <stdio.h>
#include "ngx_http.c" #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 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"), {ngx_string("hello_world"),
@ -16,22 +16,19 @@ static ngx_command_t ngx_http_hello_world_commands[] = {
// NGX_CONF_FLAG for boolean // NGX_CONF_FLAG for boolean
NGX_HTTP_LOC_CONF | NGX_HTTP_SRV_CONF | NGX_CONF_NOARGS, NGX_HTTP_LOC_CONF | NGX_HTTP_SRV_CONF | NGX_CONF_NOARGS,
setup1, /* configuration setup function */ setup1, /* configuration setup function */
0, /* No offset. Only one context is supported. */ 0, /* No offset. Only one context is supported. */
0, /* No offset when storing the module configuration on struct. */ 0, /* No offset when storing the module configuration on struct. */
NULL}, NULL},
ngx_null_command
ngx_null_command /* command termination */
}; };
/* The hello world string. */ /**
//static u_char ngx_hello_world[] = HELLO_WORLD; * Module context
*/
/* The module context. */ static ngx_http_module_t ngx_http_js_challenge_module_ctx = {
static ngx_http_module_t ngx_http_hello_world_module_ctx = {
NULL, /* preconfiguration */ NULL, /* preconfiguration */
ngx_http_hello_world, /* postconfiguration */ ngx_http_js_challenge, /* postconfiguration */
NULL, /* create main configuration */ NULL, /* create main configuration */
NULL, /* init 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, /* create server configuration */
NULL, /* merge server configuration */ NULL, /* merge server configuration */
//todo
NULL, /* create location configuration */ NULL, /* create location configuration */
NULL /* merge location configuration */ NULL /* merge location configuration */
}; };
/* Module definition. */ /* Module definition. */
ngx_module_t ngx_http_hello_world_module = { ngx_module_t ngx_http_js_challenge_module = {
NGX_MODULE_V1, NGX_MODULE_V1,
&ngx_http_hello_world_module_ctx, /* module context */ &ngx_http_js_challenge_module_ctx, /* module context */
ngx_http_hello_world_commands, /* module directives */ ngx_http_js_challenge_commands, /* module directives */
NGX_HTTP_MODULE, /* module type */ NGX_HTTP_MODULE, /* module type */
NULL, /* init master */ NULL, /* init master */
NULL, /* init module */ NULL, /* init module */
@ -60,7 +58,7 @@ ngx_module_t ngx_http_hello_world_module = {
}; };
__always_inline __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"; static const char hexdig[] = "0123456789ABCDEF";
const unsigned char *p; const unsigned char *p;
@ -90,7 +88,7 @@ static const u_char JS_SOLVER[] =
" document.cookie = 'res=' + c + i + ';';" " document.cookie = 'res=' + c + i + ';';"
" window.location.reload();" " window.location.reload();"
" break;" " break;"
" };" " }"
" i++;" " i++;"
" }" " }"
"</script>Hello"; "</script>Hello";
@ -155,6 +153,7 @@ int verify_response(int32_t bucket, ngx_str_t addr, const char *secret, ngx_str_
* ^ offset 24 * ^ offset 24
*/ */
//todo also check if the response is too large
if (response.len <= SHA1_STR_LEN) { if (response.len <= SHA1_STR_LEN) {
return -1; return -1;
} }
@ -199,7 +198,7 @@ int get_cookie(ngx_http_request_t *r, ngx_str_t *name, ngx_str_t *value) {
return -1; 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 //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) { 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 */ // 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 = 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; 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_handler_pt *h;
ngx_http_core_main_conf_t *cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module); 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; return NGX_ERROR;
} }
*h = ngx_http_hello_world_handler; *h = ngx_http_js_challenge_handler;
return NGX_OK; return NGX_OK;
} }

BIN
throughput.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB