passenger 6.0.11 → 6.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (359) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +83 -1
  3. data/CONTRIBUTORS +3 -0
  4. data/bin/passenger-install-nginx-module +1 -1
  5. data/bin/passenger-status +29 -4
  6. data/build/test_basics.rb +2 -2
  7. data/dev/copy_boost_headers +30 -15
  8. data/doc/templates/markdown.html.erb +2 -6
  9. data/package.json +19 -17
  10. data/resources/mime.types +1 -0
  11. data/resources/templates/error_renderer/with_details/dist/bundle.js +2 -33
  12. data/resources/templates/error_renderer/with_details/dist/styles.css +2 -2
  13. data/resources/templates/error_renderer/with_details/src/index.html.template +0 -2
  14. data/resources/templates/error_renderer/with_details/webpack.config.js +13 -16
  15. data/resources/templates/error_renderer/without_details/dist/bundle.js +0 -1
  16. data/resources/templates/error_renderer/without_details/dist/styles.css +1 -1
  17. data/resources/templates/error_renderer/without_details/webpack.config.js +13 -16
  18. data/resources/templates/standalone/server.erb +1 -0
  19. data/src/agent/Core/ApiServer.h +35 -0
  20. data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +1 -0
  21. data/src/agent/Core/ApplicationPool/Options.h +5 -0
  22. data/src/agent/Core/ApplicationPool/Pool.h +9 -1
  23. data/src/agent/Core/Config.h +2 -1
  24. data/src/agent/Core/Controller/CheckoutSession.cpp +24 -13
  25. data/src/agent/Core/Controller/Config.h +6 -2
  26. data/src/agent/Core/Controller/InitRequest.cpp +2 -0
  27. data/src/agent/Core/Controller/InternalUtils.cpp +32 -6
  28. data/src/agent/Core/Controller.h +4 -1
  29. data/src/agent/Core/OptionParser.h +4 -0
  30. data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +7 -0
  31. data/src/agent/Core/SpawningKit/Config.h +13 -0
  32. data/src/agent/Core/SpawningKit/Handshake/Prepare.h +4 -0
  33. data/src/agent/Core/SpawningKit/Spawner.h +1 -0
  34. data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +4 -0
  35. data/src/agent/Watchdog/Config.h +2 -1
  36. data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +5 -0
  37. data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +5 -0
  38. data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +18 -0
  39. data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +3 -0
  40. data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +3 -0
  41. data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +11 -0
  42. data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +7 -0
  43. data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +17 -0
  44. data/src/apache2_module/Hooks.cpp +1 -0
  45. data/src/cxx_supportlib/Constants.h +1 -1
  46. data/src/cxx_supportlib/IOTools/IOUtils.cpp +4 -4
  47. data/src/cxx_supportlib/vendor-modified/boost/align/align.hpp +19 -0
  48. data/src/cxx_supportlib/vendor-modified/boost/align/aligned_alloc.hpp +47 -0
  49. data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of.hpp +54 -0
  50. data/src/cxx_supportlib/vendor-modified/boost/align/alignment_of_forward.hpp +20 -0
  51. data/src/cxx_supportlib/vendor-modified/boost/align/detail/align_cxx11.hpp +21 -0
  52. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc.hpp +52 -0
  53. data/src/cxx_supportlib/vendor-modified/boost/align/detail/aligned_alloc_posix.hpp +41 -0
  54. data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of.hpp +31 -0
  55. data/src/cxx_supportlib/vendor-modified/boost/align/detail/alignment_of_cxx11.hpp +23 -0
  56. data/src/cxx_supportlib/vendor-modified/boost/align/detail/element_type.hpp +91 -0
  57. data/src/cxx_supportlib/vendor-modified/boost/align/detail/integral_constant.hpp +53 -0
  58. data/src/cxx_supportlib/vendor-modified/boost/align/detail/is_alignment.hpp +28 -0
  59. data/src/cxx_supportlib/vendor-modified/boost/align/detail/min_size.hpp +26 -0
  60. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_allocator.hpp +53 -1
  61. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_cancellation_slot.hpp +179 -0
  62. data/src/cxx_supportlib/vendor-modified/boost/asio/associated_executor.hpp +57 -1
  63. data/src/cxx_supportlib/vendor-modified/boost/asio/associator.hpp +37 -0
  64. data/src/cxx_supportlib/vendor-modified/boost/asio/async_result.hpp +789 -106
  65. data/src/cxx_supportlib/vendor-modified/boost/asio/awaitable.hpp +1 -1
  66. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_datagram_socket.hpp +80 -0
  67. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_deadline_timer.hpp +10 -0
  68. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_raw_socket.hpp +80 -0
  69. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_seq_packet_socket.hpp +30 -0
  70. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket.hpp +20 -0
  71. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_socket_acceptor.hpp +90 -0
  72. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_stream_socket.hpp +60 -0
  73. data/src/cxx_supportlib/vendor-modified/boost/asio/basic_waitable_timer.hpp +10 -0
  74. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_cancellation_slot.hpp +723 -0
  75. data/src/cxx_supportlib/vendor-modified/boost/asio/bind_executor.hpp +191 -12
  76. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_signal.hpp +361 -0
  77. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_state.hpp +237 -0
  78. data/src/cxx_supportlib/vendor-modified/boost/asio/cancellation_type.hpp +176 -0
  79. data/src/cxx_supportlib/vendor-modified/boost/asio/co_spawn.hpp +30 -2
  80. data/src/cxx_supportlib/vendor-modified/boost/asio/connect.hpp +60 -0
  81. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/base_from_cancellation_state.hpp +165 -0
  82. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/bind_handler.hpp +209 -76
  83. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/config.hpp +149 -60
  84. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/deadline_timer_service.hpp +40 -0
  85. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/dev_poll_reactor.hpp +8 -4
  86. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/epoll_reactor.hpp +14 -4
  87. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/functional.hpp +6 -0
  88. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_alloc_helpers.hpp +14 -10
  89. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_type_requirements.hpp +21 -18
  90. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/handler_work.hpp +30 -19
  91. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.hpp +8 -0
  92. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/dev_poll_reactor.ipp +14 -0
  93. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.hpp +20 -0
  94. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/epoll_reactor.ipp +30 -0
  95. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.hpp +20 -0
  96. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/kqueue_reactor.ipp +29 -0
  97. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.hpp +24 -0
  98. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/select_reactor.ipp +19 -0
  99. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/strand_executor_service.hpp +3 -1
  100. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/impl/timer_queue_ptime.ipp +6 -0
  101. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/kqueue_reactor.hpp +15 -5
  102. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/memory.hpp +60 -0
  103. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/pop_options.hpp +8 -0
  104. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/push_options.hpp +27 -0
  105. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_descriptor_service.hpp +93 -0
  106. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service.hpp +77 -0
  107. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactive_socket_service_base.hpp +111 -0
  108. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op.hpp +4 -0
  109. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/reactor_op_queue.hpp +44 -0
  110. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/recycling_allocator.hpp +2 -1
  111. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/resolve_endpoint_op.hpp +2 -2
  112. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/select_reactor.hpp +14 -4
  113. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/thread_info_base.hpp +90 -24
  114. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue.hpp +30 -1
  115. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/timer_queue_ptime.hpp +4 -0
  116. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/wait_op.hpp +5 -1
  117. data/src/cxx_supportlib/vendor-modified/boost/asio/detail/work_dispatcher.hpp +5 -2
  118. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/any_executor.hpp +12 -12
  119. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/bulk_execute.hpp +10 -8
  120. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/connect.hpp +8 -8
  121. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/execute.hpp +7 -7
  122. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/schedule.hpp +7 -7
  123. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_done.hpp +7 -7
  124. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_error.hpp +7 -7
  125. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/set_value.hpp +13 -13
  126. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/start.hpp +7 -7
  127. data/src/cxx_supportlib/vendor-modified/boost/asio/execution/submit.hpp +8 -8
  128. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/append.hpp +73 -0
  129. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/as_tuple.hpp +133 -0
  130. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/awaitable_operators.hpp +538 -0
  131. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/cancellation_condition.hpp +157 -0
  132. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/coro.hpp +1057 -0
  133. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/deferred.hpp +607 -0
  134. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/completion_handler_erasure.hpp +160 -0
  135. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_promise_allocator.hpp +120 -0
  136. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/coro_traits.hpp +185 -0
  137. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/detail/partial_promise.hpp +181 -0
  138. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/append.hpp +219 -0
  139. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_single.hpp +14 -28
  140. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/as_tuple.hpp +248 -0
  141. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/deferred.hpp +106 -0
  142. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/parallel_group.hpp +434 -0
  143. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/prepend.hpp +219 -0
  144. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/impl/promise.hpp +100 -0
  145. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/parallel_group.hpp +217 -0
  146. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/prepend.hpp +73 -0
  147. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/promise.hpp +608 -0
  148. data/src/cxx_supportlib/vendor-modified/boost/asio/experimental/use_coro.hpp +284 -0
  149. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/awaitable.hpp +344 -20
  150. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_read_stream.hpp +23 -54
  151. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/buffered_write_stream.hpp +23 -54
  152. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/co_spawn.hpp +66 -18
  153. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/compose.hpp +55 -5
  154. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/connect.hpp +68 -80
  155. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/defer.hpp +8 -4
  156. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/dispatch.hpp +8 -4
  157. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/handler_alloc_hook.ipp +3 -2
  158. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/post.hpp +8 -4
  159. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read.hpp +98 -113
  160. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_at.hpp +71 -82
  161. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/read_until.hpp +210 -266
  162. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/redirect_error.hpp +248 -30
  163. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/spawn.hpp +11 -21
  164. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/use_awaitable.hpp +15 -3
  165. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write.hpp +71 -87
  166. data/src/cxx_supportlib/vendor-modified/boost/asio/impl/write_at.hpp +46 -68
  167. data/src/cxx_supportlib/vendor-modified/boost/asio/io_context.hpp +4 -4
  168. data/src/cxx_supportlib/vendor-modified/boost/asio/local/detail/impl/endpoint.ipp +2 -7
  169. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_descriptor.hpp +10 -0
  170. data/src/cxx_supportlib/vendor-modified/boost/asio/posix/basic_stream_descriptor.hpp +23 -3
  171. data/src/cxx_supportlib/vendor-modified/boost/asio/prefer.hpp +21 -21
  172. data/src/cxx_supportlib/vendor-modified/boost/asio/query.hpp +9 -9
  173. data/src/cxx_supportlib/vendor-modified/boost/asio/read.hpp +88 -0
  174. data/src/cxx_supportlib/vendor-modified/boost/asio/read_at.hpp +44 -0
  175. data/src/cxx_supportlib/vendor-modified/boost/asio/read_until.hpp +132 -0
  176. data/src/cxx_supportlib/vendor-modified/boost/asio/require.hpp +21 -21
  177. data/src/cxx_supportlib/vendor-modified/boost/asio/require_concept.hpp +9 -9
  178. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/buffered_handshake_op.hpp +1 -1
  179. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/engine.hpp +5 -0
  180. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/handshake_op.hpp +1 -1
  181. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/impl/engine.ipp +14 -0
  182. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/io.hpp +36 -27
  183. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/read_op.hpp +1 -1
  184. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/shutdown_op.hpp +2 -2
  185. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/stream_core.hpp +37 -0
  186. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/detail/write_op.hpp +1 -1
  187. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/impl/context.ipp +14 -7
  188. data/src/cxx_supportlib/vendor-modified/boost/asio/ssl/stream.hpp +73 -1
  189. data/src/cxx_supportlib/vendor-modified/boost/asio/system_executor.hpp +4 -4
  190. data/src/cxx_supportlib/vendor-modified/boost/asio/this_coro.hpp +235 -0
  191. data/src/cxx_supportlib/vendor-modified/boost/asio/thread_pool.hpp +4 -4
  192. data/src/cxx_supportlib/vendor-modified/boost/asio/use_awaitable.hpp +7 -10
  193. data/src/cxx_supportlib/vendor-modified/boost/asio/version.hpp +1 -1
  194. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_random_access_handle.hpp +20 -0
  195. data/src/cxx_supportlib/vendor-modified/boost/asio/windows/basic_stream_handle.hpp +20 -0
  196. data/src/cxx_supportlib/vendor-modified/boost/asio/write.hpp +88 -0
  197. data/src/cxx_supportlib/vendor-modified/boost/asio/write_at.hpp +44 -0
  198. data/src/cxx_supportlib/vendor-modified/boost/asio.hpp +6 -0
  199. data/src/cxx_supportlib/vendor-modified/boost/atomic/atomic_ref.hpp +14 -1
  200. data/src/cxx_supportlib/vendor-modified/boost/atomic/detail/config.hpp +17 -13
  201. data/src/cxx_supportlib/vendor-modified/boost/atomic/ipc_atomic_ref.hpp +14 -1
  202. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx03.hpp +2 -5
  203. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx11.hpp +2 -5
  204. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx14.hpp +2 -2
  205. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx17.hpp +2 -2
  206. data/src/cxx_supportlib/vendor-modified/boost/config/assert_cxx20.hpp +56 -0
  207. data/src/cxx_supportlib/vendor-modified/boost/config/auto_link.hpp +1 -5
  208. data/src/cxx_supportlib/vendor-modified/boost/config/compiler/common_edg.hpp +31 -11
  209. data/src/cxx_supportlib/vendor-modified/boost/config/detail/cxx_composite.hpp +20 -4
  210. data/src/cxx_supportlib/vendor-modified/boost/config/detail/select_platform_config.hpp +5 -0
  211. data/src/cxx_supportlib/vendor-modified/boost/config/detail/suffix.hpp +81 -0
  212. data/src/cxx_supportlib/vendor-modified/boost/config/platform/bsd.hpp +5 -8
  213. data/src/cxx_supportlib/vendor-modified/boost/config/platform/wasm.hpp +17 -0
  214. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/dinkumware.hpp +26 -0
  215. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libcpp.hpp +49 -0
  216. data/src/cxx_supportlib/vendor-modified/boost/config/stdlib/libstdcpp3.hpp +46 -4
  217. data/src/cxx_supportlib/vendor-modified/boost/container/adaptive_pool.hpp +2 -2
  218. data/src/cxx_supportlib/vendor-modified/boost/container/allocator.hpp +1 -1
  219. data/src/cxx_supportlib/vendor-modified/boost/container/detail/adaptive_node_pool.hpp +2 -2
  220. data/src/cxx_supportlib/vendor-modified/boost/container/detail/node_pool.hpp +2 -2
  221. data/src/cxx_supportlib/vendor-modified/boost/container/detail/std_fwd.hpp +3 -0
  222. data/src/cxx_supportlib/vendor-modified/boost/container/devector.hpp +2 -2
  223. data/src/cxx_supportlib/vendor-modified/boost/container/new_allocator.hpp +1 -1
  224. data/src/cxx_supportlib/vendor-modified/boost/container/node_allocator.hpp +1 -1
  225. data/src/cxx_supportlib/vendor-modified/boost/container/pmr/polymorphic_allocator.hpp +6 -6
  226. data/src/cxx_supportlib/vendor-modified/boost/container/static_vector.hpp +4 -4
  227. data/src/cxx_supportlib/vendor-modified/boost/container/throw_exception.hpp +45 -38
  228. data/src/cxx_supportlib/vendor-modified/boost/container/vector.hpp +24 -0
  229. data/src/cxx_supportlib/vendor-modified/boost/core/ignore_unused.hpp +32 -2
  230. data/src/cxx_supportlib/vendor-modified/boost/core/uncaught_exceptions.hpp +7 -7
  231. data/src/cxx_supportlib/vendor-modified/boost/date_time/compiler_config.hpp +0 -24
  232. data/src/cxx_supportlib/vendor-modified/boost/date_time/posix_time/time_parsers.hpp +4 -0
  233. data/src/cxx_supportlib/vendor-modified/boost/intrusive/any_hook.hpp +4 -4
  234. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avl_set.hpp +83 -83
  235. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree.hpp +43 -43
  236. data/src/cxx_supportlib/vendor-modified/boost/intrusive/avltree_algorithms.hpp +31 -31
  237. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bs_set.hpp +85 -85
  238. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree.hpp +68 -68
  239. data/src/cxx_supportlib/vendor-modified/boost/intrusive/bstree_algorithms.hpp +72 -62
  240. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_list_algorithms.hpp +19 -20
  241. data/src/cxx_supportlib/vendor-modified/boost/intrusive/circular_slist_algorithms.hpp +19 -19
  242. data/src/cxx_supportlib/vendor-modified/boost/intrusive/derivation_value_traits.hpp +4 -4
  243. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/any_node_and_algorithms.hpp +2 -2
  244. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/bstree_algorithms_base.hpp +3 -3
  245. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/common_slist_algorithms.hpp +5 -5
  246. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/config_begin.hpp +1 -0
  247. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/generic_hook.hpp +8 -8
  248. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hash_combine.hpp +2 -4
  249. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/hashtable_node.hpp +1 -1
  250. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/math.hpp +2 -50
  251. data/src/cxx_supportlib/vendor-modified/boost/intrusive/detail/node_cloner_disposer.hpp +1 -1
  252. data/src/cxx_supportlib/vendor-modified/boost/intrusive/hashtable.hpp +71 -70
  253. data/src/cxx_supportlib/vendor-modified/boost/intrusive/linear_slist_algorithms.hpp +15 -14
  254. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list.hpp +84 -82
  255. data/src/cxx_supportlib/vendor-modified/boost/intrusive/list_hook.hpp +10 -10
  256. data/src/cxx_supportlib/vendor-modified/boost/intrusive/member_value_traits.hpp +4 -4
  257. data/src/cxx_supportlib/vendor-modified/boost/intrusive/parent_from_member.hpp +2 -2
  258. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_plus_bits.hpp +4 -4
  259. data/src/cxx_supportlib/vendor-modified/boost/intrusive/pointer_traits.hpp +18 -18
  260. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree.hpp +43 -43
  261. data/src/cxx_supportlib/vendor-modified/boost/intrusive/rbtree_algorithms.hpp +26 -26
  262. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set.hpp +85 -85
  263. data/src/cxx_supportlib/vendor-modified/boost/intrusive/set_hook.hpp +12 -12
  264. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sg_set.hpp +93 -93
  265. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree.hpp +51 -51
  266. data/src/cxx_supportlib/vendor-modified/boost/intrusive/sgtree_algorithms.hpp +24 -24
  267. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist.hpp +104 -104
  268. data/src/cxx_supportlib/vendor-modified/boost/intrusive/slist_hook.hpp +8 -6
  269. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splay_set.hpp +91 -91
  270. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree.hpp +46 -46
  271. data/src/cxx_supportlib/vendor-modified/boost/intrusive/splaytree_algorithms.hpp +31 -31
  272. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap.hpp +51 -51
  273. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_algorithms.hpp +18 -18
  274. data/src/cxx_supportlib/vendor-modified/boost/intrusive/treap_set.hpp +97 -97
  275. data/src/cxx_supportlib/vendor-modified/boost/intrusive/trivial_value_traits.hpp +6 -4
  276. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set.hpp +63 -63
  277. data/src/cxx_supportlib/vendor-modified/boost/intrusive/unordered_set_hook.hpp +15 -15
  278. data/src/cxx_supportlib/vendor-modified/boost/lexical_cast/detail/converter_numeric.hpp +4 -1
  279. data/src/cxx_supportlib/vendor-modified/boost/move/detail/config_begin.hpp +1 -0
  280. data/src/cxx_supportlib/vendor-modified/boost/move/detail/iterator_traits.hpp +1 -0
  281. data/src/cxx_supportlib/vendor-modified/boost/move/detail/nsec_clock.hpp +1 -1
  282. data/src/cxx_supportlib/vendor-modified/boost/operators.hpp +2 -0
  283. data/src/cxx_supportlib/vendor-modified/boost/regex/concepts.hpp +1 -1
  284. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/basic_regex_parser.hpp +3 -0
  285. data/src/cxx_supportlib/vendor-modified/boost/regex/v4/unicode_iterator.hpp +112 -31
  286. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/basic_regex_parser.hpp +3 -0
  287. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/mem_block_cache.hpp +4 -8
  288. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/unicode_iterator.hpp +0 -2
  289. data/src/cxx_supportlib/vendor-modified/boost/regex/v5/w32_regex_traits.hpp +6 -2
  290. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/shared_count.hpp +1 -1
  291. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/detail/sp_counted_impl.hpp +22 -2
  292. data/src/cxx_supportlib/vendor-modified/boost/smart_ptr/shared_ptr.hpp +59 -1
  293. data/src/cxx_supportlib/vendor-modified/boost/system/detail/config.hpp +9 -11
  294. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category.hpp +27 -21
  295. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_category_impl.hpp +34 -3
  296. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_code.hpp +378 -36
  297. data/src/cxx_supportlib/vendor-modified/boost/system/detail/error_condition.hpp +97 -21
  298. data/src/cxx_supportlib/vendor-modified/boost/system/detail/interop_category.hpp +107 -0
  299. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp +33 -0
  300. data/src/cxx_supportlib/vendor-modified/boost/system/detail/snprintf.hpp +70 -0
  301. data/src/cxx_supportlib/vendor-modified/boost/system/detail/{to_std_category.hpp → std_category.hpp} +5 -55
  302. data/src/cxx_supportlib/vendor-modified/boost/system/detail/system_category_impl.hpp +2 -12
  303. data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +0 -33
  304. data/src/cxx_supportlib/vendor-modified/boost/utility/detail/result_of_variadic.hpp +190 -0
  305. data/src/cxx_supportlib/vendor-modified/boost/utility/result_of.hpp +20 -9
  306. data/src/cxx_supportlib/vendor-modified/boost/utility/string_view.hpp +3 -1
  307. data/src/cxx_supportlib/vendor-modified/boost/version.hpp +2 -2
  308. data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +16 -0
  309. data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +12 -0
  310. data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +24 -0
  311. data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +10 -0
  312. data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +39 -0
  313. data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +26 -0
  314. data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +6 -0
  315. data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +8 -0
  316. data/src/nginx_module/ngx_http_passenger_module.c +1 -0
  317. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/common.js +50 -29
  318. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/cli-config.js +20 -20
  319. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/npm-config.js +11 -11
  320. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config/syslog-config.js +3 -3
  321. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/config.js +8 -2
  322. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/container.js +2 -1
  323. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/logger.js +174 -146
  324. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/console.js +4 -2
  325. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/file.js +15 -5
  326. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/http.js +14 -4
  327. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports.js +26 -24
  328. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston.js +5 -5
  329. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/async/package.json +4 -13
  330. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/colors/package.json +19 -33
  331. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/cycle/package.json +11 -29
  332. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/eyes/package.json +12 -40
  333. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/isstream/package.json +3 -12
  334. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/lib/stack-trace.js +49 -24
  335. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/stack-trace/package.json +4 -16
  336. data/src/nodejs_supportlib/vendor-copy/winston/package.json +11 -55
  337. data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +3 -2
  338. data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +6 -0
  339. data/src/ruby_supportlib/phusion_passenger/config/restart_app_command.rb +16 -12
  340. data/src/ruby_supportlib/phusion_passenger/console_text_template.rb +7 -2
  341. data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +8 -1
  342. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +12 -0
  343. data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -1
  344. data/src/ruby_supportlib/phusion_passenger/platform_info/linux.rb +2 -1
  345. data/src/ruby_supportlib/phusion_passenger/platform_info/openssl.rb +1 -1
  346. data/src/ruby_supportlib/phusion_passenger/platform_info/operating_system.rb +8 -0
  347. data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +18 -18
  348. data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -1
  349. data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +7 -1
  350. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +1 -0
  351. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +28 -17
  352. data/src/ruby_supportlib/phusion_passenger.rb +5 -5
  353. metadata +49 -9
  354. data/src/cxx_supportlib/vendor-modified/boost/system/detail/is_generic_value.hpp +0 -125
  355. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/daily-rotate-file.js +0 -601
  356. data/src/nodejs_supportlib/vendor-copy/winston/lib/winston/transports/webhook.js +0 -146
  357. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/LICENSE +0 -19
  358. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/lib/pkginfo.js +0 -136
  359. data/src/nodejs_supportlib/vendor-copy/winston/node_modules/pkginfo/package.json +0 -56
