Add dns/go-geodns: DNS server with per-client targeted responses

GeoDNS is a DNS server with per-client targeted responses. It powers the NTP
Pool system and other similar services.

WWW: https://github.com/abh/geodns

PR:		227492
Submitted by:	Vinicius Zavam <egypcio@googlemail.com>
Differential Revision:	https://reviews.freebsd.org/D15056
This commit is contained in:
Danilo G. Baio 2018-06-07 14:18:54 +00:00
parent db130278d8
commit e4129989d1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=471924
9 changed files with 193 additions and 2 deletions

2
GIDs
View File

@ -793,7 +793,7 @@ chronyd:*:849:
# free: 850
# free: 851
# free: 852
# free: 853
_geodns:*:853:
# free: 854
# free: 855
# free: 856

2
UIDs
View File

@ -799,7 +799,7 @@ chronyd:*:849:849::0:0:chronyd user:/nonexistent:/usr/sbin/nologin
# free: 850
# free: 851
# free: 852
# free: 853
_geodns:*:853:853::0:0:GeoDNS User:/var/empty:/usr/sbin/nologin
# free: 854
# free: 855
# free: 856

View File

@ -78,6 +78,7 @@
SUBDIR += gen6dns
SUBDIR += getdns
SUBDIR += ghtool
SUBDIR += go-geodns
SUBDIR += hesiod
SUBDIR += hostdb
SUBDIR += hs-dns

44
dns/go-geodns/Makefile Normal file
View File

