Welcome! Log In Create A New Profile

Advanced

[njs] Modules: common code is moved to shared library.

Vadim Zhestikov via nginx-devel
September 27, 2022 02:32PM
details: https://hg.nginx.org/njs/rev/b92fa931a0f2
branches:
changeset: 1964:b92fa931a0f2
user: Vadim Zhestikov <v.zhestikov@f5.com>
date: Tue Sep 27 09:32:56 2022 -0700
description:
Modules: common code is moved to shared library.

diffstat:

nginx/ngx_http_js_module.c | 373 ++----------------------------------------
nginx/ngx_js.c | 348 ++++++++++++++++++++++++++++++++++++++++-
nginx/ngx_js.h | 13 +-
nginx/ngx_stream_js_module.c | 373 ++----------------------------------------
4 files changed, 409 insertions(+), 698 deletions(-)

diffs (truncated from 1283 to 1000 lines):

diff -r 301cc9eaa3bf -r b92fa931a0f2 nginx/ngx_http_js_module.c
--- a/nginx/ngx_http_js_module.c Mon Sep 26 17:50:24 2022 -0700
+++ b/nginx/ngx_http_js_module.c Tue Sep 27 09:32:56 2022 -0700
@@ -20,10 +20,6 @@ typedef struct {
ngx_str_t body_filter;
ngx_uint_t buffer_type;

- size_t buffer_size;
- size_t max_response_body_size;
- ngx_msec_t timeout;
-
#if (NGX_HTTP_SSL)
ngx_ssl_t *ssl;
ngx_str_t ssl_ciphers;
@@ -103,7 +99,6 @@ static ngx_int_t ngx_http_js_variable_va
ngx_http_variable_value_t *v, uintptr_t data);
static ngx_int_t ngx_http_js_init_vm(ngx_http_request_t *r);
static void ngx_http_js_cleanup_ctx(void *data);
-static void ngx_http_js_cleanup_vm(void *data);

static njs_int_t ngx_http_js_ext_keys_header(njs_vm_t *vm, njs_value_t *value,
njs_value_t *keys, ngx_list_t *headers);
@@ -259,10 +254,8 @@ static char *ngx_http_js_content(ngx_con
void *conf);
static char *ngx_http_js_body_filter_set(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
-static ngx_int_t ngx_http_js_merge_vm(ngx_conf_t *cf,
- ngx_http_js_loc_conf_t *conf, ngx_http_js_loc_conf_t *prev);
static ngx_int_t ngx_http_js_init_conf_vm(ngx_conf_t *cf,
- ngx_http_js_loc_conf_t *conf);
+ ngx_js_conf_t *conf);
static void *ngx_http_js_create_loc_conf(ngx_conf_t *cf);
static char *ngx_http_js_merge_loc_conf(ngx_conf_t *cf, void *parent,
void *child);
@@ -1317,19 +1310,6 @@ ngx_http_js_cleanup_ctx(void *data)
}


