@@ -657,46 +657,46 @@ public String getCanonicalHostName() {
657
657
*/
658
658
private static String getHostFromNameService (InetAddress addr , boolean check ) {
659
659
String host = null ;
660
- try {
661
- // first lookup the hostname
662
- host = nameService .getHostByAddr (addr .getAddress ());
663
-
664
- /* check to see if calling code is allowed to know
665
- * the hostname for this IP address, ie, connect to the host
666
- */
667
- if (check ) {
668
- @ SuppressWarnings ("removal" )
669
- SecurityManager sec = System .getSecurityManager ();
670
- if (sec != null ) {
671
- sec .checkConnect (host , -1 );
672
- }
660
+ try {
661
+ // first lookup the hostname
662
+ host = nameService .getHostByAddr (addr .getAddress ());
663
+
664
+ /* check to see if calling code is allowed to know
665
+ * the hostname for this IP address, ie, connect to the host
666
+ */
667
+ if (check ) {
668
+ @ SuppressWarnings ("removal" )
669
+ SecurityManager sec = System .getSecurityManager ();
670
+ if (sec != null ) {
671
+ sec .checkConnect (host , -1 );
673
672
}
673
+ }
674
674
675
- /* now get all the IP addresses for this hostname,
676
- * and make sure one of them matches the original IP
677
- * address. We do this to try and prevent spoofing.
678
- */
675
+ /* now get all the IP addresses for this hostname,
676
+ * and make sure one of them matches the original IP
677
+ * address. We do this to try and prevent spoofing.
678
+ */
679
679
680
- InetAddress [] arr = InetAddress .getAllByName0 (host , check );
681
- boolean ok = false ;
680
+ InetAddress [] arr = InetAddress .getAllByName0 (host , check );
681
+ boolean ok = false ;
682
682
683
- if (arr != null ) {
684
- for (int i = 0 ; !ok && i < arr .length ; i ++) {
685
- ok = addr .equals (arr [i ]);
686
- }
683
+ if (arr != null ) {
684
+ for (int i = 0 ; !ok && i < arr .length ; i ++) {
685
+ ok = addr .equals (arr [i ]);
687
686
}
687
+ }
688
688
689
- //XXX: if it looks a spoof just return the address?
690
- if (!ok ) {
691
- host = addr .getHostAddress ();
692
- return host ;
693
- }
694
- } catch (SecurityException e ) {
695
- host = addr .getHostAddress ();
696
- } catch (UnknownHostException e ) {
689
+ //XXX: if it looks like a spoof just return the address?
690
+ if (!ok ) {
697
691
host = addr .getHostAddress ();
698
- // let next provider resolve the hostname
692
+ return host ;
699
693
}
694
+ } catch (SecurityException e ) {
695
+ host = addr .getHostAddress ();
696
+ } catch (UnknownHostException e ) {
697
+ host = addr .getHostAddress ();
698
+ // let next provider resolve the hostname
699
+ }
700
700
return host ;
701
701
}
702
702
@@ -1136,7 +1136,7 @@ private String extractHostAddr(String hostEntry, String host) {
1136
1136
1137
1137
// create name service
1138
1138
nameService = createNameService ();
1139
- }
1139
+ }
1140
1140
1141
1141
/**
1142
1142
* Create an instance of the NameService interface based on
@@ -1510,21 +1510,19 @@ private static InetAddress[] getAllByName0(String host,
1510
1510
}
1511
1511
1512
1512
static InetAddress [] getAddressesFromNameService (String host , InetAddress reqAddr )
1513
- throws UnknownHostException
1514
- {
1513
+ throws UnknownHostException {
1515
1514
InetAddress [] addresses = null ;
1516
1515
UnknownHostException ex = null ;
1517
1516
1518
- try {
1519
- addresses = nameService .lookupAllHostAddr (host );
1520
- } catch (UnknownHostException uhe ) {
1521
- if (host .equalsIgnoreCase ("localhost" )) {
1522
- addresses = new InetAddress [] { impl .loopbackAddress () };
1523
- }
1524
- else {
1525
- ex = uhe ;
1526
- }
1517
+ try {
1518
+ addresses = nameService .lookupAllHostAddr (host );
1519
+ } catch (UnknownHostException uhe ) {
1520
+ if (host .equalsIgnoreCase ("localhost" )) {
1521
+ addresses = new InetAddress []{impl .loopbackAddress ()};
1522
+ } else {
1523
+ ex = uhe ;
1527
1524
}
1525
+ }
1528
1526
1529
1527
if (addresses == null ) {
1530
1528
throw ex == null ? new UnknownHostException (host ) : ex ;
0 commit comments