Skip to content

Commit a53b402

Browse files
authored
feat(config): Port address and interface config to HarvestConfig. (jitsi#278)
* feat(config): Port allowed-addresses to HarvestConfig. * feat(config): Port blocked-addresses to HarvestConfig. * feat(config): Port allowed and blocked interfaces config to HarvestConfig. * ref(harvest): Simplify handling the allowed interfaces. * ref(harvest): Simplify handling allowed addresses. * ref(NetworkUtils): Remove java <1.6 workarounds.
1 parent d289f12 commit a53b402

File tree

8 files changed

+215
-664
lines changed

8 files changed

+215
-664
lines changed

src/main/java/org/ice4j/StackProperties.java

-46
Original file line numberDiff line numberDiff line change
@@ -120,52 +120,6 @@ public class StackProperties
120120
*/
121121
public static final String NO_KEEP_ALIVES = "org.ice4j.NO_KEEP_ALIVES";
122122

123-
/**
124-
* THIS PROPERTY IS CURRENTLY UNUSED. IF YOU WANT TO SPEED UP NOMINATIONS
125-
* THEN CONSIDER SPEEDING UP TRANSACTION FAILURE FOR THE TIME BEING.
126-
* The maximum number of milliseconds that we should wait for a check list
127-
* to complete before nominating one of its valid pairs (unless there are
128-
* none in which case we may have to wait until one appears or the whole
129-
* list fails). Default value is <tt>-1</tt> which causes the nominator
130-
* to wait until the check list completes or fails.
131-
*/
132-
public static final String NOMINATION_TIMER
133-
= "org.ice4j.NOMINATION_TIMER";
134-
135-
/**
136-
* The name of the allowed interfaces property which specifies the allowed
137-
* interfaces for host candidate allocations.
138-
*/
139-
public static final String ALLOWED_INTERFACES
140-
= "org.ice4j.ice.harvest.ALLOWED_INTERFACES";
141-
142-
/**
143-
* The name of the allowed interfaces property which specifies the blocked
144-
* interfaces for host candidate allocations.
145-
*/
146-
public static final String BLOCKED_INTERFACES
147-
= "org.ice4j.ice.harvest.BLOCKED_INTERFACES";
148-
149-
/**
150-
* The name of the property which specifies a ";"-separated list of IP
151-
* addresses that are allowed to be used for host candidate allocations.
152-
*
153-
* NOTE: this is currently only supported by
154-
* {@link org.ice4j.ice.harvest.TcpHarvester}.
155-
*/
156-
public static final String ALLOWED_ADDRESSES
157-
= "org.ice4j.ice.harvest.ALLOWED_ADDRESSES";
158-
159-
/**
160-
* The name of the property which specifies a ";"-separated list of IP
161-
* addresses that are not allowed to be used for host candidate allocations.
162-
*
163-
* NOTE: this is currently only supported by
164-
* {@link org.ice4j.ice.harvest.TcpHarvester}.
165-
*/
166-
public static final String BLOCKED_ADDRESSES
167-
= "org.ice4j.ice.harvest.BLOCKED_ADDRESSES";
168-
169123
/**
170124
* Returns the String value of the specified property (minus all
171125
* encompassing whitespaces)and null in case no property value was mapped

src/main/java/org/ice4j/ice/NetworkUtils.java

-90
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818
package org.ice4j.ice;
1919

20-
import java.lang.reflect.*;
2120
import java.net.*;
2221
import java.util.*;
2322
import java.util.logging.*;
@@ -642,95 +641,6 @@ public static boolean isValidPortNumber(int port)
642641
return MIN_PORT_NUMBER <= port && port <= MAX_PORT_NUMBER;
643642
}
644643

645-
/**
646-
* Determines whether or not the <tt>iface</tt> interface is a loopback
647-
* interface. We use this method as a replacement to the
648-
* <tt>NetworkInterface.isLoopback()</tt> method that only comes with
649-
* java 1.6.
650-
*
651-
* @param iface the inteface that we'd like to determine as loopback or not.
652-
*
653-
* @return true if <tt>iface</tt> contains at least one loopback address
654-
* and <tt>false</tt> otherwise.
655-
*/
656-
public static boolean isInterfaceLoopback(NetworkInterface iface)
657-
{
658-
try
659-
{
660-
Method method = iface.getClass().getMethod("isLoopback");
661-
662-
return (Boolean) method.invoke(iface);
663-
}
664-
catch(Throwable t)
665-
{
666-
//apparently we are not running in a JVM that supports the
667-
//is Loopback method. we'll try another approach.
668-
}
669-
Enumeration<InetAddress> addresses = iface.getInetAddresses();
670-
671-
return addresses.hasMoreElements()
672-
&& addresses.nextElement().isLoopbackAddress();
673-
}
674-
675-
/**
676-
* Determines, if possible, whether or not the <tt>iface</tt> interface is
677-
* up. We use this method so that we could use {@link
678-
* java.net.NetworkInterface}'s <tt>isUp()</tt> when running a JVM that
679-
* supports it and return a default value otherwise.
680-
*
681-
* @param iface the interface that we'd like to determine as Up or Down.
682-
*
683-
* @return <tt>false</tt> if <tt>iface</tt> is known to be down and
684-
* <tt>true</tt> if the <tt>iface</tt> is Up or in case we couldn't
685-
* determine.
686-
*/
687-
public static boolean isInterfaceUp(NetworkInterface iface)
688-
{
689-
try
690-
{
691-
Method method = iface.getClass().getMethod("isUp");
692-
693-
return (Boolean) method.invoke(iface);
694-
}
695-
catch(Throwable t)
696-
{
697-
//apparently we are not running in a JVM that supports the
698-
//isUp method. returning default value.
699-
}
700-
701-
return true;
702-
}
703-
704-
/**
705-
* Determines, if possible, whether or not the <tt>iface</tt> interface is
706-
* a virtual interface (e.g. VPN, MIPv6 tunnel, etc.) or not. We use this
707-
* method so that we could use {@link java.net.NetworkInterface}'s
708-
* <tt>isVirtual()</tt> when running a JVM that supports it and return a
709-
* default value otherwise.
710-
*
711-
* @param iface the interface that we'd like to determine as virtual or not.
712-
*
713-
* @return <tt>true</tt> if <tt>iface</tt> is known to be a virtual
714-
* interface and <tt>false</tt> if the <tt>iface</tt> is not virtual or in
715-
* case we couldn't determine.
716-
*/
717-
public static boolean isInterfaceVirtual(NetworkInterface iface)
718-
{
719-
try
720-
{
721-
Method method = iface.getClass().getMethod("isVirtual");
722-
723-
return (Boolean) method.invoke(iface);
724-
}
725-
catch(Throwable t)
726-
{
727-
//apparently we are not running in a JVM that supports the
728-
//isVirtual method. returning default value.
729-
}
730-
731-
return false;
732-
}
733-
734644
/**
735645
* Returns a <tt>String</tt> that is guaranteed not to contain an address
736646
* scope specified (i.e. removes the %scopeID at the end of IPv6 addresses

src/main/java/org/ice4j/ice/harvest/AbstractTcpListener.java

+11-101
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
package org.ice4j.ice.harvest;
1919

2020
import org.ice4j.*;
21-
import org.ice4j.ice.*;
2221
import org.ice4j.socket.*;
2322

2423
import java.io.*;
@@ -87,11 +86,8 @@ private static List<TransportAddress> getLocalAddresses(
8786

8887
for (NetworkInterface iface : interfaces)
8988
{
90-
if (NetworkUtils.isInterfaceLoopback(iface)
91-
|| !NetworkUtils.isInterfaceUp(iface)
92-
|| !HostCandidateHarvester.isInterfaceAllowed(iface))
89+
if (!HostCandidateHarvester.isInterfaceAllowed(iface))
9390
{
94-
//this one is obviously not going to do
9591
continue;
9692
}
9793

@@ -153,8 +149,8 @@ private static List<TransportAddress> getLocalAddresses(
153149
* interfaces.
154150
*
155151
* @param port the port to listen on.
156-
* @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES} or
157-
* {@link StackProperties#BLOCKED_ADDRESSES} contains invalid values, or
152+
* @throws IOException when {@link HarvestConfig#getAllowedAddresses()} or
153+
* {@link HarvestConfig#getBlockedAddresses()} contains invalid values, or
158154
* if an I/O error occurs.
159155
*/
160156
public AbstractTcpListener(int port)
@@ -170,8 +166,8 @@ public AbstractTcpListener(int port)
170166
*
171167
* @param port the port to listen on.
172168
* @param interfaces the interfaces to listen on.
173-
* @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES} or
174-
* {@link StackProperties#BLOCKED_ADDRESSES} contains invalid values, or
169+
* @throws IOException when {@link HarvestConfig#getAllowedAddresses()} or
170+
* {@link HarvestConfig#getBlockedAddresses()} contains invalid values, or
175171
* if an I/O error occurs.
176172
*/
177173
public AbstractTcpListener(int port, List<NetworkInterface> interfaces)
@@ -185,8 +181,8 @@ public AbstractTcpListener(int port, List<NetworkInterface> interfaces)
185181
* specified list of <tt>TransportAddress</tt>es.
186182
*
187183
* @param transportAddresses the transport addresses to listen on.
188-
* @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES} or
189-
* {@link StackProperties#BLOCKED_ADDRESSES} contains invalid values, or
184+
* @throws IOException when {@link HarvestConfig#getAllowedAddresses()} or
185+
* {@link HarvestConfig#getBlockedAddresses()} contains invalid values, or
190186
* if an I/O error occurs.
191187
*/
192188
public AbstractTcpListener(List<TransportAddress> transportAddresses)
@@ -202,104 +198,18 @@ public AbstractTcpListener(List<TransportAddress> transportAddresses)
202198
* allocation.
203199
*
204200
* @param transportAddresses the list of addresses to add.
205-
* @throws IOException when {@link StackProperties#ALLOWED_ADDRESSES} or
206-
* {@link StackProperties#BLOCKED_ADDRESSES} contains invalid values.
201+
* @throws IOException when {@link HarvestConfig#getAllowedAddresses()} or
202+
* {@link HarvestConfig#getBlockedAddresses()} contains invalid values.
207203
*/
208204
protected void addLocalAddresses(List<TransportAddress> transportAddresses)
209205
throws IOException
210206
{
211-
// White list from the configuration
212-
String[] allowedAddressesStr
213-
= StackProperties.getStringArray(StackProperties.ALLOWED_ADDRESSES,
214-
";");
215-
InetAddress[] allowedAddresses = null;
216-
217-
if (allowedAddressesStr != null)
218-
{
219-
allowedAddresses = new InetAddress[allowedAddressesStr.length];
220-
for (int i = 0; i < allowedAddressesStr.length; i++)
221-
{
222-
allowedAddresses[i] = InetAddress.getByName(allowedAddressesStr[i]);
223-
}
224-
}
225-
226-
// Black list from the configuration
227-
String[] blockedAddressesStr
228-
= StackProperties.getStringArray(StackProperties.BLOCKED_ADDRESSES,
229-
";");
230-
InetAddress[] blockedAddresses = null;
231-
232-
if (blockedAddressesStr != null)
233-
{
234-
blockedAddresses = new InetAddress[blockedAddressesStr.length];
235-
for (int i = 0; i < blockedAddressesStr.length; i++)
236-
{
237-
blockedAddresses[i]
238-
= InetAddress.getByName(blockedAddressesStr[i]);
239-
}
240-
}
241-
242207
for (TransportAddress transportAddress : transportAddresses)
243208
{
244-
InetAddress address = transportAddress.getAddress();
245-
246-
if (address.isLoopbackAddress())
209+
if (HostCandidateHarvester.isAddressAllowed(transportAddress.getAddress()))
247210
{
248-
//loopback again
249-
continue;
211+
localAddresses.add(transportAddress);
250212
}
251-
252-
if (!config.useIpv6() && (address instanceof Inet6Address))
253-
continue;
254-
255-
if (!config.useLinkLocalAddresses() && address.isLinkLocalAddress())
256-
{
257-
logger.info("Not using link-local address " + address +" for TCP candidates.");
258-
continue;
259-
}
260-
261-
if (allowedAddresses != null)
262-
{
263-
boolean found = false;
264-
265-
for (InetAddress allowedAddress : allowedAddresses)
266-
{
267-
if (allowedAddress.equals(address))
268-
{
269-
found = true;
270-
break;
271-
}
272-
}
273-
if (!found)
274-
{
275-
logger.info("Not using " + address +" for TCP candidates, "
276-
+ "because it is not in the allowed list.");
277-
continue;
278-
}
279-
}
280-
281-
if (blockedAddresses != null)
282-
{
283-
boolean found = false;
284-
285-
for (InetAddress blockedAddress : blockedAddresses)
286-
{
287-
if (blockedAddress.equals(address))
288-
{
289-
found = true;
290-
break;
291-
}
292-
}
293-
if (found)
294-
{
295-
logger.info("Not using " + address + " for TCP candidates, "
296-
+ "because it is in the blocked list.");
297-
continue;
298-
}
299-
}
300-
301-
// Passed all checks
302-
localAddresses.add(transportAddress);
303213
}
304214
}
305215

src/main/java/org/ice4j/ice/harvest/AbstractUdpListener.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ public abstract class AbstractUdpListener
7777
public static List<TransportAddress> getAllowedAddresses(int port)
7878
{
7979
List<TransportAddress> addresses = new LinkedList<>();
80-
for (InetAddress address
81-
: HostCandidateHarvester.getAllAllowedAddresses())
80+
for (InetAddress address : HostCandidateHarvester.getAllAllowedAddresses())
8281
{
8382
addresses.add(new TransportAddress(address, port, Transport.UDP));
8483
}

0 commit comments

Comments
 (0)