comparison src/os/unix/ngx_os.h @ 9270:3d455e37abf8

Core: PID file writing synchronization. Now, ngx_daemon() does not call exit() in the parent process immediately, but instead waits for the child process to signal it actually started (and wrote the PID file if configured to). This ensures that the PID file already exists when the parent process exits. To make sure that signal handlers won't cause unexpected logging in the parent process if the child process dies (for example, due to errors when writing the PID file), ngx_init_signals() is moved to the child process. This resolves "PID file ... not readable (yet?) after start" and "Failed to parse PID from file..." errors as observed with systemd. Note that the errors observed are considered to be a bug in systemd, which isn't able to work properly with traditional Unix daemons. Still, the workaround is implemented to make sure there will be no OS vendor patches trying to address this.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 13 May 2024 06:13:22 +0300
parents 56fc55e32f23
children
comparison
equal deleted inserted replaced
9269:4eb02e5ddb48 9270:3d455e37abf8
38 ngx_int_t ngx_os_init(ngx_log_t *log); 38 ngx_int_t ngx_os_init(ngx_log_t *log);
39 void ngx_os_status(ngx_log_t *log); 39 void ngx_os_status(ngx_log_t *log);
40 ngx_int_t ngx_os_specific_init(ngx_log_t *log); 40 ngx_int_t ngx_os_specific_init(ngx_log_t *log);
41 void ngx_os_specific_status(ngx_log_t *log); 41 void ngx_os_specific_status(ngx_log_t *log);
42 ngx_int_t ngx_daemon(ngx_log_t *log); 42 ngx_int_t ngx_daemon(ngx_log_t *log);
43 ngx_int_t ngx_daemon_sync(ngx_log_t *log);
43 ngx_int_t ngx_os_signal_process(ngx_cycle_t *cycle, char *sig, ngx_pid_t pid); 44 ngx_int_t ngx_os_signal_process(ngx_cycle_t *cycle, char *sig, ngx_pid_t pid);
44 45
45 46
46 ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size); 47 ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
47 ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry, off_t limit); 48 ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry, off_t limit);