| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | package etcd
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 	"log"
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 	"net"
 | 
					
						
							|  |  |  | 	"strconv"
 | 
					
						
							|  |  |  | 	"strings"
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/middleware/etcd/msg"
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/middleware/proxy"
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/miekg/dns"
 | 
					
						
							|  |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-23 09:14:12 +01:00
										 |  |  | // UpdateStubZones checks etcd for an update on the stubzones.
 | 
					
						
							| 
									
										
										
										
											2016-08-08 19:18:55 -07:00
										 |  |  | func (e *Etcd) UpdateStubZones() {
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	go func() {
 | 
					
						
							|  |  |  | 		for {
 | 
					
						
							|  |  |  | 			e.updateStubZones()
 | 
					
						
							|  |  |  | 			time.Sleep(15 * time.Second)
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	}()
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 10:32:12 +00:00
										 |  |  | // Look in .../dns/stub/<zone>/xx for msg.Services. Loop through them
 | 
					
						
							|  |  |  | // extract <zone> and add them as forwarders (ip:port-combos) for
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | // the stub zones. Only numeric (i.e. IP address) hosts are used.
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | // Only the first zone configured on e is used for the lookup.
 | 
					
						
							|  |  |  | func (e *Etcd) updateStubZones() {
 | 
					
						
							|  |  |  | 	zone := e.Zones[0]
 | 
					
						
							|  |  |  | 	services, err := e.Records(stubDomain+"."+zone, false)
 | 
					
						
							|  |  |  | 	if err != nil {
 | 
					
						
							|  |  |  | 		return
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	stubmap := make(map[string]proxy.Proxy)
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 	// track the nameservers on a per domain basis, but allow a list on the domain.
 | 
					
						
							|  |  |  | 	nameservers := map[string][]string{}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | Services:
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 	for _, serv := range services {
 | 
					
						
							|  |  |  | 		if serv.Port == 0 {
 | 
					
						
							|  |  |  | 			serv.Port = 53
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 		ip := net.ParseIP(serv.Host)
 | 
					
						
							|  |  |  | 		if ip == nil {
 | 
					
						
							|  |  |  | 			log.Printf("[WARNING] Non IP address stub nameserver: %s", serv.Host)
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 			continue
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-23 09:16:57 +01:00
										 |  |  | 		domain := msg.Domain(serv.Key)
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 		labels := dns.SplitDomainName(domain)
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 		// If the remaining name equals any of the zones we have, we ignore it.
 | 
					
						
							|  |  |  | 		for _, z := range e.Zones {
 | 
					
						
							|  |  |  | 			// Chop of left most label, because that is used as the nameserver place holder
 | 
					
						
							|  |  |  | 			// and drop the right most labels that belong to zone.
 | 
					
						
							|  |  |  | 			// We must *also* chop of dns.stub. which means cutting two more labels.
 | 
					
						
							|  |  |  | 			domain = dns.Fqdn(strings.Join(labels[1:len(labels)-dns.CountLabel(z)-2], "."))
 | 
					
						
							|  |  |  | 			if domain == z {
 | 
					
						
							|  |  |  | 				log.Printf("[WARNING] Skipping nameserver for domain we are authoritative for: %s", domain)
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | 				continue Services
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 			}
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | 		nameservers[domain] = append(nameservers[domain], net.JoinHostPort(serv.Host, strconv.Itoa(serv.Port)))
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-08-14 12:57:49 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 	for domain, nss := range nameservers {
 | 
					
						
							| 
									
										
										
										
											2017-01-15 08:12:58 +00:00
										 |  |  | 		stubmap[domain] = proxy.NewLookup(nss)
 | 
					
						
							| 
									
										
										
										
											2016-04-12 21:30:08 +01:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	// atomic swap (at least that's what we hope it is)
 | 
					
						
							|  |  |  | 	if len(stubmap) > 0 {
 | 
					
						
							|  |  |  | 		e.Stubmap = &stubmap
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2016-03-25 20:26:42 +00:00
										 |  |  | 	return
 | 
					
						
							| 
									
										
										
										
											2016-03-24 08:22:24 +00:00
										 |  |  | }
 |