-static void
-ngx_http_js_cleanup_vm(void *data)
-{
- ngx_http_js_loc_conf_t *jlcf = data;
-
- njs_vm_destroy(jlcf->vm);
-
- if (jlcf->preload_objects != NGX_CONF_UNSET_PTR) {
- njs_vm_destroy(jlcf->preload_vm);
- }
-}
-
-
static njs_int_t
ngx_http_js_ext_keys_header(njs_vm_t *vm, njs_value_t *value, njs_value_t *keys,
ngx_list_t *headers)
@@ -4208,211 +4188,27 @@ ngx_http_js_handle_event(ngx_http_reques


static ngx_int_t
-ngx_http_js_merge_vm(ngx_conf_t *cf, ngx_http_js_loc_conf_t *conf,
- ngx_http_js_loc_conf_t *prev)
+ngx_http_js_externals_init(ngx_conf_t *cf, ngx_js_conf_t *conf_in)
{
- ngx_str_t *path, *s;
- ngx_uint_t i;
- ngx_array_t *imports, *preload_objects, *paths;
- ngx_js_named_path_t *import, *pi, *pij, *preload;
-
- if (prev->imports != NGX_CONF_UNSET_PTR && prev->vm == NULL) {
- if (ngx_http_js_init_conf_vm(cf, prev) != NGX_OK) {
- return NGX_ERROR;
- }
- }
-
- if (conf->imports == NGX_CONF_UNSET_PTR
- && conf->paths == NGX_CONF_UNSET_PTR
- && conf->preload_objects == NGX_CONF_UNSET_PTR)
- {
- if (prev->vm != NULL) {
- conf->preload_objects = prev->preload_objects;
- conf->imports = prev->imports;
- conf->paths = prev->paths;
- conf->vm = prev->vm;
-
- conf->preload_vm = prev->preload_vm;
-
- return NGX_OK;
- }
- }
-
- if (prev->preload_objects != NGX_CONF_UNSET_PTR) {
- if (conf->preload_objects == NGX_CONF_UNSET_PTR) {
- conf->preload_objects = prev->preload_objects;
-
- } else {
- preload_objects = ngx_array_create(cf->pool, 4,
- sizeof(ngx_js_named_path_t));
- if (preload_objects == NULL) {
- return NGX_ERROR;
- }
-
- pij = prev->preload_objects->elts;
-
- for (i = 0; i < prev->preload_objects->nelts; i++) {
- preload = ngx_array_push(preload_objects);
- if (preload == NULL) {
- return NGX_ERROR;
- }
-
- *preload = pij[i];
- }
-
- pij = conf->preload_objects->elts;
-
- for (i = 0; i < conf->preload_objects->nelts; i++) {
- preload = ngx_array_push(preload_objects);
- if (preload == NULL) {
- return NGX_ERROR;
- }
-
- *preload = pij[i];
- }
-
- conf->preload_objects = preload_objects;
- }
- }
-
- if (prev->imports != NGX_CONF_UNSET_PTR) {
- if (conf->imports == NGX_CONF_UNSET_PTR) {
- conf->imports = prev->imports;
-
- } else {
- imports = ngx_array_create(cf->pool, 4,
- sizeof(ngx_js_named_path_t));
- if (imports == NULL) {
- return NGX_ERROR;
- }
-
- pi = prev->imports->elts;
-
- for (i = 0; i < prev->imports->nelts; i++) {
- import = ngx_array_push(imports);
- if (import == NULL) {
- return NGX_ERROR;
- }
-
- *import = pi[i];
- }
-
- pi = conf->imports->elts;
-
- for (i = 0; i < conf->imports->nelts; i++) {
- import = ngx_array_push(imports);
- if (import == NULL) {
- return NGX_ERROR;
- }
-
- *import = pi[i];
- }
-
- conf->imports = imports;
- }
- }
-
- if (prev->paths != NGX_CONF_UNSET_PTR) {
- if (conf->paths == NGX_CONF_UNSET_PTR) {
- conf->paths = prev->paths;
-
- } else {
- paths = ngx_array_create(cf->pool, 4, sizeof(ngx_str_t));
- if (paths == NULL) {
- return NGX_ERROR;
- }
-
- s = prev->imports->elts;
-
- for (i = 0; i < prev->paths->nelts; i++) {
- path = ngx_array_push(paths);
- if (path == NULL) {
- return NGX_ERROR;
- }
-
- *path = s[i];
- }
-
- s = conf->imports->elts;
-
- for (i = 0; i < conf->paths->nelts; i++) {
- path = ngx_array_push(paths);
- if (path == NULL) {
- return NGX_ERROR;
- }
-
- *path = s[i];
- }
-
- conf->paths = paths;
- }
- }
-
- if (conf->imports == NGX_CONF_UNSET_PTR) {
- return NGX_OK;
- }
-
- return ngx_http_js_init_conf_vm(cf, conf);
+ ngx_http_js_loc_conf_t *conf = (ngx_http_js_loc_conf_t *) conf_in;
+
+ ngx_http_js_request_proto_id = njs_vm_external_prototype(conf->vm,
+ ngx_http_js_ext_request,
+ njs_nitems(ngx_http_js_ext_request));
+ if (ngx_http_js_request_proto_id < 0) {
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
+ "failed to add js request proto");
+ return NGX_ERROR;
+ }
+
+ return NGX_OK;
}


