Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Jun 2019 12:43:14 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503379 - in head/dns/bind914: . files
Message-ID:  <201906031243.x53ChErT086194@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Mon Jun  3 12:43:14 2019
New Revision: 503379
URL: https://svnweb.freebsd.org/changeset/ports/503379

Log:
  Fix a possible race between udp dispatch and socket code.
  
  PR:		237640
  Obtained from:	https://gitlab.isc.org/isc-projects/bind9/merge_requests/1992
  MFH:		2019Q2

Added:
  head/dns/bind914/files/patch-lib_isc_unix_socket.c   (contents, props changed)
Modified:
  head/dns/bind914/Makefile   (contents, props changed)

Modified: head/dns/bind914/Makefile
==============================================================================
--- head/dns/bind914/Makefile	Mon Jun  3 12:24:25 2019	(r503378)
+++ head/dns/bind914/Makefile	Mon Jun  3 12:43:14 2019	(r503379)
@@ -8,7 +8,7 @@ PORTVERSION=	${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc
 PORTREVISION=	0
 .else
 # dns/bind914 here
-PORTREVISION=	0
+PORTREVISION=	1
 .endif
 CATEGORIES=	dns net ipv6
 MASTER_SITES=	ISC/bind9/${ISCVERSION}

Added: head/dns/bind914/files/patch-lib_isc_unix_socket.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/bind914/files/patch-lib_isc_unix_socket.c	Mon Jun  3 12:43:14 2019	(r503379)
@@ -0,0 +1,35 @@
+From e517c18d98c248e891558ce5194e3663d244f956 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Witold=20Kr=C4=99cicki?= <wpk@isc.org>
+Date: Fri, 31 May 2019 10:40:52 +0200
+Subject: [PATCH 1/2] Fix a possible race between udp dispatch and socket code
+
+There's a small possibility of race between udp dispatcher and
+socket code - socket code can still hold internal reference to a
+socket while dispatcher calls isc_socket_open, which can cause
+an assertion failure. Fix it by relaxing the assertion test, and
+instead simply locking the socket in isc_socket_open.
+
+--- lib/isc/unix/socket.c.orig	2019-05-10 04:51:34 UTC
++++ lib/isc/unix/socket.c
+@@ -2598,15 +2598,16 @@ isc_socket_open(isc_socket_t *sock0) {
+ 
+ 	REQUIRE(VALID_SOCKET(sock));
+ 
+-	REQUIRE(isc_refcount_current(&sock->references) == 1);
+-	/*
+-	 * We don't need to retain the lock hereafter, since no one else has
+-	 * this socket.
+-	 */
++	LOCK(&sock->lock);
++
++	REQUIRE(isc_refcount_current(&sock->references) >= 1);
+ 	REQUIRE(sock->fd == -1);
+ 	REQUIRE(sock->threadid == -1);
+ 
+ 	result = opensocket(sock->manager, sock, NULL);
++
++	UNLOCK(&sock->lock);
++
+ 	if (result != ISC_R_SUCCESS) {
+ 		sock->fd = -1;
+ 	} else {



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