~ubuntu-branches/ubuntu/oneiric/libjboss-remoting-java/oneiric

« back to all changes in this revision

Viewing changes to src/org/jboss/remoting/transport/AddressUtil.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/*
3
 
* JBoss, Home of Professional Open Source
4
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
5
 
* by the @authors tag. See the copyright.txt in the distribution for a
6
 
* full listing of individual contributors.
7
 
*
8
 
* This is free software; you can redistribute it and/or modify it
9
 
* under the terms of the GNU Lesser General Public License as
10
 
* published by the Free Software Foundation; either version 2.1 of
11
 
* the License, or (at your option) any later version.
12
 
*
13
 
* This software is distributed in the hope that it will be useful,
14
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
 
* Lesser General Public License for more details.
17
 
*
18
 
* You should have received a copy of the GNU Lesser General Public
19
 
* License along with this software; if not, write to the Free
20
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
22
 
*/
23
 
package org.jboss.remoting.transport;
24
 
 
25
 
import java.io.IOException;
26
 
import java.net.InetAddress;
27
 
import java.net.ServerSocket;
28
 
import java.net.Socket;
29
 
import java.net.UnknownHostException;
30
 
import java.security.AccessController;
31
 
import java.security.PrivilegedActionException;
32
 
import java.security.PrivilegedExceptionAction;
33
 
 
34
 
import org.jboss.logging.Logger;
35
 
import org.jboss.remoting.util.SecurityUtility;
36
 
 
37
 
 
38
 
 
39
 
/**
40
 
 * Checks if an IP interface address is usable.
41
 
 * 
42
 
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
43
 
 * @version $Revision: 1.1 $
44
 
 * <p>
45
 
 * Copyright Jan 30, 2008
46
 
 * </p>
47
 
 */
48
 
public class AddressUtil
49
 
{
50
 
   private static Logger log = Logger.getLogger(AddressUtil.class);
51
 
   
52
 
   public static boolean checkAddress(String host) throws Exception
53
 
   {
54
 
      return checkAddress(host, 5000);
55
 
   }
56
 
   
57
 
   public static boolean checkAddress(final String host, int timeout) throws Exception
58
 
   {
59
 
      try
60
 
      {
61
 
         log.trace("checking host: " + host);
62
 
         int port = PortUtil.findFreePort(host);
63
 
         InetAddress addr = getAddressByName(host);
64
 
         ServerTestThread t1 = new ServerTestThread(addr, port);
65
 
         t1.setDaemon(true);
66
 
         t1.start();
67
 
         ClientTestThread t2 = new ClientTestThread(addr, port);
68
 
         t2.setDaemon(true);
69
 
         t2.start();
70
 
         t2.join(timeout);
71
 
         return t2.ok;
72
 
      }
73
 
      catch (Exception e)
74
 
      {
75
 
         return false;
76
 
      }
77
 
   }
78
 
   
79
 
   static class ServerTestThread extends Thread
80
 
   {
81
 
      InetAddress addr;
82
 
      int port; 
83
 
      
84
 
      ServerTestThread(InetAddress addr, int port)
85
 
      {
86
 
         this.addr = addr;
87
 
         this.port = port;
88
 
      }
89
 
      
90
 
      public void run()
91
 
      {
92
 
         try
93
 
         {
94
 
            AccessController.doPrivileged( new PrivilegedExceptionAction()
95
 
            {
96
 
               public Object run() throws Exception
97
 
               {
98
 
                  ServerSocket ss = new ServerSocket(port, 0, addr);
99
 
                  Socket s = ss.accept();
100
 
                  s.close();
101
 
                  ss.close();
102
 
                  log.trace("ServerTestThread ok: " + addr + ":" + port);
103
 
                  return null;
104
 
               }
105
 
            });
106
 
         }
107
 
         catch (PrivilegedActionException e)
108
 
         {
109
 
            log.trace("error in ServerTestThread", e);
110
 
         }
111
 
      }
112
 
   }
113
 
   
114
 
   static class ClientTestThread extends Thread
115
 
   {
116
 
      public boolean ok;
117
 
      
118
 
      InetAddress addr;
119
 
      int port; 
120
 
      
121
 
      ClientTestThread(InetAddress addr, int port)
122
 
      {
123
 
         this.addr = addr;
124
 
         this.port = port;
125
 
      }
126
 
      
127
 
      public void run()
128
 
      {
129
 
         try
130
 
         {
131
 
            Socket s = new Socket(addr, port);
132
 
            s.close();
133
 
            ok = true;
134
 
            log.trace("ClientTestThread ok: " + addr + ":" + port);
135
 
         }
136
 
         catch (Exception e)
137
 
         {
138
 
            log.trace("error in ClientTestThread", e);
139
 
         }
140
 
      }
141
 
   }
142
 
   
143
 
   static private InetAddress getAddressByName(final String host) throws UnknownHostException
144
 
   {
145
 
      if (SecurityUtility.skipAccessControl())
146
 
      {
147
 
         return InetAddress.getByName(host);
148
 
      }
149
 
      
150
 
      try
151
 
      {
152
 
         return (InetAddress)AccessController.doPrivileged( new PrivilegedExceptionAction()
153
 
         {
154
 
            public Object run() throws IOException
155
 
            {
156
 
               return InetAddress.getByName(host);
157
 
            }
158
 
         });
159
 
      }
160
 
      catch (PrivilegedActionException e)
161
 
      {
162
 
         throw (UnknownHostException) e.getCause();
163
 
      }
164
 
   }
165
 
}
166