1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.logging.log4j.core.util;
18
19 import java.io.File;
20 import java.net.InetAddress;
21 import java.net.MalformedURLException;
22 import java.net.NetworkInterface;
23 import java.net.SocketException;
24 import java.net.URI;
25 import java.net.URISyntaxException;
26 import java.net.URL;
27 import java.net.UnknownHostException;
28 import java.util.Arrays;
29 import java.util.Enumeration;
30
31 import org.apache.logging.log4j.Logger;
32 import org.apache.logging.log4j.status.StatusLogger;
33
34
35
36
37 public final class NetUtils {
38
39 private static final Logger LOGGER = StatusLogger.getLogger();
40 private static final String UNKNOWN_LOCALHOST = "UNKNOWN_LOCALHOST";
41
42 private NetUtils() {
43
44 }
45
46
47
48
49
50
51
52 public static String getLocalHostname() {
53 try {
54 final InetAddress addr = InetAddress.getLocalHost();
55 return addr.getHostName();
56 } catch (final UnknownHostException uhe) {
57 try {
58 final Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
59 while (interfaces.hasMoreElements()) {
60 final NetworkInterface nic = interfaces.nextElement();
61 final Enumeration<InetAddress> addresses = nic.getInetAddresses();
62 while (addresses.hasMoreElements()) {
63 final InetAddress address = addresses.nextElement();
64 if (!address.isLoopbackAddress()) {
65 final String hostname = address.getHostName();
66 if (hostname != null) {
67 return hostname;
68 }
69 }
70 }
71 }
72 } catch (final SocketException se) {
73 LOGGER.error("Could not determine local host name", uhe);
74 return UNKNOWN_LOCALHOST;
75 }
76 LOGGER.error("Could not determine local host name", uhe);
77 return UNKNOWN_LOCALHOST;
78 }
79 }
80
81
82
83
84
85
86
87 public static byte[] getMacAddress() {
88 byte[] mac = null;
89 try {
90 final InetAddress localHost = InetAddress.getLocalHost();
91 try {
92 final NetworkInterface localInterface = NetworkInterface.getByInetAddress(localHost);
93 if (isUpAndNotLoopback(localInterface)) {
94 mac = localInterface.getHardwareAddress();
95 }
96 if (mac == null) {
97 final Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
98 while (networkInterfaces.hasMoreElements() && mac == null) {
99 final NetworkInterface nic = networkInterfaces.nextElement();
100 if (isUpAndNotLoopback(nic)) {
101 mac = nic.getHardwareAddress();
102 }
103 }
104 }
105 } catch (final SocketException e) {
106 LOGGER.catching(e);
107 }
108 if (mac == null || mac.length == 0) {
109
110 final byte[] address = localHost.getAddress();
111
112 mac = Arrays.copyOf(address, 6);
113 }
114 } catch (final UnknownHostException ignored) {
115
116 }
117 return mac;
118 }
119
120
121
122
123
124 public static String getMacAddressString() {
125 final byte[] macAddr = getMacAddress();
126 if (macAddr != null && macAddr.length > 0) {
127 StringBuilder sb = new StringBuilder(String.format("%02x", macAddr[0]));
128 for (int i = 1; i < macAddr.length; ++i) {
129 sb.append(":").append(String.format("%02x", macAddr[i]));
130 }
131 return sb.toString();
132
133 }
134 return null;
135 }
136
137 private static boolean isUpAndNotLoopback(final NetworkInterface ni) throws SocketException {
138 return ni != null && !ni.isLoopback() && ni.isUp();
139 }
140
141
142
143
144
145
146
147 public static URI toURI(final String path) {
148 try {
149
150 return new URI(path);
151 } catch (final URISyntaxException e) {
152
153
154 try {
155 final URL url = new URL(path);
156 return new URI(url.getProtocol(), url.getHost(), url.getPath(), null);
157 } catch (MalformedURLException | URISyntaxException nestedEx) {
158 return new File(path).toURI();
159 }
160 }
161 }
162
163 }