static ngx_int_t
-ngx_http_js_init_conf_vm(ngx_conf_t *cf, ngx_http_js_loc_conf_t *conf)
+ngx_http_js_init_conf_vm(ngx_conf_t *cf, ngx_js_conf_t *conf)
{
- size_t size;
- u_char *start, *end, *p;
- ngx_str_t *m, file;
- njs_int_t rc;
- njs_str_t text, path;
- ngx_uint_t i;
- njs_value_t *value;
- njs_vm_opt_t options;
- ngx_pool_cleanup_t *cln;
- njs_opaque_value_t lvalue, exception;
- ngx_js_named_path_t *import;
-
- static const njs_str_t line_number_key = njs_str("lineNumber");
- static const njs_str_t file_name_key = njs_str("fileName");
-
- if (conf->preload_objects != NGX_CONF_UNSET_PTR) {
- if (ngx_js_init_preload_vm(cf, (ngx_js_conf_t *)conf) != NGX_OK) {
- return NGX_ERROR;
- }
- }
-
- size = 0;
-
- import = conf->imports->elts;
- for (i = 0; i < conf->imports->nelts; i++) {
-
- /* import <name> from '<path>'; globalThis.<name> = <name>; */
-
- size += sizeof("import from '';") - 1 + import[i].name.len * 3
- + import[i].path.len
- + sizeof(" globalThis. = ;\n") - 1;
- }
-
- start = ngx_pnalloc(cf->pool, size);
- if (start == NULL) {
- return NGX_ERROR;
- }
-
- p = start;
- import = conf->imports->elts;
- for (i = 0; i < conf->imports->nelts; i++) {
-
- /* import <name> from '<path>'; globalThis.<name> = <name>; */
-
- p = ngx_cpymem(p, "import ", sizeof("import ") - 1);
- p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
- p = ngx_cpymem(p, " from '", sizeof(" from '") - 1);
- p = ngx_cpymem(p, import[i].path.data, import[i].path.len);
- p = ngx_cpymem(p, "'; globalThis.", sizeof("'; globalThis.") - 1);
- p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
- p = ngx_cpymem(p, " = ", sizeof(" = ") - 1);
- p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
- p = ngx_cpymem(p, ";\n", sizeof(";\n") - 1);
- }
+ njs_vm_opt_t options;

njs_vm_opt_init(&options);

@@ -4424,108 +4220,7 @@ ngx_http_js_init_conf_vm(ngx_conf_t *cf,
options.argv = ngx_argv;
options.argc = ngx_argc;

- file = ngx_cycle->conf_prefix;
-
- options.file.start = file.data;
- options.file.length = file.len;
-
- conf->vm = njs_vm_create(&options);
- if (conf->vm == NULL) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "failed to create js VM");
- return NGX_ERROR;
- }
-
- cln = ngx_pool_cleanup_add(cf->pool, 0);
- if (cln == NULL) {
- return NGX_ERROR;
- }
-
- cln->handler = ngx_http_js_cleanup_vm;
- cln->data = conf;
-
- path.start = ngx_cycle->conf_prefix.data;
- path.length = ngx_cycle->conf_prefix.len;
-
- rc = njs_vm_add_path(conf->vm, &path);
- if (rc != NJS_OK) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "failed to add \"js_path\"");
- return NGX_ERROR;
- }
-
- if (conf->paths != NGX_CONF_UNSET_PTR) {
- m = conf->paths->elts;
-
- for (i = 0; i < conf->paths->nelts; i++) {
- if (ngx_conf_full_name(cf->cycle, &m[i], 1) != NGX_OK) {
- return NGX_ERROR;
- }
-
- path.start = m[i].data;
- path.length = m[i].len;
-
- rc = njs_vm_add_path(conf->vm, &path);
- if (rc != NJS_OK) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "failed to add \"js_path\"");
- return NGX_ERROR;
- }
- }
- }
-
- ngx_http_js_request_proto_id = njs_vm_external_prototype(conf->vm,
- ngx_http_js_ext_request,
- njs_nitems(ngx_http_js_ext_request));
- if (ngx_http_js_request_proto_id < 0) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "failed to add js request proto");
- return NGX_ERROR;
- }
-
- rc = ngx_js_core_init(conf->vm, cf->log);
- if (njs_slow_path(rc != NJS_OK)) {
- return NGX_ERROR;
- }
-
- end = start + size;
-
- rc = njs_vm_compile(conf->vm, &start, end);
-
- if (rc != NJS_OK) {
- njs_value_assign(&exception, njs_vm_retval(conf->vm));
- njs_vm_retval_string(conf->vm, &text);
-
- value = njs_vm_object_prop(conf->vm, njs_value_arg(&exception),
- &file_name_key, &lvalue);
- if (value == NULL) {
- value = njs_vm_object_prop(conf->vm, njs_value_arg(&exception),
- &line_number_key, &lvalue);
-
- if (value != NULL) {
- i = njs_value_number(value) - 1;
-
- if (i < conf->imports->nelts) {
- import = conf->imports->elts;
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "%*s, included in %s:%ui", text.length,
- text.start, import[i].file, import[i].line);
- return NGX_ERROR;
- }
- }
- }
-
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "%*s", text.length,
- text.start);
- return NGX_ERROR;
- }
-
- if (start != end) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "extra characters in js script: \"%*s\"",
- end - start, start);
- return NGX_ERROR;
- }
-
- return NGX_OK;
+ return ngx_js_init_conf_vm(cf, conf, &options, ngx_http_js_externals_init);
}


