2533:05634a8ac1af | 22-Aug-2023 |
Konstantin Pavlov |
Docker: added meaningful title to metadata. |
2532:2d28f4cc4afb | 22-Aug-2023 |
Konstantin Pavlov |
Docker: added wasm variant. |
2531:d5ec841ce168 | 22-Aug-2023 |
Konstantin Pavlov |
Docker: use a specific directory to build unit. |
2530:603950848e80 | 22-Aug-2023 |
Konstantin Pavlov |
Docker: introduced a "module prebuild" step. It's now used to install node-gyp on nodejs images. Starting from node:20, they no longer ship node-gyp that we require to build the modules with, so we n
Docker: introduced a "module prebuild" step. It's now used to install node-gyp on nodejs images. Starting from node:20, they no longer ship node-gyp that we require to build the modules with, so we need to install it manually.
Fixes https://github.com/nginx/unit/issues/908.
show more ...
|
2529:0ab0ef5be0a4 | 22-Aug-2023 |
Konstantin Pavlov |
Packages: specify runstatedir and logdir explicitely. |
2528:411d999d7398 | 22-Aug-2023 |
Konstantin Pavlov |
Packages: added libunit-wasm and headers to deb packaging. |
2527:a9627f50d292 | 22-Aug-2023 |
Konstantin Pavlov |
Packages: added libunit-wasm and headers to rpm packaging. |
2526:b0d9aeec8b55 | 22-Aug-2023 |
Konstantin Pavlov |
contrib: added libunit-wasm and wasi-sysroot. |
2525:2303da82f5a3 | 22-Aug-2023 |
Konstantin Pavlov |
Packages: added wasm module packaging for deb-based distros. |
2524:5677bdb5698e | 22-Aug-2023 |
Konstantin Pavlov |
Packages: added wasm module packaging for rpm-based distros. |
2523:1c466e280eb0 | 22-Aug-2023 |
Konstantin Pavlov |
Docs: added changelogs for unit-wasm. |
2522:095a077fd213 | 22-Aug-2023 |
Konstantin Pavlov |
contrib: added wasmtime. |
2521:72b24a3ab933 | 22-Aug-2023 |
Konstantin Pavlov |
Packages: added pkg-config file packaging for rpm-based distros. Debian-based distributions package it automatically. |
2520:a6dff8092e84 | 01-Aug-2023 |
Konstantin Pavlov |
Added unit pkg-config file. |
2519:285dfc5bd459 | 09-Aug-2023 |
Andrew Clayton |
Wasm: Add support for directory access.
Due to the sandboxed nature of WebAssembly, by default WASM modules don't have any access to the underlying filesystem.
There is however a capabilities based
Wasm: Add support for directory access.
Due to the sandboxed nature of WebAssembly, by default WASM modules don't have any access to the underlying filesystem.
There is however a capabilities based mechanism[0] for allowing such access.
This adds a config option to the 'wasm' application type; 'access.filesystem' which takes an array of directory paths that are then made available to the WASM module. This access works recursively, i.e everything under a specific path is allowed access to.
Example config might look like
"access" { "filesystem": [ "/tmp", "/var/tmp" ] }
The actual mechanism used allows directories to be mapped differently in the guest. But at the moment we don't support that and just map say /tmp to /tmp. This can be revisited if it's something users clamour for.
Network sockets are another resource that may be controlled in this manner, for example there is a wasi_config_preopen_socket() function, however this requires the runtime to open the network socket then effectively pass this through to the guest.
This is something that can be revisited in the future if users desire it.
[0]: <https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-capabilities.md>
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2518:b2f9d61b2799 | 09-Aug-2023 |
Andrew Clayton |
Wasm: Wire up Wasm language module support to the config system.
This exposes various WebAssembly language module specific options.
The application type is "wasm".
There is a "module" option that
Wasm: Wire up Wasm language module support to the config system.
This exposes various WebAssembly language module specific options.
The application type is "wasm".
There is a "module" option that is required, this specifies the full path to the WebAssembly module to be run. This module should be in binary format, i.e a .wasm file.
There are also currently eight function handlers that can be specified. Three of them are _required_
1) request_handler
The main driving function. This may be called multiple times for a single HTTP request if the request is larger than the shared memory.
2) malloc_handler
Used to allocate a chunk of memory at language module startup. This memory is allocated from the WASM modules address space and is what is sued for communicating between the WASM module (the guest) and Unit (the host).
3) free_handler
Used to free the memory from above at language module shutdown.
Then there are the following five _optional_ handlers
1) module_init_handler
If set, called at language module startup.
2) module_end_handler
If set, called at language module shutdown.
3) request_init_handler
If set, called at the start of request. Called only once per HTTP request.
4) request_end_handler
If set, called once all of a request has been sent to the WASM module.
5) response_end_handler
If set, called at the end of a request, once the WASM module has sent all its headers and data.
Example config
"applications": { "luw-echo-request": { "type": "wasm", "module": "/path/to/unit-wasm/examples/c/luw-echo-request.wasm", "request_handler": "luw_request_handler", "malloc_handler": "luw_malloc_handler", "free_handler": "luw_free_handler", "module_init_handler": "luw_module_init_handler", "module_end_handler": "luw_module_end_handler", } }
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2517:161f3197b5b6 | 08-Aug-2023 |
Andrew Clayton |
Wasm: Wire the Wasm language module up to the build system.
This allows to configure the Wasm module, e.g
./configure wasm --include-path=/path/to/wasmtime-v11.0.0-x86_64-linux-c-api/include --li
Wasm: Wire the Wasm language module up to the build system.
This allows to configure the Wasm module, e.g
./configure wasm --include-path=/path/to/wasmtime-v11.0.0-x86_64-linux-c-api/include --lib-path=/path/to/wasmtime-v11.0.0-x86_64-linux-c-api/lib --rpath
--rpath as above says to set the rpath to the value of --lib-path. You can alternatively specify a directory to use as the rpath. Or simply omit the option to not have an rpath set.
This is mostly useful for during development where you may not have the Wasmtime stuff installed to system directories or you want to test with newer/different versions.
See ./configure wasm --help for a full list of options.
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2516:fe3712cb1556 | 08-Aug-2023 |
Andrew Clayton |
Wasm: Add the core of initial WebAssembly language module support.
This adds the core of runtime WebAssembly[0] support. Future commits will enable this in the Unit core and expose the configuration
Wasm: Add the core of initial WebAssembly language module support.
This adds the core of runtime WebAssembly[0] support. Future commits will enable this in the Unit core and expose the configuration.
This introduces a new src/wasm directory for storing this source.
We are initially using Wasmtime[0] as the WebAssembly runtime, however this has been designed with the ability to use different runtimes in mind.
src/wasm/nxt_wasm.[ch] is the main interface to Unit.
src/wasm/nxt_rt_wasmtime.c is the Wasmtime runtime support. This is nicely insulated from any knowledge of internal Unit workings.
Wasmtime is what loads and runs the Wasm modules.
The Wasm modules can export functions Wasmtime can call and Wasmtime can export functions that the module can call.
We make use of both. The terminology used is that function exports are what the Wasm module exports and function imports are what the Wasm runtime exports to the module.
We currently have four function imports (functions exported by the runtime to be called by the Wasm module).
1) nxt_wasm_get_init_mem_size
This allows Wasm modules to get the size of the initially allocated shared memory. This is the size allocated at Unit startup and what the Wasm modules can assume they have access to (in reality this shared memory will likely be larger).
The amount of memory allocated at startup is NXT_WASM_MEM_SIZE which as of this commit is 32MiB.
We do actually allocate NXT_WASM_MEM_SIZE + NXT_WASM_PAGE_SIZE at startup which is an extra 64KiB (the smallest allocation unit), this is to allow room for the response structure and so module developers can just assume they have the full 32MiB for their actual response.
2) nxt_wasm_send_headers
This allows WASM modules to send their headers.
3) nxt_wasm_send_response
This allows WASM modules to send their response.
4) nxt_wasm_response_end
This allows WASM modules to inform Unit they have finished sending their response. This calls nxt_unit_request_done()
Then there are currently up to eight functions that a module can export. Three of which are required. These function can be named anything. I'll use the Unit configuration names to refer to them
1) request_handler
The main driving function. This may be called multiple times for a single HTTP request if the request is larger than the shared memory.
2) malloc_handler
Used to allocate a chunk of memory at language module startup. This memory is allocated from the WASM modules address space and is what is sued for communicating between the WASM module (the guest) and Unit (the host).
3) free_handler
Used to free the memory from above at language module shutdown.
Then there are the following optional handlers
1) module_init_handler
If set, called at language module startup.
2) module_end_handler
If set, called at language module shutdown.
3) request_init_handler
If set, called at the start of request. Called only once per HTTP request.
4) request_end_handler
If set, called once all of a request has been sent to the WASM module.
5) response_end_handler
If set, called at the end of a request, once the WASM module has sent all its headers and data.
32bits
We currently support 32bit WASM modules, I.e wasm32-wasi. Newer version of clang, 13+[2], do seem to have support for wasm64 as a target (which uses a LP64 model). However it's not entirely clear if the WASI SDK fully supports[3] this and by extension WASI libc/wasi-sysroot.
64bit support is something than can be explored more thoroughly in the future.
As such in structures that are used to communicate between the host and guest we use 32bit ints. Even when a single byte might be enough. This is to avoid issues with structure layout differences between a 64bit host and 32bit guest (I.e WASM module) and the need for various bits of structure padding depending on host architecture. Instead everything is 4-byte aligned.
[0]: <https://webassembly.org/> [1]: <https://wasmtime.dev/> [2]: <https://reviews.llvm.org/rG670944fb20b226fc22fa993ab521125f9adbd30a> [3]: <https://github.com/WebAssembly/wasi-sdk/issues/185>
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2515:16c374b886a8 | 08-Aug-2023 |
Andrew Clayton |
Wasm: Add core configuration data structure.
This is required to actually _build_ the Wasm language module.
The nxt_wasm_app_conf_t structure consists of the modules name, e.g wasm, then the three
Wasm: Add core configuration data structure.
This is required to actually _build_ the Wasm language module.
The nxt_wasm_app_conf_t structure consists of the modules name, e.g wasm, then the three required function handlers followed by the five optional function handlers.
See the next commit for details of these function handlers.
We also need to include the u.wasm union entry that provides access to the above structure.
The bulk of the configuration infrastructure will be added in a subsequent commit.
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2514:acf9124e6eed | 09-Aug-2023 |
Andrew Clayton |
Wasm: Register a new WebAssembly language module type.
This is the first patch in adding WebAssembly language module support.
This just adds a new NXT_APP_WASM type, required by subsequent commits.
Wasm: Register a new WebAssembly language module type.
This is the first patch in adding WebAssembly language module support.
This just adds a new NXT_APP_WASM type, required by subsequent commits.
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2513:f0a7050fd4aa | 07-Aug-2023 |
Andrew Clayton |
Index initialise the nxt_app_msg_prefix array.
This makes it much more clear what's what.
This is in preparation for adding WebAssembly language module support.
Reviewed-by: Alejandro Colomar <alx
Index initialise the nxt_app_msg_prefix array.
This makes it much more clear what's what.
This is in preparation for adding WebAssembly language module support.
Reviewed-by: Alejandro Colomar <alx@nginx.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
show more ...
|
2512:5e9e70378c1d | 09-Aug-2023 |
Zhidao HONG |
HTTP: controlling response headers support. |
2511:f4e6a9834a2b | 09-Aug-2023 |
Zhidao HONG |
HTTP: stored matched action in nxt_http_request_t.
No functional changes. |
2510:f5a5a487a669 | 11-Jul-2023 |
Konstantin Pavlov |
NJS: explicitely require 0.8.0 or later versions in configure. |
2509:6f49a1c481b8 | 25-Jul-2023 |
Artem Konev <41629299+artemkonev@users.noreply.github.com> |
Update README.md for Docker Official Image.
[Liam: rewrote commit message] Acked-by: Liam Crilly <liam@nginx.com> Cc: Andrew Clayton <a.clayton@nginx.com> Signed-off-by: Alejandro Colomar <alx@nginx
Update README.md for Docker Official Image.
[Liam: rewrote commit message] Acked-by: Liam Crilly <liam@nginx.com> Cc: Andrew Clayton <a.clayton@nginx.com> Signed-off-by: Alejandro Colomar <alx@nginx.com>
show more ...
|