summaryrefslogtreecommitdiffstats
path: root/contrib/openresolv/resolvconf.in
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/openresolv/resolvconf.in')
-rw-r--r--contrib/openresolv/resolvconf.in28
1 files changed, 24 insertions, 4 deletions
diff --git a/contrib/openresolv/resolvconf.in b/contrib/openresolv/resolvconf.in
index a946ed8..829321e 100644
--- a/contrib/openresolv/resolvconf.in
+++ b/contrib/openresolv/resolvconf.in
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (c) 2007-2015 Roy Marples
+# Copyright (c) 2007-2016 Roy Marples
# All rights reserved
# Redistribution and use in source and binary forms, with or without
@@ -55,6 +55,7 @@ METRICDIR="$VARDIR/metrics"
PRIVATEDIR="$VARDIR/private"
EXCLUSIVEDIR="$VARDIR/exclusive"
LOCKDIR="$VARDIR/lock"
+_PWD="$PWD"
warn()
{
@@ -119,6 +120,21 @@ echo_resolv()
IFS="$OIFS"
}
+# Strip any trailing dot from each name as a FQDN does not belong
+# in resolv.conf(5)
+# If you think otherwise, capture a DNS trace and you'll see libc
+# will strip it regardless.
+# This also solves setting up duplicate zones in our subscribers.
+strip_trailing_dots()
+{
+ local n=
+
+ for n; do
+ printf "%s" "${n%.}"
+ done
+ printf "\n"
+}
+
# Parse resolv.conf's and make variables
# for domain name servers, search name servers and global nameservers
parse_resolv()
@@ -162,14 +178,14 @@ parse_resolv()
$islocal || ns="$ns${line#* } "
;;
"domain "*)
+ search="$(strip_trailing_dots ${line#* })"
if [ -z "$domain" ]; then
- domain="${line#* }"
+ domain="$search"
echo "DOMAIN=\"$domain\""
fi
- search="${line#* }"
;;
"search "*)
- search="${line#* }"
+ search="$(strip_trailing_dots ${line#* })"
;;
*)
[ -n "$line" ] && continue
@@ -752,6 +768,10 @@ eval "$(make_vars)"
export RESOLVCONF DOMAINS SEARCH NAMESERVERS LOCALNAMESERVERS
: ${list_resolv:=list_resolv -l}
retval=0
+
+# Run scripts in the same directory resolvconf is run from
+# in case any scripts accidently dump files in the wrong place.
+cd "$_PWD"
for script in "$LIBEXECDIR"/*; do
if [ -f "$script" ]; then
eval script_enabled="\$${script##*/}"
OpenPOWER on IntegriCloud