@@ -4697,40 +4392,17 @@ ngx_http_js_body_filter_set(ngx_conf_t *
static void *
ngx_http_js_create_loc_conf(ngx_conf_t *cf)
{
- ngx_http_js_loc_conf_t *conf;
-
- conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_js_loc_conf_t));
+ ngx_http_js_loc_conf_t *conf =
+ (ngx_http_js_loc_conf_t *) ngx_js_create_conf(
+ cf, sizeof(ngx_http_js_loc_conf_t));
if (conf == NULL) {
return NULL;
}

- /*
- * set by ngx_pcalloc():
- *
- * conf->vm = NULL;
- * conf->preload_vm = NULL;
- * conf->content = { 0, NULL };
- * conf->header_filter = { 0, NULL };
- * conf->body_filter = { 0, NULL };
- * conf->buffer_type = NGX_JS_UNSET;
- * conf->ssl_ciphers = { 0, NULL };
- * conf->ssl_protocols = 0;
- * conf->ssl_trusted_certificate = { 0, NULL };
- */
-
- conf->paths = NGX_CONF_UNSET_PTR;
- conf->imports = NGX_CONF_UNSET_PTR;
- conf->preload_objects = NGX_CONF_UNSET_PTR;
-
- conf->buffer_size = NGX_CONF_UNSET_SIZE;
- conf->max_response_body_size = NGX_CONF_UNSET_SIZE;
- conf->timeout = NGX_CONF_UNSET_MSEC;
-
#if (NGX_HTTP_SSL)
conf->ssl_verify = NGX_CONF_UNSET;
conf->ssl_verify_depth = NGX_CONF_UNSET;
#endif
-
return conf;
}

