1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.channel.epoll;
17
18 import io.netty.channel.ChannelException;
19 import io.netty.channel.DefaultFileRegion;
20 import io.netty.channel.unix.Errors;
21 import io.netty.channel.unix.NativeInetAddress;
22 import io.netty.channel.unix.PeerCredentials;
23 import io.netty.channel.unix.Socket;
24 import io.netty.channel.socket.InternetProtocolFamily;
25 import io.netty.util.internal.PlatformDependent;
26 import io.netty.util.internal.SocketUtils;
27 import io.netty.util.internal.UnstableApi;
28
29 import java.io.IOException;
30 import java.net.InetAddress;
31 import java.net.Inet6Address;
32 import java.net.NetworkInterface;
33 import java.net.UnknownHostException;
34 import java.util.Enumeration;
35
36 import static io.netty.channel.unix.Errors.ioResult;
37 import static io.netty.channel.unix.Errors.newIOException;
38
39
40
41
42 @UnstableApi
43 public final class LinuxSocket extends Socket {
44 private static final long MAX_UINT32_T = 0xFFFFFFFFL;
45
46 LinuxSocket(int fd) {
47 super(fd);
48 }
49
50 InternetProtocolFamily family() {
51 return ipv6 ? InternetProtocolFamily.IPv6 : InternetProtocolFamily.IPv4;
52 }
53
54 int sendmmsg(NativeDatagramPacketArray.NativeDatagramPacket[] msgs,
55 int offset, int len) throws IOException {
56 return Native.sendmmsg(intValue(), ipv6, msgs, offset, len);
57 }
58
59 int recvmmsg(NativeDatagramPacketArray.NativeDatagramPacket[] msgs,
60 int offset, int len) throws IOException {
61 return Native.recvmmsg(intValue(), ipv6, msgs, offset, len);
62 }
63
64 int recvmsg(NativeDatagramPacketArray.NativeDatagramPacket msg) throws IOException {
65 return Native.recvmsg(intValue(), ipv6, msg);
66 }
67
68 void setTimeToLive(int ttl) throws IOException {
69 setTimeToLive(intValue(), ttl);
70 }
71
72 void setInterface(InetAddress address) throws IOException {
73 final NativeInetAddress a = NativeInetAddress.newInstance(address);
74 setInterface(intValue(), ipv6, a.address(), a.scopeId(), interfaceIndex(address));
75 }
76
77 void setNetworkInterface(NetworkInterface netInterface) throws IOException {
78 InetAddress address = deriveInetAddress(netInterface, family() == InternetProtocolFamily.IPv6);
79 if (address.equals(family() == InternetProtocolFamily.IPv4 ? Native.INET_ANY : Native.INET6_ANY)) {
80 throw new IOException("NetworkInterface does not support " + family());
81 }
82 final NativeInetAddress nativeAddress = NativeInetAddress.newInstance(address);
83 setInterface(intValue(), ipv6, nativeAddress.address(), nativeAddress.scopeId(), interfaceIndex(netInterface));
84 }
85
86 InetAddress getInterface() throws IOException {
87 NetworkInterface inf = getNetworkInterface();
88 if (inf != null) {
89 Enumeration<InetAddress> addresses = SocketUtils.addressesFromNetworkInterface(inf);
90 if (addresses.hasMoreElements()) {
91 return addresses.nextElement();
92 }
93 }
94 return null;
95 }
96
97 NetworkInterface getNetworkInterface() throws IOException {
98 int ret = getInterface(intValue(), ipv6);
99 if (ipv6) {
100 return PlatformDependent.javaVersion() >= 7 ? NetworkInterface.getByIndex(ret) : null;
101 }
102 InetAddress address = inetAddress(ret);
103 return address != null ? NetworkInterface.getByInetAddress(address) : null;
104 }
105
106 private static InetAddress inetAddress(int value) {
107 byte[] var1 = {
108 (byte) (value >>> 24 & 255),
109 (byte) (value >>> 16 & 255),
110 (byte) (value >>> 8 & 255),
111 (byte) (value & 255)
112 };
113
114 try {
115 return InetAddress.getByAddress(var1);
116 } catch (UnknownHostException ignore) {
117 return null;
118 }
119 }
120
121 void joinGroup(InetAddress group, NetworkInterface netInterface, InetAddress source) throws IOException {
122 final NativeInetAddress g = NativeInetAddress.newInstance(group);
123 final boolean isIpv6 = group instanceof Inet6Address;
124 final NativeInetAddress i = NativeInetAddress.newInstance(deriveInetAddress(netInterface, isIpv6));
125 if (source != null) {
126 if (source.getClass() != group.getClass()) {
127 throw new IllegalArgumentException("Source address is different type to group");
128 }
129 final NativeInetAddress s = NativeInetAddress.newInstance(source);
130 joinSsmGroup(intValue(), ipv6 && isIpv6, g.address(), i.address(),
131 g.scopeId(), interfaceIndex(netInterface), s.address());
132 } else {
133 joinGroup(intValue(), ipv6 && isIpv6, g.address(), i.address(), g.scopeId(), interfaceIndex(netInterface));
134 }
135 }
136
137 void leaveGroup(InetAddress group, NetworkInterface netInterface, InetAddress source) throws IOException {
138 final NativeInetAddress g = NativeInetAddress.newInstance(group);
139 final boolean isIpv6 = group instanceof Inet6Address;
140 final NativeInetAddress i = NativeInetAddress.newInstance(deriveInetAddress(netInterface, isIpv6));
141 if (source != null) {
142 if (source.getClass() != group.getClass()) {
143 throw new IllegalArgumentException("Source address is different type to group");
144 }
145 final NativeInetAddress s = NativeInetAddress.newInstance(source);
146 leaveSsmGroup(intValue(), ipv6 && isIpv6, g.address(), i.address(),
147 g.scopeId(), interfaceIndex(netInterface), s.address());
148 } else {
149 leaveGroup(intValue(), ipv6 && isIpv6, g.address(), i.address(), g.scopeId(), interfaceIndex(netInterface));
150 }
151 }
152
153 private static int interfaceIndex(NetworkInterface networkInterface) {
154 return PlatformDependent.javaVersion() >= 7 ? networkInterface.getIndex() : -1;
155 }
156
157 private static int interfaceIndex(InetAddress address) throws IOException {
158 if (PlatformDependent.javaVersion() >= 7) {
159 NetworkInterface iface = NetworkInterface.getByInetAddress(address);
160 if (iface != null) {
161 return iface.getIndex();
162 }
163 }
164 return -1;
165 }
166
167 void setTcpDeferAccept(int deferAccept) throws IOException {
168 setTcpDeferAccept(intValue(), deferAccept);
169 }
170
171 void setTcpQuickAck(boolean quickAck) throws IOException {
172 setTcpQuickAck(intValue(), quickAck ? 1 : 0);
173 }
174
175 void setTcpCork(boolean tcpCork) throws IOException {
176 setTcpCork(intValue(), tcpCork ? 1 : 0);
177 }
178
179 void setSoBusyPoll(int loopMicros) throws IOException {
180 setSoBusyPoll(intValue(), loopMicros);
181 }
182
183 void setTcpNotSentLowAt(long tcpNotSentLowAt) throws IOException {
184 if (tcpNotSentLowAt < 0 || tcpNotSentLowAt > MAX_UINT32_T) {
185 throw new IllegalArgumentException("tcpNotSentLowAt must be a uint32_t");
186 }
187 setTcpNotSentLowAt(intValue(), (int) tcpNotSentLowAt);
188 }
189
190 void setTcpFastOpen(int tcpFastopenBacklog) throws IOException {
191 setTcpFastOpen(intValue(), tcpFastopenBacklog);
192 }
193
194 void setTcpKeepIdle(int seconds) throws IOException {
195 setTcpKeepIdle(intValue(), seconds);
196 }
197
198 void setTcpKeepIntvl(int seconds) throws IOException {
199 setTcpKeepIntvl(intValue(), seconds);
200 }
201
202 void setTcpKeepCnt(int probes) throws IOException {
203 setTcpKeepCnt(intValue(), probes);
204 }
205
206 void setTcpUserTimeout(int milliseconds) throws IOException {
207 setTcpUserTimeout(intValue(), milliseconds);
208 }
209
210 void setIpFreeBind(boolean enabled) throws IOException {
211 setIpFreeBind(intValue(), enabled ? 1 : 0);
212 }
213
214 void setIpTransparent(boolean enabled) throws IOException {
215 setIpTransparent(intValue(), enabled ? 1 : 0);
216 }
217
218 void setIpRecvOrigDestAddr(boolean enabled) throws IOException {
219 setIpRecvOrigDestAddr(intValue(), enabled ? 1 : 0);
220 }
221
222 int getTimeToLive() throws IOException {
223 return getTimeToLive(intValue());
224 }
225
226 void getTcpInfo(EpollTcpInfo info) throws IOException {
227 getTcpInfo(intValue(), info.info);
228 }
229
230 void setTcpMd5Sig(InetAddress address, byte[] key) throws IOException {
231 final NativeInetAddress a = NativeInetAddress.newInstance(address);
232 setTcpMd5Sig(intValue(), ipv6, a.address(), a.scopeId(), key);
233 }
234
235 boolean isTcpCork() throws IOException {
236 return isTcpCork(intValue()) != 0;
237 }
238
239 int getSoBusyPoll() throws IOException {
240 return getSoBusyPoll(intValue());
241 }
242
243 int getTcpDeferAccept() throws IOException {
244 return getTcpDeferAccept(intValue());
245 }
246
247 boolean isTcpQuickAck() throws IOException {
248 return isTcpQuickAck(intValue()) != 0;
249 }
250
251 long getTcpNotSentLowAt() throws IOException {
252 return getTcpNotSentLowAt(intValue()) & MAX_UINT32_T;
253 }
254
255 int getTcpKeepIdle() throws IOException {
256 return getTcpKeepIdle(intValue());
257 }
258
259 int getTcpKeepIntvl() throws IOException {
260 return getTcpKeepIntvl(intValue());
261 }
262
263 int getTcpKeepCnt() throws IOException {
264 return getTcpKeepCnt(intValue());
265 }
266
267 int getTcpUserTimeout() throws IOException {
268 return getTcpUserTimeout(intValue());
269 }
270
271 boolean isIpFreeBind() throws IOException {
272 return isIpFreeBind(intValue()) != 0;
273 }
274
275 boolean isIpTransparent() throws IOException {
276 return isIpTransparent(intValue()) != 0;
277 }
278
279 boolean isIpRecvOrigDestAddr() throws IOException {
280 return isIpRecvOrigDestAddr(intValue()) != 0;
281 }
282
283 PeerCredentials getPeerCredentials() throws IOException {
284 return getPeerCredentials(intValue());
285 }
286
287 boolean isLoopbackModeDisabled() throws IOException {
288 return getIpMulticastLoop(intValue(), ipv6) == 0;
289 }
290
291 void setLoopbackModeDisabled(boolean loopbackModeDisabled) throws IOException {
292 setIpMulticastLoop(intValue(), ipv6, loopbackModeDisabled ? 0 : 1);
293 }
294
295 boolean isUdpGro() throws IOException {
296 return isUdpGro(intValue()) != 0;
297 }
298
299 void setUdpGro(boolean gro) throws IOException {
300 setUdpGro(intValue(), gro ? 1 : 0);
301 }
302
303 long sendFile(DefaultFileRegion src, long baseOffset, long offset, long length) throws IOException {
304
305
306 src.open();
307
308 long res = sendFile(intValue(), src, baseOffset, offset, length);
309 if (res >= 0) {
310 return res;
311 }
312 return ioResult("sendfile", (int) res);
313 }
314
315 public void bindVSock(VSockAddress address) throws IOException {
316 int res = bindVSock(intValue(), address.getCid(), address.getPort());
317 if (res < 0) {
318 throw newIOException("bindVSock", res);
319 }
320 }
321
322 public boolean connectVSock(VSockAddress address) throws IOException {
323 int res = connectVSock(intValue(), address.getCid(), address.getPort());
324 if (res < 0) {
325 return Errors.handleConnectErrno("connectVSock", res);
326 }
327 return true;
328 }
329
330 public VSockAddress remoteVSockAddress() {
331 byte[] addr = remoteVSockAddress(intValue());
332 if (addr == null) {
333 return null;
334 }
335 int cid = getIntAt(addr, 0);
336 int port = getIntAt(addr, 4);
337 return new VSockAddress(cid, port);
338 }
339
340 public VSockAddress localVSockAddress() {
341 byte[] addr = localVSockAddress(intValue());
342 if (addr == null) {
343 return null;
344 }
345 int cid = getIntAt(addr, 0);
346 int port = getIntAt(addr, 4);
347 return new VSockAddress(cid, port);
348 }
349
350 private static int getIntAt(byte[] array, int startIndex) {
351 return array[startIndex] << 24 | (array[startIndex + 1] & 0xFF) << 16
352 | (array[startIndex + 2] & 0xFF) << 8 | (array[startIndex + 3] & 0xFF);
353 }
354
355 private static InetAddress deriveInetAddress(NetworkInterface netInterface, boolean ipv6) {
356 final InetAddress ipAny = ipv6 ? Native.INET6_ANY : Native.INET_ANY;
357 if (netInterface != null) {
358 final Enumeration<InetAddress> ias = netInterface.getInetAddresses();
359 while (ias.hasMoreElements()) {
360 final InetAddress ia = ias.nextElement();
361 final boolean isV6 = ia instanceof Inet6Address;
362 if (isV6 == ipv6) {
363 return ia;
364 }
365 }
366 }
367 return ipAny;
368 }
369
370 public static LinuxSocket newSocket(int fd) {
371 return new LinuxSocket(fd);
372 }
373
374 public static LinuxSocket newVSockStream() {
375 return new LinuxSocket(newVSockStream0());
376 }
377
378 static int newVSockStream0() {
379 int res = newVSockStreamFd();
380 if (res < 0) {
381 throw new ChannelException(newIOException("newVSockStream", res));
382 }
383 return res;
384 }
385
386 public static LinuxSocket newSocketStream(boolean ipv6) {
387 return new LinuxSocket(newSocketStream0(ipv6));
388 }
389
390 public static LinuxSocket newSocketStream(InternetProtocolFamily protocol) {
391 return new LinuxSocket(newSocketStream0(protocol));
392 }
393
394 public static LinuxSocket newSocketStream() {
395 return newSocketStream(isIPv6Preferred());
396 }
397
398 public static LinuxSocket newSocketDgram(boolean ipv6) {
399 return new LinuxSocket(newSocketDgram0(ipv6));
400 }
401
402 public static LinuxSocket newSocketDgram(InternetProtocolFamily family) {
403 return new LinuxSocket(newSocketDgram0(family));
404 }
405
406 public static LinuxSocket newSocketDgram() {
407 return newSocketDgram(isIPv6Preferred());
408 }
409
410 public static LinuxSocket newSocketDomain() {
411 return new LinuxSocket(newSocketDomain0());
412 }
413
414 public static LinuxSocket newSocketDomainDgram() {
415 return new LinuxSocket(newSocketDomainDgram0());
416 }
417
418 private static native int newVSockStreamFd();
419 private static native int bindVSock(int fd, int cid, int port);
420 private static native int connectVSock(int fd, int cid, int port);
421 private static native byte[] remoteVSockAddress(int fd);
422 private static native byte[] localVSockAddress(int fd);
423
424 private static native void joinGroup(int fd, boolean ipv6, byte[] group, byte[] interfaceAddress,
425 int scopeId, int interfaceIndex) throws IOException;
426 private static native void joinSsmGroup(int fd, boolean ipv6, byte[] group, byte[] interfaceAddress,
427 int scopeId, int interfaceIndex, byte[] source) throws IOException;
428 private static native void leaveGroup(int fd, boolean ipv6, byte[] group, byte[] interfaceAddress,
429 int scopeId, int interfaceIndex) throws IOException;
430 private static native void leaveSsmGroup(int fd, boolean ipv6, byte[] group, byte[] interfaceAddress,
431 int scopeId, int interfaceIndex, byte[] source) throws IOException;
432 private static native long sendFile(int socketFd, DefaultFileRegion src, long baseOffset,
433 long offset, long length) throws IOException;
434
435 private static native int getTcpDeferAccept(int fd) throws IOException;
436 private static native int isTcpQuickAck(int fd) throws IOException;
437 private static native int isTcpCork(int fd) throws IOException;
438 private static native int getSoBusyPoll(int fd) throws IOException;
439 private static native int getTcpNotSentLowAt(int fd) throws IOException;
440 private static native int getTcpKeepIdle(int fd) throws IOException;
441 private static native int getTcpKeepIntvl(int fd) throws IOException;
442 private static native int getTcpKeepCnt(int fd) throws IOException;
443 private static native int getTcpUserTimeout(int fd) throws IOException;
444 private static native int getTimeToLive(int fd) throws IOException;
445 private static native int isIpFreeBind(int fd) throws IOException;
446 private static native int isIpTransparent(int fd) throws IOException;
447 private static native int isIpRecvOrigDestAddr(int fd) throws IOException;
448 private static native void getTcpInfo(int fd, long[] array) throws IOException;
449 private static native PeerCredentials getPeerCredentials(int fd) throws IOException;
450
451 private static native void setTcpDeferAccept(int fd, int deferAccept) throws IOException;
452 private static native void setTcpQuickAck(int fd, int quickAck) throws IOException;
453 private static native void setTcpCork(int fd, int tcpCork) throws IOException;
454 private static native void setSoBusyPoll(int fd, int loopMicros) throws IOException;
455 private static native void setTcpNotSentLowAt(int fd, int tcpNotSentLowAt) throws IOException;
456 private static native void setTcpFastOpen(int fd, int tcpFastopenBacklog) throws IOException;
457 private static native void setTcpKeepIdle(int fd, int seconds) throws IOException;
458 private static native void setTcpKeepIntvl(int fd, int seconds) throws IOException;
459 private static native void setTcpKeepCnt(int fd, int probes) throws IOException;
460 private static native void setTcpUserTimeout(int fd, int milliseconds)throws IOException;
461 private static native void setIpFreeBind(int fd, int freeBind) throws IOException;
462 private static native void setIpTransparent(int fd, int transparent) throws IOException;
463 private static native void setIpRecvOrigDestAddr(int fd, int transparent) throws IOException;
464 private static native void setTcpMd5Sig(
465 int fd, boolean ipv6, byte[] address, int scopeId, byte[] key) throws IOException;
466 private static native void setInterface(
467 int fd, boolean ipv6, byte[] interfaceAddress, int scopeId, int networkInterfaceIndex) throws IOException;
468 private static native int getInterface(int fd, boolean ipv6);
469 private static native int getIpMulticastLoop(int fd, boolean ipv6) throws IOException;
470 private static native void setIpMulticastLoop(int fd, boolean ipv6, int enabled) throws IOException;
471 private static native void setTimeToLive(int fd, int ttl) throws IOException;
472 private static native int isUdpGro(int fd) throws IOException;
473 private static native void setUdpGro(int fd, int gro) throws IOException;
474 }