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
@@ -99,6 +99,7 @@ parseControllerBenchmarkMode(const StaticString &mode) {
99
99
  * default_meteor_app_settings string - -
100
100
  * default_min_instances unsigned integer - default(1)
101
101
  * default_nodejs string - default("node")
102
+ * default_preload_bundler boolean - default(false)
102
103
  * default_python string - default("python")
103
104
  * default_ruby string - default("ruby")
104
105
  * default_server_name string required -
@@ -115,7 +116,7 @@ parseControllerBenchmarkMode(const StaticString &mode) {
115
116
  * multi_app boolean - default(true),read_only
116
117
  * request_freelist_limit unsigned integer - default(1024)
117
118
  * response_buffer_high_watermark unsigned integer - default(134217728)
118
- * server_software string - default("Phusion_Passenger/6.0.11")
119
+ * server_software string - default("Phusion_Passenger/6.0.14")
119
120
  * show_version_in_header boolean - default(true)
120
121
  * start_reading_after_accept boolean - default(true)
121
122
  * stat_throttle_rate unsigned integer - default(10)
@@ -165,6 +166,7 @@ private:
165
166
  add("default_spawn_method", STRING_TYPE, OPTIONAL, DEFAULT_SPAWN_METHOD);
166
167
  add("default_bind_address", STRING_TYPE, OPTIONAL, DEFAULT_BIND_ADDRESS);
167
168
  add("default_load_shell_envvars", BOOL_TYPE, OPTIONAL, false);
169
+ add("default_preload_bundler", BOOL_TYPE, OPTIONAL, false);
168
170
  add("default_meteor_app_settings", STRING_TYPE, OPTIONAL);
169
171
  add("default_app_file_descriptor_ulimit", UINT_TYPE, OPTIONAL);
170
172
  add("default_min_instances", UINT_TYPE, OPTIONAL, 1);
@@ -440,6 +442,7 @@ public:
440
442
  bool showVersionInHeader: 1;
441
443
  bool defaultAbortWebsocketsOnProcessShutdown;
442
444
  bool defaultLoadShellEnvvars;
445
+ bool defaultPreloadBundler;
443
446
 
444
447
  /*******************/
445
448
  /*******************/
@@ -473,7 +476,8 @@ public:
473
476
  defaultForceMaxConcurrentRequestsPerProcess(config["default_force_max_concurrent_requests_per_process"].asInt()),
474
477
  showVersionInHeader(config["show_version_in_header"].asBool()),
475
478
  defaultAbortWebsocketsOnProcessShutdown(config["default_abort_websockets_on_process_shutdown"].asBool()),
476
- defaultLoadShellEnvvars(config["default_load_shell_envvars"].asBool())
479
+ defaultLoadShellEnvvars(config["default_load_shell_envvars"].asBool()),
480
+ defaultPreloadBundler(config["default_preload_bundler"].asBool())
477
481
 
478
482
  /*******************/
479
483
  { }
@@ -202,6 +202,7 @@ Controller::fillPoolOptionsFromConfigCaches(Options &options,
202
202
  options.spawnMethod = requestConfig->defaultSpawnMethod;
203
203
  options.bindAddress = requestConfig->defaultBindAddress;
204
204
  options.loadShellEnvvars = requestConfig->defaultLoadShellEnvvars;
205
+ options.preloadBundler = requestConfig->defaultPreloadBundler;
205
206
  options.statThrottleRate = mainConfig.statThrottleRate;
206
207
  options.maxRequests = requestConfig->defaultMaxRequests;
207
208
  options.stickySessionsCookieAttributes = requestConfig->defaultStickySessionsCookieAttributes;
@@ -378,6 +379,7 @@ Controller::createNewPoolOptions(Client *client, Request *req,
378
379
  fillPoolOption(req, options.restartDir, "!~PASSENGER_RESTART_DIR");
379
380
  fillPoolOption(req, options.startupFile, "!~PASSENGER_STARTUP_FILE");
380
381
  fillPoolOption(req, options.loadShellEnvvars, "!~PASSENGER_LOAD_SHELL_ENVVARS");
382
+ fillPoolOption(req, options.preloadBundler, "!~PASSENGER_PRELOAD_BUNDLER");
381
383
  fillPoolOption(req, options.fileDescriptorUlimit, "!~PASSENGER_APP_FILE_DESCRIPTOR_ULIMIT");
382
384
  fillPoolOption(req, options.raiseInternalError, "!~PASSENGER_RAISE_INTERNAL_ERROR");
383
385
  fillPoolOption(req, options.lveMinUid, "!~PASSENGER_LVE_MIN_UID");
@@ -96,7 +96,7 @@ Controller::endRequestWithAppSocketIncompleteResponse(Client **client, Request *
96
96
  SKC_WARN(*client, "Sending 502 response: application did not send a complete response");
97
97
  }
98
98
  endRequestWithSimpleResponse(client, req,
99
- "<h2>Incomplete response received from application</h2>", 502);
99
+ getFormattedMessage(*req, "Incomplete response received from application"), 502);
100
100
  } else {
101
101
  disconnectWithAppSocketIncompleteResponseError(client);
102
102
  }
@@ -107,12 +107,39 @@ Controller::endRequestWithAppSocketReadError(Client **client, Request **req, int
107
107
  Client *c = *client;
108
108
  if (!(*req)->responseBegun) {
109
109
  SKC_WARN(*client, "Sending 502 response: application socket read error");
110
- endRequestWithSimpleResponse(client, req, "<h2>Application socket read error</h2>", 502);
110
+ endRequestWithSimpleResponse(client, req,
111
+ getFormattedMessage(*req, "Application socket read error"), 502);
111
112
  } else {
112
113
  disconnectWithAppSocketReadError(&c, e);
113
114
  }
114
115
  }
115
116
 
117
+ ServerKit::HeaderTable
118
+ Controller::getHeadersWithContentType(Request *req)
119
+ {
120
+ ServerKit::HeaderTable headers;
121
+ const LString *value = req->headers.lookup(P_STATIC_STRING("content-type"));
122
+ if (value != NULL) {
123
+ if (psg_lstr_cmp(value, P_STATIC_STRING("application/json"))) {
124
+ headers.insert(req->pool, "content-type", "application/json");
125
+ }
126
+ // Here we can extend setting `content-type` with more supported formats, ie: xml,...
127
+ }
128
+ return headers;
129
+ }
130
+
131
+ const string
132
+ Controller::getFormattedMessage(Request *req, const StaticString &body)
133
+ {
134
+ const LString *value = req->headers.lookup(P_STATIC_STRING("content-type"));
135
+ if (value != NULL) {
136
+ if (psg_lstr_cmp(value, P_STATIC_STRING("application/json"))) {
137
+ return "{\"status\":\"error\", \"message\": \""+body+"\"}";
138
+ }
139
+ }
140
+ return "<h1>"+body+"</h1>";
141
+ }
142
+
116
143
  /**
117
144
  * `data` must outlive the request.
118
145
  */
@@ -122,8 +149,7 @@ Controller::endRequestWithSimpleResponse(Client **c, Request **r,
122
149
  {
123
150
  Client *client = *c;
124
151
  Request *req = *r;
125
- ServerKit::HeaderTable headers;
126
-
152
+ ServerKit::HeaderTable headers = getHeadersWithContentType(req);
127
153
  headers.insert(req->pool, "cache-control", "no-cache, no-store, must-revalidate");
128
154
  writeSimpleResponse(client, code, &headers, body);
129
155
  endRequest(c, r);
@@ -134,9 +160,9 @@ Controller::endRequestAsBadGateway(Client **client, Request **req) {
134
160
  if ((*req)->responseBegun) {
135
161
  disconnectWithError(client, "bad gateway");
136
162
  } else {
137
- ServerKit::HeaderTable headers;
163
+ ServerKit::HeaderTable headers = getHeadersWithContentType(*req);
138
164
  headers.insert((*req)->pool, "cache-control", "no-cache, no-store, must-revalidate");
139
- writeSimpleResponse(*client, 502, &headers, "<h1>Bad Gateway</h1>");
165
+ writeSimpleResponse(*client, 502, &headers, getFormattedMessage(*req, "Bad Gateway"));
140
166
  endRequest(client, req);
141
167
  }
142
168
  }
@@ -207,6 +207,7 @@ private:
207
207
  static void checkoutSessionLater(Request *req);
208
208
  void reportSessionCheckoutError(Client *client, Request *req,
209
209
  const ExceptionPtr &e);
210
+ int lookupCodeFromHeader(Request *req, const char* header, int statusCode);
210
211
  void writeRequestQueueFullExceptionErrorResponse(Client *client,
211
212
  Request *req, const boost::shared_ptr<RequestQueueFullException> &e);
212
213
  void writeSpawnExceptionErrorResponse(Client *client, Request *req,
@@ -214,7 +215,7 @@ private:
214
215
  void writeOtherExceptionErrorResponse(Client *client, Request *req,
215
216
  const ExceptionPtr &e);
216
217
  void endRequestWithErrorResponse(Client **c, Request **r,
217
- const SpawningKit::SpawnException &e);
218
+ const SpawningKit::SpawnException &e, int statusCode);
218
219
  bool friendlyErrorPagesEnabled(Request *req);
219
220
 
220
221
 
@@ -313,6 +314,8 @@ private:
313
314
  Request **req);
314
315
  void endRequestWithAppSocketReadError(Client **client, Request **req,
315
316
  int e);
317
+ ServerKit::HeaderTable getHeadersWithContentType(Request *req);
318
+ const string getFormattedMessage(Request *req, const StaticString &body);
316
319
  void endRequestWithSimpleResponse(Client **c, Request **r,
317
320
  const StaticString &body, int code = 200);
318
321
  void endRequestAsBadGateway(Client **client, Request **req);
@@ -115,6 +115,7 @@ coreUsage() {
115
115
  printf(" --spawn-method NAME Spawn method to use. Can either be 'smart' or\n");
116
116
  printf(" 'direct'. Default: %s\n", DEFAULT_SPAWN_METHOD);
117
117
  printf(" --load-shell-envvars Load shell startup files before loading application\n");
118
+ printf(" --preload-bundler Tell Ruby to load bundler gem before loading application\n");
118
119
  printf(" --concurrency-model The concurrency model to use for the app, either\n");
119
120
  printf(" 'process' or 'thread' (Enterprise only).\n");
120
121
  printf(" Default: " DEFAULT_CONCURRENCY_MODEL "\n");
@@ -332,6 +333,9 @@ parseCoreOption(int argc, const char *argv[], int &i, Json::Value &updates) {
332
333
  } else if (p.isFlag(argv[i], '\0', "--load-shell-envvars")) {
333
334
  updates["default_load_shell_envvars"] = true;
334
335
  i++;
336
+ } else if (p.isFlag(argv[i], '\0', "--preload-bundler")) {
337
+ updates["default_preload_bundler"] = true;
338
+ i++;
335
339
  } else if (p.isFlag(argv[i], '\0', "--multi-app")) {
336
340
  updates["multi_app"] = true;
337
341
  i++;
@@ -258,6 +258,7 @@ Passenger::SpawningKit::Config::validate(vector<StaticString> &errors) const {
258
258
  * startsUsingWrapper
259
259
  * wrapperSuppliedByThirdParty
260
260
  * findFreePort
261
+ * preloadBundler
261
262
  * loadShellEnvvars
262
263
  * debugWorkDir
263
264
  * processTitle
@@ -287,6 +288,9 @@ Passenger::SpawningKit::Config::getConfidentialFieldsToPassToApp() const {
287
288
  if (!config.genericApp && config.startsUsingWrapper) {
288
289
  doc["wrapper_supplied_by_third_party"] = wrapperSuppliedByThirdParty;
289
290
  }
291
+ if (config.appType == "ruby") {
292
+ doc["preload_bundler"] = preloadBundler;
293
+ }
290
294
  doc["load_shell_envvars"] = loadShellEnvvars;
291
295
  doc["start_command"] = startCommand.toString();
292
296
  if (!config.genericApp && config.startsUsingWrapper) {
@@ -341,6 +345,9 @@ Passenger::SpawningKit::Config::getNonConfidentialFieldsToPassToApp() const {
341
345
  if (!config.genericApp && config.startsUsingWrapper) {
342
346
  doc["wrapper_supplied_by_third_party"] = wrapperSuppliedByThirdParty;
343
347
  }
348
+ if (config.appType == "ruby") {
349
+ doc["preload_bundler"] = preloadBundler;
350
+ }
344
351
  doc["load_shell_envvars"] = loadShellEnvvars;
345
352
  doc["start_command"] = startCommand.toString();
346
353
  if (!config.genericApp && config.startsUsingWrapper) {
@@ -156,6 +156,18 @@ public:
156
156
  */
157
157
  bool findFreePort: 1;
158
158
 
159
+ /**
160
+ * Whether Passenger should tell Ruby to preload bundler,
161
+ * this is to help deal with multiple versions of gems
162
+ * being installed, which is due to updates of default gems.
163
+ *
164
+ * @hinted_parseable
165
+ * @pass_during_handshake
166
+ * @only_meaningful_if config.appType == "ruby"
167
+ * @non_confidential
168
+ */
169
+ bool preloadBundler: 1;
170
+
159
171
  /**
160
172
  * Whether to load environment variables set in shell startup
161
173
  * files (e.g. ~/.bashrc) during spawning.
@@ -371,6 +383,7 @@ public:
371
383
  startsUsingWrapper(false),
372
384
  wrapperSuppliedByThirdParty(false),
373
385
  findFreePort(false),
386
+ preloadBundler(false),
374
387
  loadShellEnvvars(false),
375
388
  debugWorkDir(false),
376
389
  appEnv(P_STATIC_STRING(DEFAULT_APP_ENV)),
@@ -249,6 +249,10 @@ private:
249
249
  args["integration_mode"] = context->integrationMode;
250
250
  args["gupid"] = session.result.gupid;
251
251
  args["UNIX_PATH_MAX"] = (Json::UInt64) sizeof(addr.sun_path) - 1;
252
+
253
+ if (config->preloadBundler) {
254
+ args["preload_bundler"] = config->preloadBundler;
255
+ }
252
256
  if (config->genericApp || config->findFreePort) {
253
257
  args["expected_start_port"] = session.expectedStartPort;
254
258
  }
@@ -114,6 +114,7 @@ protected:
114
114
  config->logLevel = options.logLevel;
115
115
  config->wrapperSuppliedByThirdParty = false;
116
116
  config->findFreePort = false;
117
+ config->preloadBundler = options.preloadBundler;
117
118
  config->loadShellEnvvars = options.loadShellEnvvars;
118
119
  config->startupFile = options.getStartupFile(*context->wrapperRegistry);
119
120
  config->appType = options.appType;
@@ -702,6 +702,10 @@ setDefaultEnvvars(const Json::Value &args) {
702
702
  setenv("PORT", toString(args["expected_start_port"].asInt()).c_str(), 1);
703
703
  }
704
704
 
705
+ if (args.isMember("preload_bundler") && args["preload_bundler"].asBool()) {
706
+ setenv("RUBYOPT", "-r bundler/setup", 1);
707
+ }
708
+
705
709
  if (args["base_uri"].asString() != "/") {
706
710
  setenv("RAILS_RELATIVE_URL_ROOT", args["base_uri"].asCString(), 1);
707
711
  setenv("RACK_BASE_URI", args["base_uri"].asCString(), 1);
@@ -115,6 +115,7 @@ using namespace std;
115
115
  * default_meteor_app_settings string - -
116
116
  * default_min_instances unsigned integer - default(1)
117
117
  * default_nodejs string - default("node")
118
+ * default_preload_bundler boolean - default(false)
118
119
  * default_python string - default("python")
119
120
  * default_ruby string - default("ruby")
120
121
  * default_server_name string - default
@@ -153,7 +154,7 @@ using namespace std;
153
154
  * security_update_checker_interval unsigned integer - default(86400)
154
155
  * security_update_checker_proxy_url string - -
155
156
  * security_update_checker_url string - default("https://securitycheck.phusionpassenger.com/v1/check.json")
156
- * server_software string - default("Phusion_Passenger/6.0.11")
157
+ * server_software string - default("Phusion_Passenger/6.0.14")
157
158
  * setsid boolean - default(false)
158
159
  * show_version_in_header boolean - default(true)
159
160
  * single_app_mode_app_root string - default,read_only
@@ -337,6 +337,11 @@ extern "C" const command_rec passenger_commands[] = {
337
337
  NULL,
338
338
  RSRC_CONF,
339
339
  "Prestart the given web applications during startup."),
340
+ AP_INIT_FLAG("PassengerPreloadBundler",
341
+ (FlagFunc) cmd_passenger_preload_bundler,
342
+ NULL,
343
+ RSRC_CONF | ACCESS_CONF,
344
+ "Whether to tell Ruby to load the bundler gem before running the application."),
340
345
  AP_INIT_TAKE1("PassengerPython",
341
346
  (Take1Func) cmd_passenger_python,
342
347
  NULL,
@@ -234,6 +234,11 @@ ConfigManifestGenerator::autoGenerated_setAppConfigDefaults() {
234
234
  "PassengerNodejs",
235
235
  DEFAULT_NODEJS);
236
236
 
237
+ addOptionsContainerStaticDefaultBool(
238
+ defaultAppConfigContainer,
239
+ "PassengerPreloadBundler",
240
+ false);
241
+
237
242
  addOptionsContainerStaticDefaultStr(
238
243
  defaultAppConfigContainer,
239
244
  "PassengerPython",
@@ -729,6 +729,24 @@ cmd_passenger_pre_start(cmd_parms *cmd, void *pcfg, const char *arg) {
729
729
  return NULL;
730
730
  }
731
731
 
732
+ static const char *
733
+ cmd_passenger_preload_bundler(cmd_parms *cmd, void *pcfg, const char *arg) {
734
+ const char *err = ap_check_cmd_context(cmd, NOT_IN_FILES);
735
+ if (err != NULL) {
736
+ return err;
737
+ }
738
+
739
+ DirConfig *config = (DirConfig *) pcfg;
740
+ config->mPreloadBundlerSourceFile = cmd->directive->filename;
741
+ config->mPreloadBundlerSourceLine = cmd->directive->line_num;
742
+ config->mPreloadBundlerExplicitlySet = true;
743
+ config->mPreloadBundler =
744
+ (arg != NULL) ?
745
+ ENABLED :
746
+ DISABLED;
747
+ return NULL;
748
+ }
749
+
732
750
  static const char *
733
751
  cmd_passenger_python(cmd_parms *cmd, void *pcfg, const char *arg) {
734
752
  const char *err = ap_check_cmd_context(cmd, NOT_IN_FILES);
@@ -101,6 +101,7 @@ createDirConfig_autoGenerated(DirConfig *config) {
101
101
  /*
102
102
  * config->mNodejs: default initialized
103
103
  */
104
+ config->mPreloadBundler = Apache2Module::UNSET;
104
105
  /*
105
106
  * config->mPython: default initialized
106
107
  */
@@ -154,6 +155,7 @@ createDirConfig_autoGenerated(DirConfig *config) {
154
155
  config->mMinInstancesSourceLine = 0;
155
156
  config->mMonitorLogFileSourceLine = 0;
156
157
  config->mNodejsSourceLine = 0;
158
+ config->mPreloadBundlerSourceLine = 0;
157
159
  config->mPythonSourceLine = 0;
158
160
  config->mRestartDirSourceLine = 0;
159
161
  config->mRubySourceLine = 0;
@@ -191,6 +193,7 @@ createDirConfig_autoGenerated(DirConfig *config) {
191
193
  config->mMinInstancesExplicitlySet = false;
192
194
  config->mMonitorLogFileExplicitlySet = false;
193
195
  config->mNodejsExplicitlySet = false;
196
+ config->mPreloadBundlerExplicitlySet = false;
194
197
  config->mPythonExplicitlySet = false;
195
198
  config->mRestartDirExplicitlySet = false;
196
199
  config->mRubyExplicitlySet = false;
@@ -97,6 +97,9 @@ constructRequestHeaders_autoGenerated(request_rec *r, DirConfig *config, std::st
97
97
  addHeader(result, StaticString("!~PASSENGER_NODEJS",
98
98
  sizeof("!~PASSENGER_NODEJS") - 1),
99
99
  config->mNodejs);
100
+ addHeader(result, StaticString("!~PASSENGER_PRELOAD_BUNDLER",
101
+ sizeof("!~PASSENGER_PRELOAD_BUNDLER") - 1),
102
+ config->mPreloadBundler);
100
103
  addHeader(result, StaticString("!~PASSENGER_PYTHON",
101
104
  sizeof("!~PASSENGER_PYTHON") - 1),
102
105
  config->mPython);
@@ -361,6 +361,17 @@ ConfigManifestGenerator::autoGenerated_generateConfigManifestForDirConfig(server
361
361
  pdconf->mNodejs.data(),
362
362
  pdconf->mNodejs.data() + pdconf->mNodejs.size());
363
363
  }
364
+ if (pdconf->mPreloadBundlerExplicitlySet) {
365
+ findOrCreateAppAndLocOptionsContainers(serverRec, csconf, cdconf,
366
+ pdconf, context, &appOptionsContainer, &locOptionsContainer);
367
+ Json::Value &optionContainer = findOrCreateOptionContainer(*appOptionsContainer,
368
+ "PassengerPreloadBundler",
369
+ sizeof("PassengerPreloadBundler") - 1);
370
+ Json::Value &hierarchyMember = addOptionContainerHierarchyMember(optionContainer,
371
+ pdconf->mPreloadBundlerSourceFile,
372
+ pdconf->mPreloadBundlerSourceLine);
373
+ hierarchyMember["value"] = pdconf->mPreloadBundler == Apache2Module::ENABLED;
374
+ }
364
375
  if (pdconf->mPythonExplicitlySet) {
365
376
  findOrCreateAppAndLocOptionsContainers(serverRec, csconf, cdconf,
366
377
  pdconf, context, &appOptionsContainer, &locOptionsContainer);
@@ -152,6 +152,10 @@ mergeDirConfig_autoGenerated(DirConfig *config, DirConfig *base, DirConfig *add)
152
152
  (!add->mNodejs.empty())
153
153
  ? add->mNodejs
154
154
  : base->mNodejs;
155
+ config->mPreloadBundler =
156
+ (add->mPreloadBundler != Apache2Module::UNSET)
157
+ ? add->mPreloadBundler
158
+ : base->mPreloadBundler;
155
159
  config->mPython =
156
160
  (!add->mPython.empty())
157
161
  ? add->mPython
@@ -219,6 +223,7 @@ mergeDirConfig_autoGenerated(DirConfig *config, DirConfig *base, DirConfig *add)
219
223
  config->mMinInstancesSourceFile = add->mMinInstancesSourceFile;
220
224
  config->mMonitorLogFileSourceFile = add->mMonitorLogFileSourceFile;
221
225
  config->mNodejsSourceFile = add->mNodejsSourceFile;
226
+ config->mPreloadBundlerSourceFile = add->mPreloadBundlerSourceFile;
222
227
  config->mPythonSourceFile = add->mPythonSourceFile;
223
228
  config->mRestartDirSourceFile = add->mRestartDirSourceFile;
224
229
  config->mRubySourceFile = add->mRubySourceFile;
@@ -256,6 +261,7 @@ mergeDirConfig_autoGenerated(DirConfig *config, DirConfig *base, DirConfig *add)
256
261
  config->mMinInstancesSourceLine = add->mMinInstancesSourceLine;
257
262
  config->mMonitorLogFileSourceLine = add->mMonitorLogFileSourceLine;
258
263
  config->mNodejsSourceLine = add->mNodejsSourceLine;
264
+ config->mPreloadBundlerSourceLine = add->mPreloadBundlerSourceLine;
259
265
  config->mPythonSourceLine = add->mPythonSourceLine;
260
266
  config->mRestartDirSourceLine = add->mRestartDirSourceLine;
261
267
  config->mRubySourceLine = add->mRubySourceLine;
@@ -293,6 +299,7 @@ mergeDirConfig_autoGenerated(DirConfig *config, DirConfig *base, DirConfig *add)
293
299
  config->mMinInstancesExplicitlySet = add->mMinInstancesExplicitlySet;
294
300
  config->mMonitorLogFileExplicitlySet = add->mMonitorLogFileExplicitlySet;
295
301
  config->mNodejsExplicitlySet = add->mNodejsExplicitlySet;
302
+ config->mPreloadBundlerExplicitlySet = add->mPreloadBundlerExplicitlySet;
296
303
  config->mPythonExplicitlySet = add->mPythonExplicitlySet;
297
304
  config->mRestartDirExplicitlySet = add->mRestartDirExplicitlySet;
298
305
  config->mRubyExplicitlySet = add->mRubyExplicitlySet;
@@ -96,6 +96,11 @@ struct AutoGeneratedDirConfig {
96
96
  */
97
97
  Threeway mLoadShellEnvvars;
98
98
 
99
+ /*
100
+ * Whether to tell Ruby to load the bundler gem before running the application.
101
+ */
102
+ Threeway mPreloadBundler;
103
+
99
104
  /*
100
105
  * Whether to enable sticky sessions.
101
106
  */
@@ -245,6 +250,7 @@ struct AutoGeneratedDirConfig {
245
250
  StaticString mFriendlyErrorPagesSourceFile;
246
251
  StaticString mHighPerformanceSourceFile;
247
252
  StaticString mLoadShellEnvvarsSourceFile;
253
+ StaticString mPreloadBundlerSourceFile;
248
254
  StaticString mStickySessionsSourceFile;
249
255
  StaticString mForceMaxConcurrentRequestsPerProcessSourceFile;
250
256
  StaticString mLveMinUidSourceFile;
@@ -282,6 +288,7 @@ struct AutoGeneratedDirConfig {
282
288
  unsigned int mFriendlyErrorPagesSourceLine;
283
289
  unsigned int mHighPerformanceSourceLine;
284
290
  unsigned int mLoadShellEnvvarsSourceLine;
291
+ unsigned int mPreloadBundlerSourceLine;
285
292
  unsigned int mStickySessionsSourceLine;
286
293
  unsigned int mForceMaxConcurrentRequestsPerProcessSourceLine;
287
294
  unsigned int mLveMinUidSourceLine;
@@ -319,6 +326,7 @@ struct AutoGeneratedDirConfig {
319
326
  bool mFriendlyErrorPagesExplicitlySet: 1;
320
327
  bool mHighPerformanceExplicitlySet: 1;
321
328
  bool mLoadShellEnvvarsExplicitlySet: 1;
329
+ bool mPreloadBundlerExplicitlySet: 1;
322
330
  bool mStickySessionsExplicitlySet: 1;
323
331
  bool mForceMaxConcurrentRequestsPerProcessExplicitlySet: 1;
324
332
  bool mLveMinUidExplicitlySet: 1;
@@ -417,6 +425,15 @@ struct AutoGeneratedDirConfig {
417
425
  }
418
426
  }
419
427
 
428
+ bool
429
+ getPreloadBundler() const {
430
+ if (mPreloadBundler == Apache2Module::UNSET) {
431
+ return false;
432
+ } else {
433
+ return mPreloadBundler == Apache2Module::ENABLED;
434
+ }
435
+ }
436
+
420
437
  bool
421
438
  getStickySessions() const {
422
439
  if (mStickySessions == Apache2Module::UNSET) {
@@ -1333,6 +1333,7 @@ public:
1333
1333
  config["server_software"] = webServerDesc;
1334
1334
  config["multi_app"] = true;
1335
1335
  config["default_load_shell_envvars"] = true;
1336
+ config["default_preload_bundler"] = false;
1336
1337
  config["config_manifest"] = serverConfig.manifest;
1337
1338
  config["file_descriptor_log_target"] = nonEmptyString(serverConfig.fileDescriptorLogFile);
1338
1339
  config["controller_socket_backlog"] = serverConfig.socketBacklog;
@@ -83,7 +83,7 @@
83
83
  #define PASSENGER_API_VERSION_MAJOR 0
84
84
  #define PASSENGER_API_VERSION_MINOR 3
85
85
  #define PASSENGER_DEFAULT_USER "nobody"
86
- #define PASSENGER_VERSION "6.0.11"
86
+ #define PASSENGER_VERSION "6.0.14"
87
87
  #define POOL_HELPER_THREAD_STACK_SIZE 262144
88
88
  #define PROCESS_SHUTDOWN_TIMEOUT 60
89
89
  #define PROCESS_SHUTDOWN_TIMEOUT_DISPLAY "1 minute"
@@ -1183,7 +1183,7 @@ readFileDescriptor(int fd, unsigned long long *timeout) {
1183
1183
  struct msghdr msg;
1184
1184
  struct iovec vec;
1185
1185
  char dummy[1];
1186
- #if defined(__APPLE__) || defined(__SOLARIS__) || defined(__arm__)
1186
+ #if defined(__APPLE__) || defined(__SOLARIS__)
1187
1187
  // File descriptor passing macros (CMSG_*) seem to be broken
1188
1188
  // on 64-bit MacOS X. This structure works around the problem.
1189
1189
  struct {
@@ -1226,7 +1226,7 @@ readFileDescriptor(int fd, unsigned long long *timeout) {
1226
1226
  throw IOException("No valid file descriptor received.");
1227
1227
  }
1228
1228
 
1229
- #if defined(__APPLE__) || defined(__SOLARIS__) || defined(__arm__)
1229
+ #if defined(__APPLE__) || defined(__SOLARIS__)
1230
1230
  return control_data.fd;
1231
1231
  #else
1232
1232
  return *((int *) CMSG_DATA(control_header));
@@ -1242,7 +1242,7 @@ writeFileDescriptor(int fd, int fdToSend, unsigned long long *timeout) {
1242
1242
  struct msghdr msg;
1243
1243
  struct iovec vec;
1244
1244
  char dummy[1];
1245
- #if defined(__APPLE__) || defined(__SOLARIS__) || defined(__arm__)
1245
+ #if defined(__APPLE__) || defined(__SOLARIS__)
1246
1246
  struct {
1247
1247
  struct cmsghdr header;
1248
1248
  int fd;
@@ -1273,7 +1273,7 @@ writeFileDescriptor(int fd, int fdToSend, unsigned long long *timeout) {
1273
1273
  control_header = CMSG_FIRSTHDR(&msg);
1274
1274
  control_header->cmsg_level = SOL_SOCKET;
1275
1275
  control_header->cmsg_type = SCM_RIGHTS;
1276
- #if defined(__APPLE__) || defined(__SOLARIS__) || defined(__arm__)
1276
+ #if defined(__APPLE__) || defined(__SOLARIS__)
1277
1277
  control_header->cmsg_len = sizeof(control_data);
1278
1278
  control_data.fd = fdToSend;
1279
1279
  #else
@@ -0,0 +1,19 @@
1
+ /*
2
+ Copyright 2014-2015 Glen Joseph Fernandes
3
+ (glenjofe@gmail.com)
4
+
5
+ Distributed under the Boost Software License, Version 1.0.
6
+ (http://www.boost.org/LICENSE_1_0.txt)
7
+ */
8
+ #ifndef BOOST_ALIGN_ALIGN_HPP
9
+ #define BOOST_ALIGN_ALIGN_HPP
10
+
11
+ #include <boost/config.hpp>
12
+
13
+ #if !defined(BOOST_NO_CXX11_STD_ALIGN) && !defined(BOOST_LIBSTDCXX_VERSION)
14
+ #include <boost/align/detail/align_cxx11.hpp>
15
+ #else
16
+ #include <boost/align/detail/align.hpp>
17
+ #endif
18
+
19
+ #endif
@@ -0,0 +1,47 @@
1
+ /*
2
+ Copyright 2014-2015 Glen Joseph Fernandes
3
+ (glenjofe@gmail.com)
4
+
5
+ Distributed under the Boost Software License, Version 1.0.
6
+ (http://www.boost.org/LICENSE_1_0.txt)
7
+ */
8
+ #ifndef BOOST_ALIGN_ALIGNED_ALLOC_HPP
9
+ #define BOOST_ALIGN_ALIGNED_ALLOC_HPP
10
+
11
+ #include <boost/config.hpp>
12
+
13
+ #if defined(BOOST_HAS_UNISTD_H)
14
+ #include <unistd.h>
15
+ #endif
16
+
17
+ #if defined(__APPLE__) || defined(__APPLE_CC__) || defined(macintosh)
18
+ #include <AvailabilityMacros.h>
19
+ #endif
20
+
21
+ #if defined(BOOST_ALIGN_USE_ALIGN)
22
+ #include <boost/align/detail/aligned_alloc.hpp>
23
+ #elif defined(BOOST_ALIGN_USE_NEW)
24
+ #include <boost/align/detail/aligned_alloc_new.hpp>
25
+ #elif defined(_MSC_VER) && !defined(UNDER_CE)
26
+ #include <boost/align/detail/aligned_alloc_msvc.hpp>
27
+ #elif defined(__MINGW32__) && (__MSVCRT_VERSION__ >= 0x0700)
28
+ #include <boost/align/detail/aligned_alloc_msvc.hpp>
29
+ #elif defined(__MINGW32__)
30
+ #include <boost/align/detail/aligned_alloc_mingw.hpp>
31
+ #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
32
+ #include <boost/align/detail/aligned_alloc_posix.hpp>
33
+ #elif MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
34
+ #include <boost/align/detail/aligned_alloc_macos.hpp>
35
+ #elif defined(__ANDROID__)
36
+ #include <boost/align/detail/aligned_alloc_android.hpp>
37
+ #elif defined(__SunOS_5_11) || defined(__SunOS_5_12)
38
+ #include <boost/align/detail/aligned_alloc_posix.hpp>
39
+ #elif defined(sun) || defined(__sun)
40
+ #include <boost/align/detail/aligned_alloc_sunos.hpp>
41
+ #elif (_POSIX_C_SOURCE >= 200112L) || (_XOPEN_SOURCE >= 600)
42
+ #include <boost/align/detail/aligned_alloc_posix.hpp>
43
+ #else
44
+ #include <boost/align/detail/aligned_alloc.hpp>
45
+ #endif
46
+
47
+ #endif
@@ -0,0 +1,54 @@
1
+ /*
2
+ Copyright 2014-2016 Glen Joseph Fernandes
3
+ (glenjofe@gmail.com)
4
+
5
+ Distributed under the Boost Software License, Version 1.0.
6
+ (http://www.boost.org/LICENSE_1_0.txt)
7
+ */
8
+ #ifndef BOOST_ALIGN_ALIGNMENT_OF_HPP
9
+ #define BOOST_ALIGN_ALIGNMENT_OF_HPP
10
+
11
+ #include <boost/align/detail/element_type.hpp>
12
+ #include <boost/align/alignment_of_forward.hpp>
13
+
14
+ #if defined(_MSC_VER) && defined(__clang__)
15
+ #include <boost/align/detail/alignment_of_cxx11.hpp>
16
+ #elif defined(BOOST_MSVC)
17
+ #include <boost/align/detail/alignment_of_msvc.hpp>
18
+ #elif defined(__GNUC__) && defined(__unix__) && !defined(__LP64__)
19
+ #include <boost/align/detail/alignment_of.hpp>
20
+ #elif defined(BOOST_CLANG) && !defined(__x86_64__)
21
+ #include <boost/align/detail/alignment_of.hpp>
22
+ #elif !defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
23
+ #include <boost/align/detail/alignment_of_cxx11.hpp>
24
+ #elif defined(__ghs__) && (__GHS_VERSION_NUMBER >= 600)
25
+ #include <boost/align/detail/alignment_of_gcc.hpp>
26
+ #elif defined(BOOST_CODEGEARC)
27
+ #include <boost/align/detail/alignment_of_codegear.hpp>
28
+ #elif defined(BOOST_CLANG)
29
+ #include <boost/align/detail/alignment_of_clang.hpp>
30
+ #elif __GNUC__ > 4
31
+ #include <boost/align/detail/alignment_of_gcc.hpp>
32
+ #elif (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)
33
+ #include <boost/align/detail/alignment_of_gcc.hpp>
34
+ #else
35
+ #include <boost/align/detail/alignment_of.hpp>
36
+ #endif
37
+
38
+ namespace boost {
39
+ namespace alignment {
40
+
41
+ template<class T>
42
+ struct alignment_of
43
+ : detail::alignment_of<typename
44
+ detail::element_type<T>::type>::type { };
45
+
46
+ #if !defined(BOOST_NO_CXX14_VARIABLE_TEMPLATES)
47
+ template<class T>
48
+ constexpr std::size_t alignment_of_v = alignment_of<T>::value;
49
+ #endif
50
+
51
+ } /* alignment */
52
+ } /* boost */
53
+
54
+ #endif