@@ -0,0 +1,190 @@
1
+ // Boost result_of library
2
+
3
+ // Copyright Douglas Gregor 2004. Use, modification and
4
+ // distribution is subject to the Boost Software License, Version
5
+ // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6
+ // http://www.boost.org/LICENSE_1_0.txt)
7
+
8
+ // Copyright Daniel Walker, Eric Niebler, Michel Morin 2008-2012.
9
+ // Use, modification and distribution is subject to the Boost Software
10
+ // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or
11
+ // copy at http://www.boost.org/LICENSE_1_0.txt)
12
+
13
+ // For more information, see http://www.boost.org/libs/utility
14
+
15
+ #ifndef BOOST_RESULT_OF_HPP
16
+ # error Boost result_of - do not include this file!
17
+ #endif
18
+
19
+ template<typename F, typename... Args>
20
+ struct tr1_result_of<F(Args...)>
21
+ : conditional<
22
+ is_pointer<F>::value || is_member_function_pointer<F>::value
23
+ , boost::detail::tr1_result_of_impl<
24
+ typename remove_cv<F>::type,
25
+ typename remove_cv<F>::type(Args...),
26
+ (boost::detail::result_of_has_result_type<F>::value)>
27
+ , boost::detail::tr1_result_of_impl<
28
+ F,
29
+ F(Args...),
30
+ (boost::detail::result_of_has_result_type<F>::value)> >::type { };
31
+
32
+ #ifdef BOOST_RESULT_OF_USE_DECLTYPE
33
+ template<typename F, typename... Args>
34
+ struct result_of<F(Args...)>
35
+ : detail::cpp0x_result_of<F(Args...)> { };
36
+ #endif // BOOST_RESULT_OF_USE_DECLTYPE
37
+
38
+ #ifdef BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK
39
+ template<typename F, typename... Args>
40
+ struct result_of<F(Args...)>
41
+ : conditional<detail::result_of_has_result_type<F>::value || detail::result_of_has_result<F>::value,
42
+ tr1_result_of<F(Args...)>,
43
+ detail::cpp0x_result_of<F(Args...)> >::type { };
44
+ #endif // BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK
45
+
46
+ #if defined(BOOST_RESULT_OF_USE_DECLTYPE) || defined(BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK)
47
+
48
+ namespace detail {
49
+
50
+ template<typename F, typename... Args>
51
+ struct cpp0x_result_of<F(Args...)>
52
+ : conditional<
53
+ is_member_function_pointer<F>::value
54
+ , detail::tr1_result_of_impl<
55
+ typename remove_cv<F>::type,
56
+ typename remove_cv<F>::type(Args...), false
57
+ >
58
+ , detail::cpp0x_result_of_impl<
59
+ F(Args...)
60
+ >
61
+ >::type
62
+ {};
63
+
64
+ #ifdef BOOST_NO_SFINAE_EXPR
65
+
66
+ template<typename F>
67
+ struct result_of_callable_fun_2;
68
+
69
+ template<typename R, typename... Args>
70
+ struct result_of_callable_fun_2<R(Args...)> {
71
+ R operator()(Args...) const;
72
+ typedef result_of_private_type const &(*pfn_t)(...);
73
+ operator pfn_t() const volatile;
74
+ };
75
+
76
+ template<typename F>
77
+ struct result_of_callable_fun
78
+ : result_of_callable_fun_2<F>
79
+ {};
80
+
81
+ template<typename F>
82
+ struct result_of_callable_fun<F *>
83
+ : result_of_callable_fun_2<F>
84
+ {};
85
+
86
+ template<typename F>
87
+ struct result_of_select_call_wrapper_type
88
+ : conditional<
89
+ is_class<typename remove_reference<F>::type>::value,
90
+ result_of_wrap_callable_class<F>,
91
+ type_identity<result_of_callable_fun<typename remove_cv<typename remove_reference<F>::type>::type> >
92
+ >::type
93
+ {};
94
+
95
+ template<typename F, typename... Args>
96
+ struct result_of_is_callable {
97
+ typedef typename result_of_select_call_wrapper_type<F>::type wrapper_t;
98
+ static const bool value = (
99
+ sizeof(result_of_no_type) == sizeof(detail::result_of_is_private_type(
100
+ (boost::declval<wrapper_t>()(boost::declval<Args>()...), result_of_weird_type())
101
+ ))
102
+ );
103
+ typedef integral_constant<bool, value> type;
104
+ };
105
+
106
+ template<typename F, typename... Args>
107
+ struct cpp0x_result_of_impl<F(Args...), true>
108
+ : lazy_enable_if<
109
+ result_of_is_callable<F, Args...>
110
+ , cpp0x_result_of_impl<F(Args...), false>
111
+ >
112
+ {};
113
+
114
+ template<typename F, typename... Args>
115
+ struct cpp0x_result_of_impl<F(Args...), false>
116
+ {
117
+ typedef decltype(
118
+ boost::declval<F>()(
119
+ boost::declval<Args>()...
120
+ )
121
+ ) type;
122
+ };
123
+
124
+ #else // BOOST_NO_SFINAE_EXPR
125
+
126
+ template<typename F, typename... Args>
127
+ struct cpp0x_result_of_impl<F(Args...),
128
+ typename result_of_always_void<decltype(
129
+ boost::declval<F>()(
130
+ boost::declval<Args>()...
131
+ )
132
+ )>::type> {
133
+ typedef decltype(
134
+ boost::declval<F>()(
135
+ boost::declval<Args>()...
136
+ )
137
+ ) type;
138
+ };
139
+
140
+ #endif // BOOST_NO_SFINAE_EXPR
141
+
142
+ } // namespace detail
143
+
144
+ #else // defined(BOOST_RESULT_OF_USE_DECLTYPE) || defined(BOOST_RESULT_OF_USE_TR1_WITH_DECLTYPE_FALLBACK)
145
+
146
+ template<typename F, typename... Args>
147
+ struct result_of<F(Args...)>
148
+ : tr1_result_of<F(Args...)> { };
149
+
150
+ #endif // defined(BOOST_RESULT_OF_USE_DECLTYPE)
151
+
152
+ namespace detail {
153
+
154
+ template<typename R, typename FArgs, typename... Args>
155
+ struct tr1_result_of_impl<R (*)(Args...), FArgs, false>
156
+ {
157
+ typedef R type;
158
+ };
159
+
160
+ template<typename R, typename FArgs, typename... Args>
161
+ struct tr1_result_of_impl<R (&)(Args...), FArgs, false>
162
+ {
163
+ typedef R type;
164
+ };
165
+
166
+ template<typename R, typename FArgs, typename C, typename... Args>
167
+ struct tr1_result_of_impl<R (C::*)(Args...), FArgs, false>
168
+ {
169
+ typedef R type;
170
+ };
171
+
172
+ template<typename R, typename FArgs, typename C, typename... Args>
173
+ struct tr1_result_of_impl<R (C::*)(Args...) const, FArgs, false>
174
+ {
175
+ typedef R type;
176
+ };
177
+
178
+ template<typename R, typename FArgs, typename C, typename... Args>
179
+ struct tr1_result_of_impl<R (C::*)(Args...) volatile, FArgs, false>
180
+ {
181
+ typedef R type;
182
+ };
183
+
184
+ template<typename R, typename FArgs, typename C, typename... Args>
185
+ struct tr1_result_of_impl<R (C::*)(Args...) const volatile, FArgs, false>
186
+ {
187
+ typedef R type;
188
+ };
189
+
190
+ }
@@ -10,13 +10,6 @@
10
10
  #define BOOST_RESULT_OF_HPP
