Package net.i2p.router.client
Class ClientManager
- java.lang.Object
-
- net.i2p.router.client.ClientManager
-
class ClientManager extends Object
Coordinate connections and various tasks- Author:
- jrandom
-
-
Field Summary
Fields Modifier and Type Field Description protected RouterContext
_ctx
protected boolean
_isStarted
protected List<ClientListenerRunner>
_listeners
protected int
_port
protected boolean
_wasStarted
static SessionId
UNKNOWN_SESSION_ID
65535
-
Constructor Summary
Constructors Constructor Description ClientManager(RouterContext context, int port)
Does not start the listeners.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description int
destinationEstablished(ClientConnectionRunner runner, Destination dest)
Add to the clients list.(package private) void
distributeMessage(Destination fromDest, Destination toDest, Payload payload, MessageId msgId, long messageNonce, long expiration, int flags)
Distribute message to a local or remote destination.SessionConfig
getClientSessionConfig(Destination dest)
Return the client's current config, or null if not connectedSessionKeyManager
getClientSessionKeyManager(Hash dest)
Return the client's SessionKeyManager Use this instead of the RouterContext.sessionKeyManager() to prevent correlation attacks across destinations(package private) ClientConnectionRunner
getRunner(Destination dest)
Unsynchronized(package private) Set<Destination>
getRunnerDestinations()
I2CPMessageQueue
internalConnect()
The InternalClientManager interface.boolean
isAlive()
As of 0.9.45, this returns true iff the ClientManager is running.boolean
isLocal(Destination dest)
Unsynchronized.boolean
isLocal(Hash destHash)
Unsynchronized.Set<Destination>
listClients()
Unsynchronized.void
messageDeliveryStatusUpdate(Destination fromDest, MessageId id, long messageNonce, int status)
void
messageReceived(ClientMessage msg)
void
registerConnection(ClientConnectionRunner runner)
boolean
registerEncryptedDestination(ClientConnectionRunner runner, Hash hash)
Call after destinationEstablished(), when an encrypted leaseset is created, so we know it's local.void
registerMetaDest(Destination dest)
Declare that we're going to publish a meta LS for this destination.void
renderStatusHTML(Writer out)
Deprecated.unusedvoid
reportAbuse(Destination dest, String reason, int severity)
Unusedvoid
requestLeaseSet(Destination dest, LeaseSet set, long timeout, Job onCreateJob, Job onFailedJob)
Request that a particular client authorize the Leases contained in the LeaseSet, after which the onCreateJob is queued up.void
requestLeaseSet(Hash dest, LeaseSet ls)
Request that a particular client authorize the Leases contained in the LeaseSet.void
restart()
boolean
shouldPublishLeaseSet(Hash destHash)
void
shutdown(String msg)
void
start()
protected void
startListeners()
Call from synchronized method Todo: Start a 3rd listener for IPV6?void
unregisterConnection(ClientConnectionRunner runner)
Remove all sessions for this runner.void
unregisterEncryptedDestination(ClientConnectionRunner runner, Hash hash)
Remove the hash for the encrypted LS.void
unregisterMetaDest(Destination dest)
Declare that we're no longer going to publish a meta LS for this destination.void
unregisterSession(SessionId id, Destination dest)
Remove only the following session.
-
-
-
Field Detail
-
_listeners
protected final List<ClientListenerRunner> _listeners
-
_ctx
protected final RouterContext _ctx
-
_port
protected final int _port
-
_isStarted
protected volatile boolean _isStarted
-
_wasStarted
protected volatile boolean _wasStarted
-
UNKNOWN_SESSION_ID
public static final SessionId UNKNOWN_SESSION_ID
65535
-
-
Constructor Detail
-
ClientManager
public ClientManager(RouterContext context, int port)
Does not start the listeners. Caller must call start()
-
-
Method Detail
-
start
public void start()
- Since:
- 0.9.8
-
startListeners
protected void startListeners()
Call from synchronized method Todo: Start a 3rd listener for IPV6?
-
restart
public void restart()
-
shutdown
public void shutdown(String msg)
- Parameters:
msg
- message to send to the clients
-
internalConnect
public I2CPMessageQueue internalConnect() throws I2PSessionException
The InternalClientManager interface. Connects to the router, receiving a message queue to talk to the router with.- Throws:
I2PSessionException
- if the router isn't ready- Since:
- 0.8.3
-
isAlive
public boolean isAlive()
As of 0.9.45, this returns true iff the ClientManager is running. Prior to that, it also required all external I2CP listeners that were registered to be running. Since most of our connections are in-JVM, we now return true even if we have I2CP port conflicts.
-
registerConnection
public void registerConnection(ClientConnectionRunner runner)
-
unregisterConnection
public void unregisterConnection(ClientConnectionRunner runner)
Remove all sessions for this runner.
-
unregisterSession
public void unregisterSession(SessionId id, Destination dest)
Remove only the following session. Does not remove the runner if it has more.- Since:
- 0.9.21
-
unregisterEncryptedDestination
public void unregisterEncryptedDestination(ClientConnectionRunner runner, Hash hash)
Remove the hash for the encrypted LS. Call before unregisterConnection, or when the hash changes.- Since:
- 0.9.39
-
destinationEstablished
public int destinationEstablished(ClientConnectionRunner runner, Destination dest)
Add to the clients list. Check for a dup destination. Side effect: Sets the session ID of the runner. Caller must call runner.disconnectClient() on failure.- Returns:
- SessionStatusMessage return code, 1 for success, != 1 for failure
-
registerEncryptedDestination
public boolean registerEncryptedDestination(ClientConnectionRunner runner, Hash hash)
Call after destinationEstablished(), when an encrypted leaseset is created, so we know it's local. Add to the clients list. Check for a dup hash. Caller must call runner.disconnectClient() on failure.- Parameters:
hash
- the location of the encrypted LS, will change every day- Returns:
- success, false on dup
- Since:
- 0.9.39
-
registerMetaDest
public void registerMetaDest(Destination dest) throws I2PSessionException
Declare that we're going to publish a meta LS for this destination. Must be called before publishing the leaseset.- Throws:
I2PSessionException
- on duplicate dest- Since:
- 0.9.41
-
unregisterMetaDest
public void unregisterMetaDest(Destination dest)
Declare that we're no longer going to publish a meta LS for this destination.- Since:
- 0.9.41
-
distributeMessage
void distributeMessage(Destination fromDest, Destination toDest, Payload payload, MessageId msgId, long messageNonce, long expiration, int flags)
Distribute message to a local or remote destination.- Parameters:
msgId
- the router's ID for this messagemessageNonce
- the client's ID for this messageflags
- ignored for local
-
requestLeaseSet
public void requestLeaseSet(Destination dest, LeaseSet set, long timeout, Job onCreateJob, Job onFailedJob)
Request that a particular client authorize the Leases contained in the LeaseSet, after which the onCreateJob is queued up. If that doesn't occur within the timeout specified, queue up the onFailedJob. This call does not block. UNUSED, the call below without jobs is always used.- Parameters:
dest
- Destination from which the LeaseSet's authorization should be requestedset
- LeaseSet with requested leases - this object must be updated to contain the signed version (as well as any changed/added/removed Leases). The LeaseSet contains Leases only; it is unsigned and does not have the destination set.timeout
- ms to wait before failingonCreateJob
- Job to run after the LeaseSet is authorizedonFailedJob
- Job to run after the timeout passes without receiving authorization
-
requestLeaseSet
public void requestLeaseSet(Hash dest, LeaseSet ls)
Request that a particular client authorize the Leases contained in the LeaseSet.- Parameters:
dest
- Destination from which the LeaseSet's authorization should be requestedls
- LeaseSet with requested leases - this object must be updated to contain the signed version (as well as any changed/added/removed Leases). The LeaseSet contains Leases only; it is unsigned and does not have the destination set.
-
isLocal
public boolean isLocal(Destination dest)
Unsynchronized. DOES contain meta destinations.
-
isLocal
public boolean isLocal(Hash destHash)
Unsynchronized. DOES contain meta destinations.
-
shouldPublishLeaseSet
public boolean shouldPublishLeaseSet(Hash destHash)
- Returns:
- true if we don't know about this destination at all
-
listClients
public Set<Destination> listClients()
Unsynchronized. Does NOT contain meta destinations.
-
getRunner
ClientConnectionRunner getRunner(Destination dest)
Unsynchronized
-
getClientSessionConfig
public SessionConfig getClientSessionConfig(Destination dest)
Return the client's current config, or null if not connected
-
getClientSessionKeyManager
public SessionKeyManager getClientSessionKeyManager(Hash dest)
Return the client's SessionKeyManager Use this instead of the RouterContext.sessionKeyManager() to prevent correlation attacks across destinations
-
messageDeliveryStatusUpdate
public void messageDeliveryStatusUpdate(Destination fromDest, MessageId id, long messageNonce, int status)
- Parameters:
id
- the router's ID for this messagemessageNonce
- the client's ID for this message, greater than zerostatus
- see I2CP MessageStatusMessage for success/failure codes
-
getRunnerDestinations
Set<Destination> getRunnerDestinations()
- Returns:
- unmodifiable, not a copy
-
reportAbuse
public void reportAbuse(Destination dest, String reason, int severity)
Unused- Parameters:
dest
- null for all local destinations
-
renderStatusHTML
@Deprecated public void renderStatusHTML(Writer out) throws IOException
Deprecated.unused- Throws:
IOException
-
messageReceived
public void messageReceived(ClientMessage msg)
-
-