/Ice-3.4.2/java/src/IceInternal/Network.java

# · Java · 1197 lines · 1010 code · 99 blank · 88 comment · 132 complexity · b14cd1260304920bf69f28b6f86cbf60 MD5 · raw file

  1. // **********************************************************************
  2. //
  3. // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
  4. //
  5. // This copy of Ice is licensed to you under the terms described in the
  6. // ICE_LICENSE file included in this distribution.
  7. //
  8. // **********************************************************************
  9. package IceInternal;
  10. public final class Network
  11. {
  12. // ProtocolSupport
  13. public final static int EnableIPv4 = 0;
  14. public final static int EnableIPv6 = 1;
  15. public final static int EnableBoth = 2;
  16. public static boolean
  17. connectionRefused(java.net.ConnectException ex)
  18. {
  19. //
  20. // The JDK raises a generic ConnectException when the server
  21. // actively refuses a connection. Unfortunately, our only
  22. // choice is to search the exception message for
  23. // distinguishing phrases.
  24. //
  25. String msg = ex.getMessage().toLowerCase();
  26. if(msg != null)
  27. {
  28. final String[] msgs =
  29. {
  30. "connection refused", // ECONNREFUSED
  31. "remote host refused an attempted connect operation" // ECONNREFUSED (AIX JDK 1.4.2)
  32. };
  33. for(String m : msgs)
  34. {
  35. if(msg.indexOf(m) != -1)
  36. {
  37. return true;
  38. }
  39. }
  40. }
  41. return false;
  42. }
  43. public static boolean
  44. noMoreFds(java.lang.Throwable ex)
  45. {
  46. String msg = ex.getMessage();
  47. if(msg != null)
  48. {
  49. msg = msg.toLowerCase();
  50. final String[] msgs =
  51. {
  52. "too many open files", // EMFILE
  53. "file table overflow", // ENFILE
  54. "too many open files in system" // ENFILE
  55. };
  56. for(String m : msgs)
  57. {
  58. if(msg.indexOf(m) != -1)
  59. {
  60. return true;
  61. }
  62. }
  63. }
  64. return false;
  65. }
  66. public static java.nio.channels.SocketChannel
  67. createTcpSocket()
  68. {
  69. try
  70. {
  71. java.nio.channels.SocketChannel fd = java.nio.channels.SocketChannel.open();
  72. java.net.Socket socket = fd.socket();
  73. socket.setTcpNoDelay(true);
  74. socket.setKeepAlive(true);
  75. return fd;
  76. }
  77. catch(java.io.IOException ex)
  78. {
  79. throw new Ice.SocketException(ex);
  80. }
  81. }
  82. public static java.nio.channels.ServerSocketChannel
  83. createTcpServerSocket()
  84. {
  85. try
  86. {
  87. java.nio.channels.ServerSocketChannel fd = java.nio.channels.ServerSocketChannel.open();
  88. //
  89. // It's not possible to set TCP_NODELAY or KEEP_ALIVE
  90. // on a server socket in Java
  91. //
  92. //java.net.Socket socket = fd.socket();
  93. //socket.setTcpNoDelay(true);
  94. //socket.setKeepAlive(true);
  95. return fd;
  96. }
  97. catch(java.io.IOException ex)
  98. {
  99. throw new Ice.SocketException(ex);
  100. }
  101. }
  102. public static java.nio.channels.DatagramChannel
  103. createUdpSocket()
  104. {
  105. try
  106. {
  107. return java.nio.channels.DatagramChannel.open();
  108. }
  109. catch(java.io.IOException ex)
  110. {
  111. throw new Ice.SocketException(ex);
  112. }
  113. }
  114. public static void
  115. closeSocketNoThrow(java.nio.channels.SelectableChannel fd)
  116. {
  117. try
  118. {
  119. fd.close();
  120. }
  121. catch(java.io.IOException ex)
  122. {
  123. // Ignore
  124. }
  125. }
  126. public static void
  127. closeSocket(java.nio.channels.SelectableChannel fd)
  128. {
  129. try
  130. {
  131. fd.close();
  132. }
  133. catch(java.io.IOException ex)
  134. {
  135. throw new Ice.SocketException(ex);
  136. }
  137. }
  138. public static void
  139. setBlock(java.nio.channels.SelectableChannel fd, boolean block)
  140. {
  141. try
  142. {
  143. fd.configureBlocking(block);
  144. }
  145. catch(java.io.IOException ex)
  146. {
  147. closeSocketNoThrow(fd);
  148. throw new Ice.SocketException(ex);
  149. }
  150. }
  151. public static void
  152. setReuseAddress(java.nio.channels.DatagramChannel fd, boolean reuse)
  153. {
  154. try
  155. {
  156. fd.socket().setReuseAddress(reuse);
  157. }
  158. catch(java.io.IOException ex)
  159. {
  160. closeSocketNoThrow(fd);
  161. throw new Ice.SocketException(ex);
  162. }
  163. }
  164. public static void
  165. setReuseAddress(java.nio.channels.ServerSocketChannel fd, boolean reuse)
  166. {
  167. try
  168. {
  169. fd.socket().setReuseAddress(reuse);
  170. }
  171. catch(java.io.IOException ex)
  172. {
  173. closeSocketNoThrow(fd);
  174. throw new Ice.SocketException(ex);
  175. }
  176. }
  177. public static java.net.InetSocketAddress
  178. doBind(java.nio.channels.ServerSocketChannel fd, java.net.InetSocketAddress addr, int backlog)
  179. {
  180. try
  181. {
  182. java.net.ServerSocket sock = fd.socket();
  183. sock.bind(addr, backlog);
  184. return (java.net.InetSocketAddress)sock.getLocalSocketAddress();
  185. }
  186. catch(java.io.IOException ex)
  187. {
  188. closeSocketNoThrow(fd);
  189. throw new Ice.SocketException(ex);
  190. }
  191. }
  192. public static java.net.InetSocketAddress
  193. doBind(java.nio.channels.DatagramChannel fd, java.net.InetSocketAddress addr)
  194. {
  195. try
  196. {
  197. java.net.DatagramSocket sock = fd.socket();
  198. sock.bind(addr);
  199. return (java.net.InetSocketAddress)sock.getLocalSocketAddress();
  200. }
  201. catch(java.io.IOException ex)
  202. {
  203. closeSocketNoThrow(fd);
  204. throw new Ice.SocketException(ex);
  205. }
  206. }
  207. public static java.nio.channels.SocketChannel
  208. doAccept(java.nio.channels.ServerSocketChannel afd)
  209. {
  210. java.nio.channels.SocketChannel fd = null;
  211. while(true)
  212. {
  213. try
  214. {
  215. fd = afd.accept();
  216. break;
  217. }
  218. catch(java.io.IOException ex)
  219. {
  220. if(interrupted(ex))
  221. {
  222. continue;
  223. }
  224. throw new Ice.SocketException(ex);
  225. }
  226. }
  227. try
  228. {
  229. java.net.Socket socket = fd.socket();
  230. socket.setTcpNoDelay(true);
  231. socket.setKeepAlive(true);
  232. }
  233. catch(java.io.IOException ex)
  234. {
  235. throw new Ice.SocketException(ex);
  236. }
  237. return fd;
  238. }
  239. public static boolean
  240. doConnect(java.nio.channels.SocketChannel fd, java.net.InetSocketAddress addr)
  241. {
  242. try
  243. {
  244. if(!fd.connect(addr))
  245. {
  246. return false;
  247. }
  248. }
  249. catch(java.net.ConnectException ex)
  250. {
  251. closeSocketNoThrow(fd);
  252. if(connectionRefused(ex))
  253. {
  254. throw new Ice.ConnectionRefusedException(ex);
  255. }
  256. else
  257. {
  258. throw new Ice.ConnectFailedException(ex);
  259. }
  260. }
  261. catch(java.io.IOException ex)
  262. {
  263. closeSocketNoThrow(fd);
  264. throw new Ice.SocketException(ex);
  265. }
  266. catch(java.lang.SecurityException ex)
  267. {
  268. closeSocketNoThrow(fd);
  269. throw new Ice.SocketException(ex);
  270. }
  271. if(System.getProperty("os.name").equals("Linux"))
  272. {
  273. //
  274. // Prevent self connect (self connect happens on Linux when a client tries to connect to
  275. // a server which was just deactivated if the client socket re-uses the same ephemeral
  276. // port as the server).
  277. //
  278. if(addr.equals(fd.socket().getLocalSocketAddress()))
  279. {
  280. closeSocketNoThrow(fd);
  281. throw new Ice.ConnectionRefusedException();
  282. }
  283. }
  284. return true;
  285. }
  286. public static void
  287. doFinishConnect(java.nio.channels.SocketChannel fd)
  288. {
  289. //
  290. // Note: we don't close the socket if there's an exception. It's the responsibility
  291. // of the caller to do so.
  292. //
  293. try
  294. {
  295. if(!fd.finishConnect())
  296. {
  297. throw new Ice.ConnectFailedException();
  298. }
  299. if(System.getProperty("os.name").equals("Linux"))
  300. {
  301. //
  302. // Prevent self connect (self connect happens on Linux when a client tries to connect to
  303. // a server which was just deactivated if the client socket re-uses the same ephemeral
  304. // port as the server).
  305. //
  306. java.net.SocketAddress addr = fd.socket().getRemoteSocketAddress();
  307. if(addr != null && addr.equals(fd.socket().getLocalSocketAddress()))
  308. {
  309. throw new Ice.ConnectionRefusedException();
  310. }
  311. }
  312. }
  313. catch(java.net.ConnectException ex)
  314. {
  315. if(connectionRefused(ex))
  316. {
  317. throw new Ice.ConnectionRefusedException(ex);
  318. }
  319. else
  320. {
  321. throw new Ice.ConnectFailedException(ex);
  322. }
  323. }
  324. catch(java.io.IOException ex)
  325. {
  326. throw new Ice.SocketException(ex);
  327. }
  328. }
  329. public static void
  330. doConnect(java.nio.channels.DatagramChannel fd, java.net.InetSocketAddress addr)
  331. {
  332. try
  333. {
  334. fd.connect(addr);
  335. }
  336. catch(java.net.ConnectException ex)
  337. {
  338. closeSocketNoThrow(fd);
  339. if(connectionRefused(ex))
  340. {
  341. throw new Ice.ConnectionRefusedException(ex);
  342. }
  343. else
  344. {
  345. throw new Ice.ConnectFailedException(ex);
  346. }
  347. }
  348. catch(java.io.IOException ex)
  349. {
  350. closeSocketNoThrow(fd);
  351. throw new Ice.SocketException(ex);
  352. }
  353. }
  354. public static java.nio.channels.SocketChannel
  355. doAccept(java.nio.channels.ServerSocketChannel fd, int timeout)
  356. {
  357. java.nio.channels.SocketChannel result = null;
  358. while(result == null)
  359. {
  360. try
  361. {
  362. result = fd.accept();
  363. if(result == null)
  364. {
  365. java.nio.channels.Selector selector = java.nio.channels.Selector.open();
  366. try
  367. {
  368. while(true)
  369. {
  370. try
  371. {
  372. fd.register(selector, java.nio.channels.SelectionKey.OP_ACCEPT);
  373. int n;
  374. if(timeout > 0)
  375. {
  376. n = selector.select(timeout);
  377. }
  378. else if(timeout == 0)
  379. {
  380. n = selector.selectNow();
  381. }
  382. else
  383. {
  384. n = selector.select();
  385. }
  386. if(n == 0)
  387. {
  388. throw new Ice.TimeoutException();
  389. }
  390. break;
  391. }
  392. catch(java.io.IOException ex)
  393. {
  394. if(interrupted(ex))
  395. {
  396. continue;
  397. }
  398. throw new Ice.SocketException(ex);
  399. }
  400. }
  401. }
  402. finally
  403. {
  404. try
  405. {
  406. selector.close();
  407. }
  408. catch(java.io.IOException ex)
  409. {
  410. // Ignore
  411. }
  412. }
  413. }
  414. }
  415. catch(java.io.IOException ex)
  416. {
  417. if(interrupted(ex))
  418. {
  419. continue;
  420. }
  421. throw new Ice.SocketException(ex);
  422. }
  423. }
  424. try
  425. {
  426. java.net.Socket socket = result.socket();
  427. socket.setTcpNoDelay(true);
  428. socket.setKeepAlive(true);
  429. }
  430. catch(java.io.IOException ex)
  431. {
  432. throw new Ice.SocketException(ex);
  433. }
  434. return result;
  435. }
  436. public static void
  437. setSendBufferSize(java.nio.channels.SocketChannel fd, int size)
  438. {
  439. try
  440. {
  441. java.net.Socket socket = fd.socket();
  442. socket.setSendBufferSize(size);
  443. }
  444. catch(java.io.IOException ex)
  445. {
  446. closeSocketNoThrow(fd);
  447. throw new Ice.SocketException(ex);
  448. }
  449. }
  450. public static int
  451. getSendBufferSize(java.nio.channels.SocketChannel fd)
  452. {
  453. int size;
  454. try
  455. {
  456. java.net.Socket socket = fd.socket();
  457. size = socket.getSendBufferSize();
  458. }
  459. catch(java.io.IOException ex)
  460. {
  461. closeSocketNoThrow(fd);
  462. throw new Ice.SocketException(ex);
  463. }
  464. return size;
  465. }
  466. public static void
  467. setRecvBufferSize(java.nio.channels.SocketChannel fd, int size)
  468. {
  469. try
  470. {
  471. java.net.Socket socket = fd.socket();
  472. socket.setReceiveBufferSize(size);
  473. }
  474. catch(java.io.IOException ex)
  475. {
  476. closeSocketNoThrow(fd);
  477. throw new Ice.SocketException(ex);
  478. }
  479. }
  480. public static int
  481. getRecvBufferSize(java.nio.channels.SocketChannel fd)
  482. {
  483. int size;
  484. try
  485. {
  486. java.net.Socket socket = fd.socket();
  487. size = socket.getReceiveBufferSize();
  488. }
  489. catch(java.io.IOException ex)
  490. {
  491. closeSocketNoThrow(fd);
  492. throw new Ice.SocketException(ex);
  493. }
  494. return size;
  495. }
  496. public static void
  497. setRecvBufferSize(java.nio.channels.ServerSocketChannel fd, int size)
  498. {
  499. try
  500. {
  501. java.net.ServerSocket socket = fd.socket();
  502. socket.setReceiveBufferSize(size);
  503. }
  504. catch(java.io.IOException ex)
  505. {
  506. closeSocketNoThrow(fd);
  507. throw new Ice.SocketException(ex);
  508. }
  509. }
  510. public static int
  511. getRecvBufferSize(java.nio.channels.ServerSocketChannel fd)
  512. {
  513. int size;
  514. try
  515. {
  516. java.net.ServerSocket socket = fd.socket();
  517. size = socket.getReceiveBufferSize();
  518. }
  519. catch(java.io.IOException ex)
  520. {
  521. closeSocketNoThrow(fd);
  522. throw new Ice.SocketException(ex);
  523. }
  524. return size;
  525. }
  526. public static void
  527. setSendBufferSize(java.nio.channels.DatagramChannel fd, int size)
  528. {
  529. try
  530. {
  531. java.net.DatagramSocket socket = fd.socket();
  532. socket.setSendBufferSize(size);
  533. }
  534. catch(java.io.IOException ex)
  535. {
  536. closeSocketNoThrow(fd);
  537. throw new Ice.SocketException(ex);
  538. }
  539. }
  540. public static int
  541. getSendBufferSize(java.nio.channels.DatagramChannel fd)
  542. {
  543. int size;
  544. try
  545. {
  546. java.net.DatagramSocket socket = fd.socket();
  547. size = socket.getSendBufferSize();
  548. }
  549. catch(java.io.IOException ex)
  550. {
  551. closeSocketNoThrow(fd);
  552. throw new Ice.SocketException(ex);
  553. }
  554. return size;
  555. }
  556. public static void
  557. setRecvBufferSize(java.nio.channels.DatagramChannel fd, int size)
  558. {
  559. try
  560. {
  561. java.net.DatagramSocket socket = fd.socket();
  562. socket.setReceiveBufferSize(size);
  563. }
  564. catch(java.io.IOException ex)
  565. {
  566. closeSocketNoThrow(fd);
  567. throw new Ice.SocketException(ex);
  568. }
  569. }
  570. public static int
  571. getRecvBufferSize(java.nio.channels.DatagramChannel fd)
  572. {
  573. int size;
  574. try
  575. {
  576. java.net.DatagramSocket socket = fd.socket();
  577. size = socket.getReceiveBufferSize();
  578. }
  579. catch(java.io.IOException ex)
  580. {
  581. closeSocketNoThrow(fd);
  582. throw new Ice.SocketException(ex);
  583. }
  584. return size;
  585. }
  586. public static java.net.InetSocketAddress
  587. getAddress(String host, int port, int protocol)
  588. {
  589. return getAddressImpl(host, port, protocol, false);
  590. }
  591. public static java.net.InetSocketAddress
  592. getAddressForServer(String host, int port, int protocol)
  593. {
  594. return getAddressImpl(host, port, protocol, true);
  595. }
  596. public static int
  597. compareAddress(java.net.InetSocketAddress addr1, java.net.InetSocketAddress addr2)
  598. {
  599. if(addr1.getPort() < addr2.getPort())
  600. {
  601. return -1;
  602. }
  603. else if(addr2.getPort() < addr1.getPort())
  604. {
  605. return 1;
  606. }
  607. byte[] larr = addr1.getAddress().getAddress();
  608. byte[] rarr = addr2.getAddress().getAddress();
  609. if(larr.length < rarr.length)
  610. {
  611. return -1;
  612. }
  613. else if(rarr.length < larr.length)
  614. {
  615. return 1;
  616. }
  617. assert(larr.length == rarr.length);
  618. for(int i = 0; i < larr.length; i++)
  619. {
  620. if(larr[i] < rarr[i])
  621. {
  622. return -1;
  623. }
  624. else if(rarr[i] < larr[i])
  625. {
  626. return 1;
  627. }
  628. }
  629. return 0;
  630. }
  631. public static java.net.InetAddress
  632. getLocalAddress(int protocol)
  633. {
  634. java.net.InetAddress addr = null;
  635. try
  636. {
  637. addr = java.net.InetAddress.getLocalHost();
  638. }
  639. catch(java.net.UnknownHostException ex)
  640. {
  641. //
  642. // May be raised on DHCP systems.
  643. //
  644. }
  645. catch(NullPointerException ex)
  646. {
  647. //
  648. // Workaround for bug in JDK.
  649. //
  650. }
  651. if(addr == null || !isValidAddr(addr, protocol))
  652. {
  653. //
  654. // Iterate over the network interfaces and pick an IP
  655. // address (preferably not the loopback address).
  656. //
  657. java.util.ArrayList<java.net.InetAddress> addrs = getLocalAddresses(protocol);
  658. java.util.Iterator<java.net.InetAddress> iter = addrs.iterator();
  659. while(addr == null && iter.hasNext())
  660. {
  661. java.net.InetAddress a = iter.next();
  662. if(protocol == EnableBoth || isValidAddr(a, protocol))
  663. {
  664. addr = a;
  665. }
  666. }
  667. if(addr == null)
  668. {
  669. addr = getLoopbackAddresses(protocol)[0]; // Use the loopback address as the last resort.
  670. }
  671. }
  672. assert(addr != null);
  673. return addr;
  674. }
  675. public static java.util.ArrayList<java.net.InetSocketAddress>
  676. getAddresses(String host, int port, int protocol)
  677. {
  678. java.util.ArrayList<java.net.InetSocketAddress> addresses =
  679. new java.util.ArrayList<java.net.InetSocketAddress>();
  680. try
  681. {
  682. java.net.InetAddress[] addrs;
  683. if(host == null || host.length() == 0)
  684. {
  685. addrs = getLoopbackAddresses(protocol);
  686. }
  687. else
  688. {
  689. addrs = java.net.InetAddress.getAllByName(host);
  690. }
  691. for(java.net.InetAddress addr : addrs)
  692. {
  693. if(protocol == EnableBoth || isValidAddr(addr, protocol))
  694. {
  695. addresses.add(new java.net.InetSocketAddress(addr, port));
  696. }
  697. }
  698. }
  699. catch(java.net.UnknownHostException ex)
  700. {
  701. throw new Ice.DNSException(0, host, ex);
  702. }
  703. catch(java.lang.SecurityException ex)
  704. {
  705. throw new Ice.SocketException(ex);
  706. }
  707. //
  708. // No Inet4Address/Inet6Address available.
  709. //
  710. if(addresses.size() == 0)
  711. {
  712. throw new Ice.DNSException(0, host);
  713. }
  714. return addresses;
  715. }
  716. public static java.util.ArrayList<java.net.InetAddress>
  717. getLocalAddresses(int protocol)
  718. {
  719. java.util.ArrayList<java.net.InetAddress> result = new java.util.ArrayList<java.net.InetAddress>();
  720. try
  721. {
  722. java.util.Enumeration<java.net.NetworkInterface> ifaces = java.net.NetworkInterface.getNetworkInterfaces();
  723. while(ifaces.hasMoreElements())
  724. {
  725. java.net.NetworkInterface iface = ifaces.nextElement();
  726. java.util.Enumeration<java.net.InetAddress> addrs = iface.getInetAddresses();
  727. while(addrs.hasMoreElements())
  728. {
  729. java.net.InetAddress addr = addrs.nextElement();
  730. if(!addr.isLoopbackAddress())
  731. {
  732. if(protocol == EnableBoth || isValidAddr(addr, protocol))
  733. {
  734. result.add(addr);
  735. }
  736. }
  737. }
  738. }
  739. }
  740. catch(java.net.SocketException ex)
  741. {
  742. throw new Ice.SocketException(ex);
  743. }
  744. catch(java.lang.SecurityException ex)
  745. {
  746. throw new Ice.SocketException(ex);
  747. }
  748. return result;
  749. }
  750. public static final class SocketPair
  751. {
  752. public java.nio.channels.spi.AbstractSelectableChannel source;
  753. public java.nio.channels.WritableByteChannel sink;
  754. }
  755. public static SocketPair
  756. createPipe()
  757. {
  758. SocketPair fds = new SocketPair();
  759. try
  760. {
  761. java.nio.channels.Pipe pipe = java.nio.channels.Pipe.open();
  762. fds.sink = pipe.sink();
  763. fds.source = pipe.source();
  764. }
  765. catch(java.io.IOException ex)
  766. {
  767. throw new Ice.SocketException(ex);
  768. }
  769. return fds;
  770. }
  771. public static java.util.ArrayList<String>
  772. getHostsForEndpointExpand(String host, int protocolSupport, boolean includeLoopback)
  773. {
  774. boolean wildcard = (host == null || host.length() == 0);
  775. if(!wildcard)
  776. {
  777. try
  778. {
  779. wildcard = java.net.InetAddress.getByName(host).isAnyLocalAddress();
  780. }
  781. catch(java.net.UnknownHostException ex)
  782. {
  783. }
  784. catch(java.lang.SecurityException ex)
  785. {
  786. throw new Ice.SocketException(ex);
  787. }
  788. }
  789. java.util.ArrayList<String> hosts = new java.util.ArrayList<String>();
  790. if(wildcard)
  791. {
  792. java.util.ArrayList<java.net.InetAddress> addrs = getLocalAddresses(protocolSupport);
  793. for(java.net.InetAddress addr : addrs)
  794. {
  795. //
  796. // NOTE: We don't publish link-local IPv6 addresses as these addresses can only
  797. // be accessed in general with a scope-id.
  798. //
  799. if(!addr.isLinkLocalAddress())
  800. {
  801. hosts.add(addr.getHostAddress());
  802. }
  803. }
  804. if(includeLoopback || hosts.isEmpty())
  805. {
  806. if(protocolSupport != EnableIPv6)
  807. {
  808. hosts.add("127.0.0.1");
  809. }
  810. if(protocolSupport != EnableIPv4)
  811. {
  812. hosts.add("0:0:0:0:0:0:0:1");
  813. }
  814. }
  815. }
  816. return hosts;
  817. }
  818. public static void
  819. setTcpBufSize(java.nio.channels.SocketChannel socket, Ice.Properties properties, Ice.Logger logger)
  820. {
  821. //
  822. // By default, on Windows we use a 128KB buffer size. On Unix
  823. // platforms, we use the system defaults.
  824. //
  825. int dfltBufSize = 0;
  826. if(System.getProperty("os.name").startsWith("Windows"))
  827. {
  828. dfltBufSize = 128 * 1024;
  829. }
  830. int sizeRequested = properties.getPropertyAsIntWithDefault("Ice.TCP.RcvSize", dfltBufSize);
  831. if(sizeRequested > 0)
  832. {
  833. //
  834. // Try to set the buffer size. The kernel will silently adjust
  835. // the size to an acceptable value. Then read the size back to
  836. // get the size that was actually set.
  837. //
  838. setRecvBufferSize(socket, sizeRequested);
  839. int size = getRecvBufferSize(socket);
  840. if(size < sizeRequested) // Warn if the size that was set is less than the requested size.
  841. {
  842. logger.warning("TCP receive buffer size: requested size of " + sizeRequested + " adjusted to " + size);
  843. }
  844. }
  845. sizeRequested = properties.getPropertyAsIntWithDefault("Ice.TCP.SndSize", dfltBufSize);
  846. if(sizeRequested > 0)
  847. {
  848. //
  849. // Try to set the buffer size. The kernel will silently adjust
  850. // the size to an acceptable value. Then read the size back to
  851. // get the size that was actually set.
  852. //
  853. setSendBufferSize(socket, sizeRequested);
  854. int size = getSendBufferSize(socket);
  855. if(size < sizeRequested) // Warn if the size that was set is less than the requested size.
  856. {
  857. logger.warning("TCP send buffer size: requested size of " + sizeRequested + " adjusted to " + size);
  858. }
  859. }
  860. }
  861. public static void
  862. setTcpBufSize(java.nio.channels.ServerSocketChannel socket, Ice.Properties properties, Ice.Logger logger)
  863. {
  864. //
  865. // By default, on Windows we use a 128KB buffer size. On Unix
  866. // platforms, we use the system defaults.
  867. //
  868. int dfltBufSize = 0;
  869. if(System.getProperty("os.name").startsWith("Windows"))
  870. {
  871. dfltBufSize = 128 * 1024;
  872. }
  873. //
  874. // Get property for buffer size.
  875. //
  876. int sizeRequested = properties.getPropertyAsIntWithDefault("Ice.TCP.RcvSize", dfltBufSize);
  877. if(sizeRequested > 0)
  878. {
  879. //
  880. // Try to set the buffer size. The kernel will silently adjust
  881. // the size to an acceptable value. Then read the size back to
  882. // get the size that was actually set.
  883. //
  884. setRecvBufferSize(socket, sizeRequested);
  885. int size = getRecvBufferSize(socket);
  886. if(size < sizeRequested) // Warn if the size that was set is less than the requested size.
  887. {
  888. logger.warning("TCP receive buffer size: requested size of " + sizeRequested + " adjusted to " + size);
  889. }
  890. }
  891. }
  892. public static String
  893. fdToString(java.nio.channels.SelectableChannel fd)
  894. {
  895. if(fd == null)
  896. {
  897. return "<closed>";
  898. }
  899. java.net.InetAddress localAddr = null, remoteAddr = null;
  900. int localPort = -1, remotePort = -1;
  901. if(fd instanceof java.nio.channels.SocketChannel)
  902. {
  903. java.net.Socket socket = ((java.nio.channels.SocketChannel)fd).socket();
  904. localAddr = socket.getLocalAddress();
  905. localPort = socket.getLocalPort();
  906. remoteAddr = socket.getInetAddress();
  907. remotePort = socket.getPort();
  908. }
  909. else if(fd instanceof java.nio.channels.DatagramChannel)
  910. {
  911. java.net.DatagramSocket socket = ((java.nio.channels.DatagramChannel)fd).socket();
  912. localAddr = socket.getLocalAddress();
  913. localPort = socket.getLocalPort();
  914. remoteAddr = socket.getInetAddress();
  915. remotePort = socket.getPort();
  916. }
  917. else
  918. {
  919. assert(false);
  920. }
  921. return addressesToString(localAddr, localPort, remoteAddr, remotePort);
  922. }
  923. public static String
  924. fdToString(java.net.Socket fd)
  925. {
  926. if(fd == null)
  927. {
  928. return "<closed>";
  929. }
  930. java.net.InetAddress localAddr = fd.getLocalAddress();
  931. int localPort = fd.getLocalPort();
  932. java.net.InetAddress remoteAddr = fd.getInetAddress();
  933. int remotePort = fd.getPort();
  934. return addressesToString(localAddr, localPort, remoteAddr, remotePort);
  935. }
  936. public static String
  937. addressesToString(java.net.InetAddress localAddr, int localPort, java.net.InetAddress remoteAddr, int remotePort)
  938. {
  939. StringBuilder s = new StringBuilder(128);
  940. s.append("local address = ");
  941. s.append(addrToString(localAddr, localPort));
  942. if(remoteAddr == null)
  943. {
  944. s.append("\nremote address = <not connected>");
  945. }
  946. else
  947. {
  948. s.append("\nremote address = ");
  949. s.append(addrToString(remoteAddr, remotePort));
  950. }
  951. return s.toString();
  952. }
  953. public static String
  954. addrToString(java.net.InetSocketAddress addr)
  955. {
  956. StringBuilder s = new StringBuilder(128);
  957. s.append(addr.getAddress().getHostAddress());
  958. s.append(':');
  959. s.append(addr.getPort());
  960. return s.toString();
  961. }
  962. public static boolean
  963. interrupted(java.io.IOException ex)
  964. {
  965. return ex instanceof java.io.InterruptedIOException;
  966. }
  967. private static boolean
  968. isValidAddr(java.net.InetAddress addr, int protocol)
  969. {
  970. byte[] bytes = null;
  971. if(addr != null)
  972. {
  973. bytes = addr.getAddress();
  974. }
  975. return bytes != null &&
  976. ((bytes.length == 16 && protocol == EnableIPv6) ||
  977. (bytes.length == 4 && protocol == EnableIPv4));
  978. }
  979. public static String
  980. addrToString(java.net.InetAddress addr, int port)
  981. {
  982. StringBuffer s = new StringBuffer();
  983. //
  984. // In early Android releases, sockets don't correctly report their address and
  985. // port information.
  986. //
  987. if(addr == null || addr.isAnyLocalAddress())
  988. {
  989. s.append("<not available>");
  990. }
  991. else
  992. {
  993. s.append(addr.getHostAddress());
  994. }
  995. if(port > 0)
  996. {
  997. s.append(':');
  998. s.append(port);
  999. }
  1000. return s.toString();
  1001. }
  1002. private static java.net.InetSocketAddress
  1003. getAddressImpl(String host, int port, int protocol, boolean server)
  1004. {
  1005. try
  1006. {
  1007. java.net.InetAddress[] addrs;
  1008. if(host == null || host.length() == 0)
  1009. {
  1010. if(server)
  1011. {
  1012. addrs = getWildcardAddresses(protocol);
  1013. }
  1014. else
  1015. {
  1016. addrs = getLoopbackAddresses(protocol);
  1017. }
  1018. }
  1019. else
  1020. {
  1021. addrs = java.net.InetAddress.getAllByName(host);
  1022. }
  1023. for(java.net.InetAddress addr : addrs)
  1024. {
  1025. if(protocol == EnableBoth || isValidAddr(addr, protocol))
  1026. {
  1027. return new java.net.InetSocketAddress(addr, port);
  1028. }
  1029. }
  1030. }
  1031. catch(java.net.UnknownHostException ex)
  1032. {
  1033. throw new Ice.DNSException(0, host, ex);
  1034. }
  1035. catch(java.lang.SecurityException ex)
  1036. {
  1037. throw new Ice.SocketException(ex);
  1038. }
  1039. //
  1040. // No Inet4Address/Inet6Address available.
  1041. //
  1042. throw new Ice.DNSException(0, host);
  1043. }
  1044. private static java.net.InetAddress[]
  1045. getLoopbackAddresses(int protocol)
  1046. {
  1047. try
  1048. {
  1049. java.net.InetAddress[] addrs = new java.net.InetAddress[protocol == EnableBoth ? 2 : 1];
  1050. int i = 0;
  1051. if(protocol != EnableIPv6)
  1052. {
  1053. addrs[i++] = java.net.InetAddress.getByName("127.0.0.1");
  1054. }
  1055. if(protocol != EnableIPv4)
  1056. {
  1057. addrs[i++] = java.net.InetAddress.getByName("::1");
  1058. }
  1059. return addrs;
  1060. }
  1061. catch(java.net.UnknownHostException ex)
  1062. {
  1063. assert(false);
  1064. return null;
  1065. }
  1066. catch(java.lang.SecurityException ex)
  1067. {
  1068. throw new Ice.SocketException(ex);
  1069. }
  1070. }
  1071. private static java.net.InetAddress[]
  1072. getWildcardAddresses(int protocol)
  1073. {
  1074. try
  1075. {
  1076. java.net.InetAddress[] addrs = new java.net.InetAddress[protocol == EnableBoth ? 2 : 1];
  1077. int i = 0;
  1078. if(protocol != EnableIPv4)
  1079. {
  1080. addrs[i++] = java.net.InetAddress.getByName("::0");
  1081. }
  1082. if(protocol != EnableIPv6)
  1083. {
  1084. addrs[i++] = java.net.InetAddress.getByName("0.0.0.0");
  1085. }
  1086. return addrs;
  1087. }
  1088. catch(java.net.UnknownHostException ex)
  1089. {
  1090. assert(false);
  1091. return null;
  1092. }
  1093. catch(java.lang.SecurityException ex)
  1094. {
  1095. throw new Ice.SocketException(ex);
  1096. }
  1097. }
  1098. }