11
11
 
12
12
  #include <boost/config.hpp>
13
- #include <boost/preprocessor/cat.hpp>
14
- #include <boost/preprocessor/iteration/iterate.hpp>
15
- #include <boost/preprocessor/repetition/enum_params.hpp>
16
- #include <boost/preprocessor/repetition/enum_trailing_params.hpp>
17
- #include <boost/preprocessor/repetition/enum_binary_params.hpp>
18
- #include <boost/preprocessor/repetition/enum_shifted_params.hpp>
19
- #include <boost/preprocessor/facilities/intercept.hpp>
20
13
  #include <boost/detail/workaround.hpp>
21
14
  #include <boost/type_traits/is_class.hpp>
22
15
  #include <boost/type_traits/is_pointer.hpp>
@@ -29,6 +22,20 @@
29
22
  #include <boost/type_traits/integral_constant.hpp>
30
23
  #include <boost/core/enable_if.hpp>
31
24
 
25
+ #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES
26
+ # undef BOOST_RESULT_OF_NO_VARIADIC_TEMPLATES
27
+ # define BOOST_RESULT_OF_NO_VARIADIC_TEMPLATES
28
+ #endif
29
+ #ifdef BOOST_RESULT_OF_NO_VARIADIC_TEMPLATES
30
+ # include <boost/preprocessor/cat.hpp>
31
+ # include <boost/preprocessor/iteration/iterate.hpp>
32
+ # include <boost/preprocessor/repetition/enum_params.hpp>
33
+ # include <boost/preprocessor/repetition/enum_trailing_params.hpp>
34
+ # include <boost/preprocessor/repetition/enum_binary_params.hpp>
35
+ # include <boost/preprocessor/repetition/enum_shifted_params.hpp>
36
+ # include <boost/preprocessor/facilities/intercept.hpp>
37
+ #endif
38
+
32
39
  #ifndef BOOST_RESULT_OF_NUM_ARGS
