passenger 4.0.59 → 4.0.60
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/CHANGELOG +15 -0
- data/bin/passenger-install-apache2-module +2 -1
- data/bin/passenger-install-nginx-module +8 -2
- data/ext/apache2/Hooks.cpp +21 -2
- data/ext/apache2/MergeDirConfig.cpp +40 -40
- data/ext/common/ApplicationPool2/Group.h +14 -10
- data/ext/common/ApplicationPool2/Implementation.cpp +13 -7
- data/ext/common/ApplicationPool2/SmartSpawner.h +4 -1
- data/ext/common/Constants.h +1 -1
- data/ext/nginx/ContentHandler.c +17 -1
- data/lib/phusion_passenger.rb +4 -5
- data/lib/phusion_passenger/platform_info/depcheck_specs/libs.rb +4 -3
- data/lib/phusion_passenger/platform_info/openssl.rb +61 -0
- data/lib/phusion_passenger/standalone/runtime_installer.rb +27 -22
- data/packaging/debian/LICENSE.md +19 -0
- data/packaging/debian/README.md +320 -0
- data/packaging/debian/Vagrantfile +25 -0
- data/packaging/debian/build +210 -0
- data/packaging/debian/debian_specs/nginx/changelog +1989 -0
- data/packaging/debian/debian_specs/nginx/compat.erb +5 -0
- data/packaging/debian/debian_specs/nginx/conf/fastcgi.conf +25 -0
- data/packaging/debian/debian_specs/nginx/conf/fastcgi_params +24 -0
- data/packaging/debian/debian_specs/nginx/conf/koi-utf +109 -0
- data/packaging/debian/debian_specs/nginx/conf/koi-win +103 -0
- data/packaging/debian/debian_specs/nginx/conf/mime.types +89 -0
- data/packaging/debian/debian_specs/nginx/conf/nginx.conf.erb +97 -0
- data/packaging/debian/debian_specs/nginx/conf/proxy_params +4 -0
- data/packaging/debian/debian_specs/nginx/conf/scgi_params +16 -0
- data/packaging/debian/debian_specs/nginx/conf/sites-available/default.erb +93 -0
- data/packaging/debian/debian_specs/nginx/conf/snippets/fastcgi-php.conf +13 -0
- data/packaging/debian/debian_specs/nginx/conf/snippets/snakeoil.conf +5 -0
- data/packaging/debian/debian_specs/nginx/conf/uwsgi_params +16 -0
- data/packaging/debian/debian_specs/nginx/conf/win-utf +125 -0
- data/packaging/debian/debian_specs/nginx/control.erb +226 -0
- data/packaging/debian/debian_specs/nginx/copyright +196 -0
- data/packaging/debian/debian_specs/nginx/debian-full.lintian-overrides +1 -0
- data/packaging/debian/debian_specs/nginx/gbp.conf +2 -0
- data/packaging/debian/debian_specs/nginx/help/docs/fcgiwrap +14 -0
- data/packaging/debian/debian_specs/nginx/help/docs/php +119 -0
- data/packaging/debian/debian_specs/nginx/help/docs/support-irc +28 -0
- data/packaging/debian/debian_specs/nginx/help/docs/upstream +51 -0
- data/packaging/debian/debian_specs/nginx/help/examples/drupal +114 -0
- data/packaging/debian/debian_specs/nginx/help/examples/http +59 -0
- data/packaging/debian/debian_specs/nginx/help/examples/mail +30 -0
- data/packaging/debian/debian_specs/nginx/help/examples/mailman +59 -0
- data/packaging/debian/debian_specs/nginx/help/examples/nginx.conf +34 -0
- data/packaging/debian/debian_specs/nginx/help/examples/nginx_modsite +162 -0
- data/packaging/debian/debian_specs/nginx/help/examples/virtual_hosts +155 -0
- data/packaging/debian/debian_specs/nginx/help/examples/wordpress +74 -0
- data/packaging/debian/debian_specs/nginx/helpers.rb +41 -0
- data/packaging/debian/debian_specs/nginx/index-debian.html.in +32 -0
- data/packaging/debian/debian_specs/nginx/index-ubuntu.html.in +32 -0
- data/packaging/debian/debian_specs/nginx/index.html.erb +10 -0
- data/packaging/debian/debian_specs/nginx/modules/README.Modules-versions +65 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/README.markdown +510 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/config +5 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/doc/HttpHeadersMoreModule.wiki +395 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ddebug.h +119 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.c +348 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_filter_module.h +80 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.c +826 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_in.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.c +716 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_headers_out.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.c +380 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/src/ngx_http_headers_more_util.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/util/build.sh +32 -0
- data/packaging/debian/debian_specs/nginx/modules/headers-more-nginx-module/valgrind.suppress +215 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ChangeLog +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/README.md +93 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/config +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-auth-pam/ngx_http_auth_pam_module.c +462 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/CHANGES +66 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/LICENSE +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/README.md +171 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/TODO.md +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/config +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-cache-purge/ngx_cache_purge_module.c +1803 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/README +29 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/config +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-dav-ext-module/ngx_http_dav_ext_module.c +824 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README +139 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/README_AUTO_LIB +395 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/TODO +1 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/array +10 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/actions/palloc +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/build +597 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_replacements +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/action_types +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_args +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_locs +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/conf_macros +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/contexts +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/header_files +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/headers +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/module_dependencies +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/modules_optional +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/data/prefixes +2 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/array.h +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_cmd_basic.h +43 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/conf_merge.h +78 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/src/palloc.h +6 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/auto/text/autogen +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/config +49 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/action_macros +63 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/core/conf_cmds +62 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/modules/set_var +124 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/patches/more_logging_info +48 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/docs/upstream/list +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/README +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/config +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/examples/http/set_var/ngx_http_set_var_examples_module.c +136 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/ngx_auto_lib_core +797 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/CHANGES +17 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/notes/LICENSE +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_array.h +113 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_basic.h +2203 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_cmd_extra.h +5423 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_conf_merge.h +227 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.c +72 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_config.h +98 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_includes.h +66 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/objs/ndk_palloc.h +112 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/auto_config +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/expose_rewrite_functions +291 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/patches/rewrite_phase_handler +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/md5.h +117 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/murmurhash2.c +77 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/hash/sha.h +200 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.c +155 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk.h +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.c +43 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_buf.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.c +129 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_path.h +30 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.c +192 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_complex_value.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.c +396 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_conf_file.h +44 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.c +72 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_debug.h +171 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.c +57 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_encoding.h +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.c +82 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_hash.h +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.c +138 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http.h +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_http_headers.h +35 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.c +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_log.h +165 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_parse.h +67 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.c +583 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_path.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.c +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_process.h +12 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.c +215 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_regex.h +7 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.c +103 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_rewrite.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.c +602 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_set_var.h +44 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.c +434 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string.h +37 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_string_util.h +14 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.c +205 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_upstream_list.h +27 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.c +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-development-kit/src/ndk_uri.h +6 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/README.markdown +1850 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/config +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/doc/HttpEchoModule.wiki +1558 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ddebug.h +109 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.c +344 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_echo.h +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.c +282 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_filter.h +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.c +183 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_foreach.h +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.c +429 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_handler.h +18 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.c +178 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_location.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.c +667 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_module.h +137 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.c +452 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_request_info.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.c +208 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_sleep.h +16 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.c +788 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_subrequest.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.c +96 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_timer.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.c +298 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_util.h +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.c +110 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/src/ngx_http_echo_var.h +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/build.sh +45 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/releng +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/util/wiki2pod.pl +131 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-echo/valgrind.suppress +38 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/LICENCE +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/README +206 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/changelog.txt +54 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/config +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/protocol.txt +191 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.c +59 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_defs.h +73 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.c +783 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_module_setup.c +361 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/ngx_http_push_types.h +120 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.c +1180 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/memory/store.h +1 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.c +146 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_module_ipc.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_http_push_store.h +51 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.c +178 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/ngx_rwlock.h +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.c +246 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-http-push/src/store/rbtree_util.h +9 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/Changes +51 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/README.markdown +6954 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/config +363 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/doc/HttpLuaModule.wiki +5898 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/dtrace/ngx_lua_provider.d +61 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/Makefile +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/lib/RecvUntil.pm +138 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/misc/recv-until-pm/t/sanity.t +140 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/api/ngx_http_lua_api.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ddebug.h +82 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.c +377 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_accessby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_api.c +77 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.c +537 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_args.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.c +632 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_bodyfilterby.h +31 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.c +296 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_cache.h +24 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.c +175 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_capturefilter.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.c +887 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_clfactory.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_common.h +478 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.c +67 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_config.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.c +148 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_consts.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.c +369 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_contentby.h +26 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.c +483 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_control.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.c +379 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_coroutine.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.c +216 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ctx.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.c +1081 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_directive.h +56 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.c +58 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_exception.h +33 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.c +302 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headerfilterby.h +29 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.c +1370 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.c +782 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_in.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.c +625 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_headers_out.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.c +42 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initby.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.c +320 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_initworkerby.h +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.c +300 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_log.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.c +227 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_logby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.c +252 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_misc.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_module.c +924 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.c +184 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_ndk.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.c +794 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_output.h +28 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.c +106 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_pcrefix.h +23 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.c +94 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_phase.h +13 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_probe.h +85 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.c +2468 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_regex.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.c +1169 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_body.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.c +252 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_req_method.h +19 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.c +351 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_rewriteby.h +22 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.c +538 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_script.h +86 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.c +216 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_setby.h +15 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.c +1844 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_shdict.h +52 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.c +191 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_sleep.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.c +5314 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_tcp.h +156 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.c +1624 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_socket_udp.h +56 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.c +704 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_string.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.c +1741 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_subrequest.h +46 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.c +278 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_time.h +21 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.c +661 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_timer.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.c +110 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uri.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.c +283 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_uthread.h +36 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.c +3972 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_util.h +423 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.c +499 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_variable.h +20 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.c +64 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/src/ngx_http_lua_worker.h +17 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/tapset/ngx_lua.stp +5 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build.sh +39 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/build2.sh +55 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/fix-comments +27 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/gdbinit +415 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/ngx-links +62 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/reindex +64 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/releng +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/retab +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/revim +102 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/run_test.sh +10 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/util/update-readme.sh +4 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-lua/valgrind.suppress +144 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/CHANGES +107 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/LICENSE +25 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/Makefile +8 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/README +329 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upload-progress/ngx_http_uploadprogress_module.c +1774 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/README +53 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/nginx-upstream-fair/ngx_http_upstream_fair_module.c +1356 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/CHANGELOG.md +37 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/HACKING.md +24 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/LICENSE +20 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/README.rst +182 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/config +8 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/nginx-0.6-support.patch +23 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/ngx_http_fancyindex_module.c +1305 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.awk +52 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.h +103 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx-fancyindex/template.html +102 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/CHANGES +37 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/README +141 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/config +3 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.google_code_home_page.wiki +120 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.html +199 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/doc/README.wiki +123 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/ngx_http_subs_filter_module.c +1298 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/README +275 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/AutoInstall.pm +820 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install.pm +470 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/AutoInstall.pm +82 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Base.pm +83 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Can.pm +81 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Fetch.pm +93 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Include.pm +34 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Makefile.pm +415 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Metadata.pm +716 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/TestBase.pm +29 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/Win32.pm +64 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Module/Install/WriteAll.pm +63 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Spiffy.pm +539 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base.pm +682 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Base/Filter.pm +341 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder.pm +1413 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/Builder/Module.pm +81 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/inc/Test/More.pm +735 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx.pm +315 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/LWP.pm +524 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Socket.pm +1749 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/lib/Test/Nginx/Util.pm +874 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs.t +136 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_capture.t +32 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_fix_string.t +32 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_regex.t +108 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/t/subs_types.t +59 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/test/test.sh +5 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/update-readme.sh +7 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2google_code_homepage.pl +29 -0
- data/packaging/debian/debian_specs/nginx/modules/ngx_http_substitutions_filter_module/util/wiki2pod.pl +129 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.NEWS +135 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.README.Debian +45 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.dirs.erb +32 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.install +3 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.lintian-overrides +2 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.manpages +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.default +10 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.init.erb +214 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.logrotate +18 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.nginx.service.erb +37 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.postinst.erb +66 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.postrm.erb +46 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.preinst +47 -0
- data/packaging/debian/debian_specs/nginx/nginx-common.prerm.erb +28 -0
- data/packaging/debian/debian_specs/nginx/nginx-doc.docs +2 -0
- data/packaging/debian/debian_specs/nginx/nginx-doc.examples +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.install.erb +17 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.lintian-overrides +1 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.postinst.erb +44 -0
- data/packaging/debian/debian_specs/nginx/nginx-extras.prerm +22 -0
- data/packaging/debian/debian_specs/nginx/nginx.1 +47 -0
- data/packaging/debian/debian_specs/nginx/patches/perl-use-dpkg-buildflags.patch +23 -0
- data/packaging/debian/debian_specs/nginx/patches/series +1 -0
- data/packaging/debian/debian_specs/nginx/rules.erb +185 -0
- data/packaging/debian/debian_specs/nginx/source/format +1 -0
- data/packaging/debian/debian_specs/nginx/tests/control +4 -0
- data/packaging/debian/debian_specs/nginx/ufw/nginx +14 -0
- data/packaging/debian/debian_specs/nginx/upstream/signing-key.asc +34 -0
- data/packaging/debian/debian_specs/nginx/watch +3 -0
- data/packaging/debian/debian_specs/passenger/README.Debian +12 -0
- data/packaging/debian/debian_specs/passenger/changelog +316 -0
- data/packaging/debian/debian_specs/passenger/compat +1 -0
- data/packaging/debian/debian_specs/passenger/control.erb +123 -0
- data/packaging/debian/debian_specs/passenger/copyright +385 -0
- data/packaging/debian/debian_specs/passenger/helpers.rb +24 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.install +3 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.postinst +36 -0
- data/packaging/debian/debian_specs/passenger/libapache2-mod-passenger.prerm +15 -0
- data/packaging/debian/debian_specs/passenger/locations.ini.erb +14 -0
- data/packaging/debian/debian_specs/passenger/passenger-dev.install.erb +3 -0
- data/packaging/debian/debian_specs/passenger/passenger-doc.install.erb +2 -0
- data/packaging/debian/debian_specs/passenger/passenger.conf +6 -0
- data/packaging/debian/debian_specs/passenger/passenger.docs +4 -0
- data/packaging/debian/debian_specs/passenger/passenger.install.erb +16 -0
- data/packaging/debian/debian_specs/passenger/passenger.load +3 -0
- data/packaging/debian/debian_specs/passenger/passenger.manpages +3 -0
- data/packaging/debian/debian_specs/passenger/passenger_free_ruby.c +29 -0
- data/packaging/debian/debian_specs/passenger/passenger_ruby_utils.c +54 -0
- data/packaging/debian/debian_specs/passenger/passenger_system_ruby.c.erb +37 -0
- data/packaging/debian/debian_specs/passenger/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger/rules.erb +84 -0
- data/packaging/debian/debian_specs/passenger/source/format +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/README.Debian +12 -0
- data/packaging/debian/debian_specs/passenger_enterprise/changelog +316 -0
- data/packaging/debian/debian_specs/passenger_enterprise/compat +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/control.erb +123 -0
- data/packaging/debian/debian_specs/passenger_enterprise/copyright +385 -0
- data/packaging/debian/debian_specs/passenger_enterprise/helpers.rb +2 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.install +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.postinst +36 -0
- data/packaging/debian/debian_specs/passenger_enterprise/libapache2-mod-passenger-enterprise.prerm +15 -0
- data/packaging/debian/debian_specs/passenger_enterprise/locations.ini.erb +14 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-dev.install.erb +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise-doc.install.erb +2 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.docs +4 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.install.erb +14 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger-enterprise.manpages +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.conf +6 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger.load +3 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_free_ruby.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_ruby_utils.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/passenger_system_ruby.c.erb +1 -0
- data/packaging/debian/debian_specs/passenger_enterprise/patches/series +0 -0
- data/packaging/debian/debian_specs/passenger_enterprise/rules.erb +84 -0
- data/packaging/debian/debian_specs/passenger_enterprise/source/format +1 -0
- data/packaging/debian/docker_images/Makefile +38 -0
- data/packaging/debian/docker_images/buildbox/CONTAINER_VERSION.txt +0 -0
- data/packaging/debian/docker_images/buildbox/Dockerfile +3 -0
- data/packaging/debian/docker_images/buildbox/Gemfile +9 -0
- data/packaging/debian/docker_images/buildbox/Gemfile.lock +42 -0
- data/packaging/debian/docker_images/buildbox/install.sh +85 -0
- data/packaging/debian/docker_images/buildbox/pbuilderrc +4 -0
- data/packaging/debian/docker_images/buildbox/sudoers.conf +6 -0
- data/packaging/debian/docker_images/setup-buildbox-docker-image +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-6 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-7 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-debian-8 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-12.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-14.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.04 +7 -0
- data/packaging/debian/docker_images/setup-testbox-docker-image-ubuntu-15.10 +7 -0
- data/packaging/debian/docker_images/testbox-debian-6/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-6/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-6/argparse.py +2374 -0
- data/packaging/debian/docker_images/testbox-debian-6/install.sh +78 -0
- data/packaging/debian/docker_images/testbox-debian-7/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-7/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-7/install.sh +71 -0
- data/packaging/debian/docker_images/testbox-debian-8/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-debian-8/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-debian-8/install.sh +70 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-12.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-14.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.04/install.sh +69 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Dockerfile +3 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile +2 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/Gemfile.lock +23 -0
- data/packaging/debian/docker_images/testbox-ubuntu-15.10/install.sh +69 -0
- data/packaging/debian/internal/build/Rakefile +235 -0
- data/packaging/debian/internal/build/build-passenger-orig-tarball.sh +76 -0
- data/packaging/debian/internal/build/build-source-package.rb +121 -0
- data/packaging/debian/internal/build/download-nginx-orig-tarball.sh +17 -0
- data/packaging/debian/internal/build/rakefile_support.rb +96 -0
- data/packaging/debian/internal/build/setup-environment-essentials.sh +15 -0
- data/packaging/debian/internal/build/setup-environment.sh +29 -0
- data/packaging/debian/internal/lib/distro_info.rb +82 -0
- data/packaging/debian/internal/lib/distro_info.sh +303 -0
- data/packaging/debian/internal/lib/distro_info.sh.erb +65 -0
- data/packaging/debian/internal/lib/library.sh +83 -0
- data/packaging/debian/internal/lib/preprocessor.rb +173 -0
- data/packaging/debian/internal/lib/tracking.rb +95 -0
- data/packaging/debian/internal/lib/tracking_category.rb +45 -0
- data/packaging/debian/internal/lib/tracking_database.rb +132 -0
- data/packaging/debian/internal/lib/tracking_task.rb +148 -0
- data/packaging/debian/internal/lib/utils.rb +78 -0
- data/packaging/debian/internal/publish/Rakefile +97 -0
- data/packaging/debian/internal/publish/oss-binaries.phusionpassenger.com-fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/packagecloud_fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/passenger_website_fingerprint.txt +1 -0
- data/packaging/debian/internal/publish/preinit.sh +7 -0
- data/packaging/debian/internal/publish/rakefile_support.rb +183 -0
- data/packaging/debian/internal/scripts/gpg_noninteractive/gpg +11 -0
- data/packaging/debian/internal/scripts/initccache.sh +35 -0
- data/packaging/debian/internal/scripts/inituidgid.sh +19 -0
- data/packaging/debian/internal/scripts/my_init +340 -0
- data/packaging/debian/internal/scripts/pin_certificates +34 -0
- data/packaging/debian/internal/scripts/regen_distro_info_script.sh +3 -0
- data/packaging/debian/internal/scripts/setup-vagrant.sh +12 -0
- data/packaging/debian/internal/scripts/setuser +31 -0
- data/packaging/debian/internal/shell/initpbuilder.sh +3 -0
- data/packaging/debian/internal/shell/preinit.sh +28 -0
- data/packaging/debian/internal/shell/sudoers.conf +1 -0
- data/packaging/debian/internal/test/apache/apache-24.conf +5 -0
- data/packaging/debian/internal/test/apache/apache-pre-24.conf +4 -0
- data/packaging/debian/internal/test/apache/vhost.conf +17 -0
- data/packaging/debian/internal/test/misc/config.json +15 -0
- data/packaging/debian/internal/test/misc/hosts.conf +4 -0
- data/packaging/debian/internal/test/misc/init.sh +25 -0
- data/packaging/debian/internal/test/misc/nodejs_test_app.js +6 -0
- data/packaging/debian/internal/test/misc/python_test_app.py +3 -0
- data/packaging/debian/internal/test/misc/ruby_test_app.rb +5 -0
- data/packaging/debian/internal/test/misc/test_support.rb +61 -0
- data/packaging/debian/internal/test/nginx/vhost.conf +23 -0
- data/packaging/debian/internal/test/system_web_server_test.rb +126 -0
- data/packaging/debian/internal/test/test.sh +141 -0
- data/packaging/debian/jenkins/publish/clear_caches.rb +48 -0
- data/packaging/debian/jenkins/publish/publish.sh +69 -0
- data/packaging/debian/jenkins/test/test.sh +63 -0
- data/packaging/debian/passenger_apt_automation.sublime-project +14 -0
- data/packaging/debian/publish +172 -0
- data/packaging/debian/shell +116 -0
- data/packaging/debian/test +142 -0
- metadata +563 -3
- metadata.gz.asc +7 -7
- data/resources/oss-binaries.phusionpassenger.com.crt +0 -208
@@ -0,0 +1,138 @@
|
|
1
|
+
|
2
|
+
ngx_uint_t
|
3
|
+
ndk_http_count_phase_handlers (ngx_http_core_main_conf_t *cmcf)
|
4
|
+
{
|
5
|
+
ngx_http_phase_handler_t *ph;
|
6
|
+
ngx_uint_t i;
|
7
|
+
|
8
|
+
ph = cmcf->phase_engine.handlers;
|
9
|
+
|
10
|
+
for (i=0; ph[i].checker; i++) /* void */;
|
11
|
+
|
12
|
+
return i;
|
13
|
+
}
|
14
|
+
|
15
|
+
|
16
|
+
ngx_uint_t
|
17
|
+
ndk_http_parse_request_method (ngx_str_t *m)
|
18
|
+
{
|
19
|
+
switch (m->len) {
|
20
|
+
|
21
|
+
case 3:
|
22
|
+
|
23
|
+
#if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)
|
24
|
+
{
|
25
|
+
u_char t[4];
|
26
|
+
|
27
|
+
ngx_memcpy (t, m->data, 3);
|
28
|
+
t[3] = ' ';
|
29
|
+
|
30
|
+
if (ndk_str3_cmp (t, 'G', 'E', 'T', ' ')) {
|
31
|
+
return NGX_HTTP_GET;
|
32
|
+
}
|
33
|
+
|
34
|
+
if (ndk_str3_cmp (t, 'P', 'U', 'T', ' ')) {
|
35
|
+
return NGX_HTTP_PUT;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
#else
|
40
|
+
|
41
|
+
if (ndk_str3_cmp (m->data, 'G', 'E', 'T', ' ')) {
|
42
|
+
return NGX_HTTP_GET;
|
43
|
+
}
|
44
|
+
|
45
|
+
if (ndk_str3_cmp (m->data, 'P', 'U', 'T', ' ')) {
|
46
|
+
return NGX_HTTP_PUT;
|
47
|
+
}
|
48
|
+
|
49
|
+
#endif
|
50
|
+
break;
|
51
|
+
|
52
|
+
case 4:
|
53
|
+
|
54
|
+
if (m->data[1] == 'O') {
|
55
|
+
|
56
|
+
if (ndk_str3Ocmp (m->data, 'P', 'O', 'S', 'T')) {
|
57
|
+
return NGX_HTTP_POST;
|
58
|
+
}
|
59
|
+
|
60
|
+
if (ndk_str3Ocmp (m->data, 'C', 'O', 'P', 'Y')) {
|
61
|
+
return NGX_HTTP_COPY;
|
62
|
+
}
|
63
|
+
|
64
|
+
if (ndk_str3Ocmp (m->data, 'M', 'O', 'V', 'E')) {
|
65
|
+
return NGX_HTTP_MOVE;
|
66
|
+
}
|
67
|
+
|
68
|
+
if (ndk_str3Ocmp (m->data, 'L', 'O', 'C', 'K')) {
|
69
|
+
return NGX_HTTP_LOCK;
|
70
|
+
}
|
71
|
+
|
72
|
+
} else {
|
73
|
+
|
74
|
+
if (ndk_str4cmp (m->data, 'H', 'E', 'A', 'D')) {
|
75
|
+
return NGX_HTTP_HEAD;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
break;
|
80
|
+
|
81
|
+
case 5:
|
82
|
+
|
83
|
+
if (ndk_str5cmp (m->data, 'M', 'K', 'C', 'O', 'L')) {
|
84
|
+
return NGX_HTTP_MKCOL;
|
85
|
+
}
|
86
|
+
|
87
|
+
if (ndk_str5cmp (m->data, 'P', 'A', 'T', 'C', 'H')) {
|
88
|
+
return NGX_HTTP_PATCH;
|
89
|
+
}
|
90
|
+
|
91
|
+
if (ndk_str5cmp (m->data, 'T', 'R', 'A', 'C', 'E')) {
|
92
|
+
return NGX_HTTP_TRACE;
|
93
|
+
}
|
94
|
+
|
95
|
+
break;
|
96
|
+
|
97
|
+
case 6:
|
98
|
+
|
99
|
+
if (ndk_str6cmp (m->data, 'D', 'E', 'L', 'E', 'T', 'E')) {
|
100
|
+
return NGX_HTTP_DELETE;
|
101
|
+
}
|
102
|
+
|
103
|
+
if (ndk_str6cmp (m->data, 'U', 'N', 'L', 'O', 'C', 'K')) {
|
104
|
+
return NGX_HTTP_UNLOCK;
|
105
|
+
}
|
106
|
+
|
107
|
+
break;
|
108
|
+
|
109
|
+
case 7:
|
110
|
+
|
111
|
+
if (ndk_str7_cmp (m->data, 'O', 'P', 'T', 'I', 'O', 'N', 'S', ' '))
|
112
|
+
{
|
113
|
+
return NGX_HTTP_OPTIONS;
|
114
|
+
}
|
115
|
+
|
116
|
+
break;
|
117
|
+
|
118
|
+
case 8:
|
119
|
+
|
120
|
+
if (ndk_str8cmp (m->data, 'P', 'R', 'O', 'P', 'F', 'I', 'N', 'D'))
|
121
|
+
{
|
122
|
+
return NGX_HTTP_PROPFIND;
|
123
|
+
}
|
124
|
+
|
125
|
+
break;
|
126
|
+
|
127
|
+
case 9:
|
128
|
+
|
129
|
+
if (ndk_str9cmp (m->data, 'P', 'R', 'O', 'P', 'P', 'A', 'T', 'C', 'H'))
|
130
|
+
{
|
131
|
+
return NGX_HTTP_PROPPATCH;
|
132
|
+
}
|
133
|
+
|
134
|
+
break;
|
135
|
+
}
|
136
|
+
|
137
|
+
return 0;
|
138
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
/* TODO : organize and add */
|
4
|
+
/* TODO : check - should it be r->main? */
|
5
|
+
|
6
|
+
#define ndk_http_uri(r) (r)->uri
|
7
|
+
#define ndk_http_request_uri(r) (r)->unparsed_uri
|
8
|
+
|
9
|
+
#define ndk_http_header_in(r,name) ((r)->headers_in.name ? &(r)->headers_in.name->value : NULL)
|
10
|
+
#define ndk_http_header_out(r,name) ((r)->headers_out.name ? &(r)->headers_out.name->value : NULL)
|
11
|
+
|
12
|
+
#define ndk_http_host_header(r) ndk_http_header_in (r, host)
|
13
|
+
#define ndk_http_connection_header(r) ndk_http_header_in (r, connection)
|
14
|
+
#define ndk_http_if_modified_since_header(r) ndk_http_header_in (r, if_modified_since)
|
15
|
+
#define ndk_http_user_agent_header(r) ndk_http_header_in (r, user_agent)
|
16
|
+
#define ndk_http_referer_header(r) ndk_http_header_in (r, referer)
|
17
|
+
#define ndk_http_content_length_header(r) ndk_http_header_in (r, content_length)
|
18
|
+
#define ndk_http_content_type_header(r) ndk_http_header_in (r, content_type)
|
19
|
+
#define ndk_http_range_header(r) ndk_http_header_in (r, range)
|
20
|
+
#define ndk_http_if_range_header(r) ndk_http_header_in (r, if_range)
|
21
|
+
#define ndk_http_transfer_encoding_header(r) ndk_http_header_in (r, transfer_encoding)
|
22
|
+
#define ndk_http_expect_header(r) ndk_http_header_in (r, expect)
|
23
|
+
#define ndk_http_accept_encoding_header(r) ndk_http_header_in (r, accept_encoding)
|
24
|
+
#define ndk_http_via_header(r) ndk_http_header_in (r, via)
|
25
|
+
#define ndk_http_authorization_header(r) ndk_http_header_in (r, authorization)
|
26
|
+
#define ndk_http_keep_alive_header(r) ndk_http_header_in (r, keep_alive)
|
27
|
+
#define ndk_http_x_forwarded_for_header(r) ndk_http_header_in (r, x_forwarded_for)
|
28
|
+
#define ndk_http_x_real_ip_header(r) ndk_http_header_in (r, x_real_ip)
|
29
|
+
#define ndk_http_accept_header(r) ndk_http_header_in (r, accept)
|
30
|
+
#define ndk_http_accept_language_header(r) ndk_http_header_in (r, accept_language)
|
31
|
+
#define ndk_http_depth_header(r) ndk_http_header_in (r, depth)
|
32
|
+
#define ndk_http_destination_header(r) ndk_http_header_in (r, destination)
|
33
|
+
#define ndk_http_overwrite_header(r) ndk_http_header_in (r, overwrite)
|
34
|
+
#define ndk_http_date_header(r) ndk_http_header_in (r, date)
|
35
|
+
|
@@ -0,0 +1,165 @@
|
|
1
|
+
|
2
|
+
/* TODO : fix the conf_log macros */
|
3
|
+
|
4
|
+
#define NGX_LOG_DEBUG_SCRIPT NGX_LOG_DEBUG_HTTP /* TODO : add new section to log/conf directives */
|
5
|
+
|
6
|
+
#define ndk_conf_to_log(cf) ((cf)->log)
|
7
|
+
|
8
|
+
#ifndef ndk_request_to_log
|
9
|
+
#define ndk_request_to_log(r) ((r)->connection->log)
|
10
|
+
#endif
|
11
|
+
|
12
|
+
|
13
|
+
/*********************************/
|
14
|
+
|
15
|
+
#if (NGX_HAVE_C99_VARIADIC_MACROS)
|
16
|
+
|
17
|
+
#define ndk_log_stderr(log,...) ngx_log_error (NGX_LOG_STDERR, log, 0, __VA_ARGS__)
|
18
|
+
#define ndk_log_emerg(log,...) ngx_log_error (NGX_LOG_EMERG, log, 0, __VA_ARGS__)
|
19
|
+
#define ndk_log_alert(log,...) ngx_log_error (NGX_LOG_ALERT, log, 0, __VA_ARGS__)
|
20
|
+
#define ndk_log_crit(log,...) ngx_log_error (NGX_LOG_CRIT, log, 0, __VA_ARGS__)
|
21
|
+
#define ndk_log_err(log,...) ngx_log_error (NGX_LOG_ERR, log, 0, __VA_ARGS__)
|
22
|
+
#define ndk_log_warning(log,...) ngx_log_error (NGX_LOG_WARN, log, 0, __VA_ARGS__)
|
23
|
+
#define ndk_log_notice(log,...) ngx_log_error (NGX_LOG_NOTICE, log, 0, __VA_ARGS__)
|
24
|
+
#define ndk_log_info(log,...) ngx_log_error (NGX_LOG_INFO, log, 0, __VA_ARGS__)
|
25
|
+
|
26
|
+
#define ndk_conf_log_stderr(cf,...) ngx_conf_log_error (NGX_LOG_STDERR, cf, 0, __VA_ARGS__)
|
27
|
+
#define ndk_conf_log_emerg(cf,...) ngx_conf_log_error (NGX_LOG_EMERG, cf, 0, __VA_ARGS__)
|
28
|
+
#define ndk_conf_log_alert(cf,...) ngx_conf_log_error (NGX_LOG_ALERT, cf, 0, __VA_ARGS__)
|
29
|
+
#define ndk_conf_log_crit(cf,...) ngx_conf_log_error (NGX_LOG_CRIT, cf, 0, __VA_ARGS__)
|
30
|
+
#define ndk_conf_log_err(cf,...) ngx_conf_log_error (NGX_LOG_ERR, cf, 0, __VA_ARGS__)
|
31
|
+
#define ndk_conf_log_warning(cf,...) ngx_conf_log_error (NGX_LOG_WARN, cf, 0, __VA_ARGS__)
|
32
|
+
#define ndk_conf_log_notice(cf,...) ngx_conf_log_error (NGX_LOG_NOTICE, cf, 0, __VA_ARGS__)
|
33
|
+
#define ndk_conf_log_info(cf,...) ngx_conf_log_error (NGX_LOG_INFO, cf, 0, __VA_ARGS__)
|
34
|
+
|
35
|
+
#define ndk_request_log_stderr(r,...) ndk_log_stderr (ndk_request_to_log(r), __VA_ARGS__)
|
36
|
+
#define ndk_request_log_emerg(r,...) ndk_log_emerg (ndk_request_to_log(r), __VA_ARGS__)
|
37
|
+
#define ndk_request_log_alert(r,...) ndk_log_alert (ndk_request_to_log(r), __VA_ARGS__)
|
38
|
+
#define ndk_request_log_crit(r,...) ndk_log_crit (ndk_request_to_log(r), __VA_ARGS__)
|
39
|
+
#define ndk_request_log_err(r,...) ndk_log_err (ndk_request_to_log(r), __VA_ARGS__)
|
40
|
+
#define ndk_request_log_warning(r,...) ndk_log_warning (ndk_request_to_log(r), __VA_ARGS__)
|
41
|
+
#define ndk_request_log_notice(r,...) ndk_log_notice (ndk_request_to_log(r), __VA_ARGS__)
|
42
|
+
#define ndk_request_log_info(r,...) ndk_log_info (ndk_request_to_log(r), __VA_ARGS__)
|
43
|
+
|
44
|
+
|
45
|
+
#if (NGX_DEBUG)
|
46
|
+
|
47
|
+
#define ndk_log_debug_core(log,...) ngx_log_debug (NGX_LOG_DEBUG_CORE, log, 0, __VA_ARGS__)
|
48
|
+
#define ndk_log_debug_alloc(log,...) ngx_log_debug (NGX_LOG_DEBUG_ALLOC, log, 0, __VA_ARGS__)
|
49
|
+
#define ndk_log_debug_mutex(log,...) ngx_log_debug (NGX_LOG_DEBUG_MUTEX, log, 0, __VA_ARGS__)
|
50
|
+
#define ndk_log_debug_event(log,...) ngx_log_debug (NGX_LOG_DEBUG_EVENT, log, 0, __VA_ARGS__)
|
51
|
+
#define ndk_log_debug_http(log,...) ngx_log_debug (NGX_LOG_DEBUG_HTTP, log, 0, __VA_ARGS__)
|
52
|
+
#define ndk_log_debug_mail(log,...) ngx_log_debug (NGX_LOG_DEBUG_MAIL, log, 0, __VA_ARGS__)
|
53
|
+
#define ndk_log_debug_mysql(log,...) ngx_log_debug (NGX_LOG_DEBUG_MYSQL, log, 0, __VA_ARGS__)
|
54
|
+
|
55
|
+
#define ndk_conf_log_debug_core(r,...) ndk_log_debug_core (ndk_conf_to_log(r), __VA_ARGS__)
|
56
|
+
#define ndk_conf_log_debug_alloc(r,...) ndk_log_debug_alloc (ndk_conf_to_log(r), __VA_ARGS__)
|
57
|
+
#define ndk_conf_log_debug_mutex(r,...) ndk_log_debug_mutex (ndk_conf_to_log(r), __VA_ARGS__)
|
58
|
+
#define ndk_conf_log_debug_event(r,...) ndk_log_debug_event (ndk_conf_to_log(r), __VA_ARGS__)
|
59
|
+
#define ndk_conf_log_debug_http(r,...) ndk_log_debug_http (ndk_conf_to_log(r), __VA_ARGS__)
|
60
|
+
#define ndk_conf_log_debug_mail(r,...) ndk_log_debug_mail (ndk_conf_to_log(r), __VA_ARGS__)
|
61
|
+
#define ndk_conf_log_debug_mysql(r,...) ndk_log_debug_mysql (ndk_conf_to_log(r), __VA_ARGS__)
|
62
|
+
|
63
|
+
#define ndk_request_log_debug_core(r,...) ndk_log_debug_core (ndk_request_to_log(r), __VA_ARGS__)
|
64
|
+
#define ndk_request_log_debug_alloc(r,...) ndk_log_debug_alloc (ndk_request_to_log(r), __VA_ARGS__)
|
65
|
+
#define ndk_request_log_debug_mutex(r,...) ndk_log_debug_mutex (ndk_request_to_log(r), __VA_ARGS__)
|
66
|
+
#define ndk_request_log_debug_event(r,...) ndk_log_debug_event (ndk_request_to_log(r), __VA_ARGS__)
|
67
|
+
#define ndk_request_log_debug_http(r,...) ndk_log_debug_http (ndk_request_to_log(r), __VA_ARGS__)
|
68
|
+
#define ndk_request_log_debug_mail(r,...) ndk_log_debug_mail (ndk_request_to_log(r), __VA_ARGS__)
|
69
|
+
#define ndk_request_log_debug_mysql(r,...) ndk_log_debug_mysql (ndk_request_to_log(r), __VA_ARGS__)
|
70
|
+
|
71
|
+
#else
|
72
|
+
|
73
|
+
#define ndk_log_debug_core(log,...)
|
74
|
+
#define ndk_log_debug_alloc(log,...)
|
75
|
+
#define ndk_log_debug_mutex(log,...)
|
76
|
+
#define ndk_log_debug_event(log,...)
|
77
|
+
#define ndk_log_debug_http(log,...)
|
78
|
+
#define ndk_log_debug_mail(log,...)
|
79
|
+
#define ndk_log_debug_mysql(log,...)
|
80
|
+
|
81
|
+
#define ndk_conf_log_debug_core(r,...)
|
82
|
+
#define ndk_conf_log_debug_alloc(r,...)
|
83
|
+
#define ndk_conf_log_debug_mutex(r,...)
|
84
|
+
#define ndk_conf_log_debug_event(r,...)
|
85
|
+
#define ndk_conf_log_debug_http(r,...)
|
86
|
+
#define ndk_conf_log_debug_mail(r,...)
|
87
|
+
#define ndk_conf_log_debug_mysql(r,...)
|
88
|
+
|
89
|
+
#define ndk_request_log_debug_core(r,...)
|
90
|
+
#define ndk_request_log_debug_alloc(r,...)
|
91
|
+
#define ndk_request_log_debug_mutex(r,...)
|
92
|
+
#define ndk_request_log_debug_event(r,...)
|
93
|
+
#define ndk_request_log_debug_http(r,...)
|
94
|
+
#define ndk_request_log_debug_mail(r,...)
|
95
|
+
#define ndk_request_log_debug_mysql(r,...)
|
96
|
+
|
97
|
+
#endif
|
98
|
+
|
99
|
+
|
100
|
+
/*********************************/
|
101
|
+
|
102
|
+
#elif (NGX_HAVE_GCC_VARIADIC_MACROS)
|
103
|
+
|
104
|
+
#define ndk_log_stderr(log,args...) ngx_log_error (NGX_LOG_STDERR, log, 0, args)
|
105
|
+
#define ndk_log_emerg(log,args...) ngx_log_error (NGX_LOG_EMERG, log, 0, args)
|
106
|
+
#define ndk_log_alert(log,args...) ngx_log_error (NGX_LOG_ALERT, log, 0, args)
|
107
|
+
#define ndk_log_crit(log,args...) ngx_log_error (NGX_LOG_CRIT, log, 0, args)
|
108
|
+
#define ndk_log_err(log,args...) ngx_log_error (NGX_LOG_ERR, log, 0, args)
|
109
|
+
#define ndk_log_warning(log,args...) ngx_log_error (NGX_LOG_WARN, log, 0, args)
|
110
|
+
#define ndk_log_notice(log,args...) ngx_log_error (NGX_LOG_NOTICE, log, 0, args)
|
111
|
+
#define ndk_log_info(log,args...) ngx_log_error (NGX_LOG_INFO, log, 0, args)
|
112
|
+
|
113
|
+
#define ndk_log_debug_core(log,args...) ngx_log_debug (NGX_LOG_DEBUG_CORE, log, 0, args)
|
114
|
+
#define ndk_log_debug_alloc(log,args...) ngx_log_debug (NGX_LOG_DEBUG_ALLOC, log, 0, args)
|
115
|
+
#define ndk_log_debug_mutex(log,args...) ngx_log_debug (NGX_LOG_DEBUG_MUTEX, log, 0, args)
|
116
|
+
#define ndk_log_debug_event(log,args...) ngx_log_debug (NGX_LOG_DEBUG_EVENT, log, 0, args)
|
117
|
+
#define ndk_log_debug_http(log,args...) ngx_log_debug (NGX_LOG_DEBUG_HTTP, log, 0, args)
|
118
|
+
#define ndk_log_debug_mail(log,args...) ngx_log_debug (NGX_LOG_DEBUG_MAIL, log, 0, args)
|
119
|
+
#define ndk_log_debug_mysql(log,args...) ngx_log_debug (NGX_LOG_DEBUG_MYSQL, log, 0, args)
|
120
|
+
#define ndk_log_debug_script(log,args...) ngx_log_debug (NGX_LOG_DEBUG_SCRIPT, log, 0, args)
|
121
|
+
|
122
|
+
#define ndk_conf_log_stderr(cf,args...) ngx_conf_log_error (NGX_LOG_STDERR, cf, 0, args)
|
123
|
+
#define ndk_conf_log_emerg(cf,args...) ngx_conf_log_error (NGX_LOG_EMERG, cf, 0, args)
|
124
|
+
#define ndk_conf_log_alert(cf,args...) ngx_conf_log_error (NGX_LOG_ALERT, cf, 0, args)
|
125
|
+
#define ndk_conf_log_crit(cf,args...) ngx_conf_log_error (NGX_LOG_CRIT, cf, 0, args)
|
126
|
+
#define ndk_conf_log_err(cf,args...) ngx_conf_log_error (NGX_LOG_ERR, cf, 0, args)
|
127
|
+
#define ndk_conf_log_warning(cf,args...) ngx_conf_log_error (NGX_LOG_WARN, cf, 0, args)
|
128
|
+
#define ndk_conf_log_notice(cf,args...) ngx_conf_log_error (NGX_LOG_NOTICE, cf, 0, args)
|
129
|
+
#define ndk_conf_log_info(cf,args...) ngx_conf_log_error (NGX_LOG_INFO, cf, 0, args)
|
130
|
+
|
131
|
+
#define ndk_conf_log_debug_core(r,args...) ndk_log_debug_core (ndk_conf_to_log(r), args)
|
132
|
+
#define ndk_conf_log_debug_alloc(r,args...) ndk_log_debug_alloc (ndk_conf_to_log(r), args)
|
133
|
+
#define ndk_conf_log_debug_mutex(r,args...) ndk_log_debug_mutex (ndk_conf_to_log(r), args)
|
134
|
+
#define ndk_conf_log_debug_event(r,args...) ndk_log_debug_event (ndk_conf_to_log(r), args)
|
135
|
+
#define ndk_conf_log_debug_http(r,args...) ndk_log_debug_http (ndk_conf_to_log(r), args)
|
136
|
+
#define ndk_conf_log_debug_mail(r,args...) ndk_log_debug_mail (ndk_conf_to_log(r), args)
|
137
|
+
#define ndk_conf_log_debug_mysql(r,args...) ndk_log_debug_mysql (ndk_conf_to_log(r), args)
|
138
|
+
#define ndk_conf_log_debug_script(r,args...) ndk_log_debug_script (ndk_conf_to_log(r), args)
|
139
|
+
|
140
|
+
#define ndk_request_log_stderr(r,args...) ndk_log_stderr (ndk_request_to_log(r), args)
|
141
|
+
#define ndk_request_log_emerg(r,args...) ndk_log_emerg (ndk_request_to_log(r), args)
|
142
|
+
#define ndk_request_log_alert(r,args...) ndk_log_alert (ndk_request_to_log(r), args)
|
143
|
+
#define ndk_request_log_crit(r,args...) ndk_log_crit (ndk_request_to_log(r), args)
|
144
|
+
#define ndk_request_log_err(r,args...) ndk_log_err (ndk_request_to_log(r), args)
|
145
|
+
#define ndk_request_log_warning(r,args...) ndk_log_warning (ndk_request_to_log(r), args)
|
146
|
+
#define ndk_request_log_notice(r,args...) ndk_log_notice (ndk_request_to_log(r), args)
|
147
|
+
#define ndk_request_log_info(r,args...) ndk_log_info (ndk_request_to_log(r), args)
|
148
|
+
|
149
|
+
#define ndk_request_log_debug_core(r,args...) ndk_log_debug_core (ndk_request_to_log(r), args)
|
150
|
+
#define ndk_request_log_debug_alloc(r,args...) ndk_log_debug_alloc (ndk_request_to_log(r), args)
|
151
|
+
#define ndk_request_log_debug_mutex(r,args...) ndk_log_debug_mutex (ndk_request_to_log(r), args)
|
152
|
+
#define ndk_request_log_debug_event(r,args...) ndk_log_debug_event (ndk_request_to_log(r), args)
|
153
|
+
#define ndk_request_log_debug_http(r,args...) ndk_log_debug_http (ndk_request_to_log(r), args)
|
154
|
+
#define ndk_request_log_debug_mail(r,args...) ndk_log_debug_mail (ndk_request_to_log(r), args)
|
155
|
+
#define ndk_request_log_debug_mysql(r,args...) ndk_log_debug_mysql (ndk_request_to_log(r), args)
|
156
|
+
#define ndk_request_log_debug_script(r,args...) ndk_log_debug_script (ndk_request_to_log(r), args)
|
157
|
+
|
158
|
+
/*********************************/
|
159
|
+
|
160
|
+
#else /* NO VARIADIC MACROS */
|
161
|
+
|
162
|
+
/* #warning does not work on Windows */
|
163
|
+
#pragma message("Nginx Devel Kit logging without variadic macros not yet implemented")
|
164
|
+
|
165
|
+
#endif /* VARIADIC MACROS */
|
@@ -0,0 +1,67 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
#if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)
|
5
|
+
|
6
|
+
#define ndk_str3_cmp(m, c0, c1, c2, c3) \
|
7
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0)
|
8
|
+
|
9
|
+
#define ndk_str3Ocmp(m, c0, c1, c2, c3) \
|
10
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0)
|
11
|
+
|
12
|
+
#define ndk_str4cmp(m, c0, c1, c2, c3) \
|
13
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0)
|
14
|
+
|
15
|
+
#define ndk_str5cmp(m, c0, c1, c2, c3, c4) \
|
16
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0) \
|
17
|
+
&& m[4] == c4
|
18
|
+
|
19
|
+
#define ndk_str6cmp(m, c0, c1, c2, c3, c4, c5) \
|
20
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0) \
|
21
|
+
&& (((uint32_t *) m)[1] & 0xffff) == ((c5 << 8) | c4)
|
22
|
+
|
23
|
+
#define ndk_str7_cmp(m, c0, c1, c2, c3, c4, c5, c6, c7) \
|
24
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0) \
|
25
|
+
&& ((uint32_t *) m)[1] == ((c7 << 24) | (c6 << 16) | (c5 << 8) | c4)
|
26
|
+
|
27
|
+
#define ndk_str8cmp(m, c0, c1, c2, c3, c4, c5, c6, c7) \
|
28
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0) \
|
29
|
+
&& ((uint32_t *) m)[1] == ((c7 << 24) | (c6 << 16) | (c5 << 8) | c4)
|
30
|
+
|
31
|
+
#define ndk_str9cmp(m, c0, c1, c2, c3, c4, c5, c6, c7, c8) \
|
32
|
+
*(uint32_t *) m == ((c3 << 24) | (c2 << 16) | (c1 << 8) | c0) \
|
33
|
+
&& ((uint32_t *) m)[1] == ((c7 << 24) | (c6 << 16) | (c5 << 8) | c4) \
|
34
|
+
&& m[8] == c8
|
35
|
+
|
36
|
+
#else /* !(NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED) */
|
37
|
+
|
38
|
+
#define ndk_str3_cmp(m, c0, c1, c2, c3) \
|
39
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2
|
40
|
+
|
41
|
+
#define ndk_str3Ocmp(m, c0, c1, c2, c3) \
|
42
|
+
m[0] == c0 && m[2] == c2 && m[3] == c3
|
43
|
+
|
44
|
+
#define ndk_str4cmp(m, c0, c1, c2, c3) \
|
45
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3
|
46
|
+
|
47
|
+
#define ndk_str5cmp(m, c0, c1, c2, c3, c4) \
|
48
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 && m[4] == c4
|
49
|
+
|
50
|
+
#define ndk_str6cmp(m, c0, c1, c2, c3, c4, c5) \
|
51
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 \
|
52
|
+
&& m[4] == c4 && m[5] == c5
|
53
|
+
|
54
|
+
#define ndk_str7_cmp(m, c0, c1, c2, c3, c4, c5, c6, c7) \
|
55
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 \
|
56
|
+
&& m[4] == c4 && m[5] == c5 && m[6] == c6
|
57
|
+
|
58
|
+
#define ndk_str8cmp(m, c0, c1, c2, c3, c4, c5, c6, c7) \
|
59
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 \
|
60
|
+
&& m[4] == c4 && m[5] == c5 && m[6] == c6 && m[7] == c7
|
61
|
+
|
62
|
+
#define ndk_str9cmp(m, c0, c1, c2, c3, c4, c5, c6, c7, c8) \
|
63
|
+
m[0] == c0 && m[1] == c1 && m[2] == c2 && m[3] == c3 \
|
64
|
+
&& m[4] == c4 && m[5] == c5 && m[6] == c6 && m[7] == c7 && m[8] == c8
|
65
|
+
|
66
|
+
#endif
|
67
|
+
|
@@ -0,0 +1,583 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
/* This function cleans a path to its most basic form, performing the following transformations :
|
5
|
+
*
|
6
|
+
* - ./ -> [empty]
|
7
|
+
* - // -> /
|
8
|
+
* - /base/parent/../ -> /base/
|
9
|
+
*
|
10
|
+
* If possible, it leaves the original string in place and does not copy characters, otherwise
|
11
|
+
* characters are copied.
|
12
|
+
*/
|
13
|
+
|
14
|
+
void
|
15
|
+
ndk_clean_path (ngx_str_t *path, ngx_uint_t complex, size_t off)
|
16
|
+
{
|
17
|
+
u_char *s, *p, *m, *e, c, *l;
|
18
|
+
ngx_uint_t root;
|
19
|
+
|
20
|
+
if (path->len == 1) {
|
21
|
+
|
22
|
+
if (path->data[0] == '.') {
|
23
|
+
path->len = 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
return;
|
27
|
+
}
|
28
|
+
|
29
|
+
/* strip initial './' */
|
30
|
+
|
31
|
+
s = path->data;
|
32
|
+
e = s + path->len;
|
33
|
+
|
34
|
+
if (off) {
|
35
|
+
p = s + off;
|
36
|
+
goto check_basic;
|
37
|
+
}
|
38
|
+
|
39
|
+
if (*s == '/')
|
40
|
+
root = 1;
|
41
|
+
else
|
42
|
+
root = 0;
|
43
|
+
|
44
|
+
while (s < e) {
|
45
|
+
|
46
|
+
switch (*s) {
|
47
|
+
|
48
|
+
case '/' :
|
49
|
+
|
50
|
+
/* '//' => '/' */
|
51
|
+
|
52
|
+
s++;
|
53
|
+
continue;
|
54
|
+
|
55
|
+
case '.' :
|
56
|
+
|
57
|
+
if (s == e-1) {
|
58
|
+
|
59
|
+
if (root) {
|
60
|
+
path->data[0] = '/';
|
61
|
+
path->len = 1;
|
62
|
+
} else {
|
63
|
+
path->len = 0;
|
64
|
+
}
|
65
|
+
|
66
|
+
return;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* './' => '' */
|
70
|
+
|
71
|
+
if (s[1] == '/') {
|
72
|
+
|
73
|
+
s += 2;
|
74
|
+
|
75
|
+
if (s == e) {
|
76
|
+
|
77
|
+
path->len = 0;
|
78
|
+
return;
|
79
|
+
}
|
80
|
+
|
81
|
+
continue;
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
break;
|
86
|
+
}
|
87
|
+
|
88
|
+
if (root && *s != '/') {
|
89
|
+
s--;
|
90
|
+
}
|
91
|
+
|
92
|
+
p = s;
|
93
|
+
|
94
|
+
check_basic :
|
95
|
+
|
96
|
+
for ( ; p<e; p++) {
|
97
|
+
|
98
|
+
if (*p == '/') {
|
99
|
+
|
100
|
+
new_dir_first :
|
101
|
+
|
102
|
+
if (e - p == 1)
|
103
|
+
break;
|
104
|
+
|
105
|
+
switch (p[1]) {
|
106
|
+
|
107
|
+
case '/' :
|
108
|
+
|
109
|
+
/* '//' => '/' */
|
110
|
+
|
111
|
+
m = p + 2;
|
112
|
+
goto copy;
|
113
|
+
|
114
|
+
case '.' :
|
115
|
+
|
116
|
+
if (e - p == 2)
|
117
|
+
break;
|
118
|
+
|
119
|
+
switch (p[2]) {
|
120
|
+
|
121
|
+
case '/' :
|
122
|
+
|
123
|
+
/* './' => '' */
|
124
|
+
|
125
|
+
m = p + 2;
|
126
|
+
goto copy;
|
127
|
+
|
128
|
+
case '.' :
|
129
|
+
|
130
|
+
if (e - p == 3 || p[3] == '/') {
|
131
|
+
|
132
|
+
if (p == s) {
|
133
|
+
|
134
|
+
s += 3;
|
135
|
+
continue;
|
136
|
+
}
|
137
|
+
|
138
|
+
if (p - s >= 2) {
|
139
|
+
|
140
|
+
if (p[-1] == '.' && p[-2] == '.') {
|
141
|
+
|
142
|
+
if (p - s == 2 || p[-3] == '/') { /* = '../../' */
|
143
|
+
|
144
|
+
p += 2; /* 3? */
|
145
|
+
continue;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
m = p + 4;
|
151
|
+
|
152
|
+
if (complex) {
|
153
|
+
|
154
|
+
for (p--; p >= s; p--) {
|
155
|
+
|
156
|
+
switch (*p) {
|
157
|
+
|
158
|
+
case '/' :
|
159
|
+
goto copy;
|
160
|
+
|
161
|
+
case '$' :
|
162
|
+
|
163
|
+
p = m - 1;
|
164
|
+
|
165
|
+
if (m == e)
|
166
|
+
goto end_basic;
|
167
|
+
|
168
|
+
goto new_dir_first;
|
169
|
+
}
|
170
|
+
}
|
171
|
+
|
172
|
+
} else {
|
173
|
+
|
174
|
+
for (p--; p > s; p--) {
|
175
|
+
|
176
|
+
/* '/path/folder/../' => '/path/' */
|
177
|
+
|
178
|
+
if (*p == '/')
|
179
|
+
break;
|
180
|
+
}
|
181
|
+
}
|
182
|
+
|
183
|
+
goto copy;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
}
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
end_basic :
|
191
|
+
|
192
|
+
path->data = s;
|
193
|
+
path->len = p - s;
|
194
|
+
|
195
|
+
return;
|
196
|
+
|
197
|
+
copy :
|
198
|
+
|
199
|
+
p++;
|
200
|
+
|
201
|
+
if (m < e)
|
202
|
+
goto new_dir;
|
203
|
+
|
204
|
+
while (m < e) {
|
205
|
+
|
206
|
+
c = *m;
|
207
|
+
*p = c;
|
208
|
+
p++;
|
209
|
+
|
210
|
+
if (c == '/') {
|
211
|
+
|
212
|
+
m++;
|
213
|
+
|
214
|
+
new_dir :
|
215
|
+
|
216
|
+
for ( ; m<e; m++) {
|
217
|
+
|
218
|
+
c = *m;
|
219
|
+
if (c != '/')
|
220
|
+
break;
|
221
|
+
}
|
222
|
+
|
223
|
+
if (m == e)
|
224
|
+
break;
|
225
|
+
|
226
|
+
if (c == '.') {
|
227
|
+
|
228
|
+
if (e - m == 1)
|
229
|
+
break;
|
230
|
+
|
231
|
+
switch (m[1]) {
|
232
|
+
|
233
|
+
case '/' :
|
234
|
+
|
235
|
+
/* './' => '' */
|
236
|
+
|
237
|
+
m += 2;
|
238
|
+
if (m == e)
|
239
|
+
break;
|
240
|
+
|
241
|
+
goto new_dir;
|
242
|
+
|
243
|
+
case '.' :
|
244
|
+
|
245
|
+
if (e - m == 2 || m[2] == '/') {
|
246
|
+
|
247
|
+
if (m - s >= 3) { /* NOTE : this is one higher than above because m has moved on 1 */
|
248
|
+
|
249
|
+
if (p[-2] == '.' && p[-3] == '.') {
|
250
|
+
|
251
|
+
if (m - s == 3 || p[-4] == '/') { /* = '../../' */
|
252
|
+
|
253
|
+
p[0] = '.';
|
254
|
+
p[1] = '.';
|
255
|
+
p[2] = '/';
|
256
|
+
p += 3;
|
257
|
+
m += 3;
|
258
|
+
goto new_dir;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
if (complex) {
|
264
|
+
|
265
|
+
l = p;
|
266
|
+
|
267
|
+
for (p -= 2; p >= s; p--) {
|
268
|
+
|
269
|
+
switch (*p) {
|
270
|
+
|
271
|
+
case '/' :
|
272
|
+
break;
|
273
|
+
|
274
|
+
case '$' :
|
275
|
+
|
276
|
+
l[0] = '.';
|
277
|
+
l[1] = '.';
|
278
|
+
l[2] = '/';
|
279
|
+
p = l + 4;
|
280
|
+
break;
|
281
|
+
|
282
|
+
default :
|
283
|
+
continue;
|
284
|
+
}
|
285
|
+
|
286
|
+
break;
|
287
|
+
}
|
288
|
+
|
289
|
+
m += 3;
|
290
|
+
if (m == e)
|
291
|
+
goto end;
|
292
|
+
|
293
|
+
goto new_dir;
|
294
|
+
|
295
|
+
} else {
|
296
|
+
|
297
|
+
for (p -= 2; p > s; p--) {
|
298
|
+
|
299
|
+
/* '/path/folder/../' => '/path/' */
|
300
|
+
|
301
|
+
if (*p == '/')
|
302
|
+
break;
|
303
|
+
}
|
304
|
+
|
305
|
+
m += 3;
|
306
|
+
if (m == e)
|
307
|
+
goto end;
|
308
|
+
|
309
|
+
goto new_dir;
|
310
|
+
}
|
311
|
+
}
|
312
|
+
}
|
313
|
+
}
|
314
|
+
|
315
|
+
} else {
|
316
|
+
m++;
|
317
|
+
}
|
318
|
+
}
|
319
|
+
|
320
|
+
end :
|
321
|
+
|
322
|
+
path->data = s;
|
323
|
+
path->len = p - s;
|
324
|
+
}
|
325
|
+
|
326
|
+
|
327
|
+
/* This function converts a path to its directory version, and assumes that there is always space
|
328
|
+
* to allocatate an extra character on the end (which is only true if the provided strings always
|
329
|
+
* have NULL's at the end (hence the 'safe').
|
330
|
+
*/
|
331
|
+
|
332
|
+
void
|
333
|
+
ndk_path_to_dir_safe (ngx_str_t *path, ngx_uint_t complex, size_t off)
|
334
|
+
{
|
335
|
+
size_t len;
|
336
|
+
u_char *p, *m;
|
337
|
+
|
338
|
+
ndk_clean_path (path, complex, off);
|
339
|
+
|
340
|
+
len = path->len;
|
341
|
+
if (!len)
|
342
|
+
return;
|
343
|
+
|
344
|
+
p = path->data;
|
345
|
+
m = p + len - 1;
|
346
|
+
|
347
|
+
if (*m != '/') {
|
348
|
+
|
349
|
+
p [len] = '/';
|
350
|
+
path->len++;
|
351
|
+
}
|
352
|
+
}
|
353
|
+
|
354
|
+
|
355
|
+
/* Divides a path given by path/to/path1:path/to/path2 into separate strings and returns an
|
356
|
+
* array of these strings.
|
357
|
+
*/
|
358
|
+
|
359
|
+
ngx_array_t *
|
360
|
+
ndk_split_path_create (ngx_conf_t *cf, ngx_str_t *path)
|
361
|
+
{
|
362
|
+
ngx_str_t *str;
|
363
|
+
int n;
|
364
|
+
u_char *m, *s, *e;
|
365
|
+
ngx_array_t *a;
|
366
|
+
|
367
|
+
if (path == NULL)
|
368
|
+
return NULL;
|
369
|
+
|
370
|
+
n = ndk_strcntc (path, ':');
|
371
|
+
|
372
|
+
a = ngx_array_create (cf->pool, n + 1, sizeof (ngx_str_t));
|
373
|
+
if (a == NULL) {
|
374
|
+
return NULL;
|
375
|
+
}
|
376
|
+
|
377
|
+
s = path->data;
|
378
|
+
e = s + path->len;
|
379
|
+
|
380
|
+
while (s < e) {
|
381
|
+
|
382
|
+
m = s;
|
383
|
+
|
384
|
+
while (m < e && *m != ':') m++;
|
385
|
+
|
386
|
+
if (m == s) {
|
387
|
+
s = m+1;
|
388
|
+
continue;
|
389
|
+
}
|
390
|
+
|
391
|
+
str = ngx_array_push (a);
|
392
|
+
if (str == NULL) {
|
393
|
+
return NULL;
|
394
|
+
}
|
395
|
+
|
396
|
+
str->data = s;
|
397
|
+
str->len = m - s;
|
398
|
+
|
399
|
+
if (ngx_conf_full_name (cf->cycle, str, 0) == NGX_ERROR)
|
400
|
+
return NULL;
|
401
|
+
|
402
|
+
s = m+1;
|
403
|
+
}
|
404
|
+
|
405
|
+
return a;
|
406
|
+
}
|
407
|
+
|
408
|
+
|
409
|
+
|
410
|
+
ngx_array_t *
|
411
|
+
ndk_split_path_create_raw (ngx_conf_t *cf, char *path)
|
412
|
+
{
|
413
|
+
ngx_str_t *str;
|
414
|
+
int n;
|
415
|
+
char *m, *s;
|
416
|
+
ngx_array_t *a;
|
417
|
+
|
418
|
+
if (path == NULL)
|
419
|
+
return NULL;
|
420
|
+
|
421
|
+
n = ndk_strccnt (path, ':');
|
422
|
+
|
423
|
+
a = ngx_array_create (cf->pool, n + 1, sizeof (ngx_str_t));
|
424
|
+
if (a == NULL) {
|
425
|
+
return NULL;
|
426
|
+
}
|
427
|
+
|
428
|
+
s = path;
|
429
|
+
|
430
|
+
|
431
|
+
while (*s != '\0') {
|
432
|
+
|
433
|
+
m = s;
|
434
|
+
|
435
|
+
while (*m != '\0' && *m != ':') m++;
|
436
|
+
|
437
|
+
if (m == s) {
|
438
|
+
s = m+1;
|
439
|
+
continue;
|
440
|
+
}
|
441
|
+
|
442
|
+
str = ngx_array_push (a);
|
443
|
+
if (str == NULL) {
|
444
|
+
return NULL;
|
445
|
+
}
|
446
|
+
|
447
|
+
str->data = (u_char *) s;
|
448
|
+
str->len = m - s;
|
449
|
+
|
450
|
+
if (ngx_conf_full_name (cf->cycle, str, 0) == NGX_ERROR)
|
451
|
+
return NULL;
|
452
|
+
|
453
|
+
if (*m == '\0')
|
454
|
+
break;
|
455
|
+
|
456
|
+
s = m+1;
|
457
|
+
}
|
458
|
+
|
459
|
+
return a;
|
460
|
+
}
|
461
|
+
|
462
|
+
|
463
|
+
|
464
|
+
char *
|
465
|
+
ndk_conf_set_full_path_slot (ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
466
|
+
{
|
467
|
+
char *p = conf;
|
468
|
+
|
469
|
+
ngx_str_t *path, *value;
|
470
|
+
ngx_conf_post_t *post;
|
471
|
+
|
472
|
+
path = (ngx_str_t *) (p + cmd->offset);
|
473
|
+
|
474
|
+
if (path->data) {
|
475
|
+
return "is duplicate";
|
476
|
+
}
|
477
|
+
|
478
|
+
value = cf->args->elts;
|
479
|
+
|
480
|
+
*path = value[1];
|
481
|
+
|
482
|
+
if (ngx_conf_full_name (cf->cycle, path, 0) == NGX_ERROR)
|
483
|
+
return NGX_CONF_ERROR;
|
484
|
+
|
485
|
+
if (cmd->post) {
|
486
|
+
post = cmd->post;
|
487
|
+
return post->post_handler(cf, post, path);
|
488
|
+
}
|
489
|
+
|
490
|
+
return NGX_CONF_OK;
|
491
|
+
}
|
492
|
+
|
493
|
+
|
494
|
+
|
495
|
+
char *
|
496
|
+
ndk_conf_set_split_path_slot (ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
497
|
+
{
|
498
|
+
/* TODO : change to use the path func above */
|
499
|
+
|
500
|
+
char *p = conf;
|
501
|
+
|
502
|
+
ngx_str_t *value, *str;
|
503
|
+
ngx_array_t **a;
|
504
|
+
ngx_conf_post_t *post;
|
505
|
+
int n;
|
506
|
+
u_char *m, *s, *e;
|
507
|
+
|
508
|
+
a = (ngx_array_t **) (p + cmd->offset);
|
509
|
+
|
510
|
+
if (*a != NGX_CONF_UNSET_PTR) {
|
511
|
+
return "is duplicate";
|
512
|
+
}
|
513
|
+
|
514
|
+
value = cf->args->elts;
|
515
|
+
value++;
|
516
|
+
|
517
|
+
n = ndk_strcntc (value, ':') + 1;
|
518
|
+
|
519
|
+
*a = ngx_array_create (cf->pool, n, sizeof (ngx_str_t));
|
520
|
+
if (*a == NULL) {
|
521
|
+
return NGX_CONF_ERROR;
|
522
|
+
}
|
523
|
+
|
524
|
+
s = value->data;
|
525
|
+
e = s + value->len;
|
526
|
+
|
527
|
+
while (s < e) {
|
528
|
+
|
529
|
+
m = s;
|
530
|
+
|
531
|
+
while (m < e && *m != ':') m++;
|
532
|
+
|
533
|
+
if (m == s) {
|
534
|
+
s = m+1;
|
535
|
+
continue;
|
536
|
+
}
|
537
|
+
|
538
|
+
str = ngx_array_push (*a);
|
539
|
+
if (str == NULL) {
|
540
|
+
return NGX_CONF_ERROR;
|
541
|
+
}
|
542
|
+
|
543
|
+
str->data = s;
|
544
|
+
str->len = m - s;
|
545
|
+
|
546
|
+
if (ngx_conf_full_name (cf->cycle, str, 0) == NGX_ERROR)
|
547
|
+
return NGX_CONF_ERROR;
|
548
|
+
|
549
|
+
s = m+1;
|
550
|
+
}
|
551
|
+
|
552
|
+
|
553
|
+
if (cmd->post) {
|
554
|
+
post = cmd->post;
|
555
|
+
return post->post_handler (cf, post, a);
|
556
|
+
}
|
557
|
+
|
558
|
+
return NGX_CONF_OK;
|
559
|
+
}
|
560
|
+
|
561
|
+
|
562
|
+
|
563
|
+
char *
|
564
|
+
ndk_conf_set_full_path (ngx_conf_t *cf, void *data, ngx_str_t *path)
|
565
|
+
{
|
566
|
+
if (ngx_conf_full_name (cf->cycle, path, 0) == NGX_ERROR)
|
567
|
+
return NGX_CONF_ERROR;
|
568
|
+
|
569
|
+
return NGX_CONF_OK;
|
570
|
+
}
|
571
|
+
|
572
|
+
|
573
|
+
|
574
|
+
char *
|
575
|
+
ndk_conf_set_full_conf_path (ngx_conf_t *cf, void *data, ngx_str_t *path)
|
576
|
+
{
|
577
|
+
if (ngx_conf_full_name (cf->cycle, path, 1) == NGX_ERROR)
|
578
|
+
return NGX_CONF_ERROR;
|
579
|
+
|
580
|
+
return NGX_CONF_OK;
|
581
|
+
}
|
582
|
+
|
583
|
+
|