@ -0,0 +1,44 @@
# $FreeBSD$
PORTNAME= geodns
PORTVERSION= 2.7.0
CATEGORIES= dns net ipv6
PKGNAMEPREFIX= go-
MAINTAINER= egypcio@googlemail.com
COMMENT= DNS server with per-client targeted responses
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= GeoIP>=1.6.12:net/GeoIP
RUN_DEPENDS= GeoIP>=1.6.12:net/GeoIP
USES= go pkgconfig
USE_RC_SUBR= geodns
USE_GITHUB= yes
GH_ACCOUNT= abh
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
PORTEXAMPLES= *.json
USERS= _geodns
GROUPS= _geodns
PLIST_SUB= USER="${USERS}" GROUP="${GROUPS}"
SUB_LIST= USER="${USERS}" GROUP="${GROUPS}"
SUB_FILES= pkg-message
OPTIONS_DEFINE= EXAMPLES
do-install:
${MKDIR} ${STAGEDIR}/${ETCDIR}
${INSTALL_PROGRAM} ${WRKDIR}/bin/geodns ${STAGEDIR}${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/dns/geodns.conf.sample ${STAGEDIR}${PREFIX}/etc
do-install-EXAMPLES-on:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/dns/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>

3
dns/go-geodns/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1523611997
SHA256 (abh-geodns-2.7.0_GH0.tar.gz) = 73014bf559611994b007f65bed238e49cae3e580e592abc55c787e58c2706789
SIZE (abh-geodns-2.7.0_GH0.tar.gz) = 367646

View File

@ -0,0 +1,123 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: geodns
# REQUIRE: cleanvar SERVERS
#
# Options to configure geodns via /etc/rc.conf:
#
# geodns_enable (bool):
# Enable service on boot.
# Default: NO
#
# geodns_conf (str):
# Config file to use.
# Default: %%PREFIX%%/etc/geodns.conf
#
# geodns_addr (str):
# Specify which IP address to listen to.
# Default: [::], 0.0.0.0
#
# geodns_port (str):
# Specify which port to listen on.
# Default: 5353
#
# geodns_suexec (bool):
# Run geodns as root.
# Default: NO
#
# geodns_uid (str):
# User to run geodns as.
# Default: %%USER%%
#
# geodns_zones (str):
# Zone files directory.
# Default: %%ETCDIR%%
#
# geodns_mac_portacl_enable (bool):
# Load mac_portacl module (network port access control policy).
# Default: NO
#
. /etc/rc.subr
name="geodns"
rcvar="geodns_enable"
pidfile="/var/run/geodns.pid"
procname="%%PREFIX%%/sbin/geodns"
load_rc_config $name
: ${geodns_enable:="NO"}
: ${geodns_conf:="%%PREFIX%%/etc/geodns.conf"}
: ${geodns_addr:=""}
: ${geodns_port:="5353"}
: ${geodns_suexec:="NO"}
: ${geodns_uid:="%%USER%%"}
: ${geodns_zones:="%%ETCDIR%%"}
: ${geodns_mac_portacl_enable:="NO"}
checkyesno geodns_suexec && geodns_uid="root"
command="/usr/sbin/daemon"
command_args="-p ${pidfile} -t ${name} -u ${geodns_uid} -f ${procname} -configfile ${geodns_conf} -config ${geodns_zones} -port ${geodns_port}"
if [ ! -z ${geodns_addr} ]; then
command_args="${command_args} -interface ${geodns_addr}"
fi
start_precmd="geodns_precmd"
geodns_precmd() {
local reservedlow reservedhigh rules_current rules_geodns rport ruid
if checkyesno geodns_mac_portacl_enable ; then
# Check and load mac_portacl module
if ! kldstat -m mac_portacl >/dev/null 2>&1 ; then
if ! kldload mac_portacl ; then
warn "Could not load mac_portacl module."
return 1
fi
fi
# Check and add mac_portacl rules
ruid=$(id -u $geodns_uid)
rport=$geodns_port #smaller variable
rules_current=$(sysctl -n security.mac.portacl.rules)
rules_geodns="uid:${ruid}:tcp:${rport},uid:${ruid}:udp:${rport}"
if [ ! $rules_current = "" ]; then
if ! echo $rules_current | grep "$rules_geodns" >/dev/null 2>&1 ; then
rules_current="${rules_current},${rules_geodns}"
if ! sysctl security.mac.portacl.rules="$rules_current" >/dev/null 2>&1 ; then
warn "Could not insert mac_portacl rules."
return 1
fi
fi
elif ! sysctl security.mac.portacl.rules=$rules_geodns >/dev/null 2>&1 ; then
warn "Could not insert mac_portacl rules."
return 1
fi
# Check and disable net.inet.ip.portrange.* control
reservedlow=$(sysctl -n net.inet.ip.portrange.reservedlow)
reservedhigh=$(sysctl -n net.inet.ip.portrange.reservedhigh)
if [ ! $reservedlow -eq 0 ]; then
if ! sysctl net.inet.ip.portrange.reservedlow=0 >/dev/null 2>&1 ; then
warn "Could not change net.inet.ip.portrange.reservedlow."
return 1
fi
fi
if [ ! $reservedhigh -eq 0 ]; then
if ! sysctl net.inet.ip.portrange.reservedhigh=0 >/dev/null 2>&1 ; then
warn "Could not change net.inet.ip.portrange.reservedhigh."
return 1
fi
fi
fi # geodns_mac_portacl_enable
}
run_rc_command $1

View File

@ -0,0 +1,13 @@
======================================================================
GeoDNS is written in Go and therefore isn't capable of dropping privileges
after binding to a low port on FreeBSD.
By default, this port's daemon will listen on port 5353 (TCP/UDP) as the
%%USER%% user.
It's possible to bind it and listen on port 53 (TCP/UDP) with mac_portacl(4)
kernel module (network port access control policy). For this add
geodns_mac_portacl_enable=YES and geodns_port=53 in your rc.conf. The GeoDNS
startup script will load mac_portacl and add a rule where %%USER%% user will
be able to bind on port 53 (TCP/UDP).
======================================================================

4
dns/go-geodns/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
GeoDNS is a DNS server with per-client targeted responses. It powers the NTP
Pool system and other similar services.
WWW: https://github.com/abh/geodns

3
dns/go-geodns/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
@dir(%%USER%%,%%GROUP%%) %%ETCDIR%%
@sample etc/geodns.conf.sample
sbin/geodns