passenger 5.0.4 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +0 -15
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
@@ -146,7 +146,9 @@ namespace ServerAgent {
|
|
146
146
|
oxt::thread *prestarterThread;
|
147
147
|
|
148
148
|
WorkingObjects()
|
149
|
-
:
|
149
|
+
: exitEvent(__FILE__, __LINE__, "WorkingObjects: exitEvent"),
|
150
|
+
allClientsDisconnectedEvent(__FILE__, __LINE__, "WorkingObjects: allClientsDisconnectedEvent"),
|
151
|
+
terminationCount(0),
|
150
152
|
shutdownCounter(0)
|
151
153
|
{
|
152
154
|
for (unsigned int i = 0; i < SERVER_KIT_MAX_SERVER_ENDPOINTS; i++) {
|
@@ -274,13 +276,19 @@ startListening() {
|
|
274
276
|
vector<string> adminAddresses = agentsOptions->getStrSet("server_admin_addresses", false);
|
275
277
|
|
276
278
|
for (unsigned int i = 0; i < addresses.size(); i++) {
|
277
|
-
wo->serverFds[i] = createServer(addresses[i]
|
279
|
+
wo->serverFds[i] = createServer(addresses[i], 0, true,
|
280
|
+
__FILE__, __LINE__);
|
281
|
+
P_LOG_FILE_DESCRIPTOR_PURPOSE(wo->serverFds[i],
|
282
|
+
"Server address: " << addresses[i]);
|
278
283
|
if (getSocketAddressType(addresses[i]) == SAT_UNIX) {
|
279
284
|
makeFileWorldReadableAndWritable(parseUnixSocketAddress(addresses[i]));
|
280
285
|
}
|
281
286
|
}
|
282
287
|
for (unsigned int i = 0; i < adminAddresses.size(); i++) {
|
283
|
-
wo->adminServerFds[i] = createServer(adminAddresses[i]
|
288
|
+
wo->adminServerFds[i] = createServer(adminAddresses[i], 0, true,
|
289
|
+
__FILE__, __LINE__);
|
290
|
+
P_LOG_FILE_DESCRIPTOR_PURPOSE(wo->adminServerFds[i],
|
291
|
+
"AdminServer address: " << adminAddresses[i]);
|
284
292
|
if (getSocketAddressType(adminAddresses[i]) == SAT_UNIX) {
|
285
293
|
makeFileWorldReadableAndWritable(parseUnixSocketAddress(adminAddresses[i]));
|
286
294
|
}
|
@@ -303,8 +311,8 @@ createPidFile() {
|
|
303
311
|
}
|
304
312
|
|
305
313
|
UPDATE_TRACE_POINT();
|
314
|
+
FdGuard guard(fd, __FILE__, __LINE__);
|
306
315
|
writeExact(fd, pidStr, strlen(pidStr));
|
307
|
-
syscalls::close(fd);
|
308
316
|
}
|
309
317
|
}
|
310
318
|
|
@@ -937,7 +945,10 @@ preinitialize(VariantMap &options) {
|
|
937
945
|
options.setInt("log_level", options.getInt("server_log_level"));
|
938
946
|
}
|
939
947
|
if (options.has("server_log_file")) {
|
940
|
-
options.set("
|
948
|
+
options.set("log_file", options.get("server_log_file"));
|
949
|
+
}
|
950
|
+
if (options.has("server_file_descriptor_log_file")) {
|
951
|
+
options.set("file_descriptor_log_file", options.get("server_file_descriptor_log_file"));
|
941
952
|
}
|
942
953
|
}
|
943
954
|
|
@@ -139,6 +139,7 @@ serverUsage() {
|
|
139
139
|
printf("Other options (optional):\n");
|
140
140
|
printf(" --log-file PATH Log to the given file.\n");
|
141
141
|
printf(" --log-level LEVEL Logging level. Default: %d\n", DEFAULT_LOG_LEVEL);
|
142
|
+
printf(" --fd-log-file PATH Log file descriptor activity to the given file.\n");
|
142
143
|
printf(" --stat-throttle-rate SECONDS\n");
|
143
144
|
printf(" Throttle filesystem restart.txt checks to at most\n");
|
144
145
|
printf(" once per given seconds. Default: %d\n", DEFAULT_STAT_THROTTLE_RATE);
|
@@ -308,10 +309,15 @@ parseServerOption(int argc, const char *argv[], int &i, VariantMap &options) {
|
|
308
309
|
options.setInt("server_log_level", atoi(argv[i + 1]));
|
309
310
|
i += 2;
|
310
311
|
} else if (p.isValueFlag(argc, i, argv[i], '\0', "--log-file")) {
|
311
|
-
// We do not set
|
312
|
+
// We do not set log_file because, when this function is called from
|
312
313
|
// the Watchdog, we don't want to affect the Watchdog's own log file.
|
313
314
|
options.set("server_log_file", argv[i + 1]);
|
314
315
|
i += 2;
|
316
|
+
} else if (p.isValueFlag(argc, i, argv[i], '\0', "--fd-log-file")) {
|
317
|
+
// We do not set file_descriptor_log_file because, when this function is called from
|
318
|
+
// the Watchdog, we don't want to affect the Watchdog's own log file.
|
319
|
+
options.set("server_file_descriptor_log_file", argv[i + 1]);
|
320
|
+
i += 2;
|
315
321
|
} else if (p.isValueFlag(argc, i, argv[i], '\0', "--stat-throttle-rate")) {
|
316
322
|
options.setInt("stat_throttle_rate", atoi(argv[i + 1]));
|
317
323
|
i += 2;
|
@@ -424,7 +424,7 @@ public:
|
|
424
424
|
if (req->session->isClosed()) {
|
425
425
|
sessionDoc["closed"] = true;
|
426
426
|
} else {
|
427
|
-
sessionDoc["pid"] = session->getPid();
|
427
|
+
sessionDoc["pid"] = (Json::Int64) session->getPid();
|
428
428
|
sessionDoc["gupid"] = session->getGupid().toString();
|
429
429
|
}
|
430
430
|
}
|
@@ -30,6 +30,8 @@ public:
|
|
30
30
|
virtual unsigned int getClientName(const Client *client, char *buf, size_t size) const {
|
31
31
|
char *pos = buf;
|
32
32
|
const char *end = buf + size - 1;
|
33
|
+
// WARNING: If you change the format, be sure to change
|
34
|
+
// AdminServer::extractThreadNumberFromClientName() too.
|
33
35
|
pos += uintToString(threadNumber, pos, end - pos);
|
34
36
|
pos = appendData(pos, end, "-", 1);
|
35
37
|
pos += uintToString(client->number, pos, end - pos);
|
@@ -85,6 +87,7 @@ virtual void reinitializeRequest(Client *client, Request *req) {
|
|
85
87
|
req->stickySession = false;
|
86
88
|
req->halfCloseAppConnection = false;
|
87
89
|
req->sessionCheckoutTry = 0;
|
90
|
+
req->appResponseInitialized = false;
|
88
91
|
req->strip100ContinueHeader = false;
|
89
92
|
req->hasPragmaHeader = false;
|
90
93
|
req->host = NULL;
|
@@ -119,7 +122,9 @@ virtual void deinitializeRequest(Client *client, Request *req) {
|
|
119
122
|
/***************/
|
120
123
|
/***************/
|
121
124
|
|
122
|
-
|
125
|
+
if (req->appResponseInitialized) {
|
126
|
+
deinitializeAppResponse(client, req);
|
127
|
+
}
|
123
128
|
|
124
129
|
ParentClass::deinitializeRequest(client, req);
|
125
130
|
}
|
@@ -127,6 +132,8 @@ virtual void deinitializeRequest(Client *client, Request *req) {
|
|
127
132
|
void reinitializeAppResponse(Client *client, Request *req) {
|
128
133
|
AppResponse *resp = &req->appResponse;
|
129
134
|
|
135
|
+
req->appResponseInitialized = true;
|
136
|
+
|
130
137
|
resp->httpMajor = 1;
|
131
138
|
resp->httpMinor = 0;
|
132
139
|
resp->httpState = AppResponse::PARSING_HEADERS;
|
@@ -152,6 +159,8 @@ void reinitializeAppResponse(Client *client, Request *req) {
|
|
152
159
|
void deinitializeAppResponse(Client *client, Request *req) {
|
153
160
|
AppResponse *resp = &req->appResponse;
|
154
161
|
|
162
|
+
req->appResponseInitialized = false;
|
163
|
+
|
155
164
|
if (resp->httpState == AppResponse::PARSING_HEADERS
|
156
165
|
&& resp->parserState.headerParser != NULL)
|
157
166
|
{
|
@@ -27,6 +27,7 @@
|
|
27
27
|
|
28
28
|
#include <ev++.h>
|
29
29
|
#include <string>
|
30
|
+
#include <cstring>
|
30
31
|
|
31
32
|
#include <ServerKit/HttpRequest.h>
|
32
33
|
#include <ServerKit/FdSinkChannel.h>
|
@@ -67,6 +68,7 @@ public:
|
|
67
68
|
|
68
69
|
// Range: 0..MAX_SESSION_CHECKOUT_TRY
|
69
70
|
boost::uint8_t sessionCheckoutTry;
|
71
|
+
bool appResponseInitialized: 1;
|
70
72
|
bool strip100ContinueHeader: 1;
|
71
73
|
bool hasPragmaHeader: 1;
|
72
74
|
|
@@ -100,6 +102,12 @@ public:
|
|
100
102
|
#endif
|
101
103
|
|
102
104
|
|
105
|
+
Request()
|
106
|
+
: BaseHttpRequest()
|
107
|
+
{
|
108
|
+
memset(&scopeLogs, 0, sizeof(scopeLogs));
|
109
|
+
}
|
110
|
+
|
103
111
|
const char *getStateString() const {
|
104
112
|
switch (state) {
|
105
113
|
case ANALYZING_REQUEST:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
-
* Copyright (c) 2014 Phusion
|
3
|
+
* Copyright (c) 2014-2015 Phusion
|
4
4
|
*
|
5
5
|
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
6
|
*
|
@@ -28,6 +28,7 @@
|
|
28
28
|
#include <oxt/backtrace.hpp>
|
29
29
|
#include <ev++.h>
|
30
30
|
#include <ctime>
|
31
|
+
#include <cstddef>
|
31
32
|
#include <cassert>
|
32
33
|
#include <MemoryKit/mbuf.h>
|
33
34
|
#include <ServerKit/Context.h>
|
@@ -176,8 +177,8 @@ private:
|
|
176
177
|
|
177
178
|
#ifndef NDEBUG
|
178
179
|
if (output != NULL) {
|
179
|
-
assert(pos - output == result);
|
180
|
-
assert(pos - output <= outputSize);
|
180
|
+
assert(size_t(pos - output) == size_t(result));
|
181
|
+
assert(size_t(pos - output) <= size_t(outputSize));
|
181
182
|
}
|
182
183
|
#endif
|
183
184
|
return result;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
-
* Copyright (c) 2013-
|
3
|
+
* Copyright (c) 2013-2015 Phusion
|
4
4
|
*
|
5
5
|
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
6
|
*
|
@@ -159,9 +159,17 @@ private:
|
|
159
159
|
|
160
160
|
HeaderTable headers;
|
161
161
|
Json::Value doc;
|
162
|
+
string logFile = getLogFile();
|
163
|
+
string fileDescriptorLogFile = getFileDescriptorLogFile();
|
162
164
|
|
163
165
|
headers.insert(req->pool, "content-type", "application/json");
|
164
166
|
doc["log_level"] = getLogLevel();
|
167
|
+
if (!logFile.empty()) {
|
168
|
+
doc["log_file"] = logFile;
|
169
|
+
}
|
170
|
+
if (!fileDescriptorLogFile.empty()) {
|
171
|
+
doc["file_descriptor_log_file"] = fileDescriptorLogFile;
|
172
|
+
}
|
165
173
|
|
166
174
|
writeSimpleResponse(client, 200, &headers, doc.toStyledString());
|
167
175
|
if (!req->ended()) {
|
@@ -189,8 +197,24 @@ private:
|
|
189
197
|
setLogLevel(json["log_level"].asInt());
|
190
198
|
}
|
191
199
|
if (json.isMember("log_file")) {
|
192
|
-
|
193
|
-
|
200
|
+
string logFile = json["log_file"].asString();
|
201
|
+
try {
|
202
|
+
logFile = absolutizePath(logFile);
|
203
|
+
} catch (const SystemException &e) {
|
204
|
+
unsigned int bufsize = 1024;
|
205
|
+
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
206
|
+
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
207
|
+
"\"message\": \"Cannot absolutize log file filename: %s\" }",
|
208
|
+
e.what());
|
209
|
+
writeSimpleResponse(client, 500, &headers, message);
|
210
|
+
if (!req->ended()) {
|
211
|
+
endRequest(&client, &req);
|
212
|
+
}
|
213
|
+
return;
|
214
|
+
}
|
215
|
+
|
216
|
+
int e;
|
217
|
+
if (!setLogFile(logFile, &e)) {
|
194
218
|
unsigned int bufsize = 1024;
|
195
219
|
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
196
220
|
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
@@ -215,6 +239,7 @@ private:
|
|
215
239
|
if (req->method != HTTP_POST) {
|
216
240
|
respondWith405(client, req);
|
217
241
|
} else if (authorize(client, req, FULL)) {
|
242
|
+
int e;
|
218
243
|
HeaderTable headers;
|
219
244
|
headers.insert(req->pool, "content-type", "application/json");
|
220
245
|
|
@@ -223,25 +248,46 @@ private:
|
|
223
248
|
writeSimpleResponse(client, 500, &headers, "{ \"status\": \"error\", "
|
224
249
|
"\"code\": \"NO_LOG_FILE\", "
|
225
250
|
"\"message\": \"" PROGRAM_NAME " was not configured with a log file.\" }\n");
|
226
|
-
|
227
|
-
|
228
|
-
|
251
|
+
if (!req->ended()) {
|
252
|
+
endRequest(&client, &req);
|
253
|
+
}
|
254
|
+
return;
|
255
|
+
}
|
256
|
+
|
257
|
+
if (!setLogFile(logFile, &e)) {
|
258
|
+
unsigned int bufsize = 1024;
|
259
|
+
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
260
|
+
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
261
|
+
"\"code\": \"LOG_FILE_OPEN_ERROR\", "
|
262
|
+
"\"message\": \"Cannot reopen log file %s: %s (errno=%d)\" }",
|
263
|
+
logFile.c_str(), strerror(e), e);
|
264
|
+
writeSimpleResponse(client, 500, &headers, message);
|
265
|
+
if (!req->ended()) {
|
266
|
+
endRequest(&client, &req);
|
267
|
+
}
|
268
|
+
return;
|
269
|
+
}
|
270
|
+
P_NOTICE("Log file reopened.");
|
271
|
+
|
272
|
+
if (hasFileDescriptorLogFile()) {
|
273
|
+
if (!setFileDescriptorLogFile(getFileDescriptorLogFile(), &e)) {
|
229
274
|
unsigned int bufsize = 1024;
|
230
275
|
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
231
276
|
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
232
|
-
"\"code\": \"
|
233
|
-
"\"message\": \"Cannot reopen log file: %s (errno=%d)\" }",
|
234
|
-
strerror(e), e);
|
277
|
+
"\"code\": \"FD_LOG_FILE_OPEN_ERROR\", "
|
278
|
+
"\"message\": \"Cannot reopen file descriptor log file %s: %s (errno=%d)\" }",
|
279
|
+
getFileDescriptorLogFile().c_str(), strerror(e), e);
|
235
280
|
writeSimpleResponse(client, 500, &headers, message);
|
236
281
|
if (!req->ended()) {
|
237
282
|
endRequest(&client, &req);
|
238
283
|
}
|
239
284
|
return;
|
240
285
|
}
|
241
|
-
P_NOTICE("
|
242
|
-
writeSimpleResponse(client, 200, &headers, "{ \"status\": \"ok\" }\n");
|
286
|
+
P_NOTICE("File descriptor log file reopened.");
|
243
287
|
}
|
244
288
|
|
289
|
+
writeSimpleResponse(client, 200, &headers, "{ \"status\": \"ok\" }\n");
|
290
|
+
|
245
291
|
if (!req->ended()) {
|
246
292
|
endRequest(&client, &req);
|
247
293
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
-
* Copyright (c) 2010-
|
3
|
+
* Copyright (c) 2010-2015 Phusion
|
4
4
|
*
|
5
5
|
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
6
|
*
|
@@ -157,9 +157,9 @@ private:
|
|
157
157
|
} else {
|
158
158
|
this->filename = filename;
|
159
159
|
}
|
160
|
-
fd
|
160
|
+
fd.assign(syscalls::open(filename.c_str(),
|
161
161
|
O_CREAT | O_WRONLY | O_APPEND,
|
162
|
-
0600);
|
162
|
+
0600), __FILE__, __LINE__);
|
163
163
|
if (fd == -1) {
|
164
164
|
int e = errno;
|
165
165
|
throw FileSystemException("Cannnot open file", e, filename);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
-
* Copyright (c) 2010-
|
3
|
+
* Copyright (c) 2010-2015 Phusion
|
4
4
|
*
|
5
5
|
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
6
|
*
|
@@ -91,6 +91,8 @@ namespace LoggingAgent {
|
|
91
91
|
bgloop(NULL),
|
92
92
|
serverKitContext(NULL),
|
93
93
|
loggingServer(NULL),
|
94
|
+
exitEvent(__FILE__, __LINE__, "WorkingObjects: exitEvent"),
|
95
|
+
allClientsDisconnectedEvent(__FILE__, __LINE__, "WorkingObjects: allClientsDisconnectedEvent"),
|
94
96
|
terminationCount(0)
|
95
97
|
{ }
|
96
98
|
};
|
@@ -201,7 +203,10 @@ startListening() {
|
|
201
203
|
vector<string> adminAddresses;
|
202
204
|
|
203
205
|
address = options.get("logging_agent_address");
|
204
|
-
wo->serverSocketFd
|
206
|
+
wo->serverSocketFd.assign(createServer(address, 0, true,
|
207
|
+
__FILE__, __LINE__), NULL, 0);
|
208
|
+
P_LOG_FILE_DESCRIPTOR_PURPOSE(wo->serverSocketFd,
|
209
|
+
"Server address: " << wo->serverSocketFd);
|
205
210
|
if (getSocketAddressType(address) == SAT_UNIX) {
|
206
211
|
makeFileWorldReadableAndWritable(parseUnixSocketAddress(address));
|
207
212
|
}
|
@@ -210,7 +215,10 @@ startListening() {
|
|
210
215
|
adminAddresses = options.getStrSet("logging_agent_admin_addresses",
|
211
216
|
false);
|
212
217
|
foreach (address, adminAddresses) {
|
213
|
-
wo->adminSockets.push_back(createServer(address
|
218
|
+
wo->adminSockets.push_back(createServer(address, 0, true,
|
219
|
+
__FILE__, __LINE__));
|
220
|
+
P_LOG_FILE_DESCRIPTOR_PURPOSE(wo->adminSockets.back(),
|
221
|
+
"Server address: " << wo->adminSockets.back());
|
214
222
|
if (getSocketAddressType(address) == SAT_UNIX) {
|
215
223
|
makeFileWorldReadableAndWritable(parseUnixSocketAddress(address));
|
216
224
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* Phusion Passenger - https://www.phusionpassenger.com/
|
3
|
-
* Copyright (c) 2014 Phusion
|
3
|
+
* Copyright (c) 2014-2015 Phusion
|
4
4
|
*
|
5
5
|
* "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
|
6
6
|
*
|
@@ -177,12 +177,16 @@ private:
|
|
177
177
|
HeaderTable headers;
|
178
178
|
Json::Value doc;
|
179
179
|
string logFile = getLogFile();
|
180
|
+
string fileDescriptorLogFile = getFileDescriptorLogFile();
|
180
181
|
|
181
182
|
headers.insert(req->pool, "content-type", "application/json");
|
182
183
|
doc["log_level"] = getLogLevel();
|
183
184
|
if (!logFile.empty()) {
|
184
185
|
doc["log_file"] = logFile;
|
185
186
|
}
|
187
|
+
if (!fileDescriptorLogFile.empty()) {
|
188
|
+
doc["file_descriptor_log_file"] = fileDescriptorLogFile;
|
189
|
+
}
|
186
190
|
|
187
191
|
writeSimpleResponse(client, 200, &headers, doc.toStyledString());
|
188
192
|
if (!req->ended()) {
|
@@ -210,8 +214,24 @@ private:
|
|
210
214
|
setLogLevel(json["log_level"].asInt());
|
211
215
|
}
|
212
216
|
if (json.isMember("log_file")) {
|
213
|
-
|
214
|
-
|
217
|
+
string logFile = json["log_file"].asString();
|
218
|
+
try {
|
219
|
+
logFile = absolutizePath(logFile);
|
220
|
+
} catch (const SystemException &e) {
|
221
|
+
unsigned int bufsize = 1024;
|
222
|
+
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
223
|
+
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
224
|
+
"\"message\": \"Cannot absolutize log file filename: %s\" }",
|
225
|
+
e.what());
|
226
|
+
writeSimpleResponse(client, 500, &headers, message);
|
227
|
+
if (!req->ended()) {
|
228
|
+
endRequest(&client, &req);
|
229
|
+
}
|
230
|
+
return;
|
231
|
+
}
|
232
|
+
|
233
|
+
int e;
|
234
|
+
if (!setLogFile(logFile, &e)) {
|
215
235
|
unsigned int bufsize = 1024;
|
216
236
|
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
217
237
|
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
@@ -236,6 +256,7 @@ private:
|
|
236
256
|
if (req->method != HTTP_POST) {
|
237
257
|
respondWith405(client, req);
|
238
258
|
} else if (authorize(client, req, FULL)) {
|
259
|
+
int e;
|
239
260
|
HeaderTable headers;
|
240
261
|
headers.insert(req->pool, "content-type", "application/json");
|
241
262
|
|
@@ -244,25 +265,46 @@ private:
|
|
244
265
|
writeSimpleResponse(client, 500, &headers, "{ \"status\": \"error\", "
|
245
266
|
"\"code\": \"NO_LOG_FILE\", "
|
246
267
|
"\"message\": \"" PROGRAM_NAME " was not configured with a log file.\" }\n");
|
247
|
-
|
248
|
-
|
249
|
-
|
268
|
+
if (!req->ended()) {
|
269
|
+
endRequest(&client, &req);
|
270
|
+
}
|
271
|
+
return;
|
272
|
+
}
|
273
|
+
|
274
|
+
if (!setLogFile(logFile, &e)) {
|
275
|
+
unsigned int bufsize = 1024;
|
276
|
+
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
277
|
+
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
278
|
+
"\"code\": \"LOG_FILE_OPEN_ERROR\", "
|
279
|
+
"\"message\": \"Cannot reopen log file %s: %s (errno=%d)\" }",
|
280
|
+
logFile.c_str(), strerror(e), e);
|
281
|
+
writeSimpleResponse(client, 500, &headers, message);
|
282
|
+
if (!req->ended()) {
|
283
|
+
endRequest(&client, &req);
|
284
|
+
}
|
285
|
+
return;
|
286
|
+
}
|
287
|
+
P_NOTICE("Log file reopened.");
|
288
|
+
|
289
|
+
if (hasFileDescriptorLogFile()) {
|
290
|
+
if (!setFileDescriptorLogFile(getFileDescriptorLogFile(), &e)) {
|
250
291
|
unsigned int bufsize = 1024;
|
251
292
|
char *message = (char *) psg_pnalloc(req->pool, bufsize);
|
252
293
|
snprintf(message, bufsize, "{ \"status\": \"error\", "
|
253
|
-
"\"code\": \"
|
254
|
-
"\"message\": \"Cannot reopen log file: %s (errno=%d)\" }",
|
255
|
-
strerror(e), e);
|
294
|
+
"\"code\": \"FD_LOG_FILE_OPEN_ERROR\", "
|
295
|
+
"\"message\": \"Cannot reopen file descriptor log file %s: %s (errno=%d)\" }",
|
296
|
+
getFileDescriptorLogFile().c_str(), strerror(e), e);
|
256
297
|
writeSimpleResponse(client, 500, &headers, message);
|
257
298
|
if (!req->ended()) {
|
258
299
|
endRequest(&client, &req);
|
259
300
|
}
|
260
301
|
return;
|
261
302
|
}
|
262
|
-
P_NOTICE("
|
263
|
-
writeSimpleResponse(client, 200, &headers, "{ \"status\": \"ok\" }\n");
|
303
|
+
P_NOTICE("File descriptor log file reopened.");
|
264
304
|
}
|
265
305
|
|
306
|
+
writeSimpleResponse(client, 200, &headers, "{ \"status\": \"ok\" }\n");
|
307
|
+
|
266
308
|
if (!req->ended()) {
|
267
309
|
endRequest(&client, &req);
|
268
310
|
}
|