diff options
author | mat <mat@FreeBSD.org> | 2018-01-17 15:59:45 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-01-17 15:59:45 +0800 |
commit | a22855b258063da30cf2b826a739ce89e8c84168 (patch) | |
tree | e598f1ec95a00fc552ac7c4efea17616f3303b81 /dns | |
parent | c52a92eeb9ae1dabb9b03ec7215e0a6d075794e7 (diff) | |
download | freebsd-ports-gnome-a22855b258063da30cf2b826a739ce89e8c84168.tar.gz freebsd-ports-gnome-a22855b258063da30cf2b826a739ce89e8c84168.tar.zst freebsd-ports-gnome-a22855b258063da30cf2b826a739ce89e8c84168.zip |
Update BIND9* to 9.9.11-P1, 9.10.6-P1, 9.11.2-P1 and 9.12.0rc3
MFH: 2018Q1
Security: CVE-2017-3145
Sponsored by: Absolight
Diffstat (limited to 'dns')
-rw-r--r-- | dns/bind910/Makefile | 4 | ||||
-rw-r--r-- | dns/bind910/distinfo | 6 | ||||
-rw-r--r-- | dns/bind910/files/extrapatch-bind-min-override-ttl | 12 | ||||
-rw-r--r-- | dns/bind911/Makefile | 6 | ||||
-rw-r--r-- | dns/bind911/distinfo | 6 | ||||
-rw-r--r-- | dns/bind911/files/extrapatch-bind-min-override-ttl | 12 | ||||
-rw-r--r-- | dns/bind912/Makefile | 4 | ||||
-rw-r--r-- | dns/bind912/distinfo | 6 | ||||
-rw-r--r-- | dns/bind912/files/extrapatch-bind-min-override-ttl | 12 | ||||
-rw-r--r-- | dns/bind99/Makefile | 4 | ||||
-rw-r--r-- | dns/bind99/distinfo | 6 | ||||
-rw-r--r-- | dns/bind99/files/extrapatch-bind-min-override-ttl | 12 |
12 files changed, 45 insertions, 45 deletions
diff --git a/dns/bind910/Makefile b/dns/bind910/Makefile index 0ac7eaa58a7a..c995beec0bc1 100644 --- a/dns/bind910/Makefile +++ b/dns/bind910/Makefile @@ -3,7 +3,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} -PORTREVISION= 7 +PORTREVISION= 0 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMESUFFIX= 910 @@ -19,7 +19,7 @@ DEPRECATED= Going out of support, please migrate to dns/bind911 EXPIRATION_DATE= 2018-06-30 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.10.6 +ISCVERSION= 9.10.6-P1 USES= cpe libedit diff --git a/dns/bind910/distinfo b/dns/bind910/distinfo index e9ee8cb39cb2..8b4cefcbe8b1 100644 --- a/dns/bind910/distinfo +++ b/dns/bind910/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501282039 -SHA256 (bind-9.10.6.tar.gz) = 17bbcd2bd7b1d32f5ba4b30d5dbe8a39bce200079048073d1e0d050fdf47e69d -SIZE (bind-9.10.6.tar.gz) = 9449394 +TIMESTAMP = 1516059365 +SHA256 (bind-9.10.6-P1.tar.gz) = 9b8b4f6ecfc82a491774bf713d8a888b954c427526035eb715544438f36a2334 +SIZE (bind-9.10.6-P1.tar.gz) = 9452495 diff --git a/dns/bind910/files/extrapatch-bind-min-override-ttl b/dns/bind910/files/extrapatch-bind-min-override-ttl index 889e4572219c..907582e3deba 100644 --- a/dns/bind910/files/extrapatch-bind-min-override-ttl +++ b/dns/bind910/files/extrapatch-bind-min-override-ttl @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2017-04-14 03:54:11 UTC +--- bin/named/config.c.orig 2018-01-04 05:35:08 UTC +++ bin/named/config.c @@ -154,6 +154,8 @@ options {\n\ min-roots 2;\n\ @@ -9,7 +9,7 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 0;\n\ ---- bin/named/server.c.orig 2017-04-14 03:54:11 UTC +--- bin/named/server.c.orig 2018-01-04 05:35:08 UTC +++ bin/named/server.c @@ -2890,6 +2890,16 @@ configure_view(dns_view_t *view, dns_vie } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2017-04-14 03:54:11 UTC +--- lib/dns/include/dns/view.h.orig 2018-01-04 05:35:08 UTC +++ lib/dns/include/dns/view.h @@ -151,6 +151,8 @@ struct dns_view { isc_boolean_t requestnsid; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; dns_ttl_t prefetch_trigger; dns_ttl_t prefetch_eligible; ---- lib/dns/resolver.c.orig 2017-04-14 03:54:11 UTC +--- lib/dns/resolver.c.orig 2018-01-04 05:35:08 UTC +++ lib/dns/resolver.c -@@ -5378,6 +5378,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5387,6 +5387,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2017-04-14 03:54:11 UTC +--- lib/isccfg/namedconf.c.orig 2018-01-04 05:35:08 UTC +++ lib/isccfg/namedconf.c @@ -1591,6 +1591,8 @@ view_clauses[] = { #endif diff --git a/dns/bind911/Makefile b/dns/bind911/Makefile index 1daae29a1561..5bee1423b247 100644 --- a/dns/bind911/Makefile +++ b/dns/bind911/Makefile @@ -5,10 +5,10 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} .if defined(BIND_TOOLS_SLAVE) # dns/bind-tools here -PORTREVISION= 2 +PORTREVISION= 0 .else # dns/bind911 here -PORTREVISION= 7 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} @@ -30,7 +30,7 @@ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/COPYRIGHT # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.2 +ISCVERSION= 9.11.2-P1 USES= cpe libedit diff --git a/dns/bind911/distinfo b/dns/bind911/distinfo index 71da50d03ad3..4c6cf9846069 100644 --- a/dns/bind911/distinfo +++ b/dns/bind911/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501282074 -SHA256 (bind-9.11.2.tar.gz) = 7f46ad8620f7c3b0ac375d7a5211b15677708fda84ce25d7aeb7222fe2e3c77a -SIZE (bind-9.11.2.tar.gz) = 9782180 +TIMESTAMP = 1516059868 +SHA256 (bind-9.11.2-P1.tar.gz) = cec31548832fca3f85d95178d4019b7d702039e8595d4c93914feba337df1212 +SIZE (bind-9.11.2-P1.tar.gz) = 9783329 diff --git a/dns/bind911/files/extrapatch-bind-min-override-ttl b/dns/bind911/files/extrapatch-bind-min-override-ttl index d34d9d3a63ab..f3e60ead8667 100644 --- a/dns/bind911/files/extrapatch-bind-min-override-ttl +++ b/dns/bind911/files/extrapatch-bind-min-override-ttl @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2017-07-24 05:36:50 UTC +--- bin/named/config.c.orig 2018-01-04 05:28:11 UTC +++ bin/named/config.c @@ -154,6 +154,8 @@ options {\n\ lame-ttl 600;\n\ @@ -9,7 +9,7 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 90%;\n\ ---- bin/named/server.c.orig 2017-07-24 05:36:50 UTC +--- bin/named/server.c.orig 2018-01-04 05:28:11 UTC +++ bin/named/server.c @@ -3713,6 +3713,16 @@ configure_view(dns_view_t *view, dns_vie } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2017-07-24 05:36:50 UTC +--- lib/dns/include/dns/view.h.orig 2018-01-04 05:28:11 UTC +++ lib/dns/include/dns/view.h @@ -146,6 +146,8 @@ struct dns_view { isc_boolean_t requestnsid; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2017-07-24 05:36:50 UTC +--- lib/dns/resolver.c.orig 2018-01-04 05:28:11 UTC +++ lib/dns/resolver.c -@@ -5439,6 +5439,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5448,6 +5448,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2017-07-24 05:36:50 UTC +--- lib/isccfg/namedconf.c.orig 2018-01-04 05:28:11 UTC +++ lib/isccfg/namedconf.c @@ -1765,6 +1765,8 @@ view_clauses[] = { { "nosit-udp-size", &cfg_type_uint32, CFG_CLAUSEFLAG_OBSOLETE }, diff --git a/dns/bind912/Makefile b/dns/bind912/Makefile index 20aa34432845..3fb7cd19c466 100644 --- a/dns/bind912/Makefile +++ b/dns/bind912/Makefile @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} PORTREVISION= 0 .else # dns/bind912 here -PORTREVISION= 3 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} @@ -30,7 +30,7 @@ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/COPYRIGHT # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.12.0rc1 +ISCVERSION= 9.12.0rc3 USES= cpe libedit diff --git a/dns/bind912/distinfo b/dns/bind912/distinfo index f846bb5d382d..74df6c1a147d 100644 --- a/dns/bind912/distinfo +++ b/dns/bind912/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1513610500 -SHA256 (bind-9.12.0rc1.tar.gz) = 523cd296138baaab9e301173873050ebfee833aac5a495cc34da6ccb7dd820d3 -SIZE (bind-9.12.0rc1.tar.gz) = 9282848 +TIMESTAMP = 1516175610 +SHA256 (bind-9.12.0rc3.tar.gz) = 2e9c35e9292fe0ef0dfbd68a4eba5ee4055e4299c0522e623b1dc31fe085d893 +SIZE (bind-9.12.0rc3.tar.gz) = 9288446 diff --git a/dns/bind912/files/extrapatch-bind-min-override-ttl b/dns/bind912/files/extrapatch-bind-min-override-ttl index d4a2efee305e..38bcd84f023e 100644 --- a/dns/bind912/files/extrapatch-bind-min-override-ttl +++ b/dns/bind912/files/extrapatch-bind-min-override-ttl @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2017-12-06 17:32:49 UTC +--- bin/named/config.c.orig 2018-01-12 19:49:09 UTC +++ bin/named/config.c @@ -176,12 +176,14 @@ options {\n\ max-recursion-queries 75;\n\ @@ -15,7 +15,7 @@ provide-ixfr true;\n\ query-source address *;\n\ query-source-v6 address *;\n\ ---- bin/named/server.c.orig 2017-12-06 17:32:49 UTC +--- bin/named/server.c.orig 2018-01-12 19:49:09 UTC +++ bin/named/server.c @@ -4067,6 +4067,16 @@ configure_view(dns_view_t *view, dns_vie } @@ -34,7 +34,7 @@ result = named_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2017-12-06 17:32:49 UTC +--- lib/dns/include/dns/view.h.orig 2018-01-12 19:49:09 UTC +++ lib/dns/include/dns/view.h @@ -145,6 +145,8 @@ struct dns_view { isc_boolean_t requestnsid; @@ -45,9 +45,9 @@ dns_ttl_t maxncachettl; isc_uint32_t nta_lifetime; isc_uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2017-12-06 17:32:49 UTC +--- lib/dns/resolver.c.orig 2018-01-12 19:49:09 UTC +++ lib/dns/resolver.c -@@ -5748,6 +5748,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5758,6 +5758,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -66,7 +66,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2017-12-06 17:32:49 UTC +--- lib/isccfg/namedconf.c.orig 2018-01-12 19:49:09 UTC +++ lib/isccfg/namedconf.c @@ -1909,6 +1909,8 @@ view_clauses[] = { { "max-acache-size", &cfg_type_sizenodefault, diff --git a/dns/bind99/Makefile b/dns/bind99/Makefile index 9667ab039250..d959bc709e5f 100644 --- a/dns/bind99/Makefile +++ b/dns/bind99/Makefile @@ -3,7 +3,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} -PORTREVISION= 5 +PORTREVISION= 0 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMESUFFIX= 99 @@ -19,7 +19,7 @@ DEPRECATED= Going out of support, please migrate to dns/bind911 EXPIRATION_DATE= 2018-06-30 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.9.11 +ISCVERSION= 9.9.11-P1 USES= cpe libedit diff --git a/dns/bind99/distinfo b/dns/bind99/distinfo index b3bdf767ef2a..2098f8799879 100644 --- a/dns/bind99/distinfo +++ b/dns/bind99/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501282004 -SHA256 (bind-9.9.11.tar.gz) = 995395d540b6dd8eb77d737824f47dc10917c864ba4ab450a703b8c6179dc8ba -SIZE (bind-9.9.11.tar.gz) = 8867109 +TIMESTAMP = 1516059275 +SHA256 (bind-9.9.11-P1.tar.gz) = 40a8dd0eedf44236a77e4009c61daa065447b09461bffddab3b0aefcbf358fa8 +SIZE (bind-9.9.11-P1.tar.gz) = 8868987 diff --git a/dns/bind99/files/extrapatch-bind-min-override-ttl b/dns/bind99/files/extrapatch-bind-min-override-ttl index 59e5f45f58c4..60976d69cd22 100644 --- a/dns/bind99/files/extrapatch-bind-min-override-ttl +++ b/dns/bind99/files/extrapatch-bind-min-override-ttl @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2017-04-14 03:50:56 UTC +--- bin/named/config.c.orig 2018-01-04 05:41:15 UTC +++ bin/named/config.c @@ -141,6 +141,8 @@ options {\n\ min-roots 2;\n\ @@ -9,7 +9,7 @@ max-cache-ttl 604800; /* 1 week */\n\ transfer-format many-answers;\n\ max-cache-size 0;\n\ ---- bin/named/server.c.orig 2017-04-14 03:50:56 UTC +--- bin/named/server.c.orig 2018-01-04 05:41:15 UTC +++ bin/named/server.c @@ -2647,6 +2647,16 @@ configure_view(dns_view_t *view, cfg_obj } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2017-04-14 03:50:56 UTC +--- lib/dns/include/dns/view.h.orig 2018-01-04 05:41:15 UTC +++ lib/dns/include/dns/view.h @@ -148,6 +148,8 @@ struct dns_view { isc_boolean_t provideixfr; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; in_port_t dstport; dns_aclenv_t aclenv; ---- lib/dns/resolver.c.orig 2017-04-14 03:50:56 UTC +--- lib/dns/resolver.c.orig 2018-01-04 05:41:15 UTC +++ lib/dns/resolver.c -@@ -5117,6 +5117,18 @@ cache_name(fetchctx_t *fctx, dns_name_t +@@ -5126,6 +5126,18 @@ cache_name(fetchctx_t *fctx, dns_name_t } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) ---- lib/isccfg/namedconf.c.orig 2017-04-14 03:50:56 UTC +--- lib/isccfg/namedconf.c.orig 2018-01-04 05:41:15 UTC +++ lib/isccfg/namedconf.c @@ -1475,6 +1475,8 @@ view_clauses[] = { { "lame-ttl", &cfg_type_uint32, 0 }, |