33
40
  # define BOOST_RESULT_OF_NUM_ARGS 16
34
41
  #endif
@@ -217,8 +224,12 @@ struct tr1_result_of_impl<F, FArgs, false>
217
224
 
218
225
  } // end namespace detail
219
226
 
220
- #define BOOST_PP_ITERATION_PARAMS_1 (3,(0,BOOST_RESULT_OF_NUM_ARGS,<boost/utility/detail/result_of_iterate.hpp>))
221
- #include BOOST_PP_ITERATE()
227
+ #ifndef BOOST_RESULT_OF_NO_VARIADIC_TEMPLATES
228
+ # include <boost/utility/detail/result_of_variadic.hpp>
229
+ #else
230
+ # define BOOST_PP_ITERATION_PARAMS_1 (3,(0,BOOST_RESULT_OF_NUM_ARGS,<boost/utility/detail/result_of_iterate.hpp>))
231
+ # include BOOST_PP_ITERATE()
232
+ #endif
222
233
 
223
234
  #if 0
224
235
  // inform dependency trackers, as they can't see through macro includes
@@ -23,7 +23,6 @@
23
23
  #include <boost/io/ostream_put.hpp>
24
24
  #include <boost/utility/string_view_fwd.hpp>
25
25
  #include <boost/throw_exception.hpp>