@@ -4752,7 +4424,10 @@ ngx_http_js_merge_loc_conf(ngx_conf_t *c
ngx_conf_merge_size_value(conf->max_response_body_size,
prev->max_response_body_size, 1048576);

- if (ngx_http_js_merge_vm(cf, conf, prev) != NGX_OK) {
+ if (ngx_js_merge_vm(cf, (ngx_js_conf_t *) conf, (ngx_js_conf_t *) prev,
+ ngx_http_js_init_conf_vm)
+ != NGX_OK)
+ {
return NGX_CONF_ERROR;
}

diff -r 301cc9eaa3bf -r b92fa931a0f2 nginx/ngx_js.c
--- a/nginx/ngx_js.c Mon Sep 26 17:50:24 2022 -0700
+++ b/nginx/ngx_js.c Tue Sep 27 09:32:56 2022 -0700
@@ -12,8 +12,9 @@
#include "ngx_js_fetch.h"


-njs_int_t ngx_js_ext_conf_prefix(njs_vm_t *vm, njs_object_prop_t *prop,
+static njs_int_t ngx_js_ext_conf_prefix(njs_vm_t *vm, njs_object_prop_t *prop,
njs_value_t *value, njs_value_t *setval, njs_value_t *retval);
+static void ngx_js_cleanup_vm(void *data);


extern njs_module_t njs_webcrypto_module;
@@ -693,3 +694,348 @@ error:

return NGX_ERROR;
}
+
+
+ngx_int_t
+ngx_js_merge_vm(ngx_conf_t *cf, ngx_js_conf_t *conf,
+ ngx_js_conf_t *prev,
+ ngx_int_t (*init_vm) (ngx_conf_t *cf, ngx_js_conf_t *conf))
+{
+ ngx_str_t *path, *s;
+ ngx_uint_t i;
+ ngx_array_t *imports, *preload_objects, *paths;
+ ngx_js_named_path_t *import, *pi, *pij, *preload;
+
+ if (prev->imports != NGX_CONF_UNSET_PTR && prev->vm == NULL) {
+ if (init_vm(cf, (ngx_js_conf_t *) prev) != NGX_OK) {
+ return NGX_ERROR;
+ }
+ }
+
+ if (conf->imports == NGX_CONF_UNSET_PTR
+ && conf->paths == NGX_CONF_UNSET_PTR
+ && conf->preload_objects == NGX_CONF_UNSET_PTR)
+ {
+ if (prev->vm != NULL) {
+ conf->preload_objects = prev->preload_objects;
+ conf->imports = prev->imports;
+ conf->paths = prev->paths;
+ conf->vm = prev->vm;
+
+ conf->preload_vm = prev->preload_vm;
+
+ return NGX_OK;
+ }
+ }
+
+ if (prev->preload_objects != NGX_CONF_UNSET_PTR) {
+ if (conf->preload_objects == NGX_CONF_UNSET_PTR) {
+ conf->preload_objects = prev->preload_objects;
+
+ } else {
+ preload_objects = ngx_array_create(cf->pool, 4,
+ sizeof(ngx_js_named_path_t));
+ if (preload_objects == NULL) {
+ return NGX_ERROR;
+ }
+
+ pij = prev->preload_objects->elts;
+
+ for (i = 0; i < prev->preload_objects->nelts; i++) {
+ preload = ngx_array_push(preload_objects);
+ if (preload == NULL) {
+ return NGX_ERROR;
+ }
+
+ *preload = pij[i];
+ }
+
+ pij = conf->preload_objects->elts;
+
+ for (i = 0; i < conf->preload_objects->nelts; i++) {
+ preload = ngx_array_push(preload_objects);
+ if (preload == NULL) {
+ return NGX_ERROR;
+ }
+
+ *preload = pij[i];
+ }
+
+ conf->preload_objects = preload_objects;
+ }
+ }
+
+ if (prev->imports != NGX_CONF_UNSET_PTR) {
+ if (conf->imports == NGX_CONF_UNSET_PTR) {
+ conf->imports = prev->imports;
+
+ } else {
+ imports = ngx_array_create(cf->pool, 4,
+ sizeof(ngx_js_named_path_t));
+ if (imports == NULL) {
+ return NGX_ERROR;
+ }
+
+ pi = prev->imports->elts;
+
+ for (i = 0; i < prev->imports->nelts; i++) {
+ import = ngx_array_push(imports);
+ if (import == NULL) {
+ return NGX_ERROR;
+ }
+
+ *import = pi[i];
+ }
+
+ pi = conf->imports->elts;
+
+ for (i = 0; i < conf->imports->nelts; i++) {
+ import = ngx_array_push(imports);
+ if (import == NULL) {
+ return NGX_ERROR;
+ }
+
+ *import = pi[i];
+ }
+
+ conf->imports = imports;
+ }
+ }
+
+ if (prev->paths != NGX_CONF_UNSET_PTR) {
+ if (conf->paths == NGX_CONF_UNSET_PTR) {
+ conf->paths = prev->paths;
+
+ } else {
+ paths = ngx_array_create(cf->pool, 4, sizeof(ngx_str_t));
+ if (paths == NULL) {
+ return NGX_ERROR;
+ }
+
+ s = prev->imports->elts;
+
+ for (i = 0; i < prev->paths->nelts; i++) {
+ path = ngx_array_push(paths);
+ if (path == NULL) {
+ return NGX_ERROR;
+ }
+
+ *path = s[i];
+ }
+
+ s = conf->imports->elts;
+
+ for (i = 0; i < conf->paths->nelts; i++) {
+ path = ngx_array_push(paths);
+ if (path == NULL) {
+ return NGX_ERROR;
+ }
+
+ *path = s[i];
+ }
+
+ conf->paths = paths;
+ }
+ }
+
+ if (conf->imports == NGX_CONF_UNSET_PTR) {
+ return NGX_OK;
+ }
+
+ return init_vm(cf, (ngx_js_conf_t *) conf);
+}
+
+
+ngx_int_t
+ngx_js_init_conf_vm(ngx_conf_t *cf, ngx_js_conf_t *conf,
+ njs_vm_opt_t *options,
+ ngx_int_t (*externals_init)(ngx_conf_t *cf, ngx_js_conf_t *conf))
+{
+ size_t size;
+ u_char *start, *end, *p;
+ ngx_str_t *m, file;
+ njs_int_t rc;
+ njs_str_t text, path;
+ ngx_uint_t i;
+ njs_value_t *value;
+ ngx_pool_cleanup_t *cln;
+ njs_opaque_value_t lvalue, exception;
+ ngx_js_named_path_t *import;
+
+ static const njs_str_t line_number_key = njs_str("lineNumber");
+ static const njs_str_t file_name_key = njs_str("fileName");
+
+ if (conf->preload_objects != NGX_CONF_UNSET_PTR) {
+ if (ngx_js_init_preload_vm(cf, (ngx_js_conf_t *)conf) != NGX_OK) {
+ return NGX_ERROR;
+ }
+ }
+
+ size = 0;
+
+ import = conf->imports->elts;
+ for (i = 0; i < conf->imports->nelts; i++) {
+
+ /* import <name> from '<path>'; globalThis.<name> = <name>; */
+
+ size += sizeof("import from '';") - 1 + import[i].name.len * 3
+ + import[i].path.len
+ + sizeof(" globalThis. = ;\n") - 1;
+ }
+
+ start = ngx_pnalloc(cf->pool, size);
+ if (start == NULL) {
+ return NGX_ERROR;
+ }
+
+ p = start;
+ import = conf->imports->elts;
+ for (i = 0; i < conf->imports->nelts; i++) {
+
+ /* import <name> from '<path>'; globalThis.<name> = <name>; */
+
+ p = ngx_cpymem(p, "import ", sizeof("import ") - 1);
+ p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
+ p = ngx_cpymem(p, " from '", sizeof(" from '") - 1);
+ p = ngx_cpymem(p, import[i].path.data, import[i].path.len);
+ p = ngx_cpymem(p, "'; globalThis.", sizeof("'; globalThis.") - 1);
+ p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
+ p = ngx_cpymem(p, " = ", sizeof(" = ") - 1);
+ p = ngx_cpymem(p, import[i].name.data, import[i].name.len);
+ p = ngx_cpymem(p, ";\n", sizeof(";\n") - 1);
+ }
+
+ file = ngx_cycle->conf_prefix;
+
+ options->file.start = file.data;
+ options->file.length = file.len;
+
+ conf->vm = njs_vm_create(options);
+ if (conf->vm == NULL) {
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "failed to create js VM");
+ return NGX_ERROR;
+ }
+
+ cln = ngx_pool_cleanup_add(cf->pool, 0);
+ if (cln == NULL) {
+ return NGX_ERROR;
+ }
+
+ cln->handler = ngx_js_cleanup_vm;
+ cln->data = conf;
+
+ path.start = ngx_cycle->conf_prefix.data;
+ path.length = ngx_cycle->conf_prefix.len;
+
+ rc = njs_vm_add_path(conf->vm, &path);
+ if (rc != NJS_OK) {
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "failed to add \"js_path\"");
+ return NGX_ERROR;
+ }
+
+ if (conf->paths != NGX_CONF_UNSET_PTR) {
+ m = conf->paths->elts;
+
+ for (i = 0; i < conf->paths->nelts; i++) {
+ if (ngx_conf_full_name(cf->cycle, &m[i], 1) != NGX_OK) {
+ return NGX_ERROR;
+ }
+
+ path.start = m[i].data;
+ path.length = m[i].len;
+
+ rc = njs_vm_add_path(conf->vm, &path);
+ if (rc != NJS_OK) {
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
+ "failed to add \"js_path\"");
+ return NGX_ERROR;
+ }
+ }
+ }
+
+ rc = externals_init(cf, conf);
+ if (rc != NGX_OK) {
+ return NGX_ERROR;
+ }
+
+ rc = ngx_js_core_init(conf->vm, cf->log);
+ if (njs_slow_path(rc != NJS_OK)) {
+ return NGX_ERROR;
+ }
+
+ end = start + size;
+
+ rc = njs_vm_compile(conf->vm, &start, end);
+
+ if (rc != NJS_OK) {
+ njs_value_assign(&exception, njs_vm_retval(conf->vm));
+ njs_vm_retval_string(conf->vm, &text);
+
+ value = njs_vm_object_prop(conf->vm, njs_value_arg(&exception),
+ &file_name_key, &lvalue);
+ if (value == NULL) {
+ value = njs_vm_object_prop(conf->vm, njs_value_arg(&exception),
+ &line_number_key, &lvalue);
+
+ if (value != NULL) {
+ i = njs_value_number(value) - 1;
+
+ if (i < conf->imports->nelts) {
+ import = conf->imports->elts;
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
+ "%*s, included in %s:%ui", text.length,
+ text.start, import[i].file, import[i].line);
+ return NGX_ERROR;
+ }
+ }
+ }
+
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0, "%*s", text.length,
+ text.start);
+ return NGX_ERROR;
+ }
+
+ if (start != end) {
+ ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
+ "extra characters in js script: \"%*s\"",
+ end - start, start);
+ return NGX_ERROR;
+ }
+
+ return NGX_OK;
+}
+
+
+static void
+ngx_js_cleanup_vm(void *data)
+{
+ ngx_js_conf_t *jscf = data;
+
+ njs_vm_destroy(jscf->vm);
+
+ if (jscf->preload_objects != NGX_CONF_UNSET_PTR) {
+ njs_vm_destroy(jscf->preload_vm);
+ }
+}
+
+
+ngx_js_conf_t *
+ngx_js_create_conf(ngx_conf_t *cf, size_t size)
+{
+ ngx_js_conf_t *conf;
+
+ conf = ngx_pcalloc(cf->pool, size);
+ if (conf == NULL) {
+ return NULL;
+ }
+
+ conf->paths = NGX_CONF_UNSET_PTR;
+ conf->imports = NGX_CONF_UNSET_PTR;
+ conf->preload_objects = NGX_CONF_UNSET_PTR;
+
+ conf->buffer_size = NGX_CONF_UNSET_SIZE;
+ conf->max_response_body_size = NGX_CONF_UNSET_SIZE;
+ conf->timeout = NGX_CONF_UNSET_MSEC;
+
+ return conf;
+}
diff -r 301cc9eaa3bf -r b92fa931a0f2 nginx/ngx_js.h
--- a/nginx/ngx_js.h Mon Sep 26 17:50:24 2022 -0700
+++ b/nginx/ngx_js.h Tue Sep 27 09:32:56 2022 -0700
@@ -56,7 +56,11 @@ typedef struct {
ngx_array_t *paths; \
\
njs_vm_t *preload_vm; \
- ngx_array_t *preload_objects \
+ ngx_array_t *preload_objects; \
+ \
+ size_t buffer_size; \
+ size_t max_response_body_size; \
+ ngx_msec_t timeout

typedef struct {
NGX_JS_COMMON_CONF;
@@ -102,6 +106,13 @@ void ngx_js_logger(njs_vm_t *vm, njs_ext
char * ngx_js_import(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
char * ngx_js_preload_object(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
ngx_int_t ngx_js_init_preload_vm(ngx_conf_t *cf, ngx_js_conf_t *conf);
+ngx_int_t ngx_js_merge_vm(ngx_conf_t *cf, ngx_js_conf_t *conf,
+ ngx_js_conf_t *prev,
+ ngx_int_t (*init_vm)(ngx_conf_t *cf, ngx_js_conf_t *conf));
+ngx_int_t ngx_js_init_conf_vm(ngx_conf_t *cf, ngx_js_conf_t *conf,
+ njs_vm_opt_t *options,
+ ngx_int_t (*externals_init)(ngx_conf_t *cf, ngx_js_conf_t *conf));
+ngx_js_conf_t *ngx_js_create_conf(ngx_conf_t *cf, size_t size);

njs_int_t ngx_js_ext_string(njs_vm_t *vm, njs_object_prop_t *prop,
njs_value_t *value, njs_value_t *setval, njs_value_t *retval);
diff -r 301cc9eaa3bf -r b92fa931a0f2 nginx/ngx_stream_js_module.c
--- a/nginx/ngx_stream_js_module.c Mon Sep 26 17:50:24 2022 -0700
+++ b/nginx/ngx_stream_js_module.c Tue Sep 27 09:32:56 2022 -0700
@@ -19,10 +19,6 @@ typedef struct {
ngx_str_t preread;
ngx_str_t filter;

- size_t buffer_size;
- size_t max_response_body_size;
- ngx_msec_t timeout;
-
#if (NGX_STREAM_SSL)
ngx_ssl_t *ssl;
ngx_str_t ssl_ciphers;
@@ -82,7 +78,6 @@ static ngx_int_t ngx_stream_js_variable_
static ngx_int_t ngx_stream_js_init_vm(ngx_stream_session_t *s);
static void ngx_stream_js_drop_events(ngx_stream_js_ctx_t *ctx);
static void ngx_stream_js_cleanup(void *data);
-static void ngx_stream_js_cleanup_vm(void *data);
static njs_int_t ngx_stream_js_run_event(ngx_stream_session_t *s,
ngx_stream_js_ctx_t *ctx, ngx_stream_js_ev_t *event,
ngx_uint_t from_upstream);
@@ -131,10 +126,8 @@ static char *ngx_stream_js_set(ngx_conf_
void *conf);
static char *ngx_stream_js_var(ngx_conf_t *cf, ngx_command_t *cmd,
void *conf);
-static ngx_int_t ngx_stream_js_merge_vm(ngx_conf_t *cf,
- ngx_stream_js_srv_conf_t *conf, ngx_stream_js_srv_conf_t *prev);
static ngx_int_t ngx_stream_js_init_conf_vm(ngx_conf_t *cf,
- ngx_stream_js_srv_conf_t *conf);
+ ngx_js_conf_t *conf);
static void *ngx_stream_js_create_srv_conf(ngx_conf_t *cf);
static char *ngx_stream_js_merge_srv_conf(ngx_conf_t *cf, void *parent,
void *child);
@@ -1007,19 +1000,6 @@ ngx_stream_js_cleanup(void *data)
}


-static void
-ngx_stream_js_cleanup_vm(void *data)
-{
- ngx_stream_js_srv_conf_t *jscf = data;
-
- njs_vm_destroy(jscf->vm);
-
- if (jscf->preload_objects != NGX_CONF_UNSET_PTR) {
- njs_vm_destroy(jscf->preload_vm);
- }
-}
-
-
static njs_int_t
ngx_stream_js_run_event(ngx_stream_session_t *s, ngx_stream_js_ctx_t *ctx,
ngx_stream_js_ev_t *event, ngx_uint_t from_upstream)
@@ -1701,268 +1681,9 @@ ngx_stream_js_handle_event(ngx_stream_se


static ngx_int_t
-ngx_stream_js_merge_vm(ngx_conf_t *cf, ngx_stream_js_srv_conf_t *conf,
- ngx_stream_js_srv_conf_t *prev)
+ngx_stream_js_externals_init(ngx_conf_t *cf, ngx_js_conf_t *conf_in)
{
- ngx_str_t *path, *s;
- ngx_uint_t i;
- ngx_array_t *imports, *preload_objects, *paths;
- ngx_js_named_path_t *import, *pi, *pij, *preload;
-
- if (prev->imports != NGX_CONF_UNSET_PTR && prev->vm == NULL) {
- if (ngx_stream_js_init_conf_vm(cf, prev) != NGX_OK) {
- return NGX_ERROR;
- }
- }
-
- if (conf->imports == NGX_CONF_UNSET_PTR
- && conf->paths == NGX_CONF_UNSET_PTR
- && conf->preload_objects == NGX_CONF_UNSET_PTR)
- {
- if (prev->vm != NULL) {
- conf->preload_objects = prev->preload_objects;
- conf->imports = prev->imports;
- conf->paths = prev->paths;
- conf->vm = prev->vm;
-
- conf->preload_vm = prev->preload_vm;
-
- return NGX_OK;
- }
- }
-
- if (prev->preload_objects != NGX_CONF_UNSET_PTR) {
- if (conf->preload_objects == NGX_CONF_UNSET_PTR) {
- conf->preload_objects = prev->preload_objects;
-
- } else {
- preload_objects = ngx_array_create(cf->pool, 4,
- sizeof(ngx_js_named_path_t));
- if (preload_objects == NULL) {
- return NGX_ERROR;
- }
-
- pij = prev->preload_objects->elts;
-
- for (i = 0; i < prev->preload_objects->nelts; i++) {
- preload = ngx_array_push(preload_objects);
- if (preload == NULL) {
- return NGX_ERROR;
- }
-
- *preload = pij[i];
- }
-
- pij = conf->preload_objects->elts;
-
- for (i = 0; i < conf->preload_objects->nelts; i++) {
- preload = ngx_array_push(preload_objects);
- if (preload == NULL) {
- return NGX_ERROR;
- }
-
- *preload = pij[i];
- }
-
- conf->preload_objects = preload_objects;
- }
- }
-
- if (prev->imports != NGX_CONF_UNSET_PTR) {
- if (conf->imports == NGX_CONF_UNSET_PTR) {
- conf->imports = prev->imports;
-
- } else {
- imports = ngx_array_create(cf->pool, 4,
- sizeof(ngx_js_named_path_t));
- if (imports == NULL) {
- return NGX_ERROR;
- }
-
- pi = prev->imports->elts;
-
- for (i = 0; i < prev->imports->nelts; i++) {
- import = ngx_array_push(imports);
- if (import == NULL) {
- return NGX_ERROR;
- }
-
- *import = pi[i];
- }
-
- pi = conf->imports->elts;
-
- for (i = 0; i < conf->imports->nelts; i++) {
- import = ngx_array_push(imports);
- if (import == NULL) {
- return NGX_ERROR;
- }
-
- *import = pi[i];
- }
-
- conf->imports = imports;
_______________________________________________
nginx-devel mailing list -- nginx-devel@nginx.org
To unsubscribe send an email to nginx-devel-leave@nginx.org
Subject Author Views Posted

[njs] Modules: common code is moved to shared library.

Vadim Zhestikov via nginx-devel 403 September 27, 2022 02:32PM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 285
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready