From: Thomas Heil Date: Sun, 5 May 2013 20:53:50 +0000 (+0000) Subject: haproxy: - add health check fix X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=87bd90abc9af93e2cec5e7a5743a6e2260144a1c;p=openwrt%2Fsvn-archive%2Fpackages.git haproxy: - add health check fix SVN-Revision: 36551 --- diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 87d457896..bc6f805b1 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=haproxy PKG_VERSION:=1.4.23 -PKG_RELEASE:=03 +PKG_RELEASE:=04 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://haproxy.1wt.eu/download/1.4/src diff --git a/net/haproxy/patches/0002-BUG-MEDIUM-checks-disable-TCP-quickack-when-pure-TCP.patch b/net/haproxy/patches/0002-BUG-MEDIUM-checks-disable-TCP-quickack-when-pure-TCP.patch new file mode 100644 index 000000000..35108435f --- /dev/null +++ b/net/haproxy/patches/0002-BUG-MEDIUM-checks-disable-TCP-quickack-when-pure-TCP.patch @@ -0,0 +1,45 @@ +From 1181ad3ea9d73908b0238702032eccaeb8834a1a Mon Sep 17 00:00:00 2001 +From: Willy Tarreau +Date: Fri, 26 Apr 2013 11:43:56 +0200 +Subject: [PATCH 2/2] BUG/MEDIUM: checks: disable TCP quickack when pure TCP + checks are used +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Cyril Bonté reported an issue with some services when pure port probes are +used since 1.4.23, because of the RST which is sent and sometimes caught by +the checked service. The result is that the service detects an error and may +sometimes log this error or complain about it. This issue does not appear +when "option tcp-smart-connect" is set. + +So we now perform exactly like 1.5 with port probes, which means that we set +the TCP quickack mode on the socket before connecting, so that the final ACK +is never sent. So the sequence is now a clean SYN-SYN/ACK-RST which never +wakes the application up and that only checks that the port is open. +--- + src/checks.c | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/src/checks.c b/src/checks.c +index e586e4c..9813914 100644 +--- a/src/checks.c ++++ b/src/checks.c +@@ -1388,8 +1388,13 @@ struct task *process_chk(struct task *t) + /* disabling tcp quick ack now allows + * the request to leave the machine with + * the first ACK. ++ * We also want to do this to perform a ++ * SYN-SYN/ACK-RST sequence when raw TCP ++ * checks are configured. + */ +- if (s->proxy->options2 & PR_O2_SMARTCON) ++ if ((s->proxy->options2 & PR_O2_SMARTCON) || ++ (!(s->proxy->options & (PR_O_HTTP_CHK|PR_O_SMTP_CHK)) && ++ !(s->proxy->options2 & (PR_O2_SSL3_CHK|PR_O2_MYSQL_CHK|PR_O2_LDAP_CHK)))) + setsockopt(fd, IPPROTO_TCP, TCP_QUICKACK, (char *) &zero, sizeof(zero)); + #endif + if ((connect(fd, (struct sockaddr *)&sa, sizeof(sa)) != -1) || (errno == EINPROGRESS)) { +-- +1.8.1.5 +