26
- #include <boost/container_hash/hash_fwd.hpp>
27
26
 
28
27
  #include <cstddef>
29
28
  #include <stdexcept>
@@ -652,6 +651,9 @@ namespace boost {
652
651
  }
653
652
  #endif
654
653
 
654
+ // Forward declaration of Boost.ContainerHash function
655
+ template <class It> std::size_t hash_range(It, It);
656
+
655
657
  template <class charT, class traits>
656
658
  std::size_t hash_value(basic_string_view<charT, traits> s) {
657
659
  return boost::hash_range(s.begin(), s.end());
@@ -19,7 +19,7 @@
19
19
  // BOOST_VERSION / 100 % 1000 is the minor version
20
20
  // BOOST_VERSION / 100000 is the major version
21
21
 
22
- #define BOOST_VERSION 107600
22
+ #define BOOST_VERSION 107700
23
23
 
24
24
  //
25
25
  // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
@@ -27,6 +27,6 @@
27
27
  // number, y is the minor version number, and z is the patch level if not 0.
28
28
  // This is used by <config/auto_link.hpp> to select which library version to link to.
29
29
 
30
- #define BOOST_LIB_VERSION "1_76"
30
+ #define BOOST_LIB_VERSION "1_77"
31
31
 
32
32
  #endif
@@ -462,6 +462,14 @@
462
462
  offsetof(passenger_loc_conf_t, autogenerated.load_shell_envvars),
463
463
  NULL
464
464
  },
