99-origin-dns.sh 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. #!/bin/bash -x
  2. # -*- mode: sh; sh-indentation: 2 -*-
  3. # This NetworkManager dispatcher script replicates the functionality of
  4. # NetworkManager's dns=dnsmasq however, rather than hardcoding the listening
  5. # address and /etc/resolv.conf to 127.0.0.1 it pulls the IP address from the
  6. # interface that owns the default route. This enables us to then configure pods
  7. # to use this IP address as their only resolver, where as using 127.0.0.1 inside
  8. # a pod would fail.
  9. #
  10. # To use this,
  11. # - If this host is also a master, reconfigure master dnsConfig to listen on
  12. # 8053 to avoid conflicts on port 53 and open port 8053 in the firewall
  13. # - Drop this script in /etc/NetworkManager/dispatcher.d/
  14. # - systemctl restart NetworkManager
  15. # - Configure node-config.yaml to set dnsIP: to the ip address of this
  16. # node
  17. #
  18. # Test it:
  19. # host kubernetes.default.svc.cluster.local
  20. # host google.com
  21. #
  22. # TODO: I think this would be easy to add as a config option in NetworkManager
  23. # natively, look at hacking that up
  24. cd /etc/sysconfig/network-scripts
  25. . ./network-functions
  26. [ -f ../network ] && . ../network
  27. if [[ $2 =~ ^(up|dhcp4-change|dhcp6-change)$ ]]; then
  28. # If the origin-upstream-dns config file changed we need to restart
  29. NEEDS_RESTART=0
  30. UPSTREAM_DNS='/etc/dnsmasq.d/origin-upstream-dns.conf'
  31. # We'll regenerate the dnsmasq origin config in a temp file first
  32. UPSTREAM_DNS_TMP=`mktemp`
  33. UPSTREAM_DNS_TMP_SORTED=`mktemp`
  34. CURRENT_UPSTREAM_DNS_SORTED=`mktemp`
  35. NEW_RESOLV_CONF=`mktemp`
  36. NEW_NODE_RESOLV_CONF=`mktemp`
  37. ######################################################################
  38. # couldn't find an existing method to determine if the interface owns the
  39. # default route
  40. def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }')
  41. def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}')
  42. def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}')
  43. if [[ ${DEVICE_IFACE} == ${def_route_int} ]]; then
  44. if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then
  45. cat << EOF > /etc/dnsmasq.d/origin-dns.conf
  46. no-resolv
  47. domain-needed
  48. server=/cluster.local/172.30.0.1
  49. server=/30.172.in-addr.arpa/172.30.0.1
  50. enable-dbus
  51. dns-forward-max=5000
  52. cache-size=5000
  53. EOF
  54. # New config file, must restart
  55. NEEDS_RESTART=1
  56. fi
  57. # If network manager doesn't know about the nameservers then the best
  58. # we can do is grab them from /etc/resolv.conf but only if we've got no
  59. # watermark
  60. if ! grep -q '99-origin-dns.sh' /etc/resolv.conf; then
  61. if [[ -z "${IP4_NAMESERVERS}" || "${IP4_NAMESERVERS}" == "${def_route_ip}" ]]; then
  62. IP4_NAMESERVERS=`grep '^nameserver ' /etc/resolv.conf | awk '{ print $2 }'`
  63. fi
  64. ######################################################################
  65. # Write out default nameservers for /etc/dnsmasq.d/origin-upstream-dns.conf
  66. # and /etc/origin/node/resolv.conf in their respective formats
  67. for ns in ${IP4_NAMESERVERS}; do
  68. if [[ ! -z $ns ]]; then
  69. echo "server=${ns}" >> $UPSTREAM_DNS_TMP
  70. echo "nameserver ${ns}" >> $NEW_NODE_RESOLV_CONF
  71. fi
  72. done
  73. # Sort it in case DNS servers arrived in a different order
  74. sort $UPSTREAM_DNS_TMP > $UPSTREAM_DNS_TMP_SORTED
  75. sort $UPSTREAM_DNS > $CURRENT_UPSTREAM_DNS_SORTED
  76. # Compare to the current config file (sorted)
  77. NEW_DNS_SUM=`md5sum ${UPSTREAM_DNS_TMP_SORTED} | awk '{print $1}'`
  78. CURRENT_DNS_SUM=`md5sum ${CURRENT_UPSTREAM_DNS_SORTED} | awk '{print $1}'`
  79. if [ "${NEW_DNS_SUM}" != "${CURRENT_DNS_SUM}" ]; then
  80. # DNS has changed, copy the temp file to the proper location (-Z
  81. # sets default selinux context) and set the restart flag
  82. cp -Z $UPSTREAM_DNS_TMP $UPSTREAM_DNS
  83. NEEDS_RESTART=1
  84. fi
  85. # compare /etc/origin/node/resolv.conf checksum and replace it if different
  86. NEW_NODE_RESOLV_CONF_MD5=`md5sum ${NEW_NODE_RESOLV_CONF}`
  87. OLD_NODE_RESOLV_CONF_MD5=`md5sum /etc/origin/node/resolv.conf`
  88. if [ "${NEW_NODE_RESOLV_CONF_MD5}" != "${OLD_NODE_RESOLV_CONF_MD5}" ]; then
  89. cp -Z $NEW_NODE_RESOLV_CONF /etc/origin/node/resolv.conf
  90. fi
  91. fi
  92. if ! `systemctl -q is-active dnsmasq.service`; then
  93. NEEDS_RESTART=1
  94. fi
  95. ######################################################################
  96. if [ "${NEEDS_RESTART}" -eq "1" ]; then
  97. systemctl restart dnsmasq
  98. fi
  99. # Only if dnsmasq is running properly make it our only nameserver and place
  100. # a watermark on /etc/resolv.conf
  101. if `systemctl -q is-active dnsmasq.service`; then
  102. if ! grep -q '99-origin-dns.sh' /etc/resolv.conf; then
  103. echo "# nameserver updated by /etc/NetworkManager/dispatcher.d/99-origin-dns.sh" >> ${NEW_RESOLV_CONF}
  104. fi
  105. sed -e '/^nameserver.*$/d' /etc/resolv.conf >> ${NEW_RESOLV_CONF}
  106. echo "nameserver "${def_route_ip}"" >> ${NEW_RESOLV_CONF}
  107. if ! grep -qw search ${NEW_RESOLV_CONF}; then
  108. echo 'search cluster.local' >> ${NEW_RESOLV_CONF}
  109. elif ! grep -q 'search.*cluster.local' ${NEW_RESOLV_CONF}; then
  110. sed -i '/^search/ s/$/ cluster.local/' ${NEW_RESOLV_CONF}
  111. fi
  112. cp -Z ${NEW_RESOLV_CONF} /etc/resolv.conf
  113. fi
  114. fi
  115. # Clean up after yourself
  116. rm -f $UPSTREAM_DNS_TMP $UPSTREAM_DNS_TMP_SORTED $CURRENT_UPSTREAM_DNS_SORTED $NEW_RESOLV_CONF
  117. fi