├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Nginx信号控制.pdf ├── ngx_stream_access_module模块解析.pdf ├── ngx_stream_limit_conn_module模块解析.pdf ├── slab共享内存使用及实现原理简介.pdf ├── 实例分析set命令及相关脚本引擎.pdf ├── 客户端非阻塞socket建链流程 .pdf └── 异步文件IO.pdf ├── nginx-1.10.0 ├── CHANGES ├── CHANGES.ru ├── LICENSE ├── README ├── auto │ ├── cc │ │ ├── acc │ │ ├── bcc │ │ ├── ccc │ │ ├── clang │ │ ├── conf │ │ ├── gcc │ │ ├── icc │ │ ├── msvc │ │ ├── name │ │ ├── owc │ │ └── sunc │ ├── define │ ├── endianness │ ├── feature │ ├── have │ ├── have_headers │ ├── headers │ ├── include │ ├── init │ ├── install │ ├── lib │ │ ├── conf │ │ ├── geoip │ │ │ └── conf │ │ ├── google-perftools │ │ │ └── conf │ │ ├── libatomic │ │ │ ├── conf │ │ │ └── make │ │ ├── libgd │ │ │ └── conf │ │ ├── libxslt │ │ │ └── conf │ │ ├── make │ │ ├── md5 │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── openssl │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ └── makefile.msvc │ │ ├── pcre │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── perl │ │ │ ├── conf │ │ │ └── make │ │ ├── sha1 │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── test │ │ └── zlib │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ ├── make │ ├── module │ ├── modules │ ├── nohave │ ├── options │ ├── os │ │ ├── conf │ │ ├── darwin │ │ ├── freebsd │ │ ├── linux │ │ ├── solaris │ │ └── win32 │ ├── sources │ ├── stubs │ ├── summary │ ├── threads │ ├── types │ │ ├── sizeof │ │ ├── typedef │ │ ├── uintptr_t │ │ └── value │ └── unix ├── conf │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── scgi_params │ ├── uwsgi_params │ └── win-utf ├── configure ├── contrib │ ├── README │ ├── geo2nginx.pl │ ├── unicode2nginx │ │ ├── koi-utf │ │ ├── unicode-to-nginx.pl │ │ └── win-utf │ └── vim │ │ ├── ftdetect │ │ └── nginx.vim │ │ ├── indent │ │ └── nginx.vim │ │ └── syntax │ │ └── nginx.vim ├── html │ ├── 50x.html │ └── index.html ├── man │ └── nginx.8 ├── objs │ ├── ngx_auto_config.h │ ├── ngx_auto_headers.h │ └── ngx_modules.c └── src │ ├── core │ ├── nginx.c │ ├── nginx.h │ ├── ngx_array.c │ ├── ngx_array.h │ ├── ngx_buf.c │ ├── ngx_buf.h │ ├── ngx_conf_file.c │ ├── ngx_conf_file.h │ ├── ngx_config.h │ ├── ngx_connection.c │ ├── ngx_connection.h │ ├── ngx_core.h │ ├── ngx_cpuinfo.c │ ├── ngx_crc.h │ ├── ngx_crc32.c │ ├── ngx_crc32.h │ ├── ngx_crypt.c │ ├── ngx_crypt.h │ ├── ngx_cycle.c │ ├── ngx_cycle.h │ ├── ngx_file.c │ ├── ngx_file.h │ ├── ngx_hash.c │ ├── ngx_hash.h │ ├── ngx_inet.c │ ├── ngx_inet.h │ ├── ngx_list.c │ ├── ngx_list.h │ ├── ngx_log.c │ ├── ngx_log.h │ ├── ngx_md5.c │ ├── ngx_md5.h │ ├── ngx_module.c │ ├── ngx_module.h │ ├── ngx_murmurhash.c │ ├── ngx_murmurhash.h │ ├── ngx_open_file_cache.c │ ├── ngx_open_file_cache.h │ ├── ngx_output_chain.c │ ├── ngx_palloc.c │ ├── ngx_palloc.h │ ├── ngx_parse.c │ ├── ngx_parse.h │ ├── ngx_parse_time.c │ ├── ngx_parse_time.h │ ├── ngx_proxy_protocol.c │ ├── ngx_proxy_protocol.h │ ├── ngx_queue.c │ ├── ngx_queue.h │ ├── ngx_radix_tree.c │ ├── ngx_radix_tree.h │ ├── ngx_rbtree.c │ ├── ngx_rbtree.h │ ├── ngx_regex.c │ ├── ngx_regex.h │ ├── ngx_resolver.c │ ├── ngx_resolver.h │ ├── ngx_rwlock.c │ ├── ngx_rwlock.h │ ├── ngx_sha1.h │ ├── ngx_shmtx.c │ ├── ngx_shmtx.h │ ├── ngx_slab.c │ ├── ngx_slab.h │ ├── ngx_spinlock.c │ ├── ngx_string.c │ ├── ngx_string.h │ ├── ngx_syslog.c │ ├── ngx_syslog.h │ ├── ngx_thread_pool.c │ ├── ngx_thread_pool.h │ ├── ngx_times.c │ └── ngx_times.h │ ├── event │ ├── modules │ │ ├── ngx_devpoll_module.c │ │ ├── ngx_epoll_module.c │ │ ├── ngx_eventport_module.c │ │ ├── ngx_kqueue_module.c │ │ ├── ngx_poll_module.c │ │ ├── ngx_select_module.c │ │ └── ngx_win32_select_module.c │ ├── ngx_event.c │ ├── ngx_event.h │ ├── ngx_event_accept.c │ ├── ngx_event_connect.c │ ├── ngx_event_connect.h │ ├── ngx_event_openssl.c │ ├── ngx_event_openssl.h │ ├── ngx_event_openssl_stapling.c │ ├── ngx_event_pipe.c │ ├── ngx_event_pipe.h │ ├── ngx_event_posted.c │ ├── ngx_event_posted.h │ ├── ngx_event_timer.c │ └── ngx_event_timer.h │ ├── http │ ├── modules │ │ ├── ngx_http_access_module.c │ │ ├── ngx_http_addition_filter_module.c │ │ ├── ngx_http_auth_basic_module.c │ │ ├── ngx_http_auth_request_module.c │ │ ├── ngx_http_autoindex_module.c │ │ ├── ngx_http_browser_module.c │ │ ├── ngx_http_charset_filter_module.c │ │ ├── ngx_http_chunked_filter_module.c │ │ ├── ngx_http_dav_module.c │ │ ├── ngx_http_degradation_module.c │ │ ├── ngx_http_empty_gif_module.c │ │ ├── ngx_http_fastcgi_module.c │ │ ├── ngx_http_flv_module.c │ │ ├── ngx_http_geo_module.c │ │ ├── ngx_http_geoip_module.c │ │ ├── ngx_http_gunzip_filter_module.c │ │ ├── ngx_http_gzip_filter_module.c │ │ ├── ngx_http_gzip_static_module.c │ │ ├── ngx_http_headers_filter_module.c │ │ ├── ngx_http_image_filter_module.c │ │ ├── ngx_http_index_module.c │ │ ├── ngx_http_limit_conn_module.c │ │ ├── ngx_http_limit_req_module.c │ │ ├── ngx_http_log_module.c │ │ ├── ngx_http_map_module.c │ │ ├── ngx_http_memcached_module.c │ │ ├── ngx_http_mp4_module.c │ │ ├── ngx_http_not_modified_filter_module.c │ │ ├── ngx_http_proxy_module.c │ │ ├── ngx_http_random_index_module.c │ │ ├── ngx_http_range_filter_module.c │ │ ├── ngx_http_realip_module.c │ │ ├── ngx_http_referer_module.c │ │ ├── ngx_http_rewrite_module.c │ │ ├── ngx_http_scgi_module.c │ │ ├── ngx_http_secure_link_module.c │ │ ├── ngx_http_slice_filter_module.c │ │ ├── ngx_http_split_clients_module.c │ │ ├── ngx_http_ssi_filter_module.c │ │ ├── ngx_http_ssi_filter_module.h │ │ ├── ngx_http_ssl_module.c │ │ ├── ngx_http_ssl_module.h │ │ ├── ngx_http_static_module.c │ │ ├── ngx_http_stub_status_module.c │ │ ├── ngx_http_sub_filter_module.c │ │ ├── ngx_http_upstream_hash_module.c │ │ ├── ngx_http_upstream_ip_hash_module.c │ │ ├── ngx_http_upstream_keepalive_module.c │ │ ├── ngx_http_upstream_least_conn_module.c │ │ ├── ngx_http_upstream_zone_module.c │ │ ├── ngx_http_userid_filter_module.c │ │ ├── ngx_http_uwsgi_module.c │ │ ├── ngx_http_xslt_filter_module.c │ │ └── perl │ │ │ ├── Makefile.PL │ │ │ ├── nginx.pm │ │ │ ├── nginx.xs │ │ │ ├── ngx_http_perl_module.c │ │ │ ├── ngx_http_perl_module.h │ │ │ └── typemap │ ├── ngx_http.c │ ├── ngx_http.h │ ├── ngx_http_cache.h │ ├── ngx_http_config.h │ ├── ngx_http_copy_filter_module.c │ ├── ngx_http_core_module.c │ ├── ngx_http_core_module.h │ ├── ngx_http_file_cache.c │ ├── ngx_http_header_filter_module.c │ ├── ngx_http_parse.c │ ├── ngx_http_postpone_filter_module.c │ ├── ngx_http_request.c │ ├── ngx_http_request.h │ ├── ngx_http_request_body.c │ ├── ngx_http_script.c │ ├── ngx_http_script.h │ ├── ngx_http_special_response.c │ ├── ngx_http_upstream.c │ ├── ngx_http_upstream.h │ ├── ngx_http_upstream_round_robin.c │ ├── ngx_http_upstream_round_robin.h │ ├── ngx_http_variables.c │ ├── ngx_http_variables.h │ ├── ngx_http_write_filter_module.c │ └── v2 │ │ ├── ngx_http_v2.c │ │ ├── ngx_http_v2.h │ │ ├── ngx_http_v2_filter_module.c │ │ ├── ngx_http_v2_huff_decode.c │ │ ├── ngx_http_v2_huff_encode.c │ │ ├── ngx_http_v2_module.c │ │ ├── ngx_http_v2_module.h │ │ └── ngx_http_v2_table.c │ ├── mail │ ├── ngx_mail.c │ ├── ngx_mail.h │ ├── ngx_mail_auth_http_module.c │ ├── ngx_mail_core_module.c │ ├── ngx_mail_handler.c │ ├── ngx_mail_imap_handler.c │ ├── ngx_mail_imap_module.c │ ├── ngx_mail_imap_module.h │ ├── ngx_mail_parse.c │ ├── ngx_mail_pop3_handler.c │ ├── ngx_mail_pop3_module.c │ ├── ngx_mail_pop3_module.h │ ├── ngx_mail_proxy_module.c │ ├── ngx_mail_smtp_handler.c │ ├── ngx_mail_smtp_module.c │ ├── ngx_mail_smtp_module.h │ ├── ngx_mail_ssl_module.c │ └── ngx_mail_ssl_module.h │ ├── misc │ ├── ngx_cpp_test_module.cpp │ └── ngx_google_perftools_module.c │ ├── os │ └── unix │ │ ├── ngx_alloc.c │ │ ├── ngx_alloc.h │ │ ├── ngx_atomic.h │ │ ├── ngx_channel.c │ │ ├── ngx_channel.h │ │ ├── ngx_daemon.c │ │ ├── ngx_darwin.h │ │ ├── ngx_darwin_config.h │ │ ├── ngx_darwin_init.c │ │ ├── ngx_darwin_sendfile_chain.c │ │ ├── ngx_dlopen.c │ │ ├── ngx_dlopen.h │ │ ├── ngx_errno.c │ │ ├── ngx_errno.h │ │ ├── ngx_file_aio_read.c │ │ ├── ngx_files.c │ │ ├── ngx_files.h │ │ ├── ngx_freebsd.h │ │ ├── ngx_freebsd_config.h │ │ ├── ngx_freebsd_init.c │ │ ├── ngx_freebsd_sendfile_chain.c │ │ ├── ngx_gcc_atomic_amd64.h │ │ ├── ngx_gcc_atomic_ppc.h │ │ ├── ngx_gcc_atomic_sparc64.h │ │ ├── ngx_gcc_atomic_x86.h │ │ ├── ngx_linux.h │ │ ├── ngx_linux_aio_read.c │ │ ├── ngx_linux_config.h │ │ ├── ngx_linux_init.c │ │ ├── ngx_linux_sendfile_chain.c │ │ ├── ngx_os.h │ │ ├── ngx_posix_config.h │ │ ├── ngx_posix_init.c │ │ ├── ngx_process.c │ │ ├── ngx_process.h │ │ ├── ngx_process_cycle.c │ │ ├── ngx_process_cycle.h │ │ ├── ngx_readv_chain.c │ │ ├── ngx_recv.c │ │ ├── ngx_send.c │ │ ├── ngx_setaffinity.c │ │ ├── ngx_setaffinity.h │ │ ├── ngx_setproctitle.c │ │ ├── ngx_setproctitle.h │ │ ├── ngx_shmem.c │ │ ├── ngx_shmem.h │ │ ├── ngx_socket.c │ │ ├── ngx_socket.h │ │ ├── ngx_solaris.h │ │ ├── ngx_solaris_config.h │ │ ├── ngx_solaris_init.c │ │ ├── ngx_solaris_sendfilev_chain.c │ │ ├── ngx_sunpro_amd64.il │ │ ├── ngx_sunpro_atomic_sparc64.h │ │ ├── ngx_sunpro_sparc64.il │ │ ├── ngx_sunpro_x86.il │ │ ├── ngx_thread.h │ │ ├── ngx_thread_cond.c │ │ ├── ngx_thread_id.c │ │ ├── ngx_thread_mutex.c │ │ ├── ngx_time.c │ │ ├── ngx_time.h │ │ ├── ngx_udp_recv.c │ │ ├── ngx_udp_send.c │ │ ├── ngx_user.c │ │ ├── ngx_user.h │ │ └── ngx_writev_chain.c │ └── stream │ ├── ngx_stream.c │ ├── ngx_stream.h │ ├── ngx_stream_access_module.c │ ├── ngx_stream_core_module.c │ ├── ngx_stream_handler.c │ ├── ngx_stream_limit_conn_module.c │ ├── ngx_stream_proxy_module.c │ ├── ngx_stream_ssl_module.c │ ├── ngx_stream_ssl_module.h │ ├── ngx_stream_upstream.c │ ├── ngx_stream_upstream.h │ ├── ngx_stream_upstream_hash_module.c │ ├── ngx_stream_upstream_least_conn_module.c │ ├── ngx_stream_upstream_round_robin.c │ ├── ngx_stream_upstream_round_robin.h │ └── ngx_stream_upstream_zone_module.c └── source insight configuration └── GLOBAL.CF3 /.gitignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016, TitenWang 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, this 8 | list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | 14 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 15 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 17 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 18 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 20 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 21 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 22 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nginx-comment 2 | nginx1.10.0源代码注释 3 | 4 | 2016-05-29  完成了对进程间通信和slab共享内存的注解。对其中一些具体的实现细节仍有不是很理解的地方,如在ngx_slab_alloc_pages函数中为什么要将剩余连续可用页的最后一页的prev指针指向剩余连续可用页的首页。 5 | 6 | 2016-06-19  此次主要是完成了Nginx内部变量部分的注解,主要包括内部变量的定义、初始化和使用;还完成了rewrite模块的set命令部分的 注解,主要包括set命令涉及到的脚本引擎相关的内容。另外,新增一个doc目录,主要是用于存放自己在学习源码过程中学到的一些东西,并将上次关于slab的一个总结文档也进行了上传。 7 | 8 | 2016-07-13  此次主要是完成了Nginx启动流程以及master和worker进程工作流程的注解。 9 | 10 | 2016-07-18  此次主要是完成了Nginx事件驱动框架部分的注解,包括处理流程以及如何解决负载均衡和“惊群”问题的实现。有一个不解的地方,就是在某个子进程达到负载均衡阈值之后再一次开始处理事件时,并没有将所有的监听套接口从epoll中移除,那后续流程中是不是又会监控并处理监听套接口中的新建连接事件呢,和其他 11 | 子进程会不会冲突呢? 12 | 13 | 2016-07-19  此次主要是完成了Nginx文件异步I/O处理流程的注解,包括Nginx如何实现异步文件I/O、eventfd和epoll的结合。 14 | 15 | 2016-08-03  此次主要是增加了关于Nginx的信号控制以及eventfd、异步I/O和epoll结合的总结,并建立了一个用来输出总结的个人博客,并将之前的总结和这两篇总结移植到博客中,博客地址为:https://TitenWang.github.io/ 16 | 17 | 2016-08-20  此次主要是完成了Nginx中http框架的初始化流程中的大部分,主要包括listen和server_name命令的解析、Nginx中[port,ip]的端口管理模式以及多server监听同一个ip:port时如何定位真正的server块等内容。除此之外还包括了http框架如何管理http{}、server{}、location{}块下的配置项, 18 | 以及对请求的11个处理阶段的初始化。 19 | 20 | 2016-09-02  此次主要是完成了Nginx中处理请求行、处理请求头部和处理请求的流程注解,以及处理包体(接收、丢弃包体)流程和发送响应(响应头部、相应包体)流程的注解。 21 | 22 | 2016-09-16  此次主要是完成了Nginx中upstream机制的基本流程,如初始化upstream、启动upstream、与上游客户端建链、发送请求、接收响应等,对upstream机制有了基本的了解。后续通过结合具体模块 23 | 分析upstream的其他细节。 24 | 25 | 2016-10-02  此次主要是完成了加权轮询算法的注解,包括算法实现的本身,以及如何和upstream机制结合起来。 26 | 27 | 2016-10-03  此次主要是完成了ngx_http_memcached_module模块的注解,加深了对upstream机制的理解。 28 | 29 | 2016-10-04  此次主要是完成了stream机制的注解,包括配置文件解析及配置项解析结果的组织、stream机制与事件驱动模块的结合、stream负载均衡、stream访问控制、stream限制单个ip的并发连接数以及stream代理等。     30 | 31 | 2017-05-14 此次主要是完成了线程池ngx_thread_pool_module模块的注解,了解了其使用场景和具体的实现方式。 -------------------------------------------------------------------------------- /doc/Nginx信号控制.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/Nginx信号控制.pdf -------------------------------------------------------------------------------- /doc/ngx_stream_access_module模块解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/ngx_stream_access_module模块解析.pdf -------------------------------------------------------------------------------- /doc/ngx_stream_limit_conn_module模块解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/ngx_stream_limit_conn_module模块解析.pdf -------------------------------------------------------------------------------- /doc/slab共享内存使用及实现原理简介.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/slab共享内存使用及实现原理简介.pdf -------------------------------------------------------------------------------- /doc/实例分析set命令及相关脚本引擎.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/实例分析set命令及相关脚本引擎.pdf -------------------------------------------------------------------------------- /doc/客户端非阻塞socket建链流程 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/客户端非阻塞socket建链流程 .pdf -------------------------------------------------------------------------------- /doc/异步文件IO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/doc/异步文件IO.pdf -------------------------------------------------------------------------------- /nginx-1.10.0/LICENSE: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2002-2016 Igor Sysoev 3 | * Copyright (C) 2011-2016 Nginx, Inc. 4 | * All rights reserved. 5 | * 6 | * Redistribution and use in source and binary forms, with or without 7 | * modification, are permitted provided that the following conditions 8 | * are met: 9 | * 1. Redistributions of source code must retain the above copyright 10 | * notice, this list of conditions and the following disclaimer. 11 | * 2. Redistributions in binary form must reproduce the above copyright 12 | * notice, this list of conditions and the following disclaimer in the 13 | * documentation and/or other materials provided with the distribution. 14 | * 15 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 | * SUCH DAMAGE. 26 | */ 27 | -------------------------------------------------------------------------------- /nginx-1.10.0/README: -------------------------------------------------------------------------------- 1 | 2 | Documentation is available at http://nginx.org 3 | 4 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/acc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | # aCC: HP ANSI C++ B3910B A.03.55.02 7 | 8 | # C89 mode 9 | 10 | CFLAGS="$CFLAGS -Ae" 11 | CC_TEST_FLAGS="-Ae" 12 | 13 | PCRE_OPT="$PCRE_OPT -Ae" 14 | ZLIB_OPT="$ZLIB_OPT -Ae" 15 | MD5_OPT="$MD5_OPT -Ae" 16 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | # Borland C++ 5.5 7 | 8 | # optimizations 9 | 10 | # maximize speed 11 | CFLAGS="$CFLAGS -O2" 12 | 13 | case $CPU in 14 | pentium) 15 | # optimize for Pentium and Athlon 16 | CPU_OPT="-5" 17 | ;; 18 | 19 | pentiumpro) 20 | # optimize for Pentium Pro, Pentium II and Pentium III 21 | CPU_OPT="-6" 22 | ;; 23 | esac 24 | 25 | # __stdcall 26 | #CPU_OPT="$CPU_OPT -ps" 27 | # __fastcall 28 | #CPU_OPT="$CPU_OPT -pr" 29 | 30 | CFLAGS="$CFLAGS $CPU_OPT" 31 | 32 | # multithreaded 33 | CFLAGS="$CFLAGS -tWM" 34 | 35 | # stop on warning 36 | CFLAGS="$CFLAGS -w!" 37 | 38 | # disable logo 39 | CFLAGS="$CFLAGS -q" 40 | 41 | 42 | # precompiled headers 43 | CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.csm" 44 | NGX_PCH="$NGX_OBJS/ngx_config.csm" 45 | NGX_BUILD_PCH="-H=$NGX_OBJS/ngx_config.csm" 46 | NGX_USE_PCH="-Hu -H=$NGX_OBJS/ngx_config.csm" 47 | 48 | 49 | # Win32 GUI mode application 50 | #LINK="\$(CC) -laa" 51 | 52 | 53 | # the resource file 54 | NGX_RES="$NGX_OBJS/nginx.res" 55 | NGX_RCC="brcc32 -fo$NGX_OBJS/nginx.res \$(CORE_INCS) $NGX_WIN32_RC" 56 | # the pragma allows to link the resource file using bcc32 and 57 | # to avoid the direct ilink32 calling and the c0w32.obj's WinMain/main problem 58 | NGX_PRAGMA="#pragma resource \"$NGX_OBJS/nginx.res\"" 59 | 60 | 61 | ngx_include_opt="-I" 62 | ngx_objout="-o" 63 | ngx_binout="-e" 64 | ngx_objext="obj" 65 | ngx_binext=".exe" 66 | 67 | ngx_long_start='@&&| 68 | ' 69 | ngx_long_end='|' 70 | 71 | ngx_regex_dirsep='\\' 72 | ngx_dirsep="\\" 73 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/ccc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | # Compaq C V6.5-207 7 | 8 | ngx_include_opt="-I" 9 | 10 | # warnings 11 | 12 | CFLAGS="$CFLAGS -msg_enable level6 -msg_fatal level6" 13 | 14 | CFLAGS="$CFLAGS -msg_disable unknownmacro" 15 | CFLAGS="$CFLAGS -msg_disable unusedincl" 16 | CFLAGS="$CFLAGS -msg_disable unnecincl" 17 | CFLAGS="$CFLAGS -msg_disable nestincl" 18 | CFLAGS="$CFLAGS -msg_disable strctpadding" 19 | CFLAGS="$CFLAGS -msg_disable ansialiascast" 20 | CFLAGS="$CFLAGS -msg_disable inlinestoclsmod" 21 | CFLAGS="$CFLAGS -msg_disable cxxkeyword" 22 | CFLAGS="$CFLAGS -msg_disable longlongsufx" 23 | CFLAGS="$CFLAGS -msg_disable valuepres" 24 | 25 | # STUB 26 | CFLAGS="$CFLAGS -msg_disable truncintcast" 27 | CFLAGS="$CFLAGS -msg_disable trunclongcast" 28 | 29 | CFLAGS="$CFLAGS -msg_disable truncintasn" 30 | CFLAGS="$CFLAGS -msg_disable trunclongint" 31 | CFLAGS="$CFLAGS -msg_disable intconcastsgn" 32 | CFLAGS="$CFLAGS -msg_disable intconstsign" 33 | CFLAGS="$CFLAGS -msg_disable switchlong" 34 | CFLAGS="$CFLAGS -msg_disable subscrbounds2" 35 | 36 | CFLAGS="$CFLAGS -msg_disable hexoctunsign" 37 | 38 | CFLAGS="$CFLAGS -msg_disable ignorecallval" 39 | CFLAGS="$CFLAGS -msg_disable nonstandcast" 40 | CFLAGS="$CFLAGS -msg_disable embedcomment" 41 | CFLAGS="$CFLAGS -msg_disable unreachcode" 42 | CFLAGS="$CFLAGS -msg_disable questcompare2" 43 | CFLAGS="$CFLAGS -msg_disable unusedtop" 44 | CFLAGS="$CFLAGS -msg_disable unrefdecl" 45 | 46 | CFLAGS="$CFLAGS -msg_disable bitnotint" 47 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/clang: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Nginx, Inc. 3 | 4 | 5 | # clang 6 | 7 | 8 | NGX_CLANG_VER=`$CC -v 2>&1 | grep '\(clang\|LLVM\) version' 2>&1 \ 9 | | sed -e 's/^.* version \(.*\)/\1/'` 10 | 11 | echo " + clang version: $NGX_CLANG_VER" 12 | 13 | have=NGX_COMPILER value="\"clang $NGX_CLANG_VER\"" . auto/define 14 | 15 | 16 | CC_TEST_FLAGS="-pipe" 17 | 18 | 19 | # optimizations 20 | 21 | #NGX_CLANG_OPT="-O2" 22 | #NGX_CLANG_OPT="-Oz" 23 | NGX_CLANG_OPT="-O" 24 | 25 | case $CPU in 26 | pentium) 27 | # optimize for Pentium 28 | CPU_OPT="-march=pentium" 29 | NGX_CPU_CACHE_LINE=32 30 | ;; 31 | 32 | pentiumpro | pentium3) 33 | # optimize for Pentium Pro, Pentium II and Pentium III 34 | CPU_OPT="-march=pentiumpro" 35 | NGX_CPU_CACHE_LINE=32 36 | ;; 37 | 38 | pentium4) 39 | # optimize for Pentium 4 40 | CPU_OPT="-march=pentium4" 41 | NGX_CPU_CACHE_LINE=128 42 | ;; 43 | 44 | athlon) 45 | # optimize for Athlon 46 | CPU_OPT="-march=athlon" 47 | NGX_CPU_CACHE_LINE=64 48 | ;; 49 | 50 | opteron) 51 | # optimize for Opteron 52 | CPU_OPT="-march=opteron" 53 | NGX_CPU_CACHE_LINE=64 54 | ;; 55 | 56 | esac 57 | 58 | CC_AUX_FLAGS="$CC_AUX_FLAGS $CPU_OPT" 59 | 60 | 61 | CFLAGS="$CFLAGS -pipe $CPU_OPT" 62 | 63 | if [ ".$PCRE_OPT" = "." ]; then 64 | PCRE_OPT="-O2 -pipe $CPU_OPT" 65 | else 66 | PCRE_OPT="$PCRE_OPT -pipe" 67 | fi 68 | 69 | if [ ".$MD5_OPT" = "." ]; then 70 | MD5_OPT="-O2 -pipe $CPU_OPT" 71 | else 72 | MD5_OPT="$MD5_OPT -pipe" 73 | fi 74 | 75 | if [ ".$ZLIB_OPT" = "." ]; then 76 | ZLIB_OPT="-O2 -pipe $CPU_OPT" 77 | else 78 | ZLIB_OPT="$ZLIB_OPT -pipe" 79 | fi 80 | 81 | 82 | # warnings 83 | 84 | CFLAGS="$CFLAGS $NGX_CLANG_OPT -Wall -Wextra -Wpointer-arith" 85 | CFLAGS="$CFLAGS -Wconditional-uninitialized" 86 | #CFLAGS="$CFLAGS -Wmissing-prototypes" 87 | 88 | # we have a lot of unused function arguments 89 | CFLAGS="$CFLAGS -Wno-unused-parameter" 90 | 91 | # deprecated system OpenSSL library on OS X 92 | if [ "$NGX_SYSTEM" = "Darwin" ]; then 93 | CFLAGS="$CFLAGS -Wno-deprecated-declarations" 94 | fi 95 | 96 | # stop on warning 97 | CFLAGS="$CFLAGS -Werror" 98 | 99 | # debug 100 | CFLAGS="$CFLAGS -g" 101 | 102 | if [ ".$CPP" = "." ]; then 103 | CPP="$CC -E" 104 | fi 105 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/name: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ "$NGX_PLATFORM" != win32 ]; then 7 | 8 | ngx_feature="C compiler" 9 | ngx_feature_name= 10 | ngx_feature_run=yes 11 | ngx_feature_incs= 12 | ngx_feature_path= 13 | ngx_feature_libs= 14 | ngx_feature_test= 15 | . auto/feature 16 | 17 | if [ $ngx_found = no ]; then 18 | echo 19 | echo $0: error: C compiler $CC is not found 20 | echo 21 | exit 1 22 | fi 23 | 24 | fi 25 | 26 | 27 | if [ "$CC" = cl ]; then 28 | NGX_CC_NAME=msvc 29 | echo " + using Microsoft Visual C++ compiler" 30 | 31 | elif [ "$CC" = wcl386 ]; then 32 | NGX_CC_NAME=owc 33 | echo " + using Open Watcom C compiler" 34 | 35 | elif [ "$CC" = bcc32 ]; then 36 | NGX_CC_NAME=bcc 37 | echo " + using Borland C++ compiler" 38 | 39 | elif `$CC -V 2>&1 | grep '^Intel(R) C' >/dev/null 2>&1`; then 40 | NGX_CC_NAME=icc 41 | echo " + using Intel C++ compiler" 42 | 43 | elif `$CC -v 2>&1 | grep 'gcc version' >/dev/null 2>&1`; then 44 | NGX_CC_NAME=gcc 45 | echo " + using GNU C compiler" 46 | 47 | elif `$CC -v 2>&1 | grep '\(clang\|LLVM\) version' >/dev/null 2>&1`; then 48 | NGX_CC_NAME=clang 49 | echo " + using Clang C compiler" 50 | 51 | elif `$CC -V 2>&1 | grep 'Sun C' >/dev/null 2>&1`; then 52 | NGX_CC_NAME=sunc 53 | echo " + using Sun C compiler" 54 | 55 | elif `$CC -V 2>&1 | grep '^Compaq C' >/dev/null 2>&1`; then 56 | NGX_CC_NAME=ccc 57 | echo " + using Compaq C compiler" 58 | 59 | elif `$CC -V 2>&1 | grep '^aCC: ' >/dev/null 2>&1`; then 60 | NGX_CC_NAME=acc 61 | echo " + using HP aC++ compiler" 62 | 63 | else 64 | NGX_CC_NAME=unknown 65 | 66 | fi 67 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/owc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | # Open Watcom C 1.0, 1.2, 1.3 7 | 8 | # optimizations 9 | 10 | # maximize speed 11 | CFLAGS="$CFLAGS -ot" 12 | # reorder instructions for best pipeline usage 13 | CFLAGS="$CFLAGS -op" 14 | # inline intrinsic functions 15 | CFLAGS="$CFLAGS -oi" 16 | # inline expansion 17 | CFLAGS="$CFLAGS -oe" 18 | # disable stack checking calls 19 | CFLAGS="$CFLAGS -s" 20 | 21 | case $CPU in 22 | pentium) 23 | # optimize for Pentium and Athlon 24 | # register-based arguments passing conventions 25 | CPU_OPT="-5r" 26 | # stack-based arguments passing conventions 27 | #CPU_OPT="-5s" 28 | ;; 29 | 30 | pentiumpro) 31 | # optimize for Pentium Pro, Pentium II and Pentium III 32 | # register-based arguments passing conventions 33 | CPU_OPT="-6r" 34 | # stack-based arguments passing conventions 35 | #CPU_OPT="-6s" 36 | ;; 37 | esac 38 | 39 | CFLAGS="$CFLAGS $CPU_OPT" 40 | 41 | 42 | # warnings 43 | 44 | # maximum level 45 | CFLAGS="$CFLAGS -wx" 46 | #CFLAGS="$CFLAGS -w3" 47 | 48 | # stop on warning 49 | CFLAGS="$CFLAGS -we" 50 | 51 | # built target is NT 52 | CFLAGS="$CFLAGS -bt=nt" 53 | 54 | # multithreaded 55 | CFLAGS="$CFLAGS -bm" 56 | 57 | # debug 58 | CFLAGS="$CFLAGS -d2" 59 | 60 | # quiet 61 | CFLAGS="$CFLAGS -zq" 62 | 63 | # Open Watcom C 1.2 64 | have=NGX_HAVE_C99_VARIADIC_MACROS . auto/have 65 | 66 | 67 | # the precompiled headers 68 | #CORE_DEPS="$CORE_DEPS $NGX_OBJS/ngx_config.pch" 69 | #NGX_PCH="$NGX_OBJS/ngx_config.pch" 70 | #NGX_BUILD_PCH="-fhq=$NGX_OBJS/ngx_config.pch" 71 | #NGX_USE_PCH="-fh=$NGX_OBJS/ngx_config.pch" 72 | 73 | 74 | # the link flags, built target is NT GUI mode application 75 | #CORE_LINK="$CORE_LINK -l=nt_win" 76 | 77 | 78 | # the resource file 79 | NGX_RCC="wrc \$(CORE_INCS) -fo=$NGX_OBJS/nginx.res " 80 | NGX_RCC="$NGX_RCC $NGX_WIN32_RC $NGX_OBJS/nginx.exe" 81 | 82 | 83 | ngx_include_opt="-i=" 84 | ngx_objout="-fo" 85 | ngx_binout="-fe=" 86 | ngx_objext="obj" 87 | ngx_binext=".exe" 88 | 89 | ngx_regex_dirsep='\\' 90 | ngx_dirsep="\\" 91 | 92 | ngx_long_start=' ' 93 | ngx_long_end=' ' 94 | ngx_long_regex_cont=' \&\ 95 | ' 96 | ngx_long_cont=' & 97 | ' 98 | 99 | ngx_regex_cont=' \&\ 100 | ' 101 | ngx_cont=' & 102 | ' 103 | ngx_tab=' & 104 | ' 105 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/define: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_AUTO_CONFIG_H 7 | 8 | #ifndef $have 9 | #define $have $value 10 | #endif 11 | 12 | END 13 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/endianness: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for system byte ordering ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for system byte ordering 12 | 13 | END 14 | 15 | 16 | cat << END > $NGX_AUTOTEST.c 17 | 18 | int main() { 19 | int i = 0x11223344; 20 | char *p; 21 | 22 | p = (char *) &i; 23 | if (*p == 0x44) return 0; 24 | return 1; 25 | } 26 | 27 | END 28 | 29 | ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \ 30 | -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs" 31 | 32 | eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 33 | 34 | if [ -x $NGX_AUTOTEST ]; then 35 | if $NGX_AUTOTEST >/dev/null 2>&1; then 36 | echo " little endian" 37 | have=NGX_HAVE_LITTLE_ENDIAN . auto/have 38 | else 39 | echo " big endian" 40 | fi 41 | 42 | rm -rf $NGX_AUTOTEST* 43 | 44 | else 45 | rm -rf $NGX_AUTOTEST* 46 | 47 | echo 48 | echo "$0: error: cannot detect system byte ordering" 49 | exit 1 50 | fi 51 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/have: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_AUTO_CONFIG_H 7 | 8 | #ifndef $have 9 | #define $have 1 10 | #endif 11 | 12 | END 13 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/have_headers: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_AUTO_HEADERS_H 7 | 8 | #ifndef $have 9 | #define $have 1 10 | #endif 11 | 12 | END 13 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/headers: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | ngx_include="unistd.h"; . auto/include 7 | ngx_include="inttypes.h"; . auto/include 8 | ngx_include="limits.h"; . auto/include 9 | ngx_include="sys/filio.h"; . auto/include 10 | ngx_include="sys/param.h"; . auto/include 11 | ngx_include="sys/mount.h"; . auto/include 12 | ngx_include="sys/statvfs.h"; . auto/include 13 | ngx_include="crypt.h"; . auto/include 14 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/include: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for $ngx_include ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for $ngx_include 12 | 13 | END 14 | 15 | 16 | ngx_found=no 17 | 18 | cat << END > $NGX_AUTOTEST.c 19 | 20 | $NGX_INCLUDE_SYS_PARAM_H 21 | #include <$ngx_include> 22 | 23 | int main() { 24 | return 0; 25 | } 26 | 27 | END 28 | 29 | 30 | ngx_test="$CC -o $NGX_AUTOTEST $NGX_AUTOTEST.c" 31 | 32 | eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 33 | 34 | if [ -x $NGX_AUTOTEST ]; then 35 | 36 | ngx_found=yes 37 | 38 | echo " found" 39 | 40 | ngx_name=`echo $ngx_include \ 41 | | tr abcdefghijklmnopqrstuvwxyz/. ABCDEFGHIJKLMNOPQRSTUVWXYZ__` 42 | 43 | 44 | have=NGX_HAVE_$ngx_name . auto/have_headers 45 | 46 | eval "NGX_INCLUDE_$ngx_name='#include <$ngx_include>'" 47 | 48 | #STUB 49 | eval "NGX_$ngx_name='#include <$ngx_include>'" 50 | 51 | else 52 | echo " not found" 53 | 54 | echo "----------" >> $NGX_AUTOCONF_ERR 55 | cat $NGX_AUTOTEST.c >> $NGX_AUTOCONF_ERR 56 | echo "----------" >> $NGX_AUTOCONF_ERR 57 | echo $ngx_test >> $NGX_AUTOCONF_ERR 58 | echo "----------" >> $NGX_AUTOCONF_ERR 59 | fi 60 | 61 | rm -rf $NGX_AUTOTEST* 62 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/init: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | NGX_MAKEFILE=$NGX_OBJS/Makefile 7 | NGX_MODULES_C=$NGX_OBJS/ngx_modules.c 8 | 9 | NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h 10 | NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h 11 | 12 | NGX_AUTOTEST=$NGX_OBJS/autotest 13 | NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err 14 | 15 | # STUBs 16 | NGX_ERR=$NGX_OBJS/autoconf.err 17 | MAKEFILE=$NGX_OBJS/Makefile 18 | 19 | 20 | NGX_PCH= 21 | NGX_USE_PCH= 22 | 23 | 24 | # check the echo's "-n" option and "\c" capability 25 | 26 | if echo "test\c" | grep c >/dev/null; then 27 | 28 | if echo -n test | grep n >/dev/null; then 29 | ngx_n= 30 | ngx_c= 31 | 32 | else 33 | ngx_n=-n 34 | ngx_c= 35 | fi 36 | 37 | else 38 | ngx_n= 39 | ngx_c='\c' 40 | fi 41 | 42 | 43 | # create Makefile 44 | 45 | cat << END > Makefile 46 | 47 | default: build 48 | 49 | clean: 50 | rm -rf Makefile $NGX_OBJS 51 | END 52 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ $USE_PCRE = YES -o $PCRE != NONE ]; then 7 | . auto/lib/pcre/conf 8 | 9 | else 10 | if [ $USE_PCRE = DISABLED -a $HTTP_REWRITE = YES ]; then 11 | 12 | cat << END 13 | 14 | $0: error: the HTTP rewrite module requires the PCRE library. 15 | You can either disable the module by using --without-http_rewrite_module 16 | option or you have to enable the PCRE support. 17 | 18 | END 19 | exit 1 20 | fi 21 | fi 22 | 23 | 24 | if [ $USE_OPENSSL = YES ]; then 25 | . auto/lib/openssl/conf 26 | fi 27 | 28 | if [ $USE_MD5 = YES ]; then 29 | 30 | if [ $USE_OPENSSL = YES ]; then 31 | have=NGX_HAVE_OPENSSL_MD5_H . auto/have 32 | have=NGX_OPENSSL_MD5 . auto/have 33 | have=NGX_HAVE_MD5 . auto/have 34 | MD5=YES 35 | MD5_LIB=OpenSSL 36 | 37 | else 38 | . auto/lib/md5/conf 39 | fi 40 | 41 | fi 42 | 43 | if [ $USE_SHA1 = YES ]; then 44 | 45 | if [ $USE_OPENSSL = YES ]; then 46 | have=NGX_HAVE_OPENSSL_SHA1_H . auto/have 47 | have=NGX_HAVE_SHA1 . auto/have 48 | SHA1=YES 49 | SHA1_LIB=OpenSSL 50 | 51 | else 52 | . auto/lib/sha1/conf 53 | fi 54 | 55 | fi 56 | 57 | if [ $USE_ZLIB = YES ]; then 58 | . auto/lib/zlib/conf 59 | fi 60 | 61 | if [ $USE_LIBXSLT != NO ]; then 62 | . auto/lib/libxslt/conf 63 | fi 64 | 65 | if [ $USE_LIBGD != NO ]; then 66 | . auto/lib/libgd/conf 67 | fi 68 | 69 | if [ $USE_PERL != NO ]; then 70 | . auto/lib/perl/conf 71 | fi 72 | 73 | if [ $USE_GEOIP != NO ]; then 74 | . auto/lib/geoip/conf 75 | fi 76 | 77 | if [ $NGX_GOOGLE_PERFTOOLS = YES ]; then 78 | . auto/lib/google-perftools/conf 79 | fi 80 | 81 | if [ $NGX_LIBATOMIC != NO ]; then 82 | . auto/lib/libatomic/conf 83 | fi 84 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/geoip/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | ngx_feature="GeoIP library" 7 | ngx_feature_name= 8 | ngx_feature_run=no 9 | ngx_feature_incs="#include " 10 | ngx_feature_path= 11 | ngx_feature_libs="-lGeoIP" 12 | ngx_feature_test="GeoIP_open(NULL, 0)" 13 | . auto/feature 14 | 15 | 16 | if [ $ngx_found = no ]; then 17 | 18 | # FreeBSD port 19 | 20 | ngx_feature="GeoIP library in /usr/local/" 21 | ngx_feature_path="/usr/local/include" 22 | 23 | if [ $NGX_RPATH = YES ]; then 24 | ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lGeoIP" 25 | else 26 | ngx_feature_libs="-L/usr/local/lib -lGeoIP" 27 | fi 28 | 29 | . auto/feature 30 | fi 31 | 32 | 33 | if [ $ngx_found = no ]; then 34 | 35 | # NetBSD port 36 | 37 | ngx_feature="GeoIP library in /usr/pkg/" 38 | ngx_feature_path="/usr/pkg/include" 39 | 40 | if [ $NGX_RPATH = YES ]; then 41 | ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lGeoIP" 42 | else 43 | ngx_feature_libs="-L/usr/pkg/lib -lGeoIP" 44 | fi 45 | 46 | . auto/feature 47 | fi 48 | 49 | 50 | if [ $ngx_found = no ]; then 51 | 52 | # MacPorts 53 | 54 | ngx_feature="GeoIP library in /opt/local/" 55 | ngx_feature_path="/opt/local/include" 56 | 57 | if [ $NGX_RPATH = YES ]; then 58 | ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lGeoIP" 59 | else 60 | ngx_feature_libs="-L/opt/local/lib -lGeoIP" 61 | fi 62 | 63 | . auto/feature 64 | fi 65 | 66 | 67 | if [ $ngx_found = yes ]; then 68 | 69 | CORE_INCS="$CORE_INCS $ngx_feature_path" 70 | 71 | if [ $USE_GEOIP = YES ]; then 72 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 73 | fi 74 | 75 | NGX_LIB_GEOIP=$ngx_feature_libs 76 | 77 | if [ $NGX_IPV6 = YES ]; then 78 | ngx_feature="GeoIP IPv6 support" 79 | ngx_feature_name="NGX_HAVE_GEOIP_V6" 80 | ngx_feature_run=no 81 | ngx_feature_incs="#include 82 | #include " 83 | #ngx_feature_path= 84 | #ngx_feature_libs= 85 | ngx_feature_test="printf(\"%d\", GEOIP_CITY_EDITION_REV0_V6);" 86 | . auto/feature 87 | fi 88 | 89 | else 90 | 91 | cat << END 92 | 93 | $0: error: the GeoIP module requires the GeoIP library. 94 | You can either do not enable the module or install the library. 95 | 96 | END 97 | 98 | exit 1 99 | fi 100 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/google-perftools/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | ngx_feature="Google perftools" 7 | ngx_feature_name= 8 | ngx_feature_run=no 9 | ngx_feature_incs= 10 | ngx_feature_path= 11 | ngx_feature_libs="-lprofiler" 12 | ngx_feature_test="ProfilerStop()" 13 | . auto/feature 14 | 15 | 16 | if [ $ngx_found = no ]; then 17 | 18 | # FreeBSD port 19 | 20 | ngx_feature="Google perftools in /usr/local/" 21 | 22 | if [ $NGX_RPATH = YES ]; then 23 | ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lprofiler" 24 | else 25 | ngx_feature_libs="-L/usr/local/lib -lprofiler" 26 | fi 27 | 28 | . auto/feature 29 | fi 30 | 31 | 32 | if [ $ngx_found = no ]; then 33 | 34 | # MacPorts 35 | 36 | ngx_feature="Google perftools in /opt/local/" 37 | 38 | if [ $NGX_RPATH = YES ]; then 39 | ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lprofiler" 40 | else 41 | ngx_feature_libs="-L/opt/local/lib -lprofiler" 42 | fi 43 | 44 | . auto/feature 45 | fi 46 | 47 | 48 | if [ $ngx_found = yes ]; then 49 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 50 | 51 | else 52 | 53 | cat << END 54 | 55 | $0: error: the Google perftools module requires the Google perftools 56 | library. You can either do not enable the module or install the library. 57 | 58 | END 59 | 60 | exit 1 61 | fi 62 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libatomic/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ $NGX_LIBATOMIC != YES ]; then 7 | 8 | have=NGX_HAVE_LIBATOMIC . auto/have 9 | CORE_INCS="$CORE_INCS $NGX_LIBATOMIC/src" 10 | LINK_DEPS="$LINK_DEPS $NGX_LIBATOMIC/src/libatomic_ops.a" 11 | CORE_LIBS="$CORE_LIBS $NGX_LIBATOMIC/src/libatomic_ops.a" 12 | 13 | else 14 | 15 | ngx_feature="atomic_ops library" 16 | ngx_feature_name=NGX_HAVE_LIBATOMIC 17 | ngx_feature_run=yes 18 | ngx_feature_incs="#define AO_REQUIRE_CAS 19 | #include " 20 | ngx_feature_path= 21 | ngx_feature_libs="-latomic_ops" 22 | ngx_feature_test="long n = 0; 23 | if (!AO_compare_and_swap(&n, 0, 1)) 24 | return 1; 25 | if (AO_fetch_and_add(&n, 1) != 1) 26 | return 1; 27 | if (n != 2) 28 | return 1; 29 | AO_nop();" 30 | . auto/feature 31 | 32 | if [ $ngx_found = yes ]; then 33 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 34 | else 35 | 36 | cat << END 37 | 38 | $0: error: libatomic_ops library was not found. 39 | 40 | END 41 | exit 1 42 | fi 43 | fi 44 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libatomic/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_MAKEFILE 7 | 8 | $NGX_LIBATOMIC/src/libatomic_ops.a: $NGX_LIBATOMIC/Makefile 9 | cd $NGX_LIBATOMIC && \$(MAKE) 10 | 11 | $NGX_LIBATOMIC/Makefile: $NGX_MAKEFILE 12 | cd $NGX_LIBATOMIC \\ 13 | && if [ -f Makefile ]; then \$(MAKE) distclean; fi \\ 14 | && ./configure 15 | 16 | END 17 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libgd/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | ngx_feature="GD library" 7 | ngx_feature_name= 8 | ngx_feature_run=no 9 | ngx_feature_incs="#include " 10 | ngx_feature_path= 11 | ngx_feature_libs="-lgd" 12 | ngx_feature_test="gdImagePtr img = gdImageCreateFromGifPtr(1, NULL);" 13 | . auto/feature 14 | 15 | 16 | if [ $ngx_found = no ]; then 17 | 18 | # FreeBSD port 19 | 20 | ngx_feature="GD library in /usr/local/" 21 | ngx_feature_path="/usr/local/include" 22 | 23 | if [ $NGX_RPATH = YES ]; then 24 | ngx_feature_libs="-R/usr/local/lib -L/usr/local/lib -lgd" 25 | else 26 | ngx_feature_libs="-L/usr/local/lib -lgd" 27 | fi 28 | 29 | . auto/feature 30 | fi 31 | 32 | 33 | if [ $ngx_found = no ]; then 34 | 35 | # NetBSD port 36 | 37 | ngx_feature="GD library in /usr/pkg/" 38 | ngx_feature_path="/usr/pkg/include" 39 | 40 | if [ $NGX_RPATH = YES ]; then 41 | ngx_feature_libs="-R/usr/pkg/lib -L/usr/pkg/lib -lgd" 42 | else 43 | ngx_feature_libs="-L/usr/pkg/lib -lgd" 44 | fi 45 | 46 | . auto/feature 47 | fi 48 | 49 | 50 | if [ $ngx_found = no ]; then 51 | 52 | # MacPorts 53 | 54 | ngx_feature="GD library in /opt/local/" 55 | ngx_feature_path="/opt/local/include" 56 | 57 | if [ $NGX_RPATH = YES ]; then 58 | ngx_feature_libs="-R/opt/local/lib -L/opt/local/lib -lgd" 59 | else 60 | ngx_feature_libs="-L/opt/local/lib -lgd" 61 | fi 62 | 63 | . auto/feature 64 | fi 65 | 66 | 67 | if [ $ngx_found = yes ]; then 68 | 69 | CORE_INCS="$CORE_INCS $ngx_feature_path" 70 | 71 | if [ $USE_LIBGD = YES ]; then 72 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 73 | fi 74 | 75 | NGX_LIB_LIBGD=$ngx_feature_libs 76 | 77 | else 78 | 79 | cat << END 80 | 81 | $0: error: the HTTP image filter module requires the GD library. 82 | You can either do not enable the module or install the libraries. 83 | 84 | END 85 | 86 | exit 1 87 | 88 | fi 89 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ $PCRE != NONE -a $PCRE != NO -a $PCRE != YES ]; then 7 | . auto/lib/pcre/make 8 | fi 9 | 10 | if [ $MD5 != NONE -a $MD5 != NO -a $MD5 != YES ]; then 11 | . auto/lib/md5/make 12 | fi 13 | 14 | if [ $SHA1 != NONE -a $SHA1 != NO -a $SHA1 != YES ]; then 15 | . auto/lib/sha1/make 16 | fi 17 | 18 | if [ $OPENSSL != NONE -a $OPENSSL != NO -a $OPENSSL != YES ]; then 19 | . auto/lib/openssl/make 20 | fi 21 | 22 | if [ $ZLIB != NONE -a $ZLIB != NO -a $ZLIB != YES ]; then 23 | . auto/lib/zlib/make 24 | fi 25 | 26 | if [ $NGX_LIBATOMIC != NO -a $NGX_LIBATOMIC != YES ]; then 27 | . auto/lib/libatomic/make 28 | fi 29 | 30 | if [ $USE_PERL != NO ]; then 31 | . auto/lib/perl/make 32 | fi 33 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | case "$NGX_CC_NAME" in 7 | 8 | msvc) 9 | ngx_makefile=makefile.msvc 10 | ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC MD5_ASM=$MD5_ASM" 11 | ngx_md5="MD5=\"$MD5\"" 12 | ;; 13 | 14 | owc) 15 | ngx_makefile=makefile.owc 16 | ngx_opt="CPU_OPT=\"$CPU_OPT\"" 17 | ngx_md5=`echo MD5=\"$MD5\" | sed -e "s/\//$ngx_regex_dirsep/g"` 18 | ;; 19 | 20 | bcc) 21 | ngx_makefile=makefile.bcc 22 | ngx_opt="-DCPU_OPT=\"$CPU_OPT\" -DMD5_ASM=$MD5_ASM" 23 | ngx_md5=`echo \-DMD5=\"$MD5\" | sed -e "s/\//$ngx_regex_dirsep/g"` 24 | ;; 25 | 26 | esac 27 | 28 | 29 | done=NO 30 | 31 | 32 | case "$NGX_PLATFORM" in 33 | 34 | win32) 35 | cat << END >> $NGX_MAKEFILE 36 | 37 | `echo "$MD5/md5.lib: $NGX_MAKEFILE" | sed -e "s/\//$ngx_regex_dirsep/g"` 38 | \$(MAKE) -f auto/lib/md5/$ngx_makefile $ngx_opt $ngx_md5 39 | 40 | END 41 | 42 | done=YES 43 | ;; 44 | 45 | SunOS:*:i86pc) 46 | if [ $MD5_ASM = YES ]; then 47 | 48 | cat << END >> $NGX_MAKEFILE 49 | 50 | $MD5/libmd5.a: $NGX_MAKEFILE 51 | cd $MD5 \\ 52 | && \$(MAKE) CFLAGS="$MD5_OPT -DSOL -DMD5_ASM -DL_ENDIAN" \\ 53 | CC="\$(CC)" CPP="\$(CPP)" \\ 54 | MD5_ASM_OBJ=asm/mx86-sol.o clean libmd5.a 55 | 56 | END 57 | 58 | done=YES 59 | fi 60 | ;; 61 | 62 | # FreeBSD: i386 63 | # Linux: i686 64 | 65 | *:i386 | *:i686) 66 | if [ $MD5_ASM = YES ]; then 67 | 68 | cat << END >> $NGX_MAKEFILE 69 | 70 | $MD5/libmd5.a: $NGX_MAKEFILE 71 | cd $MD5 \\ 72 | && \$(MAKE) CFLAGS="$MD5_OPT -DELF -DMD5_ASM -DL_ENDIAN" \\ 73 | CC="\$(CC)" CPP="\$(CPP)" \\ 74 | MD5_ASM_OBJ=asm/mx86-elf.o clean libmd5.a 75 | 76 | END 77 | 78 | done=YES 79 | fi 80 | ;; 81 | 82 | esac 83 | 84 | 85 | if [ $done = NO ]; then 86 | 87 | cat << END >> $NGX_MAKEFILE 88 | 89 | $MD5/libmd5.a: $NGX_MAKEFILE 90 | cd $MD5 \\ 91 | && \$(MAKE) CFLAGS="$MD5_OPT" \\ 92 | CC="\$(CC)" MD5_ASM_OBJ= clean libmd5.a 93 | 94 | END 95 | 96 | fi 97 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN 7 | 8 | !if "$(MD5_ASM)" == "YES" 9 | 10 | md5.lib: 11 | cd $(MD5) 12 | bcc32 -c $(CFLAGS) -DMD5_ASM md5_dgst.c 13 | tlib md5.lib +md5_dgst.obj +"asm\m-win32.obj" 14 | 15 | !else 16 | 17 | md5.lib: 18 | cd $(MD5) 19 | bcc32 -c $(CFLAGS) md5_dgst.c 20 | tlib md5.lib +md5_dgst.obj 21 | 22 | !endif 23 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.msvc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN 7 | 8 | !IF "$(MD5_ASM)" == "YES" 9 | 10 | md5.lib: 11 | cd $(MD5) 12 | cl -c $(CFLAGS) -D MD5_ASM md5_dgst.c 13 | link -lib -out:md5.lib md5_dgst.obj asm/m-win32.obj 14 | 15 | !ELSE 16 | 17 | md5.lib: 18 | cd $(MD5) 19 | cl -c $(CFLAGS) md5_dgst.c 20 | link -lib -out:md5.lib md5_dgst.obj 21 | 22 | !ENDIF 23 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.owc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -zq -bt=nt -bm -ot -op -oi -oe -s $(CPU_OPT) 7 | 8 | md5.lib: 9 | cd $(MD5) 10 | wcl386 -c $(CFLAGS) -dL_ENDIAN md5_dgst.c 11 | wlib -n md5.lib md5_dgst.obj 12 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | case "$CC" in 7 | 8 | cl) 9 | 10 | cat << END >> $NGX_MAKEFILE 11 | 12 | $OPENSSL/openssl/include/openssl/ssl.h: $NGX_MAKEFILE 13 | \$(MAKE) -f auto/lib/openssl/makefile.msvc \ 14 | OPENSSL="$OPENSSL" OPENSSL_OPT="$OPENSSL_OPT" 15 | 16 | END 17 | 18 | ;; 19 | 20 | bcc32) 21 | 22 | ngx_opt=`echo "-DOPENSSL=\"$OPENSSL\" -DOPENSSL_OPT=\"$OPENSSL_OPT\"" \ 23 | | sed -e "s/\//$ngx_regex_dirsep/g"` 24 | 25 | cat << END >> $NGX_MAKEFILE 26 | 27 | `echo "$OPENSSL\\openssl\\lib\\libeay32.lib: \ 28 | $OPENSSL\\openssl\\include\\openssl\\ssl.h" \ 29 | | sed -e "s/\//$ngx_regex_dirsep/g"` 30 | 31 | `echo "$OPENSSL\\openssl\\lib\\ssleay32.lib: \ 32 | $OPENSSL\\openssl\\include\\openssl\\ssl.h" \ 33 | | sed -e "s/\//$ngx_regex_dirsep/g"` 34 | 35 | `echo "$OPENSSL\\openssl\\include\\openssl\\ssl.h: $NGX_MAKEFILE" \ 36 | | sed -e "s/\//$ngx_regex_dirsep/g"` 37 | \$(MAKE) -f auto/lib/openssl/makefile.bcc $ngx_opt 38 | 39 | END 40 | 41 | ;; 42 | 43 | *) 44 | case $OPENSSL in 45 | /*) ngx_prefix="$OPENSSL/.openssl" ;; 46 | *) ngx_prefix="$PWD/$OPENSSL/.openssl" ;; 47 | esac 48 | 49 | cat << END >> $NGX_MAKEFILE 50 | 51 | $OPENSSL/.openssl/include/openssl/ssl.h: $NGX_MAKEFILE 52 | cd $OPENSSL \\ 53 | && if [ -f Makefile ]; then \$(MAKE) clean; fi \\ 54 | && ./config --prefix=$ngx_prefix no-shared $OPENSSL_OPT \\ 55 | && \$(MAKE) \\ 56 | && \$(MAKE) install_sw LIBDIR=lib 57 | 58 | END 59 | 60 | ;; 61 | 62 | esac 63 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/makefile.bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | all: 7 | cd $(OPENSSL) 8 | 9 | perl Configure BC-32 no-shared --prefix=openssl $(OPENSSL_OPT) 10 | 11 | ms\do_nasm 12 | 13 | $(MAKE) -f ms\bcb.mak 14 | $(MAKE) -f ms\bcb.mak install 15 | 16 | # Borland's make does not expand "[ch]" in 17 | # copy "inc32\openssl\*.[ch]" "openssl\include\openssl" 18 | copy inc32\openssl\*.h openssl\include\openssl 19 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/makefile.msvc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | all: 7 | cd $(OPENSSL) 8 | 9 | perl Configure VC-WIN32 no-shared --prefix=openssl $(OPENSSL_OPT) 10 | 11 | ms\do_ms 12 | 13 | $(MAKE) -f ms\nt.mak 14 | $(MAKE) -f ms\nt.mak install 15 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | case "$NGX_CC_NAME" in 7 | 8 | msvc) 9 | ngx_makefile=makefile.msvc 10 | ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC" 11 | ngx_pcre="PCRE=\"$PCRE\"" 12 | ;; 13 | 14 | owc) 15 | ngx_makefile=makefile.owc 16 | ngx_opt="CPU_OPT=\"$CPU_OPT\"" 17 | ngx_pcre=`echo PCRE=\"$PCRE\" | sed -e "s/\//$ngx_regex_dirsep/g"` 18 | ;; 19 | 20 | bcc) 21 | ngx_makefile=makefile.bcc 22 | ngx_opt="-DCPU_OPT=\"$CPU_OPT\"" 23 | ngx_pcre=`echo \-DPCRE=\"$PCRE\" | sed -e "s/\//$ngx_regex_dirsep/g"` 24 | ;; 25 | 26 | *) 27 | ngx_makefile= 28 | ;; 29 | 30 | esac 31 | 32 | 33 | if [ -n "$ngx_makefile" ]; then 34 | 35 | cat << END >> $NGX_MAKEFILE 36 | 37 | `echo "$PCRE/pcre.lib: $PCRE/pcre.h $NGX_MAKEFILE" \ 38 | | sed -e "s/\//$ngx_regex_dirsep/g"` 39 | \$(MAKE) -f auto/lib/pcre/$ngx_makefile $ngx_pcre $ngx_opt 40 | 41 | `echo "$PCRE/pcre.h:" | sed -e "s/\//$ngx_regex_dirsep/g"` 42 | \$(MAKE) -f auto/lib/pcre/$ngx_makefile $ngx_pcre pcre.h 43 | 44 | END 45 | 46 | else 47 | 48 | cat << END >> $NGX_MAKEFILE 49 | 50 | $PCRE/pcre.h: $PCRE/Makefile 51 | 52 | $PCRE/Makefile: $NGX_MAKEFILE 53 | cd $PCRE \\ 54 | && if [ -f Makefile ]; then \$(MAKE) distclean; fi \\ 55 | && CC="\$(CC)" CFLAGS="$PCRE_OPT" \\ 56 | ./configure --disable-shared $PCRE_CONF_OPT 57 | 58 | $PCRE/.libs/libpcre.a: $PCRE/Makefile 59 | cd $PCRE \\ 60 | && \$(MAKE) libpcre.la 61 | 62 | END 63 | 64 | fi 65 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -q -O2 -tWM -w-8004 $(CPU_OPT) 7 | PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 \ 8 | -DSUPPORT_PCRE8 -DHAVE_MEMMOVE 9 | 10 | 11 | pcre.lib: 12 | cd $(PCRE) 13 | 14 | bcc32 -c $(CFLAGS) -I. $(PCREFLAGS) pcre_*.c 15 | 16 | copy /y nul pcre.lst 17 | for %n in (*.obj) do @echo +%n ^^& >> pcre.lst 18 | echo + >> pcre.lst 19 | 20 | tlib pcre.lib @pcre.lst 21 | 22 | pcre.h: 23 | cd $(PCRE) 24 | 25 | copy /y pcre.h.generic pcre.h 26 | copy /y config.h.generic config.h 27 | copy /y pcre_chartables.c.dist pcre_chartables.c 28 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.msvc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) 7 | PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 \ 8 | -DSUPPORT_PCRE8 -DHAVE_MEMMOVE 9 | 10 | 11 | pcre.lib: 12 | cd $(PCRE) 13 | 14 | cl -nologo -c $(CFLAGS) -I . $(PCREFLAGS) pcre_*.c 15 | 16 | link -lib -out:pcre.lib -verbose:lib pcre_*.obj 17 | 18 | pcre.h: 19 | cd $(PCRE) 20 | 21 | copy /y pcre.h.generic pcre.h 22 | copy /y config.h.generic config.h 23 | copy /y pcre_chartables.c.dist pcre_chartables.c 24 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.owc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -c -zq -bt=nt -ot -op -oi -oe -s -bm $(CPU_OPT) 7 | PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 & 8 | -DSUPPORT_PCRE8 -DHAVE_MEMMOVE 9 | 10 | 11 | pcre.lib: 12 | cd $(PCRE) 13 | 14 | wcl386 $(CFLAGS) -i=. $(PCREFLAGS) pcre_*.c 15 | 16 | dir /b *.obj > pcre.lst 17 | 18 | wlib -n pcre.lib @pcre.lst 19 | 20 | pcre.h: 21 | cd $(PCRE) 22 | 23 | copy /y pcre.h.generic pcre.h 24 | copy /y config.h.generic config.h 25 | copy /y pcre_chartables.c.dist pcre_chartables.c 26 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/perl/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo "checking for perl" 7 | 8 | 9 | NGX_PERL_VER=`$NGX_PERL -v 2>&1 | grep '^This is perl' 2>&1 \ 10 | | sed -e 's/^This is perl, \(.*\)/\1/'` 11 | 12 | if test -n "$NGX_PERL_VER"; then 13 | echo " + perl version: $NGX_PERL_VER" 14 | 15 | if [ "`$NGX_PERL -e 'use 5.006001; print "OK"'`" != "OK" ]; then 16 | echo 17 | echo "$0: error: perl 5.6.1 or higher is required" 18 | echo 19 | 20 | exit 1; 21 | fi 22 | 23 | if [ "`$NGX_PERL -MExtUtils::Embed -e 'print "OK"'`" != "OK" ]; then 24 | echo 25 | echo "$0: error: perl module ExtUtils::Embed is required" 26 | echo 27 | 28 | exit 1; 29 | fi 30 | 31 | NGX_PERL_CFLAGS="$CFLAGS `$NGX_PERL -MExtUtils::Embed -e ccopts`" 32 | NGX_PM_CFLAGS=`$NGX_PERL -MExtUtils::Embed -e ccopts` 33 | 34 | # gcc 4.1/4.2 warn about unused values in pTHX_ 35 | NGX_PERL_CFLAGS=`echo $NGX_PERL_CFLAGS \ 36 | | sed -e 's/-Wunused-value/-Wno-unused-value/'` 37 | # icc8 warns 'declaration hides parameter "my_perl"' in ENTER and LEAVE 38 | NGX_PERL_CFLAGS=`echo $NGX_PERL_CFLAGS \ 39 | | sed -e 's/-wd171/-wd171 -wd1599/'` 40 | 41 | ngx_perl_ldopts=`$NGX_PERL -MExtUtils::Embed -e ldopts` 42 | 43 | ngx_perl_dlext=`$NGX_PERL -MConfig -e 'print $Config{dlext}'` 44 | ngx_perl_libdir="src/http/modules/perl/blib/arch/auto" 45 | ngx_perl_module="$ngx_perl_libdir/nginx/nginx.$ngx_perl_dlext" 46 | 47 | if $NGX_PERL -V:usemultiplicity | grep define > /dev/null; then 48 | have=NGX_HAVE_PERL_MULTIPLICITY . auto/have 49 | echo " + perl interpreter multiplicity found" 50 | fi 51 | 52 | if $NGX_PERL -V:useithreads | grep undef > /dev/null; then 53 | # FreeBSD port wants to link with -pthread non-threaded perl 54 | ngx_perl_ldopts=`echo $ngx_perl_ldopts | sed 's/ -pthread//'` 55 | fi 56 | 57 | if [ "$NGX_SYSTEM" = "Darwin" ]; then 58 | # OS X system perl wants to link universal binaries 59 | ngx_perl_ldopts=`echo $ngx_perl_ldopts \ 60 | | sed -e 's/-arch i386//' -e 's/-arch x86_64//'` 61 | fi 62 | 63 | if [ $USE_PERL = YES ]; then 64 | CORE_LINK="$CORE_LINK $ngx_perl_ldopts" 65 | fi 66 | 67 | NGX_LIB_PERL="$ngx_perl_ldopts" 68 | 69 | if test -n "$NGX_PERL_MODULES"; then 70 | have=NGX_PERL_MODULES value="(u_char *) \"$NGX_PERL_MODULES\"" 71 | . auto/define 72 | NGX_PERL_MODULES_MAN=$NGX_PERL_MODULES/man3 73 | fi 74 | 75 | else 76 | echo 77 | echo "$0: error: perl 5.6.1 or higher is required" 78 | echo 79 | 80 | exit 1; 81 | fi 82 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/perl/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | v=`grep 'define NGINX_VERSION' src/core/nginx.h | sed -e 's/^.*"\(.*\)".*/\1/'` 7 | 8 | 9 | cat << END >> $NGX_MAKEFILE 10 | 11 | $NGX_OBJS/src/http/modules/perl/ngx_http_perl_module.o: \\ 12 | $NGX_OBJS/$ngx_perl_module 13 | 14 | $NGX_OBJS/$ngx_perl_module: \\ 15 | \$(CORE_DEPS) \$(HTTP_DEPS) \\ 16 | src/http/modules/perl/ngx_http_perl_module.h \\ 17 | $NGX_OBJS/src/http/modules/perl/Makefile 18 | cd $NGX_OBJS/src/http/modules/perl && \$(MAKE) 19 | 20 | rm -rf $NGX_OBJS/install_perl 21 | 22 | 23 | $NGX_OBJS/src/http/modules/perl/Makefile: \\ 24 | $NGX_AUTO_CONFIG_H \\ 25 | src/core/nginx.h \\ 26 | src/http/modules/perl/Makefile.PL \\ 27 | src/http/modules/perl/nginx.pm \\ 28 | src/http/modules/perl/nginx.xs \\ 29 | src/http/modules/perl/typemap 30 | sed "s/%%VERSION%%/$v/" src/http/modules/perl/nginx.pm > \\ 31 | $NGX_OBJS/src/http/modules/perl/nginx.pm 32 | cp -p src/http/modules/perl/nginx.xs $NGX_OBJS/src/http/modules/perl/ 33 | cp -p src/http/modules/perl/typemap $NGX_OBJS/src/http/modules/perl/ 34 | cp -p src/http/modules/perl/Makefile.PL $NGX_OBJS/src/http/modules/perl/ 35 | 36 | cd $NGX_OBJS/src/http/modules/perl \\ 37 | && NGX_PM_CFLAGS="\$(NGX_PM_CFLAGS) -g $NGX_CC_OPT" \\ 38 | NGX_INCS="$CORE_INCS $NGX_OBJS $HTTP_INCS" \\ 39 | NGX_DEPS="\$(CORE_DEPS) \$(HTTP_DEPS)" \\ 40 | $NGX_PERL Makefile.PL \\ 41 | LIB=$NGX_PERL_MODULES \\ 42 | INSTALLSITEMAN3DIR=$NGX_PERL_MODULES_MAN 43 | 44 | END 45 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ $SHA1 != NONE ]; then 7 | 8 | have=NGX_HAVE_SHA1 . auto/have 9 | CORE_INCS="$CORE_INCS $SHA1" 10 | 11 | case "$NGX_CC_NAME" in 12 | 13 | msvc | owc | bcc) 14 | LINK_DEPS="$LINK_DEPS $SHA1/sha1.lib" 15 | CORE_LIBS="$CORE_LIBS $SHA1/sha1.lib" 16 | ;; 17 | 18 | icc) 19 | LINK_DEPS="$LINK_DEPS $SHA1/libsha.a" 20 | 21 | # to allow -ipo optimization we link with the *.o but not library 22 | CORE_LIBS="$CORE_LIBS $SHA1/sha1_dgst.o" 23 | 24 | if [ $SHA1_ASM = YES ]; then 25 | CORE_LIBS="$CORE_LIBS $SHA1/asm/sx86-elf.o" 26 | fi 27 | ;; 28 | 29 | *) 30 | LINK_DEPS="$LINK_DEPS $SHA1/libsha.a" 31 | CORE_LIBS="$CORE_LIBS $SHA1/libsha.a" 32 | #CORE_LIBS="$CORE_LIBS -L $SHA1 -lsha" 33 | ;; 34 | 35 | esac 36 | 37 | else 38 | 39 | if [ "$NGX_PLATFORM" != win32 ]; then 40 | 41 | SHA1=NO 42 | 43 | # FreeBSD 44 | 45 | ngx_feature="sha1 in system md library" 46 | ngx_feature_name=NGX_HAVE_SHA1 47 | ngx_feature_run=no 48 | ngx_feature_incs="#include " 49 | ngx_feature_path= 50 | ngx_feature_libs="-lmd" 51 | ngx_feature_test="SHA_CTX sha1; SHA1_Init(&sha1)" 52 | . auto/feature 53 | 54 | ngx_sha1_lib="system md" 55 | 56 | if [ $ngx_found = no ]; then 57 | 58 | # OpenSSL crypto library 59 | 60 | ngx_feature="sha1 in system OpenSSL crypto library" 61 | ngx_feature_incs="#include " 62 | ngx_feature_libs="-lcrypto" 63 | . auto/feature 64 | 65 | ngx_sha1_lib="system crypto" 66 | 67 | if [ $ngx_found = yes ]; then 68 | have=NGX_HAVE_OPENSSL_SHA1_H . auto/have 69 | fi 70 | fi 71 | 72 | if [ $ngx_found = yes ]; then 73 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 74 | SHA1=YES 75 | SHA1_LIB=$ngx_sha1_lib 76 | fi 77 | fi 78 | 79 | fi 80 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/make: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | case "$NGX_CC_NAME" in 7 | 8 | msvc) 9 | ngx_makefile=makefile.msvc 10 | ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC SHA1_ASM=$SHA1_ASM" 11 | ngx_sha1="SHA1=\"$SHA1\"" 12 | ;; 13 | 14 | owc) 15 | ngx_makefile=makefile.owc 16 | ngx_opt="CPU_OPT=\"$CPU_OPT\"" 17 | ngx_sha1=`echo SHA1=\"$SHA1\" | sed -e "s/\//$ngx_regex_dirsep/g"` 18 | ;; 19 | 20 | bcc) 21 | ngx_makefile=makefile.bcc 22 | ngx_opt="-DCPU_OPT=\"$CPU_OPT\" -DSHA1_ASM=$SHA1_ASM" 23 | ngx_sha1=`echo \-DSHA1=\"$SHA1\" | sed -e "s/\//$ngx_regex_dirsep/g"` 24 | ;; 25 | 26 | esac 27 | 28 | 29 | done=NO 30 | 31 | 32 | case "$NGX_PLATFORM" in 33 | 34 | win32) 35 | cat << END >> $NGX_MAKEFILE 36 | 37 | `echo "$SHA1/sha1.lib: $NGX_MAKEFILE" | sed -e "s/\//$ngx_regex_dirsep/g"` 38 | \$(MAKE) -f auto/lib/sha1/$ngx_makefile $ngx_opt $ngx_sha1 39 | 40 | END 41 | 42 | done=YES 43 | ;; 44 | 45 | SunOS:*:i86pc) 46 | if [ $SHA1_ASM = YES ]; then 47 | 48 | cat << END >> $NGX_MAKEFILE 49 | 50 | $SHA1/libsha.a: $NGX_MAKEFILE 51 | cd $SHA1 \\ 52 | && \$(MAKE) CFLAGS="$SHA1_OPT -DSOL -DSHA1_ASM -DL_ENDIAN" \\ 53 | CC="\$(CC)" CPP="\$(CPP)" \\ 54 | SHA_ASM_OBJ=asm/sx86-sol.o clean libsha.a 55 | 56 | END 57 | 58 | done=YES 59 | fi 60 | ;; 61 | 62 | # FreeBSD: i386 63 | # Linux: i686 64 | 65 | *:i386 | *:i686) 66 | if [ $SHA1_ASM = YES ]; then 67 | 68 | cat << END >> $NGX_MAKEFILE 69 | 70 | $SHA1/libsha.a: $NGX_MAKEFILE 71 | cd $SHA1 \\ 72 | && \$(MAKE) CFLAGS="$SHA1_OPT -DELF -DSHA1_ASM -DL_ENDIAN" \\ 73 | CC="\$(CC)" CPP="\$(CPP)" \\ 74 | SHA_ASM_OBJ=asm/sx86-elf.o clean libsha.a 75 | 76 | END 77 | 78 | done=YES 79 | fi 80 | ;; 81 | 82 | esac 83 | 84 | 85 | if [ $done = NO ]; then 86 | 87 | cat << END >> $NGX_MAKEFILE 88 | 89 | $SHA1/libsha.a: $NGX_MAKEFILE 90 | cd $SHA1 \\ 91 | && \$(MAKE) CFLAGS="$SHA1_OPT" \\ 92 | CC="\$(CC)" SHA_ASM_OBJ= clean libsha.a 93 | 94 | END 95 | 96 | fi 97 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -q -O2 -tWM $(CPU_OPT) -DL_ENDIAN 7 | 8 | !if "$(SHA1_ASM)" == "YES" 9 | 10 | sha1.lib: 11 | cd $(SHA1) 12 | bcc32 -c $(CFLAGS) -DSHA1_ASM sha1dgst.c 13 | tlib sha1.lib +sha1dgst.obj +"asm\s-win32.obj" 14 | 15 | !else 16 | 17 | sha1.lib: 18 | cd $(SHA1) 19 | bcc32 -c $(CFLAGS) sha1dgst.c 20 | tlib sha1.lib +sha1dgst.obj 21 | 22 | !endif 23 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.msvc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) -D L_ENDIAN 7 | 8 | !IF "$(SHA1_ASM)" == "YES" 9 | 10 | sha1.lib: 11 | cd $(SHA1) 12 | cl -c $(CFLAGS) -D SHA1_ASM sha1dgst.c 13 | link -lib -out:sha1.lib sha1dgst.obj asm/s-win32.obj 14 | 15 | !ELSE 16 | 17 | sha1.lib: 18 | cd $(SHA1) 19 | cl -c $(CFLAGS) sha1dgst.c 20 | link -lib -out:sha1.lib sha1dgst.obj 21 | 22 | !ENDIF 23 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.owc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -zq -bt=nt -bm -ot -op -oi -oe -s $(CPU_OPT) 7 | 8 | sha1.lib: 9 | cd $(SHA1) 10 | wcl386 -c $(CFLAGS) -dL_ENDIAN sha1dgst.c 11 | wlib -n sha1.lib sha1dgst.obj 12 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/test: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for $ngx_lib ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for $ngx_lib 12 | 13 | END 14 | 15 | ngx_found=no 16 | 17 | cat << END > $NGX_AUTOTEST.c 18 | 19 | $ngx_lib_incs 20 | 21 | int main() { 22 | $ngx_lib_test; 23 | return 0; 24 | } 25 | 26 | 27 | eval "$CC $cc_test_flags $ngx_lib_cflags \ 28 | -o $NGX_AUTOTEST $NGX_AUTOTEST.c $ngx_libs \ 29 | >> $NGX_ERR 2>&1" 30 | 31 | if [ -x $NGX_AUTOTEST ]; then 32 | echo " found" 33 | 34 | ngx_found=yes 35 | 36 | else 37 | echo " not found" 38 | fi 39 | 40 | rm -rf $NGX_AUTOTEST* 41 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/conf: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | if [ $ZLIB != NONE ]; then 7 | CORE_INCS="$CORE_INCS $ZLIB" 8 | 9 | case "$NGX_CC_NAME" in 10 | 11 | msvc | owc | bcc) 12 | have=NGX_ZLIB . auto/have 13 | LINK_DEPS="$LINK_DEPS $ZLIB/zlib.lib" 14 | CORE_LIBS="$CORE_LIBS $ZLIB/zlib.lib" 15 | ;; 16 | 17 | icc) 18 | have=NGX_ZLIB . auto/have 19 | LINK_DEPS="$LINK_DEPS $ZLIB/libz.a" 20 | 21 | # to allow -ipo optimization we link with the *.o but not library 22 | CORE_LIBS="$CORE_LIBS $ZLIB/adler32.o" 23 | CORE_LIBS="$CORE_LIBS $ZLIB/crc32.o" 24 | CORE_LIBS="$CORE_LIBS $ZLIB/deflate.o" 25 | CORE_LIBS="$CORE_LIBS $ZLIB/trees.o" 26 | CORE_LIBS="$CORE_LIBS $ZLIB/zutil.o" 27 | CORE_LIBS="$CORE_LIBS $ZLIB/compress.o" 28 | 29 | if [ $ZLIB_ASM != NO ]; then 30 | CORE_LIBS="$CORE_LIBS $ZLIB/match.o" 31 | fi 32 | ;; 33 | 34 | *) 35 | have=NGX_ZLIB . auto/have 36 | LINK_DEPS="$LINK_DEPS $ZLIB/libz.a" 37 | CORE_LIBS="$CORE_LIBS $ZLIB/libz.a" 38 | #CORE_LIBS="$CORE_LIBS -L $ZLIB -lz" 39 | ;; 40 | 41 | esac 42 | 43 | else 44 | 45 | if [ "$NGX_PLATFORM" != win32 ]; then 46 | ZLIB=NO 47 | 48 | # FreeBSD, Solaris, Linux 49 | 50 | ngx_feature="zlib library" 51 | ngx_feature_name="NGX_ZLIB" 52 | ngx_feature_run=no 53 | ngx_feature_incs="#include " 54 | ngx_feature_path= 55 | ngx_feature_libs="-lz" 56 | ngx_feature_test="z_stream z; deflate(&z, Z_NO_FLUSH)" 57 | . auto/feature 58 | 59 | 60 | if [ $ngx_found = yes ]; then 61 | CORE_LIBS="$CORE_LIBS $ngx_feature_libs" 62 | ZLIB=YES 63 | ngx_found=no 64 | fi 65 | fi 66 | 67 | if [ $ZLIB != YES ]; then 68 | cat << END 69 | 70 | $0: error: the HTTP gzip module requires the zlib library. 71 | You can either disable the module by using --without-http_gzip_module 72 | option, or install the zlib library into the system, or build the zlib library 73 | statically from the source with nginx by using --with-zlib= option. 74 | 75 | END 76 | exit 1 77 | fi 78 | 79 | fi 80 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.bcc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -q -O2 -tWM -w-8004 -w-8012 $(CPU_OPT) 7 | 8 | zlib.lib: 9 | cd $(ZLIB) 10 | 11 | bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c \ 12 | trees.c zutil.c compress.c \ 13 | inflate.c inffast.c inftrees.c 14 | 15 | tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \ 16 | +trees.obj +zutil.obj +compress.obj \ 17 | +inflate.obj +inffast.obj +inftrees.obj 18 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.msvc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -nologo -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT) 7 | 8 | zlib.lib: 9 | cd $(ZLIB) 10 | 11 | cl -c $(CFLAGS) adler32.c crc32.c deflate.c \ 12 | trees.c zutil.c compress.c \ 13 | inflate.c inffast.c inftrees.c 14 | 15 | link -lib -out:zlib.lib adler32.obj crc32.obj deflate.obj \ 16 | trees.obj zutil.obj compress.obj \ 17 | inflate.obj inffast.obj inftrees.obj 18 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.owc: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | CFLAGS = -zq -bt=nt -ot -op -oi -oe -s -bm $(CPU_OPT) 7 | 8 | zlib.lib: 9 | cd $(ZLIB) 10 | 11 | wcl386 -c $(CFLAGS) adler32.c crc32.c deflate.c trees.c zutil.c & 12 | compress.c inflate.c inffast.c inftrees.c 13 | wlib -n zlib.lib adler32.obj crc32.obj deflate.obj trees.obj & 14 | zutil.obj compress.obj inflate.obj inffast.obj inftrees.obj 15 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/nohave: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_AUTO_CONFIG_H 7 | 8 | #ifndef $have 9 | #define $have 0 10 | #endif 11 | 12 | END 13 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/freebsd: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | have=NGX_FREEBSD . auto/have_headers 7 | 8 | CORE_INCS="$UNIX_INCS" 9 | CORE_DEPS="$UNIX_DEPS $FREEBSD_DEPS" 10 | CORE_SRCS="$UNIX_SRCS $FREEBSD_SRCS" 11 | 12 | ngx_spacer=' 13 | ' 14 | 15 | 16 | # __FreeBSD_version and sysctl kern.osreldate are the best ways 17 | # to determine whether some capability exists and is safe to use. 18 | # __FreeBSD_version is used for the testing of the build environment. 19 | # sysctl kern.osreldate is used for the testing of the kernel capabilities. 20 | 21 | version=`grep "#define __FreeBSD_version" /usr/include/osreldate.h \ 22 | | sed -e 's/^.* \(.*\)$/\1/'` 23 | 24 | osreldate=`/sbin/sysctl -n kern.osreldate` 25 | 26 | 27 | # setproctitle() in libutil 28 | 29 | if [ \( $version -ge 500000 -a $version -lt 500012 \) \ 30 | -o $version -lt 410002 ] 31 | then 32 | echo " + setproctitle() in libutil" 33 | 34 | CORE_LIBS="$CORE_LIBS -lutil" 35 | NGX_SETPROCTITLE_LIB="-lutil" 36 | fi 37 | 38 | # sendfile 39 | 40 | if [ $osreldate -gt 300007 ]; then 41 | echo " + sendfile() found" 42 | 43 | have=NGX_HAVE_SENDFILE . auto/have 44 | CORE_SRCS="$CORE_SRCS $FREEBSD_SENDFILE_SRCS" 45 | fi 46 | 47 | if [ $NGX_FILE_AIO = YES ]; then 48 | if [ $osreldate -gt 502103 ]; then 49 | echo " + sendfile()'s SF_NODISKIO found" 50 | 51 | have=NGX_HAVE_AIO_SENDFILE . auto/have 52 | fi 53 | fi 54 | 55 | # POSIX semaphores 56 | # http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/127545 57 | 58 | if [ $osreldate -ge 701106 ]; then 59 | echo " + POSIX semaphores should work" 60 | else 61 | have=NGX_HAVE_POSIX_SEM . auto/nohave 62 | fi 63 | 64 | 65 | # kqueue 66 | 67 | if [ \( $osreldate -lt 500000 -a $osreldate -ge 410000 \) \ 68 | -o $osreldate -ge 500011 ] 69 | then 70 | echo " + kqueue found" 71 | 72 | have=NGX_HAVE_KQUEUE . auto/have 73 | have=NGX_HAVE_CLEAR_EVENT . auto/have 74 | EVENT_MODULES="$EVENT_MODULES $KQUEUE_MODULE" 75 | CORE_SRCS="$CORE_SRCS $KQUEUE_SRCS" 76 | EVENT_FOUND=YES 77 | fi 78 | 79 | 80 | NGX_KQUEUE_CHECKED=YES 81 | 82 | 83 | # kqueue's NOTE_LOWAT 84 | 85 | if [ \( $version -lt 500000 -a $version -ge 430000 \) \ 86 | -o $version -ge 500018 ] 87 | then 88 | echo " + kqueue's NOTE_LOWAT found" 89 | have=NGX_HAVE_LOWAT_EVENT . auto/have 90 | fi 91 | 92 | # kqueue's EVFILT_TIMER 93 | 94 | if [ \( $version -lt 500000 -a $version -ge 440001 \) \ 95 | -o $version -ge 500023 ] 96 | then 97 | echo " + kqueue's EVFILT_TIMER found" 98 | have=NGX_HAVE_TIMER_EVENT . auto/have 99 | fi 100 | 101 | 102 | # cpuset_setaffinity() 103 | 104 | if [ $version -ge 701000 ]; then 105 | echo " + cpuset_setaffinity() found" 106 | have=NGX_HAVE_CPUSET_SETAFFINITY . auto/have 107 | fi 108 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/solaris: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | have=NGX_SOLARIS . auto/have_headers 7 | 8 | CORE_INCS="$UNIX_INCS" 9 | CORE_DEPS="$UNIX_DEPS $SOLARIS_DEPS" 10 | CORE_SRCS="$UNIX_SRCS $SOLARIS_SRCS " 11 | CORE_LIBS="$CORE_LIBS -lsocket -lnsl" 12 | 13 | NGX_RPATH=YES 14 | 15 | # Solaris's make does not support a blank line between target and rules 16 | ngx_spacer= 17 | 18 | CC_AUX_FLAGS="$CC_AUX_FLAGS -D_FILE_OFFSET_BITS=64 -lsocket -lnsl" 19 | 20 | 21 | if [ $ZLIB_ASM != NO ]; then 22 | echo "$0: error: the --with-zlib-asm=CPU option is not supported" 23 | echo "on that platform" 24 | echo 25 | 26 | exit 1 27 | fi 28 | 29 | 30 | ngx_feature="sendfilev()" 31 | ngx_feature_name="NGX_HAVE_SENDFILE" 32 | ngx_feature_run=no 33 | ngx_feature_incs="#include " 34 | ngx_feature_path= 35 | ngx_feature_libs="-lsendfile" 36 | ngx_feature_test="int fd = 1; sendfilevec_t vec[1]; 37 | size_t sent; ssize_t n; 38 | n = sendfilev(fd, vec, 1, &sent); 39 | if (n == -1) return 1" 40 | . auto/feature 41 | 42 | 43 | if [ $ngx_found = yes ]; then 44 | CORE_SRCS="$CORE_SRCS $SOLARIS_SENDFILEV_SRCS" 45 | CORE_LIBS="$CORE_LIBS -lsendfile" 46 | fi 47 | 48 | 49 | ngx_feature="event ports" 50 | ngx_feature_name="NGX_HAVE_EVENTPORT" 51 | ngx_feature_run=no 52 | ngx_feature_incs="#include " 53 | ngx_feature_path= 54 | ngx_feature_libs= 55 | ngx_feature_test="int n = port_create()" 56 | . auto/feature 57 | 58 | if [ $ngx_found = yes ]; then 59 | CORE_SRCS="$CORE_SRCS $EVENTPORT_SRCS" 60 | EVENT_MODULES="$EVENT_MODULES $EVENTPORT_MODULE" 61 | fi 62 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/win32: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | have=NGX_WIN32 . auto/have_headers 7 | 8 | CORE_INCS="$WIN32_INCS" 9 | CORE_DEPS="$WIN32_DEPS" 10 | CORE_SRCS="$WIN32_SRCS $IOCP_SRCS" 11 | OS_CONFIG="$WIN32_CONFIG" 12 | NGX_ICONS="$NGX_WIN32_ICONS" 13 | SELECT_SRCS=$WIN32_SELECT_SRCS 14 | 15 | ngx_pic_opt= 16 | 17 | case "$NGX_CC_NAME" in 18 | 19 | gcc) 20 | CORE_LIBS="$CORE_LIBS -ladvapi32 -lws2_32" 21 | MAIN_LINK="$MAIN_LINK -Wl,--export-all-symbols" 22 | MAIN_LINK="$MAIN_LINK -Wl,--out-implib=$NGX_OBJS/libnginx.a" 23 | MODULE_LINK="-shared -L $NGX_OBJS -lnginx" 24 | ;; 25 | 26 | *) 27 | CORE_LIBS="$CORE_LIBS advapi32.lib ws2_32.lib" 28 | ;; 29 | 30 | esac 31 | 32 | EVENT_MODULES="$EVENT_MODULES $IOCP_MODULE" 33 | EVENT_FOUND=YES 34 | 35 | if [ $EVENT_SELECT = NO ]; then 36 | CORE_SRCS="$CORE_SRCS $SELECT_SRCS" 37 | EVENT_MODULES="$EVENT_MODULES $SELECT_MODULE" 38 | fi 39 | 40 | if [ $NGX_IPV6 = YES ]; then 41 | have=NGX_HAVE_INET6 . auto/have 42 | fi 43 | 44 | have=NGX_HAVE_IOCP . auto/have 45 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/stubs: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | have=NGX_SUPPRESS_WARN . auto/have 7 | 8 | have=NGX_SMP . auto/have 9 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/summary: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo 7 | echo "Configuration summary" 8 | 9 | 10 | if [ $USE_THREADS = YES ]; then 11 | echo " + using threads" 12 | fi 13 | 14 | if [ $USE_PCRE = DISABLED ]; then 15 | echo " + PCRE library is disabled" 16 | 17 | else 18 | case $PCRE in 19 | YES) echo " + using system PCRE library" ;; 20 | NONE) echo " + PCRE library is not used" ;; 21 | *) echo " + using PCRE library: $PCRE" ;; 22 | esac 23 | fi 24 | 25 | case $OPENSSL in 26 | YES) echo " + using system OpenSSL library" ;; 27 | NONE) echo " + OpenSSL library is not used" ;; 28 | *) echo " + using OpenSSL library: $OPENSSL" ;; 29 | esac 30 | 31 | case $MD5 in 32 | YES) echo " + md5: using $MD5_LIB library" ;; 33 | NONE) echo " + md5 library is not used" ;; 34 | NO) echo " + using builtin md5 code" ;; 35 | *) echo " + using md5 library: $MD5" ;; 36 | esac 37 | 38 | case $SHA1 in 39 | YES) echo " + sha1: using $SHA1_LIB library" ;; 40 | NONE) echo " + sha1 library is not used" ;; 41 | NO) echo " + sha1 library is not found" ;; 42 | *) echo " + using sha1 library: $SHA1" ;; 43 | esac 44 | 45 | case $ZLIB in 46 | YES) echo " + using system zlib library" ;; 47 | NONE) echo " + zlib library is not used" ;; 48 | *) echo " + using zlib library: $ZLIB" ;; 49 | esac 50 | 51 | case $NGX_LIBATOMIC in 52 | YES) echo " + using system libatomic_ops library" ;; 53 | NO) ;; # not used 54 | *) echo " + using libatomic_ops library: $NGX_LIBATOMIC" ;; 55 | esac 56 | 57 | echo 58 | 59 | 60 | cat << END 61 | nginx path prefix: "$NGX_PREFIX" 62 | nginx binary file: "$NGX_SBIN_PATH" 63 | nginx modules path: "$NGX_MODULES_PATH" 64 | nginx configuration prefix: "$NGX_CONF_PREFIX" 65 | nginx configuration file: "$NGX_CONF_PATH" 66 | nginx pid file: "$NGX_PID_PATH" 67 | END 68 | 69 | if test -n "$NGX_ERROR_LOG_PATH"; then 70 | echo " nginx error log file: \"$NGX_ERROR_LOG_PATH\"" 71 | else 72 | echo " nginx logs errors to stderr" 73 | fi 74 | 75 | cat << END 76 | nginx http access log file: "$NGX_HTTP_LOG_PATH" 77 | nginx http client request body temporary files: "$NGX_HTTP_CLIENT_TEMP_PATH" 78 | END 79 | 80 | if [ $HTTP_PROXY = YES ]; then 81 | echo " nginx http proxy temporary files: \"$NGX_HTTP_PROXY_TEMP_PATH\"" 82 | fi 83 | 84 | if [ $HTTP_FASTCGI = YES ]; then 85 | echo " nginx http fastcgi temporary files: \"$NGX_HTTP_FASTCGI_TEMP_PATH\"" 86 | fi 87 | 88 | if [ $HTTP_UWSGI = YES ]; then 89 | echo " nginx http uwsgi temporary files: \"$NGX_HTTP_UWSGI_TEMP_PATH\"" 90 | fi 91 | 92 | if [ $HTTP_SCGI = YES ]; then 93 | echo " nginx http scgi temporary files: \"$NGX_HTTP_SCGI_TEMP_PATH\"" 94 | fi 95 | 96 | echo "$NGX_POST_CONF_MSG" 97 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/threads: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Nginx, Inc. 3 | 4 | 5 | if [ $USE_THREADS = YES ]; then 6 | 7 | if [ "$NGX_PLATFORM" = win32 ]; then 8 | cat << END 9 | 10 | $0: --with-threads is not supported on Windows 11 | 12 | END 13 | exit 1 14 | fi 15 | 16 | have=NGX_THREADS . auto/have 17 | CORE_DEPS="$CORE_DEPS $THREAD_POOL_DEPS" 18 | CORE_SRCS="$CORE_SRCS $THREAD_POOL_SRCS" 19 | CORE_LIBS="$CORE_LIBS -lpthread" 20 | fi 21 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/sizeof: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for $ngx_type size ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for $ngx_type size 12 | 13 | END 14 | 15 | ngx_size= 16 | 17 | cat << END > $NGX_AUTOTEST.c 18 | 19 | #include 20 | #include 21 | $NGX_INCLUDE_UNISTD_H 22 | #include 23 | #include 24 | #include 25 | $NGX_INCLUDE_INTTYPES_H 26 | $NGX_INCLUDE_AUTO_CONFIG_H 27 | 28 | int main() { 29 | printf("%d", (int) sizeof($ngx_type)); 30 | return 0; 31 | } 32 | 33 | END 34 | 35 | 36 | ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \ 37 | -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs" 38 | 39 | eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 40 | 41 | 42 | if [ -x $NGX_AUTOTEST ]; then 43 | ngx_size=`$NGX_AUTOTEST` 44 | echo " $ngx_size bytes" 45 | fi 46 | 47 | 48 | case $ngx_size in 49 | 4) 50 | ngx_max_value=2147483647 51 | ngx_max_len='(sizeof("-2147483648") - 1)' 52 | ;; 53 | 54 | 8) 55 | ngx_max_value=9223372036854775807LL 56 | ngx_max_len='(sizeof("-9223372036854775808") - 1)' 57 | ;; 58 | 59 | *) 60 | echo 61 | echo "$0: error: can not detect $ngx_type size" 62 | 63 | echo "----------" >> $NGX_AUTOCONF_ERR 64 | cat $NGX_AUTOTEST.c >> $NGX_AUTOCONF_ERR 65 | echo "----------" >> $NGX_AUTOCONF_ERR 66 | echo $ngx_test >> $NGX_AUTOCONF_ERR 67 | echo "----------" >> $NGX_AUTOCONF_ERR 68 | 69 | rm -rf $NGX_AUTOTEST* 70 | 71 | exit 1 72 | esac 73 | 74 | 75 | rm -rf $NGX_AUTOTEST* 76 | 77 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/typedef: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for $ngx_type ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for $ngx_type 12 | 13 | END 14 | 15 | ngx_found=no 16 | 17 | for ngx_try in $ngx_type $ngx_types 18 | do 19 | 20 | cat << END > $NGX_AUTOTEST.c 21 | 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | $NGX_INCLUDE_INTTYPES_H 29 | 30 | int main() { 31 | $ngx_try i = 0; 32 | return (int) i; 33 | } 34 | 35 | END 36 | 37 | ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \ 38 | -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT $ngx_feature_libs" 39 | 40 | eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 41 | 42 | if [ -x $NGX_AUTOTEST ]; then 43 | if [ $ngx_try = $ngx_type ]; then 44 | echo " found" 45 | ngx_found=yes 46 | else 47 | echo ", $ngx_try used" 48 | ngx_found=$ngx_try 49 | fi 50 | fi 51 | 52 | if [ $ngx_found = no ]; then 53 | if [ $ngx_try = $ngx_type ]; then 54 | echo $ngx_n " $ngx_try not found$ngx_c" 55 | else 56 | echo $ngx_n ", $ngx_try not found$ngx_c" 57 | fi 58 | 59 | echo "----------" >> $NGX_AUTOCONF_ERR 60 | cat $NGX_AUTOTEST.c >> $NGX_AUTOCONF_ERR 61 | echo "----------" >> $NGX_AUTOCONF_ERR 62 | echo $ngx_test >> $NGX_AUTOCONF_ERR 63 | echo "----------" >> $NGX_AUTOCONF_ERR 64 | fi 65 | 66 | rm -rf $NGX_AUTOTEST* 67 | 68 | if [ $ngx_found != no ]; then 69 | break 70 | fi 71 | done 72 | 73 | if [ $ngx_found = no ]; then 74 | echo 75 | echo "$0: error: can not define $ngx_type" 76 | 77 | exit 1 78 | fi 79 | 80 | if [ $ngx_found != yes ]; then 81 | echo "typedef $ngx_found $ngx_type;" >> $NGX_AUTO_CONFIG_H 82 | fi 83 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/uintptr_t: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | echo $ngx_n "checking for uintptr_t ...$ngx_c" 7 | 8 | cat << END >> $NGX_AUTOCONF_ERR 9 | 10 | ---------------------------------------- 11 | checking for uintptr_t 12 | 13 | END 14 | 15 | found=no 16 | 17 | cat << END > $NGX_AUTOTEST.c 18 | 19 | #include 20 | $NGX_INTTYPES_H 21 | 22 | int main() { 23 | uintptr_t i = 0; 24 | return (int) i; 25 | } 26 | 27 | END 28 | 29 | ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \ 30 | -o $NGX_AUTOTEST $NGX_AUTOTEST.c $NGX_LD_OPT" 31 | 32 | eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" 33 | 34 | if [ -x $NGX_AUTOTEST ]; then 35 | echo " uintptr_t found" 36 | found=yes 37 | else 38 | echo $ngx_n " uintptr_t not found" $ngx_c 39 | fi 40 | 41 | rm -rf $NGX_AUTOTEST* 42 | 43 | 44 | if [ $found = no ]; then 45 | found="uint`expr 8 \* $ngx_ptr_size`_t" 46 | echo ", $found used" 47 | 48 | echo "typedef $found uintptr_t;" >> $NGX_AUTO_CONFIG_H 49 | echo "typedef $found intptr_t;" | sed -e 's/u//g' >> $NGX_AUTO_CONFIG_H 50 | fi 51 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/value: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | 6 | cat << END >> $NGX_AUTO_CONFIG_H 7 | 8 | #ifndef $ngx_param 9 | #define $ngx_param $ngx_value 10 | #endif 11 | 12 | END 13 | -------------------------------------------------------------------------------- /nginx-1.10.0/conf/fastcgi.conf: -------------------------------------------------------------------------------- 1 | 2 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 3 | fastcgi_param QUERY_STRING $query_string; 4 | fastcgi_param REQUEST_METHOD $request_method; 5 | fastcgi_param CONTENT_TYPE $content_type; 6 | fastcgi_param CONTENT_LENGTH $content_length; 7 | 8 | fastcgi_param SCRIPT_NAME $fastcgi_script_name; 9 | fastcgi_param REQUEST_URI $request_uri; 10 | fastcgi_param DOCUMENT_URI $document_uri; 11 | fastcgi_param DOCUMENT_ROOT $document_root; 12 | fastcgi_param SERVER_PROTOCOL $server_protocol; 13 | fastcgi_param REQUEST_SCHEME $scheme; 14 | fastcgi_param HTTPS $https if_not_empty; 15 | 16 | fastcgi_param GATEWAY_INTERFACE CGI/1.1; 17 | fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 18 | 19 | fastcgi_param REMOTE_ADDR $remote_addr; 20 | fastcgi_param REMOTE_PORT $remote_port; 21 | fastcgi_param SERVER_ADDR $server_addr; 22 | fastcgi_param SERVER_PORT $server_port; 23 | fastcgi_param SERVER_NAME $server_name; 24 | 25 | # PHP only, required if PHP was built with --enable-force-cgi-redirect 26 | fastcgi_param REDIRECT_STATUS 200; 27 | -------------------------------------------------------------------------------- /nginx-1.10.0/conf/fastcgi_params: -------------------------------------------------------------------------------- 1 | 2 | fastcgi_param QUERY_STRING $query_string; 3 | fastcgi_param REQUEST_METHOD $request_method; 4 | fastcgi_param CONTENT_TYPE $content_type; 5 | fastcgi_param CONTENT_LENGTH $content_length; 6 | 7 | fastcgi_param SCRIPT_NAME $fastcgi_script_name; 8 | fastcgi_param REQUEST_URI $request_uri; 9 | fastcgi_param DOCUMENT_URI $document_uri; 10 | fastcgi_param DOCUMENT_ROOT $document_root; 11 | fastcgi_param SERVER_PROTOCOL $server_protocol; 12 | fastcgi_param REQUEST_SCHEME $scheme; 13 | fastcgi_param HTTPS $https if_not_empty; 14 | 15 | fastcgi_param GATEWAY_INTERFACE CGI/1.1; 16 | fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 17 | 18 | fastcgi_param REMOTE_ADDR $remote_addr; 19 | fastcgi_param REMOTE_PORT $remote_port; 20 | fastcgi_param SERVER_ADDR $server_addr; 21 | fastcgi_param SERVER_PORT $server_port; 22 | fastcgi_param SERVER_NAME $server_name; 23 | 24 | # PHP only, required if PHP was built with --enable-force-cgi-redirect 25 | fastcgi_param REDIRECT_STATUS 200; 26 | -------------------------------------------------------------------------------- /nginx-1.10.0/conf/koi-win: -------------------------------------------------------------------------------- 1 | 2 | charset_map koi8-r windows-1251 { 3 | 4 | 80 88 ; # euro 5 | 6 | 95 95 ; # bullet 7 | 8 | 9A A0 ; #   9 | 10 | 9E B7 ; # · 11 | 12 | A3 B8 ; # small yo 13 | A4 BA ; # small Ukrainian ye 14 | 15 | A6 B3 ; # small Ukrainian i 16 | A7 BF ; # small Ukrainian yi 17 | 18 | AD B4 ; # small Ukrainian soft g 19 | AE A2 ; # small Byelorussian short u 20 | 21 | B0 B0 ; # ° 22 | 23 | B3 A8 ; # capital YO 24 | B4 AA ; # capital Ukrainian YE 25 | 26 | B6 B2 ; # capital Ukrainian I 27 | B7 AF ; # capital Ukrainian YI 28 | 29 | B9 B9 ; # numero sign 30 | 31 | BD A5 ; # capital Ukrainian soft G 32 | BE A1 ; # capital Byelorussian short U 33 | 34 | BF A9 ; # (C) 35 | 36 | C0 FE ; # small yu 37 | C1 E0 ; # small a 38 | C2 E1 ; # small b 39 | C3 F6 ; # small ts 40 | C4 E4 ; # small d 41 | C5 E5 ; # small ye 42 | C6 F4 ; # small f 43 | C7 E3 ; # small g 44 | C8 F5 ; # small kh 45 | C9 E8 ; # small i 46 | CA E9 ; # small j 47 | CB EA ; # small k 48 | CC EB ; # small l 49 | CD EC ; # small m 50 | CE ED ; # small n 51 | CF EE ; # small o 52 | 53 | D0 EF ; # small p 54 | D1 FF ; # small ya 55 | D2 F0 ; # small r 56 | D3 F1 ; # small s 57 | D4 F2 ; # small t 58 | D5 F3 ; # small u 59 | D6 E6 ; # small zh 60 | D7 E2 ; # small v 61 | D8 FC ; # small soft sign 62 | D9 FB ; # small y 63 | DA E7 ; # small z 64 | DB F8 ; # small sh 65 | DC FD ; # small e 66 | DD F9 ; # small shch 67 | DE F7 ; # small ch 68 | DF FA ; # small hard sign 69 | 70 | E0 DE ; # capital YU 71 | E1 C0 ; # capital A 72 | E2 C1 ; # capital B 73 | E3 D6 ; # capital TS 74 | E4 C4 ; # capital D 75 | E5 C5 ; # capital YE 76 | E6 D4 ; # capital F 77 | E7 C3 ; # capital G 78 | E8 D5 ; # capital KH 79 | E9 C8 ; # capital I 80 | EA C9 ; # capital J 81 | EB CA ; # capital K 82 | EC CB ; # capital L 83 | ED CC ; # capital M 84 | EE CD ; # capital N 85 | EF CE ; # capital O 86 | 87 | F0 CF ; # capital P 88 | F1 DF ; # capital YA 89 | F2 D0 ; # capital R 90 | F3 D1 ; # capital S 91 | F4 D2 ; # capital T 92 | F5 D3 ; # capital U 93 | F6 C6 ; # capital ZH 94 | F7 C2 ; # capital V 95 | F8 DC ; # capital soft sign 96 | F9 DB ; # capital Y 97 | FA C7 ; # capital Z 98 | FB D8 ; # capital SH 99 | FC DD ; # capital E 100 | FD D9 ; # capital SHCH 101 | FE D7 ; # capital CH 102 | FF DA ; # capital hard sign 103 | } 104 | -------------------------------------------------------------------------------- /nginx-1.10.0/conf/scgi_params: -------------------------------------------------------------------------------- 1 | 2 | scgi_param REQUEST_METHOD $request_method; 3 | scgi_param REQUEST_URI $request_uri; 4 | scgi_param QUERY_STRING $query_string; 5 | scgi_param CONTENT_TYPE $content_type; 6 | 7 | scgi_param DOCUMENT_URI $document_uri; 8 | scgi_param DOCUMENT_ROOT $document_root; 9 | scgi_param SCGI 1; 10 | scgi_param SERVER_PROTOCOL $server_protocol; 11 | scgi_param REQUEST_SCHEME $scheme; 12 | scgi_param HTTPS $https if_not_empty; 13 | 14 | scgi_param REMOTE_ADDR $remote_addr; 15 | scgi_param REMOTE_PORT $remote_port; 16 | scgi_param SERVER_PORT $server_port; 17 | scgi_param SERVER_NAME $server_name; 18 | -------------------------------------------------------------------------------- /nginx-1.10.0/conf/uwsgi_params: -------------------------------------------------------------------------------- 1 | 2 | uwsgi_param QUERY_STRING $query_string; 3 | uwsgi_param REQUEST_METHOD $request_method; 4 | uwsgi_param CONTENT_TYPE $content_type; 5 | uwsgi_param CONTENT_LENGTH $content_length; 6 | 7 | uwsgi_param REQUEST_URI $request_uri; 8 | uwsgi_param PATH_INFO $document_uri; 9 | uwsgi_param DOCUMENT_ROOT $document_root; 10 | uwsgi_param SERVER_PROTOCOL $server_protocol; 11 | uwsgi_param REQUEST_SCHEME $scheme; 12 | uwsgi_param HTTPS $https if_not_empty; 13 | 14 | uwsgi_param REMOTE_ADDR $remote_addr; 15 | uwsgi_param REMOTE_PORT $remote_port; 16 | uwsgi_param SERVER_PORT $server_port; 17 | uwsgi_param SERVER_NAME $server_name; 18 | -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/README: -------------------------------------------------------------------------------- 1 | 2 | geo2nginx.pl by Andrei Nigmatulin 3 | 4 | The perl script to convert CSV geoip database ( free download 5 | at http://www.maxmind.com/app/geoip_country ) to format, suitable 6 | for use by the ngx_http_geo_module. 7 | 8 | 9 | unicode2nginx by Maxim Dounin 10 | 11 | The perl script to convert unicode mappings ( available 12 | at http://www.unicode.org/Public/MAPPINGS/ ) to the nginx 13 | configuration file format. 14 | Two generated full maps for windows-1251 and koi8-r. 15 | 16 | 17 | vim by Evan Miller 18 | 19 | Syntax highlighting of nginx configuration for vim, to be 20 | placed into ~/.vim/. 21 | 22 | -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/geo2nginx.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl -w 2 | 3 | # (c) Andrei Nigmatulin, 2005 4 | # 5 | # this script provided "as is", without any warranties. use it at your own risk. 6 | # 7 | # special thanx to Andrew Sitnikov for perl port 8 | # 9 | # this script converts CSV geoip database (free download at http://www.maxmind.com/app/geoip_country) 10 | # to format, suitable for use with nginx_http_geo module (http://sysoev.ru/nginx) 11 | # 12 | # for example, line with ip range 13 | # 14 | # "62.16.68.0","62.16.127.255","1041253376","1041268735","RU","Russian Federation" 15 | # 16 | # will be converted to four subnetworks: 17 | # 18 | # 62.16.68.0/22 RU; 19 | # 62.16.72.0/21 RU; 20 | # 62.16.80.0/20 RU; 21 | # 62.16.96.0/19 RU; 22 | 23 | 24 | use warnings; 25 | use strict; 26 | 27 | while( ){ 28 | if (/"[^"]+","[^"]+","([^"]+)","([^"]+)","([^"]+)"/){ 29 | print_subnets($1, $2, $3); 30 | } 31 | } 32 | 33 | sub print_subnets { 34 | my ($a1, $a2, $c) = @_; 35 | my $l; 36 | while ($a1 <= $a2) { 37 | for ($l = 0; ($a1 & (1 << $l)) == 0 && ($a1 + ((1 << ($l + 1)) - 1)) <= $a2; $l++){}; 38 | print long2ip($a1) . "/" . (32 - $l) . " " . $c . ";\n"; 39 | $a1 += (1 << $l); 40 | } 41 | } 42 | 43 | sub long2ip { 44 | my $ip = shift; 45 | 46 | my $str = 0; 47 | 48 | $str = ($ip & 255); 49 | 50 | $ip >>= 8; 51 | $str = ($ip & 255).".$str"; 52 | 53 | $ip >>= 8; 54 | $str = ($ip & 255).".$str"; 55 | 56 | $ip >>= 8; 57 | $str = ($ip & 255).".$str"; 58 | } 59 | -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/unicode2nginx/unicode-to-nginx.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl -w 2 | 3 | # Convert unicode mappings to nginx configuration file format. 4 | 5 | # You may find useful mappings in various places, including 6 | # unicode.org official site: 7 | # 8 | # http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1251.TXT 9 | # http://www.unicode.org/Public/MAPPINGS/VENDORS/MISC/KOI8-R.TXT 10 | 11 | # Needs perl 5.6 or later. 12 | 13 | # Written by Maxim Dounin, mdounin@rambler-co.ru 14 | 15 | ############################################################################### 16 | 17 | require 5.006; 18 | 19 | while (<>) { 20 | # Skip comments and empty lines 21 | 22 | next if /^#/; 23 | next if /^\s*$/; 24 | chomp; 25 | 26 | # Convert mappings 27 | 28 | if (/^\s*0x(..)\s*0x(....)\s*(#.*)/) { 29 | # Mapping "#" 30 | my $cs_code = $1; 31 | my $un_code = $2; 32 | my $un_name = $3; 33 | 34 | # Produce UTF-8 sequence from character code; 35 | 36 | my $un_utf8 = join('', map { sprintf("%02X", $_) } unpack("C*", pack("U", hex($un_code)))); 37 | 38 | print " $cs_code $un_utf8 ; $un_name\n"; 39 | 40 | } else { 41 | warn "Unrecognized line: '$_'"; 42 | } 43 | } 44 | 45 | ############################################################################### 46 | -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/vim/ftdetect/nginx.vim: -------------------------------------------------------------------------------- 1 | au BufRead,BufNewFile *.nginx set ft=nginx 2 | au BufRead,BufNewFile */etc/nginx/* set ft=nginx 3 | au BufRead,BufNewFile */usr/local/nginx/conf/* set ft=nginx 4 | au BufRead,BufNewFile nginx.conf set ft=nginx 5 | -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/vim/indent/nginx.vim: -------------------------------------------------------------------------------- 1 | if exists("b:did_indent") 2 | finish 3 | endif 4 | let b:did_indent = 1 5 | 6 | setlocal indentexpr= 7 | 8 | " cindent actually works for nginx' simple file structure 9 | setlocal cindent 10 | " Just make sure that the comments are not reset as defs would be. 11 | setlocal cinkeys-=0# 12 | -------------------------------------------------------------------------------- /nginx-1.10.0/html/50x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 12 | 13 | 14 |

