From d4a3f250da81ba4ce3f2b5d943bf0726260b195a Mon Sep 17 00:00:00 2001 From: suyuan <175338101@qq.com> Date: Wed, 12 Oct 2022 00:31:40 +0800 Subject: [PATCH] fux nginx1.21.3 --- nginx/Config_ssl.in | 7 +- nginx/Makefile | 286 ++-- nginx/files/acme.hotplug | 3 + .../dav-nginx}/100-drop-libxslt-dep.patch | 8 +- .../lua-nginx}/100-no_by_lua_block.patch | 0 .../{ => nginx}/101-feature_test_fix.patch | 14 +- .../{ => nginx}/102-sizeof_test_fix.patch | 0 nginx/patches/{ => nginx}/103-sys_nerr.patch | 4 +- .../{ => nginx}/104-endianness_fix.patch | 0 nginx/patches/{ => nginx}/200-config.patch | 0 .../201-ignore-invalid-options.patch | 0 nginx/patches/rtmp-nginx/100-bigedian.patch | 1521 +++++++++++++++++ 12 files changed, 1703 insertions(+), 140 deletions(-) create mode 100644 nginx/files/acme.hotplug rename nginx/{patches-dav-nginx => patches/dav-nginx}/100-drop-libxslt-dep.patch (76%) rename nginx/{patches-lua-nginx => patches/lua-nginx}/100-no_by_lua_block.patch (100%) mode change 100755 => 100644 rename nginx/patches/{ => nginx}/101-feature_test_fix.patch (89%) mode change 100755 => 100644 rename nginx/patches/{ => nginx}/102-sizeof_test_fix.patch (100%) mode change 100755 => 100644 rename nginx/patches/{ => nginx}/103-sys_nerr.patch (72%) mode change 100755 => 100644 rename nginx/patches/{ => nginx}/104-endianness_fix.patch (100%) rename nginx/patches/{ => nginx}/200-config.patch (100%) mode change 100755 => 100644 rename nginx/patches/{ => nginx}/201-ignore-invalid-options.patch (100%) mode change 100755 => 100644 create mode 100644 nginx/patches/rtmp-nginx/100-bigedian.patch diff --git a/nginx/Config_ssl.in b/nginx/Config_ssl.in index 1c53dab6a..738839354 100755 --- a/nginx/Config_ssl.in +++ b/nginx/Config_ssl.in @@ -46,6 +46,11 @@ config NGINX_HTTP_GZIP prompt "Enable HTTP gzip module" default y +config NGINX_HTTP_GZIP_STATIC + bool + prompt "Enable HTTP gzip static module" + default y + config NGINX_HTTP_SSI bool prompt "Enable HTTP ssi module" @@ -190,7 +195,7 @@ config NGINX_NAXSI config NGINX_LUA bool prompt "Enable Lua module" - default n + default y config NGINX_HTTP_REAL_IP bool diff --git a/nginx/Makefile b/nginx/Makefile index 7105e6c15..f9613504d 100755 --- a/nginx/Makefile +++ b/nginx/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nginx -PKG_VERSION:=1.19.6 -PKG_RELEASE:=2 +PKG_VERSION:=1.21.3 +PKG_RELEASE:=3 PKG_SOURCE:=nginx-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://nginx.org/download/ -PKG_HASH:=b11195a02b1d3285ddf2987e02c6b6d28df41bb1b1dd25f33542848ef4fc33b5 +PKG_HASH:=14774aae0d151da350417efc4afda5cce5035056e71894836797e1f6e2d1175a PKG_MAINTAINER:=Thomas Heil \ Ansuel Smith @@ -31,6 +31,7 @@ PKG_CONFIG_DEPENDS := \ CONFIG_NGINX_STUB_STATUS \ CONFIG_NGINX_HTTP_CHARSET \ CONFIG_NGINX_HTTP_GZIP \ + CONFIG_NGINX_HTTP_GZIP_STATIC \ CONFIG_NGINX_HTTP_SSI \ CONFIG_NGINX_HTTP_USERID \ CONFIG_NGINX_HTTP_ACCESS \ @@ -152,6 +153,9 @@ ifneq ($(BUILD_VARIANT),all-module) ifneq ($(CONFIG_NGINX_HTTP_GZIP),y) ADDITIONAL_MODULES += --without-http_gzip_module endif + ifeq ($(CONFIG_NGINX_HTTP_GZIP_STATIC),y) + ADDITIONAL_MODULES += --with-http_gzip_static_module + endif ifneq ($(CONFIG_NGINX_HTTP_SSI),y) ADDITIONAL_MODULES += --without-http_ssi_module endif @@ -197,6 +201,8 @@ ifneq ($(BUILD_VARIANT),all-module) endif ifneq ($(CONFIG_NGINX_HTTP_SCGI),y) ADDITIONAL_MODULES += --without-http_scgi_module + else + config_files += scgi_params endif ifneq ($(CONFIG_NGINX_HTTP_MEMCACHED),y) ADDITIONAL_MODULES += --without-http_memcached_module @@ -370,6 +376,9 @@ ifeq ($(CONFIG_NGINX_NAXSI),y) endif $(if $(CONFIG_NGINX_NAXSI),$($(INSTALL_BIN) $(PKG_BUILD_DIR)/nginx-naxsi/naxsi_config/naxsi_core.rules $(1)/etc/nginx)) $(if $(CONFIG_NGINX_NAXSI),$(chmod 0640 $(1)/etc/nginx/naxsi_core.rules)) + + $(INSTALL_DIR) $(1)/etc/hotplug.d/acme + $(INSTALL_DATA) ./files/acme.hotplug $(1)/etc/hotplug.d/acme/00-nginx endef Package/nginx-all-module/install = $(Package/nginx-ssl/install) @@ -387,163 +396,188 @@ endef Package/nginx-all-module/prerm = $(Package/nginx-ssl/prerm) -define Build/Prepare - $(Build/Prepare/Default) - $(Prepare/nginx-naxsi) - $(Prepare/lua-nginx) - $(Prepare/nginx-brotli) - $(Prepare/nginx-headers-more) - $(Prepare/nginx-rtmp) - $(Prepare/nginx-ts) - $(Prepare/nginx-dav-ext-module) - $(Prepare/nginx-ubus-module) +define Download/nginx-headers-more + VERSION:=a9f7c7e86cc7441d04e2f11f01c2e3a9c4b0301d + SUBDIR:=nginx-headers-more + FILE:=headers-more-nginx-module-$$(VERSION).tar.xz + URL:=https://github.com/openresty/headers-more-nginx-module.git + MIRROR_HASH:=ce0b9996ecb2cff790831644d6ab1adc087aa2771d77d3931c06246d11bc59fd + PROTO:=git endef - -ifeq ($(CONFIG_NGINX_HEADERS_MORE),y) - define Download/nginx-headers-more - VERSION:=a9f7c7e86cc7441d04e2f11f01c2e3a9c4b0301d - SUBDIR:=nginx-headers-more - FILE:=headers-more-nginx-module-$$(VERSION).tar.xz - URL:=https://github.com/openresty/headers-more-nginx-module.git - MIRROR_HASH:=ce0b9996ecb2cff790831644d6ab1adc087aa2771d77d3931c06246d11bc59fd - PROTO:=git - endef - $(eval $(call Download,nginx-headers-more)) - - define Prepare/nginx-headers-more +define Prepare/nginx-headers-more $(eval $(Download/nginx-headers-more)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef -endif +endef +define Download/nginx-brotli + VERSION:=e505dce68acc190cc5a1e780a3b0275e39f160ca + SUBDIR:=nginx-brotli + FILE:=ngx-brotli-module-$$(VERSION).tar.xz + URL:=https://github.com/google/ngx_brotli.git + MIRROR_HASH:=04847f11ef808fed50f44b2af0ef3abf59ff0ffc06dfc7394d9ab51d53fef31f + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_HTTP_BROTLI),y) - define Download/nginx-brotli - VERSION:=e505dce68acc190cc5a1e780a3b0275e39f160ca - SUBDIR:=nginx-brotli - FILE:=ngx-brotli-module-$$(VERSION).tar.xz - URL:=https://github.com/google/ngx_brotli.git - MIRROR_HASH:=04847f11ef808fed50f44b2af0ef3abf59ff0ffc06dfc7394d9ab51d53fef31f - PROTO:=git - endef - $(eval $(call Download,nginx-brotli)) - - define Prepare/nginx-brotli +define Prepare/nginx-brotli $(eval $(Download/nginx-brotli)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef -endif +endef +define Download/nginx-rtmp + VERSION:=f0ea62342a4eca504b311cd5df910d026c3ea4cf + SUBDIR:=nginx-rtmp + FILE:=ngx-rtmp-module-$$(VERSION).tar.xz + URL:=https://github.com/ut0mt8/nginx-rtmp-module.git + MIRROR_HASH:=d3f58066f0f858ed79f7f2b0c9b89de2ccc512c94ab3d0625f6dcff3df0b72c1 + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_RTMP_MODULE),y) - define Download/nginx-rtmp - VERSION:=f0ea62342a4eca504b311cd5df910d026c3ea4cf - SUBDIR:=nginx-rtmp - FILE:=ngx-rtmp-module-$$(VERSION).tar.xz - URL:=https://github.com/ut0mt8/nginx-rtmp-module.git - MIRROR_HASH:=d3f58066f0f858ed79f7f2b0c9b89de2ccc512c94ab3d0625f6dcff3df0b72c1 - PROTO:=git - endef - $(eval $(call Download,nginx-rtmp)) - - define Prepare/nginx-rtmp +define Prepare/nginx-rtmp $(eval $(Download/nginx-rtmp)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef -endif +endef +define Download/nginx-ts + VERSION:=ef2f874d95cc75747eb625a292524a702aefb0fd + SUBDIR:=nginx-ts + FILE:=ngx-ts-module-$$(VERSION).tar.xz + URL:=https://github.com/arut/nginx-ts-module.git + MIRROR_HASH:=73938950bb286d40d9e54b0994d1a63827340c1156c72eb04d7041b25b20ec18 + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_TS_MODULE),y) - define Download/nginx-ts - VERSION:=ef2f874d95cc75747eb625a292524a702aefb0fd - SUBDIR:=nginx-ts - FILE:=ngx-ts-module-$$(VERSION).tar.xz - URL:=https://github.com/arut/nginx-ts-module.git - MIRROR_HASH:=73938950bb286d40d9e54b0994d1a63827340c1156c72eb04d7041b25b20ec18 - PROTO:=git - endef - $(eval $(call Download,nginx-ts)) - - define Prepare/nginx-ts +define Prepare/nginx-ts $(eval $(Download/nginx-ts)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef -endif +endef +define Download/nginx-naxsi + VERSION:=951123ad456bdf5ac94e8d8819342fe3d49bc002 + SUBDIR:=nginx-naxsi + FILE:=nginx-naxsi-module-$$(VERSION).tar.xz + URL:=https://github.com/nbs-system/naxsi.git + MIRROR_HASH:=c734cae19a596affadd62a2df1b58d3df8d1364093a4e80a7cd1ab4555963535 + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_NAXSI),y) - define Download/nginx-naxsi - VERSION:=951123ad456bdf5ac94e8d8819342fe3d49bc002 - SUBDIR:=nginx-naxsi - FILE:=nginx-naxsi-module-$$(VERSION).tar.xz - URL:=https://github.com/nbs-system/naxsi.git - MIRROR_HASH:=c734cae19a596affadd62a2df1b58d3df8d1364093a4e80a7cd1ab4555963535 - PROTO:=git - endef - $(eval $(call Download,nginx-naxsi)) - - define Prepare/nginx-naxsi +define Prepare/nginx-naxsi $(eval $(Download/nginx-naxsi)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef -endif +endef +define Download/lua-nginx + VERSION:=e94f2e5d64daa45ff396e262d8dab8e56f5f10e0 + SUBDIR:=lua-nginx + FILE:=lua-nginx-module-$$(VERSION).tar.xz + URL:=https://github.com/openresty/lua-nginx-module.git + MIRROR_HASH:=27729921964f066d97e99c263da153b34622a2f4b811114e4c3ee61c6fc71395 + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_LUA),y) - define Download/lua-nginx - VERSION:=e94f2e5d64daa45ff396e262d8dab8e56f5f10e0 - SUBDIR:=lua-nginx - FILE:=lua-nginx-module-$$(VERSION).tar.xz - URL:=https://github.com/openresty/lua-nginx-module.git - MIRROR_HASH:=27729921964f066d97e99c263da153b34622a2f4b811114e4c3ee61c6fc71395 - PROTO:=git - endef - $(eval $(call Download,lua-nginx)) - - define Prepare/lua-nginx +define Prepare/lua-nginx $(eval $(Download/lua-nginx)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - $(call PatchDir,$(PKG_BUILD_DIR),./patches-lua-nginx) - endef -endif +endef +define Download/nginx-dav-ext-module + VERSION:=f5e30888a256136d9c550bf1ada77d6ea78a48af + SUBDIR:=nginx-dav-ext-module + FILE:=nginx-dav-ext-module-$$(VERSION).tar.xz + URL:=https://github.com/arut/nginx-dav-ext-module.git + MIRROR_HASH:=70bb4c3907f4b783605500ba494e907aede11f8505702e370012abb3c177dc5b + PROTO:=git +endef -ifeq ($(CONFIG_NGINX_DAV),y) - define Download/nginx-dav-ext-module - VERSION:=f5e30888a256136d9c550bf1ada77d6ea78a48af - SUBDIR:=nginx-dav-ext-module - FILE:=nginx-dav-ext-module-$$(VERSION).tar.xz - URL:=https://github.com/arut/nginx-dav-ext-module.git - MIRROR_HASH:=70bb4c3907f4b783605500ba494e907aede11f8505702e370012abb3c177dc5b - PROTO:=git - endef - $(eval $(call Download,nginx-dav-ext-module)) - - define Prepare/nginx-dav-ext-module +define Prepare/nginx-dav-ext-module $(eval $(Download/nginx-dav-ext-module)) xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - $(call PatchDir,$(PKG_BUILD_DIR),./patches-dav-nginx) - endef +endef + +define Download/nginx-ubus-module + VERSION:=b2d7260dcb428b2fb65540edb28d7538602b4a26 + SUBDIR:=nginx-ubus-module + FILE:=nginx-ubus-module-$$(VERSION).tar.xz + URL:=https://github.com/Ansuel/nginx-ubus-module.git + MIRROR_HASH:=472cef416d25effcac66c85417ab6596e634a7a64d45b709bb090892d567553c + PROTO:=git +endef + +define Prepare/nginx-ubus-module + $(eval $(Download/nginx-ubus-module)) + xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) +endef + +define Build/Patch + $(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches) + $(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/nginx,nginx/) +ifneq "$(or $(CONFIG_NGINX_DAV),$(QUILT))" "" + $(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/dav-nginx,dav-nginx/) +endif +ifneq "$(or $(CONFIG_NGINX_LUA),$(QUILT))" "" + $(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/lua-nginx,lua-nginx/) +endif +ifneq "$(or $(CONFIG_NGINX_RTMP_MODULE),$(QUILT))" "" + $(call PatchDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/rtmp-nginx,rtmp-nginx/) +endif + $(if $(QUILT),touch $(PKG_BUILD_DIR)/.quilt_used) +endef + +define Quilt/Refresh/Package + $(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/nginx,nginx/) + $(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/dav-nginx,dav-nginx/) + $(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/lua-nginx,lua-nginx/) + $(call Quilt/RefreshDir,$(PKG_BUILD_DIR),$(PATCH_DIR)/rtmp-nginx,rtmp-nginx/) +endef + +define Build/Prepare + rm -rf $(PKG_BUILD_DIR) + mkdir -p $(PKG_BUILD_DIR) + $(PKG_UNPACK) + +ifeq ($(CONFIG_NGINX_NAXSI),y) + $(eval $(call Download,nginx-naxsi)) + $(Prepare/nginx-naxsi) +endif + +ifneq "$(or $(CONFIG_NGINX_LUA),$(QUILT))" "" + $(eval $(call Download,lua-nginx)) + $(Prepare/lua-nginx) +endif + +ifeq ($(CONFIG_NGINX_HTTP_BROTLI),y) + $(eval $(call Download,nginx-brotli)) + $(Prepare/nginx-brotli) +endif + +ifeq ($(CONFIG_NGINX_HEADERS_MORE),y) + $(eval $(call Download,nginx-headers-more)) + $(Prepare/nginx-headers-more) +endif + +ifneq "$(or $(CONFIG_NGINX_RTMP_MODULE),$(QUILT))" "" + $(eval $(call Download,nginx-rtmp)) + $(Prepare/nginx-rtmp) +endif + +ifeq ($(CONFIG_NGINX_TS_MODULE),y) + $(eval $(call Download,nginx-ts)) + $(Prepare/nginx-ts) +endif + +ifneq "$(or $(CONFIG_NGINX_DAV),$(QUILT))" "" + $(eval $(call Download,nginx-dav-ext-module)) + $(Prepare/nginx-dav-ext-module) endif ifeq ($(CONFIG_NGINX_UBUS),y) - define Download/nginx-ubus-module - VERSION:=b2d7260dcb428b2fb65540edb28d7538602b4a26 - SUBDIR:=nginx-ubus-module - FILE:=nginx-ubus-module-$$(VERSION).tar.xz - URL:=https://github.com/Ansuel/nginx-ubus-module.git - MIRROR_HASH:=472cef416d25effcac66c85417ab6596e634a7a64d45b709bb090892d567553c - PROTO:=git - endef $(eval $(call Download,nginx-ubus-module)) - - define Prepare/nginx-ubus-module - $(eval $(Download/nginx-ubus-module)) - xzcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR) $(TAR_OPTIONS) - endef + $(Prepare/nginx-ubus-module) endif + $(Build/Patch) +endef + $(eval $(call BuildPackage,nginx-ssl)) $(eval $(call BuildPackage,nginx-all-module)) $(eval $(call BuildPackage,nginx-mod-luci)) diff --git a/nginx/files/acme.hotplug b/nginx/files/acme.hotplug new file mode 100644 index 000000000..74f1448d7 --- /dev/null +++ b/nginx/files/acme.hotplug @@ -0,0 +1,3 @@ +if [ "$ACTION" = renewed ]; then + /etc/init.d/nginx reload +fi diff --git a/nginx/patches-dav-nginx/100-drop-libxslt-dep.patch b/nginx/patches/dav-nginx/100-drop-libxslt-dep.patch similarity index 76% rename from nginx/patches-dav-nginx/100-drop-libxslt-dep.patch rename to nginx/patches/dav-nginx/100-drop-libxslt-dep.patch index c5941f422..aa06f0464 100644 --- a/nginx/patches-dav-nginx/100-drop-libxslt-dep.patch +++ b/nginx/patches/dav-nginx/100-drop-libxslt-dep.patch @@ -1,14 +1,14 @@ ---- a/nginx-dav-ext-module/config 2018-12-17 08:45:12.000000000 +0000 -+++ b/nginx-dav-ext-module/config 2019-10-11 13:49:41.446919258 +0000 +--- a/nginx-dav-ext-module/config ++++ b/nginx-dav-ext-module/config @@ -8,9 +8,8 @@ ngx_module_name=ngx_http_dav_ext_module # building nginx with the xslt module, in which case libxslt will # be linked anyway. In other cases libxslt is just redundant. # If that's a big deal, libxml2 can be linked directly: -# ngx_module_libs=-lxml2 +- +-ngx_module_libs=LIBXSLT +ngx_module_libs=-lxml2 +ngx_module_incs=$(pkg-config --cflags-only-I libxml-2.0 | sed 's/^-I//') --ngx_module_libs=LIBXSLT -- ngx_module_srcs="$ngx_addon_dir/ngx_http_dav_ext_module.c" diff --git a/nginx/patches-lua-nginx/100-no_by_lua_block.patch b/nginx/patches/lua-nginx/100-no_by_lua_block.patch old mode 100755 new mode 100644 similarity index 100% rename from nginx/patches-lua-nginx/100-no_by_lua_block.patch rename to nginx/patches/lua-nginx/100-no_by_lua_block.patch diff --git a/nginx/patches/101-feature_test_fix.patch b/nginx/patches/nginx/101-feature_test_fix.patch old mode 100755 new mode 100644 similarity index 89% rename from nginx/patches/101-feature_test_fix.patch rename to nginx/patches/nginx/101-feature_test_fix.patch index b867c88dd..f09f3af8c --- a/nginx/patches/101-feature_test_fix.patch +++ b/nginx/patches/nginx/101-feature_test_fix.patch @@ -49,7 +49,7 @@ ngx_feature_incs="#include " ngx_feature_path= ngx_feature_libs= -@@ -110,7 +110,7 @@ ngx_feature_test="int fd; struct stat sb +@@ -135,7 +135,7 @@ ngx_feature_test="int fd; struct stat sb CC_AUX_FLAGS="$cc_aux_flags -D_GNU_SOURCE" ngx_feature="sendfile()" ngx_feature_name="NGX_HAVE_SENDFILE" @@ -58,7 +58,7 @@ ngx_feature_incs="#include #include " ngx_feature_path= -@@ -131,7 +131,7 @@ fi +@@ -156,7 +156,7 @@ fi CC_AUX_FLAGS="$cc_aux_flags -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64" ngx_feature="sendfile64()" ngx_feature_name="NGX_HAVE_SENDFILE64" @@ -67,7 +67,7 @@ ngx_feature_incs="#include #include " ngx_feature_path= -@@ -149,7 +149,7 @@ ngx_include="sys/prctl.h"; . auto/includ +@@ -174,7 +174,7 @@ ngx_include="sys/prctl.h"; . auto/includ ngx_feature="prctl(PR_SET_DUMPABLE)" ngx_feature_name="NGX_HAVE_PR_SET_DUMPABLE" @@ -78,7 +78,7 @@ ngx_feature_libs= --- a/auto/unix +++ b/auto/unix -@@ -840,7 +840,7 @@ ngx_feature_test="void *p; p = memalign( +@@ -805,7 +805,7 @@ ngx_feature_test="void *p; p = memalign( ngx_feature="mmap(MAP_ANON|MAP_SHARED)" ngx_feature_name="NGX_HAVE_MAP_ANON" @@ -87,7 +87,7 @@ ngx_feature_incs="#include " ngx_feature_path= ngx_feature_libs= -@@ -853,7 +853,7 @@ ngx_feature_test="void *p; +@@ -818,7 +818,7 @@ ngx_feature_test="void *p; ngx_feature='mmap("/dev/zero", MAP_SHARED)' ngx_feature_name="NGX_HAVE_MAP_DEVZERO" @@ -96,7 +96,7 @@ ngx_feature_incs="#include #include #include " -@@ -868,7 +868,7 @@ ngx_feature_test='void *p; int fd; +@@ -833,7 +833,7 @@ ngx_feature_test='void *p; int fd; ngx_feature="System V shared memory" ngx_feature_name="NGX_HAVE_SYSVSHM" @@ -105,7 +105,7 @@ ngx_feature_incs="#include #include " ngx_feature_path= -@@ -882,7 +882,7 @@ ngx_feature_test="int id; +@@ -847,7 +847,7 @@ ngx_feature_test="int id; ngx_feature="POSIX semaphores" ngx_feature_name="NGX_HAVE_POSIX_SEM" diff --git a/nginx/patches/102-sizeof_test_fix.patch b/nginx/patches/nginx/102-sizeof_test_fix.patch old mode 100755 new mode 100644 similarity index 100% rename from nginx/patches/102-sizeof_test_fix.patch rename to nginx/patches/nginx/102-sizeof_test_fix.patch diff --git a/nginx/patches/103-sys_nerr.patch b/nginx/patches/nginx/103-sys_nerr.patch old mode 100755 new mode 100644 similarity index 72% rename from nginx/patches/103-sys_nerr.patch rename to nginx/patches/nginx/103-sys_nerr.patch index 5f5d106fe..c5101f695 --- a/nginx/patches/103-sys_nerr.patch +++ b/nginx/patches/nginx/103-sys_nerr.patch @@ -8,5 +8,5 @@ +#define NGX_SYS_NERR 128 +#endif - /* - * The strerror() messages are copied because: + static ngx_str_t ngx_unknown_error = ngx_string("Unknown error"); + diff --git a/nginx/patches/104-endianness_fix.patch b/nginx/patches/nginx/104-endianness_fix.patch similarity index 100% rename from nginx/patches/104-endianness_fix.patch rename to nginx/patches/nginx/104-endianness_fix.patch diff --git a/nginx/patches/200-config.patch b/nginx/patches/nginx/200-config.patch old mode 100755 new mode 100644 similarity index 100% rename from nginx/patches/200-config.patch rename to nginx/patches/nginx/200-config.patch diff --git a/nginx/patches/201-ignore-invalid-options.patch b/nginx/patches/nginx/201-ignore-invalid-options.patch old mode 100755 new mode 100644 similarity index 100% rename from nginx/patches/201-ignore-invalid-options.patch rename to nginx/patches/nginx/201-ignore-invalid-options.patch diff --git a/nginx/patches/rtmp-nginx/100-bigedian.patch b/nginx/patches/rtmp-nginx/100-bigedian.patch new file mode 100644 index 000000000..c0a07bc7c --- /dev/null +++ b/nginx/patches/rtmp-nginx/100-bigedian.patch @@ -0,0 +1,1521 @@ +From 5b06d1cad5f6711667038169b7ed759d749334da Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Jan=20Bub=C3=ADk?= +Date: Wed, 13 May 2020 19:57:47 +0200 +Subject: [PATCH 1/3] arut's e0e278bc7fedd6f7465648d1d20df1a8422d60bf [removed + endian-dependent code] + +--- + ngx_rtmp.c | 4 ++ + ngx_rtmp.h | 12 +++-- + ngx_rtmp_amf.c | 6 +-- + ngx_rtmp_flv_module.c | 2 +- + ngx_rtmp_handler.c | 108 +++++++++++++++++++++--------------------- + 5 files changed, 68 insertions(+), 64 deletions(-) + +--- a/nginx-rtmp/ngx_rtmp.c ++++ b/nginx-rtmp/ngx_rtmp.c +@@ -825,22 +825,6 @@ ngx_rtmp_fire_event(ngx_rtmp_session_t * + } + + +-void * +-ngx_rtmp_rmemcpy(void *dst, const void* src, size_t n) +-{ +- u_char *d, *s; +- +- d = dst; +- s = (u_char*)src + n - 1; +- +- while(s >= (u_char*)src) { +- *d++ = *s--; +- } +- +- return dst; +-} +- +- + static ngx_int_t + ngx_rtmp_init_process(ngx_cycle_t *cycle) + { +--- a/nginx-rtmp/ngx_rtmp.h ++++ b/nginx-rtmp/ngx_rtmp.h +@@ -417,34 +417,33 @@ ngx_int_t ngx_rtmp_fire_event(ngx_rtmp_s + ngx_int_t ngx_rtmp_set_chunk_size(ngx_rtmp_session_t *s, ngx_uint_t size); + + +-/* Bit reverse: we need big-endians in many places */ +-void * ngx_rtmp_rmemcpy(void *dst, const void* src, size_t n); +- +-#define ngx_rtmp_rcpymem(dst, src, n) \ +- (((u_char*)ngx_rtmp_rmemcpy(dst, src, n)) + (n)) +- +- +-static ngx_inline uint16_t +-ngx_rtmp_r16(uint16_t n) ++/* Bit agnosticism: we need network to host byte-order conversion in many places */ ++static ngx_inline uint64_t ++ntohll(uint64_t n) + { +- return (n << 8) | (n >> 8); ++#if (NGX_HAVE_LITTLE_ENDIAN) ++ return (uint64_t) ntohl((uint32_t) n) << 32 | ++ ntohl((uint32_t) (n >> 32)); ++#else ++ return n; ++#endif + } + +- + static ngx_inline uint32_t +-ngx_rtmp_r32(uint32_t n) ++n3toh4(u_char* src) + { +- return (n << 24) | ((n << 8) & 0xff0000) | ((n >> 8) & 0xff00) | (n >> 24); ++ return ((uint32_t)src[0]<<16)|((uint32_t)src[1]<<8)|src[2]; + } + +- +-static ngx_inline uint64_t +-ngx_rtmp_r64(uint64_t n) ++static ngx_inline u_char* ++h4ton3(u_char* dst, uint32_t src) + { +- return (uint64_t) ngx_rtmp_r32((uint32_t) n) << 32 | +- ngx_rtmp_r32((uint32_t) (n >> 32)); +-} ++ dst[0]=(u_char)(src>>16); ++ dst[1]=(u_char)(src>>8); ++ dst[2]=(u_char)src; + ++ return dst+3; ++} + + /* Receiving messages */ + ngx_int_t ngx_rtmp_receive_message(ngx_rtmp_session_t *s, +--- a/nginx-rtmp/ngx_rtmp_amf.c ++++ b/nginx-rtmp/ngx_rtmp_amf.c +@@ -10,23 +10,6 @@ + #include "ngx_rtmp.h" + #include + +- +-static ngx_inline void* +-ngx_rtmp_amf_reverse_copy(void *dst, void* src, size_t len) +-{ +- size_t k; +- +- if (dst == NULL || src == NULL) { +- return NULL; +- } +- +- for(k = 0; k < len; ++k) { +- ((u_char*)dst)[k] = ((u_char*)src)[len - 1 - k]; +- } +- +- return dst; +-} +- + #define NGX_RTMP_AMF_DEBUG_SIZE 72 + + #ifdef NGX_DEBUG +@@ -207,7 +190,7 @@ ngx_rtmp_amf_read_object(ngx_rtmp_amf_ct + return NGX_ERROR; + } + +- ngx_rtmp_amf_reverse_copy(&len, buf, 2); ++ len=ntohs(*(uint16_t*)&buf[0]); + + if (!len) + break; +@@ -258,7 +241,7 @@ ngx_rtmp_amf_read_array(ngx_rtmp_amf_ctx + if (ngx_rtmp_amf_get(ctx, buf, 4) != NGX_OK) + return NGX_ERROR; + +- ngx_rtmp_amf_reverse_copy(&len, buf, 4); ++ len=ntohl(*(uint32_t*)&buf[0]); + + for (n = 0; n < len; ++n) { + if (ngx_rtmp_amf_read(ctx, n < nelts ? &elts[n] : NULL, 1) != NGX_OK) +@@ -352,10 +335,9 @@ ngx_rtmp_amf_read(ngx_rtmp_amf_ctx_t *ct + + switch (type) { + case NGX_RTMP_AMF_NUMBER: +- if (ngx_rtmp_amf_get(ctx, buf, 8) != NGX_OK) { ++ if (ngx_rtmp_amf_get(ctx, data, 8) != NGX_OK) { + return NGX_ERROR; + } +- ngx_rtmp_amf_reverse_copy(data, buf, 8); + break; + + case NGX_RTMP_AMF_BOOLEAN: +@@ -368,7 +350,7 @@ ngx_rtmp_amf_read(ngx_rtmp_amf_ctx_t *ct + if (ngx_rtmp_amf_get(ctx, buf, 2) != NGX_OK) { + return NGX_ERROR; + } +- ngx_rtmp_amf_reverse_copy(&len, buf, 2); ++ len=ntohs(*(uint16_t*)buf); + + if (data == NULL) { + rc = ngx_rtmp_amf_get(ctx, data, len); +@@ -438,14 +420,14 @@ ngx_rtmp_amf_read(ngx_rtmp_amf_ctx_t *ct + if (ngx_rtmp_amf_get(ctx, buf, 2) != NGX_OK) { + return NGX_ERROR; + } +- ngx_rtmp_amf_reverse_copy(data, buf, 2); ++ *(uint16_t*)data=ntohs(*(uint16_t*)buf); + break; + + case NGX_RTMP_AMF_INT32: + if (ngx_rtmp_amf_get(ctx, buf, 4) != NGX_OK) { + return NGX_ERROR; + } +- ngx_rtmp_amf_reverse_copy(data, buf, 4); ++ *(uint32_t*)data=ntohs(*(uint32_t*)buf); + break; + + case NGX_RTMP_AMF_END: +@@ -476,9 +458,8 @@ ngx_rtmp_amf_write_object(ngx_rtmp_amf_c + + len = (uint16_t) elts[n].name.len; + +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- &len, 2), 2) != NGX_OK) ++ *(uint16_t*)buf = htons(len); ++ if (ngx_rtmp_amf_put(ctx, buf, 2) != NGX_OK) + { + return NGX_ERROR; + } +@@ -509,9 +490,8 @@ ngx_rtmp_amf_write_array(ngx_rtmp_amf_ct + u_char buf[4]; + + len = nelts; +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- &len, 4), 4) != NGX_OK) ++ *(uint32_t*)buf = htonl(len); ++ if (ngx_rtmp_amf_put(ctx, buf, 4) != NGX_OK) + { + return NGX_ERROR; + } +@@ -554,9 +534,7 @@ ngx_rtmp_amf_write(ngx_rtmp_amf_ctx_t *c + + switch(type) { + case NGX_RTMP_AMF_NUMBER: +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- data, 8), 8) != NGX_OK) ++ if (ngx_rtmp_amf_put(ctx, data, 8) != NGX_OK) + { + return NGX_ERROR; + } +@@ -573,9 +551,8 @@ ngx_rtmp_amf_write(ngx_rtmp_amf_ctx_t *c + len = (uint16_t) ngx_strlen((u_char*) data); + } + +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- &len, 2), 2) != NGX_OK) ++ *(uint16_t*)buf = htons(len); ++ if (ngx_rtmp_amf_put(ctx, buf, 2) != NGX_OK) + { + return NGX_ERROR; + } +@@ -621,18 +598,16 @@ ngx_rtmp_amf_write(ngx_rtmp_amf_ctx_t *c + break; + + case NGX_RTMP_AMF_INT16: +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- data, 2), 2) != NGX_OK) ++ *(uint16_t*)buf = htons(*(uint16_t*)data); ++ if (ngx_rtmp_amf_put(ctx, buf, 2) != NGX_OK) + { + return NGX_ERROR; + } + break; + + case NGX_RTMP_AMF_INT32: +- if (ngx_rtmp_amf_put(ctx, +- ngx_rtmp_amf_reverse_copy(buf, +- data, 4), 4) != NGX_OK) ++ *(uint32_t*)buf = htonl(*(uint32_t*)data); ++ if (ngx_rtmp_amf_put(ctx, buf, 4) != NGX_OK) + { + return NGX_ERROR; + } +--- a/nginx-rtmp/ngx_rtmp_flv_module.c ++++ b/nginx-rtmp/ngx_rtmp_flv_module.c +@@ -102,7 +102,7 @@ ngx_rtmp_flv_fill_index(ngx_rtmp_amf_ctx + return NGX_ERROR; + } + +- ngx_rtmp_rmemcpy(&nelts, b->pos + ctx->offset, 4); ++ nelts=htonl(*(uint32_t*)(b->pos + ctx->offset)); + + idx->nelts = nelts; + idx->offset = ctx->offset + 4; +@@ -201,11 +201,7 @@ ngx_rtmp_flv_init_index(ngx_rtmp_session + static double + ngx_rtmp_flv_index_value(void *src) + { +- double v; +- +- ngx_rtmp_rmemcpy(&v, src, 8); +- +- return v; ++ return *(double*)src; + } + + +@@ -352,8 +348,7 @@ ngx_rtmp_flv_read_meta(ngx_rtmp_session_ + h.msid = NGX_RTMP_MSID; + h.csid = NGX_RTMP_CSID_AMF; + +- size = 0; +- ngx_rtmp_rmemcpy(&size, ngx_rtmp_flv_header + 1, 3); ++ size = n3toh4(ngx_rtmp_flv_header + 1); + + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "flv: metadata size=%D", size); +@@ -440,12 +435,9 @@ ngx_rtmp_flv_send(ngx_rtmp_session_t *s, + h.msid = NGX_RTMP_MSID; + h.type = ngx_rtmp_flv_header[0]; + +- size = 0; +- +- ngx_rtmp_rmemcpy(&size, ngx_rtmp_flv_header + 1, 3); +- ngx_rtmp_rmemcpy(&h.timestamp, ngx_rtmp_flv_header + 4, 3); +- +- ((u_char *) &h.timestamp)[3] = ngx_rtmp_flv_header[7]; ++ size = n3toh4(ngx_rtmp_flv_header + 1); ++ h.timestamp = n3toh4(ngx_rtmp_flv_header + 4); ++ h.timestamp |= ((uint32_t) ngx_rtmp_flv_header[7] << 24); + + ctx->offset += (sizeof(ngx_rtmp_flv_header) + size + 4); + +--- a/nginx-rtmp/ngx_rtmp_handler.c ++++ b/nginx-rtmp/ngx_rtmp_handler.c +@@ -200,7 +200,7 @@ ngx_rtmp_recv(ngx_event_t *rev) + ngx_rtmp_stream_t *st, *st0; + ngx_chain_t *in, *head; + ngx_buf_t *b; +- u_char *p, *pp, *old_pos; ++ u_char *p, *old_pos; + size_t size, fsize, old_size; + uint8_t fmt, ext; + uint32_t csid, timestamp; +@@ -308,14 +308,14 @@ ngx_rtmp_recv(ngx_event_t *rev) + if (b->last - p < 1) + continue; + csid = 64; +- csid += *(uint8_t*)p++; ++ csid += *p++; + + } else if (csid == 1) { + if (b->last - p < 2) + continue; + csid = 64; +- csid += *(uint8_t*)p++; +- csid += (uint32_t)256 * (*(uint8_t*)p++); ++ csid += *p++; ++ csid += ((uint32_t) *p++ << 8); + } + + ngx_log_debug2(NGX_LOG_DEBUG_RTMP, c->log, 0, +@@ -355,40 +355,37 @@ ngx_rtmp_recv(ngx_event_t *rev) + if (fmt <= 2 ) { + if (b->last - p < 3) + continue; +- /* timestamp: +- * big-endian 3b -> little-endian 4b */ +- pp = (u_char*)×tamp; +- pp[2] = *p++; +- pp[1] = *p++; +- pp[0] = *p++; +- pp[3] = 0; ++ ++ /* timestamp: big-endian 3 bytes */ ++ ++ timestamp = ((uint32_t) *p++ << 16); ++ timestamp |= ((uint32_t) *p++ << 8); ++ timestamp |= *p++; + + ext = (timestamp == 0x00ffffff); + + if (fmt <= 1) { + if (b->last - p < 4) + continue; +- /* size: +- * big-endian 3b -> little-endian 4b +- * type: +- * 1b -> 1b*/ +- pp = (u_char*)&h->mlen; +- pp[2] = *p++; +- pp[1] = *p++; +- pp[0] = *p++; +- pp[3] = 0; +- h->type = *(uint8_t*)p++; ++ ++ /* size: big-endian 3 bytes */ ++ ++ h->mlen = ((uint32_t) *p++ << 16); ++ h->mlen |= ((uint32_t) *p++ << 8); ++ h->mlen |= *p++; ++ ++ h->type = *p++; + + if (fmt == 0) { + if (b->last - p < 4) + continue; +- /* stream: +- * little-endian 4b -> little-endian 4b */ +- pp = (u_char*)&h->msid; +- pp[0] = *p++; +- pp[1] = *p++; +- pp[2] = *p++; +- pp[3] = *p++; ++ ++ /* stream: little-endian 4 bytes */ ++ ++ h->msid = *p++; ++ h->msid |= ((uint32_t) *p++ << 8); ++ h->msid |= ((uint32_t) *p++ << 16); ++ h->msid |= ((uint32_t) *p++ << 24); + } + } + } +@@ -397,13 +394,13 @@ ngx_rtmp_recv(ngx_event_t *rev) + if (ext) { + if (b->last - p < 4) + continue; +- pp = (u_char*)×tamp; +- /* extented time stamp: +- * big-endian 4b -> little-endian 4b */ +- pp[3] = *p++; +- pp[2] = *p++; +- pp[1] = *p++; +- pp[0] = *p++; ++ ++ /* timestamp: big-endian 4 bytes */ ++ ++ timestamp = ((uint32_t) *p++ << 24); ++ timestamp |= ((uint32_t) *p++ << 16); ++ timestamp |= ((uint32_t) *p++ << 8); ++ timestamp |= *p++; + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, c->log, 0, "RTMP extended timestamp %uD", (uint32_t)timestamp); + } + +@@ -584,7 +581,7 @@ ngx_rtmp_prepare_message(ngx_rtmp_sessio + ngx_rtmp_header_t *lh, ngx_chain_t *out) + { + ngx_chain_t *l; +- u_char *p, *pp; ++ u_char *p; + ngx_int_t hsize, thsize, nbufs; + uint32_t mlen, timestamp, ext_timestamp; + static uint8_t hdrsize[] = { 12, 8, 4, 1 }; +@@ -677,33 +674,36 @@ ngx_rtmp_prepare_message(ngx_rtmp_sessio + + /* message header */ + if (fmt <= 2) { +- pp = (u_char*)×tamp; +- *p++ = pp[2]; +- *p++ = pp[1]; +- *p++ = pp[0]; ++ ++ *p++ = (u_char) (timestamp >> 16); ++ *p++ = (u_char) (timestamp >> 8); ++ *p++ = (u_char) timestamp; ++ + if (fmt <= 1) { +- pp = (u_char*)&mlen; +- *p++ = pp[2]; +- *p++ = pp[1]; +- *p++ = pp[0]; ++ ++ *p++ = (u_char) (mlen >> 16); ++ *p++ = (u_char) (mlen >> 8); ++ *p++ = (u_char) mlen; ++ + *p++ = h->type; ++ + if (fmt == 0) { +- pp = (u_char*)&h->msid; +- *p++ = pp[0]; +- *p++ = pp[1]; +- *p++ = pp[2]; +- *p++ = pp[3]; ++ ++ *p++ = (u_char) h->msid; ++ *p++ = (u_char) (h->msid >> 8); ++ *p++ = (u_char) (h->msid >> 16); ++ *p++ = (u_char) (h->msid >> 24); + } + } + } + + /* extended header */ + if (ext_timestamp) { +- pp = (u_char*)&ext_timestamp; +- *p++ = pp[3]; +- *p++ = pp[2]; +- *p++ = pp[1]; +- *p++ = pp[0]; ++ ++ *p++ = (u_char) (ext_timestamp >> 24); ++ *p++ = (u_char) (ext_timestamp >> 16); ++ *p++ = (u_char) (ext_timestamp >> 8); ++ *p++ = (u_char) ext_timestamp; + + /* This CONTRADICTS the standard + * but that's the way flash client +--- a/nginx-rtmp/ngx_rtmp_send.c ++++ b/nginx-rtmp/ngx_rtmp_send.c +@@ -33,13 +33,13 @@ + *(__b->last++) = (u_char)(utype); + + #define NGX_RTMP_USER_OUT1(v) \ +- *(__b->last++) = ((u_char*)&v)[0]; ++ *(__b->last++) = (u_char) v; + + #define NGX_RTMP_USER_OUT4(v) \ +- *(__b->last++) = ((u_char*)&v)[3]; \ +- *(__b->last++) = ((u_char*)&v)[2]; \ +- *(__b->last++) = ((u_char*)&v)[1]; \ +- *(__b->last++) = ((u_char*)&v)[0]; ++ *(__b->last++) = (u_char) (v >> 24); \ ++ *(__b->last++) = (u_char) (v >> 16); \ ++ *(__b->last++) = (u_char) (v >> 8); \ ++ *(__b->last++) = (u_char) v; + + #define NGX_RTMP_USER_END(s) \ + ngx_rtmp_prepare_message(s, &__h, NULL, __l); \ +--- a/nginx-rtmp/hls/ngx_rtmp_hls_module.c ++++ b/nginx-rtmp/hls/ngx_rtmp_hls_module.c +@@ -296,7 +296,7 @@ static ngx_command_t ngx_rtmp_hls_comman + ngx_conf_set_enum_slot, + NGX_RTMP_APP_CONF_OFFSET, + offsetof(ngx_rtmp_hls_app_conf_t, allow_client_cache), +- &ngx_rtmp_hls_cache }, ++ &ngx_rtmp_hls_cache }, + + { ngx_string("hls_variant"), + NGX_RTMP_MAIN_CONF|NGX_RTMP_SRV_CONF|NGX_RTMP_APP_CONF|NGX_CONF_1MORE, +@@ -816,7 +816,7 @@ ngx_rtmp_hls_append_sps_pps(ngx_rtmp_ses + return NGX_ERROR; + } + +- ngx_rtmp_rmemcpy(&len, &rlen, 2); ++ len=ntohs(rlen); + + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "hls: header NAL length: %uz", (size_t) len); +@@ -2072,7 +2072,21 @@ ngx_rtmp_hls_video(ngx_rtmp_session_t *s + } + + len = 0; +- ngx_rtmp_rmemcpy(&len, &rlen, nal_bytes); ++ ++ switch (nal_bytes) { ++ case 1: ++ len=*(uint8_t*)&rlen; ++ break; ++ case 2: ++ len=ntohs(*(uint16_t*)&rlen); ++ break; ++ case 3: ++ len=n3toh4((u_char*)&rlen); ++ break; ++ case 4: ++ len=ntohl(rlen); ++ break; ++ }; + + if (len == 0) { + continue; +--- a/nginx-rtmp/ngx_rtmp_bitop.h ++++ b/nginx-rtmp/ngx_rtmp_bitop.h +@@ -40,7 +40,7 @@ uint64_t ngx_rtmp_bit_read_golomb(ngx_rt + ((uint32_t) ngx_rtmp_bit_read(br, 32)) + + #define ngx_rtmp_bit_read_64(br) \ +- ((uint64_t) ngx_rtmp_read(br, 64)) ++ ((uint64_t) ngx_rtmp_bit_read(br, 64)) + + + #endif /* _NGX_RTMP_BITOP_H_INCLUDED_ */ +--- a/nginx-rtmp/ngx_rtmp_eval.c ++++ b/nginx-rtmp/ngx_rtmp_eval.c +@@ -166,7 +166,7 @@ ngx_rtmp_eval(void *ctx, ngx_str_t *in, + state = ESCAPE; + continue; + } +- ++ /* fall through */ + case ESCAPE: + ngx_rtmp_eval_append(&b, &c, 1, log); + state = NORMAL; +--- a/nginx-rtmp/ngx_rtmp_handshake.c ++++ b/nginx-rtmp/ngx_rtmp_handshake.c +@@ -264,7 +264,8 @@ ngx_rtmp_handshake_create_challenge(ngx_ + b = s->hs_buf; + b->last = b->pos = b->start; + *b->last++ = '\x03'; +- b->last = ngx_rtmp_rcpymem(b->last, &s->epoch, 4); ++ *(uint32_t*)b->last=htonl(s->epoch); ++ b->last +=4; + b->last = ngx_cpymem(b->last, version, 4); + ngx_rtmp_fill_random_buffer(b); + ++b->pos; +@@ -292,8 +293,7 @@ ngx_rtmp_handshake_parse_challenge(ngx_r + return NGX_ERROR; + } + ++b->pos; +- s->peer_epoch = 0; +- ngx_rtmp_rmemcpy(&s->peer_epoch, b->pos, 4); ++ s->peer_epoch = ntohl(*(uint32_t*)b->pos); + + p = b->pos + 4; + ngx_log_debug5(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, +--- a/nginx-rtmp/ngx_rtmp_mp4_module.c ++++ b/nginx-rtmp/ngx_rtmp_mp4_module.c +@@ -528,9 +528,9 @@ ngx_rtmp_mp4_parse_mdhd(ngx_rtmp_session + } + + pos += 12; +- t->time_scale = ngx_rtmp_r32(*(uint32_t *) pos); ++ t->time_scale = ntohl(*(uint32_t *) pos); + pos += 4; +- t->duration = ngx_rtmp_r32(*(uint32_t *) pos); ++ t->duration = ntohl(*(uint32_t *) pos); + break; + + case 1: +@@ -539,9 +539,9 @@ ngx_rtmp_mp4_parse_mdhd(ngx_rtmp_session + } + + pos += 20; +- t->time_scale = ngx_rtmp_r32(*(uint32_t *) pos); ++ t->time_scale = ntohl(*(uint32_t *) pos); + pos += 4; +- t->duration = ngx_rtmp_r64(*(uint64_t *) pos); ++ t->duration = ntohll(*(uint64_t *) pos); + break; + + default: +@@ -616,11 +616,11 @@ ngx_rtmp_mp4_parse_video(ngx_rtmp_sessio + + pos += 24; + +- ctx->width = ngx_rtmp_r16(*(uint16_t *) pos); ++ ctx->width = ntohs(*(uint16_t *) pos); + + pos += 2; + +- ctx->height = ngx_rtmp_r16(*(uint16_t *) pos); ++ ctx->height = ntohs(*(uint16_t *) pos); + + pos += 52; + +@@ -660,19 +660,19 @@ ngx_rtmp_mp4_parse_audio(ngx_rtmp_sessio + + pos += 8; + +- version = ngx_rtmp_r16(*(uint16_t *) pos); ++ version = ntohs(*(uint16_t *) pos); + + pos += 8; + +- ctx->nchannels = ngx_rtmp_r16(*(uint16_t *) pos); ++ ctx->nchannels = ntohs(*(uint16_t *) pos); + + pos += 2; + +- ctx->sample_size = ngx_rtmp_r16(*(uint16_t *) pos); ++ ctx->sample_size = ntohs(*(uint16_t *) pos); + + pos += 6; + +- ctx->sample_rate = ngx_rtmp_r16(*(uint16_t *) pos); ++ ctx->sample_rate = ntohs(*(uint16_t *) pos); + + pos += 4; + +@@ -862,7 +862,7 @@ ngx_rtmp_mp4_parse_es(ngx_rtmp_session_t + return NGX_ERROR; + } + +- id = ngx_rtmp_r16(*(uint16_t *) pos); ++ id = ntohs(*(uint16_t *) pos); + pos += 2; + + flags = *(uint8_t *) pos; +@@ -1018,13 +1018,13 @@ ngx_rtmp_mp4_parse_stsc(ngx_rtmp_session + + t->chunks = (ngx_rtmp_mp4_chunks_t *) pos; + +- if (pos + sizeof(*t->chunks) + ngx_rtmp_r32(t->chunks->entry_count) * ++ if (pos + sizeof(*t->chunks) + ntohl(t->chunks->entry_count) * + sizeof(t->chunks->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: chunks entries=%uD", +- ngx_rtmp_r32(t->chunks->entry_count)); ++ ntohl(t->chunks->entry_count)); + return NGX_OK; + } + +@@ -1049,13 +1049,13 @@ ngx_rtmp_mp4_parse_stts(ngx_rtmp_session + + t->times = (ngx_rtmp_mp4_times_t *) pos; + +- if (pos + sizeof(*t->times) + ngx_rtmp_r32(t->times->entry_count) * ++ if (pos + sizeof(*t->times) + ntohl(t->times->entry_count) * + sizeof(t->times->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: times entries=%uD", +- ngx_rtmp_r32(t->times->entry_count)); ++ ntohl(t->times->entry_count)); + return NGX_OK; + } + +@@ -1080,13 +1080,13 @@ ngx_rtmp_mp4_parse_ctts(ngx_rtmp_session + + t->delays = (ngx_rtmp_mp4_delays_t *) pos; + +- if (pos + sizeof(*t->delays) + ngx_rtmp_r32(t->delays->entry_count) * ++ if (pos + sizeof(*t->delays) + ntohl(t->delays->entry_count) * + sizeof(t->delays->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: delays entries=%uD", +- ngx_rtmp_r32(t->delays->entry_count)); ++ ntohl(t->delays->entry_count)); + return NGX_OK; + } + +@@ -1111,13 +1111,13 @@ ngx_rtmp_mp4_parse_stss(ngx_rtmp_session + + t->keys = (ngx_rtmp_mp4_keys_t *) pos; + +- if (pos + sizeof(*t->keys) + ngx_rtmp_r32(t->keys->entry_count) * ++ if (pos + sizeof(*t->keys) + ntohl(t->keys->entry_count) * + sizeof(t->keys->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: keys entries=%uD", +- ngx_rtmp_r32(t->keys->entry_count)); ++ ntohl(t->keys->entry_count)); + return NGX_OK; + } + +@@ -1145,18 +1145,18 @@ ngx_rtmp_mp4_parse_stsz(ngx_rtmp_session + if (pos + sizeof(*t->sizes) <= last && t->sizes->sample_size) { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: sizes size=%uD", +- ngx_rtmp_r32(t->sizes->sample_size)); ++ ntohl(t->sizes->sample_size)); + return NGX_OK; + } + +- if (pos + sizeof(*t->sizes) + ngx_rtmp_r32(t->sizes->sample_count) * ++ if (pos + sizeof(*t->sizes) + ntohl(t->sizes->sample_count) * + sizeof(t->sizes->entries[0]) + <= last) + + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: sizes entries=%uD", +- ngx_rtmp_r32(t->sizes->sample_count)); ++ ntohl(t->sizes->sample_count)); + return NGX_OK; + } + +@@ -1181,14 +1181,14 @@ ngx_rtmp_mp4_parse_stz2(ngx_rtmp_session + + t->sizes2 = (ngx_rtmp_mp4_sizes2_t *) pos; + +- if (pos + sizeof(*t->sizes) + ngx_rtmp_r32(t->sizes2->sample_count) * +- ngx_rtmp_r32(t->sizes2->field_size) / 8 ++ if (pos + sizeof(*t->sizes) + ntohl(t->sizes2->sample_count) * ++ ntohl(t->sizes2->field_size) / 8 + <= last) + { + ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: sizes2 field_size=%uD entries=%uD", +- ngx_rtmp_r32(t->sizes2->field_size), +- ngx_rtmp_r32(t->sizes2->sample_count)); ++ ntohl(t->sizes2->field_size), ++ ntohl(t->sizes2->sample_count)); + return NGX_OK; + } + +@@ -1213,13 +1213,13 @@ ngx_rtmp_mp4_parse_stco(ngx_rtmp_session + + t->offsets = (ngx_rtmp_mp4_offsets_t *) pos; + +- if (pos + sizeof(*t->offsets) + ngx_rtmp_r32(t->offsets->entry_count) * ++ if (pos + sizeof(*t->offsets) + ntohl(t->offsets->entry_count) * + sizeof(t->offsets->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: offsets entries=%uD", +- ngx_rtmp_r32(t->offsets->entry_count)); ++ ntohl(t->offsets->entry_count)); + return NGX_OK; + } + +@@ -1244,13 +1244,13 @@ ngx_rtmp_mp4_parse_co64(ngx_rtmp_session + + t->offsets64 = (ngx_rtmp_mp4_offsets64_t *) pos; + +- if (pos + sizeof(*t->offsets64) + ngx_rtmp_r32(t->offsets64->entry_count) * ++ if (pos + sizeof(*t->offsets64) + ntohl(t->offsets64->entry_count) * + sizeof(t->offsets64->entries[0]) + <= last) + { + ngx_log_debug1(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: offsets64 entries=%uD", +- ngx_rtmp_r32(t->offsets64->entry_count)); ++ ntohl(t->offsets64->entry_count)); + return NGX_OK; + } + +@@ -1275,7 +1275,7 @@ ngx_rtmp_mp4_parse(ngx_rtmp_session_t *s + } + + hdr = (uint32_t *) pos; +- size = ngx_rtmp_r32(hdr[0]); ++ size = ntohl(hdr[0]); + tag = hdr[1]; + + if (pos + size > last) { +@@ -1318,11 +1318,11 @@ ngx_rtmp_mp4_next_time(ngx_rtmp_session_ + + cr = &t->cursor; + +- if (cr->time_pos >= ngx_rtmp_r32(t->times->entry_count)) { ++ if (cr->time_pos >= ntohl(t->times->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui time[%ui/%uD] overflow", + t->id, cr->time_pos, +- ngx_rtmp_r32(t->times->entry_count)); ++ ntohl(t->times->entry_count)); + + return NGX_ERROR; + } +@@ -1330,22 +1330,22 @@ ngx_rtmp_mp4_next_time(ngx_rtmp_session_ + te = &t->times->entries[cr->time_pos]; + + cr->last_timestamp = cr->timestamp; +- cr->timestamp += ngx_rtmp_r32(te->sample_delta); ++ cr->timestamp += ntohl(te->sample_delta); + + cr->not_first = 1; + + ngx_log_debug8(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui time[%ui] [%ui/%uD][%ui/%uD]=%uD t=%uD", + t->id, cr->pos, cr->time_pos, +- ngx_rtmp_r32(t->times->entry_count), +- cr->time_count, ngx_rtmp_r32(te->sample_count), +- ngx_rtmp_r32(te->sample_delta), ++ ntohl(t->times->entry_count), ++ cr->time_count, ntohl(te->sample_count), ++ ntohl(te->sample_delta), + cr->timestamp); + + cr->time_count++; + cr->pos++; + +- if (cr->time_count >= ngx_rtmp_r32(te->sample_count)) { ++ if (cr->time_count >= ntohl(te->sample_count)) { + cr->time_pos++; + cr->time_count = 0; + } +@@ -1370,8 +1370,8 @@ ngx_rtmp_mp4_seek_time(ngx_rtmp_session_ + + te = t->times->entries; + +- while (cr->time_pos < ngx_rtmp_r32(t->times->entry_count)) { +- dt = ngx_rtmp_r32(te->sample_delta) * ngx_rtmp_r32(te->sample_count); ++ while (cr->time_pos < ntohl(t->times->entry_count)) { ++ dt = ntohl(te->sample_delta) * ntohl(te->sample_count); + + if (cr->timestamp + dt >= timestamp) { + if (te->sample_delta == 0) { +@@ -1379,24 +1379,24 @@ ngx_rtmp_mp4_seek_time(ngx_rtmp_session_ + } + + cr->time_count = (timestamp - cr->timestamp) / +- ngx_rtmp_r32(te->sample_delta); +- cr->timestamp += ngx_rtmp_r32(te->sample_delta) * cr->time_count; ++ ntohl(te->sample_delta); ++ cr->timestamp += ntohl(te->sample_delta) * cr->time_count; + cr->pos += cr->time_count; + + break; + } + + cr->timestamp += dt; +- cr->pos += ngx_rtmp_r32(te->sample_count); ++ cr->pos += ntohl(te->sample_count); + cr->time_pos++; + te++; + } + +- if (cr->time_pos >= ngx_rtmp_r32(t->times->entry_count)) { ++ if (cr->time_pos >= ntohl(t->times->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek time[%ui/%uD] overflow", + t->id, cr->time_pos, +- ngx_rtmp_r32(t->times->entry_count)); ++ ntohl(t->times->entry_count)); + + return NGX_ERROR; + } +@@ -1405,10 +1405,10 @@ ngx_rtmp_mp4_seek_time(ngx_rtmp_session_ + "mp4: track#%ui seek time[%ui] [%ui/%uD][%ui/%uD]=%uD " + "t=%uD", + t->id, cr->pos, cr->time_pos, +- ngx_rtmp_r32(t->times->entry_count), ++ ntohl(t->times->entry_count), + cr->time_count, +- ngx_rtmp_r32(te->sample_count), +- ngx_rtmp_r32(te->sample_delta), ++ ntohl(te->sample_count), ++ ntohl(te->sample_delta), + cr->timestamp); + + return NGX_OK; +@@ -1433,44 +1433,44 @@ ngx_rtmp_mp4_update_offset(ngx_rtmp_sess + chunk = cr->chunk - 1; + + if (t->offsets) { +- if (chunk >= ngx_rtmp_r32(t->offsets->entry_count)) { ++ if (chunk >= ntohl(t->offsets->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui offset[%ui/%uD] overflow", + t->id, cr->chunk, +- ngx_rtmp_r32(t->offsets->entry_count)); ++ ntohl(t->offsets->entry_count)); + + return NGX_ERROR; + } + +- cr->offset = (off_t) ngx_rtmp_r32(t->offsets->entries[chunk]); ++ cr->offset = (off_t) ntohl(t->offsets->entries[chunk]); + cr->size = 0; + + ngx_log_debug4(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui offset[%ui/%uD]=%O", + t->id, cr->chunk, +- ngx_rtmp_r32(t->offsets->entry_count), ++ ntohl(t->offsets->entry_count), + cr->offset); + + return NGX_OK; + } + + if (t->offsets64) { +- if (chunk >= ngx_rtmp_r32(t->offsets64->entry_count)) { ++ if (chunk >= ntohl(t->offsets64->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui offset64[%ui/%uD] overflow", + t->id, cr->chunk, +- ngx_rtmp_r32(t->offsets->entry_count)); ++ ntohl(t->offsets->entry_count)); + + return NGX_ERROR; + } + +- cr->offset = (off_t) ngx_rtmp_r64(t->offsets64->entries[chunk]); ++ cr->offset = (off_t) ntohll(t->offsets64->entries[chunk]); + cr->size = 0; + + ngx_log_debug4(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui offset64[%ui/%uD]=%O", + t->id, cr->chunk, +- ngx_rtmp_r32(t->offsets->entry_count), ++ ntohl(t->offsets->entry_count), + cr->offset); + + return NGX_OK; +@@ -1493,11 +1493,11 @@ ngx_rtmp_mp4_next_chunk(ngx_rtmp_session + + cr = &t->cursor; + +- if (cr->chunk_pos >= ngx_rtmp_r32(t->chunks->entry_count)) { ++ if (cr->chunk_pos >= ntohl(t->chunks->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui chunk[%ui/%uD] overflow", + t->id, cr->chunk_pos, +- ngx_rtmp_r32(t->chunks->entry_count)); ++ ntohl(t->chunks->entry_count)); + + return NGX_ERROR; + } +@@ -1506,13 +1506,13 @@ ngx_rtmp_mp4_next_chunk(ngx_rtmp_session + + cr->chunk_count++; + +- if (cr->chunk_count >= ngx_rtmp_r32(ce->samples_per_chunk)) { ++ if (cr->chunk_count >= ntohl(ce->samples_per_chunk)) { + cr->chunk_count = 0; + cr->chunk++; + +- if (cr->chunk_pos + 1 < ngx_rtmp_r32(t->chunks->entry_count)) { ++ if (cr->chunk_pos + 1 < ntohl(t->chunks->entry_count)) { + nce = ce + 1; +- if (cr->chunk >= ngx_rtmp_r32(nce->first_chunk)) { ++ if (cr->chunk >= ntohl(nce->first_chunk)) { + cr->chunk_pos++; + ce = nce; + } +@@ -1527,10 +1527,10 @@ ngx_rtmp_mp4_next_chunk(ngx_rtmp_session + ngx_log_debug7(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui chunk[%ui/%uD][%uD..%ui][%ui/%uD]", + t->id, cr->chunk_pos, +- ngx_rtmp_r32(t->chunks->entry_count), +- ngx_rtmp_r32(ce->first_chunk), ++ ntohl(t->chunks->entry_count), ++ ntohl(ce->first_chunk), + cr->chunk, cr->chunk_count, +- ngx_rtmp_r32(ce->samples_per_chunk)); ++ ntohl(ce->samples_per_chunk)); + + + if (new_chunk) { +@@ -1558,12 +1558,12 @@ ngx_rtmp_mp4_seek_chunk(ngx_rtmp_session + ce = t->chunks->entries; + pos = 0; + +- while (cr->chunk_pos + 1 < ngx_rtmp_r32(t->chunks->entry_count)) { ++ while (cr->chunk_pos + 1 < ntohl(t->chunks->entry_count)) { + nce = ce + 1; + +- dpos = (ngx_rtmp_r32(nce->first_chunk) - +- ngx_rtmp_r32(ce->first_chunk)) * +- ngx_rtmp_r32(ce->samples_per_chunk); ++ dpos = (ntohl(nce->first_chunk) - ++ ntohl(ce->first_chunk)) * ++ ntohl(ce->samples_per_chunk); + + if (pos + dpos > cr->pos) { + break; +@@ -1578,20 +1578,20 @@ ngx_rtmp_mp4_seek_chunk(ngx_rtmp_session + return NGX_ERROR; + } + +- dchunk = (cr->pos - pos) / ngx_rtmp_r32(ce->samples_per_chunk); ++ dchunk = (cr->pos - pos) / ntohl(ce->samples_per_chunk); + +- cr->chunk = ngx_rtmp_r32(ce->first_chunk) + dchunk; ++ cr->chunk = ntohl(ce->first_chunk) + dchunk; + cr->chunk_pos = (ngx_uint_t) (ce - t->chunks->entries); + cr->chunk_count = (ngx_uint_t) (cr->pos - pos - dchunk * +- ngx_rtmp_r32(ce->samples_per_chunk)); ++ ntohl(ce->samples_per_chunk)); + + ngx_log_debug7(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek chunk[%ui/%uD][%uD..%ui][%ui/%uD]", + t->id, cr->chunk_pos, +- ngx_rtmp_r32(t->chunks->entry_count), +- ngx_rtmp_r32(ce->first_chunk), ++ ntohl(t->chunks->entry_count), ++ ntohl(ce->first_chunk), + cr->chunk, cr->chunk_count, +- ngx_rtmp_r32(ce->samples_per_chunk)); ++ ntohl(ce->samples_per_chunk)); + + return ngx_rtmp_mp4_update_offset(s, t); + } +@@ -1608,7 +1608,7 @@ ngx_rtmp_mp4_next_size(ngx_rtmp_session_ + + if (t->sizes) { + if (t->sizes->sample_size) { +- cr->size = ngx_rtmp_r32(t->sizes->sample_size); ++ cr->size = ntohl(t->sizes->sample_size); + + ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui size fix=%uz", +@@ -1619,32 +1619,32 @@ ngx_rtmp_mp4_next_size(ngx_rtmp_session_ + + cr->size_pos++; + +- if (cr->size_pos >= ngx_rtmp_r32(t->sizes->sample_count)) { ++ if (cr->size_pos >= ntohl(t->sizes->sample_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui size[%ui/%uD] overflow", + t->id, cr->size_pos, +- ngx_rtmp_r32(t->sizes->sample_count)); ++ ntohl(t->sizes->sample_count)); + + return NGX_ERROR; + } + +- cr->size = ngx_rtmp_r32(t->sizes->entries[cr->size_pos]); ++ cr->size = ntohl(t->sizes->entries[cr->size_pos]); + + ngx_log_debug4(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui size[%ui/%uD]=%uz", + t->id, cr->size_pos, +- ngx_rtmp_r32(t->sizes->sample_count), ++ ntohl(t->sizes->sample_count), + cr->size); + + return NGX_OK; + } + + if (t->sizes2) { +- if (cr->size_pos >= ngx_rtmp_r32(t->sizes2->sample_count)) { ++ if (cr->size_pos >= ntohl(t->sizes2->sample_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui size[%ui/%uD] overflow", + t->id, cr->size_pos, +- ngx_rtmp_r32(t->sizes2->sample_count)); ++ ntohl(t->sizes2->sample_count)); + + return NGX_ERROR; + } +@@ -1672,7 +1672,7 @@ ngx_rtmp_mp4_seek_size(ngx_rtmp_session_ + + if (t->sizes) { + if (t->sizes->sample_size) { +- cr->size = ngx_rtmp_r32(t->sizes->sample_size); ++ cr->size = ntohl(t->sizes->sample_size); + + cr->offset += cr->size * cr->chunk_count; + +@@ -1683,37 +1683,37 @@ ngx_rtmp_mp4_seek_size(ngx_rtmp_session_ + return NGX_OK; + } + +- if (cr->pos >= ngx_rtmp_r32(t->sizes->sample_count)) { ++ if (cr->pos >= ntohl(t->sizes->sample_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek size[%ui/%uD] overflow", + t->id, cr->pos, +- ngx_rtmp_r32(t->sizes->sample_count)); ++ ntohl(t->sizes->sample_count)); + + return NGX_ERROR; + } + + for (pos = 1; pos <= cr->chunk_count; ++pos) { +- cr->offset += ngx_rtmp_r32(t->sizes->entries[cr->pos - pos]); ++ cr->offset += ntohl(t->sizes->entries[cr->pos - pos]); + } + + cr->size_pos = cr->pos; +- cr->size = ngx_rtmp_r32(t->sizes->entries[cr->size_pos]); ++ cr->size = ntohl(t->sizes->entries[cr->size_pos]); + + ngx_log_debug4(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek size[%ui/%uD]=%uz", + t->id, cr->size_pos, +- ngx_rtmp_r32(t->sizes->sample_count), ++ ntohl(t->sizes->sample_count), + cr->size); + + return NGX_OK; + } + + if (t->sizes2) { +- if (cr->size_pos >= ngx_rtmp_r32(t->sizes2->sample_count)) { ++ if (cr->size_pos >= ntohl(t->sizes2->sample_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek size2[%ui/%uD] overflow", + t->id, cr->size_pos, +- ngx_rtmp_r32(t->sizes->sample_count)); ++ ntohl(t->sizes->sample_count)); + + return NGX_ERROR; + } +@@ -1744,11 +1744,11 @@ ngx_rtmp_mp4_next_key(ngx_rtmp_session_t + cr->key_pos++; + } + +- if (cr->key_pos >= ngx_rtmp_r32(t->keys->entry_count)) { ++ if (cr->key_pos >= ntohl(t->keys->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui key[%ui/%uD] overflow", + t->id, cr->key_pos, +- ngx_rtmp_r32(t->keys->entry_count)); ++ ntohl(t->keys->entry_count)); + + cr->key = 0; + +@@ -1756,13 +1756,13 @@ ngx_rtmp_mp4_next_key(ngx_rtmp_session_t + } + + ke = &t->keys->entries[cr->key_pos]; +- cr->key = (cr->pos + 1 == ngx_rtmp_r32(*ke)); ++ cr->key = (cr->pos + 1 == ntohl(*ke)); + + ngx_log_debug6(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui key[%ui/%uD][%ui/%uD]=%s", + t->id, cr->key_pos, +- ngx_rtmp_r32(t->keys->entry_count), +- cr->pos, ngx_rtmp_r32(*ke), ++ ntohl(t->keys->entry_count), ++ cr->pos, ntohl(*ke), + cr->key ? "match" : "miss"); + + return NGX_OK; +@@ -1782,27 +1782,27 @@ ngx_rtmp_mp4_seek_key(ngx_rtmp_session_t + return NGX_OK; + } + +- while (cr->key_pos < ngx_rtmp_r32(t->keys->entry_count)) { +- if (ngx_rtmp_r32(t->keys->entries[cr->key_pos]) > cr->pos) { ++ while (cr->key_pos < ntohl(t->keys->entry_count)) { ++ if (ntohl(t->keys->entries[cr->key_pos]) > cr->pos) { + break; + } + + cr->key_pos++; + } + +- if (cr->key_pos >= ngx_rtmp_r32(t->keys->entry_count)) { ++ if (cr->key_pos >= ntohl(t->keys->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek key[%ui/%uD] overflow", + t->id, cr->key_pos, +- ngx_rtmp_r32(t->keys->entry_count)); ++ ntohl(t->keys->entry_count)); + return NGX_OK; + } + + ke = &t->keys->entries[cr->key_pos]; +- /*cr->key = (cr->pos + 1 == ngx_rtmp_r32(*ke));*/ ++ /*cr->key = (cr->pos + 1 == ntohl(*ke));*/ + + /* distance to the next keyframe */ +- dpos = ngx_rtmp_r32(*ke) - cr->pos - 1; ++ dpos = ntohl(*ke) - cr->pos - 1; + cr->key = 1; + + /* TODO: range version needed */ +@@ -1810,13 +1810,13 @@ ngx_rtmp_mp4_seek_key(ngx_rtmp_session_t + ngx_rtmp_mp4_next_time(s, t); + } + +-/* cr->key = (cr->pos + 1 == ngx_rtmp_r32(*ke));*/ ++/* cr->key = (cr->pos + 1 == ntohl(*ke));*/ + + ngx_log_debug6(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek key[%ui/%uD][%ui/%uD]=%s", + t->id, cr->key_pos, +- ngx_rtmp_r32(t->keys->entry_count), +- cr->pos, ngx_rtmp_r32(*ke), ++ ntohl(t->keys->entry_count), ++ cr->pos, ntohl(*ke), + cr->key ? "match" : "miss"); + + return NGX_OK; +@@ -1835,11 +1835,11 @@ ngx_rtmp_mp4_next_delay(ngx_rtmp_session + return NGX_OK; + } + +- if (cr->delay_pos >= ngx_rtmp_r32(t->delays->entry_count)) { ++ if (cr->delay_pos >= ntohl(t->delays->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui delay[%ui/%uD] overflow", + t->id, cr->delay_pos, +- ngx_rtmp_r32(t->delays->entry_count)); ++ ntohl(t->delays->entry_count)); + + return NGX_OK; + } +@@ -1847,29 +1847,29 @@ ngx_rtmp_mp4_next_delay(ngx_rtmp_session + cr->delay_count++; + de = &t->delays->entries[cr->delay_pos]; + +- if (cr->delay_count >= ngx_rtmp_r32(de->sample_count)) { ++ if (cr->delay_count >= ntohl(de->sample_count)) { + cr->delay_pos++; + de++; + cr->delay_count = 0; + } + +- if (cr->delay_pos >= ngx_rtmp_r32(t->delays->entry_count)) { ++ if (cr->delay_pos >= ntohl(t->delays->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui delay[%ui/%uD] overflow", + t->id, cr->delay_pos, +- ngx_rtmp_r32(t->delays->entry_count)); ++ ntohl(t->delays->entry_count)); + + return NGX_OK; + } + +- cr->delay = ngx_rtmp_r32(de->sample_offset); ++ cr->delay = ntohl(de->sample_offset); + + ngx_log_debug6(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui delay[%ui/%uD][%ui/%uD]=%ui", + t->id, cr->delay_pos, +- ngx_rtmp_r32(t->delays->entry_count), ++ ntohl(t->delays->entry_count), + cr->delay_count, +- ngx_rtmp_r32(de->sample_count), cr->delay); ++ ntohl(de->sample_count), cr->delay); + + return NGX_OK; + } +@@ -1891,12 +1891,12 @@ ngx_rtmp_mp4_seek_delay(ngx_rtmp_session + pos = 0; + de = t->delays->entries; + +- while (cr->delay_pos < ngx_rtmp_r32(t->delays->entry_count)) { +- dpos = ngx_rtmp_r32(de->sample_count); ++ while (cr->delay_pos < ntohl(t->delays->entry_count)) { ++ dpos = ntohl(de->sample_count); + + if (pos + dpos > cr->pos) { + cr->delay_count = cr->pos - pos; +- cr->delay = ngx_rtmp_r32(de->sample_offset); ++ cr->delay = ntohl(de->sample_offset); + break; + } + +@@ -1905,11 +1905,11 @@ ngx_rtmp_mp4_seek_delay(ngx_rtmp_session + de++; + } + +- if (cr->delay_pos >= ngx_rtmp_r32(t->delays->entry_count)) { ++ if (cr->delay_pos >= ntohl(t->delays->entry_count)) { + ngx_log_debug3(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek delay[%ui/%uD] overflow", + t->id, cr->delay_pos, +- ngx_rtmp_r32(t->delays->entry_count)); ++ ntohl(t->delays->entry_count)); + + return NGX_OK; + } +@@ -1917,9 +1917,9 @@ ngx_rtmp_mp4_seek_delay(ngx_rtmp_session + ngx_log_debug6(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "mp4: track#%ui seek delay[%ui/%uD][%ui/%uD]=%ui", + t->id, cr->delay_pos, +- ngx_rtmp_r32(t->delays->entry_count), ++ ntohl(t->delays->entry_count), + cr->delay_count, +- ngx_rtmp_r32(de->sample_count), cr->delay); ++ ntohl(de->sample_count), cr->delay); + + return NGX_OK; + } +@@ -2348,7 +2348,7 @@ ngx_rtmp_mp4_init(ngx_rtmp_session_t *s, + return NGX_ERROR; + } + +- size = (size_t) ngx_rtmp_r32(hdr[0]); ++ size = (size_t) ntohl(hdr[0]); + shift = sizeof(hdr); + + if (size == 1) { +@@ -2362,7 +2362,7 @@ ngx_rtmp_mp4_init(ngx_rtmp_session_t *s, + return NGX_ERROR; + } + +- size = (size_t) ngx_rtmp_r64(extended_size); ++ size = (size_t) ntohll(extended_size); + shift += sizeof(extended_size); + + } else if (size == 0) { +--- a/nginx-rtmp/ngx_rtmp_receive.c ++++ b/nginx-rtmp/ngx_rtmp_receive.c +@@ -17,7 +17,6 @@ ngx_rtmp_protocol_message_handler(ngx_rt + ngx_rtmp_header_t *h, ngx_chain_t *in) + { + ngx_buf_t *b; +- u_char *p; + uint32_t val; + uint8_t limit; + +@@ -30,11 +29,7 @@ ngx_rtmp_protocol_message_handler(ngx_rt + return NGX_OK; + } + +- p = (u_char*)&val; +- p[0] = b->pos[3]; +- p[1] = b->pos[2]; +- p[2] = b->pos[1]; +- p[3] = b->pos[0]; ++ val=ntohl(*(uint32_t*)&b->pos[0]); + + switch(h->type) { + case NGX_RTMP_MSG_CHUNK_SIZE: +@@ -88,7 +83,6 @@ ngx_rtmp_user_message_handler(ngx_rtmp_s + ngx_chain_t *in) + { + ngx_buf_t *b; +- u_char *p; + uint16_t evt; + uint32_t val; + +@@ -101,21 +95,13 @@ ngx_rtmp_user_message_handler(ngx_rtmp_s + return NGX_OK; + } + +- p = (u_char*)&evt; +- +- p[0] = b->pos[1]; +- p[1] = b->pos[0]; ++ evt=ntohs(*(uint16_t*)&b->pos[0]); + + ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "RTMP recv user evt %s (%i)", + ngx_rtmp_user_message_type(evt), (ngx_int_t) evt); + +- p = (u_char *) &val; +- +- p[0] = b->pos[5]; +- p[1] = b->pos[4]; +- p[2] = b->pos[3]; +- p[3] = b->pos[2]; ++ val=ntohl(*(uint32_t*)&b->pos[2]); + + switch(evt) { + case NGX_RTMP_USER_STREAM_BEGIN: +@@ -164,12 +150,7 @@ ngx_rtmp_user_message_handler(ngx_rtmp_s + return NGX_OK; + } + +- p = (u_char *) &v.buflen; +- +- p[0] = b->pos[9]; +- p[1] = b->pos[8]; +- p[2] = b->pos[7]; +- p[3] = b->pos[6]; ++ v.buflen=ntohl(*(uint32_t*)&b->pos[6]); + + ngx_log_debug2(NGX_LOG_DEBUG_RTMP, s->connection->log, 0, + "receive: set_buflen msid=%uD buflen=%uD", +@@ -240,18 +221,20 @@ ngx_rtmp_fetch_uint8(ngx_chain_t **in, u + static ngx_int_t + ngx_rtmp_fetch_uint32(ngx_chain_t **in, uint32_t *ret, ngx_int_t n) + { +- u_char *r = (u_char *) ret; ++ u_char b; ++ uint32_t val=0; + ngx_int_t rc; + +- *ret = 0; +- + while (--n >= 0) { +- rc = ngx_rtmp_fetch(in, &r[n]); ++ rc = ngx_rtmp_fetch(in, &b); + if (rc != NGX_OK) { ++ *ret = 0; + return rc; + } ++ val = (val<<8)|b; + } + ++ *ret=val; + return NGX_OK; + } + +--- a/nginx-rtmp/ngx_rtmp_record_module.c ++++ b/nginx-rtmp/ngx_rtmp_record_module.c +@@ -454,7 +454,7 @@ ngx_rtmp_record_node_open(ngx_rtmp_sessi + ngx_err_t err; + ngx_str_t path; + ngx_int_t mode, create_mode; +- u_char buf[8], *p; ++ u_char buf[8]; + off_t file_size; + uint32_t tag_size, mlen, timestamp; + +@@ -551,11 +551,7 @@ ngx_rtmp_record_node_open(ngx_rtmp_sessi + goto done; + } + +- p = (u_char *) &tag_size; +- p[0] = buf[3]; +- p[1] = buf[2]; +- p[2] = buf[1]; +- p[3] = buf[0]; ++ tag_size=ntohl(*(uint32_t*)&buf[0]); + + if (tag_size == 0 || tag_size + 4 > file_size) { + file_size = 0; +@@ -569,11 +565,7 @@ ngx_rtmp_record_node_open(ngx_rtmp_sessi + goto done; + } + +- p = (u_char *) &mlen; +- p[0] = buf[3]; +- p[1] = buf[2]; +- p[2] = buf[1]; +- p[3] = 0; ++ mlen=n3toh4(&buf[1]); + + if (tag_size != mlen + 11) { + ngx_log_error(NGX_LOG_CRIT, s->connection->log, ngx_errno, +@@ -582,11 +574,7 @@ ngx_rtmp_record_node_open(ngx_rtmp_sessi + goto done; + } + +- p = (u_char *) ×tamp; +- p[3] = buf[7]; +- p[0] = buf[6]; +- p[1] = buf[5]; +- p[2] = buf[4]; ++ timestamp=n3toh4(&buf[4])|((uint32_t)buf[7]<<24); + + done: + rctx->file.offset = file_size; +@@ -891,7 +879,7 @@ ngx_rtmp_record_write_frame(ngx_rtmp_ses + ngx_rtmp_header_t *h, ngx_chain_t *in, + ngx_int_t inc_nframes) + { +- u_char hdr[11], *p, *ph; ++ u_char hdr[11], *ph; + uint32_t timestamp, tag_size; + ngx_rtmp_record_app_conf_t *rracf; + +@@ -937,16 +925,10 @@ ngx_rtmp_record_write_frame(ngx_rtmp_ses + + *ph++ = (u_char)h->type; + +- p = (u_char*)&h->mlen; +- *ph++ = p[2]; +- *ph++ = p[1]; +- *ph++ = p[0]; +- +- p = (u_char*)×tamp; +- *ph++ = p[2]; +- *ph++ = p[1]; +- *ph++ = p[0]; +- *ph++ = p[3]; ++ ph = h4ton3(ph, h->mlen); ++ ++ ph = h4ton3(ph, timestamp); ++ *ph++ = (u_char)(timestamp>>24); + + *ph++ = 0; + *ph++ = 0; +@@ -985,12 +967,8 @@ ngx_rtmp_record_write_frame(ngx_rtmp_ses + + /* write tag size */ + ph = hdr; +- p = (u_char*)&tag_size; +- +- *ph++ = p[3]; +- *ph++ = p[2]; +- *ph++ = p[1]; +- *ph++ = p[0]; ++ *(uint32_t*)ph = htonl(tag_size); ++ ph += 4; + + if (ngx_write_file(&rctx->file, hdr, ph - hdr, + rctx->file.offset)