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
@@ -1,11 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
# A wrapper around gpg that makes gpg non-interactive, and makes it
|
3
|
-
# read a passphrase from the passphrase configuration file. To use
|
4
|
-
# this wrapper, prepend the containing directory to PATH.
|
5
|
-
|
6
|
-
set -e
|
7
|
-
if [[ "$1" == "--version" ]]; then
|
8
|
-
exec /usr/bin/gpg2.real --version
|
9
|
-
else
|
10
|
-
exec /usr/bin/gpg2.real --batch --passphrase-fd 3 "$@" 3<"/params/signing_passphrase"
|
11
|
-
fi
|
@@ -1,42 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
function verbose_run()
|
5
|
-
{
|
6
|
-
if $VERBOSE; then
|
7
|
-
echo "$ $@"
|
8
|
-
fi
|
9
|
-
"$@"
|
10
|
-
}
|
11
|
-
|
12
|
-
verbose_run /system/internal/inituidgid
|
13
|
-
|
14
|
-
if [[ ! -e /cache ]]; then
|
15
|
-
verbose_run mkdir /cache
|
16
|
-
verbose_run chown app: /cache
|
17
|
-
fi
|
18
|
-
|
19
|
-
verbose_run /system/internal/setuser app \
|
20
|
-
mkdir -p "/output/log" "/cache/mock_cache" "/cache/mock_lib"
|
21
|
-
verbose_run /system/internal/setuser app rm -rf /output/log/*
|
22
|
-
if $CLEAN; then
|
23
|
-
verbose_run /system/internal/setuser app rm -rf /output/*-*
|
24
|
-
fi
|
25
|
-
|
26
|
-
verbose_run rm -rf /var/lib/mock
|
27
|
-
verbose_run ln -s /cache/mock_lib /var/lib/mock
|
28
|
-
verbose_run rm -rf /var/cache/mock
|
29
|
-
verbose_run ln -s /cache/mock_cache /var/cache/mock
|
30
|
-
verbose_run chown root:mock /cache/mock_cache
|
31
|
-
verbose_run chown root:mock /cache/mock_lib
|
32
|
-
|
33
|
-
export BUNDLE_GEMFILE=/home/app/Gemfile
|
34
|
-
|
35
|
-
if [[ "$TASK" != -T ]]; then
|
36
|
-
TASK="$TASK finish"
|
37
|
-
fi
|
38
|
-
|
39
|
-
verbose_run exec /system/internal/my_init --skip-runit --skip-startup-files --quiet -- \
|
40
|
-
/system/internal/setuser app \
|
41
|
-
bundle exec drake -j$CONCURRENCY -f /system/internal/build_tasks.rb \
|
42
|
-
$TASK --trace
|
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
import os.path, sys
|
3
|
-
|
4
|
-
if not os.path.isfile('/etc/mock/default.cfg'):
|
5
|
-
sys.stderr.write("This does not seem to be a Red Hat compatible OS.\n")
|
6
|
-
exit(1)
|
7
|
-
|
8
|
-
vars = { 'config_opts': {} }
|
9
|
-
execfile("/etc/mock/default.cfg", vars)
|
10
|
-
arch = vars['config_opts']['target_arch']
|
11
|
-
if arch == 'i386' or arch == 'i586' or arch == 'i686':
|
12
|
-
print('i386')
|
13
|
-
else:
|
14
|
-
print(arch)
|
@@ -1,10 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python
|
2
|
-
import os.path, sys
|
3
|
-
|
4
|
-
if not os.path.isfile('/etc/mock/default.cfg'):
|
5
|
-
sys.stderr.write("This does not seem to be a Red Hat compatible OS.\n")
|
6
|
-
exit(1)
|
7
|
-
|
8
|
-
vars = { 'config_opts': {} }
|
9
|
-
execfile("/etc/mock/default.cfg", vars)
|
10
|
-
print(vars['config_opts']['dist'])
|
@@ -1,27 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
function run_quiet()
|
5
|
-
{
|
6
|
-
/system/internal/setuser app "$@"
|
7
|
-
}
|
8
|
-
|
9
|
-
function run()
|
10
|
-
{
|
11
|
-
echo " --> $@"
|
12
|
-
/system/internal/setuser app "$@"
|
13
|
-
}
|
14
|
-
|
15
|
-
/system/internal/inituidgid
|
16
|
-
|
17
|
-
cd /git
|
18
|
-
if [[ -e .git ]]; then
|
19
|
-
run_quiet rm -rf *
|
20
|
-
run git fetch
|
21
|
-
else
|
22
|
-
run git clone "$GIT_URL" .
|
23
|
-
fi
|
24
|
-
if [[ -e .gitmodules ]]; then
|
25
|
-
run git submodule update --init --recursive
|
26
|
-
fi
|
27
|
-
run git reset --hard "$GIT_REF"
|
@@ -1,17 +0,0 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
set -e
|
3
|
-
|
4
|
-
chown -R "$APP_UID:$APP_GID" /home/app
|
5
|
-
groupmod -g "$APP_GID" app
|
6
|
-
usermod -u "$APP_UID" -g "$APP_GID" app
|
7
|
-
|
8
|
-
# There's something strange with either Docker or the kernel, so that
|
9
|
-
# the 'app' user cannot access its home directory even after a proper
|
10
|
-
# chown/chmod. We work around it like this.
|
11
|
-
mv /home/app /home/app2
|
12
|
-
cp -dpR /home/app2 /home/app
|
13
|
-
rm -rf /home/app2
|
14
|
-
|
15
|
-
if [[ $# -gt 0 ]]; then
|
16
|
-
exec "$@"
|
17
|
-
fi
|
@@ -1,344 +0,0 @@
|
|
1
|
-
#!/system/internal/python27 -u
|
2
|
-
import os, os.path, sys, stat, signal, errno, argparse, time, json, re
|
3
|
-
|
4
|
-
KILL_PROCESS_TIMEOUT = 5
|
5
|
-
KILL_ALL_PROCESSES_TIMEOUT = 5
|
6
|
-
|
7
|
-
LOG_LEVEL_ERROR = 1
|
8
|
-
LOG_LEVEL_WARN = 1
|
9
|
-
LOG_LEVEL_INFO = 2
|
10
|
-
LOG_LEVEL_DEBUG = 3
|
11
|
-
|
12
|
-
log_level = None
|
13
|
-
|
14
|
-
terminated_child_processes = {}
|
15
|
-
|
16
|
-
class AlarmException(Exception):
|
17
|
-
pass
|
18
|
-
|
19
|
-
def error(message):
|
20
|
-
if log_level >= LOG_LEVEL_ERROR:
|
21
|
-
sys.stderr.write("*** %s\n" % message)
|
22
|
-
|
23
|
-
def warn(message):
|
24
|
-
if log_level >= LOG_LEVEL_WARN:
|
25
|
-
sys.stderr.write("*** %s\n" % message)
|
26
|
-
|
27
|
-
def info(message):
|
28
|
-
if log_level >= LOG_LEVEL_INFO:
|
29
|
-
sys.stderr.write("*** %s\n" % message)
|
30
|
-
|
31
|
-
def debug(message):
|
32
|
-
if log_level >= LOG_LEVEL_DEBUG:
|
33
|
-
sys.stderr.write("*** %s\n" % message)
|
34
|
-
|
35
|
-
def ignore_signals_and_raise_keyboard_interrupt(signame):
|
36
|
-
signal.signal(signal.SIGTERM, signal.SIG_IGN)
|
37
|
-
signal.signal(signal.SIGINT, signal.SIG_IGN)
|
38
|
-
raise KeyboardInterrupt(signame)
|
39
|
-
|
40
|
-
def raise_alarm_exception():
|
41
|
-
raise AlarmException('Alarm')
|
42
|
-
|
43
|
-
def listdir(path):
|
44
|
-
try:
|
45
|
-
result = os.stat(path)
|
46
|
-
except OSError:
|
47
|
-
return []
|
48
|
-
if stat.S_ISDIR(result.st_mode):
|
49
|
-
return sorted(os.listdir(path))
|
50
|
-
else:
|
51
|
-
return []
|
52
|
-
|
53
|
-
def is_exe(path):
|
54
|
-
try:
|
55
|
-
return os.path.isfile(path) and os.access(path, os.X_OK)
|
56
|
-
except OSError:
|
57
|
-
return False
|
58
|
-
|
59
|
-
def create_hosts_file():
|
60
|
-
run_command_killable("/bin/cp", "/etc/hosts", "/etc/workaround-docker-2267/")
|
61
|
-
|
62
|
-
def import_envvars(clear_existing_environment = True, override_existing_environment = True):
|
63
|
-
new_env = {}
|
64
|
-
for envfile in listdir("/etc/container_environment"):
|
65
|
-
name = os.path.basename(envfile)
|
66
|
-
with open("/etc/container_environment/" + envfile, "r") as f:
|
67
|
-
# Text files often end with a trailing newline, which we
|
68
|
-
# don't want to include in the env variable value. See
|
69
|
-
# https://github.com/phusion/baseimage-docker/pull/49
|
70
|
-
value = re.sub('\n\Z', '', f.read())
|
71
|
-
new_env[name] = value
|
72
|
-
if clear_existing_environment:
|
73
|
-
os.environ.clear()
|
74
|
-
for name, value in new_env.items():
|
75
|
-
if override_existing_environment or not name in os.environ:
|
76
|
-
os.environ[name] = value
|
77
|
-
|
78
|
-
def export_envvars(to_dir = True):
|
79
|
-
shell_dump = ""
|
80
|
-
for name, value in os.environ.items():
|
81
|
-
if name in ['HOME', 'USER', 'GROUP', 'UID', 'GID', 'SHELL']:
|
82
|
-
continue
|
83
|
-
if to_dir:
|
84
|
-
with open("/etc/container_environment/" + name, "w") as f:
|
85
|
-
f.write(value)
|
86
|
-
shell_dump += "export " + shquote(name) + "=" + shquote(value) + "\n"
|
87
|
-
with open("/etc/container_environment.sh", "w") as f:
|
88
|
-
f.write(shell_dump)
|
89
|
-
with open("/etc/container_environment.json", "w") as f:
|
90
|
-
f.write(json.dumps(dict(os.environ)))
|
91
|
-
|
92
|
-
_find_unsafe = re.compile(r'[^\w@%+=:,./-]').search
|
93
|
-
|
94
|
-
def shquote(s):
|
95
|
-
"""Return a shell-escaped version of the string *s*."""
|
96
|
-
if not s:
|
97
|
-
return "''"
|
98
|
-
if _find_unsafe(s) is None:
|
99
|
-
return s
|
100
|
-
|
101
|
-
# use single quotes, and put single quotes into double quotes
|
102
|
-
# the string $'b is then quoted as '$'"'"'b'
|
103
|
-
return "'" + s.replace("'", "'\"'\"'") + "'"
|
104
|
-
|
105
|
-
# Waits for the child process with the given PID, while at the same time
|
106
|
-
# reaping any other child processes that have exited (e.g. adopted child
|
107
|
-
# processes that have terminated).
|
108
|
-
def waitpid_reap_other_children(pid):
|
109
|
-
global terminated_child_processes
|
110
|
-
|
111
|
-
status = terminated_child_processes.get(pid)
|
112
|
-
if status:
|
113
|
-
# A previous call to waitpid_reap_other_children(),
|
114
|
-
# with an argument not equal to the current argument,
|
115
|
-
# already waited for this process. Return the status
|
116
|
-
# that was obtained back then.
|
117
|
-
del terminated_child_processes[pid]
|
118
|
-
return status
|
119
|
-
|
120
|
-
done = False
|
121
|
-
status = None
|
122
|
-
while not done:
|
123
|
-
try:
|
124
|
-
this_pid, status = os.waitpid(-1, 0)
|
125
|
-
if this_pid == pid:
|
126
|
-
done = True
|
127
|
-
else:
|
128
|
-
# Save status for later.
|
129
|
-
terminated_child_processes[this_pid] = status
|
130
|
-
except OSError as e:
|
131
|
-
if e.errno == errno.ECHILD or e.errno == errno.ESRCH:
|
132
|
-
return None
|
133
|
-
else:
|
134
|
-
raise
|
135
|
-
return status
|
136
|
-
|
137
|
-
def stop_child_process(name, pid, signo = signal.SIGTERM, time_limit = KILL_PROCESS_TIMEOUT):
|
138
|
-
info("Shutting down %s (PID %d)..." % (name, pid))
|
139
|
-
try:
|
140
|
-
os.kill(pid, signo)
|
141
|
-
except OSError:
|
142
|
-
pass
|
143
|
-
signal.alarm(time_limit)
|
144
|
-
try:
|
145
|
-
try:
|
146
|
-
waitpid_reap_other_children(pid)
|
147
|
-
except OSError:
|
148
|
-
pass
|
149
|
-
except AlarmException:
|
150
|
-
warn("%s (PID %d) did not shut down in time. Forcing it to exit." % (name, pid))
|
151
|
-
try:
|
152
|
-
os.kill(pid, signal.SIGKILL)
|
153
|
-
except OSError:
|
154
|
-
pass
|
155
|
-
try:
|
156
|
-
waitpid_reap_other_children(pid)
|
157
|
-
except OSError:
|
158
|
-
pass
|
159
|
-
finally:
|
160
|
-
signal.alarm(0)
|
161
|
-
|
162
|
-
def run_command_killable(*argv):
|
163
|
-
filename = argv[0]
|
164
|
-
status = None
|
165
|
-
pid = os.spawnvp(os.P_NOWAIT, filename, argv)
|
166
|
-
try:
|
167
|
-
status = waitpid_reap_other_children(pid)
|
168
|
-
except BaseException as s:
|
169
|
-
warn("An error occurred. Aborting.")
|
170
|
-
stop_child_process(filename, pid)
|
171
|
-
raise
|
172
|
-
if status != 0:
|
173
|
-
if status is None:
|
174
|
-
error("%s exited with unknown status\n" % filename)
|
175
|
-
else:
|
176
|
-
error("%s failed with status %d\n" % (filename, os.WEXITSTATUS(status)))
|
177
|
-
sys.exit(1)
|
178
|
-
|
179
|
-
def run_command_killable_and_import_envvars(*argv):
|
180
|
-
run_command_killable(*argv)
|
181
|
-
import_envvars()
|
182
|
-
export_envvars(False)
|
183
|
-
|
184
|
-
def kill_all_processes(time_limit):
|
185
|
-
info("Killing all processes...")
|
186
|
-
try:
|
187
|
-
os.kill(-1, signal.SIGTERM)
|
188
|
-
except OSError:
|
189
|
-
pass
|
190
|
-
signal.alarm(time_limit)
|
191
|
-
try:
|
192
|
-
# Wait until no more child processes exist.
|
193
|
-
done = False
|
194
|
-
while not done:
|
195
|
-
try:
|
196
|
-
os.waitpid(-1, 0)
|
197
|
-
except OSError as e:
|
198
|
-
if e.errno == errno.ECHILD:
|
199
|
-
done = True
|
200
|
-
else:
|
201
|
-
raise
|
202
|
-
except AlarmException:
|
203
|
-
warn("Not all processes have exited in time. Forcing them to exit.")
|
204
|
-
try:
|
205
|
-
os.kill(-1, signal.SIGKILL)
|
206
|
-
except OSError:
|
207
|
-
pass
|
208
|
-
finally:
|
209
|
-
signal.alarm(0)
|
210
|
-
|
211
|
-
def run_startup_files():
|
212
|
-
# Run /etc/my_init.d/*
|
213
|
-
for name in listdir("/etc/my_init.d"):
|
214
|
-
filename = "/etc/my_init.d/" + name
|
215
|
-
if is_exe(filename):
|
216
|
-
info("Running %s..." % filename)
|
217
|
-
run_command_killable_and_import_envvars(filename)
|
218
|
-
|
219
|
-
# Run /etc/rc.local.
|
220
|
-
if is_exe("/etc/rc.local"):
|
221
|
-
info("Running /etc/rc.local...")
|
222
|
-
run_command_killable_and_import_envvars("/etc/rc.local")
|
223
|
-
|
224
|
-
def start_runit():
|
225
|
-
info("Booting runit daemon...")
|
226
|
-
pid = os.spawnl(os.P_NOWAIT, "/usr/bin/runsvdir", "/usr/bin/runsvdir",
|
227
|
-
"-P", "/etc/service")
|
228
|
-
info("Runit started as PID %d" % pid)
|
229
|
-
return pid
|
230
|
-
|
231
|
-
def wait_for_runit_or_interrupt(pid):
|
232
|
-
try:
|
233
|
-
status = waitpid_reap_other_children(pid)
|
234
|
-
return (True, status)
|
235
|
-
except KeyboardInterrupt:
|
236
|
-
return (False, None)
|
237
|
-
|
238
|
-
def shutdown_runit_services():
|
239
|
-
debug("Begin shutting down runit services...")
|
240
|
-
os.system("/usr/bin/sv down /etc/service/*")
|
241
|
-
|
242
|
-
def wait_for_runit_services():
|
243
|
-
debug("Waiting for runit services to exit...")
|
244
|
-
done = False
|
245
|
-
while not done:
|
246
|
-
done = os.system("/usr/bin/sv status /etc/service/* | grep -q '^run:'") != 0
|
247
|
-
if not done:
|
248
|
-
time.sleep(0.1)
|
249
|
-
|
250
|
-
def install_insecure_key():
|
251
|
-
info("Installing insecure SSH key for user root")
|
252
|
-
run_command_killable("/usr/sbin/enable_insecure_key")
|
253
|
-
|
254
|
-
def main(args):
|
255
|
-
create_hosts_file()
|
256
|
-
import_envvars(False, False)
|
257
|
-
export_envvars()
|
258
|
-
|
259
|
-
if args.enable_insecure_key:
|
260
|
-
install_insecure_key()
|
261
|
-
|
262
|
-
if not args.skip_startup_files:
|
263
|
-
run_startup_files()
|
264
|
-
|
265
|
-
runit_exited = False
|
266
|
-
exit_code = None
|
267
|
-
|
268
|
-
if not args.skip_runit:
|
269
|
-
runit_pid = start_runit()
|
270
|
-
try:
|
271
|
-
exit_status = None
|
272
|
-
if len(args.main_command) == 0:
|
273
|
-
runit_exited, exit_code = wait_for_runit_or_interrupt(runit_pid)
|
274
|
-
if runit_exited:
|
275
|
-
if exit_code is None:
|
276
|
-
info("Runit exited with unknown status")
|
277
|
-
exit_status = 1
|
278
|
-
else:
|
279
|
-
exit_status = os.WEXITSTATUS(exit_code)
|
280
|
-
info("Runit exited with status %d" % exit_status)
|
281
|
-
else:
|
282
|
-
info("Running %s..." % " ".join(args.main_command))
|
283
|
-
pid = os.spawnvp(os.P_NOWAIT, args.main_command[0], args.main_command)
|
284
|
-
try:
|
285
|
-
exit_code = waitpid_reap_other_children(pid)
|
286
|
-
if exit_code is None:
|
287
|
-
info("%s exited with unknown status." % args.main_command[0])
|
288
|
-
exit_status = 1
|
289
|
-
else:
|
290
|
-
exit_status = os.WEXITSTATUS(exit_code)
|
291
|
-
info("%s exited with status %d." % (args.main_command[0], exit_status))
|
292
|
-
except KeyboardInterrupt:
|
293
|
-
stop_child_process(args.main_command[0], pid)
|
294
|
-
raise
|
295
|
-
except BaseException as s:
|
296
|
-
warn("An error occurred. Aborting.")
|
297
|
-
stop_child_process(args.main_command[0], pid)
|
298
|
-
raise
|
299
|
-
sys.exit(exit_status)
|
300
|
-
finally:
|
301
|
-
if not args.skip_runit:
|
302
|
-
shutdown_runit_services()
|
303
|
-
if not runit_exited:
|
304
|
-
stop_child_process("runit daemon", runit_pid)
|
305
|
-
wait_for_runit_services()
|
306
|
-
|
307
|
-
# Parse options.
|
308
|
-
parser = argparse.ArgumentParser(description = 'Initialize the system.')
|
309
|
-
parser.add_argument('main_command', metavar = 'MAIN_COMMAND', type = str, nargs = '*',
|
310
|
-
help = 'The main command to run. (default: runit)')
|
311
|
-
parser.add_argument('--enable-insecure-key', dest = 'enable_insecure_key',
|
312
|
-
action = 'store_const', const = True, default = False,
|
313
|
-
help = 'Install the insecure SSH key')
|
314
|
-
parser.add_argument('--skip-startup-files', dest = 'skip_startup_files',
|
315
|
-
action = 'store_const', const = True, default = False,
|
316
|
-
help = 'Skip running /etc/my_init.d/* and /etc/rc.local')
|
317
|
-
parser.add_argument('--skip-runit', dest = 'skip_runit',
|
318
|
-
action = 'store_const', const = True, default = False,
|
319
|
-
help = 'Do not run runit services')
|
320
|
-
parser.add_argument('--no-kill-all-on-exit', dest = 'kill_all_on_exit',
|
321
|
-
action = 'store_const', const = False, default = True,
|
322
|
-
help = 'Don\'t kill all processes on the system upon exiting')
|
323
|
-
parser.add_argument('--quiet', dest = 'log_level',
|
324
|
-
action = 'store_const', const = LOG_LEVEL_WARN, default = LOG_LEVEL_INFO,
|
325
|
-
help = 'Only print warnings and errors')
|
326
|
-
args = parser.parse_args()
|
327
|
-
log_level = args.log_level
|
328
|
-
|
329
|
-
if args.skip_runit and len(args.main_command) == 0:
|
330
|
-
error("When --skip-runit is given, you must also pass a main command.")
|
331
|
-
sys.exit(1)
|
332
|
-
|
333
|
-
# Run main function.
|
334
|
-
signal.signal(signal.SIGTERM, lambda signum, frame: ignore_signals_and_raise_keyboard_interrupt('SIGTERM'))
|
335
|
-
signal.signal(signal.SIGINT, lambda signum, frame: ignore_signals_and_raise_keyboard_interrupt('SIGINT'))
|
336
|
-
signal.signal(signal.SIGALRM, lambda signum, frame: raise_alarm_exception())
|
337
|
-
try:
|
338
|
-
main(args)
|
339
|
-
except KeyboardInterrupt:
|
340
|
-
warn("Init system aborted.")
|
341
|
-
exit(2)
|
342
|
-
finally:
|
343
|
-
if args.kill_all_on_exit:
|
344
|
-
kill_all_processes(KILL_ALL_PROCESSES_TIMEOUT)
|