summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2021-07-29Application restart introduced.Max Romanov10-41/+454
When processing a restart request, the router sends a QUIT message to all existing processes of the application. Then, a new shared application port is created to ensure that new requests won't be handled by the old processes of the application.
2021-07-24Router: split nxt_http_app_conf_t from nxt_http_action_t.Zhidao HONG5-43/+45
No functional changes.
2021-07-26Router: renamed nxt_http_proxy_create() as nxt_http_proxy_init().Zhidao HONG3-18/+17
No functional changes.
2021-07-23Router: split nxt_http_static_conf_t from nxt_http_action_t.Zhidao HONG5-173/+198
No functional changes.
2021-07-23Tests: added SNI test without hostname in request.Andrei Zeliankou2-1/+21
2021-07-22Changing SNI callback return code if a client sends no SNI.Andrey Suvorov2-5/+13
When a client sends no SNI is a common situation. But currently the server processes it as an error and returns SSL_TLSEXT_ERR_ALERT_FATAL causing termination of a current TLS session. The problem occurs if configuration has more than one certificate bundle in a listener. This fix changes the return code to SSL_TLSEXT_ERR_OK and the log level of a message.
2021-07-21Enabling configure TLS sessions.Andrey Suvorov5-22/+142
To support TLS sessions, Unit uses the OpenSSL built-in session cache; the cache_size option defines the number sessions to store. To disable the feather, the option must be zero.
2021-07-21Tests: use mutex with multitthreaded Ruby hooks.Oisin Canty3-3/+15
This commit fixes a rare crash that can occur when File.write is called by many threads.
2021-07-20Python: using default event_loop for main thread for ASGI.Max Romanov4-16/+22
Unit's ASGI implementation creates a new event loop to run an application for each thread since 542b5b8c0647. This may cause unexpected exceptions or strange bugs if asyncio synchronisation primitives are initialised before the application starts (e.g. globally). Although the approach with a new event loop for the main thread is consistent and helps to prepare the application to run in multiple threads, it can be a source of pain for people who just want to run single-threaded ASGI applications in Unit. This is related to #560 issue on GitHub.
2021-07-20Python: fixing exceptions in Future.set_result for ASGI implementation.Max Romanov1-23/+32
An ASGI application can cancel the Future object returned by the receive() call. In this case, Unit's ASGI implementation should not call set_result() because the Future is already handled. In particular, the Starlette framework was noted to cancel the received Future. This patch adds a done() check for the Future before attempting a set_result(). This is related to #564 issue on GitHub.
2021-07-20Python: fixing ASGI receive() issues.Max Romanov2-33/+61
The receive() call never blocks for a GET request and always returns the same empty body message. The Starlette framework creates a separate task when receive() is called in a loop until an 'http.disconnect' message is received. The 'http.disconnect' message was previously issued after the response header had been sent. However, the correct behavior is to respond with 'http.disconnect' after sending the response is complete. This closes #564 issue on GitHub.
2021-07-19Router: fixing assertion on app thread port handle.Max Romanov2-8/+17
A new application thread port message can be processed in the router after the application is removed from the router. Assertion for this case is replaced by a condition to store the new thread port until receiving the stop notification from the application process.
2021-07-06Tests: print_log_on_assert() decorator introduced.Andrei Zeliankou1-73/+82
2021-07-03Tests: address configuration tests reworked.Andrei Zeliankou1-58/+21
2021-07-02Tests: Ruby hooks.Oisin Canty11-22/+183
2021-07-02Tests: run Ruby applications inside temporary directory.Oisin Canty3-10/+20
2021-07-02Ruby: process and thread lifecycle hooks.Oisin Canty5-1/+157
This feature allows one to specify blocks of code that are called when certain lifecycle events occur. A user configures a "hooks" property on the app configuration that points to a script. This script will be evaluated on boot and should contain blocks of code that will be called on specific events. An example of configuration: { "type": "ruby", "processes": 2, "threads": 2, "user": "vagrant", "group": "vagrant", "script": "config.ru", "hooks": "hooks.rb", "working_directory": "/home/vagrant/unit/rbhooks", "environment": { "GEM_HOME": "/home/vagrant/.ruby" } } An example of a valid "hooks.rb" file follows: File.write("./hooks.#{Process.pid}", "hooks evaluated") on_worker_boot do File.write("./worker_boot.#{Process.pid}", "worker booted") end on_thread_boot do File.write("./thread_boot.#{Process.pid}.#{Thread.current.object_id}", "thread booted") end on_thread_shutdown do File.write("./thread_shutdown.#{Process.pid}.#{Thread.current.object_id}", "thread shutdown") end on_worker_shutdown do File.write("./worker_shutdown.#{Process.pid}", "worker shutdown") end This closes issue #535 on GitHub.
2021-07-02Fixing crash during IPv6 text address generation.Oisin Canty2-2/+9
When the textual representation of an IPv6 nxt_sockaddr_t was being generated, a crash would occur if the address had a full IPv6 form: f607:7403:1e4b:6c66:33b2:843f:2517:da27 This was caused by a variable that tracks the location of a collapsed group ("::") that was not set to a sane default. When the address was generated, a group would be inserted when it was not necessary, thus causing an overflow. This closes #481 issue on GitHub.
2021-07-01Deduplicating code for closing fds in nxt_port_send_msg_t.Max Romanov1-39/+25
2021-07-01Fixing memory and descriptor leakage in case of port send failure.Max Romanov2-7/+32
In rare cases, when the destination process had finished running but no notification of this was received yet, send could fail with an error, and the send message structure with file descriptors could leak. The leakage was periodically reproduced by respawn tests on FreeBSD 12.
2021-07-01Tests: fixing racing condition in respawn tests.Max Romanov1-5/+10
A race may occur between the router process restart and the main process sending a notification to the running controller. For example, a test script detects the new process and starts performing a smoke test, but the controller has not yet received the 'remove PID' notification, so the connection to the router is broken and any attempt to update the configuration will cause an error. The solution is to perform several attempts to reconfigure Unit with a short delay between failures.
2021-07-01Ruby: improved logging of exceptions without backtraces.Oisin Canty1-4/+8
If an exception was raised with a backtrace of zero length, the nxt_ruby_exception_log() routine would return without logging the exception class and message. This commit fixes the issue.
2021-07-01Fixing multiple TLS-enabled listeners initialization.Max Romanov3-6/+25
Because of the incorrect 'last' field assignment, multiple listeners with a TLS certificate did not initialize properly, which caused a router crash while establishing a connection. Test with multiple TLS listeners added. The issue was introduced in the c548e46fe516 commit. This closes #561 issue on GitHub.
2021-05-24Router: split nxt_http_return_conf_t from nxt_http_action_t.Zhidao HONG3-101/+132
No functional changes.
2021-06-28Tests: renamed share to static.Andrei Zeliankou8-62/+57
Also minor style changes.
2021-06-24Tests: chroot test with permissions skipped under root.Andrei Zeliankou1-1/+4
2021-06-15Node.js: improving and test packaging.Max Romanov2-24/+5
The patch removes the "files" section from package.json to avoid future issues with missing files. For package testing purposes, 'npm pack' is used instead of plain 'tar' to simulate packaging more accurately.
2021-06-02Node.js: packaging new loader.js and loader.mjs.Max Romanov1-0/+2
The files loader.js and loader.mjs (introduced in f85b85094541 and 3c551b9721df) were added to the packaged files list.
2021-05-28Version bump.Valentin Bartenev2-2/+31
2021-05-27Unit 1.24.0 release.Valentin Bartenev1-0/+1
2021-05-27Generated Dockerfiles for Unit 1.24.0.1.24.0Valentin Bartenev8-8/+8
2021-05-27Added version 1.24.0 CHANGES.Valentin Bartenev2-4/+32
2021-05-27Reordered changes for 1.24.0 by significance (subjective).Valentin Bartenev1-6/+6
2021-05-27Grammar fixes and improvements in changes.xml.Artem Konev1-5/+6
2021-05-27Tests: added tests for TLS "conf_commands" option.Andrei Zeliankou1-0/+112
2021-05-27Packages: added Ubuntu 21.04 "hirsute" support.Andrei Belov10-3/+279
2021-05-26Tests: added TLS test without close notify.Andrei Zeliankou1-0/+23
2021-05-26Enabling SSL_CTX configuration by using SSL_CONF_cmd().Andrey Suvorov6-61/+215
To perform various configuration operations on SSL_CTX, OpenSSL provides SSL_CONF_cmd(). Specifically, to configure ciphers for a listener, "CipherString" and "Ciphersuites" file commands are used: https://www.openssl.org/docs/man1.1.1/man3/SSL_CONF_cmd.html This feature can be configured in the "tls/conf_commands" section.
2021-05-26Fixing crash during TLS connection shutdown.Andrey Suvorov5-6/+35
A crash was caused by an incorrect timer handler nxt_h1p_idle_timeout() if SSL_shutdown() returned SSL_ERROR_WANT_READ/SSL_ERROR_WANT_WRITE. The flag SSL_RECEIVED_SHUTDOWN is used to avoid getting SSL_ERROR_WANT_READ, so the server won't wait for a close notification from a client. For SSL_ERROR_WANT_WRITE, a correct timer handler is set up.
2021-05-26Static: handled unknown MIME types when MIME-filtering active.Oisin Canty3-20/+16
2021-05-26MIME: added PHP.Oisin Canty2-0/+8
2021-05-25Fixing racing condition on listen socket close in router (v2).Max Romanov1-5/+5
This patch fixes a possible race between the nxt_router_conf_wait() and nxt_router_listen_socket_release() function calls and improves the 7f1b2eaa2d58 commit fix.
2021-05-25Go: fixing tests for Go 1.16.Max Romanov3-1/+3
In Go 1.16, the module-aware mode is enabled by default; to fall back to previous behavior, the GO111MODULE environment variable should be set to 'auto'. Details: https://golang.org/doc/go1.16
2021-05-25Configuration: generalized application "targets" validation.Oisin Canty1-110/+68
2021-05-24Tests: added additional check in tests with timeouts.Andrei Zeliankou1-76/+119
2021-05-24Tests: test_settings_send_timeout improved.Andrei Zeliankou3-8/+34
Data length adjusts depending on socket buffer size when it's possible.
2021-05-24Node.js: renamed "require_shim" to "loader".Oisin Canty15-16/+16
2021-05-24Tests: minor fixes.Andrei Zeliankou2-77/+25
2021-05-21PHP: adopted "file_handle" to Zend API changes in 8.1.0-dev.Valentin Bartenev1-0/+10
This fixes building module with the development version of PHP after the change: https://github.com/php/php-src/commit/c732ab400af92c54eee47c487a56009f1d79dd5d
2021-05-20Tests: Python targets.Oisin Canty7-32/+295