/src/ngx_http_php_keepalive.c

https://github.com/rryqszq4/ngx_php7 · C · 219 lines · 140 code · 52 blank · 27 comment · 23 complexity · 76a245caefcb7ab673c0105f59880447 MD5 · raw file

  1. /*
  2. ==============================================================================
  3. Copyright (c) 2016-2020, rryqszq4 <rryqszq@gmail.com>
  4. All rights reserved.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions are met:
  7. * Redistributions of source code must retain the above copyright notice, this
  8. list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright notice,
  10. this list of conditions and the following disclaimer in the documentation
  11. and/or other materials provided with the distribution.
  12. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  13. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  14. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  15. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  16. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  17. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  18. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  19. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  20. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  21. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  22. ==============================================================================
  23. */
  24. #include "ngx_http_php_module.h"
  25. #include "ngx_http_php_keepalive.h"
  26. ngx_int_t
  27. ngx_http_php_keepalive_init(ngx_pool_t *pool, ngx_http_php_keepalive_conf_t *kc)
  28. {
  29. ngx_http_php_keepalive_cache_t *cached;
  30. ngx_uint_t i;
  31. cached = ngx_pcalloc(pool, sizeof(ngx_http_php_keepalive_cache_t) * kc->max_cached);
  32. if ( cached == NULL ) {
  33. return NGX_ERROR;
  34. }
  35. ngx_queue_init(&kc->cache);
  36. ngx_queue_init(&kc->free);
  37. for (i = 0; i < kc->max_cached; i++) {
  38. ngx_queue_insert_head(&kc->free, &cached[i].queue);
  39. cached[i].keepalilve_conf = kc;
  40. }
  41. return NGX_OK;
  42. }
  43. ngx_int_t
  44. ngx_http_php_keepalive_get_peer(ngx_peer_connection_t *pc, void *data)
  45. {
  46. ngx_http_php_keepalive_cache_t *item;
  47. ngx_http_php_keepalive_conf_t *kc = data;
  48. ngx_queue_t *q, *cache;
  49. ngx_connection_t *c;
  50. cache = &kc->cache;
  51. ngx_php_debug("get_peer");
  52. for (q = ngx_queue_head(cache);
  53. q != ngx_queue_sentinel(cache);
  54. q = ngx_queue_next(q))
  55. {
  56. item = ngx_queue_data(q, ngx_http_php_keepalive_cache_t, queue);
  57. c = item->connection;
  58. if (ngx_memn2cmp((u_char *) &item->sockaddr, (u_char *) pc->sockaddr, item->socklen, pc->socklen) == 0)
  59. {
  60. ngx_php_debug("get_cache_peer");
  61. ngx_queue_remove(q);
  62. ngx_queue_insert_head(&kc->free, q);
  63. c->idle = 0;
  64. c->log = pc->log;
  65. #if defined(nginx_version) && (nginx_version >= 1001004)
  66. c->pool->log = pc->log;
  67. #endif
  68. c->read->log = pc->log;
  69. c->write->log = pc->log;
  70. pc->connection = c;
  71. pc->cached = 1;
  72. if (ngx_add_event(c->read, NGX_READ_EVENT, NGX_CLEAR_EVENT) == NGX_ERROR){
  73. return NGX_ERROR;
  74. }
  75. return NGX_DONE;
  76. }
  77. }
  78. return NGX_OK;
  79. }
  80. void
  81. ngx_http_php_keepalive_free_peer(ngx_peer_connection_t *pc, void *data, ngx_uint_t state)
  82. {
  83. ngx_http_php_keepalive_cache_t *item;
  84. ngx_http_php_keepalive_conf_t *kc = data;
  85. ngx_queue_t *q;
  86. ngx_connection_t *c;
  87. if (state & NGX_PEER_FAILED) {
  88. }
  89. c = pc->connection;
  90. if (ngx_handle_read_event(c->read, 0) != NGX_OK) {
  91. return ;
  92. }
  93. ngx_php_debug("free_peer");
  94. if (ngx_queue_empty(&kc->free)) {
  95. q = ngx_queue_last(&kc->cache);
  96. ngx_queue_remove(q);
  97. item = ngx_queue_data(q, ngx_http_php_keepalive_cache_t, queue);
  98. ngx_http_php_keepalive_close(item->connection);
  99. }else {
  100. q = ngx_queue_head(&kc->free);
  101. ngx_queue_remove(q);
  102. item = ngx_queue_data(q, ngx_http_php_keepalive_cache_t, queue);
  103. }
  104. ngx_queue_insert_head(&kc->cache, q);
  105. item->connection = c;
  106. pc->connection = NULL;
  107. if (c->read->timer_set) {
  108. ngx_del_timer(c->read);
  109. }
  110. if (c->write->timer_set) {
  111. ngx_del_timer(c->write);
  112. }
  113. c->write->handler = ngx_http_php_keepalive_dummy_handler;
  114. c->read->handler = ngx_http_php_keepalive_close_handler;
  115. c->data = item;
  116. c->idle = 1;
  117. c->log = ngx_cycle->log;
  118. c->read->log = ngx_cycle->log;
  119. c->write->log = ngx_cycle->log;
  120. c->pool->log = ngx_cycle->log;
  121. item->socklen = pc->socklen;
  122. ngx_memcpy(&item->sockaddr, pc->sockaddr, pc->socklen);
  123. }
  124. void
  125. ngx_http_php_keepalive_dummy_handler(ngx_event_t *ev)
  126. {
  127. ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ev->log, 0,
  128. "php keepalive dummy handler");
  129. ngx_php_debug("php keepalive dummy handler");
  130. }
  131. void
  132. ngx_http_php_keepalive_close_handler(ngx_event_t *ev)
  133. {
  134. ngx_http_php_keepalive_cache_t *item;
  135. ngx_http_php_keepalive_conf_t *kc;
  136. int n;
  137. char buf[1];
  138. ngx_connection_t *c;
  139. c = ev->data;
  140. if (c->close) {
  141. goto close;
  142. }
  143. n = recv(c->fd, buf, 1, MSG_PEEK);
  144. if (n == -1 && ngx_socket_errno == NGX_EAGAIN) {
  145. ev->ready = 0;
  146. if (ngx_handle_read_event(c->read, 0) != NGX_OK) {
  147. goto close;
  148. }
  149. return;
  150. }
  151. close:
  152. item = c->data;
  153. kc = item->keepalilve_conf;
  154. ngx_http_php_keepalive_close(c);
  155. ngx_queue_remove(&item->queue);
  156. ngx_queue_insert_head(&kc->free, &item->queue);
  157. }
  158. void
  159. ngx_http_php_keepalive_close(ngx_connection_t *c)
  160. {
  161. ngx_destroy_pool(c->pool);
  162. ngx_close_connection(c);
  163. }