nginxtra 1.0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -0
- data/bin/nginxtra +5 -0
- data/lib/nginxtra.rb +12 -0
- data/lib/nginxtra/action.rb +36 -0
- data/lib/nginxtra/actions/compile.rb +60 -0
- data/lib/nginxtra/actions/install.rb +99 -0
- data/lib/nginxtra/actions/reload.rb +14 -0
- data/lib/nginxtra/actions/restart.rb +15 -0
- data/lib/nginxtra/actions/start.rb +53 -0
- data/lib/nginxtra/actions/status.rb +31 -0
- data/lib/nginxtra/actions/stop.rb +14 -0
- data/lib/nginxtra/cli.rb +77 -0
- data/lib/nginxtra/config.rb +339 -0
- data/lib/nginxtra/error.rb +13 -0
- data/lib/nginxtra/status.rb +57 -0
- data/src/nginx/CHANGES +5630 -0
- data/src/nginx/CHANGES.ru +5716 -0
- data/src/nginx/LICENSE +25 -0
- data/src/nginx/README +3 -0
- data/src/nginx/auto/cc/acc +15 -0
- data/src/nginx/auto/cc/bcc +72 -0
- data/src/nginx/auto/cc/ccc +46 -0
- data/src/nginx/auto/cc/conf +189 -0
- data/src/nginx/auto/cc/gcc +183 -0
- data/src/nginx/auto/cc/icc +121 -0
- data/src/nginx/auto/cc/msvc +138 -0
- data/src/nginx/auto/cc/name +101 -0
- data/src/nginx/auto/cc/owc +104 -0
- data/src/nginx/auto/cc/sunc +158 -0
- data/src/nginx/auto/define +12 -0
- data/src/nginx/auto/endianess +45 -0
- data/src/nginx/auto/feature +123 -0
- data/src/nginx/auto/have +12 -0
- data/src/nginx/auto/have_headers +12 -0
- data/src/nginx/auto/headers +13 -0
- data/src/nginx/auto/include +61 -0
- data/src/nginx/auto/init +51 -0
- data/src/nginx/auto/install +184 -0
- data/src/nginx/auto/lib/conf +83 -0
- data/src/nginx/auto/lib/geoip/conf +79 -0
- data/src/nginx/auto/lib/google-perftools/conf +45 -0
- data/src/nginx/auto/lib/libatomic/conf +43 -0
- data/src/nginx/auto/lib/libatomic/make +14 -0
- data/src/nginx/auto/lib/libgd/conf +83 -0
- data/src/nginx/auto/lib/libxslt/conf +156 -0
- data/src/nginx/auto/lib/make +32 -0
- data/src/nginx/auto/lib/md5/conf +103 -0
- data/src/nginx/auto/lib/md5/make +96 -0
- data/src/nginx/auto/lib/md5/makefile.bcc +22 -0
- data/src/nginx/auto/lib/md5/makefile.msvc +22 -0
- data/src/nginx/auto/lib/md5/makefile.owc +11 -0
- data/src/nginx/auto/lib/openssl/conf +74 -0
- data/src/nginx/auto/lib/openssl/make +67 -0
- data/src/nginx/auto/lib/openssl/makefile.bcc +18 -0
- data/src/nginx/auto/lib/openssl/makefile.msvc +14 -0
- data/src/nginx/auto/lib/pcre/conf +180 -0
- data/src/nginx/auto/lib/pcre/make +64 -0
- data/src/nginx/auto/lib/pcre/makefile.bcc +26 -0
- data/src/nginx/auto/lib/pcre/makefile.msvc +22 -0
- data/src/nginx/auto/lib/pcre/makefile.owc +24 -0
- data/src/nginx/auto/lib/perl/conf +60 -0
- data/src/nginx/auto/lib/perl/make +36 -0
- data/src/nginx/auto/lib/sha1/conf +79 -0
- data/src/nginx/auto/lib/sha1/make +96 -0
- data/src/nginx/auto/lib/sha1/makefile.bcc +22 -0
- data/src/nginx/auto/lib/sha1/makefile.msvc +22 -0
- data/src/nginx/auto/lib/sha1/makefile.owc +11 -0
- data/src/nginx/auto/lib/test +40 -0
- data/src/nginx/auto/lib/zlib/conf +76 -0
- data/src/nginx/auto/lib/zlib/make +114 -0
- data/src/nginx/auto/lib/zlib/makefile.bcc +15 -0
- data/src/nginx/auto/lib/zlib/makefile.msvc +14 -0
- data/src/nginx/auto/lib/zlib/makefile.owc +14 -0
- data/src/nginx/auto/lib/zlib/patch.zlib.h +10 -0
- data/src/nginx/auto/make +417 -0
- data/src/nginx/auto/modules +479 -0
- data/src/nginx/auto/nohave +12 -0
- data/src/nginx/auto/options +490 -0
- data/src/nginx/auto/os/conf +105 -0
- data/src/nginx/auto/os/darwin +116 -0
- data/src/nginx/auto/os/freebsd +136 -0
- data/src/nginx/auto/os/linux +152 -0
- data/src/nginx/auto/os/solaris +60 -0
- data/src/nginx/auto/os/win32 +29 -0
- data/src/nginx/auto/sources +518 -0
- data/src/nginx/auto/stubs +8 -0
- data/src/nginx/auto/summary +114 -0
- data/src/nginx/auto/types/sizeof +83 -0
- data/src/nginx/auto/types/typedef +77 -0
- data/src/nginx/auto/types/uintptr_t +42 -0
- data/src/nginx/auto/types/value +12 -0
- data/src/nginx/auto/unix +719 -0
- data/src/nginx/conf/fastcgi.conf +24 -0
- data/src/nginx/conf/fastcgi_params +23 -0
- data/src/nginx/conf/koi-utf +109 -0
- data/src/nginx/conf/koi-win +103 -0
- data/src/nginx/conf/mime.types +80 -0
- data/src/nginx/conf/nginx.conf +118 -0
- data/src/nginx/conf/scgi_params +15 -0
- data/src/nginx/conf/uwsgi_params +15 -0
- data/src/nginx/conf/win-utf +126 -0
- data/src/nginx/configure +108 -0
- data/src/nginx/contrib/README +15 -0
- data/src/nginx/contrib/geo2nginx.pl +58 -0
- data/src/nginx/contrib/unicode2nginx/koi-utf +131 -0
- data/src/nginx/contrib/unicode2nginx/unicode-to-nginx.pl +45 -0
- data/src/nginx/contrib/unicode2nginx/win-utf +130 -0
- data/src/nginx/html/50x.html +18 -0
- data/src/nginx/html/index.html +8 -0
- data/src/nginx/man/nginx.8 +202 -0
- data/src/nginx/src/core/nginx.c +1333 -0
- data/src/nginx/src/core/nginx.h +20 -0
- data/src/nginx/src/core/ngx_array.c +147 -0
- data/src/nginx/src/core/ngx_array.h +53 -0
- data/src/nginx/src/core/ngx_buf.c +218 -0
- data/src/nginx/src/core/ngx_buf.h +162 -0
- data/src/nginx/src/core/ngx_conf_file.c +1506 -0
- data/src/nginx/src/core/ngx_conf_file.h +348 -0
- data/src/nginx/src/core/ngx_config.h +134 -0
- data/src/nginx/src/core/ngx_connection.c +1074 -0
- data/src/nginx/src/core/ngx_connection.h +195 -0
- data/src/nginx/src/core/ngx_core.h +95 -0
- data/src/nginx/src/core/ngx_cpuinfo.c +139 -0
- data/src/nginx/src/core/ngx_crc.h +39 -0
- data/src/nginx/src/core/ngx_crc32.c +129 -0
- data/src/nginx/src/core/ngx_crc32.h +79 -0
- data/src/nginx/src/core/ngx_crypt.c +238 -0
- data/src/nginx/src/core/ngx_crypt.h +20 -0
- data/src/nginx/src/core/ngx_cycle.c +1379 -0
- data/src/nginx/src/core/ngx_cycle.h +142 -0
- data/src/nginx/src/core/ngx_file.c +993 -0
- data/src/nginx/src/core/ngx_file.h +151 -0
- data/src/nginx/src/core/ngx_hash.c +976 -0
- data/src/nginx/src/core/ngx_hash.h +122 -0
- data/src/nginx/src/core/ngx_inet.c +1008 -0
- data/src/nginx/src/core/ngx_inet.h +120 -0
- data/src/nginx/src/core/ngx_list.c +71 -0
- data/src/nginx/src/core/ngx_list.h +83 -0
- data/src/nginx/src/core/ngx_log.c +459 -0
- data/src/nginx/src/core/ngx_log.h +250 -0
- data/src/nginx/src/core/ngx_md5.c +289 -0
- data/src/nginx/src/core/ngx_md5.h +60 -0
- data/src/nginx/src/core/ngx_murmurhash.c +50 -0
- data/src/nginx/src/core/ngx_murmurhash.h +19 -0
- data/src/nginx/src/core/ngx_open_file_cache.c +882 -0
- data/src/nginx/src/core/ngx_open_file_cache.h +119 -0
- data/src/nginx/src/core/ngx_output_chain.c +673 -0
- data/src/nginx/src/core/ngx_palloc.c +433 -0
- data/src/nginx/src/core/ngx_palloc.h +95 -0
- data/src/nginx/src/core/ngx_parse.c +249 -0
- data/src/nginx/src/core/ngx_parse.h +24 -0
- data/src/nginx/src/core/ngx_queue.c +80 -0
- data/src/nginx/src/core/ngx_queue.h +112 -0
- data/src/nginx/src/core/ngx_radix_tree.c +291 -0
- data/src/nginx/src/core/ngx_radix_tree.h +46 -0
- data/src/nginx/src/core/ngx_rbtree.c +383 -0
- data/src/nginx/src/core/ngx_rbtree.h +84 -0
- data/src/nginx/src/core/ngx_regex.c +206 -0
- data/src/nginx/src/core/ngx_regex.h +56 -0
- data/src/nginx/src/core/ngx_resolver.c +2201 -0
- data/src/nginx/src/core/ngx_resolver.h +149 -0
- data/src/nginx/src/core/ngx_sha1.h +31 -0
- data/src/nginx/src/core/ngx_shmtx.c +284 -0
- data/src/nginx/src/core/ngx_shmtx.h +38 -0
- data/src/nginx/src/core/ngx_slab.c +701 -0
- data/src/nginx/src/core/ngx_slab.h +54 -0
- data/src/nginx/src/core/ngx_spinlock.c +53 -0
- data/src/nginx/src/core/ngx_string.c +1837 -0
- data/src/nginx/src/core/ngx_string.h +231 -0
- data/src/nginx/src/core/ngx_times.c +407 -0
- data/src/nginx/src/core/ngx_times.h +51 -0
- data/src/nginx/src/event/modules/ngx_aio_module.c +171 -0
- data/src/nginx/src/event/modules/ngx_devpoll_module.c +569 -0
- data/src/nginx/src/event/modules/ngx_epoll_module.c +833 -0
- data/src/nginx/src/event/modules/ngx_eventport_module.c +602 -0
- data/src/nginx/src/event/modules/ngx_kqueue_module.c +785 -0
- data/src/nginx/src/event/modules/ngx_poll_module.c +443 -0
- data/src/nginx/src/event/modules/ngx_rtsig_module.c +735 -0
- data/src/nginx/src/event/modules/ngx_select_module.c +435 -0
- data/src/nginx/src/event/modules/ngx_win32_select_module.c +400 -0
- data/src/nginx/src/event/ngx_event.c +1275 -0
- data/src/nginx/src/event/ngx_event.h +573 -0
- data/src/nginx/src/event/ngx_event_accept.c +428 -0
- data/src/nginx/src/event/ngx_event_busy_lock.c +286 -0
- data/src/nginx/src/event/ngx_event_busy_lock.h +65 -0
- data/src/nginx/src/event/ngx_event_connect.c +258 -0
- data/src/nginx/src/event/ngx_event_connect.h +76 -0
- data/src/nginx/src/event/ngx_event_mutex.c +70 -0
- data/src/nginx/src/event/ngx_event_openssl.c +2382 -0
- data/src/nginx/src/event/ngx_event_openssl.h +162 -0
- data/src/nginx/src/event/ngx_event_pipe.c +996 -0
- data/src/nginx/src/event/ngx_event_pipe.h +95 -0
- data/src/nginx/src/event/ngx_event_posted.c +173 -0
- data/src/nginx/src/event/ngx_event_posted.h +75 -0
- data/src/nginx/src/event/ngx_event_timer.c +159 -0
- data/src/nginx/src/event/ngx_event_timer.h +102 -0
- data/src/nginx/src/http/modules/ngx_http_access_module.c +384 -0
- data/src/nginx/src/http/modules/ngx_http_addition_filter_module.c +250 -0
- data/src/nginx/src/http/modules/ngx_http_auth_basic_module.c +478 -0
- data/src/nginx/src/http/modules/ngx_http_autoindex_module.c +701 -0
- data/src/nginx/src/http/modules/ngx_http_browser_module.c +713 -0
- data/src/nginx/src/http/modules/ngx_http_charset_filter_module.c +1681 -0
- data/src/nginx/src/http/modules/ngx_http_chunked_filter_module.c +242 -0
- data/src/nginx/src/http/modules/ngx_http_dav_module.c +1141 -0
- data/src/nginx/src/http/modules/ngx_http_degradation_module.c +243 -0
- data/src/nginx/src/http/modules/ngx_http_empty_gif_module.c +140 -0
- data/src/nginx/src/http/modules/ngx_http_fastcgi_module.c +2916 -0
- data/src/nginx/src/http/modules/ngx_http_flv_module.c +254 -0
- data/src/nginx/src/http/modules/ngx_http_geo_module.c +1441 -0
- data/src/nginx/src/http/modules/ngx_http_geoip_module.c +671 -0
- data/src/nginx/src/http/modules/ngx_http_gzip_filter_module.c +1206 -0
- data/src/nginx/src/http/modules/ngx_http_gzip_static_module.c +299 -0
- data/src/nginx/src/http/modules/ngx_http_headers_filter_module.c +616 -0
- data/src/nginx/src/http/modules/ngx_http_image_filter_module.c +1489 -0
- data/src/nginx/src/http/modules/ngx_http_index_module.c +516 -0
- data/src/nginx/src/http/modules/ngx_http_limit_req_module.c +809 -0
- data/src/nginx/src/http/modules/ngx_http_limit_zone_module.c +553 -0
- data/src/nginx/src/http/modules/ngx_http_log_module.c +1357 -0
- data/src/nginx/src/http/modules/ngx_http_map_module.c +575 -0
- data/src/nginx/src/http/modules/ngx_http_memcached_module.c +624 -0
- data/src/nginx/src/http/modules/ngx_http_mp4_module.c +3000 -0
- data/src/nginx/src/http/modules/ngx_http_not_modified_filter_module.c +143 -0
- data/src/nginx/src/http/modules/ngx_http_proxy_module.c +2831 -0
- data/src/nginx/src/http/modules/ngx_http_random_index_module.c +317 -0
- data/src/nginx/src/http/modules/ngx_http_range_filter_module.c +855 -0
- data/src/nginx/src/http/modules/ngx_http_realip_module.c +476 -0
- data/src/nginx/src/http/modules/ngx_http_referer_module.c +613 -0
- data/src/nginx/src/http/modules/ngx_http_rewrite_module.c +1019 -0
- data/src/nginx/src/http/modules/ngx_http_scgi_module.c +1714 -0
- data/src/nginx/src/http/modules/ngx_http_secure_link_module.c +355 -0
- data/src/nginx/src/http/modules/ngx_http_split_clients_module.c +242 -0
- data/src/nginx/src/http/modules/ngx_http_ssi_filter_module.c +2913 -0
- data/src/nginx/src/http/modules/ngx_http_ssi_filter_module.h +114 -0
- data/src/nginx/src/http/modules/ngx_http_ssl_module.c +652 -0
- data/src/nginx/src/http/modules/ngx_http_ssl_module.h +52 -0
- data/src/nginx/src/http/modules/ngx_http_static_module.c +278 -0
- data/src/nginx/src/http/modules/ngx_http_stub_status_module.c +144 -0
- data/src/nginx/src/http/modules/ngx_http_sub_filter_module.c +716 -0
- data/src/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c +237 -0
- data/src/nginx/src/http/modules/ngx_http_userid_filter_module.c +846 -0
- data/src/nginx/src/http/modules/ngx_http_uwsgi_module.c +1774 -0
- data/src/nginx/src/http/modules/ngx_http_xslt_filter_module.c +984 -0
- data/src/nginx/src/http/modules/perl/Makefile.PL +42 -0
- data/src/nginx/src/http/modules/perl/nginx.pm +137 -0
- data/src/nginx/src/http/modules/perl/nginx.xs +986 -0
- data/src/nginx/src/http/modules/perl/ngx_http_perl_module.c +1076 -0
- data/src/nginx/src/http/modules/perl/ngx_http_perl_module.h +67 -0
- data/src/nginx/src/http/modules/perl/typemap +3 -0
- data/src/nginx/src/http/ngx_http.c +2073 -0
- data/src/nginx/src/http/ngx_http.h +160 -0
- data/src/nginx/src/http/ngx_http_busy_lock.c +307 -0
- data/src/nginx/src/http/ngx_http_busy_lock.h +54 -0
- data/src/nginx/src/http/ngx_http_cache.h +148 -0
- data/src/nginx/src/http/ngx_http_config.h +75 -0
- data/src/nginx/src/http/ngx_http_copy_filter_module.c +300 -0
- data/src/nginx/src/http/ngx_http_core_module.c +4736 -0
- data/src/nginx/src/http/ngx_http_core_module.h +541 -0
- data/src/nginx/src/http/ngx_http_file_cache.c +1715 -0
- data/src/nginx/src/http/ngx_http_header_filter_module.c +623 -0
- data/src/nginx/src/http/ngx_http_parse.c +1734 -0
- data/src/nginx/src/http/ngx_http_parse_time.c +276 -0
- data/src/nginx/src/http/ngx_http_postpone_filter_module.c +178 -0
- data/src/nginx/src/http/ngx_http_request.c +3181 -0
- data/src/nginx/src/http/ngx_http_request.h +573 -0
- data/src/nginx/src/http/ngx_http_request_body.c +644 -0
- data/src/nginx/src/http/ngx_http_script.c +1752 -0
- data/src/nginx/src/http/ngx_http_script.h +257 -0
- data/src/nginx/src/http/ngx_http_special_response.c +789 -0
- data/src/nginx/src/http/ngx_http_upstream.c +4555 -0
- data/src/nginx/src/http/ngx_http_upstream.h +350 -0
- data/src/nginx/src/http/ngx_http_upstream_round_robin.c +791 -0
- data/src/nginx/src/http/ngx_http_upstream_round_robin.h +85 -0
- data/src/nginx/src/http/ngx_http_variables.c +2053 -0
- data/src/nginx/src/http/ngx_http_variables.h +115 -0
- data/src/nginx/src/http/ngx_http_write_filter_module.c +315 -0
- data/src/nginx/src/mail/ngx_mail.c +542 -0
- data/src/nginx/src/mail/ngx_mail.h +407 -0
- data/src/nginx/src/mail/ngx_mail_auth_http_module.c +1452 -0
- data/src/nginx/src/mail/ngx_mail_core_module.c +553 -0
- data/src/nginx/src/mail/ngx_mail_handler.c +773 -0
- data/src/nginx/src/mail/ngx_mail_imap_handler.c +457 -0
- data/src/nginx/src/mail/ngx_mail_imap_module.c +253 -0
- data/src/nginx/src/mail/ngx_mail_imap_module.h +39 -0
- data/src/nginx/src/mail/ngx_mail_parse.c +885 -0
- data/src/nginx/src/mail/ngx_mail_pop3_handler.c +500 -0
- data/src/nginx/src/mail/ngx_mail_pop3_module.c +264 -0
- data/src/nginx/src/mail/ngx_mail_pop3_module.h +38 -0
- data/src/nginx/src/mail/ngx_mail_proxy_module.c +1089 -0
- data/src/nginx/src/mail/ngx_mail_smtp_handler.c +872 -0
- data/src/nginx/src/mail/ngx_mail_smtp_module.c +308 -0
- data/src/nginx/src/mail/ngx_mail_smtp_module.h +45 -0
- data/src/nginx/src/mail/ngx_mail_ssl_module.c +491 -0
- data/src/nginx/src/mail/ngx_mail_ssl_module.h +52 -0
- data/src/nginx/src/misc/ngx_cpp_test_module.cpp +27 -0
- data/src/nginx/src/misc/ngx_google_perftools_module.c +126 -0
- data/src/nginx/src/os/unix/ngx_aio_read.c +109 -0
- data/src/nginx/src/os/unix/ngx_aio_read_chain.c +78 -0
- data/src/nginx/src/os/unix/ngx_aio_write.c +109 -0
- data/src/nginx/src/os/unix/ngx_aio_write_chain.c +100 -0
- data/src/nginx/src/os/unix/ngx_alloc.c +90 -0
- data/src/nginx/src/os/unix/ngx_alloc.h +45 -0
- data/src/nginx/src/os/unix/ngx_atomic.h +311 -0
- data/src/nginx/src/os/unix/ngx_channel.c +258 -0
- data/src/nginx/src/os/unix/ngx_channel.h +34 -0
- data/src/nginx/src/os/unix/ngx_daemon.c +69 -0
- data/src/nginx/src/os/unix/ngx_darwin.h +20 -0
- data/src/nginx/src/os/unix/ngx_darwin_config.h +96 -0
- data/src/nginx/src/os/unix/ngx_darwin_init.c +166 -0
- data/src/nginx/src/os/unix/ngx_darwin_sendfile_chain.c +366 -0
- data/src/nginx/src/os/unix/ngx_errno.c +87 -0
- data/src/nginx/src/os/unix/ngx_errno.h +68 -0
- data/src/nginx/src/os/unix/ngx_file_aio_read.c +208 -0
- data/src/nginx/src/os/unix/ngx_files.c +566 -0
- data/src/nginx/src/os/unix/ngx_files.h +343 -0
- data/src/nginx/src/os/unix/ngx_freebsd.h +24 -0
- data/src/nginx/src/os/unix/ngx_freebsd_config.h +119 -0
- data/src/nginx/src/os/unix/ngx_freebsd_init.c +259 -0
- data/src/nginx/src/os/unix/ngx_freebsd_rfork_thread.c +756 -0
- data/src/nginx/src/os/unix/ngx_freebsd_rfork_thread.h +122 -0
- data/src/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c +436 -0
- data/src/nginx/src/os/unix/ngx_gcc_atomic_amd64.h +82 -0
- data/src/nginx/src/os/unix/ngx_gcc_atomic_ppc.h +155 -0
- data/src/nginx/src/os/unix/ngx_gcc_atomic_sparc64.h +82 -0
- data/src/nginx/src/os/unix/ngx_gcc_atomic_x86.h +127 -0
- data/src/nginx/src/os/unix/ngx_linux.h +18 -0
- data/src/nginx/src/os/unix/ngx_linux_aio_read.c +137 -0
- data/src/nginx/src/os/unix/ngx_linux_config.h +117 -0
- data/src/nginx/src/os/unix/ngx_linux_init.c +91 -0
- data/src/nginx/src/os/unix/ngx_linux_sendfile_chain.c +378 -0
- data/src/nginx/src/os/unix/ngx_os.h +84 -0
- data/src/nginx/src/os/unix/ngx_posix_config.h +153 -0
- data/src/nginx/src/os/unix/ngx_posix_init.c +124 -0
- data/src/nginx/src/os/unix/ngx_process.c +590 -0
- data/src/nginx/src/os/unix/ngx_process.h +87 -0
- data/src/nginx/src/os/unix/ngx_process_cycle.c +1390 -0
- data/src/nginx/src/os/unix/ngx_process_cycle.h +61 -0
- data/src/nginx/src/os/unix/ngx_pthread_thread.c +278 -0
- data/src/nginx/src/os/unix/ngx_readv_chain.c +258 -0
- data/src/nginx/src/os/unix/ngx_recv.c +180 -0
- data/src/nginx/src/os/unix/ngx_send.c +73 -0
- data/src/nginx/src/os/unix/ngx_setproctitle.c +135 -0
- data/src/nginx/src/os/unix/ngx_setproctitle.h +52 -0
- data/src/nginx/src/os/unix/ngx_shmem.c +126 -0
- data/src/nginx/src/os/unix/ngx_shmem.h +29 -0
- data/src/nginx/src/os/unix/ngx_socket.c +116 -0
- data/src/nginx/src/os/unix/ngx_socket.h +64 -0
- data/src/nginx/src/os/unix/ngx_solaris.h +16 -0
- data/src/nginx/src/os/unix/ngx_solaris_config.h +107 -0
- data/src/nginx/src/os/unix/ngx_solaris_init.c +75 -0
- data/src/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c +251 -0
- data/src/nginx/src/os/unix/ngx_sunpro_amd64.il +43 -0
- data/src/nginx/src/os/unix/ngx_sunpro_atomic_sparc64.h +61 -0
- data/src/nginx/src/os/unix/ngx_sunpro_sparc64.il +36 -0
- data/src/nginx/src/os/unix/ngx_sunpro_x86.il +44 -0
- data/src/nginx/src/os/unix/ngx_thread.h +128 -0
- data/src/nginx/src/os/unix/ngx_time.c +104 -0
- data/src/nginx/src/os/unix/ngx_time.h +66 -0
- data/src/nginx/src/os/unix/ngx_udp_recv.c +115 -0
- data/src/nginx/src/os/unix/ngx_user.c +109 -0
- data/src/nginx/src/os/unix/ngx_user.h +24 -0
- data/src/nginx/src/os/unix/ngx_writev_chain.c +181 -0
- data/src/nginx/src/os/unix/rfork_thread.S +73 -0
- metadata +419 -0
@@ -0,0 +1,122 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Copyright (C) Igor Sysoev
|
4
|
+
* Copyright (C) Nginx, Inc.
|
5
|
+
*/
|
6
|
+
|
7
|
+
|
8
|
+
#ifndef _NGX_HASH_H_INCLUDED_
|
9
|
+
#define _NGX_HASH_H_INCLUDED_
|
10
|
+
|
11
|
+
|
12
|
+
#include <ngx_config.h>
|
13
|
+
#include <ngx_core.h>
|
14
|
+
|
15
|
+
|
16
|
+
typedef struct {
|
17
|
+
void *value;
|
18
|
+
u_short len;
|
19
|
+
u_char name[1];
|
20
|
+
} ngx_hash_elt_t;
|
21
|
+
|
22
|
+
|
23
|
+
typedef struct {
|
24
|
+
ngx_hash_elt_t **buckets;
|
25
|
+
ngx_uint_t size;
|
26
|
+
} ngx_hash_t;
|
27
|
+
|
28
|
+
|
29
|
+
typedef struct {
|
30
|
+
ngx_hash_t hash;
|
31
|
+
void *value;
|
32
|
+
} ngx_hash_wildcard_t;
|
33
|
+
|
34
|
+
|
35
|
+
typedef struct {
|
36
|
+
ngx_str_t key;
|
37
|
+
ngx_uint_t key_hash;
|
38
|
+
void *value;
|
39
|
+
} ngx_hash_key_t;
|
40
|
+
|
41
|
+
|
42
|
+
typedef ngx_uint_t (*ngx_hash_key_pt) (u_char *data, size_t len);
|
43
|
+
|
44
|
+
|
45
|
+
typedef struct {
|
46
|
+
ngx_hash_t hash;
|
47
|
+
ngx_hash_wildcard_t *wc_head;
|
48
|
+
ngx_hash_wildcard_t *wc_tail;
|
49
|
+
} ngx_hash_combined_t;
|
50
|
+
|
51
|
+
|
52
|
+
typedef struct {
|
53
|
+
ngx_hash_t *hash;
|
54
|
+
ngx_hash_key_pt key;
|
55
|
+
|
56
|
+
ngx_uint_t max_size;
|
57
|
+
ngx_uint_t bucket_size;
|
58
|
+
|
59
|
+
char *name;
|
60
|
+
ngx_pool_t *pool;
|
61
|
+
ngx_pool_t *temp_pool;
|
62
|
+
} ngx_hash_init_t;
|
63
|
+
|
64
|
+
|
65
|
+
#define NGX_HASH_SMALL 1
|
66
|
+
#define NGX_HASH_LARGE 2
|
67
|
+
|
68
|
+
#define NGX_HASH_LARGE_ASIZE 16384
|
69
|
+
#define NGX_HASH_LARGE_HSIZE 10007
|
70
|
+
|
71
|
+
#define NGX_HASH_WILDCARD_KEY 1
|
72
|
+
#define NGX_HASH_READONLY_KEY 2
|
73
|
+
|
74
|
+
|
75
|
+
typedef struct {
|
76
|
+
ngx_uint_t hsize;
|
77
|
+
|
78
|
+
ngx_pool_t *pool;
|
79
|
+
ngx_pool_t *temp_pool;
|
80
|
+
|
81
|
+
ngx_array_t keys;
|
82
|
+
ngx_array_t *keys_hash;
|
83
|
+
|
84
|
+
ngx_array_t dns_wc_head;
|
85
|
+
ngx_array_t *dns_wc_head_hash;
|
86
|
+
|
87
|
+
ngx_array_t dns_wc_tail;
|
88
|
+
ngx_array_t *dns_wc_tail_hash;
|
89
|
+
} ngx_hash_keys_arrays_t;
|
90
|
+
|
91
|
+
|
92
|
+
typedef struct {
|
93
|
+
ngx_uint_t hash;
|
94
|
+
ngx_str_t key;
|
95
|
+
ngx_str_t value;
|
96
|
+
u_char *lowcase_key;
|
97
|
+
} ngx_table_elt_t;
|
98
|
+
|
99
|
+
|
100
|
+
void *ngx_hash_find(ngx_hash_t *hash, ngx_uint_t key, u_char *name, size_t len);
|
101
|
+
void *ngx_hash_find_wc_head(ngx_hash_wildcard_t *hwc, u_char *name, size_t len);
|
102
|
+
void *ngx_hash_find_wc_tail(ngx_hash_wildcard_t *hwc, u_char *name, size_t len);
|
103
|
+
void *ngx_hash_find_combined(ngx_hash_combined_t *hash, ngx_uint_t key,
|
104
|
+
u_char *name, size_t len);
|
105
|
+
|
106
|
+
ngx_int_t ngx_hash_init(ngx_hash_init_t *hinit, ngx_hash_key_t *names,
|
107
|
+
ngx_uint_t nelts);
|
108
|
+
ngx_int_t ngx_hash_wildcard_init(ngx_hash_init_t *hinit, ngx_hash_key_t *names,
|
109
|
+
ngx_uint_t nelts);
|
110
|
+
|
111
|
+
#define ngx_hash(key, c) ((ngx_uint_t) key * 31 + c)
|
112
|
+
ngx_uint_t ngx_hash_key(u_char *data, size_t len);
|
113
|
+
ngx_uint_t ngx_hash_key_lc(u_char *data, size_t len);
|
114
|
+
ngx_uint_t ngx_hash_strlow(u_char *dst, u_char *src, size_t n);
|
115
|
+
|
116
|
+
|
117
|
+
ngx_int_t ngx_hash_keys_array_init(ngx_hash_keys_arrays_t *ha, ngx_uint_t type);
|
118
|
+
ngx_int_t ngx_hash_add_key(ngx_hash_keys_arrays_t *ha, ngx_str_t *key,
|
119
|
+
void *value, ngx_uint_t flags);
|
120
|
+
|
121
|
+
|
122
|
+
#endif /* _NGX_HASH_H_INCLUDED_ */
|
@@ -0,0 +1,1008 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Copyright (C) Igor Sysoev
|
4
|
+
* Copyright (C) Nginx, Inc.
|
5
|
+
*/
|
6
|
+
|
7
|
+
|
8
|
+
#include <ngx_config.h>
|
9
|
+
#include <ngx_core.h>
|
10
|
+
|
11
|
+
|
12
|
+
static ngx_int_t ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u);
|
13
|
+
static ngx_int_t ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u);
|
14
|
+
static ngx_int_t ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u);
|
15
|
+
|
16
|
+
|
17
|
+
in_addr_t
|
18
|
+
ngx_inet_addr(u_char *text, size_t len)
|
19
|
+
{
|
20
|
+
u_char *p, c;
|
21
|
+
in_addr_t addr;
|
22
|
+
ngx_uint_t octet, n;
|
23
|
+
|
24
|
+
addr = 0;
|
25
|
+
octet = 0;
|
26
|
+
n = 0;
|
27
|
+
|
28
|
+
for (p = text; p < text + len; p++) {
|
29
|
+
|
30
|
+
c = *p;
|
31
|
+
|
32
|
+
if (c >= '0' && c <= '9') {
|
33
|
+
octet = octet * 10 + (c - '0');
|
34
|
+
continue;
|
35
|
+
}
|
36
|
+
|
37
|
+
if (c == '.' && octet < 256) {
|
38
|
+
addr = (addr << 8) + octet;
|
39
|
+
octet = 0;
|
40
|
+
n++;
|
41
|
+
continue;
|
42
|
+
}
|
43
|
+
|
44
|
+
return INADDR_NONE;
|
45
|
+
}
|
46
|
+
|
47
|
+
if (n != 3) {
|
48
|
+
return INADDR_NONE;
|
49
|
+
}
|
50
|
+
|
51
|
+
if (octet < 256) {
|
52
|
+
addr = (addr << 8) + octet;
|
53
|
+
return htonl(addr);
|
54
|
+
}
|
55
|
+
|
56
|
+
return INADDR_NONE;
|
57
|
+
}
|
58
|
+
|
59
|
+
|
60
|
+
#if (NGX_HAVE_INET6)
|
61
|
+
|
62
|
+
ngx_int_t
|
63
|
+
ngx_inet6_addr(u_char *p, size_t len, u_char *addr)
|
64
|
+
{
|
65
|
+
u_char c, *zero, *digit, *s, *d;
|
66
|
+
size_t len4;
|
67
|
+
ngx_uint_t n, nibbles, word;
|
68
|
+
|
69
|
+
if (len == 0) {
|
70
|
+
return NGX_ERROR;
|
71
|
+
}
|
72
|
+
|
73
|
+
zero = NULL;
|
74
|
+
digit = NULL;
|
75
|
+
len4 = 0;
|
76
|
+
nibbles = 0;
|
77
|
+
word = 0;
|
78
|
+
n = 8;
|
79
|
+
|
80
|
+
if (p[0] == ':') {
|
81
|
+
p++;
|
82
|
+
len--;
|
83
|
+
}
|
84
|
+
|
85
|
+
for (/* void */; len; len--) {
|
86
|
+
c = *p++;
|
87
|
+
|
88
|
+
if (c == ':') {
|
89
|
+
if (nibbles) {
|
90
|
+
digit = p;
|
91
|
+
len4 = len;
|
92
|
+
*addr++ = (u_char) (word >> 8);
|
93
|
+
*addr++ = (u_char) (word & 0xff);
|
94
|
+
|
95
|
+
if (--n) {
|
96
|
+
nibbles = 0;
|
97
|
+
word = 0;
|
98
|
+
continue;
|
99
|
+
}
|
100
|
+
|
101
|
+
} else {
|
102
|
+
if (zero == NULL) {
|
103
|
+
digit = p;
|
104
|
+
len4 = len;
|
105
|
+
zero = addr;
|
106
|
+
continue;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
return NGX_ERROR;
|
111
|
+
}
|
112
|
+
|
113
|
+
if (c == '.' && nibbles) {
|
114
|
+
if (n < 2 || digit == NULL) {
|
115
|
+
return NGX_ERROR;
|
116
|
+
}
|
117
|
+
|
118
|
+
word = ngx_inet_addr(digit, len4 - 1);
|
119
|
+
if (word == INADDR_NONE) {
|
120
|
+
return NGX_ERROR;
|
121
|
+
}
|
122
|
+
|
123
|
+
word = ntohl(word);
|
124
|
+
*addr++ = (u_char) ((word >> 24) & 0xff);
|
125
|
+
*addr++ = (u_char) ((word >> 16) & 0xff);
|
126
|
+
n--;
|
127
|
+
break;
|
128
|
+
}
|
129
|
+
|
130
|
+
if (++nibbles > 4) {
|
131
|
+
return NGX_ERROR;
|
132
|
+
}
|
133
|
+
|
134
|
+
if (c >= '0' && c <= '9') {
|
135
|
+
word = word * 16 + (c - '0');
|
136
|
+
continue;
|
137
|
+
}
|
138
|
+
|
139
|
+
c |= 0x20;
|
140
|
+
|
141
|
+
if (c >= 'a' && c <= 'f') {
|
142
|
+
word = word * 16 + (c - 'a') + 10;
|
143
|
+
continue;
|
144
|
+
}
|
145
|
+
|
146
|
+
return NGX_ERROR;
|
147
|
+
}
|
148
|
+
|
149
|
+
if (nibbles == 0 && zero == NULL) {
|
150
|
+
return NGX_ERROR;
|
151
|
+
}
|
152
|
+
|
153
|
+
*addr++ = (u_char) (word >> 8);
|
154
|
+
*addr++ = (u_char) (word & 0xff);
|
155
|
+
|
156
|
+
if (--n) {
|
157
|
+
if (zero) {
|
158
|
+
n *= 2;
|
159
|
+
s = addr - 1;
|
160
|
+
d = s + n;
|
161
|
+
while (s >= zero) {
|
162
|
+
*d-- = *s--;
|
163
|
+
}
|
164
|
+
ngx_memzero(zero, n);
|
165
|
+
return NGX_OK;
|
166
|
+
}
|
167
|
+
|
168
|
+
} else {
|
169
|
+
if (zero == NULL) {
|
170
|
+
return NGX_OK;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
return NGX_ERROR;
|
175
|
+
}
|
176
|
+
|
177
|
+
#endif
|
178
|
+
|
179
|
+
|
180
|
+
size_t
|
181
|
+
ngx_sock_ntop(struct sockaddr *sa, u_char *text, size_t len, ngx_uint_t port)
|
182
|
+
{
|
183
|
+
u_char *p;
|
184
|
+
struct sockaddr_in *sin;
|
185
|
+
#if (NGX_HAVE_INET6)
|
186
|
+
size_t n;
|
187
|
+
struct sockaddr_in6 *sin6;
|
188
|
+
#endif
|
189
|
+
#if (NGX_HAVE_UNIX_DOMAIN)
|
190
|
+
struct sockaddr_un *saun;
|
191
|
+
#endif
|
192
|
+
|
193
|
+
switch (sa->sa_family) {
|
194
|
+
|
195
|
+
case AF_INET:
|
196
|
+
|
197
|
+
sin = (struct sockaddr_in *) sa;
|
198
|
+
p = (u_char *) &sin->sin_addr;
|
199
|
+
|
200
|
+
if (port) {
|
201
|
+
p = ngx_snprintf(text, len, "%ud.%ud.%ud.%ud:%d",
|
202
|
+
p[0], p[1], p[2], p[3], ntohs(sin->sin_port));
|
203
|
+
} else {
|
204
|
+
p = ngx_snprintf(text, len, "%ud.%ud.%ud.%ud",
|
205
|
+
p[0], p[1], p[2], p[3]);
|
206
|
+
}
|
207
|
+
|
208
|
+
return (p - text);
|
209
|
+
|
210
|
+
#if (NGX_HAVE_INET6)
|
211
|
+
|
212
|
+
case AF_INET6:
|
213
|
+
|
214
|
+
sin6 = (struct sockaddr_in6 *) sa;
|
215
|
+
|
216
|
+
n = 0;
|
217
|
+
|
218
|
+
if (port) {
|
219
|
+
text[n++] = '[';
|
220
|
+
}
|
221
|
+
|
222
|
+
n = ngx_inet6_ntop(sin6->sin6_addr.s6_addr, &text[n], len);
|
223
|
+
|
224
|
+
if (port) {
|
225
|
+
n = ngx_sprintf(&text[1 + n], "]:%d",
|
226
|
+
ntohs(sin6->sin6_port)) - text;
|
227
|
+
}
|
228
|
+
|
229
|
+
return n;
|
230
|
+
#endif
|
231
|
+
|
232
|
+
#if (NGX_HAVE_UNIX_DOMAIN)
|
233
|
+
|
234
|
+
case AF_UNIX:
|
235
|
+
saun = (struct sockaddr_un *) sa;
|
236
|
+
|
237
|
+
/* we do not include trailing zero in address length */
|
238
|
+
|
239
|
+
return ngx_snprintf(text, len, "unix:%s%Z", saun->sun_path) - text - 1;
|
240
|
+
|
241
|
+
#endif
|
242
|
+
|
243
|
+
default:
|
244
|
+
return 0;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
|
249
|
+
size_t
|
250
|
+
ngx_inet_ntop(int family, void *addr, u_char *text, size_t len)
|
251
|
+
{
|
252
|
+
u_char *p;
|
253
|
+
|
254
|
+
switch (family) {
|
255
|
+
|
256
|
+
case AF_INET:
|
257
|
+
|
258
|
+
p = addr;
|
259
|
+
|
260
|
+
return ngx_snprintf(text, len, "%ud.%ud.%ud.%ud",
|
261
|
+
p[0], p[1], p[2], p[3])
|
262
|
+
- text;
|
263
|
+
|
264
|
+
#if (NGX_HAVE_INET6)
|
265
|
+
|
266
|
+
case AF_INET6:
|
267
|
+
return ngx_inet6_ntop(addr, text, len);
|
268
|
+
|
269
|
+
#endif
|
270
|
+
|
271
|
+
default:
|
272
|
+
return 0;
|
273
|
+
}
|
274
|
+
}
|
275
|
+
|
276
|
+
|
277
|
+
#if (NGX_HAVE_INET6)
|
278
|
+
|
279
|
+
size_t
|
280
|
+
ngx_inet6_ntop(u_char *p, u_char *text, size_t len)
|
281
|
+
{
|
282
|
+
u_char *dst;
|
283
|
+
size_t max, n;
|
284
|
+
ngx_uint_t i, zero, last;
|
285
|
+
|
286
|
+
if (len < NGX_INET6_ADDRSTRLEN) {
|
287
|
+
return 0;
|
288
|
+
}
|
289
|
+
|
290
|
+
zero = (ngx_uint_t) -1;
|
291
|
+
last = (ngx_uint_t) -1;
|
292
|
+
max = 1;
|
293
|
+
n = 0;
|
294
|
+
|
295
|
+
for (i = 0; i < 16; i += 2) {
|
296
|
+
|
297
|
+
if (p[i] || p[i + 1]) {
|
298
|
+
|
299
|
+
if (max < n) {
|
300
|
+
zero = last;
|
301
|
+
max = n;
|
302
|
+
}
|
303
|
+
|
304
|
+
n = 0;
|
305
|
+
continue;
|
306
|
+
}
|
307
|
+
|
308
|
+
if (n++ == 0) {
|
309
|
+
last = i;
|
310
|
+
}
|
311
|
+
}
|
312
|
+
|
313
|
+
if (max < n) {
|
314
|
+
zero = last;
|
315
|
+
max = n;
|
316
|
+
}
|
317
|
+
|
318
|
+
dst = text;
|
319
|
+
n = 16;
|
320
|
+
|
321
|
+
if (zero == 0) {
|
322
|
+
|
323
|
+
if ((max == 5 && p[10] == 0xff && p[11] == 0xff)
|
324
|
+
|| (max == 6)
|
325
|
+
|| (max == 7 && p[14] != 0 && p[15] != 1))
|
326
|
+
{
|
327
|
+
n = 12;
|
328
|
+
}
|
329
|
+
|
330
|
+
*dst++ = ':';
|
331
|
+
}
|
332
|
+
|
333
|
+
for (i = 0; i < n; i += 2) {
|
334
|
+
|
335
|
+
if (i == zero) {
|
336
|
+
*dst++ = ':';
|
337
|
+
i += (max - 1) * 2;
|
338
|
+
continue;
|
339
|
+
}
|
340
|
+
|
341
|
+
dst = ngx_sprintf(dst, "%uxi", p[i] * 256 + p[i + 1]);
|
342
|
+
|
343
|
+
if (i < 14) {
|
344
|
+
*dst++ = ':';
|
345
|
+
}
|
346
|
+
}
|
347
|
+
|
348
|
+
if (n == 12) {
|
349
|
+
dst = ngx_sprintf(dst, "%ud.%ud.%ud.%ud", p[12], p[13], p[14], p[15]);
|
350
|
+
}
|
351
|
+
|
352
|
+
return dst - text;
|
353
|
+
}
|
354
|
+
|
355
|
+
#endif
|
356
|
+
|
357
|
+
|
358
|
+
ngx_int_t
|
359
|
+
ngx_ptocidr(ngx_str_t *text, ngx_cidr_t *cidr)
|
360
|
+
{
|
361
|
+
u_char *addr, *mask, *last;
|
362
|
+
size_t len;
|
363
|
+
ngx_int_t shift;
|
364
|
+
#if (NGX_HAVE_INET6)
|
365
|
+
ngx_int_t rc;
|
366
|
+
ngx_uint_t s, i;
|
367
|
+
#endif
|
368
|
+
|
369
|
+
addr = text->data;
|
370
|
+
last = addr + text->len;
|
371
|
+
|
372
|
+
mask = ngx_strlchr(addr, last, '/');
|
373
|
+
len = (mask ? mask : last) - addr;
|
374
|
+
|
375
|
+
cidr->u.in.addr = ngx_inet_addr(addr, len);
|
376
|
+
|
377
|
+
if (cidr->u.in.addr != INADDR_NONE) {
|
378
|
+
cidr->family = AF_INET;
|
379
|
+
|
380
|
+
if (mask == NULL) {
|
381
|
+
cidr->u.in.mask = 0xffffffff;
|
382
|
+
return NGX_OK;
|
383
|
+
}
|
384
|
+
|
385
|
+
#if (NGX_HAVE_INET6)
|
386
|
+
} else if (ngx_inet6_addr(addr, len, cidr->u.in6.addr.s6_addr) == NGX_OK) {
|
387
|
+
cidr->family = AF_INET6;
|
388
|
+
|
389
|
+
if (mask == NULL) {
|
390
|
+
ngx_memset(cidr->u.in6.mask.s6_addr, 0xff, 16);
|
391
|
+
return NGX_OK;
|
392
|
+
}
|
393
|
+
|
394
|
+
#endif
|
395
|
+
} else {
|
396
|
+
return NGX_ERROR;
|
397
|
+
}
|
398
|
+
|
399
|
+
mask++;
|
400
|
+
|
401
|
+
shift = ngx_atoi(mask, last - mask);
|
402
|
+
if (shift == NGX_ERROR) {
|
403
|
+
return NGX_ERROR;
|
404
|
+
}
|
405
|
+
|
406
|
+
switch (cidr->family) {
|
407
|
+
|
408
|
+
#if (NGX_HAVE_INET6)
|
409
|
+
case AF_INET6:
|
410
|
+
addr = cidr->u.in6.addr.s6_addr;
|
411
|
+
mask = cidr->u.in6.mask.s6_addr;
|
412
|
+
rc = NGX_OK;
|
413
|
+
|
414
|
+
for (i = 0; i < 16; i++) {
|
415
|
+
|
416
|
+
s = (shift > 8) ? 8 : shift;
|
417
|
+
shift -= s;
|
418
|
+
|
419
|
+
mask[i] = (u_char) (0 - (1 << (8 - s)));
|
420
|
+
|
421
|
+
if (addr[i] != (addr[i] & mask[i])) {
|
422
|
+
rc = NGX_DONE;
|
423
|
+
addr[i] &= mask[i];
|
424
|
+
}
|
425
|
+
}
|
426
|
+
|
427
|
+
return rc;
|
428
|
+
#endif
|
429
|
+
|
430
|
+
default: /* AF_INET */
|
431
|
+
|
432
|
+
if (shift) {
|
433
|
+
cidr->u.in.mask = htonl((ngx_uint_t) (0 - (1 << (32 - shift))));
|
434
|
+
|
435
|
+
} else {
|
436
|
+
/* x86 compilers use a shl instruction that shifts by modulo 32 */
|
437
|
+
cidr->u.in.mask = 0;
|
438
|
+
}
|
439
|
+
|
440
|
+
if (cidr->u.in.addr == (cidr->u.in.addr & cidr->u.in.mask)) {
|
441
|
+
return NGX_OK;
|
442
|
+
}
|
443
|
+
|
444
|
+
cidr->u.in.addr &= cidr->u.in.mask;
|
445
|
+
|
446
|
+
return NGX_DONE;
|
447
|
+
}
|
448
|
+
}
|
449
|
+
|
450
|
+
|
451
|
+
ngx_int_t
|
452
|
+
ngx_parse_addr(ngx_pool_t *pool, ngx_addr_t *addr, u_char *text, size_t len)
|
453
|
+
{
|
454
|
+
in_addr_t inaddr;
|
455
|
+
ngx_uint_t family;
|
456
|
+
struct sockaddr_in *sin;
|
457
|
+
#if (NGX_HAVE_INET6)
|
458
|
+
struct in6_addr inaddr6;
|
459
|
+
struct sockaddr_in6 *sin6;
|
460
|
+
|
461
|
+
/*
|
462
|
+
* prevent MSVC8 waring:
|
463
|
+
* potentially uninitialized local variable 'inaddr6' used
|
464
|
+
*/
|
465
|
+
ngx_memzero(inaddr6.s6_addr, sizeof(struct in6_addr));
|
466
|
+
#endif
|
467
|
+
|
468
|
+
inaddr = ngx_inet_addr(text, len);
|
469
|
+
|
470
|
+
if (inaddr != INADDR_NONE) {
|
471
|
+
family = AF_INET;
|
472
|
+
len = sizeof(struct sockaddr_in);
|
473
|
+
|
474
|
+
#if (NGX_HAVE_INET6)
|
475
|
+
} else if (ngx_inet6_addr(text, len, inaddr6.s6_addr) == NGX_OK) {
|
476
|
+
family = AF_INET6;
|
477
|
+
len = sizeof(struct sockaddr_in6);
|
478
|
+
|
479
|
+
#endif
|
480
|
+
} else {
|
481
|
+
return NGX_DECLINED;
|
482
|
+
}
|
483
|
+
|
484
|
+
addr->sockaddr = ngx_pcalloc(pool, len);
|
485
|
+
if (addr->sockaddr == NULL) {
|
486
|
+
return NGX_ERROR;
|
487
|
+
}
|
488
|
+
|
489
|
+
addr->sockaddr->sa_family = (u_char) family;
|
490
|
+
addr->socklen = len;
|
491
|
+
|
492
|
+
switch (family) {
|
493
|
+
|
494
|
+
#if (NGX_HAVE_INET6)
|
495
|
+
case AF_INET6:
|
496
|
+
sin6 = (struct sockaddr_in6 *) addr->sockaddr;
|
497
|
+
ngx_memcpy(sin6->sin6_addr.s6_addr, inaddr6.s6_addr, 16);
|
498
|
+
break;
|
499
|
+
#endif
|
500
|
+
|
501
|
+
default: /* AF_INET */
|
502
|
+
sin = (struct sockaddr_in *) addr->sockaddr;
|
503
|
+
sin->sin_addr.s_addr = inaddr;
|
504
|
+
break;
|
505
|
+
}
|
506
|
+
|
507
|
+
return NGX_OK;
|
508
|
+
}
|
509
|
+
|
510
|
+
|
511
|
+
ngx_int_t
|
512
|
+
ngx_parse_url(ngx_pool_t *pool, ngx_url_t *u)
|
513
|
+
{
|
514
|
+
u_char *p;
|
515
|
+
|
516
|
+
p = u->url.data;
|
517
|
+
|
518
|
+
if (ngx_strncasecmp(p, (u_char *) "unix:", 5) == 0) {
|
519
|
+
return ngx_parse_unix_domain_url(pool, u);
|
520
|
+
}
|
521
|
+
|
522
|
+
if ((p[0] == ':' || p[0] == '/') && !u->listen) {
|
523
|
+
u->err = "invalid host";
|
524
|
+
return NGX_ERROR;
|
525
|
+
}
|
526
|
+
|
527
|
+
if (p[0] == '[') {
|
528
|
+
return ngx_parse_inet6_url(pool, u);
|
529
|
+
}
|
530
|
+
|
531
|
+
return ngx_parse_inet_url(pool, u);
|
532
|
+
}
|
533
|
+
|
534
|
+
|
535
|
+
static ngx_int_t
|
536
|
+
ngx_parse_unix_domain_url(ngx_pool_t *pool, ngx_url_t *u)
|
537
|
+
{
|
538
|
+
#if (NGX_HAVE_UNIX_DOMAIN)
|
539
|
+
u_char *path, *uri, *last;
|
540
|
+
size_t len;
|
541
|
+
struct sockaddr_un *saun;
|
542
|
+
|
543
|
+
len = u->url.len;
|
544
|
+
path = u->url.data;
|
545
|
+
|
546
|
+
path += 5;
|
547
|
+
len -= 5;
|
548
|
+
|
549
|
+
if (u->uri_part) {
|
550
|
+
|
551
|
+
last = path + len;
|
552
|
+
uri = ngx_strlchr(path, last, ':');
|
553
|
+
|
554
|
+
if (uri) {
|
555
|
+
len = uri - path;
|
556
|
+
uri++;
|
557
|
+
u->uri.len = last - uri;
|
558
|
+
u->uri.data = uri;
|
559
|
+
}
|
560
|
+
}
|
561
|
+
|
562
|
+
if (len == 0) {
|
563
|
+
u->err = "no path in the unix domain socket";
|
564
|
+
return NGX_ERROR;
|
565
|
+
}
|
566
|
+
|
567
|
+
u->host.len = len++;
|
568
|
+
u->host.data = path;
|
569
|
+
|
570
|
+
if (len > sizeof(saun->sun_path)) {
|
571
|
+
u->err = "too long path in the unix domain socket";
|
572
|
+
return NGX_ERROR;
|
573
|
+
}
|
574
|
+
|
575
|
+
u->socklen = sizeof(struct sockaddr_un);
|
576
|
+
saun = (struct sockaddr_un *) &u->sockaddr;
|
577
|
+
saun->sun_family = AF_UNIX;
|
578
|
+
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
|
579
|
+
|
580
|
+
u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
|
581
|
+
if (u->addrs == NULL) {
|
582
|
+
return NGX_ERROR;
|
583
|
+
}
|
584
|
+
|
585
|
+
saun = ngx_pcalloc(pool, sizeof(struct sockaddr_un));
|
586
|
+
if (saun == NULL) {
|
587
|
+
return NGX_ERROR;
|
588
|
+
}
|
589
|
+
|
590
|
+
u->family = AF_UNIX;
|
591
|
+
u->naddrs = 1;
|
592
|
+
|
593
|
+
saun->sun_family = AF_UNIX;
|
594
|
+
(void) ngx_cpystrn((u_char *) saun->sun_path, path, len);
|
595
|
+
|
596
|
+
u->addrs[0].sockaddr = (struct sockaddr *) saun;
|
597
|
+
u->addrs[0].socklen = sizeof(struct sockaddr_un);
|
598
|
+
u->addrs[0].name.len = len + 4;
|
599
|
+
u->addrs[0].name.data = u->url.data;
|
600
|
+
|
601
|
+
return NGX_OK;
|
602
|
+
|
603
|
+
#else
|
604
|
+
|
605
|
+
u->err = "the unix domain sockets are not supported on this platform";
|
606
|
+
|
607
|
+
return NGX_ERROR;
|
608
|
+
|
609
|
+
#endif
|
610
|
+
}
|
611
|
+
|
612
|
+
|
613
|
+
static ngx_int_t
|
614
|
+
ngx_parse_inet_url(ngx_pool_t *pool, ngx_url_t *u)
|
615
|
+
{
|
616
|
+
u_char *p, *host, *port, *last, *uri, *args;
|
617
|
+
size_t len;
|
618
|
+
ngx_int_t n;
|
619
|
+
struct hostent *h;
|
620
|
+
struct sockaddr_in *sin;
|
621
|
+
|
622
|
+
u->socklen = sizeof(struct sockaddr_in);
|
623
|
+
sin = (struct sockaddr_in *) &u->sockaddr;
|
624
|
+
sin->sin_family = AF_INET;
|
625
|
+
|
626
|
+
u->family = AF_INET;
|
627
|
+
|
628
|
+
host = u->url.data;
|
629
|
+
|
630
|
+
last = host + u->url.len;
|
631
|
+
|
632
|
+
port = ngx_strlchr(host, last, ':');
|
633
|
+
|
634
|
+
uri = ngx_strlchr(host, last, '/');
|
635
|
+
|
636
|
+
args = ngx_strlchr(host, last, '?');
|
637
|
+
|
638
|
+
if (args) {
|
639
|
+
if (uri == NULL) {
|
640
|
+
uri = args;
|
641
|
+
|
642
|
+
} else if (args < uri) {
|
643
|
+
uri = args;
|
644
|
+
}
|
645
|
+
}
|
646
|
+
|
647
|
+
if (uri) {
|
648
|
+
if (u->listen || !u->uri_part) {
|
649
|
+
u->err = "invalid host";
|
650
|
+
return NGX_ERROR;
|
651
|
+
}
|
652
|
+
|
653
|
+
u->uri.len = last - uri;
|
654
|
+
u->uri.data = uri;
|
655
|
+
|
656
|
+
last = uri;
|
657
|
+
|
658
|
+
if (uri < port) {
|
659
|
+
port = NULL;
|
660
|
+
}
|
661
|
+
}
|
662
|
+
|
663
|
+
if (port) {
|
664
|
+
port++;
|
665
|
+
|
666
|
+
len = last - port;
|
667
|
+
|
668
|
+
if (len == 0) {
|
669
|
+
u->err = "invalid port";
|
670
|
+
return NGX_ERROR;
|
671
|
+
}
|
672
|
+
|
673
|
+
n = ngx_atoi(port, len);
|
674
|
+
|
675
|
+
if (n < 1 || n > 65535) {
|
676
|
+
u->err = "invalid port";
|
677
|
+
return NGX_ERROR;
|
678
|
+
}
|
679
|
+
|
680
|
+
u->port = (in_port_t) n;
|
681
|
+
sin->sin_port = htons((in_port_t) n);
|
682
|
+
|
683
|
+
u->port_text.len = len;
|
684
|
+
u->port_text.data = port;
|
685
|
+
|
686
|
+
last = port - 1;
|
687
|
+
|
688
|
+
} else {
|
689
|
+
if (uri == NULL) {
|
690
|
+
|
691
|
+
if (u->listen) {
|
692
|
+
|
693
|
+
/* test value as port only */
|
694
|
+
|
695
|
+
n = ngx_atoi(host, last - host);
|
696
|
+
|
697
|
+
if (n != NGX_ERROR) {
|
698
|
+
|
699
|
+
if (n < 1 || n > 65535) {
|
700
|
+
u->err = "invalid port";
|
701
|
+
return NGX_ERROR;
|
702
|
+
}
|
703
|
+
|
704
|
+
u->port = (in_port_t) n;
|
705
|
+
sin->sin_port = htons((in_port_t) n);
|
706
|
+
|
707
|
+
u->port_text.len = last - host;
|
708
|
+
u->port_text.data = host;
|
709
|
+
|
710
|
+
u->wildcard = 1;
|
711
|
+
|
712
|
+
return NGX_OK;
|
713
|
+
}
|
714
|
+
}
|
715
|
+
}
|
716
|
+
|
717
|
+
u->no_port = 1;
|
718
|
+
}
|
719
|
+
|
720
|
+
len = last - host;
|
721
|
+
|
722
|
+
if (len == 0) {
|
723
|
+
u->err = "no host";
|
724
|
+
return NGX_ERROR;
|
725
|
+
}
|
726
|
+
|
727
|
+
if (len == 1 && *host == '*') {
|
728
|
+
len = 0;
|
729
|
+
}
|
730
|
+
|
731
|
+
u->host.len = len;
|
732
|
+
u->host.data = host;
|
733
|
+
|
734
|
+
if (u->no_resolve) {
|
735
|
+
return NGX_OK;
|
736
|
+
}
|
737
|
+
|
738
|
+
if (len) {
|
739
|
+
sin->sin_addr.s_addr = ngx_inet_addr(host, len);
|
740
|
+
|
741
|
+
if (sin->sin_addr.s_addr == INADDR_NONE) {
|
742
|
+
p = ngx_alloc(++len, pool->log);
|
743
|
+
if (p == NULL) {
|
744
|
+
return NGX_ERROR;
|
745
|
+
}
|
746
|
+
|
747
|
+
(void) ngx_cpystrn(p, host, len);
|
748
|
+
|
749
|
+
h = gethostbyname((const char *) p);
|
750
|
+
|
751
|
+
ngx_free(p);
|
752
|
+
|
753
|
+
if (h == NULL || h->h_addr_list[0] == NULL) {
|
754
|
+
u->err = "host not found";
|
755
|
+
return NGX_ERROR;
|
756
|
+
}
|
757
|
+
|
758
|
+
sin->sin_addr.s_addr = *(in_addr_t *) (h->h_addr_list[0]);
|
759
|
+
}
|
760
|
+
|
761
|
+
if (sin->sin_addr.s_addr == INADDR_ANY) {
|
762
|
+
u->wildcard = 1;
|
763
|
+
}
|
764
|
+
|
765
|
+
} else {
|
766
|
+
sin->sin_addr.s_addr = INADDR_ANY;
|
767
|
+
u->wildcard = 1;
|
768
|
+
}
|
769
|
+
|
770
|
+
if (u->no_port) {
|
771
|
+
u->port = u->default_port;
|
772
|
+
sin->sin_port = htons(u->default_port);
|
773
|
+
}
|
774
|
+
|
775
|
+
if (u->listen) {
|
776
|
+
return NGX_OK;
|
777
|
+
}
|
778
|
+
|
779
|
+
if (ngx_inet_resolve_host(pool, u) != NGX_OK) {
|
780
|
+
return NGX_ERROR;
|
781
|
+
}
|
782
|
+
|
783
|
+
return NGX_OK;
|
784
|
+
}
|
785
|
+
|
786
|
+
|
787
|
+
static ngx_int_t
|
788
|
+
ngx_parse_inet6_url(ngx_pool_t *pool, ngx_url_t *u)
|
789
|
+
{
|
790
|
+
#if (NGX_HAVE_INET6)
|
791
|
+
u_char *p, *host, *port, *last, *uri;
|
792
|
+
size_t len;
|
793
|
+
ngx_int_t n;
|
794
|
+
struct sockaddr_in6 *sin6;
|
795
|
+
|
796
|
+
u->socklen = sizeof(struct sockaddr_in6);
|
797
|
+
sin6 = (struct sockaddr_in6 *) &u->sockaddr;
|
798
|
+
sin6->sin6_family = AF_INET6;
|
799
|
+
|
800
|
+
host = u->url.data + 1;
|
801
|
+
|
802
|
+
last = u->url.data + u->url.len;
|
803
|
+
|
804
|
+
p = ngx_strlchr(host, last, ']');
|
805
|
+
|
806
|
+
if (p == NULL) {
|
807
|
+
u->err = "invalid host";
|
808
|
+
return NGX_ERROR;
|
809
|
+
}
|
810
|
+
|
811
|
+
if (last - p) {
|
812
|
+
|
813
|
+
port = p + 1;
|
814
|
+
|
815
|
+
uri = ngx_strlchr(port, last, '/');
|
816
|
+
|
817
|
+
if (uri) {
|
818
|
+
if (u->listen || !u->uri_part) {
|
819
|
+
u->err = "invalid host";
|
820
|
+
return NGX_ERROR;
|
821
|
+
}
|
822
|
+
|
823
|
+
u->uri.len = last - uri;
|
824
|
+
u->uri.data = uri;
|
825
|
+
}
|
826
|
+
|
827
|
+
if (*port == ':') {
|
828
|
+
port++;
|
829
|
+
|
830
|
+
len = last - port;
|
831
|
+
|
832
|
+
if (len == 0) {
|
833
|
+
u->err = "invalid port";
|
834
|
+
return NGX_ERROR;
|
835
|
+
}
|
836
|
+
|
837
|
+
n = ngx_atoi(port, len);
|
838
|
+
|
839
|
+
if (n < 1 || n > 65535) {
|
840
|
+
u->err = "invalid port";
|
841
|
+
return NGX_ERROR;
|
842
|
+
}
|
843
|
+
|
844
|
+
u->port = (in_port_t) n;
|
845
|
+
sin6->sin6_port = htons((in_port_t) n);
|
846
|
+
|
847
|
+
u->port_text.len = len;
|
848
|
+
u->port_text.data = port;
|
849
|
+
|
850
|
+
} else {
|
851
|
+
u->no_port = 1;
|
852
|
+
}
|
853
|
+
}
|
854
|
+
|
855
|
+
len = p - host;
|
856
|
+
|
857
|
+
if (len == 0) {
|
858
|
+
u->err = "no host";
|
859
|
+
return NGX_ERROR;
|
860
|
+
}
|
861
|
+
|
862
|
+
u->host.len = len;
|
863
|
+
u->host.data = host;
|
864
|
+
|
865
|
+
if (ngx_inet6_addr(host, len, sin6->sin6_addr.s6_addr) != NGX_OK) {
|
866
|
+
u->err = "invalid IPv6 address";
|
867
|
+
return NGX_ERROR;
|
868
|
+
}
|
869
|
+
|
870
|
+
if (IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr)) {
|
871
|
+
u->wildcard = 1;
|
872
|
+
}
|
873
|
+
|
874
|
+
u->family = AF_INET6;
|
875
|
+
|
876
|
+
if (u->no_resolve) {
|
877
|
+
return NGX_OK;
|
878
|
+
}
|
879
|
+
|
880
|
+
if (u->no_port) {
|
881
|
+
u->port = u->default_port;
|
882
|
+
sin6->sin6_port = htons(u->default_port);
|
883
|
+
}
|
884
|
+
|
885
|
+
return NGX_OK;
|
886
|
+
|
887
|
+
#else
|
888
|
+
|
889
|
+
u->err = "the INET6 sockets are not supported on this platform";
|
890
|
+
|
891
|
+
return NGX_ERROR;
|
892
|
+
|
893
|
+
#endif
|
894
|
+
}
|
895
|
+
|
896
|
+
|
897
|
+
ngx_int_t
|
898
|
+
ngx_inet_resolve_host(ngx_pool_t *pool, ngx_url_t *u)
|
899
|
+
{
|
900
|
+
u_char *p, *host;
|
901
|
+
size_t len;
|
902
|
+
in_port_t port;
|
903
|
+
in_addr_t in_addr;
|
904
|
+
ngx_uint_t i;
|
905
|
+
struct hostent *h;
|
906
|
+
struct sockaddr_in *sin;
|
907
|
+
|
908
|
+
/* AF_INET only */
|
909
|
+
|
910
|
+
port = htons(u->port);
|
911
|
+
|
912
|
+
in_addr = ngx_inet_addr(u->host.data, u->host.len);
|
913
|
+
|
914
|
+
if (in_addr == INADDR_NONE) {
|
915
|
+
host = ngx_alloc(u->host.len + 1, pool->log);
|
916
|
+
if (host == NULL) {
|
917
|
+
return NGX_ERROR;
|
918
|
+
}
|
919
|
+
|
920
|
+
(void) ngx_cpystrn(host, u->host.data, u->host.len + 1);
|
921
|
+
|
922
|
+
h = gethostbyname((char *) host);
|
923
|
+
|
924
|
+
ngx_free(host);
|
925
|
+
|
926
|
+
if (h == NULL || h->h_addr_list[0] == NULL) {
|
927
|
+
u->err = "host not found";
|
928
|
+
return NGX_ERROR;
|
929
|
+
}
|
930
|
+
|
931
|
+
if (u->one_addr == 0) {
|
932
|
+
for (i = 0; h->h_addr_list[i] != NULL; i++) { /* void */ }
|
933
|
+
|
934
|
+
} else {
|
935
|
+
i = 1;
|
936
|
+
}
|
937
|
+
|
938
|
+
/* MP: ngx_shared_palloc() */
|
939
|
+
|
940
|
+
u->addrs = ngx_pcalloc(pool, i * sizeof(ngx_addr_t));
|
941
|
+
if (u->addrs == NULL) {
|
942
|
+
return NGX_ERROR;
|
943
|
+
}
|
944
|
+
|
945
|
+
u->naddrs = i;
|
946
|
+
|
947
|
+
for (i = 0; i < u->naddrs; i++) {
|
948
|
+
|
949
|
+
sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
|
950
|
+
if (sin == NULL) {
|
951
|
+
return NGX_ERROR;
|
952
|
+
}
|
953
|
+
|
954
|
+
sin->sin_family = AF_INET;
|
955
|
+
sin->sin_port = port;
|
956
|
+
sin->sin_addr.s_addr = *(in_addr_t *) (h->h_addr_list[i]);
|
957
|
+
|
958
|
+
u->addrs[i].sockaddr = (struct sockaddr *) sin;
|
959
|
+
u->addrs[i].socklen = sizeof(struct sockaddr_in);
|
960
|
+
|
961
|
+
len = NGX_INET_ADDRSTRLEN + sizeof(":65535") - 1;
|
962
|
+
|
963
|
+
p = ngx_pnalloc(pool, len);
|
964
|
+
if (p == NULL) {
|
965
|
+
return NGX_ERROR;
|
966
|
+
}
|
967
|
+
|
968
|
+
len = ngx_sock_ntop((struct sockaddr *) sin, p, len, 1);
|
969
|
+
|
970
|
+
u->addrs[i].name.len = len;
|
971
|
+
u->addrs[i].name.data = p;
|
972
|
+
}
|
973
|
+
|
974
|
+
} else {
|
975
|
+
|
976
|
+
/* MP: ngx_shared_palloc() */
|
977
|
+
|
978
|
+
u->addrs = ngx_pcalloc(pool, sizeof(ngx_addr_t));
|
979
|
+
if (u->addrs == NULL) {
|
980
|
+
return NGX_ERROR;
|
981
|
+
}
|
982
|
+
|
983
|
+
sin = ngx_pcalloc(pool, sizeof(struct sockaddr_in));
|
984
|
+
if (sin == NULL) {
|
985
|
+
return NGX_ERROR;
|
986
|
+
}
|
987
|
+
|
988
|
+
u->naddrs = 1;
|
989
|
+
|
990
|
+
sin->sin_family = AF_INET;
|
991
|
+
sin->sin_port = port;
|
992
|
+
sin->sin_addr.s_addr = in_addr;
|
993
|
+
|
994
|
+
u->addrs[0].sockaddr = (struct sockaddr *) sin;
|
995
|
+
u->addrs[0].socklen = sizeof(struct sockaddr_in);
|
996
|
+
|
997
|
+
p = ngx_pnalloc(pool, u->host.len + sizeof(":65535") - 1);
|
998
|
+
if (p == NULL) {
|
999
|
+
return NGX_ERROR;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
u->addrs[0].name.len = ngx_sprintf(p, "%V:%d",
|
1003
|
+
&u->host, ntohs(port)) - p;
|
1004
|
+
u->addrs[0].name.data = p;
|
1005
|
+
}
|
1006
|
+
|
1007
|
+
return NGX_OK;
|
1008
|
+
}
|