465
+ {
466
+ ngx_string("passenger_preload_bundler"),
467
+ NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LIF_CONF | NGX_CONF_FLAG,
468
+ passenger_conf_set_preload_bundler,
469
+ NGX_HTTP_LOC_CONF_OFFSET,
470
+ offsetof(passenger_loc_conf_t, autogenerated.preload_bundler),
471
+ NULL
472
+ },
465
473
  {
466
474
  ngx_string("passenger_max_request_queue_size"),
467
475
  NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LIF_CONF | NGX_CONF_TAKE1,
@@ -670,6 +678,14 @@
670
678
  offsetof(passenger_loc_conf_t, autogenerated.request_queue_overflow_status_code),
671
679
  NULL
672
680
  },
681
+ {
682
+ ngx_string("passenger_spawn_exception_status_code"),
683
+ NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LIF_CONF | NGX_CONF_TAKE1,
684
+ passenger_conf_set_spawn_exception_status_code,
685
+ NGX_HTTP_LOC_CONF_OFFSET,
686
+ offsetof(passenger_loc_conf_t, autogenerated.spawn_exception_status_code),
687
+ NULL
688
+ },
673
689
  {
674
690
  ngx_string("passenger_buffer_upload"),
675
691
  NGX_HTTP_MAIN_CONF | NGX_HTTP_SRV_CONF | NGX_HTTP_LOC_CONF | NGX_HTTP_LIF_CONF | NGX_CONF_FLAG,
@@ -293,6 +293,12 @@ set_manifest_autogenerated_app_conf_defaults(manifest_gen_ctx_t *ctx, PsgJsonVal
293
293
  sizeof("passenger_load_shell_envvars") - 1,
294
294
  1);
295
295
 
296
+ add_manifest_options_container_static_default_bool(ctx,
297
+ options_container,
298
+ "passenger_preload_bundler",
299
+ sizeof("passenger_preload_bundler") - 1,
300
+ 0);
301
+
296
302
  add_manifest_options_container_static_default_uint(ctx,
297
303
  options_container,
298
304
  "passenger_max_request_queue_size",
@@ -418,6 +424,12 @@ set_manifest_autogenerated_loc_conf_defaults(manifest_gen_ctx_t *ctx, PsgJsonVal
418
424
  sizeof("passenger_request_queue_overflow_status_code") - 1,
419
425
  503);
420
426
 
427
+ add_manifest_options_container_static_default_int(ctx,
428
+ options_container,
429
+ "passenger_spawn_exception_status_code",
430
+ sizeof("passenger_spawn_exception_status_code") - 1,
431
+ 500);
432
+
421
433
  add_manifest_options_container_static_default_bool(ctx,
422
434
  options_container,
423
435
  "passenger_buffer_upload",
@@ -709,6 +709,18 @@ passenger_conf_set_load_shell_envvars(ngx_conf_t *cf, ngx_command_t *cmd, void *
709
709
  return ngx_conf_set_flag_slot(cf, cmd, conf);
710
710
  }
711
711
 
712
+ static char *
713
+ passenger_conf_set_preload_bundler(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
714
+ passenger_loc_conf_t *passenger_conf = conf;
715
+
716
+ passenger_conf->autogenerated.preload_bundler_explicitly_set = 1;
717
+ record_loc_conf_source_location(cf, passenger_conf,
718
+ &passenger_conf->autogenerated.preload_bundler_source_file,
719
+ &passenger_conf->autogenerated.preload_bundler_source_line);
720
+
721
+ return ngx_conf_set_flag_slot(cf, cmd, conf);
722
+ }
723
+
712
724
  static char *
713
725
  passenger_conf_set_max_request_queue_size(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
714
726
  passenger_loc_conf_t *passenger_conf = conf;
@@ -937,6 +949,18 @@ passenger_conf_set_request_queue_overflow_status_code(ngx_conf_t *cf, ngx_comman
937
949
  return ngx_conf_set_num_slot(cf, cmd, conf);
938
950
  }
939
951
 
952
+ static char *
953
+ passenger_conf_set_spawn_exception_status_code(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
954
+ passenger_loc_conf_t *passenger_conf = conf;
955
+
956
+ passenger_conf->autogenerated.spawn_exception_status_code_explicitly_set = 1;
957
+ record_loc_conf_source_location(cf, passenger_conf,
958
+ &passenger_conf->autogenerated.spawn_exception_status_code_source_file,
959
+ &passenger_conf->autogenerated.spawn_exception_status_code_source_line);
960
+
961
+ return ngx_conf_set_num_slot(cf, cmd, conf);
962
+ }
963
+
940
964
  static char *
941
965
  passenger_conf_set_buffer_upload(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
942
966
  passenger_loc_conf_t *passenger_conf = conf;
@@ -72,6 +72,7 @@ passenger_create_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *con
72
72
  conf->direct_instance_request_address.data = NULL;
73
73
  conf->direct_instance_request_address.len = 0;
74
74
  conf->load_shell_envvars = NGX_CONF_UNSET;
75
+ conf->preload_bundler = NGX_CONF_UNSET;
75
76
  conf->max_request_queue_size = NGX_CONF_UNSET_UINT;
76
77
  conf->app_type.data = NULL;
77
78
  conf->app_type.len = 0;
@@ -91,6 +92,7 @@ passenger_create_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *con
91
92
  conf->headers_hash_max_size = NGX_CONF_UNSET_UINT;
92
93
  conf->headers_hash_bucket_size = NGX_CONF_UNSET_UINT;
93
94
  conf->request_queue_overflow_status_code = NGX_CONF_UNSET;
95
+ conf->spawn_exception_status_code = NGX_CONF_UNSET;
94
96
  conf->buffer_upload = NGX_CONF_UNSET;
95
97
  conf->sticky_sessions = NGX_CONF_UNSET;
96
98
  conf->sticky_sessions_cookie_name.data = NULL;
@@ -182,6 +184,10 @@ passenger_create_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *con
182
184
  conf->load_shell_envvars_source_file.len = 0;
183
185
  conf->load_shell_envvars_source_line = 0;
184
186
  conf->load_shell_envvars_explicitly_set = 0;
187
+ conf->preload_bundler_source_file.data = NULL;
188
+ conf->preload_bundler_source_file.len = 0;
189
+ conf->preload_bundler_source_line = 0;
190
+ conf->preload_bundler_explicitly_set = 0;
185
191
  conf->max_request_queue_size_source_file.data = NULL;
186
192
  conf->max_request_queue_size_source_file.len = 0;
187
193
  conf->max_request_queue_size_source_line = 0;
@@ -286,6 +292,10 @@ passenger_create_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *con
286
292
  conf->request_queue_overflow_status_code_source_file.len = 0;
287
293
  conf->request_queue_overflow_status_code_source_line = 0;
288
294
  conf->request_queue_overflow_status_code_explicitly_set = 0;
295
+ conf->spawn_exception_status_code_source_file.data = NULL;
296
+ conf->spawn_exception_status_code_source_file.len = 0;
297
+ conf->spawn_exception_status_code_source_line = 0;
298
+ conf->spawn_exception_status_code_explicitly_set = 0;
289
299
  conf->buffer_upload_source_file.data = NULL;
290
300
  conf->buffer_upload_source_file.len = 0;
291
301
  conf->buffer_upload_source_line = 0;
@@ -172,6 +172,13 @@ passenger_serialize_autogenerated_loc_conf_to_headers(ngx_conf_t *cf, passenger_
172
172
  : sizeof("f\r\n") - 1;
173
173
  }
174
174
 
175
+ if (conf->autogenerated.preload_bundler != NGX_CONF_UNSET) {
176
+ len += sizeof("!~PASSENGER_PRELOAD_BUNDLER: ") - 1;
177
+ len += conf->autogenerated.preload_bundler
178
+ ? sizeof("t\r\n") - 1
179
+ : sizeof("f\r\n") - 1;
180
+ }
181
+
175
182
  if (conf->autogenerated.max_request_queue_size != NGX_CONF_UNSET_UINT) {
176
183
  end = ngx_snprintf(int_buf,
177
184
  sizeof(int_buf) - 1,
@@ -231,6 +238,16 @@ passenger_serialize_autogenerated_loc_conf_to_headers(ngx_conf_t *cf, passenger_
231
238
  len += sizeof("\r\n") - 1;
232
239
  }
233
240
 
241
+ if (conf->autogenerated.spawn_exception_status_code != NGX_CONF_UNSET) {
242
+ end = ngx_snprintf(int_buf,
243
+ sizeof(int_buf) - 1,
244
+ "%d",
245
+ conf->autogenerated.spawn_exception_status_code);
246
+ len += sizeof("!~PASSENGER_SPAWN_EXCEPTION_STATUS_CODE: ") - 1;
247
+ len += end - int_buf;
248
+ len += sizeof("\r\n") - 1;
249
+ }
250
+
234
251
  if (conf->autogenerated.sticky_sessions != NGX_CONF_UNSET) {
235
252
  len += sizeof("!~PASSENGER_STICKY_SESSIONS: ") - 1;
236
253
  len += conf->autogenerated.sticky_sessions
@@ -443,6 +460,17 @@ passenger_serialize_autogenerated_loc_conf_to_headers(ngx_conf_t *cf, passenger_
443
460
  }
444
461
  }
445
462
 
463
+ if (conf->autogenerated.preload_bundler != NGX_CONF_UNSET) {
464
+ pos = ngx_copy(pos,
465
+ "!~PASSENGER_PRELOAD_BUNDLER: ",
466
+ sizeof("!~PASSENGER_PRELOAD_BUNDLER: ") - 1);
467
+ if (conf->autogenerated.preload_bundler) {
468
+ pos = ngx_copy(pos, "t\r\n", sizeof("t\r\n") - 1);
469
+ } else {
470
+ pos = ngx_copy(pos, "f\r\n", sizeof("f\r\n") - 1);
471
+ }
472
+ }
473
+
446
474
  if (conf->autogenerated.max_request_queue_size != NGX_CONF_UNSET_UINT) {
447
475
  pos = ngx_copy(pos,
448
476
  "!~PASSENGER_MAX_REQUEST_QUEUE_SIZE: ",
@@ -516,6 +544,17 @@ passenger_serialize_autogenerated_loc_conf_to_headers(ngx_conf_t *cf, passenger_
516
544
  pos = ngx_copy(pos, int_buf, end - int_buf);
517
545
  pos = ngx_copy(pos, (const u_char *) "\r\n", sizeof("\r\n") - 1);
518
546
  }
547
+ if (conf->autogenerated.spawn_exception_status_code != NGX_CONF_UNSET) {
548
+ pos = ngx_copy(pos,
549
+ "!~PASSENGER_SPAWN_EXCEPTION_STATUS_CODE: ",
550
+ sizeof("!~PASSENGER_SPAWN_EXCEPTION_STATUS_CODE: ") - 1);
551
+ end = ngx_snprintf(int_buf,
552
+ sizeof(int_buf) - 1,
553
+ "%d",
554
+ conf->autogenerated.spawn_exception_status_code);
555
+ pos = ngx_copy(pos, int_buf, end - int_buf);
556
+ pos = ngx_copy(pos, (const u_char *) "\r\n", sizeof("\r\n") - 1);
557
+ }
519
558
  if (conf->autogenerated.sticky_sessions != NGX_CONF_UNSET) {
520
559
  pos = ngx_copy(pos,
521
560
  "!~PASSENGER_STICKY_SESSIONS: ",
@@ -318,6 +318,19 @@ generate_config_manifest_for_autogenerated_loc_conf(manifest_gen_ctx_t *ctx, pas
318
318
  psg_json_value_set_bool(hierarchy_member, "value",
319
319
  plcf->autogenerated.load_shell_envvars);
320
320
  }
321
+ if (plcf->autogenerated.preload_bundler_explicitly_set) {
322
+ find_or_create_manifest_app_and_loc_options_containers(ctx,
323
+ plcf, cscf, clcf, &app_options_container, &loc_options_container);
324
+ option_container = find_or_create_manifest_option_container(ctx,
325
+ app_options_container,
326
+ "passenger_preload_bundler",
327
+ sizeof("passenger_preload_bundler") - 1);
328
+ hierarchy_member = add_manifest_option_container_hierarchy_member(option_container,
329
+ &plcf->autogenerated.preload_bundler_source_file,
330
+ plcf->autogenerated.preload_bundler_source_line);
331
+ psg_json_value_set_bool(hierarchy_member, "value",
332
+ plcf->autogenerated.preload_bundler);
333
+ }
321
334
  if (plcf->autogenerated.max_request_queue_size_explicitly_set) {
322
335
  find_or_create_manifest_app_and_loc_options_containers(ctx,
323
336
  plcf, cscf, clcf, &app_options_container, &loc_options_container);
@@ -596,6 +609,19 @@ generate_config_manifest_for_autogenerated_loc_conf(manifest_gen_ctx_t *ctx, pas
596
609
  psg_json_value_set_int(hierarchy_member, "value",
597
610
  plcf->autogenerated.request_queue_overflow_status_code);
598
611
  }
612
+ if (plcf->autogenerated.spawn_exception_status_code_explicitly_set) {
613
+ find_or_create_manifest_app_and_loc_options_containers(ctx,
614
+ plcf, cscf, clcf, &app_options_container, &loc_options_container);
615
+ option_container = find_or_create_manifest_option_container(ctx,
616
+ loc_options_container,
617
+ "passenger_spawn_exception_status_code",
618
+ sizeof("passenger_spawn_exception_status_code") - 1);
619
+ hierarchy_member = add_manifest_option_container_hierarchy_member(option_container,
620
+ &plcf->autogenerated.spawn_exception_status_code_source_file,
621
+ plcf->autogenerated.spawn_exception_status_code_source_line);
622
+ psg_json_value_set_int(hierarchy_member, "value",
623
+ plcf->autogenerated.spawn_exception_status_code);
624
+ }
599
625
  if (plcf->autogenerated.buffer_upload_explicitly_set) {
600
626
  find_or_create_manifest_app_and_loc_options_containers(ctx,
601
627
  plcf, cscf, clcf, &app_options_container, &loc_options_container);
@@ -107,6 +107,9 @@ passenger_merge_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *conf,
107
107
  ngx_conf_merge_value(conf->load_shell_envvars,
108
108
  prev->load_shell_envvars,
109
109
  1);
110
+ ngx_conf_merge_value(conf->preload_bundler,
111
+ prev->preload_bundler,
112
+ 0);
110
113
  ngx_conf_merge_uint_value(conf->max_request_queue_size,
111
114
  prev->max_request_queue_size,
112
115
  100);
@@ -151,6 +154,9 @@ passenger_merge_autogenerated_loc_conf(passenger_autogenerated_loc_conf_t *conf,
151
154
  ngx_conf_merge_value(conf->request_queue_overflow_status_code,
152
155
  prev->request_queue_overflow_status_code,
153
156
  503);
157
+ ngx_conf_merge_value(conf->spawn_exception_status_code,
158
+ prev->spawn_exception_status_code,
159
+ 500);
154
160
  ngx_conf_merge_value(conf->buffer_upload,
155
161
  prev->buffer_upload,
156
162
  0);
@@ -56,7 +56,9 @@ typedef struct {
56
56
  ngx_uint_t max_requests;
57
57
  ngx_uint_t min_instances;
58
58
  ngx_array_t *monitor_log_file;
59
+ ngx_flag_t preload_bundler;
59
60
  ngx_int_t request_queue_overflow_status_code;
61
+ ngx_int_t spawn_exception_status_code;
60
62
  ngx_uint_t start_timeout;
61
63
  ngx_flag_t sticky_sessions;
62
64
  ngx_str_t app_group_name;
@@ -110,10 +112,12 @@ typedef struct {
110
112
  ngx_str_t min_instances_source_file;
111
113
  ngx_str_t monitor_log_file_source_file;
112
114
  ngx_str_t nodejs_source_file;
115
+ ngx_str_t preload_bundler_source_file;
113
116
  ngx_str_t python_source_file;
114
117
  ngx_str_t request_queue_overflow_status_code_source_file;
115
118
  ngx_str_t restart_dir_source_file;
116
119
  ngx_str_t ruby_source_file;
120
+ ngx_str_t spawn_exception_status_code_source_file;
117
121
  ngx_str_t spawn_method_source_file;
118
122
  ngx_str_t start_timeout_source_file;
119
123
  ngx_str_t startup_file_source_file;
@@ -163,10 +167,12 @@ typedef struct {
163
167
  ngx_uint_t min_instances_source_line;
164
168
  ngx_uint_t monitor_log_file_source_line;
165
169
  ngx_uint_t nodejs_source_line;
170
+ ngx_uint_t preload_bundler_source_line;
166
171
  ngx_uint_t python_source_line;
167
172
  ngx_uint_t request_queue_overflow_status_code_source_line;
168
173
  ngx_uint_t restart_dir_source_line;
169
174
  ngx_uint_t ruby_source_line;
175
+ ngx_uint_t spawn_exception_status_code_source_line;
170
176
  ngx_uint_t spawn_method_source_line;
171
177
  ngx_uint_t start_timeout_source_line;
172
178
  ngx_uint_t startup_file_source_line;
@@ -216,10 +222,12 @@ typedef struct {
216
222
  ngx_int_t min_instances_explicitly_set;
217
223
  ngx_int_t monitor_log_file_explicitly_set;
218
224
  ngx_int_t nodejs_explicitly_set;
225
+ ngx_int_t preload_bundler_explicitly_set;
219
226
  ngx_int_t python_explicitly_set;
220
227
  ngx_int_t request_queue_overflow_status_code_explicitly_set;
221
228
  ngx_int_t restart_dir_explicitly_set;
222
229
  ngx_int_t ruby_explicitly_set;
230
+ ngx_int_t spawn_exception_status_code_explicitly_set;
223
231
  ngx_int_t spawn_method_explicitly_set;
224
232
  ngx_int_t start_timeout_explicitly_set;
225
233
  ngx_int_t startup_file_explicitly_set;
@@ -359,6 +359,7 @@ start_watchdog(ngx_cycle_t *cycle) {
359
359
  psg_json_value_set_str_ne (w_config, "server_software", NGINX_VER, strlen(NGINX_VER));
360
360
  psg_json_value_set_bool (w_config, "multi_app", 1);
361
361
  psg_json_value_set_bool (w_config, "default_load_shell_envvars", 1);
362
+ psg_json_value_set_bool (w_config, "default_preload_bundler", 0);
362
363
  psg_json_value_set_value (w_config, "config_manifest", -1, passenger_main_conf.manifest);
363
364
  psg_json_value_set_ngx_uint (w_config, "log_level", autogenerated_main_conf->log_level);
364
365
  psg_json_value_set_ngx_str_ne(w_config, "file_descriptor_log_target", &autogenerated_main_conf->file_descriptor_log_file);