Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 May 2017 19:22:57 +0000 (UTC)
From:      Dmitry Sivachenko <demon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r441193 - in head/net/haproxy: . files
Message-ID:  <201705181922.v4IJMvV3087342@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: demon
Date: Thu May 18 19:22:57 2017
New Revision: 441193
URL: https://svnweb.freebsd.org/changeset/ports/441193

Log:
  Add a patch from upstream to fix haproxy operations when dynamic dns
  resolvers are used.
  
  PR:		219379
  Submitted by:	jimp@pfsense.org

Added:
  head/net/haproxy/files/patch-fix-dns   (contents, props changed)
Modified:
  head/net/haproxy/Makefile

Modified: head/net/haproxy/Makefile
==============================================================================
--- head/net/haproxy/Makefile	Thu May 18 19:03:23 2017	(r441192)
+++ head/net/haproxy/Makefile	Thu May 18 19:22:57 2017	(r441193)
@@ -3,7 +3,7 @@
 
 PORTNAME=	haproxy
 PORTVERSION=	1.7.5
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net www
 MASTER_SITES=	http://www.haproxy.org/download/1.7/src/
 DISTFILES=	${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}

Added: head/net/haproxy/files/patch-fix-dns
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/haproxy/files/patch-fix-dns	Thu May 18 19:22:57 2017	(r441193)
@@ -0,0 +1,33 @@
+From: Frédéric Lécaille <flecaille@haproxy.com>
+Date: Fri, 12 May 2017 07:57:15 +0000 (+0200)
+Subject: BUG/MAJOR: dns: Broken kqueue events handling (BSD systems).
+X-Git-Url: http://git.haproxy.org/?p=haproxy.git;a=commitdiff_plain;h=64920538fc19f3c7f94dfa1e84a9a6569b8c3d37
+
+BUG/MAJOR: dns: Broken kqueue events handling (BSD systems).
+
+Some DNS related network sockets were closed without unregistering their file
+descriptors from their underlying kqueue event sets. This patch replaces calls to
+close() by fd_delete() calls to that to delete such events attached to DNS
+network sockets from the kqueue before closing the sockets.
+
+The bug was introduced by commit 26c6eb8 ("BUG/MAJOR: dns: restart sockets
+after fork()") which was backported in 1.7 so this fix has to be backported
+there as well.
+
+Thanks to Jim Pingle who reported it and indicated the faulty commit, and
+to Lukas Tribus for the trace showing the bad file descriptor.
+---
+
+diff --git a/src/dns.c b/src/dns.c
+index a118598..cb0a9a9 100644
+--- src/dns.c
++++ src/dns.c
+@@ -1004,7 +1004,7 @@ int dns_init_resolvers(int close_socket)
+ 
+ 			if (close_socket == 1) {
+ 				if (curnameserver->dgram) {
+-					close(curnameserver->dgram->t.sock.fd);
++					fd_delete(curnameserver->dgram->t.sock.fd);
+ 					memset(curnameserver->dgram, '\0', sizeof(*dgram));
+ 					dgram = curnameserver->dgram;
+ 				}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705181922.v4IJMvV3087342>