s4:provision.py - try to use other addresses than "127.0.0.x" and "::1"
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Sun, 21 Feb 2010 20:30:42 +0000 (21:30 +0100)
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>
Sun, 21 Feb 2010 20:39:47 +0000 (21:39 +0100)
On production systems a user for sure strongly disagrees to use local IP
addresses (how should the server be accessible?). Therefore if the user didn't
specify an IP as provision option and in the "/etc/hosts" file we have at
least one not-local IP which resolves to our hostname use this or one of them.

Notice: if a host has more public IP addresses with the same name assigned the
behaviour is non-deterministic (well, okay - by the entries order it is). But
then the user is invited to specify the host IP manually.

This should address bug #5484.

source4/scripting/python/samba/provision.py

index 1e1bf480f53259e9273a4c8cc1d8a51cbfd4c9cd..900df894843ed3ddb8493e547ca75f0562c6986c 100644 (file)
@@ -1213,13 +1213,21 @@ def provision(setup_dir, message, session_info,
 
     if hostip is None:
         try:
-            hostip = socket.getaddrinfo(names.hostname, None, socket.AF_INET, socket.AI_CANONNAME, socket.IPPROTO_IP)[0][-1][0]
+            for ip in socket.getaddrinfo(names.hostname, None, socket.AF_INET, socket.AI_CANONNAME, socket.IPPROTO_IP):
+                if hostip is None:
+                    hostip = ip[-1][0]
+                if hostip.startswith('127.0.0.') and (not ip[-1][0].startswith('127.0.0.')):
+                    hostip = ip[-1][0]
         except socket.gaierror, (socket.EAI_NODATA, msg):
             hostip = None
 
     if hostip6 is None:
         try:
-            hostip6 = socket.getaddrinfo(names.hostname, None, socket.AF_INET6, socket.AI_CANONNAME, socket.IPPROTO_IP)[0][-1][0]
+            for ip in socket.getaddrinfo(names.hostname, None, socket.AF_INET6, socket.AI_CANONNAME, socket.IPPROTO_IP):
+                if hostip6 is None:
+                    hostip6 = ip[-1][0]
+                if hostip6 == '::1' and ip[-1][0] != '::1':
+                    hostip6 = ip[-1][0]
         except socket.gaierror, (socket.EAI_NODATA, msg): 
             hostip6 = None