]> git.pld-linux.org Git - packages/php.git/blob - php-fcgi-graceful.patch
- up to 8.0.7; soname to reflect that this is php 8
[packages/php.git] / php-fcgi-graceful.patch
1 Related links:
2
3 http://bugs.php.net/bug.php?id=43224 this patch
4
5 http://bugs.php.net/bug.php?id=41593
6 http://bugs.php.net/bug.php?id=36158
7 http://php-fpm.anight.org/
8
9 test script too:
10 <?php
11 echo php_sapi_name(), ' running ', PHP_VERSION, "<br>\n";
12 $i = 0;
13 while ($i < 35) {
14     echo (++$i), "<br>\n";
15     flush();
16     sleep(1);
17 }
18 echo "end!<br>\n";
19 ?>
20
21 --- php-7.1.0alpha2/sapi/cgi/cgi_main.c~        2016-07-04 14:56:49.000000000 +0300
22 +++ php-7.1.0alpha2/sapi/cgi/cgi_main.c 2016-07-04 14:58:17.522958766 +0300
23 @@ -101,6 +101,9 @@
24   */
25  static int parent = 1;
26  
27 +/* Socket we are listening on incoming connections */
28 +static int fcgi_fd = 0;
29 +
30  #ifndef PHP_WIN32
31  /* Did parent received exit signals SIG_TERM/SIG_INT/SIG_QUIT */
32  static int exit_signal = 0;
33 @@ -1221,6 +1224,21 @@
34  }
35  #endif
36  
37 +/**
38 + * Graceful shutdown. Close listening sockets.
39 + */
40 +void fastcgi_graceful_shutdown(int signal)
41 +{
42 +#ifdef DEBUG_FASTCGI
43 +       fprintf(stderr, "FastCGI graceful shutdown, pid %d\n", getpid());
44 +#endif
45 +
46 +       /* Close the listening socket so new processes can reuse the same port */
47 +       closesocket(fcgi_fd);
48 +       fcgi_fd = 0;
49 +}
50 +
51 +
52  PHP_INI_BEGIN()
53         STD_PHP_INI_BOOLEAN("cgi.rfc2616_headers",     "0",  PHP_INI_ALL,    OnUpdateBool,   rfc2616_headers, php_cgi_globals_struct, php_cgi_globals)
54         STD_PHP_INI_BOOLEAN("cgi.nph",                 "0",  PHP_INI_ALL,    OnUpdateBool,   nph, php_cgi_globals_struct, php_cgi_globals)
55 @@ -1764,7 +1764,6 @@
56         int requests = 0;
57         int fastcgi;
58         char *bindpath = NULL;
59 -       int fcgi_fd = 0;
60         fcgi_request *request = NULL;
61         int warmup_repeats = 0;
62         int repeats = 1;
63 @@ -2080,9 +2080,14 @@
64                                                 parent = 0;
65  
66                                                 /* don't catch our signals */
67 -                                               sigaction(SIGTERM, &old_term, 0);
68                                                 sigaction(SIGQUIT, &old_quit, 0);
69                                                 sigaction(SIGINT,  &old_int,  0);
70 +
71 +                                               /* call graceful shutdown handler for SIGTERM */
72 +                                               act.sa_flags = 0;
73 +                                               act.sa_handler = fastcgi_graceful_shutdown;
74 +                                               sigaction(SIGTERM, &act, &old_term);
75 +
76                                                 zend_signal_init();
77                                                 break;
78                                         case -1:
This page took 0.051521 seconds and 3 git commands to generate.