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,38 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Copyright (C) Igor Sysoev
|
4
|
+
* Copyright (C) Nginx, Inc.
|
5
|
+
*/
|
6
|
+
|
7
|
+
|
8
|
+
#ifndef _NGX_SHMTX_H_INCLUDED_
|
9
|
+
#define _NGX_SHMTX_H_INCLUDED_
|
10
|
+
|
11
|
+
|
12
|
+
#include <ngx_config.h>
|
13
|
+
#include <ngx_core.h>
|
14
|
+
|
15
|
+
|
16
|
+
typedef struct {
|
17
|
+
#if (NGX_HAVE_ATOMIC_OPS)
|
18
|
+
ngx_atomic_t *lock;
|
19
|
+
#if (NGX_HAVE_POSIX_SEM)
|
20
|
+
ngx_uint_t semaphore;
|
21
|
+
sem_t sem;
|
22
|
+
#endif
|
23
|
+
#else
|
24
|
+
ngx_fd_t fd;
|
25
|
+
u_char *name;
|
26
|
+
#endif
|
27
|
+
ngx_uint_t spin;
|
28
|
+
} ngx_shmtx_t;
|
29
|
+
|
30
|
+
|
31
|
+
ngx_int_t ngx_shmtx_create(ngx_shmtx_t *mtx, void *addr, u_char *name);
|
32
|
+
void ngx_shmtx_destory(ngx_shmtx_t *mtx);
|
33
|
+
ngx_uint_t ngx_shmtx_trylock(ngx_shmtx_t *mtx);
|
34
|
+
void ngx_shmtx_lock(ngx_shmtx_t *mtx);
|
35
|
+
void ngx_shmtx_unlock(ngx_shmtx_t *mtx);
|
36
|
+
|
37
|
+
|
38
|
+
#endif /* _NGX_SHMTX_H_INCLUDED_ */
|
@@ -0,0 +1,701 @@
|
|
1
|
+
|
2
|
+
/*
|
3
|
+
* Copyright (C) Igor Sysoev
|
4
|
+
* Copyright (C) Nginx, Inc.
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include <ngx_config.h>
|
8
|
+
#include <ngx_core.h>
|
9
|
+
|
10
|
+
|
11
|
+
#define NGX_SLAB_PAGE_MASK 3
|
12
|
+
#define NGX_SLAB_PAGE 0
|
13
|
+
#define NGX_SLAB_BIG 1
|
14
|
+
#define NGX_SLAB_EXACT 2
|
15
|
+
#define NGX_SLAB_SMALL 3
|
16
|
+
|
17
|
+
#if (NGX_PTR_SIZE == 4)
|
18
|
+
|
19
|
+
#define NGX_SLAB_PAGE_FREE 0
|
20
|
+
#define NGX_SLAB_PAGE_BUSY 0xffffffff
|
21
|
+
#define NGX_SLAB_PAGE_START 0x80000000
|
22
|
+
|
23
|
+
#define NGX_SLAB_SHIFT_MASK 0x0000000f
|
24
|
+
#define NGX_SLAB_MAP_MASK 0xffff0000
|
25
|
+
#define NGX_SLAB_MAP_SHIFT 16
|
26
|
+
|
27
|
+
#define NGX_SLAB_BUSY 0xffffffff
|
28
|
+
|
29
|
+
#else /* (NGX_PTR_SIZE == 8) */
|
30
|
+
|
31
|
+
#define NGX_SLAB_PAGE_FREE 0
|
32
|
+
#define NGX_SLAB_PAGE_BUSY 0xffffffffffffffff
|
33
|
+
#define NGX_SLAB_PAGE_START 0x8000000000000000
|
34
|
+
|
35
|
+
#define NGX_SLAB_SHIFT_MASK 0x000000000000000f
|
36
|
+
#define NGX_SLAB_MAP_MASK 0xffffffff00000000
|
37
|
+
#define NGX_SLAB_MAP_SHIFT 32
|
38
|
+
|
39
|
+
#define NGX_SLAB_BUSY 0xffffffffffffffff
|
40
|
+
|
41
|
+
#endif
|
42
|
+
|
43
|
+
|
44
|
+
#if (NGX_DEBUG_MALLOC)
|
45
|
+
|
46
|
+
#define ngx_slab_junk(p, size) ngx_memset(p, 0xD0, size)
|
47
|
+
|
48
|
+
#else
|
49
|
+
|
50
|
+
#if (NGX_FREEBSD)
|
51
|
+
|
52
|
+
#define ngx_slab_junk(p, size) \
|
53
|
+
if (ngx_freebsd_debug_malloc) ngx_memset(p, 0xD0, size)
|
54
|
+
|
55
|
+
#else
|
56
|
+
|
57
|
+
#define ngx_slab_junk(p, size)
|
58
|
+
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#endif
|
62
|
+
|
63
|
+
static ngx_slab_page_t *ngx_slab_alloc_pages(ngx_slab_pool_t *pool,
|
64
|
+
ngx_uint_t pages);
|
65
|
+
static void ngx_slab_free_pages(ngx_slab_pool_t *pool, ngx_slab_page_t *page,
|
66
|
+
ngx_uint_t pages);
|
67
|
+
static void ngx_slab_error(ngx_slab_pool_t *pool, ngx_uint_t level,
|
68
|
+
char *text);
|
69
|
+
|
70
|
+
|
71
|
+
static ngx_uint_t ngx_slab_max_size;
|
72
|
+
static ngx_uint_t ngx_slab_exact_size;
|
73
|
+
static ngx_uint_t ngx_slab_exact_shift;
|
74
|
+
|
75
|
+
|
76
|
+
void
|
77
|
+
ngx_slab_init(ngx_slab_pool_t *pool)
|
78
|
+
{
|
79
|
+
u_char *p;
|
80
|
+
size_t size;
|
81
|
+
ngx_int_t m;
|
82
|
+
ngx_uint_t i, n, pages;
|
83
|
+
ngx_slab_page_t *slots;
|
84
|
+
|
85
|
+
/* STUB */
|
86
|
+
if (ngx_slab_max_size == 0) {
|
87
|
+
ngx_slab_max_size = ngx_pagesize / 2;
|
88
|
+
ngx_slab_exact_size = ngx_pagesize / (8 * sizeof(uintptr_t));
|
89
|
+
for (n = ngx_slab_exact_size; n >>= 1; ngx_slab_exact_shift++) {
|
90
|
+
/* void */
|
91
|
+
}
|
92
|
+
}
|
93
|
+
/**/
|
94
|
+
|
95
|
+
pool->min_size = 1 << pool->min_shift;
|
96
|
+
|
97
|
+
p = (u_char *) pool + sizeof(ngx_slab_pool_t);
|
98
|
+
size = pool->end - p;
|
99
|
+
|
100
|
+
ngx_slab_junk(p, size);
|
101
|
+
|
102
|
+
slots = (ngx_slab_page_t *) p;
|
103
|
+
n = ngx_pagesize_shift - pool->min_shift;
|
104
|
+
|
105
|
+
for (i = 0; i < n; i++) {
|
106
|
+
slots[i].slab = 0;
|
107
|
+
slots[i].next = &slots[i];
|
108
|
+
slots[i].prev = 0;
|
109
|
+
}
|
110
|
+
|
111
|
+
p += n * sizeof(ngx_slab_page_t);
|
112
|
+
|
113
|
+
pages = (ngx_uint_t) (size / (ngx_pagesize + sizeof(ngx_slab_page_t)));
|
114
|
+
|
115
|
+
ngx_memzero(p, pages * sizeof(ngx_slab_page_t));
|
116
|
+
|
117
|
+
pool->pages = (ngx_slab_page_t *) p;
|
118
|
+
|
119
|
+
pool->free.prev = 0;
|
120
|
+
pool->free.next = (ngx_slab_page_t *) p;
|
121
|
+
|
122
|
+
pool->pages->slab = pages;
|
123
|
+
pool->pages->next = &pool->free;
|
124
|
+
pool->pages->prev = (uintptr_t) &pool->free;
|
125
|
+
|
126
|
+
pool->start = (u_char *)
|
127
|
+
ngx_align_ptr((uintptr_t) p + pages * sizeof(ngx_slab_page_t),
|
128
|
+
ngx_pagesize);
|
129
|
+
|
130
|
+
m = pages - (pool->end - pool->start) / ngx_pagesize;
|
131
|
+
if (m > 0) {
|
132
|
+
pages -= m;
|
133
|
+
pool->pages->slab = pages;
|
134
|
+
}
|
135
|
+
|
136
|
+
pool->log_ctx = &pool->zero;
|
137
|
+
pool->zero = '\0';
|
138
|
+
}
|
139
|
+
|
140
|
+
|
141
|
+
void *
|
142
|
+
ngx_slab_alloc(ngx_slab_pool_t *pool, size_t size)
|
143
|
+
{
|
144
|
+
void *p;
|
145
|
+
|
146
|
+
ngx_shmtx_lock(&pool->mutex);
|
147
|
+
|
148
|
+
p = ngx_slab_alloc_locked(pool, size);
|
149
|
+
|
150
|
+
ngx_shmtx_unlock(&pool->mutex);
|
151
|
+
|
152
|
+
return p;
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
void *
|
157
|
+
ngx_slab_alloc_locked(ngx_slab_pool_t *pool, size_t size)
|
158
|
+
{
|
159
|
+
size_t s;
|
160
|
+
uintptr_t p, n, m, mask, *bitmap;
|
161
|
+
ngx_uint_t i, slot, shift, map;
|
162
|
+
ngx_slab_page_t *page, *prev, *slots;
|
163
|
+
|
164
|
+
if (size >= ngx_slab_max_size) {
|
165
|
+
|
166
|
+
ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0,
|
167
|
+
"slab alloc: %uz", size);
|
168
|
+
|
169
|
+
page = ngx_slab_alloc_pages(pool, (size + ngx_pagesize - 1)
|
170
|
+
>> ngx_pagesize_shift);
|
171
|
+
if (page) {
|
172
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
173
|
+
p += (uintptr_t) pool->start;
|
174
|
+
|
175
|
+
} else {
|
176
|
+
p = 0;
|
177
|
+
}
|
178
|
+
|
179
|
+
goto done;
|
180
|
+
}
|
181
|
+
|
182
|
+
if (size > pool->min_size) {
|
183
|
+
shift = 1;
|
184
|
+
for (s = size - 1; s >>= 1; shift++) { /* void */ }
|
185
|
+
slot = shift - pool->min_shift;
|
186
|
+
|
187
|
+
} else {
|
188
|
+
size = pool->min_size;
|
189
|
+
shift = pool->min_shift;
|
190
|
+
slot = 0;
|
191
|
+
}
|
192
|
+
|
193
|
+
ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0,
|
194
|
+
"slab alloc: %uz slot: %ui", size, slot);
|
195
|
+
|
196
|
+
slots = (ngx_slab_page_t *) ((u_char *) pool + sizeof(ngx_slab_pool_t));
|
197
|
+
page = slots[slot].next;
|
198
|
+
|
199
|
+
if (page->next != page) {
|
200
|
+
|
201
|
+
if (shift < ngx_slab_exact_shift) {
|
202
|
+
|
203
|
+
do {
|
204
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
205
|
+
bitmap = (uintptr_t *) (pool->start + p);
|
206
|
+
|
207
|
+
map = (1 << (ngx_pagesize_shift - shift))
|
208
|
+
/ (sizeof(uintptr_t) * 8);
|
209
|
+
|
210
|
+
for (n = 0; n < map; n++) {
|
211
|
+
|
212
|
+
if (bitmap[n] != NGX_SLAB_BUSY) {
|
213
|
+
|
214
|
+
for (m = 1, i = 0; m; m <<= 1, i++) {
|
215
|
+
if ((bitmap[n] & m)) {
|
216
|
+
continue;
|
217
|
+
}
|
218
|
+
|
219
|
+
bitmap[n] |= m;
|
220
|
+
|
221
|
+
i = ((n * sizeof(uintptr_t) * 8) << shift)
|
222
|
+
+ (i << shift);
|
223
|
+
|
224
|
+
if (bitmap[n] == NGX_SLAB_BUSY) {
|
225
|
+
for (n = n + 1; n < map; n++) {
|
226
|
+
if (bitmap[n] != NGX_SLAB_BUSY) {
|
227
|
+
p = (uintptr_t) bitmap + i;
|
228
|
+
|
229
|
+
goto done;
|
230
|
+
}
|
231
|
+
}
|
232
|
+
|
233
|
+
prev = (ngx_slab_page_t *)
|
234
|
+
(page->prev & ~NGX_SLAB_PAGE_MASK);
|
235
|
+
prev->next = page->next;
|
236
|
+
page->next->prev = page->prev;
|
237
|
+
|
238
|
+
page->next = NULL;
|
239
|
+
page->prev = NGX_SLAB_SMALL;
|
240
|
+
}
|
241
|
+
|
242
|
+
p = (uintptr_t) bitmap + i;
|
243
|
+
|
244
|
+
goto done;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
}
|
248
|
+
|
249
|
+
page = page->next;
|
250
|
+
|
251
|
+
} while (page);
|
252
|
+
|
253
|
+
} else if (shift == ngx_slab_exact_shift) {
|
254
|
+
|
255
|
+
do {
|
256
|
+
if (page->slab != NGX_SLAB_BUSY) {
|
257
|
+
|
258
|
+
for (m = 1, i = 0; m; m <<= 1, i++) {
|
259
|
+
if ((page->slab & m)) {
|
260
|
+
continue;
|
261
|
+
}
|
262
|
+
|
263
|
+
page->slab |= m;
|
264
|
+
|
265
|
+
if (page->slab == NGX_SLAB_BUSY) {
|
266
|
+
prev = (ngx_slab_page_t *)
|
267
|
+
(page->prev & ~NGX_SLAB_PAGE_MASK);
|
268
|
+
prev->next = page->next;
|
269
|
+
page->next->prev = page->prev;
|
270
|
+
|
271
|
+
page->next = NULL;
|
272
|
+
page->prev = NGX_SLAB_EXACT;
|
273
|
+
}
|
274
|
+
|
275
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
276
|
+
p += i << shift;
|
277
|
+
p += (uintptr_t) pool->start;
|
278
|
+
|
279
|
+
goto done;
|
280
|
+
}
|
281
|
+
}
|
282
|
+
|
283
|
+
page = page->next;
|
284
|
+
|
285
|
+
} while (page);
|
286
|
+
|
287
|
+
} else { /* shift > ngx_slab_exact_shift */
|
288
|
+
|
289
|
+
n = ngx_pagesize_shift - (page->slab & NGX_SLAB_SHIFT_MASK);
|
290
|
+
n = 1 << n;
|
291
|
+
n = ((uintptr_t) 1 << n) - 1;
|
292
|
+
mask = n << NGX_SLAB_MAP_SHIFT;
|
293
|
+
|
294
|
+
do {
|
295
|
+
if ((page->slab & NGX_SLAB_MAP_MASK) != mask) {
|
296
|
+
|
297
|
+
for (m = (uintptr_t) 1 << NGX_SLAB_MAP_SHIFT, i = 0;
|
298
|
+
m & mask;
|
299
|
+
m <<= 1, i++)
|
300
|
+
{
|
301
|
+
if ((page->slab & m)) {
|
302
|
+
continue;
|
303
|
+
}
|
304
|
+
|
305
|
+
page->slab |= m;
|
306
|
+
|
307
|
+
if ((page->slab & NGX_SLAB_MAP_MASK) == mask) {
|
308
|
+
prev = (ngx_slab_page_t *)
|
309
|
+
(page->prev & ~NGX_SLAB_PAGE_MASK);
|
310
|
+
prev->next = page->next;
|
311
|
+
page->next->prev = page->prev;
|
312
|
+
|
313
|
+
page->next = NULL;
|
314
|
+
page->prev = NGX_SLAB_BIG;
|
315
|
+
}
|
316
|
+
|
317
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
318
|
+
p += i << shift;
|
319
|
+
p += (uintptr_t) pool->start;
|
320
|
+
|
321
|
+
goto done;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
|
325
|
+
page = page->next;
|
326
|
+
|
327
|
+
} while (page);
|
328
|
+
}
|
329
|
+
}
|
330
|
+
|
331
|
+
page = ngx_slab_alloc_pages(pool, 1);
|
332
|
+
|
333
|
+
if (page) {
|
334
|
+
if (shift < ngx_slab_exact_shift) {
|
335
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
336
|
+
bitmap = (uintptr_t *) (pool->start + p);
|
337
|
+
|
338
|
+
s = 1 << shift;
|
339
|
+
n = (1 << (ngx_pagesize_shift - shift)) / 8 / s;
|
340
|
+
|
341
|
+
if (n == 0) {
|
342
|
+
n = 1;
|
343
|
+
}
|
344
|
+
|
345
|
+
bitmap[0] = (2 << n) - 1;
|
346
|
+
|
347
|
+
map = (1 << (ngx_pagesize_shift - shift)) / (sizeof(uintptr_t) * 8);
|
348
|
+
|
349
|
+
for (i = 1; i < map; i++) {
|
350
|
+
bitmap[i] = 0;
|
351
|
+
}
|
352
|
+
|
353
|
+
page->slab = shift;
|
354
|
+
page->next = &slots[slot];
|
355
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_SMALL;
|
356
|
+
|
357
|
+
slots[slot].next = page;
|
358
|
+
|
359
|
+
p = ((page - pool->pages) << ngx_pagesize_shift) + s * n;
|
360
|
+
p += (uintptr_t) pool->start;
|
361
|
+
|
362
|
+
goto done;
|
363
|
+
|
364
|
+
} else if (shift == ngx_slab_exact_shift) {
|
365
|
+
|
366
|
+
page->slab = 1;
|
367
|
+
page->next = &slots[slot];
|
368
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_EXACT;
|
369
|
+
|
370
|
+
slots[slot].next = page;
|
371
|
+
|
372
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
373
|
+
p += (uintptr_t) pool->start;
|
374
|
+
|
375
|
+
goto done;
|
376
|
+
|
377
|
+
} else { /* shift > ngx_slab_exact_shift */
|
378
|
+
|
379
|
+
page->slab = ((uintptr_t) 1 << NGX_SLAB_MAP_SHIFT) | shift;
|
380
|
+
page->next = &slots[slot];
|
381
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_BIG;
|
382
|
+
|
383
|
+
slots[slot].next = page;
|
384
|
+
|
385
|
+
p = (page - pool->pages) << ngx_pagesize_shift;
|
386
|
+
p += (uintptr_t) pool->start;
|
387
|
+
|
388
|
+
goto done;
|
389
|
+
}
|
390
|
+
}
|
391
|
+
|
392
|
+
p = 0;
|
393
|
+
|
394
|
+
done:
|
395
|
+
|
396
|
+
ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0, "slab alloc: %p", p);
|
397
|
+
|
398
|
+
return (void *) p;
|
399
|
+
}
|
400
|
+
|
401
|
+
|
402
|
+
void
|
403
|
+
ngx_slab_free(ngx_slab_pool_t *pool, void *p)
|
404
|
+
{
|
405
|
+
ngx_shmtx_lock(&pool->mutex);
|
406
|
+
|
407
|
+
ngx_slab_free_locked(pool, p);
|
408
|
+
|
409
|
+
ngx_shmtx_unlock(&pool->mutex);
|
410
|
+
}
|
411
|
+
|
412
|
+
|
413
|
+
void
|
414
|
+
ngx_slab_free_locked(ngx_slab_pool_t *pool, void *p)
|
415
|
+
{
|
416
|
+
size_t size;
|
417
|
+
uintptr_t slab, m, *bitmap;
|
418
|
+
ngx_uint_t n, type, slot, shift, map;
|
419
|
+
ngx_slab_page_t *slots, *page;
|
420
|
+
|
421
|
+
ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0, "slab free: %p", p);
|
422
|
+
|
423
|
+
if ((u_char *) p < pool->start || (u_char *) p > pool->end) {
|
424
|
+
ngx_slab_error(pool, NGX_LOG_ALERT, "ngx_slab_free(): outside of pool");
|
425
|
+
goto fail;
|
426
|
+
}
|
427
|
+
|
428
|
+
n = ((u_char *) p - pool->start) >> ngx_pagesize_shift;
|
429
|
+
page = &pool->pages[n];
|
430
|
+
slab = page->slab;
|
431
|
+
type = page->prev & NGX_SLAB_PAGE_MASK;
|
432
|
+
|
433
|
+
switch (type) {
|
434
|
+
|
435
|
+
case NGX_SLAB_SMALL:
|
436
|
+
|
437
|
+
shift = slab & NGX_SLAB_SHIFT_MASK;
|
438
|
+
size = 1 << shift;
|
439
|
+
|
440
|
+
if ((uintptr_t) p & (size - 1)) {
|
441
|
+
goto wrong_chunk;
|
442
|
+
}
|
443
|
+
|
444
|
+
n = ((uintptr_t) p & (ngx_pagesize - 1)) >> shift;
|
445
|
+
m = (uintptr_t) 1 << (n & (sizeof(uintptr_t) * 8 - 1));
|
446
|
+
n /= (sizeof(uintptr_t) * 8);
|
447
|
+
bitmap = (uintptr_t *) ((uintptr_t) p & ~(ngx_pagesize - 1));
|
448
|
+
|
449
|
+
if (bitmap[n] & m) {
|
450
|
+
|
451
|
+
if (page->next == NULL) {
|
452
|
+
slots = (ngx_slab_page_t *)
|
453
|
+
((u_char *) pool + sizeof(ngx_slab_pool_t));
|
454
|
+
slot = shift - pool->min_shift;
|
455
|
+
|
456
|
+
page->next = slots[slot].next;
|
457
|
+
slots[slot].next = page;
|
458
|
+
|
459
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_SMALL;
|
460
|
+
page->next->prev = (uintptr_t) page | NGX_SLAB_SMALL;
|
461
|
+
}
|
462
|
+
|
463
|
+
bitmap[n] &= ~m;
|
464
|
+
|
465
|
+
n = (1 << (ngx_pagesize_shift - shift)) / 8 / (1 << shift);
|
466
|
+
|
467
|
+
if (n == 0) {
|
468
|
+
n = 1;
|
469
|
+
}
|
470
|
+
|
471
|
+
if (bitmap[0] & ~(((uintptr_t) 1 << n) - 1)) {
|
472
|
+
goto done;
|
473
|
+
}
|
474
|
+
|
475
|
+
map = (1 << (ngx_pagesize_shift - shift)) / (sizeof(uintptr_t) * 8);
|
476
|
+
|
477
|
+
for (n = 1; n < map; n++) {
|
478
|
+
if (bitmap[n]) {
|
479
|
+
goto done;
|
480
|
+
}
|
481
|
+
}
|
482
|
+
|
483
|
+
ngx_slab_free_pages(pool, page, 1);
|
484
|
+
|
485
|
+
goto done;
|
486
|
+
}
|
487
|
+
|
488
|
+
goto chunk_already_free;
|
489
|
+
|
490
|
+
case NGX_SLAB_EXACT:
|
491
|
+
|
492
|
+
m = (uintptr_t) 1 <<
|
493
|
+
(((uintptr_t) p & (ngx_pagesize - 1)) >> ngx_slab_exact_shift);
|
494
|
+
size = ngx_slab_exact_size;
|
495
|
+
|
496
|
+
if ((uintptr_t) p & (size - 1)) {
|
497
|
+
goto wrong_chunk;
|
498
|
+
}
|
499
|
+
|
500
|
+
if (slab & m) {
|
501
|
+
if (slab == NGX_SLAB_BUSY) {
|
502
|
+
slots = (ngx_slab_page_t *)
|
503
|
+
((u_char *) pool + sizeof(ngx_slab_pool_t));
|
504
|
+
slot = ngx_slab_exact_shift - pool->min_shift;
|
505
|
+
|
506
|
+
page->next = slots[slot].next;
|
507
|
+
slots[slot].next = page;
|
508
|
+
|
509
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_EXACT;
|
510
|
+
page->next->prev = (uintptr_t) page | NGX_SLAB_EXACT;
|
511
|
+
}
|
512
|
+
|
513
|
+
page->slab &= ~m;
|
514
|
+
|
515
|
+
if (page->slab) {
|
516
|
+
goto done;
|
517
|
+
}
|
518
|
+
|
519
|
+
ngx_slab_free_pages(pool, page, 1);
|
520
|
+
|
521
|
+
goto done;
|
522
|
+
}
|
523
|
+
|
524
|
+
goto chunk_already_free;
|
525
|
+
|
526
|
+
case NGX_SLAB_BIG:
|
527
|
+
|
528
|
+
shift = slab & NGX_SLAB_SHIFT_MASK;
|
529
|
+
size = 1 << shift;
|
530
|
+
|
531
|
+
if ((uintptr_t) p & (size - 1)) {
|
532
|
+
goto wrong_chunk;
|
533
|
+
}
|
534
|
+
|
535
|
+
m = (uintptr_t) 1 << ((((uintptr_t) p & (ngx_pagesize - 1)) >> shift)
|
536
|
+
+ NGX_SLAB_MAP_SHIFT);
|
537
|
+
|
538
|
+
if (slab & m) {
|
539
|
+
|
540
|
+
if (page->next == NULL) {
|
541
|
+
slots = (ngx_slab_page_t *)
|
542
|
+
((u_char *) pool + sizeof(ngx_slab_pool_t));
|
543
|
+
slot = shift - pool->min_shift;
|
544
|
+
|
545
|
+
page->next = slots[slot].next;
|
546
|
+
slots[slot].next = page;
|
547
|
+
|
548
|
+
page->prev = (uintptr_t) &slots[slot] | NGX_SLAB_BIG;
|
549
|
+
page->next->prev = (uintptr_t) page | NGX_SLAB_BIG;
|
550
|
+
}
|
551
|
+
|
552
|
+
page->slab &= ~m;
|
553
|
+
|
554
|
+
if (page->slab & NGX_SLAB_MAP_MASK) {
|
555
|
+
goto done;
|
556
|
+
}
|
557
|
+
|
558
|
+
ngx_slab_free_pages(pool, page, 1);
|
559
|
+
|
560
|
+
goto done;
|
561
|
+
}
|
562
|
+
|
563
|
+
goto chunk_already_free;
|
564
|
+
|
565
|
+
case NGX_SLAB_PAGE:
|
566
|
+
|
567
|
+
if ((uintptr_t) p & (ngx_pagesize - 1)) {
|
568
|
+
goto wrong_chunk;
|
569
|
+
}
|
570
|
+
|
571
|
+
if (slab == NGX_SLAB_PAGE_FREE) {
|
572
|
+
ngx_slab_error(pool, NGX_LOG_ALERT,
|
573
|
+
"ngx_slab_free(): page is already free");
|
574
|
+
goto fail;
|
575
|
+
}
|
576
|
+
|
577
|
+
if (slab == NGX_SLAB_PAGE_BUSY) {
|
578
|
+
ngx_slab_error(pool, NGX_LOG_ALERT,
|
579
|
+
"ngx_slab_free(): pointer to wrong page");
|
580
|
+
goto fail;
|
581
|
+
}
|
582
|
+
|
583
|
+
n = ((u_char *) p - pool->start) >> ngx_pagesize_shift;
|
584
|
+
size = slab & ~NGX_SLAB_PAGE_START;
|
585
|
+
|
586
|
+
ngx_slab_free_pages(pool, &pool->pages[n], size);
|
587
|
+
|
588
|
+
ngx_slab_junk(p, size << ngx_pagesize_shift);
|
589
|
+
|
590
|
+
return;
|
591
|
+
}
|
592
|
+
|
593
|
+
/* not reached */
|
594
|
+
|
595
|
+
return;
|
596
|
+
|
597
|
+
done:
|
598
|
+
|
599
|
+
ngx_slab_junk(p, size);
|
600
|
+
|
601
|
+
return;
|
602
|
+
|
603
|
+
wrong_chunk:
|
604
|
+
|
605
|
+
ngx_slab_error(pool, NGX_LOG_ALERT,
|
606
|
+
"ngx_slab_free(): pointer to wrong chunk");
|
607
|
+
|
608
|
+
goto fail;
|
609
|
+
|
610
|
+
chunk_already_free:
|
611
|
+
|
612
|
+
ngx_slab_error(pool, NGX_LOG_ALERT,
|
613
|
+
"ngx_slab_free(): chunk is already free");
|
614
|
+
|
615
|
+
fail:
|
616
|
+
|
617
|
+
return;
|
618
|
+
}
|
619
|
+
|
620
|
+
|
621
|
+
static ngx_slab_page_t *
|
622
|
+
ngx_slab_alloc_pages(ngx_slab_pool_t *pool, ngx_uint_t pages)
|
623
|
+
{
|
624
|
+
ngx_slab_page_t *page, *p;
|
625
|
+
|
626
|
+
for (page = pool->free.next; page != &pool->free; page = page->next) {
|
627
|
+
|
628
|
+
if (page->slab >= pages) {
|
629
|
+
|
630
|
+
if (page->slab > pages) {
|
631
|
+
page[pages].slab = page->slab - pages;
|
632
|
+
page[pages].next = page->next;
|
633
|
+
page[pages].prev = page->prev;
|
634
|
+
|
635
|
+
p = (ngx_slab_page_t *) page->prev;
|
636
|
+
p->next = &page[pages];
|
637
|
+
page->next->prev = (uintptr_t) &page[pages];
|
638
|
+
|
639
|
+
} else {
|
640
|
+
p = (ngx_slab_page_t *) page->prev;
|
641
|
+
p->next = page->next;
|
642
|
+
page->next->prev = page->prev;
|
643
|
+
}
|
644
|
+
|
645
|
+
page->slab = pages | NGX_SLAB_PAGE_START;
|
646
|
+
page->next = NULL;
|
647
|
+
page->prev = NGX_SLAB_PAGE;
|
648
|
+
|
649
|
+
if (--pages == 0) {
|
650
|
+
return page;
|
651
|
+
}
|
652
|
+
|
653
|
+
for (p = page + 1; pages; pages--) {
|
654
|
+
p->slab = NGX_SLAB_PAGE_BUSY;
|
655
|
+
p->next = NULL;
|
656
|
+
p->prev = NGX_SLAB_PAGE;
|
657
|
+
p++;
|
658
|
+
}
|
659
|
+
|
660
|
+
return page;
|
661
|
+
}
|
662
|
+
}
|
663
|
+
|
664
|
+
ngx_slab_error(pool, NGX_LOG_CRIT, "ngx_slab_alloc() failed: no memory");
|
665
|
+
|
666
|
+
return NULL;
|
667
|
+
}
|
668
|
+
|
669
|
+
|
670
|
+
static void
|
671
|
+
ngx_slab_free_pages(ngx_slab_pool_t *pool, ngx_slab_page_t *page,
|
672
|
+
ngx_uint_t pages)
|
673
|
+
{
|
674
|
+
ngx_slab_page_t *prev;
|
675
|
+
|
676
|
+
page->slab = pages--;
|
677
|
+
|
678
|
+
if (pages) {
|
679
|
+
ngx_memzero(&page[1], pages * sizeof(ngx_slab_page_t));
|
680
|
+
}
|
681
|
+
|
682
|
+
if (page->next) {
|
683
|
+
prev = (ngx_slab_page_t *) (page->prev & ~NGX_SLAB_PAGE_MASK);
|
684
|
+
prev->next = page->next;
|
685
|
+
page->next->prev = page->prev;
|
686
|
+
}
|
687
|
+
|
688
|
+
page->prev = (uintptr_t) &pool->free;
|
689
|
+
page->next = pool->free.next;
|
690
|
+
|
691
|
+
page->next->prev = (uintptr_t) page;
|
692
|
+
|
693
|
+
pool->free.next = page;
|
694
|
+
}
|
695
|
+
|
696
|
+
|
697
|
+
static void
|
698
|
+
ngx_slab_error(ngx_slab_pool_t *pool, ngx_uint_t level, char *text)
|
699
|
+
{
|
700
|
+
ngx_log_error(level, ngx_cycle->log, 0, "%s%s", text, pool->log_ctx);
|
701
|
+
}
|