An error occurred.

15 |

Sorry, the page you are looking for is currently unavailable.
16 | Please try again later.

17 |

If you are the system administrator of this resource then you should check 18 | the error log for details.

19 |

Faithfully yours, nginx.

20 | 21 | 22 | -------------------------------------------------------------------------------- /nginx-1.10.0/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Welcome to nginx! 5 | 12 | 13 | 14 |

Welcome to nginx!

15 |

If you see this page, the nginx web server is successfully installed and 16 | working. Further configuration is required.

17 | 18 |

For online documentation and support please refer to 19 | nginx.org.
20 | Commercial support is available at 21 | nginx.com.

22 | 23 |

Thank you for using nginx.

24 | 25 | 26 | -------------------------------------------------------------------------------- /nginx-1.10.0/objs/ngx_auto_headers.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ifndef NGX_HAVE_UNISTD_H 4 | #define NGX_HAVE_UNISTD_H 1 5 | #endif 6 | 7 | 8 | #ifndef NGX_HAVE_INTTYPES_H 9 | #define NGX_HAVE_INTTYPES_H 1 10 | #endif 11 | 12 | 13 | #ifndef NGX_HAVE_LIMITS_H 14 | #define NGX_HAVE_LIMITS_H 1 15 | #endif 16 | 17 | 18 | #ifndef NGX_HAVE_SYS_PARAM_H 19 | #define NGX_HAVE_SYS_PARAM_H 1 20 | #endif 21 | 22 | 23 | #ifndef NGX_HAVE_SYS_MOUNT_H 24 | #define NGX_HAVE_SYS_MOUNT_H 1 25 | #endif 26 | 27 | 28 | #ifndef NGX_HAVE_SYS_STATVFS_H 29 | #define NGX_HAVE_SYS_STATVFS_H 1 30 | #endif 31 | 32 | 33 | #ifndef NGX_HAVE_CRYPT_H 34 | #define NGX_HAVE_CRYPT_H 1 35 | #endif 36 | 37 | 38 | #ifndef NGX_LINUX 39 | #define NGX_LINUX 1 40 | #endif 41 | 42 | 43 | #ifndef NGX_HAVE_SYS_PRCTL_H 44 | #define NGX_HAVE_SYS_PRCTL_H 1 45 | #endif 46 | 47 | 48 | #ifndef NGX_HAVE_SYS_VFS_H 49 | #define NGX_HAVE_SYS_VFS_H 1 50 | #endif 51 | 52 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/nginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/nginx.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/nginx.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGINX_H_INCLUDED_ 9 | #define _NGINX_H_INCLUDED_ 10 | 11 | 12 | #define nginx_version 1010000 13 | #define NGINX_VERSION "1.10.0" 14 | #define NGINX_VER "nginx/" NGINX_VERSION 15 | 16 | #ifdef NGX_BUILD 17 | #define NGINX_VER_BUILD NGINX_VER " (" NGX_BUILD ")" 18 | #else 19 | #define NGINX_VER_BUILD NGINX_VER 20 | #endif 21 | 22 | #define NGINX_VAR "NGINX" 23 | #define NGX_OLDPID_EXT ".oldbin" 24 | 25 | 26 | #endif /* _NGINX_H_INCLUDED_ */ 27 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_array.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_ARRAY_H_INCLUDED_ 9 | #define _NGX_ARRAY_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | typedef struct { 17 | void *elts; 18 | ngx_uint_t nelts; 19 | size_t size; 20 | ngx_uint_t nalloc; 21 | ngx_pool_t *pool; 22 | } ngx_array_t; 23 | 24 | 25 | ngx_array_t *ngx_array_create(ngx_pool_t *p, ngx_uint_t n, size_t size); 26 | void ngx_array_destroy(ngx_array_t *a); 27 | void *ngx_array_push(ngx_array_t *a); 28 | void *ngx_array_push_n(ngx_array_t *a, ngx_uint_t n); 29 | 30 | 31 | static ngx_inline ngx_int_t 32 | ngx_array_init(ngx_array_t *array, ngx_pool_t *pool, ngx_uint_t n, size_t size) 33 | { 34 | /* 35 | * set "array->nelts" before "array->elts", otherwise MSVC thinks 36 | * that "array->nelts" may be used without having been initialized 37 | */ 38 | 39 | array->nelts = 0; 40 | array->size = size; 41 | array->nalloc = n; 42 | array->pool = pool; 43 | 44 | array->elts = ngx_palloc(pool, n * size); 45 | if (array->elts == NULL) { 46 | return NGX_ERROR; 47 | } 48 | 49 | return NGX_OK; 50 | } 51 | 52 | 53 | #endif /* _NGX_ARRAY_H_INCLUDED_ */ 54 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_buf.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_conf_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_conf_file.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_conf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_conf_file.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_connection.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_connection.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_CRC_H_INCLUDED_ 9 | #define _NGX_CRC_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | /* 32-bit crc16 */ 17 | 18 | static ngx_inline uint32_t 19 | ngx_crc(u_char *data, size_t len) 20 | { 21 | uint32_t sum; 22 | 23 | for (sum = 0; len; len--) { 24 | 25 | /* 26 | * gcc 2.95.2 x86 and icc 7.1.006 compile 27 | * that operator into the single "rol" opcode, 28 | * msvc 6.0sp2 compiles it into four opcodes. 29 | */ 30 | sum = sum >> 1 | sum << 31; 31 | 32 | sum += *data++; 33 | } 34 | 35 | return sum; 36 | } 37 | 38 | 39 | #endif /* _NGX_CRC_H_INCLUDED_ */ 40 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_crc32.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc32.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_CRC32_H_INCLUDED_ 9 | #define _NGX_CRC32_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | extern uint32_t *ngx_crc32_table_short; 17 | extern uint32_t ngx_crc32_table256[]; 18 | 19 | 20 | static ngx_inline uint32_t 21 | ngx_crc32_short(u_char *p, size_t len) 22 | { 23 | u_char c; 24 | uint32_t crc; 25 | 26 | crc = 0xffffffff; 27 | 28 | while (len--) { 29 | c = *p++; 30 | crc = ngx_crc32_table_short[(crc ^ (c & 0xf)) & 0xf] ^ (crc >> 4); 31 | crc = ngx_crc32_table_short[(crc ^ (c >> 4)) & 0xf] ^ (crc >> 4); 32 | } 33 | 34 | return crc ^ 0xffffffff; 35 | } 36 | 37 | 38 | static ngx_inline uint32_t 39 | ngx_crc32_long(u_char *p, size_t len) 40 | { 41 | uint32_t crc; 42 | 43 | crc = 0xffffffff; 44 | 45 | while (len--) { 46 | crc = ngx_crc32_table256[(crc ^ *p++) & 0xff] ^ (crc >> 8); 47 | } 48 | 49 | return crc ^ 0xffffffff; 50 | } 51 | 52 | 53 | #define ngx_crc32_init(crc) \ 54 | crc = 0xffffffff 55 | 56 | 57 | static ngx_inline void 58 | ngx_crc32_update(uint32_t *crc, u_char *p, size_t len) 59 | { 60 | uint32_t c; 61 | 62 | c = *crc; 63 | 64 | while (len--) { 65 | c = ngx_crc32_table256[(c ^ *p++) & 0xff] ^ (c >> 8); 66 | } 67 | 68 | *crc = c; 69 | } 70 | 71 | 72 | #define ngx_crc32_final(crc) \ 73 | crc ^= 0xffffffff 74 | 75 | 76 | ngx_int_t ngx_crc32_table_init(void); 77 | 78 | 79 | #endif /* _NGX_CRC32_H_INCLUDED_ */ 80 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crypt.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_CRYPT_H_INCLUDED_ 9 | #define _NGX_CRYPT_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | ngx_int_t ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, 17 | u_char **encrypted); 18 | 19 | 20 | #endif /* _NGX_CRYPT_H_INCLUDED_ */ 21 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_cycle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_cycle.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_file.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_file.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_inet.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_inet.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_list.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | ngx_list_t * 13 | ngx_list_create(ngx_pool_t *pool, ngx_uint_t n, size_t size) 14 | { 15 | ngx_list_t *list; 16 | 17 | list = ngx_palloc(pool, sizeof(ngx_list_t)); 18 | if (list == NULL) { 19 | return NULL; 20 | } 21 | 22 | if (ngx_list_init(list, pool, n, size) != NGX_OK) { 23 | return NULL; 24 | } 25 | 26 | return list; 27 | } 28 | 29 | 30 | void * 31 | ngx_list_push(ngx_list_t *l) 32 | { 33 | void *elt; 34 | ngx_list_part_t *last; 35 | 36 | last = l->last; 37 | 38 | if (last->nelts == l->nalloc) { 39 | 40 | /* the last part is full, allocate a new list part */ 41 | 42 | last = ngx_palloc(l->pool, sizeof(ngx_list_part_t)); 43 | if (last == NULL) { 44 | return NULL; 45 | } 46 | 47 | last->elts = ngx_palloc(l->pool, l->nalloc * l->size); 48 | if (last->elts == NULL) { 49 | return NULL; 50 | } 51 | 52 | last->nelts = 0; 53 | last->next = NULL; 54 | 55 | l->last->next = last; 56 | l->last = last; 57 | } 58 | 59 | elt = (char *) last->elts + l->size * last->nelts; 60 | last->nelts++; 61 | 62 | return elt; 63 | } 64 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_list.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_LIST_H_INCLUDED_ 9 | #define _NGX_LIST_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | typedef struct ngx_list_part_s ngx_list_part_t; 17 | 18 | struct ngx_list_part_s { 19 | void *elts; 20 | ngx_uint_t nelts; 21 | ngx_list_part_t *next; 22 | }; 23 | 24 | 25 | typedef struct { 26 | ngx_list_part_t *last; 27 | ngx_list_part_t part; 28 | size_t size; 29 | ngx_uint_t nalloc; 30 | ngx_pool_t *pool; 31 | } ngx_list_t; 32 | 33 | 34 | ngx_list_t *ngx_list_create(ngx_pool_t *pool, ngx_uint_t n, size_t size); 35 | 36 | static ngx_inline ngx_int_t 37 | ngx_list_init(ngx_list_t *list, ngx_pool_t *pool, ngx_uint_t n, size_t size) 38 | { 39 | list->part.elts = ngx_palloc(pool, n * size); 40 | if (list->part.elts == NULL) { 41 | return NGX_ERROR; 42 | } 43 | 44 | list->part.nelts = 0; 45 | list->part.next = NULL; 46 | list->last = &list->part; 47 | list->size = size; 48 | list->nalloc = n; 49 | list->pool = pool; 50 | 51 | return NGX_OK; 52 | } 53 | 54 | 55 | /* 56 | * 57 | * the iteration through the list: 58 | * 59 | * part = &list.part; 60 | * data = part->elts; 61 | * 62 | * for (i = 0 ;; i++) { 63 | * 64 | * if (i >= part->nelts) { 65 | * if (part->next == NULL) { 66 | * break; 67 | * } 68 | * 69 | * part = part->next; 70 | * data = part->elts; 71 | * i = 0; 72 | * } 73 | * 74 | * ... data[i] ... 75 | * 76 | * } 77 | */ 78 | 79 | 80 | void *ngx_list_push(ngx_list_t *list); 81 | 82 | 83 | #endif /* _NGX_LIST_H_INCLUDED_ */ 84 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_log.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_log.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_md5.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MD5_H_INCLUDED_ 9 | #define _NGX_MD5_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #if (NGX_HAVE_MD5) 17 | 18 | #if (NGX_HAVE_OPENSSL_MD5_H) 19 | #include 20 | #else 21 | #include 22 | #endif 23 | 24 | 25 | typedef MD5_CTX ngx_md5_t; 26 | 27 | 28 | #if (NGX_OPENSSL_MD5) 29 | 30 | #define ngx_md5_init MD5_Init 31 | #define ngx_md5_update MD5_Update 32 | #define ngx_md5_final MD5_Final 33 | 34 | #else 35 | 36 | #define ngx_md5_init MD5Init 37 | #define ngx_md5_update MD5Update 38 | #define ngx_md5_final MD5Final 39 | 40 | #endif 41 | 42 | 43 | #else /* !NGX_HAVE_MD5 */ 44 | 45 | 46 | typedef struct { 47 | uint64_t bytes; 48 | uint32_t a, b, c, d; 49 | u_char buffer[64]; 50 | } ngx_md5_t; 51 | 52 | 53 | void ngx_md5_init(ngx_md5_t *ctx); 54 | void ngx_md5_update(ngx_md5_t *ctx, const void *data, size_t size); 55 | void ngx_md5_final(u_char result[16], ngx_md5_t *ctx); 56 | 57 | 58 | #endif 59 | 60 | #endif /* _NGX_MD5_H_INCLUDED_ */ 61 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_murmurhash.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Austin Appleby 4 | */ 5 | 6 | 7 | #include 8 | #include 9 | 10 | 11 | uint32_t 12 | ngx_murmur_hash2(u_char *data, size_t len) 13 | { 14 | uint32_t h, k; 15 | 16 | h = 0 ^ len; 17 | 18 | while (len >= 4) { 19 | k = data[0]; 20 | k |= data[1] << 8; 21 | k |= data[2] << 16; 22 | k |= data[3] << 24; 23 | 24 | k *= 0x5bd1e995; 25 | k ^= k >> 24; 26 | k *= 0x5bd1e995; 27 | 28 | h *= 0x5bd1e995; 29 | h ^= k; 30 | 31 | data += 4; 32 | len -= 4; 33 | } 34 | 35 | switch (len) { 36 | case 3: 37 | h ^= data[2] << 16; 38 | case 2: 39 | h ^= data[1] << 8; 40 | case 1: 41 | h ^= data[0]; 42 | h *= 0x5bd1e995; 43 | } 44 | 45 | h ^= h >> 13; 46 | h *= 0x5bd1e995; 47 | h ^= h >> 15; 48 | 49 | return h; 50 | } 51 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_murmurhash.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MURMURHASH_H_INCLUDED_ 9 | #define _NGX_MURMURHASH_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | uint32_t ngx_murmur_hash2(u_char *data, size_t len); 17 | 18 | 19 | #endif /* _NGX_MURMURHASH_H_INCLUDED_ */ 20 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_palloc.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_PALLOC_H_INCLUDED_ 9 | #define _NGX_PALLOC_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | /* 17 | * NGX_MAX_ALLOC_FROM_POOL should be (ngx_pagesize - 1), i.e. 4095 on x86. 18 | * On Windows NT it decreases a number of locked pages in a kernel. 19 | */ 20 | #define NGX_MAX_ALLOC_FROM_POOL (ngx_pagesize - 1) 21 | 22 | #define NGX_DEFAULT_POOL_SIZE (16 * 1024) 23 | 24 | #define NGX_POOL_ALIGNMENT 16 25 | #define NGX_MIN_POOL_SIZE \ 26 | ngx_align((sizeof(ngx_pool_t) + 2 * sizeof(ngx_pool_large_t)), \ 27 | NGX_POOL_ALIGNMENT) 28 | 29 | 30 | typedef void (*ngx_pool_cleanup_pt)(void *data); 31 | 32 | typedef struct ngx_pool_cleanup_s ngx_pool_cleanup_t; 33 | 34 | struct ngx_pool_cleanup_s { 35 | ngx_pool_cleanup_pt handler; 36 | void *data; 37 | ngx_pool_cleanup_t *next; 38 | }; 39 | 40 | 41 | typedef struct ngx_pool_large_s ngx_pool_large_t; 42 | 43 | struct ngx_pool_large_s { 44 | ngx_pool_large_t *next; 45 | void *alloc; 46 | }; 47 | 48 | 49 | typedef struct { 50 | u_char *last; 51 | u_char *end; 52 | ngx_pool_t *next; 53 | ngx_uint_t failed; 54 | } ngx_pool_data_t; 55 | 56 | 57 | struct ngx_pool_s { 58 | ngx_pool_data_t d; 59 | size_t max; 60 | ngx_pool_t *current; 61 | ngx_chain_t *chain; 62 | ngx_pool_large_t *large; 63 | ngx_pool_cleanup_t *cleanup; 64 | ngx_log_t *log; 65 | }; 66 | 67 | 68 | typedef struct { 69 | ngx_fd_t fd; 70 | u_char *name; 71 | ngx_log_t *log; 72 | } ngx_pool_cleanup_file_t; 73 | 74 | 75 | void *ngx_alloc(size_t size, ngx_log_t *log); 76 | void *ngx_calloc(size_t size, ngx_log_t *log); 77 | 78 | ngx_pool_t *ngx_create_pool(size_t size, ngx_log_t *log); 79 | void ngx_destroy_pool(ngx_pool_t *pool); 80 | void ngx_reset_pool(ngx_pool_t *pool); 81 | 82 | void *ngx_palloc(ngx_pool_t *pool, size_t size); 83 | void *ngx_pnalloc(ngx_pool_t *pool, size_t size); 84 | void *ngx_pcalloc(ngx_pool_t *pool, size_t size); 85 | void *ngx_pmemalign(ngx_pool_t *pool, size_t size, size_t alignment); 86 | ngx_int_t ngx_pfree(ngx_pool_t *pool, void *p); 87 | 88 | 89 | ngx_pool_cleanup_t *ngx_pool_cleanup_add(ngx_pool_t *p, size_t size); 90 | void ngx_pool_run_cleanup_file(ngx_pool_t *p, ngx_fd_t fd); 91 | void ngx_pool_cleanup_file(void *data); 92 | void ngx_pool_delete_file(void *data); 93 | 94 | 95 | #endif /* _NGX_PALLOC_H_INCLUDED_ */ 96 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_parse.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_PARSE_H_INCLUDED_ 9 | #define _NGX_PARSE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | ssize_t ngx_parse_size(ngx_str_t *line); 17 | off_t ngx_parse_offset(ngx_str_t *line); 18 | ngx_int_t ngx_parse_time(ngx_str_t *line, ngx_uint_t is_sec); 19 | 20 | 21 | #endif /* _NGX_PARSE_H_INCLUDED_ */ 22 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse_time.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_PARSE_TIME_H_INCLUDED_ 9 | #define _NGX_PARSE_TIME_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | time_t ngx_parse_http_time(u_char *value, size_t len); 17 | 18 | /* compatibility */ 19 | #define ngx_http_parse_time(value, len) ngx_parse_http_time(value, len) 20 | 21 | 22 | #endif /* _NGX_PARSE_TIME_H_INCLUDED_ */ 23 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_proxy_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_proxy_protocol.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_proxy_protocol.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Roman Arutyunyan 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_PROXY_PROTOCOL_H_INCLUDED_ 9 | #define _NGX_PROXY_PROTOCOL_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #define NGX_PROXY_PROTOCOL_MAX_HEADER 107 17 | 18 | 19 | u_char *ngx_proxy_protocol_read(ngx_connection_t *c, u_char *buf, 20 | u_char *last); 21 | u_char *ngx_proxy_protocol_write(ngx_connection_t *c, u_char *buf, 22 | u_char *last); 23 | 24 | 25 | #endif /* _NGX_PROXY_PROTOCOL_H_INCLUDED_ */ 26 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_queue.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | /* 13 | * find the middle queue element if the queue has odd number of elements 14 | * or the first element of the queue's second part otherwise 15 | */ 16 | 17 | ngx_queue_t * 18 | ngx_queue_middle(ngx_queue_t *queue) 19 | { 20 | ngx_queue_t *middle, *next; 21 | 22 | middle = ngx_queue_head(queue); 23 | 24 | if (middle == ngx_queue_last(queue)) { 25 | return middle; 26 | } 27 | 28 | next = ngx_queue_head(queue); 29 | 30 | for ( ;; ) { 31 | middle = ngx_queue_next(middle); 32 | 33 | next = ngx_queue_next(next); 34 | 35 | if (next == ngx_queue_last(queue)) { 36 | return middle; 37 | } 38 | 39 | next = ngx_queue_next(next); 40 | 41 | if (next == ngx_queue_last(queue)) { 42 | return middle; 43 | } 44 | } 45 | } 46 | 47 | 48 | /* the stable insertion sort */ 49 | 50 | void 51 | ngx_queue_sort(ngx_queue_t *queue, 52 | ngx_int_t (*cmp)(const ngx_queue_t *, const ngx_queue_t *)) 53 | { 54 | ngx_queue_t *q, *prev, *next; 55 | 56 | q = ngx_queue_head(queue); 57 | 58 | if (q == ngx_queue_last(queue)) { 59 | return; 60 | } 61 | 62 | for (q = ngx_queue_next(q); q != ngx_queue_sentinel(queue); q = next) { 63 | 64 | prev = ngx_queue_prev(q); 65 | next = ngx_queue_next(q); 66 | 67 | ngx_queue_remove(q); 68 | 69 | do { 70 | if (cmp(prev, q) <= 0) { 71 | break; 72 | } 73 | 74 | prev = ngx_queue_prev(prev); 75 | 76 | } while (prev != ngx_queue_sentinel(queue)); 77 | 78 | ngx_queue_insert_after(prev, q); 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_radix_tree.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_RADIX_TREE_H_INCLUDED_ 9 | #define _NGX_RADIX_TREE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #define NGX_RADIX_NO_VALUE (uintptr_t) -1 17 | 18 | typedef struct ngx_radix_node_s ngx_radix_node_t; 19 | 20 | struct ngx_radix_node_s { 21 | ngx_radix_node_t *right; 22 | ngx_radix_node_t *left; 23 | ngx_radix_node_t *parent; 24 | uintptr_t value; 25 | }; 26 | 27 | 28 | typedef struct { 29 | ngx_radix_node_t *root; 30 | ngx_pool_t *pool; 31 | ngx_radix_node_t *free; 32 | char *start; 33 | size_t size; 34 | } ngx_radix_tree_t; 35 | 36 | 37 | ngx_radix_tree_t *ngx_radix_tree_create(ngx_pool_t *pool, 38 | ngx_int_t preallocate); 39 | 40 | ngx_int_t ngx_radix32tree_insert(ngx_radix_tree_t *tree, 41 | uint32_t key, uint32_t mask, uintptr_t value); 42 | ngx_int_t ngx_radix32tree_delete(ngx_radix_tree_t *tree, 43 | uint32_t key, uint32_t mask); 44 | uintptr_t ngx_radix32tree_find(ngx_radix_tree_t *tree, uint32_t key); 45 | 46 | #if (NGX_HAVE_INET6) 47 | ngx_int_t ngx_radix128tree_insert(ngx_radix_tree_t *tree, 48 | u_char *key, u_char *mask, uintptr_t value); 49 | ngx_int_t ngx_radix128tree_delete(ngx_radix_tree_t *tree, 50 | u_char *key, u_char *mask); 51 | uintptr_t ngx_radix128tree_find(ngx_radix_tree_t *tree, u_char *key); 52 | #endif 53 | 54 | 55 | #endif /* _NGX_RADIX_TREE_H_INCLUDED_ */ 56 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_rbtree.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_rbtree.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_regex.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_REGEX_H_INCLUDED_ 9 | #define _NGX_REGEX_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | #include 16 | 17 | 18 | #define NGX_REGEX_NO_MATCHED PCRE_ERROR_NOMATCH /* -1 */ 19 | 20 | #define NGX_REGEX_CASELESS PCRE_CASELESS 21 | 22 | 23 | typedef struct { 24 | pcre *code; 25 | pcre_extra *extra; 26 | } ngx_regex_t; 27 | 28 | 29 | typedef struct { 30 | ngx_str_t pattern; 31 | ngx_pool_t *pool; 32 | ngx_int_t options; 33 | 34 | ngx_regex_t *regex; 35 | int captures; 36 | int named_captures; 37 | int name_size; 38 | u_char *names; 39 | ngx_str_t err; 40 | } ngx_regex_compile_t; 41 | 42 | 43 | typedef struct { 44 | ngx_regex_t *regex; 45 | u_char *name; 46 | } ngx_regex_elt_t; 47 | 48 | 49 | void ngx_regex_init(void); 50 | ngx_int_t ngx_regex_compile(ngx_regex_compile_t *rc); 51 | 52 | #define ngx_regex_exec(re, s, captures, size) \ 53 | pcre_exec(re->code, re->extra, (const char *) (s)->data, (s)->len, 0, 0, \ 54 | captures, size) 55 | #define ngx_regex_exec_n "pcre_exec()" 56 | 57 | ngx_int_t ngx_regex_exec_array(ngx_array_t *a, ngx_str_t *s, ngx_log_t *log); 58 | 59 | 60 | #endif /* _NGX_REGEX_H_INCLUDED_ */ 61 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rwlock.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Ruslan Ermilov 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | #if (NGX_HAVE_ATOMIC_OPS) 13 | 14 | 15 | #define NGX_RWLOCK_SPIN 2048 16 | #define NGX_RWLOCK_WLOCK ((ngx_atomic_uint_t) -1) 17 | 18 | 19 | void 20 | ngx_rwlock_wlock(ngx_atomic_t *lock) 21 | { 22 | ngx_uint_t i, n; 23 | 24 | for ( ;; ) { 25 | 26 | if (*lock == 0 && ngx_atomic_cmp_set(lock, 0, NGX_RWLOCK_WLOCK)) { 27 | return; 28 | } 29 | 30 | if (ngx_ncpu > 1) { 31 | 32 | for (n = 1; n < NGX_RWLOCK_SPIN; n <<= 1) { 33 | 34 | for (i = 0; i < n; i++) { 35 | ngx_cpu_pause(); 36 | } 37 | 38 | if (*lock == 0 39 | && ngx_atomic_cmp_set(lock, 0, NGX_RWLOCK_WLOCK)) 40 | { 41 | return; 42 | } 43 | } 44 | } 45 | 46 | ngx_sched_yield(); 47 | } 48 | } 49 | 50 | 51 | void 52 | ngx_rwlock_rlock(ngx_atomic_t *lock) 53 | { 54 | ngx_uint_t i, n; 55 | ngx_atomic_uint_t readers; 56 | 57 | for ( ;; ) { 58 | readers = *lock; 59 | 60 | if (readers != NGX_RWLOCK_WLOCK 61 | && ngx_atomic_cmp_set(lock, readers, readers + 1)) 62 | { 63 | return; 64 | } 65 | 66 | if (ngx_ncpu > 1) { 67 | 68 | for (n = 1; n < NGX_RWLOCK_SPIN; n <<= 1) { 69 | 70 | for (i = 0; i < n; i++) { 71 | ngx_cpu_pause(); 72 | } 73 | 74 | readers = *lock; 75 | 76 | if (readers != NGX_RWLOCK_WLOCK 77 | && ngx_atomic_cmp_set(lock, readers, readers + 1)) 78 | { 79 | return; 80 | } 81 | } 82 | } 83 | 84 | ngx_sched_yield(); 85 | } 86 | } 87 | 88 | 89 | void 90 | ngx_rwlock_unlock(ngx_atomic_t *lock) 91 | { 92 | ngx_atomic_uint_t readers; 93 | 94 | readers = *lock; 95 | 96 | if (readers == NGX_RWLOCK_WLOCK) { 97 | *lock = 0; 98 | return; 99 | } 100 | 101 | for ( ;; ) { 102 | 103 | if (ngx_atomic_cmp_set(lock, readers, readers - 1)) { 104 | return; 105 | } 106 | 107 | readers = *lock; 108 | } 109 | } 110 | 111 | 112 | #else 113 | 114 | #if (NGX_HTTP_UPSTREAM_ZONE || NGX_STREAM_UPSTREAM_ZONE) 115 | 116 | #error ngx_atomic_cmp_set() is not defined! 117 | 118 | #endif 119 | 120 | #endif 121 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rwlock.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Ruslan Ermilov 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_RWLOCK_H_INCLUDED_ 9 | #define _NGX_RWLOCK_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | void ngx_rwlock_wlock(ngx_atomic_t *lock); 17 | void ngx_rwlock_rlock(ngx_atomic_t *lock); 18 | void ngx_rwlock_unlock(ngx_atomic_t *lock); 19 | 20 | 21 | #endif /* _NGX_RWLOCK_H_INCLUDED_ */ 22 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_sha1.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_SHA1_H_INCLUDED_ 9 | #define _NGX_SHA1_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #if (NGX_HAVE_OPENSSL_SHA1_H) 17 | #include 18 | #else 19 | #include 20 | #endif 21 | 22 | 23 | typedef SHA_CTX ngx_sha1_t; 24 | 25 | 26 | #define ngx_sha1_init SHA1_Init 27 | #define ngx_sha1_update SHA1_Update 28 | #define ngx_sha1_final SHA1_Final 29 | 30 | 31 | #endif /* _NGX_SHA1_H_INCLUDED_ */ 32 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_shmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_shmtx.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_shmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_shmtx.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_slab.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_slab.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_spinlock.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_string.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_string.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_syslog.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_syslog.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_thread_pool.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_thread_pool.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_times.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/core/ngx_times.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_epoll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/modules/ngx_epoll_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_poll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/modules/ngx_poll_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_accept.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_connect.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_connect.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_openssl.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_pipe.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_pipe.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_posted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_posted.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_posted.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_EVENT_POSTED_H_INCLUDED_ 9 | #define _NGX_EVENT_POSTED_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | #define ngx_post_event(ev, q) \ 18 | \ 19 | if (!(ev)->posted) { \ 20 | (ev)->posted = 1; \ 21 | ngx_queue_insert_tail(q, &(ev)->queue); \ 22 | \ 23 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, (ev)->log, 0, "post event %p", ev);\ 24 | \ 25 | } else { \ 26 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, (ev)->log, 0, \ 27 | "update posted event %p", ev); \ 28 | } 29 | 30 | 31 | #define ngx_delete_posted_event(ev) \ 32 | \ 33 | (ev)->posted = 0; \ 34 | ngx_queue_remove(&(ev)->queue); \ 35 | \ 36 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, (ev)->log, 0, \ 37 | "delete posted event %p", ev); 38 | 39 | 40 | 41 | void ngx_event_process_posted(ngx_cycle_t *cycle, ngx_queue_t *posted); 42 | 43 | 44 | extern ngx_queue_t ngx_posted_accept_events; 45 | extern ngx_queue_t ngx_posted_events; 46 | 47 | 48 | #endif /* _NGX_EVENT_POSTED_H_INCLUDED_ */ 49 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/event/ngx_event_timer.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_timer.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_EVENT_TIMER_H_INCLUDED_ 9 | #define _NGX_EVENT_TIMER_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | #define NGX_TIMER_INFINITE (ngx_msec_t) -1 18 | 19 | #define NGX_TIMER_LAZY_DELAY 300 20 | 21 | 22 | ngx_int_t ngx_event_timer_init(ngx_log_t *log); 23 | ngx_msec_t ngx_event_find_timer(void); 24 | void ngx_event_expire_timers(void); 25 | void ngx_event_cancel_timers(void); 26 | 27 | 28 | extern ngx_rbtree_t ngx_event_timer_rbtree; 29 | 30 | 31 | static ngx_inline void 32 | ngx_event_del_timer(ngx_event_t *ev) 33 | { 34 | ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0, 35 | "event timer del: %d: %M", 36 | ngx_event_ident(ev->data), ev->timer.key); 37 | 38 | ngx_rbtree_delete(&ngx_event_timer_rbtree, &ev->timer); 39 | 40 | #if (NGX_DEBUG) 41 | ev->timer.left = NULL; 42 | ev->timer.right = NULL; 43 | ev->timer.parent = NULL; 44 | #endif 45 | 46 | ev->timer_set = 0; 47 | } 48 | 49 | 50 | static ngx_inline void 51 | ngx_event_add_timer(ngx_event_t *ev, ngx_msec_t timer) 52 | { 53 | ngx_msec_t key; 54 | ngx_msec_int_t diff; 55 | 56 | key = ngx_current_msec + timer; 57 | 58 | if (ev->timer_set) { 59 | 60 | /* 61 | * Use a previous timer value if difference between it and a new 62 | * value is less than NGX_TIMER_LAZY_DELAY milliseconds: this allows 63 | * to minimize the rbtree operations for fast connections. 64 | */ 65 | 66 | diff = (ngx_msec_int_t) (key - ev->timer.key); 67 | 68 | if (ngx_abs(diff) < NGX_TIMER_LAZY_DELAY) { 69 | ngx_log_debug3(NGX_LOG_DEBUG_EVENT, ev->log, 0, 70 | "event timer: %d, old: %M, new: %M", 71 | ngx_event_ident(ev->data), ev->timer.key, key); 72 | return; 73 | } 74 | 75 | ngx_del_timer(ev); 76 | } 77 | 78 | ev->timer.key = key; 79 | 80 | ngx_log_debug3(NGX_LOG_DEBUG_EVENT, ev->log, 0, 81 | "event timer add: %d: %M:%M", 82 | ngx_event_ident(ev->data), timer, ev->timer.key); 83 | 84 | ngx_rbtree_insert(&ngx_event_timer_rbtree, &ev->timer); 85 | 86 | ev->timer_set = 1; 87 | } 88 | 89 | 90 | #endif /* _NGX_EVENT_TIMER_H_INCLUDED_ */ 91 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_log_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/modules/ngx_http_log_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_memcached_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/modules/ngx_http_memcached_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/modules/ngx_http_proxy_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_rewrite_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/modules/ngx_http_rewrite_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_ssl_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_HTTP_SSL_H_INCLUDED_ 9 | #define _NGX_HTTP_SSL_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | typedef struct { 18 | ngx_flag_t enable; 19 | 20 | ngx_ssl_t ssl; 21 | 22 | ngx_flag_t prefer_server_ciphers; 23 | 24 | ngx_uint_t protocols; 25 | 26 | ngx_uint_t verify; 27 | ngx_uint_t verify_depth; 28 | 29 | size_t buffer_size; 30 | 31 | ssize_t builtin_session_cache; 32 | 33 | time_t session_timeout; 34 | 35 | ngx_str_t certificate; 36 | ngx_str_t certificate_key; 37 | ngx_str_t dhparam; 38 | ngx_str_t ecdh_curve; 39 | ngx_str_t client_certificate; 40 | ngx_str_t trusted_certificate; 41 | ngx_str_t crl; 42 | 43 | ngx_str_t ciphers; 44 | 45 | ngx_array_t *passwords; 46 | 47 | ngx_shm_zone_t *shm_zone; 48 | 49 | ngx_flag_t session_tickets; 50 | ngx_array_t *session_ticket_keys; 51 | 52 | ngx_flag_t stapling; 53 | ngx_flag_t stapling_verify; 54 | ngx_str_t stapling_file; 55 | ngx_str_t stapling_responder; 56 | 57 | u_char *file; 58 | ngx_uint_t line; 59 | } ngx_http_ssl_srv_conf_t; 60 | 61 | 62 | extern ngx_module_t ngx_http_ssl_module; 63 | 64 | 65 | #endif /* _NGX_HTTP_SSL_H_INCLUDED_ */ 66 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/Makefile.PL: -------------------------------------------------------------------------------- 1 | 2 | # Copyright (C) Igor Sysoev 3 | # Copyright (C) Nginx, Inc. 4 | 5 | use 5.006001; 6 | use ExtUtils::MakeMaker; 7 | 8 | WriteMakefile( 9 | NAME => 'nginx', 10 | VERSION_FROM => 'nginx.pm', # finds $VERSION 11 | PREREQ_PM => {}, # e.g., Module::Name => 1.1 12 | 13 | ABSTRACT_FROM => 'nginx.pm', # retrieve abstract from module 14 | AUTHOR => 'Igor Sysoev', 15 | 16 | CCFLAGS => "$ENV{NGX_PM_CFLAGS}", 17 | OPTIMIZE => '-O', 18 | 19 | INC => join(" ", map { 20 | m#^/# ? "-I $_" : "-I ../../../../../$_" 21 | } (split /\s+/, $ENV{NGX_INCS})), 22 | 23 | depend => { 24 | 'nginx.c' => join(" ", map { 25 | m#^/# ? $_ : "../../../../../$_" 26 | } (split(/\s+/, $ENV{NGX_DEPS}), 27 | "src/http/modules/perl/ngx_http_perl_module.h")) 28 | }, 29 | 30 | PM => { 31 | 'nginx.pm' => '$(INST_LIBDIR)/nginx.pm' 32 | } 33 | ); 34 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/ngx_http_perl_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_HTTP_PERL_MODULE_H_INCLUDED_ 9 | #define _NGX_HTTP_PERL_MODULE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | 17 | #include 18 | #include 19 | 20 | 21 | typedef ngx_http_request_t *nginx; 22 | 23 | typedef struct { 24 | ngx_str_t filename; 25 | ngx_str_t redirect_uri; 26 | ngx_str_t redirect_args; 27 | 28 | SV *next; 29 | 30 | ngx_uint_t done; /* unsigned done:1; */ 31 | 32 | ngx_array_t *variables; /* array of ngx_http_perl_var_t */ 33 | 34 | #if (NGX_HTTP_SSI) 35 | ngx_http_ssi_ctx_t *ssi; 36 | #endif 37 | } ngx_http_perl_ctx_t; 38 | 39 | 40 | typedef struct { 41 | ngx_uint_t hash; 42 | ngx_str_t name; 43 | ngx_str_t value; 44 | } ngx_http_perl_var_t; 45 | 46 | 47 | extern ngx_module_t ngx_http_perl_module; 48 | 49 | 50 | /* 51 | * workaround for "unused variable `Perl___notused'" warning 52 | * when building with perl 5.6.1 53 | */ 54 | #ifndef PERL_IMPLICIT_CONTEXT 55 | #undef dTHXa 56 | #define dTHXa(a) 57 | #endif 58 | 59 | 60 | extern void boot_DynaLoader(pTHX_ CV* cv); 61 | 62 | 63 | void ngx_http_perl_handle_request(ngx_http_request_t *r); 64 | void ngx_http_perl_sleep_handler(ngx_http_request_t *r); 65 | 66 | 67 | #endif /* _NGX_HTTP_PERL_MODULE_H_INCLUDED_ */ 68 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | 3 | nginx T_PTROBJ 4 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_core_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_core_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_core_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_header_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_header_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_parse.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_postpone_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_postpone_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_request.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_request.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_request_body.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_script.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_script.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_upstream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_upstream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_upstream_round_robin.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_variables.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_variables.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_write_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/http/ngx_http_write_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Nginx, Inc. 4 | * Copyright (C) Valentin V. Bartenev 5 | */ 6 | 7 | 8 | #ifndef _NGX_HTTP_V2_MODULE_H_INCLUDED_ 9 | #define _NGX_HTTP_V2_MODULE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | typedef struct { 18 | size_t recv_buffer_size; 19 | u_char *recv_buffer; 20 | } ngx_http_v2_main_conf_t; 21 | 22 | 23 | typedef struct { 24 | size_t pool_size; 25 | ngx_uint_t concurrent_streams; 26 | size_t max_field_size; 27 | size_t max_header_size; 28 | ngx_uint_t streams_index_mask; 29 | ngx_msec_t recv_timeout; 30 | ngx_msec_t idle_timeout; 31 | } ngx_http_v2_srv_conf_t; 32 | 33 | 34 | typedef struct { 35 | size_t chunk_size; 36 | } ngx_http_v2_loc_conf_t; 37 | 38 | 39 | extern ngx_module_t ngx_http_v2_module; 40 | 41 | 42 | #endif /* _NGX_HTTP_V2_MODULE_H_INCLUDED_ */ 43 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_imap_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MAIL_IMAP_MODULE_H_INCLUDED_ 9 | #define _NGX_MAIL_IMAP_MODULE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | typedef struct { 18 | size_t client_buffer_size; 19 | 20 | ngx_str_t capability; 21 | ngx_str_t starttls_capability; 22 | ngx_str_t starttls_only_capability; 23 | 24 | ngx_uint_t auth_methods; 25 | 26 | ngx_array_t capabilities; 27 | } ngx_mail_imap_srv_conf_t; 28 | 29 | 30 | void ngx_mail_imap_init_session(ngx_mail_session_t *s, ngx_connection_t *c); 31 | void ngx_mail_imap_init_protocol(ngx_event_t *rev); 32 | void ngx_mail_imap_auth_state(ngx_event_t *rev); 33 | ngx_int_t ngx_mail_imap_parse_command(ngx_mail_session_t *s); 34 | 35 | 36 | extern ngx_module_t ngx_mail_imap_module; 37 | 38 | 39 | #endif /* _NGX_MAIL_IMAP_MODULE_H_INCLUDED_ */ 40 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_pop3_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MAIL_POP3_MODULE_H_INCLUDED_ 9 | #define _NGX_MAIL_POP3_MODULE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | typedef struct { 18 | ngx_str_t capability; 19 | ngx_str_t starttls_capability; 20 | ngx_str_t starttls_only_capability; 21 | ngx_str_t auth_capability; 22 | 23 | ngx_uint_t auth_methods; 24 | 25 | ngx_array_t capabilities; 26 | } ngx_mail_pop3_srv_conf_t; 27 | 28 | 29 | void ngx_mail_pop3_init_session(ngx_mail_session_t *s, ngx_connection_t *c); 30 | void ngx_mail_pop3_init_protocol(ngx_event_t *rev); 31 | void ngx_mail_pop3_auth_state(ngx_event_t *rev); 32 | ngx_int_t ngx_mail_pop3_parse_command(ngx_mail_session_t *s); 33 | 34 | 35 | extern ngx_module_t ngx_mail_pop3_module; 36 | 37 | 38 | #endif /* _NGX_MAIL_POP3_MODULE_H_INCLUDED_ */ 39 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_smtp_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MAIL_SMTP_MODULE_H_INCLUDED_ 9 | #define _NGX_MAIL_SMTP_MODULE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | 17 | 18 | typedef struct { 19 | ngx_msec_t greeting_delay; 20 | 21 | size_t client_buffer_size; 22 | 23 | ngx_str_t capability; 24 | ngx_str_t starttls_capability; 25 | ngx_str_t starttls_only_capability; 26 | 27 | ngx_str_t server_name; 28 | ngx_str_t greeting; 29 | 30 | ngx_uint_t auth_methods; 31 | 32 | ngx_array_t capabilities; 33 | } ngx_mail_smtp_srv_conf_t; 34 | 35 | 36 | void ngx_mail_smtp_init_session(ngx_mail_session_t *s, ngx_connection_t *c); 37 | void ngx_mail_smtp_init_protocol(ngx_event_t *rev); 38 | void ngx_mail_smtp_auth_state(ngx_event_t *rev); 39 | ngx_int_t ngx_mail_smtp_parse_command(ngx_mail_session_t *s); 40 | 41 | 42 | extern ngx_module_t ngx_mail_smtp_module; 43 | 44 | 45 | #endif /* _NGX_MAIL_SMTP_MODULE_H_INCLUDED_ */ 46 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_ssl_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_MAIL_SSL_H_INCLUDED_ 9 | #define _NGX_MAIL_SSL_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | #define NGX_MAIL_STARTTLS_OFF 0 18 | #define NGX_MAIL_STARTTLS_ON 1 19 | #define NGX_MAIL_STARTTLS_ONLY 2 20 | 21 | 22 | typedef struct { 23 | ngx_flag_t enable; 24 | ngx_flag_t prefer_server_ciphers; 25 | 26 | ngx_ssl_t ssl; 27 | 28 | ngx_uint_t starttls; 29 | ngx_uint_t protocols; 30 | 31 | ngx_uint_t verify; 32 | ngx_uint_t verify_depth; 33 | 34 | ssize_t builtin_session_cache; 35 | 36 | time_t session_timeout; 37 | 38 | ngx_str_t certificate; 39 | ngx_str_t certificate_key; 40 | ngx_str_t dhparam; 41 | ngx_str_t ecdh_curve; 42 | ngx_str_t client_certificate; 43 | ngx_str_t trusted_certificate; 44 | ngx_str_t crl; 45 | 46 | ngx_str_t ciphers; 47 | 48 | ngx_array_t *passwords; 49 | 50 | ngx_shm_zone_t *shm_zone; 51 | 52 | ngx_flag_t session_tickets; 53 | ngx_array_t *session_ticket_keys; 54 | 55 | u_char *file; 56 | ngx_uint_t line; 57 | } ngx_mail_ssl_conf_t; 58 | 59 | 60 | extern ngx_module_t ngx_mail_ssl_module; 61 | 62 | 63 | #endif /* _NGX_MAIL_SSL_H_INCLUDED_ */ 64 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/misc/ngx_cpp_test_module.cpp: -------------------------------------------------------------------------------- 1 | 2 | // stub module to test header files' C++ compatibility 3 | 4 | extern "C" { 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | #include 12 | 13 | #include 14 | #include 15 | #include 16 | #include 17 | } 18 | 19 | // nginx header files should go before other, because they define 64-bit off_t 20 | // #include 21 | 22 | 23 | void ngx_cpp_test_handler(void *data); 24 | 25 | void 26 | ngx_cpp_test_handler(void *data) 27 | { 28 | return; 29 | } 30 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_alloc.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_alloc.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_ALLOC_H_INCLUDED_ 9 | #define _NGX_ALLOC_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | void *ngx_alloc(size_t size, ngx_log_t *log); 17 | void *ngx_calloc(size_t size, ngx_log_t *log); 18 | 19 | #define ngx_free free 20 | 21 | 22 | /* 23 | * Linux has memalign() or posix_memalign() 24 | * Solaris has memalign() 25 | * FreeBSD 7.0 has posix_memalign(), besides, early version's malloc() 26 | * aligns allocations bigger than page size at the page boundary 27 | */ 28 | 29 | #if (NGX_HAVE_POSIX_MEMALIGN || NGX_HAVE_MEMALIGN) 30 | 31 | void *ngx_memalign(size_t alignment, size_t size, ngx_log_t *log); 32 | 33 | #else 34 | 35 | #define ngx_memalign(alignment, size, log) ngx_alloc(size, log) 36 | 37 | #endif 38 | 39 | 40 | extern ngx_uint_t ngx_pagesize; 41 | extern ngx_uint_t ngx_pagesize_shift; 42 | extern ngx_uint_t ngx_cacheline_size; 43 | 44 | 45 | #endif /* _NGX_ALLOC_H_INCLUDED_ */ 46 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_atomic.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_channel.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_channel.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_daemon.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | ngx_int_t 13 | ngx_daemon(ngx_log_t *log) 14 | { 15 | int fd; 16 | 17 | switch (fork()) { 18 | case -1: 19 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "fork() failed"); 20 | return NGX_ERROR; 21 | 22 | case 0: 23 | break; 24 | 25 | default: 26 | exit(0); 27 | } 28 | 29 | ngx_pid = ngx_getpid(); 30 | 31 | if (setsid() == -1) { 32 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "setsid() failed"); 33 | return NGX_ERROR; 34 | } 35 | 36 | umask(0); 37 | 38 | fd = open("/dev/null", O_RDWR); 39 | if (fd == -1) { 40 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, 41 | "open(\"/dev/null\") failed"); 42 | return NGX_ERROR; 43 | } 44 | 45 | if (dup2(fd, STDIN_FILENO) == -1) { 46 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "dup2(STDIN) failed"); 47 | return NGX_ERROR; 48 | } 49 | 50 | if (dup2(fd, STDOUT_FILENO) == -1) { 51 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "dup2(STDOUT) failed"); 52 | return NGX_ERROR; 53 | } 54 | 55 | #if 0 56 | if (dup2(fd, STDERR_FILENO) == -1) { 57 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "dup2(STDERR) failed"); 58 | return NGX_ERROR; 59 | } 60 | #endif 61 | 62 | if (fd > STDERR_FILENO) { 63 | if (close(fd) == -1) { 64 | ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "close() failed"); 65 | return NGX_ERROR; 66 | } 67 | } 68 | 69 | return NGX_OK; 70 | } 71 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_DARWIN_H_INCLUDED_ 9 | #define _NGX_DARWIN_H_INCLUDED_ 10 | 11 | 12 | void ngx_debug_init(void); 13 | ngx_chain_t *ngx_darwin_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, 14 | off_t limit); 15 | 16 | extern int ngx_darwin_kern_osreldate; 17 | extern int ngx_darwin_hw_ncpu; 18 | extern u_long ngx_darwin_net_inet_tcp_sendspace; 19 | 20 | extern ngx_uint_t ngx_debug_malloc; 21 | 22 | 23 | #endif /* _NGX_DARWIN_H_INCLUDED_ */ 24 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin_config.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_DARWIN_CONFIG_H_INCLUDED_ 9 | #define _NGX_DARWIN_CONFIG_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include /* offsetof() */ 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include /* statfs() */ 29 | 30 | #include /* FIONBIO */ 31 | #include 32 | #include 33 | #include 34 | #include 35 | 36 | #include 37 | #include 38 | #include 39 | #include 40 | 41 | #include 42 | #include 43 | #include /* TCP_NODELAY */ 44 | #include 45 | #include 46 | #include 47 | 48 | #include 49 | #include 50 | 51 | #include 52 | 53 | 54 | #ifndef IOV_MAX 55 | #define IOV_MAX 64 56 | #endif 57 | 58 | 59 | #include 60 | 61 | 62 | #if (NGX_HAVE_POSIX_SEM) 63 | #include 64 | #endif 65 | 66 | 67 | #if (NGX_HAVE_POLL) 68 | #include 69 | #endif 70 | 71 | 72 | #if (NGX_HAVE_KQUEUE) 73 | #include 74 | #endif 75 | 76 | 77 | #define NGX_LISTEN_BACKLOG -1 78 | 79 | 80 | #ifndef NGX_HAVE_INHERITED_NONBLOCK 81 | #define NGX_HAVE_INHERITED_NONBLOCK 1 82 | #endif 83 | 84 | 85 | #ifndef NGX_HAVE_CASELESS_FILESYSTEM 86 | #define NGX_HAVE_CASELESS_FILESYSTEM 1 87 | #endif 88 | 89 | 90 | #define NGX_HAVE_OS_SPECIFIC_INIT 1 91 | #define NGX_HAVE_DEBUG_MALLOC 1 92 | 93 | 94 | extern char **environ; 95 | 96 | 97 | #endif /* _NGX_DARWIN_CONFIG_H_INCLUDED_ */ 98 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_darwin_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_dlopen.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Maxim Dounin 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | #if (NGX_HAVE_DLOPEN) 13 | 14 | char * 15 | ngx_dlerror(void) 16 | { 17 | char *err; 18 | 19 | err = (char *) dlerror(); 20 | 21 | if (err == NULL) { 22 | return ""; 23 | } 24 | 25 | return err; 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_dlopen.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Maxim Dounin 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_DLOPEN_H_INCLUDED_ 9 | #define _NGX_DLOPEN_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #define ngx_dlopen(path) dlopen((char *) path, RTLD_NOW | RTLD_GLOBAL) 17 | #define ngx_dlopen_n "dlopen()" 18 | 19 | #define ngx_dlsym(handle, symbol) dlsym(handle, symbol) 20 | #define ngx_dlsym_n "dlsym()" 21 | 22 | #define ngx_dlclose(handle) dlclose(handle) 23 | #define ngx_dlclose_n "dlclose()" 24 | 25 | 26 | #if (NGX_HAVE_DLOPEN) 27 | char *ngx_dlerror(void); 28 | #endif 29 | 30 | 31 | #endif /* _NGX_DLOPEN_H_INCLUDED_ */ 32 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_errno.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_errno.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_ERRNO_H_INCLUDED_ 9 | #define _NGX_ERRNO_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | typedef int ngx_err_t; 17 | 18 | #define NGX_EPERM EPERM 19 | #define NGX_ENOENT ENOENT 20 | #define NGX_ENOPATH ENOENT 21 | #define NGX_ESRCH ESRCH 22 | #define NGX_EINTR EINTR 23 | #define NGX_ECHILD ECHILD 24 | #define NGX_ENOMEM ENOMEM 25 | #define NGX_EACCES EACCES 26 | #define NGX_EBUSY EBUSY 27 | #define NGX_EEXIST EEXIST 28 | #define NGX_EEXIST_FILE EEXIST 29 | #define NGX_EXDEV EXDEV 30 | #define NGX_ENOTDIR ENOTDIR 31 | #define NGX_EISDIR EISDIR 32 | #define NGX_EINVAL EINVAL 33 | #define NGX_ENFILE ENFILE 34 | #define NGX_EMFILE EMFILE 35 | #define NGX_ENOSPC ENOSPC 36 | #define NGX_EPIPE EPIPE 37 | #define NGX_EINPROGRESS EINPROGRESS 38 | #define NGX_ENOPROTOOPT ENOPROTOOPT 39 | #define NGX_EOPNOTSUPP EOPNOTSUPP 40 | #define NGX_EADDRINUSE EADDRINUSE 41 | #define NGX_ECONNABORTED ECONNABORTED 42 | #define NGX_ECONNRESET ECONNRESET 43 | #define NGX_ENOTCONN ENOTCONN 44 | #define NGX_ETIMEDOUT ETIMEDOUT 45 | #define NGX_ECONNREFUSED ECONNREFUSED 46 | #define NGX_ENAMETOOLONG ENAMETOOLONG 47 | #define NGX_ENETDOWN ENETDOWN 48 | #define NGX_ENETUNREACH ENETUNREACH 49 | #define NGX_EHOSTDOWN EHOSTDOWN 50 | #define NGX_EHOSTUNREACH EHOSTUNREACH 51 | #define NGX_ENOSYS ENOSYS 52 | #define NGX_ECANCELED ECANCELED 53 | #define NGX_EILSEQ EILSEQ 54 | #define NGX_ENOMOREFILES 0 55 | #define NGX_ELOOP ELOOP 56 | #define NGX_EBADF EBADF 57 | 58 | #if (NGX_HAVE_OPENAT) 59 | #define NGX_EMLINK EMLINK 60 | #endif 61 | 62 | #if (__hpux__) 63 | #define NGX_EAGAIN EWOULDBLOCK 64 | #else 65 | #define NGX_EAGAIN EAGAIN 66 | #endif 67 | 68 | 69 | #define ngx_errno errno 70 | #define ngx_socket_errno errno 71 | #define ngx_set_errno(err) errno = err 72 | #define ngx_set_socket_errno(err) errno = err 73 | 74 | 75 | u_char *ngx_strerror(ngx_err_t err, u_char *errstr, size_t size); 76 | ngx_int_t ngx_strerror_init(void); 77 | 78 | 79 | #endif /* _NGX_ERRNO_H_INCLUDED_ */ 80 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_files.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_FREEBSD_H_INCLUDED_ 9 | #define _NGX_FREEBSD_H_INCLUDED_ 10 | 11 | 12 | void ngx_debug_init(void); 13 | ngx_chain_t *ngx_freebsd_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, 14 | off_t limit); 15 | 16 | extern int ngx_freebsd_kern_osreldate; 17 | extern int ngx_freebsd_hw_ncpu; 18 | extern u_long ngx_freebsd_net_inet_tcp_sendspace; 19 | 20 | extern ngx_uint_t ngx_freebsd_sendfile_nbytes_bug; 21 | extern ngx_uint_t ngx_freebsd_use_tcp_nopush; 22 | extern ngx_uint_t ngx_debug_malloc; 23 | 24 | 25 | #endif /* _NGX_FREEBSD_H_INCLUDED_ */ 26 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd_config.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_FREEBSD_CONFIG_H_INCLUDED_ 9 | #define _NGX_FREEBSD_CONFIG_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include /* offsetof() */ 17 | #include 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include /* ALIGN() */ 29 | #include /* statfs() */ 30 | 31 | #include /* FIONBIO */ 32 | #include 33 | #include 34 | #include 35 | 36 | #include 37 | #include 38 | #include 39 | #include 40 | 41 | #include 42 | #include 43 | #include /* TCP_NODELAY, TCP_NOPUSH */ 44 | #include 45 | #include 46 | #include 47 | 48 | #include /* setproctitle() before 4.1 */ 49 | #include 50 | #include 51 | 52 | #include 53 | 54 | 55 | #if __FreeBSD_version < 400017 56 | 57 | /* 58 | * FreeBSD 3.x has no CMSG_SPACE() and CMSG_LEN() and has the broken CMSG_DATA() 59 | */ 60 | 61 | #undef CMSG_SPACE 62 | #define CMSG_SPACE(l) (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l)) 63 | 64 | #undef CMSG_LEN 65 | #define CMSG_LEN(l) (ALIGN(sizeof(struct cmsghdr)) + (l)) 66 | 67 | #undef CMSG_DATA 68 | #define CMSG_DATA(cmsg) ((u_char *)(cmsg) + ALIGN(sizeof(struct cmsghdr))) 69 | 70 | #endif 71 | 72 | 73 | #include 74 | 75 | 76 | #if (NGX_HAVE_POSIX_SEM) 77 | #include 78 | #endif 79 | 80 | 81 | #if (NGX_HAVE_POLL) 82 | #include 83 | #endif 84 | 85 | 86 | #if (NGX_HAVE_KQUEUE) 87 | #include 88 | #endif 89 | 90 | 91 | #if (NGX_HAVE_FILE_AIO) 92 | #include 93 | typedef struct aiocb ngx_aiocb_t; 94 | #endif 95 | 96 | 97 | #define NGX_LISTEN_BACKLOG -1 98 | 99 | 100 | #ifdef __DragonFly__ 101 | #define NGX_KEEPALIVE_FACTOR 1000 102 | #endif 103 | 104 | 105 | #ifndef IOV_MAX 106 | #define IOV_MAX 1024 107 | #endif 108 | 109 | 110 | #ifndef NGX_HAVE_INHERITED_NONBLOCK 111 | #define NGX_HAVE_INHERITED_NONBLOCK 1 112 | #endif 113 | 114 | 115 | #define NGX_HAVE_OS_SPECIFIC_INIT 1 116 | #define NGX_HAVE_DEBUG_MALLOC 1 117 | 118 | 119 | extern char **environ; 120 | extern char *malloc_options; 121 | 122 | 123 | #endif /* _NGX_FREEBSD_CONFIG_H_INCLUDED_ */ 124 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_freebsd_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_amd64.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #if (NGX_SMP) 9 | #define NGX_SMP_LOCK "lock;" 10 | #else 11 | #define NGX_SMP_LOCK 12 | #endif 13 | 14 | 15 | /* 16 | * "cmpxchgq r, [m]": 17 | * 18 | * if (rax == [m]) { 19 | * zf = 1; 20 | * [m] = r; 21 | * } else { 22 | * zf = 0; 23 | * rax = [m]; 24 | * } 25 | * 26 | * 27 | * The "r" is any register, %rax (%r0) - %r16. 28 | * The "=a" and "a" are the %rax register. 29 | * Although we can return result in any register, we use "a" because it is 30 | * used in cmpxchgq anyway. The result is actually in %al but not in $rax, 31 | * however as the code is inlined gcc can test %al as well as %rax. 32 | * 33 | * The "cc" means that flags were changed. 34 | */ 35 | 36 | static ngx_inline ngx_atomic_uint_t 37 | ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old, 38 | ngx_atomic_uint_t set) 39 | { 40 | u_char res; 41 | 42 | __asm__ volatile ( 43 | 44 | NGX_SMP_LOCK 45 | " cmpxchgq %3, %1; " 46 | " sete %0; " 47 | 48 | : "=a" (res) : "m" (*lock), "a" (old), "r" (set) : "cc", "memory"); 49 | 50 | return res; 51 | } 52 | 53 | 54 | /* 55 | * "xaddq r, [m]": 56 | * 57 | * temp = [m]; 58 | * [m] += r; 59 | * r = temp; 60 | * 61 | * 62 | * The "+r" is any register, %rax (%r0) - %r16. 63 | * The "cc" means that flags were changed. 64 | */ 65 | 66 | static ngx_inline ngx_atomic_int_t 67 | ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add) 68 | { 69 | __asm__ volatile ( 70 | 71 | NGX_SMP_LOCK 72 | " xaddq %0, %1; " 73 | 74 | : "+r" (add) : "m" (*value) : "cc", "memory"); 75 | 76 | return add; 77 | } 78 | 79 | 80 | #define ngx_memory_barrier() __asm__ volatile ("" ::: "memory") 81 | 82 | #define ngx_cpu_pause() __asm__ ("pause") 83 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_sparc64.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | /* 9 | * "casa [r1] 0x80, r2, r0" and 10 | * "casxa [r1] 0x80, r2, r0" do the following: 11 | * 12 | * if ([r1] == r2) { 13 | * swap(r0, [r1]); 14 | * } else { 15 | * r0 = [r1]; 16 | * } 17 | * 18 | * so "r0 == r2" means that the operation was successful. 19 | * 20 | * 21 | * The "r" means the general register. 22 | * The "+r" means the general register used for both input and output. 23 | */ 24 | 25 | 26 | #if (NGX_PTR_SIZE == 4) 27 | #define NGX_CASA "casa" 28 | #else 29 | #define NGX_CASA "casxa" 30 | #endif 31 | 32 | 33 | static ngx_inline ngx_atomic_uint_t 34 | ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old, 35 | ngx_atomic_uint_t set) 36 | { 37 | __asm__ volatile ( 38 | 39 | NGX_CASA " [%1] 0x80, %2, %0" 40 | 41 | : "+r" (set) : "r" (lock), "r" (old) : "memory"); 42 | 43 | return (set == old); 44 | } 45 | 46 | 47 | static ngx_inline ngx_atomic_int_t 48 | ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add) 49 | { 50 | ngx_atomic_uint_t old, res; 51 | 52 | old = *value; 53 | 54 | for ( ;; ) { 55 | 56 | res = old + add; 57 | 58 | __asm__ volatile ( 59 | 60 | NGX_CASA " [%1] 0x80, %2, %0" 61 | 62 | : "+r" (res) : "r" (value), "r" (old) : "memory"); 63 | 64 | if (res == old) { 65 | return res; 66 | } 67 | 68 | old = res; 69 | } 70 | } 71 | 72 | 73 | #if (NGX_SMP) 74 | #define ngx_memory_barrier() \ 75 | __asm__ volatile ( \ 76 | "membar #LoadLoad | #LoadStore | #StoreStore | #StoreLoad" \ 77 | ::: "memory") 78 | #else 79 | #define ngx_memory_barrier() __asm__ volatile ("" ::: "memory") 80 | #endif 81 | 82 | #define ngx_cpu_pause() 83 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_LINUX_H_INCLUDED_ 9 | #define _NGX_LINUX_H_INCLUDED_ 10 | 11 | 12 | ngx_chain_t *ngx_linux_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, 13 | off_t limit); 14 | 15 | 16 | #endif /* _NGX_LINUX_H_INCLUDED_ */ 17 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_linux_aio_read.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_config.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_LINUX_CONFIG_H_INCLUDED_ 9 | #define _NGX_LINUX_CONFIG_H_INCLUDED_ 10 | 11 | 12 | #ifndef _GNU_SOURCE 13 | #define _GNU_SOURCE /* pread(), pwrite(), gethostname() */ 14 | #endif 15 | 16 | #define _FILE_OFFSET_BITS 64 17 | 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include /* offsetof() */ 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include 33 | #include /* statfs() */ 34 | 35 | #include 36 | #include 37 | #include 38 | 39 | #include 40 | #include 41 | #include 42 | #include 43 | 44 | #include 45 | #include 46 | #include /* TCP_NODELAY, TCP_CORK */ 47 | #include 48 | #include 49 | #include 50 | 51 | #include /* tzset() */ 52 | #include /* memalign() */ 53 | #include /* IOV_MAX */ 54 | #include 55 | #include 56 | #include /* uname() */ 57 | 58 | #include 59 | 60 | 61 | #include 62 | 63 | 64 | #if (NGX_HAVE_POSIX_SEM) 65 | #include 66 | #endif 67 | 68 | 69 | #if (NGX_HAVE_SYS_PRCTL_H) 70 | #include 71 | #endif 72 | 73 | 74 | #if (NGX_HAVE_SENDFILE64) 75 | #include 76 | #else 77 | extern ssize_t sendfile(int s, int fd, int32_t *offset, size_t size); 78 | #define NGX_SENDFILE_LIMIT 0x80000000 79 | #endif 80 | 81 | 82 | #if (NGX_HAVE_POLL) 83 | #include 84 | #endif 85 | 86 | 87 | #if (NGX_HAVE_EPOLL) 88 | #include 89 | #endif 90 | 91 | 92 | #if (NGX_HAVE_SYS_EVENTFD_H) 93 | #include 94 | #endif 95 | #include 96 | #if (NGX_HAVE_FILE_AIO) 97 | #include 98 | typedef struct iocb ngx_aiocb_t; 99 | #endif 100 | 101 | 102 | #define NGX_LISTEN_BACKLOG 511 103 | 104 | 105 | #ifndef NGX_HAVE_SO_SNDLOWAT 106 | /* setsockopt(SO_SNDLOWAT) returns ENOPROTOOPT */ 107 | #define NGX_HAVE_SO_SNDLOWAT 0 108 | #endif 109 | 110 | 111 | #ifndef NGX_HAVE_INHERITED_NONBLOCK 112 | #define NGX_HAVE_INHERITED_NONBLOCK 0 113 | #endif 114 | 115 | 116 | #define NGX_HAVE_OS_SPECIFIC_INIT 1 117 | #define ngx_debug_init() 118 | 119 | 120 | extern char **environ; 121 | 122 | 123 | #endif /* _NGX_LINUX_CONFIG_H_INCLUDED_ */ 124 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_init.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | u_char ngx_linux_kern_ostype[50]; 13 | u_char ngx_linux_kern_osrelease[50]; 14 | 15 | 16 | static ngx_os_io_t ngx_linux_io = { 17 | ngx_unix_recv, 18 | ngx_readv_chain, 19 | ngx_udp_unix_recv, 20 | ngx_unix_send, 21 | ngx_udp_unix_send, 22 | #if (NGX_HAVE_SENDFILE) 23 | ngx_linux_sendfile_chain, 24 | NGX_IO_SENDFILE 25 | #else 26 | ngx_writev_chain, 27 | 0 28 | #endif 29 | }; 30 | 31 | 32 | ngx_int_t 33 | ngx_os_specific_init(ngx_log_t *log) 34 | { 35 | struct utsname u; 36 | 37 | if (uname(&u) == -1) { 38 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "uname() failed"); 39 | return NGX_ERROR; 40 | } 41 | 42 | (void) ngx_cpystrn(ngx_linux_kern_ostype, (u_char *) u.sysname, 43 | sizeof(ngx_linux_kern_ostype)); 44 | 45 | (void) ngx_cpystrn(ngx_linux_kern_osrelease, (u_char *) u.release, 46 | sizeof(ngx_linux_kern_osrelease)); 47 | 48 | ngx_os_io = ngx_linux_io; 49 | 50 | return NGX_OK; 51 | } 52 | 53 | 54 | void 55 | ngx_os_specific_status(ngx_log_t *log) 56 | { 57 | ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s", 58 | ngx_linux_kern_ostype, ngx_linux_kern_osrelease); 59 | } 60 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_posix_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_posix_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_process.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_process.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_process_cycle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process_cycle.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_PROCESS_CYCLE_H_INCLUDED_ 9 | #define _NGX_PROCESS_CYCLE_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | #define NGX_CMD_OPEN_CHANNEL 1 17 | #define NGX_CMD_CLOSE_CHANNEL 2 18 | #define NGX_CMD_QUIT 3 19 | #define NGX_CMD_TERMINATE 4 20 | #define NGX_CMD_REOPEN 5 21 | 22 | 23 | #define NGX_PROCESS_SINGLE 0 24 | #define NGX_PROCESS_MASTER 1 25 | #define NGX_PROCESS_SIGNALLER 2 26 | #define NGX_PROCESS_WORKER 3 27 | #define NGX_PROCESS_HELPER 4 28 | 29 | 30 | typedef struct { 31 | ngx_event_handler_pt handler; 32 | char *name; 33 | ngx_msec_t delay; 34 | } ngx_cache_manager_ctx_t; 35 | 36 | 37 | void ngx_master_process_cycle(ngx_cycle_t *cycle); 38 | void ngx_single_process_cycle(ngx_cycle_t *cycle); 39 | 40 | 41 | extern ngx_uint_t ngx_process; 42 | extern ngx_uint_t ngx_worker; 43 | extern ngx_pid_t ngx_pid; 44 | extern ngx_pid_t ngx_new_binary; 45 | extern ngx_uint_t ngx_inherited; 46 | extern ngx_uint_t ngx_daemonized; 47 | extern ngx_uint_t ngx_exiting; 48 | 49 | extern sig_atomic_t ngx_reap; 50 | extern sig_atomic_t ngx_sigio; 51 | extern sig_atomic_t ngx_sigalrm; 52 | extern sig_atomic_t ngx_quit; 53 | extern sig_atomic_t ngx_debug_quit; 54 | extern sig_atomic_t ngx_terminate; 55 | extern sig_atomic_t ngx_noaccept; 56 | extern sig_atomic_t ngx_reconfigure; 57 | extern sig_atomic_t ngx_reopen; 58 | extern sig_atomic_t ngx_change_binary; 59 | 60 | 61 | #endif /* _NGX_PROCESS_CYCLE_H_INCLUDED_ */ 62 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_send.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | 13 | ssize_t 14 | ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size) 15 | { 16 | ssize_t n; 17 | ngx_err_t err; 18 | ngx_event_t *wev; 19 | 20 | wev = c->write; 21 | 22 | #if (NGX_HAVE_KQUEUE) 23 | 24 | if ((ngx_event_flags & NGX_USE_KQUEUE_EVENT) && wev->pending_eof) { 25 | (void) ngx_connection_error(c, wev->kq_errno, 26 | "kevent() reported about an closed connection"); 27 | wev->error = 1; 28 | return NGX_ERROR; 29 | } 30 | 31 | #endif 32 | 33 | for ( ;; ) { 34 | n = send(c->fd, buf, size, 0); 35 | 36 | ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0, 37 | "send: fd:%d %z of %uz", c->fd, n, size); 38 | 39 | if (n > 0) { 40 | if (n < (ssize_t) size) { 41 | wev->ready = 0; 42 | } 43 | 44 | c->sent += n; 45 | 46 | return n; 47 | } 48 | 49 | err = ngx_socket_errno; 50 | 51 | if (n == 0) { 52 | ngx_log_error(NGX_LOG_ALERT, c->log, err, "send() returned zero"); 53 | wev->ready = 0; 54 | return n; 55 | } 56 | 57 | if (err == NGX_EAGAIN || err == NGX_EINTR) { 58 | wev->ready = 0; 59 | 60 | ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, err, 61 | "send() not ready"); 62 | 63 | if (err == NGX_EAGAIN) { 64 | return NGX_AGAIN; 65 | } 66 | 67 | } else { 68 | wev->error = 1; 69 | (void) ngx_connection_error(c, err, "send() failed"); 70 | return NGX_ERROR; 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setaffinity.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Nginx, Inc. 4 | */ 5 | 6 | 7 | #include 8 | #include 9 | 10 | 11 | #if (NGX_HAVE_CPUSET_SETAFFINITY) 12 | 13 | void 14 | ngx_setaffinity(ngx_cpuset_t *cpu_affinity, ngx_log_t *log) 15 | { 16 | ngx_uint_t i; 17 | 18 | for (i = 0; i < CPU_SETSIZE; i++) { 19 | if (CPU_ISSET(i, cpu_affinity)) { 20 | ngx_log_error(NGX_LOG_NOTICE, log, 0, 21 | "cpuset_setaffinity(): using cpu #%ui", i); 22 | } 23 | } 24 | 25 | if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, 26 | sizeof(cpuset_t), cpu_affinity) == -1) 27 | { 28 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, 29 | "cpuset_setaffinity() failed"); 30 | } 31 | } 32 | 33 | #elif (NGX_HAVE_SCHED_SETAFFINITY) 34 | 35 | void 36 | ngx_setaffinity(ngx_cpuset_t *cpu_affinity, ngx_log_t *log) 37 | { 38 | ngx_uint_t i; 39 | 40 | for (i = 0; i < CPU_SETSIZE; i++) { 41 | if (CPU_ISSET(i, cpu_affinity)) { 42 | ngx_log_error(NGX_LOG_NOTICE, log, 0, 43 | "sched_setaffinity(): using cpu #%ui", i); 44 | } 45 | } 46 | 47 | if (sched_setaffinity(0, sizeof(cpu_set_t), cpu_affinity) == -1) { 48 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, 49 | "sched_setaffinity() failed"); 50 | } 51 | } 52 | 53 | #endif 54 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setaffinity.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Nginx, Inc. 4 | */ 5 | 6 | #ifndef _NGX_SETAFFINITY_H_INCLUDED_ 7 | #define _NGX_SETAFFINITY_H_INCLUDED_ 8 | 9 | 10 | #if (NGX_HAVE_SCHED_SETAFFINITY || NGX_HAVE_CPUSET_SETAFFINITY) 11 | 12 | #define NGX_HAVE_CPU_AFFINITY 1 13 | 14 | #if (NGX_HAVE_SCHED_SETAFFINITY) 15 | 16 | typedef cpu_set_t ngx_cpuset_t; 17 | 18 | #elif (NGX_HAVE_CPUSET_SETAFFINITY) 19 | 20 | #include 21 | 22 | typedef cpuset_t ngx_cpuset_t; 23 | 24 | #endif 25 | 26 | void ngx_setaffinity(ngx_cpuset_t *cpu_affinity, ngx_log_t *log); 27 | 28 | #else 29 | 30 | #define ngx_setaffinity(cpu_affinity, log) 31 | 32 | typedef uint64_t ngx_cpuset_t; 33 | 34 | #endif 35 | 36 | 37 | #endif /* _NGX_SETAFFINITY_H_INCLUDED_ */ 38 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_setproctitle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_setproctitle.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_shmem.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_shmem.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_socket.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | /* 13 | * ioctl(FIONBIO) sets a non-blocking mode with the single syscall 14 | * while fcntl(F_SETFL, O_NONBLOCK) needs to learn the current state 15 | * using fcntl(F_GETFL). 16 | * 17 | * ioctl() and fcntl() are syscalls at least in FreeBSD 2.x, Linux 2.2 18 | * and Solaris 7. 19 | * 20 | * ioctl() in Linux 2.4 and 2.6 uses BKL, however, fcntl(F_SETFL) uses it too. 21 | */ 22 | 23 | 24 | #if (NGX_HAVE_FIONBIO) 25 | 26 | int 27 | ngx_nonblocking(ngx_socket_t s) 28 | { 29 | int nb; 30 | 31 | nb = 1; 32 | 33 | return ioctl(s, FIONBIO, &nb); 34 | } 35 | 36 | 37 | int 38 | ngx_blocking(ngx_socket_t s) 39 | { 40 | int nb; 41 | 42 | nb = 0; 43 | 44 | return ioctl(s, FIONBIO, &nb); 45 | } 46 | 47 | #endif 48 | 49 | 50 | #if (NGX_FREEBSD) 51 | 52 | int 53 | ngx_tcp_nopush(ngx_socket_t s) 54 | { 55 | int tcp_nopush; 56 | 57 | tcp_nopush = 1; 58 | 59 | return setsockopt(s, IPPROTO_TCP, TCP_NOPUSH, 60 | (const void *) &tcp_nopush, sizeof(int)); 61 | } 62 | 63 | 64 | int 65 | ngx_tcp_push(ngx_socket_t s) 66 | { 67 | int tcp_nopush; 68 | 69 | tcp_nopush = 0; 70 | 71 | return setsockopt(s, IPPROTO_TCP, TCP_NOPUSH, 72 | (const void *) &tcp_nopush, sizeof(int)); 73 | } 74 | 75 | #elif (NGX_LINUX) 76 | 77 | 78 | int 79 | ngx_tcp_nopush(ngx_socket_t s) 80 | { 81 | int cork; 82 | 83 | cork = 1; 84 | 85 | return setsockopt(s, IPPROTO_TCP, TCP_CORK, 86 | (const void *) &cork, sizeof(int)); 87 | } 88 | 89 | 90 | int 91 | ngx_tcp_push(ngx_socket_t s) 92 | { 93 | int cork; 94 | 95 | cork = 0; 96 | 97 | return setsockopt(s, IPPROTO_TCP, TCP_CORK, 98 | (const void *) &cork, sizeof(int)); 99 | } 100 | 101 | #else 102 | 103 | int 104 | ngx_tcp_nopush(ngx_socket_t s) 105 | { 106 | return 0; 107 | } 108 | 109 | 110 | int 111 | ngx_tcp_push(ngx_socket_t s) 112 | { 113 | return 0; 114 | } 115 | 116 | #endif 117 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_socket.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_SOCKET_H_INCLUDED_ 9 | #define _NGX_SOCKET_H_INCLUDED_ 10 | 11 | 12 | #include 13 | 14 | 15 | #define NGX_WRITE_SHUTDOWN SHUT_WR 16 | 17 | typedef int ngx_socket_t; 18 | 19 | #define ngx_socket socket 20 | #define ngx_socket_n "socket()" 21 | 22 | 23 | #if (NGX_HAVE_FIONBIO) 24 | 25 | int ngx_nonblocking(ngx_socket_t s); 26 | int ngx_blocking(ngx_socket_t s); 27 | 28 | #define ngx_nonblocking_n "ioctl(FIONBIO)" 29 | #define ngx_blocking_n "ioctl(!FIONBIO)" 30 | 31 | #else 32 | 33 | #define ngx_nonblocking(s) fcntl(s, F_SETFL, fcntl(s, F_GETFL) | O_NONBLOCK) 34 | #define ngx_nonblocking_n "fcntl(O_NONBLOCK)" 35 | 36 | #define ngx_blocking(s) fcntl(s, F_SETFL, fcntl(s, F_GETFL) & ~O_NONBLOCK) 37 | #define ngx_blocking_n "fcntl(!O_NONBLOCK)" 38 | 39 | #endif 40 | 41 | int ngx_tcp_nopush(ngx_socket_t s); 42 | int ngx_tcp_push(ngx_socket_t s); 43 | 44 | #if (NGX_LINUX) 45 | 46 | #define ngx_tcp_nopush_n "setsockopt(TCP_CORK)" 47 | #define ngx_tcp_push_n "setsockopt(!TCP_CORK)" 48 | 49 | #else 50 | 51 | #define ngx_tcp_nopush_n "setsockopt(TCP_NOPUSH)" 52 | #define ngx_tcp_push_n "setsockopt(!TCP_NOPUSH)" 53 | 54 | #endif 55 | 56 | 57 | #define ngx_shutdown_socket shutdown 58 | #define ngx_shutdown_socket_n "shutdown()" 59 | 60 | #define ngx_close_socket close 61 | #define ngx_close_socket_n "close() socket" 62 | 63 | 64 | #endif /* _NGX_SOCKET_H_INCLUDED_ */ 65 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_SOLARIS_H_INCLUDED_ 9 | #define _NGX_SOLARIS_H_INCLUDED_ 10 | 11 | 12 | ngx_chain_t *ngx_solaris_sendfilev_chain(ngx_connection_t *c, ngx_chain_t *in, 13 | off_t limit); 14 | 15 | 16 | #endif /* _NGX_SOLARIS_H_INCLUDED_ */ 17 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris_config.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_ 9 | #define _NGX_SOLARIS_CONFIG_H_INCLUDED_ 10 | 11 | 12 | #ifndef _REENTRANT 13 | #define _REENTRANT 14 | #endif 15 | 16 | #define _FILE_OFFSET_BITS 64 /* must be before */ 17 | 18 | #include 19 | #include 20 | #include 21 | #include 22 | #include /* offsetof() */ 23 | #include 24 | #include 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | #include 33 | #include 34 | #include /* statvfs() */ 35 | 36 | #include /* FIONBIO */ 37 | #include 38 | #include 39 | #include 40 | 41 | #include 42 | #include 43 | #include 44 | #include 45 | 46 | #include 47 | #include 48 | #include /* TCP_NODELAY */ 49 | #include 50 | #include 51 | #include 52 | 53 | #include 54 | #include /* IOV_MAX */ 55 | #include 56 | #include 57 | 58 | #include 59 | 60 | #define NGX_ALIGNMENT _MAX_ALIGNMENT 61 | 62 | #include 63 | 64 | 65 | #if (NGX_HAVE_POSIX_SEM) 66 | #include 67 | #endif 68 | 69 | 70 | #if (NGX_HAVE_POLL) 71 | #include 72 | #endif 73 | 74 | 75 | #if (NGX_HAVE_DEVPOLL) 76 | #include 77 | #include 78 | #endif 79 | 80 | 81 | #if (NGX_HAVE_EVENTPORT) 82 | #include 83 | #endif 84 | 85 | 86 | #if (NGX_HAVE_SENDFILE) 87 | #include 88 | #endif 89 | 90 | 91 | #define NGX_LISTEN_BACKLOG 511 92 | 93 | 94 | #ifndef NGX_HAVE_INHERITED_NONBLOCK 95 | #define NGX_HAVE_INHERITED_NONBLOCK 1 96 | #endif 97 | 98 | 99 | #ifndef NGX_HAVE_SO_SNDLOWAT 100 | /* setsockopt(SO_SNDLOWAT) returns ENOPROTOOPT */ 101 | #define NGX_HAVE_SO_SNDLOWAT 0 102 | #endif 103 | 104 | 105 | #define NGX_HAVE_OS_SPECIFIC_INIT 1 106 | #define ngx_debug_init() 107 | 108 | 109 | extern char **environ; 110 | 111 | 112 | #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */ 113 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris_init.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | char ngx_solaris_sysname[20]; 13 | char ngx_solaris_release[10]; 14 | char ngx_solaris_version[50]; 15 | 16 | 17 | static ngx_os_io_t ngx_solaris_io = { 18 | ngx_unix_recv, 19 | ngx_readv_chain, 20 | ngx_udp_unix_recv, 21 | ngx_unix_send, 22 | ngx_udp_unix_send, 23 | #if (NGX_HAVE_SENDFILE) 24 | ngx_solaris_sendfilev_chain, 25 | NGX_IO_SENDFILE 26 | #else 27 | ngx_writev_chain, 28 | 0 29 | #endif 30 | }; 31 | 32 | 33 | ngx_int_t 34 | ngx_os_specific_init(ngx_log_t *log) 35 | { 36 | if (sysinfo(SI_SYSNAME, ngx_solaris_sysname, sizeof(ngx_solaris_sysname)) 37 | == -1) 38 | { 39 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, 40 | "sysinfo(SI_SYSNAME) failed"); 41 | return NGX_ERROR; 42 | } 43 | 44 | if (sysinfo(SI_RELEASE, ngx_solaris_release, sizeof(ngx_solaris_release)) 45 | == -1) 46 | { 47 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, 48 | "sysinfo(SI_RELEASE) failed"); 49 | return NGX_ERROR; 50 | } 51 | 52 | if (sysinfo(SI_VERSION, ngx_solaris_version, sizeof(ngx_solaris_version)) 53 | == -1) 54 | { 55 | ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, 56 | "sysinfo(SI_SYSNAME) failed"); 57 | return NGX_ERROR; 58 | } 59 | 60 | 61 | ngx_os_io = ngx_solaris_io; 62 | 63 | return NGX_OK; 64 | } 65 | 66 | 67 | void 68 | ngx_os_specific_status(ngx_log_t *log) 69 | { 70 | 71 | ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s", 72 | ngx_solaris_sysname, ngx_solaris_release); 73 | 74 | ngx_log_error(NGX_LOG_NOTICE, log, 0, "version: %s", 75 | ngx_solaris_version); 76 | } 77 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_amd64.il: -------------------------------------------------------------------------------- 1 | / 2 | / Copyright (C) Igor Sysoev 3 | / Copyright (C) Nginx, Inc. 4 | / 5 | 6 | / ngx_atomic_uint_t ngx_atomic_cmp_set(ngx_atomic_t *lock, 7 | / ngx_atomic_uint_t old, ngx_atomic_uint_t set); 8 | / 9 | / the arguments are passed in %rdi, %rsi, %rdx 10 | / the result is returned in the %rax 11 | 12 | .inline ngx_atomic_cmp_set,0 13 | movq %rsi, %rax 14 | lock 15 | cmpxchgq %rdx, (%rdi) 16 | setz %al 17 | movzbq %al, %rax 18 | .end 19 | 20 | 21 | / ngx_atomic_int_t ngx_atomic_fetch_add(ngx_atomic_t *value, 22 | / ngx_atomic_int_t add); 23 | / 24 | / the arguments are passed in %rdi, %rsi 25 | / the result is returned in the %rax 26 | 27 | .inline ngx_atomic_fetch_add,0 28 | movq %rsi, %rax 29 | lock 30 | xaddq %rax, (%rdi) 31 | .end 32 | 33 | 34 | / ngx_cpu_pause() 35 | / 36 | / the "rep; nop" is used instead of "pause" to avoid the "[ PAUSE ]" hardware 37 | / capability added by linker because Solaris/amd64 does not know about it: 38 | / 39 | / ld.so.1: nginx: fatal: hardware capability unsupported: 0x2000 [ PAUSE ] 40 | 41 | .inline ngx_cpu_pause,0 42 | rep; nop 43 | .end 44 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_atomic_sparc64.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #if (NGX_PTR_SIZE == 4) 9 | #define NGX_CASA ngx_casa 10 | #else 11 | #define NGX_CASA ngx_casxa 12 | #endif 13 | 14 | 15 | ngx_atomic_uint_t 16 | ngx_casa(ngx_atomic_uint_t set, ngx_atomic_uint_t old, ngx_atomic_t *lock); 17 | 18 | ngx_atomic_uint_t 19 | ngx_casxa(ngx_atomic_uint_t set, ngx_atomic_uint_t old, ngx_atomic_t *lock); 20 | 21 | /* the code in src/os/unix/ngx_sunpro_sparc64.il */ 22 | 23 | 24 | static ngx_inline ngx_atomic_uint_t 25 | ngx_atomic_cmp_set(ngx_atomic_t *lock, ngx_atomic_uint_t old, 26 | ngx_atomic_uint_t set) 27 | { 28 | set = NGX_CASA(set, old, lock); 29 | 30 | return (set == old); 31 | } 32 | 33 | 34 | static ngx_inline ngx_atomic_int_t 35 | ngx_atomic_fetch_add(ngx_atomic_t *value, ngx_atomic_int_t add) 36 | { 37 | ngx_atomic_uint_t old, res; 38 | 39 | old = *value; 40 | 41 | for ( ;; ) { 42 | 43 | res = old + add; 44 | 45 | res = NGX_CASA(res, old, value); 46 | 47 | if (res == old) { 48 | return res; 49 | } 50 | 51 | old = res; 52 | } 53 | } 54 | 55 | 56 | #define ngx_memory_barrier() \ 57 | __asm (".volatile"); \ 58 | __asm ("membar #LoadLoad | #LoadStore | #StoreStore | #StoreLoad"); \ 59 | __asm (".nonvolatile") 60 | 61 | #define ngx_cpu_pause() 62 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_sparc64.il: -------------------------------------------------------------------------------- 1 | / 2 | / Copyright (C) Igor Sysoev 3 | / Copyright (C) Nginx, Inc. 4 | / 5 | 6 | 7 | / "casa [%o2] 0x80, %o1, %o0" and 8 | / "casxa [%o2] 0x80, %o1, %o0" do the following: 9 | / 10 | / if ([%o2] == %o1) { 11 | / swap(%o0, [%o2]); 12 | / } else { 13 | / %o0 = [%o2]; 14 | / } 15 | 16 | 17 | / ngx_atomic_uint_t ngx_casa(ngx_atomic_uint_t set, ngx_atomic_uint_t old, 18 | / ngx_atomic_t *lock); 19 | / 20 | / the arguments are passed in the %o0, %o1, %o2 21 | / the result is returned in the %o0 22 | 23 | .inline ngx_casa,0 24 | casa [%o2] 0x80, %o1, %o0 25 | .end 26 | 27 | 28 | / ngx_atomic_uint_t ngx_casxa(ngx_atomic_uint_t set, ngx_atomic_uint_t old, 29 | / ngx_atomic_t *lock); 30 | / 31 | / the arguments are passed in the %o0, %o1, %o2 32 | / the result is returned in the %o0 33 | 34 | .inline ngx_casxa,0 35 | casxa [%o2] 0x80, %o1, %o0 36 | .end 37 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_x86.il: -------------------------------------------------------------------------------- 1 | / 2 | / Copyright (C) Igor Sysoev 3 | / Copyright (C) Nginx, Inc. 4 | / 5 | 6 | / ngx_atomic_uint_t ngx_atomic_cmp_set(ngx_atomic_t *lock, 7 | / ngx_atomic_uint_t old, ngx_atomic_uint_t set); 8 | / 9 | / the arguments are passed on stack (%esp), 4(%esp), 8(%esp) 10 | 11 | .inline ngx_atomic_cmp_set,0 12 | movl (%esp), %ecx 13 | movl 4(%esp), %eax 14 | movl 8(%esp), %edx 15 | lock 16 | cmpxchgl %edx, (%ecx) 17 | setz %al 18 | movzbl %al, %eax 19 | .end 20 | 21 | 22 | / ngx_atomic_int_t ngx_atomic_fetch_add(ngx_atomic_t *value, 23 | / ngx_atomic_int_t add); 24 | / 25 | / the arguments are passed on stack (%esp), 4(%esp) 26 | 27 | .inline ngx_atomic_fetch_add,0 28 | movl (%esp), %ecx 29 | movl 4(%esp), %eax 30 | lock 31 | xaddl %eax, (%ecx) 32 | .end 33 | 34 | 35 | / ngx_cpu_pause() 36 | / 37 | / the "rep; nop" is used instead of "pause" to avoid the "[ PAUSE ]" hardware 38 | / capability added by linker because Solaris/i386 does not know about it: 39 | / 40 | / ld.so.1: nginx: fatal: hardware capability unsupported: 0x2000 [ PAUSE ] 41 | 42 | .inline ngx_cpu_pause,0 43 | rep; nop 44 | .end 45 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_THREAD_H_INCLUDED_ 9 | #define _NGX_THREAD_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | #if (NGX_THREADS) 16 | 17 | #include 18 | 19 | 20 | typedef pthread_mutex_t ngx_thread_mutex_t; 21 | 22 | ngx_int_t ngx_thread_mutex_create(ngx_thread_mutex_t *mtx, ngx_log_t *log); 23 | ngx_int_t ngx_thread_mutex_destroy(ngx_thread_mutex_t *mtx, ngx_log_t *log); 24 | ngx_int_t ngx_thread_mutex_lock(ngx_thread_mutex_t *mtx, ngx_log_t *log); 25 | ngx_int_t ngx_thread_mutex_unlock(ngx_thread_mutex_t *mtx, ngx_log_t *log); 26 | 27 | 28 | typedef pthread_cond_t ngx_thread_cond_t; 29 | 30 | ngx_int_t ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log); 31 | ngx_int_t ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log); 32 | ngx_int_t ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log); 33 | ngx_int_t ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx, 34 | ngx_log_t *log); 35 | 36 | 37 | #if (NGX_LINUX) 38 | 39 | typedef pid_t ngx_tid_t; 40 | #define NGX_TID_T_FMT "%P" 41 | 42 | #elif (NGX_FREEBSD) 43 | 44 | typedef uint32_t ngx_tid_t; 45 | #define NGX_TID_T_FMT "%uD" 46 | 47 | #elif (NGX_DARWIN) 48 | 49 | typedef uint64_t ngx_tid_t; 50 | #define NGX_TID_T_FMT "%uA" 51 | 52 | #else 53 | 54 | typedef uint64_t ngx_tid_t; 55 | #define NGX_TID_T_FMT "%uA" 56 | 57 | #endif 58 | 59 | ngx_tid_t ngx_thread_tid(void); 60 | 61 | #define ngx_log_tid ngx_thread_tid() 62 | 63 | #else 64 | 65 | #define ngx_log_tid 0 66 | #define NGX_TID_T_FMT "%d" 67 | 68 | #endif 69 | 70 | 71 | #endif /* _NGX_THREAD_H_INCLUDED_ */ 72 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_cond.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | ngx_int_t 13 | ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log) 14 | { 15 | ngx_err_t err; 16 | 17 | err = pthread_cond_init(cond, NULL); 18 | if (err == 0) { 19 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, 20 | "pthread_cond_init(%p)", cond); 21 | return NGX_OK; 22 | } 23 | 24 | ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_init() failed"); 25 | return NGX_ERROR; 26 | } 27 | 28 | 29 | ngx_int_t 30 | ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log) 31 | { 32 | ngx_err_t err; 33 | 34 | err = pthread_cond_destroy(cond); 35 | if (err == 0) { 36 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, 37 | "pthread_cond_destroy(%p)", cond); 38 | return NGX_OK; 39 | } 40 | 41 | ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_destroy() failed"); 42 | return NGX_ERROR; 43 | } 44 | 45 | 46 | ngx_int_t 47 | ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log) 48 | { 49 | ngx_err_t err; 50 | 51 | err = pthread_cond_signal(cond); 52 | if (err == 0) { 53 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, 54 | "pthread_cond_signal(%p)", cond); 55 | return NGX_OK; 56 | } 57 | 58 | ngx_log_error(NGX_LOG_EMERG, log, err, "pthread_cond_signal() failed"); 59 | return NGX_ERROR; 60 | } 61 | 62 | 63 | ngx_int_t 64 | ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx, 65 | ngx_log_t *log) 66 | { 67 | ngx_err_t err; 68 | 69 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, 70 | "pthread_cond_wait(%p) enter", cond); 71 | 72 | err = pthread_cond_wait(cond, mtx); 73 | 74 | #if 0 75 | ngx_time_update(); 76 | #endif 77 | 78 | if (err == 0) { 79 | ngx_log_debug1(NGX_LOG_DEBUG_CORE, log, 0, 80 | "pthread_cond_wait(%p) exit", cond); 81 | return NGX_OK; 82 | } 83 | 84 | ngx_log_error(NGX_LOG_ALERT, log, err, "pthread_cond_wait() failed"); 85 | 86 | return NGX_ERROR; 87 | } 88 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_id.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | 13 | #if (NGX_LINUX) 14 | 15 | /* 16 | * Linux thread id is a pid of thread created by clone(2), 17 | * glibc does not provide a wrapper for gettid(). 18 | */ 19 | 20 | ngx_tid_t 21 | ngx_thread_tid(void) 22 | { 23 | return syscall(SYS_gettid); 24 | } 25 | 26 | #elif (NGX_FREEBSD) && (__FreeBSD_version >= 900031) 27 | 28 | #include 29 | 30 | ngx_tid_t 31 | ngx_thread_tid(void) 32 | { 33 | return pthread_getthreadid_np(); 34 | } 35 | 36 | #elif (NGX_DARWIN) 37 | 38 | /* 39 | * MacOSX thread has two thread ids: 40 | * 41 | * 1) MacOSX 10.6 (Snow Leoprad) has pthread_threadid_np() returning 42 | * an uint64_t value, which is obtained using the __thread_selfid() 43 | * syscall. It is a number above 300,000. 44 | */ 45 | 46 | ngx_tid_t 47 | ngx_thread_tid(void) 48 | { 49 | uint64_t tid; 50 | 51 | (void) pthread_threadid_np(NULL, &tid); 52 | return tid; 53 | } 54 | 55 | /* 56 | * 2) Kernel thread mach_port_t returned by pthread_mach_thread_np(). 57 | * It is a number in range 100-100,000. 58 | * 59 | * return pthread_mach_thread_np(pthread_self()); 60 | */ 61 | 62 | #else 63 | 64 | ngx_tid_t 65 | ngx_thread_tid(void) 66 | { 67 | return (uint64_t) (uintptr_t) pthread_self(); 68 | } 69 | 70 | #endif 71 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/os/unix/ngx_thread_mutex.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_time.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | /* 13 | * FreeBSD does not test /etc/localtime change, however, we can workaround it 14 | * by calling tzset() with TZ and then without TZ to update timezone. 15 | * The trick should work since FreeBSD 2.1.0. 16 | * 17 | * Linux does not test /etc/localtime change in localtime(), 18 | * but may stat("/etc/localtime") several times in every strftime(), 19 | * therefore we use it to update timezone. 20 | * 21 | * Solaris does not test /etc/TIMEZONE change too and no workaround available. 22 | */ 23 | 24 | void 25 | ngx_timezone_update(void) 26 | { 27 | #if (NGX_FREEBSD) 28 | 29 | if (getenv("TZ")) { 30 | return; 31 | } 32 | 33 | putenv("TZ=UTC"); 34 | 35 | tzset(); 36 | 37 | unsetenv("TZ"); 38 | 39 | tzset(); 40 | 41 | #elif (NGX_LINUX) 42 | time_t s; 43 | struct tm *t; 44 | char buf[4]; 45 | 46 | s = time(0); 47 | 48 | t = localtime(&s); 49 | 50 | strftime(buf, 4, "%H", t); 51 | 52 | #endif 53 | } 54 | 55 | 56 | void 57 | ngx_localtime(time_t s, ngx_tm_t *tm) 58 | { 59 | #if (NGX_HAVE_LOCALTIME_R) 60 | (void) localtime_r(&s, tm); 61 | 62 | #else 63 | ngx_tm_t *t; 64 | 65 | t = localtime(&s); 66 | *tm = *t; 67 | 68 | #endif 69 | 70 | tm->ngx_tm_mon++; 71 | tm->ngx_tm_year += 1900; 72 | } 73 | 74 | 75 | void 76 | ngx_libc_localtime(time_t s, struct tm *tm) 77 | { 78 | #if (NGX_HAVE_LOCALTIME_R) 79 | (void) localtime_r(&s, tm); 80 | 81 | #else 82 | struct tm *t; 83 | 84 | t = localtime(&s); 85 | *tm = *t; 86 | 87 | #endif 88 | } 89 | 90 | 91 | void 92 | ngx_libc_gmtime(time_t s, struct tm *tm) 93 | { 94 | #if (NGX_HAVE_LOCALTIME_R) 95 | (void) gmtime_r(&s, tm); 96 | 97 | #else 98 | struct tm *t; 99 | 100 | t = gmtime(&s); 101 | *tm = *t; 102 | 103 | #endif 104 | } 105 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_time.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_TIME_H_INCLUDED_ 9 | #define _NGX_TIME_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | typedef ngx_rbtree_key_t ngx_msec_t; 17 | typedef ngx_rbtree_key_int_t ngx_msec_int_t; 18 | 19 | typedef struct tm ngx_tm_t; 20 | 21 | #define ngx_tm_sec tm_sec 22 | #define ngx_tm_min tm_min 23 | #define ngx_tm_hour tm_hour 24 | #define ngx_tm_mday tm_mday 25 | #define ngx_tm_mon tm_mon 26 | #define ngx_tm_year tm_year 27 | #define ngx_tm_wday tm_wday 28 | #define ngx_tm_isdst tm_isdst 29 | 30 | #define ngx_tm_sec_t int 31 | #define ngx_tm_min_t int 32 | #define ngx_tm_hour_t int 33 | #define ngx_tm_mday_t int 34 | #define ngx_tm_mon_t int 35 | #define ngx_tm_year_t int 36 | #define ngx_tm_wday_t int 37 | 38 | 39 | #if (NGX_HAVE_GMTOFF) 40 | #define ngx_tm_gmtoff tm_gmtoff 41 | #define ngx_tm_zone tm_zone 42 | #endif 43 | 44 | 45 | #if (NGX_SOLARIS) 46 | 47 | #define ngx_timezone(isdst) (- (isdst ? altzone : timezone) / 60) 48 | 49 | #else 50 | 51 | #define ngx_timezone(isdst) (- (isdst ? timezone + 3600 : timezone) / 60) 52 | 53 | #endif 54 | 55 | 56 | void ngx_timezone_update(void); 57 | void ngx_localtime(time_t s, ngx_tm_t *tm); 58 | void ngx_libc_localtime(time_t s, struct tm *tm); 59 | void ngx_libc_gmtime(time_t s, struct tm *tm); 60 | 61 | #define ngx_gettimeofday(tp) (void) gettimeofday(tp, NULL); 62 | #define ngx_msleep(ms) (void) usleep(ms * 1000) 63 | #define ngx_sleep(s) (void) sleep(s) 64 | 65 | 66 | #endif /* _NGX_TIME_H_INCLUDED_ */ 67 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_udp_recv.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | 13 | ssize_t 14 | ngx_udp_unix_recv(ngx_connection_t *c, u_char *buf, size_t size) 15 | { 16 | ssize_t n; 17 | ngx_err_t err; 18 | ngx_event_t *rev; 19 | 20 | rev = c->read; 21 | 22 | do { 23 | n = recv(c->fd, buf, size, 0); 24 | 25 | ngx_log_debug3(NGX_LOG_DEBUG_EVENT, c->log, 0, 26 | "recv: fd:%d %z of %uz", c->fd, n, size); 27 | 28 | if (n >= 0) { 29 | 30 | #if (NGX_HAVE_KQUEUE) 31 | 32 | if (ngx_event_flags & NGX_USE_KQUEUE_EVENT) { 33 | rev->available -= n; 34 | 35 | /* 36 | * rev->available may be negative here because some additional 37 | * bytes may be received between kevent() and recv() 38 | */ 39 | 40 | if (rev->available <= 0) { 41 | rev->ready = 0; 42 | rev->available = 0; 43 | } 44 | } 45 | 46 | #endif 47 | 48 | return n; 49 | } 50 | 51 | err = ngx_socket_errno; 52 | 53 | if (err == NGX_EAGAIN || err == NGX_EINTR) { 54 | ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, err, 55 | "recv() not ready"); 56 | n = NGX_AGAIN; 57 | 58 | } else { 59 | n = ngx_connection_error(c, err, "recv() failed"); 60 | break; 61 | } 62 | 63 | } while (err == NGX_EINTR); 64 | 65 | rev->ready = 0; 66 | 67 | if (n == NGX_ERROR) { 68 | rev->error = 1; 69 | } 70 | 71 | return n; 72 | } 73 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_udp_send.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | 13 | ssize_t 14 | ngx_udp_unix_send(ngx_connection_t *c, u_char *buf, size_t size) 15 | { 16 | ssize_t n; 17 | ngx_err_t err; 18 | ngx_event_t *wev; 19 | 20 | wev = c->write; 21 | 22 | for ( ;; ) { 23 | n = sendto(c->fd, buf, size, 0, c->sockaddr, c->socklen); 24 | 25 | ngx_log_debug4(NGX_LOG_DEBUG_EVENT, c->log, 0, 26 | "sendto: fd:%d %z of %uz to \"%V\"", 27 | c->fd, n, size, &c->addr_text); 28 | 29 | if (n >= 0) { 30 | if ((size_t) n != size) { 31 | wev->error = 1; 32 | (void) ngx_connection_error(c, 0, "sendto() incomplete"); 33 | return NGX_ERROR; 34 | } 35 | 36 | c->sent += n; 37 | 38 | return n; 39 | } 40 | 41 | err = ngx_socket_errno; 42 | 43 | if (err == NGX_EAGAIN) { 44 | wev->ready = 0; 45 | ngx_log_debug0(NGX_LOG_DEBUG_EVENT, c->log, NGX_EAGAIN, 46 | "sendto() not ready"); 47 | return NGX_AGAIN; 48 | } 49 | 50 | if (err != NGX_EINTR) { 51 | wev->error = 1; 52 | (void) ngx_connection_error(c, err, "sendto() failed"); 53 | return NGX_ERROR; 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_user.c: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #include 9 | #include 10 | 11 | 12 | /* 13 | * Solaris has thread-safe crypt() 14 | * Linux has crypt_r(); "struct crypt_data" is more than 128K 15 | * FreeBSD needs the mutex to protect crypt() 16 | * 17 | * TODO: 18 | * ngx_crypt_init() to init mutex 19 | */ 20 | 21 | 22 | #if (NGX_CRYPT) 23 | 24 | #if (NGX_HAVE_GNU_CRYPT_R) 25 | 26 | ngx_int_t 27 | ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) 28 | { 29 | char *value; 30 | size_t len; 31 | struct crypt_data cd; 32 | 33 | cd.initialized = 0; 34 | #ifdef __GLIBC__ 35 | /* work around the glibc bug */ 36 | cd.current_salt[0] = ~salt[0]; 37 | #endif 38 | 39 | value = crypt_r((char *) key, (char *) salt, &cd); 40 | 41 | if (value) { 42 | len = ngx_strlen(value) + 1; 43 | 44 | *encrypted = ngx_pnalloc(pool, len); 45 | if (*encrypted == NULL) { 46 | return NGX_ERROR; 47 | } 48 | 49 | ngx_memcpy(*encrypted, value, len); 50 | return NGX_OK; 51 | } 52 | 53 | ngx_log_error(NGX_LOG_CRIT, pool->log, ngx_errno, "crypt_r() failed"); 54 | 55 | return NGX_ERROR; 56 | } 57 | 58 | #else 59 | 60 | ngx_int_t 61 | ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted) 62 | { 63 | char *value; 64 | size_t len; 65 | ngx_err_t err; 66 | 67 | value = crypt((char *) key, (char *) salt); 68 | 69 | if (value) { 70 | len = ngx_strlen(value) + 1; 71 | 72 | *encrypted = ngx_pnalloc(pool, len); 73 | if (*encrypted == NULL) { 74 | return NGX_ERROR; 75 | } 76 | 77 | ngx_memcpy(*encrypted, value, len); 78 | return NGX_OK; 79 | } 80 | 81 | err = ngx_errno; 82 | 83 | ngx_log_error(NGX_LOG_CRIT, pool->log, err, "crypt() failed"); 84 | 85 | return NGX_ERROR; 86 | } 87 | 88 | #endif 89 | 90 | #endif /* NGX_CRYPT */ 91 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_user.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_USER_H_INCLUDED_ 9 | #define _NGX_USER_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | 15 | 16 | typedef uid_t ngx_uid_t; 17 | typedef gid_t ngx_gid_t; 18 | 19 | 20 | ngx_int_t ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, 21 | u_char **encrypted); 22 | 23 | 24 | #endif /* _NGX_USER_H_INCLUDED_ */ 25 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_access_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_access_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_core_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_limit_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_limit_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_proxy_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_ssl_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_ssl_module.h: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Copyright (C) Igor Sysoev 4 | * Copyright (C) Nginx, Inc. 5 | */ 6 | 7 | 8 | #ifndef _NGX_STREAM_SSL_H_INCLUDED_ 9 | #define _NGX_STREAM_SSL_H_INCLUDED_ 10 | 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | 17 | typedef struct { 18 | ngx_msec_t handshake_timeout; 19 | 20 | ngx_flag_t prefer_server_ciphers; 21 | 22 | ngx_ssl_t ssl; 23 | 24 | ngx_uint_t protocols; 25 | 26 | ssize_t builtin_session_cache; 27 | 28 | time_t session_timeout; 29 | 30 | ngx_str_t certificate; 31 | ngx_str_t certificate_key; 32 | ngx_str_t dhparam; 33 | ngx_str_t ecdh_curve; 34 | 35 | ngx_str_t ciphers; 36 | 37 | ngx_array_t *passwords; 38 | 39 | ngx_shm_zone_t *shm_zone; 40 | 41 | ngx_flag_t session_tickets; 42 | ngx_array_t *session_ticket_keys; 43 | } ngx_stream_ssl_conf_t; 44 | 45 | 46 | extern ngx_module_t ngx_stream_ssl_module; 47 | 48 | 49 | #endif /* _NGX_STREAM_SSL_H_INCLUDED_ */ 50 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_upstream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_upstream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_least_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_upstream_least_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.h -------------------------------------------------------------------------------- /source insight configuration/GLOBAL.CF3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/f8c66c815b09abb3d02a02c1969e3b466a8af016/source insight configuration/GLOBAL.CF3 --------------------------------------------------------------------------------