| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | package kubernetes | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"net" | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/caddyserver/caddy" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/core/dnsserver" | 
					
						
							| 
									
										
										
										
											2017-09-29 15:58:50 -04:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | // boundIPs returns the list of non-loopback IPs that CoreDNS is bound to | 
					
						
							|  |  |  | func boundIPs(c *caddy.Controller) (ips []net.IP) { | 
					
						
							|  |  |  | 	conf := dnsserver.GetConfig(c) | 
					
						
							|  |  |  | 	hosts := conf.ListenHosts | 
					
						
							|  |  |  | 	if hosts == nil || hosts[0] == "" { | 
					
						
							|  |  |  | 		hosts = nil | 
					
						
							|  |  |  | 		addrs, err := net.InterfaceAddrs() | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		for _, addr := range addrs { | 
					
						
							|  |  |  | 			hosts = append(hosts, addr.String()) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 	for _, host := range hosts { | 
					
						
							|  |  |  | 		ip, _, _ := net.ParseCIDR(host) | 
					
						
							| 
									
										
										
										
											2019-08-23 12:54:06 -04:00
										 |  |  | 		ip4 := ip.To4() | 
					
						
							|  |  |  | 		if ip4 != nil && !ip4.IsLoopback() { | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 			ips = append(ips, ip4) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2019-08-23 12:54:06 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		ip6 := ip.To16() | 
					
						
							|  |  |  | 		if ip6 != nil && !ip6.IsLoopback() { | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 			ips = append(ips, ip6) | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 	return ips | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 14:41:51 -07:00
										 |  |  | // LocalNodeName is exclusively used in federation plugin, will be deprecated later. | 
					
						
							|  |  |  | func (k *Kubernetes) LocalNodeName() string { | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 	if len(k.localIPs) == 0 { | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 		return "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 09:07:55 -04:00
										 |  |  | 	// Find fist endpoint matching any localIP | 
					
						
							|  |  |  | 	for _, localIP := range k.localIPs { | 
					
						
							|  |  |  | 		for _, ep := range k.APIConn.EpIndexReverse(localIP.String()) { | 
					
						
							|  |  |  | 			for _, eps := range ep.Subsets { | 
					
						
							|  |  |  | 				for _, addr := range eps.Addresses { | 
					
						
							|  |  |  | 					if localIP.Equal(net.ParseIP(addr.IP)) { | 
					
						
							|  |  |  | 						return addr.NodeName | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-10-11 21:59:50 +01:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-08-18 14:45:20 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return "" | 
					
						
							|  |  |  | } |