Package net.i2p.router.tunnel.pool
Class TunnelPoolManager
- java.lang.Object
-
- net.i2p.router.tunnel.pool.TunnelPoolManager
-
- All Implemented Interfaces:
Service,TunnelManagerFacade
public class TunnelPoolManager extends Object implements TunnelManagerFacade
Manage all the exploratory and client tunnel pools. Run the tunnel builder and handler threads.
-
-
Constructor Summary
Constructors Constructor Description TunnelPoolManager(RouterContext ctx)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanaddAlias(Destination dest, ClientTunnelSettings settings, Destination existingClient)Add another destination to the same tunnels.(package private) voidbuildComplete(PooledTunnelCreatorConfig cfg)queue a recurring test job if appropriatevoidbuildTunnels(Destination client, ClientTunnelSettings settings)Used only at session startup.voidfail(Hash peer)Fail all outbound tunnels with this peer as first hop, and all inbound tunnels with this peer as the last hop, baecause we can't contact it any more.(package private) BuildExecutorgetExecutor()intgetFreeTunnelCount()how many free inbound tunnels do we have available?intgetInboundBuildQueueSize()count how many inbound tunnel requests we have received but not yet processedMap<Hash,TunnelPool>getInboundClientPools()for TunnelRenderer in router consoleintgetInboundClientTunnelCount()how many free inbound client tunnels do we have available?TunnelPoolgetInboundExploratoryPool()For TunnelRenderer in router consoleTunnelPoolgetInboundPool(Hash client)TunnelPoolSettingsgetInboundSettings()exploratoryTunnelPoolSettingsgetInboundSettings(Hash client)longgetLastParticipatingExpiration()When does the last tunnel we are participating in expire?Map<Hash,TunnelPool>getOutboundClientPools()for TunnelRenderer in router consoleintgetOutboundClientTunnelCount()how many outbound client tunnels do we have available?intgetOutboundClientTunnelCount(Hash destination)Use to verify a tunnel pool is aliveTunnelPoolgetOutboundExploratoryPool()For TunnelRenderer in router consoleTunnelPoolgetOutboundPool(Hash client)TunnelPoolSettingsgetOutboundSettings()exploratoryTunnelPoolSettingsgetOutboundSettings(Hash client)intgetOutboundTunnelCount()how many outbound tunnels do we have available?intgetParticipatingCount()how many tunnels are we participating in?doublegetShareRatio()TunnelInfogetTunnelInfo(TunnelId id)Deprecated.unused(package private) booleanisShutdown()booleanisValidTunnel(Hash client, TunnelInfo tunnel)Is a tunnel a valid member of the pool?voidlistPools(List<TunnelPool> out)list of TunnelPool instances currently in playvoidremoveAlias(Destination dest)Remove a destination for the same tunnels as another.voidremoveTunnels(Destination dest)Must be called AFTER deregistration by the client manager.voidremoveTunnels(Hash destination)This will be called twice, once by the inbound and once by the outbound pool.voidrenderStatusHTML(Writer out)Deprecated.moved to routerconsolevoidrestart()Perform a soft restart.TunnelInfoselectInboundExploratoryTunnel(Hash closestTo)Pick the inbound exploratory tunnel with the gateway closest to the given hash.TunnelInfoselectInboundTunnel()Pick a random inbound exploratory tunnel.TunnelInfoselectInboundTunnel(Hash destination)Pick a random inbound tunnel from the given destination's pool.TunnelInfoselectInboundTunnel(Hash destination, Hash closestTo)Pick the inbound tunnel with the gateway closest to the given hash from the given destination's pool.TunnelInfoselectOutboundExploratoryTunnel(Hash closestTo)Pick the outbound exploratory tunnel with the endpoint closest to the given hash.TunnelInfoselectOutboundTunnel()Pick a random outbound exploratory tunnel.TunnelInfoselectOutboundTunnel(Hash destination)Pick a random outbound tunnel from the given destination's pool.TunnelInfoselectOutboundTunnel(Hash destination, Hash closestTo)Pick the outbound tunnel with the endpoint closest to the given hash from the given destination's pool.Set<Hash>selectPeersInTooManyTunnels()For reliability reasons, don't allow a peer in more than x% of client and exploratory tunnels.voidsetInboundSettings(Hash client, TunnelPoolSettings settings)voidsetInboundSettings(TunnelPoolSettings settings)exploratoryvoidsetOutboundSettings(Hash client, TunnelPoolSettings settings)voidsetOutboundSettings(TunnelPoolSettings settings)exploratoryvoidshutdown()Cannot be restartedvoidstartup()Instruct the service that it should start normal operation.(package private) voidtunnelFailed()
-
-
-
Constructor Detail
-
TunnelPoolManager
public TunnelPoolManager(RouterContext ctx)
-
-
Method Detail
-
selectInboundTunnel
public TunnelInfo selectInboundTunnel()
Pick a random inbound exploratory tunnel. Warning - selectInboundExploratoryTunnel(Hash) is preferred.- Specified by:
selectInboundTunnelin interfaceTunnelManagerFacade- Returns:
- null if none
-
selectInboundTunnel
public TunnelInfo selectInboundTunnel(Hash destination)
Pick a random inbound tunnel from the given destination's pool. Warning - selectOutboundTunnel(Hash, Hash) is preferred.- Specified by:
selectInboundTunnelin interfaceTunnelManagerFacade- Parameters:
destination- if null, returns inbound exploratory tunnel- Returns:
- null if none
-
selectOutboundTunnel
public TunnelInfo selectOutboundTunnel()
Pick a random outbound exploratory tunnel. Warning - selectOutboundExploratoryTunnel(Hash) is preferred.- Specified by:
selectOutboundTunnelin interfaceTunnelManagerFacade- Returns:
- null if none
-
selectOutboundTunnel
public TunnelInfo selectOutboundTunnel(Hash destination)
Pick a random outbound tunnel from the given destination's pool. Warning - selectOutboundTunnel(Hash, Hash) is preferred.- Specified by:
selectOutboundTunnelin interfaceTunnelManagerFacade- Parameters:
destination- if null, returns outbound exploratory tunnel- Returns:
- null if none
-
selectInboundExploratoryTunnel
public TunnelInfo selectInboundExploratoryTunnel(Hash closestTo)
Pick the inbound exploratory tunnel with the gateway closest to the given hash. By using this instead of the random selectTunnel(), we force some locality in OBEP-IBGW connections to minimize those connections network-wide.- Specified by:
selectInboundExploratoryTunnelin interfaceTunnelManagerFacade- Parameters:
closestTo- non-null- Returns:
- null if none
- Since:
- 0.8.10
-
selectInboundTunnel
public TunnelInfo selectInboundTunnel(Hash destination, Hash closestTo)
Pick the inbound tunnel with the gateway closest to the given hash from the given destination's pool. By using this instead of the random selectTunnel(), we force some locality in OBEP-IBGW connections to minimize those connections network-wide.- Specified by:
selectInboundTunnelin interfaceTunnelManagerFacade- Parameters:
destination- if null, returns inbound exploratory tunnelclosestTo- non-null- Returns:
- null if none
- Since:
- 0.8.10
-
selectOutboundExploratoryTunnel
public TunnelInfo selectOutboundExploratoryTunnel(Hash closestTo)
Pick the outbound exploratory tunnel with the endpoint closest to the given hash. By using this instead of the random selectTunnel(), we force some locality in OBEP-IBGW connections to minimize those connections network-wide.- Specified by:
selectOutboundExploratoryTunnelin interfaceTunnelManagerFacade- Parameters:
closestTo- non-null- Returns:
- null if none
- Since:
- 0.8.10
-
selectOutboundTunnel
public TunnelInfo selectOutboundTunnel(Hash destination, Hash closestTo)
Pick the outbound tunnel with the endpoint closest to the given hash from the given destination's pool. By using this instead of the random selectTunnel(), we force some locality in OBEP-IBGW connections to minimize those connections network-wide.- Specified by:
selectOutboundTunnelin interfaceTunnelManagerFacade- Parameters:
destination- if null, returns outbound exploratory tunnelclosestTo- non-null- Returns:
- null if none
- Since:
- 0.8.10
-
getTunnelInfo
@Deprecated public TunnelInfo getTunnelInfo(TunnelId id)
Deprecated.unusedExpensive (iterates through all tunnels of all pools) and unnecessary.- Specified by:
getTunnelInfoin interfaceTunnelManagerFacade- Parameters:
id- the tunnelId as seen at the gateway
-
getFreeTunnelCount
public int getFreeTunnelCount()
Description copied from interface:TunnelManagerFacadehow many free inbound tunnels do we have available?- Specified by:
getFreeTunnelCountin interfaceTunnelManagerFacade- Returns:
- number of inbound exploratory tunnels
-
getOutboundTunnelCount
public int getOutboundTunnelCount()
Description copied from interface:TunnelManagerFacadehow many outbound tunnels do we have available?- Specified by:
getOutboundTunnelCountin interfaceTunnelManagerFacade- Returns:
- number of outbound exploratory tunnels
-
getInboundClientTunnelCount
public int getInboundClientTunnelCount()
Description copied from interface:TunnelManagerFacadehow many free inbound client tunnels do we have available?- Specified by:
getInboundClientTunnelCountin interfaceTunnelManagerFacade
-
getOutboundClientTunnelCount
public int getOutboundClientTunnelCount()
Description copied from interface:TunnelManagerFacadehow many outbound client tunnels do we have available?- Specified by:
getOutboundClientTunnelCountin interfaceTunnelManagerFacade
-
getOutboundClientTunnelCount
public int getOutboundClientTunnelCount(Hash destination)
Use to verify a tunnel pool is alive- Specified by:
getOutboundClientTunnelCountin interfaceTunnelManagerFacade- Since:
- 0.7.11
-
getParticipatingCount
public int getParticipatingCount()
Description copied from interface:TunnelManagerFacadehow many tunnels are we participating in?- Specified by:
getParticipatingCountin interfaceTunnelManagerFacade
-
getLastParticipatingExpiration
public long getLastParticipatingExpiration()
Description copied from interface:TunnelManagerFacadeWhen does the last tunnel we are participating in expire?- Specified by:
getLastParticipatingExpirationin interfaceTunnelManagerFacade
-
getShareRatio
public double getShareRatio()
- Specified by:
getShareRatioin interfaceTunnelManagerFacade- Returns:
- (number of part. tunnels) / (estimated total number of hops in our expl.+client tunnels) We just use length setting, not variance, for speed
- Since:
- 0.7.10
-
isValidTunnel
public boolean isValidTunnel(Hash client, TunnelInfo tunnel)
Description copied from interface:TunnelManagerFacadeIs a tunnel a valid member of the pool?- Specified by:
isValidTunnelin interfaceTunnelManagerFacade
-
getInboundSettings
public TunnelPoolSettings getInboundSettings()
exploratory- Specified by:
getInboundSettingsin interfaceTunnelManagerFacade
-
getOutboundSettings
public TunnelPoolSettings getOutboundSettings()
exploratory- Specified by:
getOutboundSettingsin interfaceTunnelManagerFacade
-
setInboundSettings
public void setInboundSettings(TunnelPoolSettings settings)
exploratory- Specified by:
setInboundSettingsin interfaceTunnelManagerFacade
-
setOutboundSettings
public void setOutboundSettings(TunnelPoolSettings settings)
exploratory- Specified by:
setOutboundSettingsin interfaceTunnelManagerFacade
-
getInboundSettings
public TunnelPoolSettings getInboundSettings(Hash client)
- Specified by:
getInboundSettingsin interfaceTunnelManagerFacade
-
getOutboundSettings
public TunnelPoolSettings getOutboundSettings(Hash client)
- Specified by:
getOutboundSettingsin interfaceTunnelManagerFacade
-
setInboundSettings
public void setInboundSettings(Hash client, TunnelPoolSettings settings)
- Specified by:
setInboundSettingsin interfaceTunnelManagerFacade
-
setOutboundSettings
public void setOutboundSettings(Hash client, TunnelPoolSettings settings)
- Specified by:
setOutboundSettingsin interfaceTunnelManagerFacade
-
restart
public void restart()
Description copied from interface:ServicePerform a soft restart.
-
buildTunnels
public void buildTunnels(Destination client, ClientTunnelSettings settings)
Used only at session startup. Do not use to change settings. Do not use for aliased destinations; use addAlias().- Specified by:
buildTunnelsin interfaceTunnelManagerFacade
-
addAlias
public boolean addAlias(Destination dest, ClientTunnelSettings settings, Destination existingClient)
Add another destination to the same tunnels. Must have same encryption key and a different signing key.- Specified by:
addAliasin interfaceTunnelManagerFacade- Returns:
- success
- Throws:
IllegalArgumentException- if not- Since:
- 0.9.21
-
removeAlias
public void removeAlias(Destination dest)
Remove a destination for the same tunnels as another.- Specified by:
removeAliasin interfaceTunnelManagerFacade- Since:
- 0.9.21
-
removeTunnels
public void removeTunnels(Destination dest)
Must be called AFTER deregistration by the client manager.- Specified by:
removeTunnelsin interfaceTunnelManagerFacade- Since:
- 0.9.48
-
removeTunnels
public void removeTunnels(Hash destination)
This will be called twice, once by the inbound and once by the outbound pool. Synched with buildTunnels() above. Must be called AFTER deregistration by the client manager.
-
buildComplete
void buildComplete(PooledTunnelCreatorConfig cfg)
queue a recurring test job if appropriate
-
startup
public void startup()
Description copied from interface:ServiceInstruct the service that it should start normal operation. This call DOES block until the service is ready.
-
listPools
public void listPools(List<TunnelPool> out)
list of TunnelPool instances currently in play- Specified by:
listPoolsin interfaceTunnelManagerFacade
-
tunnelFailed
void tunnelFailed()
-
getExecutor
BuildExecutor getExecutor()
-
isShutdown
boolean isShutdown()
-
getInboundBuildQueueSize
public int getInboundBuildQueueSize()
Description copied from interface:TunnelManagerFacadecount how many inbound tunnel requests we have received but not yet processed- Specified by:
getInboundBuildQueueSizein interfaceTunnelManagerFacade
-
renderStatusHTML
@Deprecated public void renderStatusHTML(Writer out) throws IOException
Deprecated.moved to routerconsole- Specified by:
renderStatusHTMLin interfaceService- Throws:
IOException
-
selectPeersInTooManyTunnels
public Set<Hash> selectPeersInTooManyTunnels()
For reliability reasons, don't allow a peer in more than x% of client and exploratory tunnels. This also will prevent a single huge-capacity (or malicious) peer from taking all the tunnels in the network (although it would be nice to limit the % of total network tunnels to 10% or so, but that appears to be too low to set as a default here... much lower than 33% will push client tunnels out of the fast tier into high cap or beyond...) Possible improvement - restrict based on count per IP, or IP block, to slightly increase costs of collusion- Specified by:
selectPeersInTooManyTunnelsin interfaceTunnelManagerFacade- Returns:
- Set of peers that should not be allowed in another tunnel
-
getInboundClientPools
public Map<Hash,TunnelPool> getInboundClientPools()
for TunnelRenderer in router console- Specified by:
getInboundClientPoolsin interfaceTunnelManagerFacade
-
getOutboundClientPools
public Map<Hash,TunnelPool> getOutboundClientPools()
for TunnelRenderer in router console- Specified by:
getOutboundClientPoolsin interfaceTunnelManagerFacade
-
getInboundExploratoryPool
public TunnelPool getInboundExploratoryPool()
For TunnelRenderer in router console- Specified by:
getInboundExploratoryPoolin interfaceTunnelManagerFacade- Returns:
- non-null
-
getOutboundExploratoryPool
public TunnelPool getOutboundExploratoryPool()
For TunnelRenderer in router console- Specified by:
getOutboundExploratoryPoolin interfaceTunnelManagerFacade- Returns:
- non-null
-
getInboundPool
public TunnelPool getInboundPool(Hash client)
- Specified by:
getInboundPoolin interfaceTunnelManagerFacade- Returns:
- pool or null
- Since:
- 0.9.34
-
getOutboundPool
public TunnelPool getOutboundPool(Hash client)
- Specified by:
getOutboundPoolin interfaceTunnelManagerFacade- Returns:
- pool or null
- Since:
- 0.9.34
-
fail
public void fail(Hash peer)
Fail all outbound tunnels with this peer as first hop, and all inbound tunnels with this peer as the last hop, baecause we can't contact it any more. This is most likely to be triggered by an outbound tunnel.- Specified by:
failin interfaceTunnelManagerFacade- Since:
- 0.8.13
-
-