IkeSession


public final class IkeSession
extends Object implements AutoCloseable

java.lang.Object
   ↳ android.net.ipsec.ike.IkeSession


This class represents an IKE Session management object that allows for keying and management of IpSecTransforms.

An IKE/Child Session represents an IKE/Child SA as well as its rekeyed successors. A Child Session is bounded by the lifecycle of the IKE Session under which it is set up. Closing an IKE Session implicitly closes any remaining Child Sessions under it.

An IKE procedure is one or multiple IKE message exchanges that are used to create, delete or rekey an IKE Session or Child Session.

This class provides methods for initiating IKE procedures, such as the Creation and Deletion of a Child Session, or the Deletion of the IKE session. All procedures (except for IKE deletion) will be initiated sequentially after IKE Session is set up.

Summary

Public constructors

IkeSession(Context context, IkeSessionParams ikeSessionParams, ChildSessionParams firstChildSessionParams, Executor userCbExecutor, IkeSessionCallback ikeSessionCallback, ChildSessionCallback firstChildSessionCallback)

Constructs a new IKE session.

Public methods

void close()

Close the IKE session gracefully.

void closeChildSession(ChildSessionCallback childSessionCallback)

Delete a Child Session.

void dump(PrintWriter pw)

Dumps the state of IkeSession information for the clients

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

void kill()

Terminate (forcibly close) the IKE session.

void openChildSession(ChildSessionParams childSessionParams, ChildSessionCallback childSessionCallback)

Request a new Child Session.

Inherited methods

Public constructors

IkeSession

Added in API level 31
public IkeSession (Context context, 
                IkeSessionParams ikeSessionParams, 
                ChildSessionParams firstChildSessionParams, 
                Executor userCbExecutor, 
                IkeSessionCallback ikeSessionCallback, 
                ChildSessionCallback firstChildSessionCallback)

Constructs a new IKE session.

This method will immediately return an instance of IkeSession and asynchronously initiate the setup procedure of IkeSession as well as its first Child Session. Callers will be notified of these two setup results via the callback arguments.

FEATURE_IPSEC_TUNNELS is required for setting up a tunnel mode Child SA.

Parameters
context Context: a valid Context instance.
This value cannot be null.

ikeSessionParams IkeSessionParams: the IkeSessionParams that contains a set of valid IkeSession configurations.
This value cannot be null.

firstChildSessionParams ChildSessionParams: the ChildSessionParams that contains a set of valid configurations for the first Child Session.
This value cannot be null.

userCbExecutor Executor: the Executor upon which all callbacks will be posted. For security and consistency, the callbacks posted to this executor MUST be executed serially and in the order they were posted, as guaranteed by executors such as Executors.newSingleThreadExecutor()
This value cannot be null.

ikeSessionCallback IkeSessionCallback: the IkeSessionCallback interface to notify callers of state changes within the IkeSession.
This value cannot be null.

firstChildSessionCallback ChildSessionCallback: the ChildSessionCallback interface to notify callers of state changes within the first Child Session.
This value cannot be null.

Returns
an instance of IkeSession.

Public methods

close

Added in API level 31
public void close ()

Close the IKE session gracefully.

Implements AutoCloseable.close()

Upon closure, IkeSessionCallback.onClosed() or IkeSessionCallback.onClosedWithException(IkeException) will be fired.

Closing an IKE Session implicitly closes any remaining Child Sessions negotiated under it. Users SHOULD stop all outbound traffic that uses these Child Sessions (IpSecTransform pairs) before calling this method. Otherwise IPsec packets will be dropped due to the lack of a valid IpSecTransform.

Closure of an IKE session will take priority over, and cancel other procedures waiting in the queue (but will wait for ongoing locally initiated procedures to complete). After sending the Delete request, the IKE library will wait until a Delete response is received or retransmission timeout occurs.

closeChildSession

Added in API level 31
public void closeChildSession (ChildSessionCallback childSessionCallback)

Delete a Child Session.

Upon closure, ChildSessionCallback.onClosed() will be fired.

Parameters
childSessionCallback ChildSessionCallback: The ChildSessionCallback instance that uniquely identify the Child Session.
This value cannot be null.

Throws
IllegalArgumentException if no Child Session found bound with this callback.

dump

Added in API level 35
public void dump (PrintWriter pw)

Dumps the state of IkeSession information for the clients

Parameters
pw PrintWriter: Print writer.
This value cannot be null.

finalize

Added in API level 31
public void finalize ()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. A subclass overrides the finalize method to dispose of system resources or to perform other cleanup.

The general contract of finalize is that it is invoked if and when the Java virtual machine has determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, except as a result of an action taken by the finalization of some other object or class which is ready to be finalized. The finalize method may take any action, including making this object available again to other threads; the usual purpose of finalize, however, is to perform cleanup actions before the object is irrevocably discarded. For example, the finalize method for an object that represents an input/output connection might perform explicit I/O transactions to break the connection before the object is permanently discarded.

The finalize method of class Object performs no special action; it simply returns normally. Subclasses of Object may override this definition.

The Java programming language does not guarantee which thread will invoke the finalize method for any given object. It is guaranteed, however, that the thread that invokes finalize will not be holding any user-visible synchronization locks when finalize is invoked. If an uncaught exception is thrown by the finalize method, the exception is ignored and finalization of that object terminates.

After the finalize method has been invoked for an object, no further action is taken until the Java virtual machine has again determined that there is no longer any means by which this object can be accessed by any thread that has not yet died, including possible actions by other objects or classes which are ready to be finalized, at which point the object may be discarded.

The finalize method is never invoked more than once by a Java virtual machine for any given object.

Any exception thrown by the finalize method causes the finalization of this object to be halted, but is otherwise ignored.

kill

Added in API level 31
public void kill ()

Terminate (forcibly close) the IKE session.

Upon closing, IkeSessionCallback.onClosed() will be fired.

Closing an IKE Session implicitly closes any remaining Child Sessions negotiated under it. Users SHOULD stop all outbound traffic that uses these Child Sessions (IpSecTransform pairs) before calling this method. Otherwise IPsec packets will be dropped due to the lack of a valid IpSecTransform.

Forcible closure of an IKE session will take priority over, and cancel other procedures waiting in the queue. It will also interrupt any ongoing locally initiated procedure.

openChildSession

Added in API level 31
public void openChildSession (ChildSessionParams childSessionParams, 
                ChildSessionCallback childSessionCallback)

Request a new Child Session.

Users MUST provide a unique ChildSessionCallback instance for each new Child Session.

Upon setup, ChildSessionCallback.onOpened(ChildSessionConfiguration) will be fired.

FEATURE_IPSEC_TUNNELS is required for setting up a tunnel mode Child SA.

Parameters
childSessionParams ChildSessionParams: the ChildSessionParams that contains the Child Session configurations to negotiate.
This value cannot be null.

childSessionCallback ChildSessionCallback: the ChildSessionCallback interface to notify users the state changes of the Child Session. It will be posted to the callback Executor of this IkeSession.
This value cannot be null.

Throws
IllegalArgumentException if the ChildSessionCallback is already in use.