Merge "Add UDP Encap Socket Support to IpSecManager" am: 4f6ec3d11d am: c530c01744 am: 3c1484c715
am: 834637a824
Change-Id: Iafed2773a6d32542b051d944341533b2190aa284
This commit is contained in:
@@ -18,6 +18,9 @@ package android.net;
|
||||
|
||||
import android.net.Network;
|
||||
import android.net.IpSecConfig;
|
||||
import android.net.IpSecUdpEncapResponse;
|
||||
import android.net.IpSecSpiResponse;
|
||||
import android.net.IpSecTransformResponse;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.ParcelFileDescriptor;
|
||||
@@ -27,16 +30,16 @@ import android.os.ParcelFileDescriptor;
|
||||
*/
|
||||
interface IIpSecService
|
||||
{
|
||||
Bundle reserveSecurityParameterIndex(
|
||||
IpSecSpiResponse reserveSecurityParameterIndex(
|
||||
int direction, in String remoteAddress, int requestedSpi, in IBinder binder);
|
||||
|
||||
void releaseSecurityParameterIndex(int resourceId);
|
||||
|
||||
Bundle openUdpEncapsulationSocket(int port, in IBinder binder);
|
||||
IpSecUdpEncapResponse openUdpEncapsulationSocket(int port, in IBinder binder);
|
||||
|
||||
void closeUdpEncapsulationSocket(in ParcelFileDescriptor socket);
|
||||
void closeUdpEncapsulationSocket(int resourceId);
|
||||
|
||||
Bundle createTransportModeTransform(in IpSecConfig c, in IBinder binder);
|
||||
IpSecTransformResponse createTransportModeTransform(in IpSecConfig c, in IBinder binder);
|
||||
|
||||
void deleteTransportModeTransform(int transformId);
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ public final class IpSecConfig implements Parcelable {
|
||||
// Minimum requirements for identifying a transform
|
||||
// SPI identifying the IPsec flow in packet processing
|
||||
// and a remote IP address
|
||||
int spi;
|
||||
int spiResourceId;
|
||||
|
||||
// Encryption Algorithm
|
||||
IpSecAlgorithm encryption;
|
||||
@@ -54,7 +54,7 @@ public final class IpSecConfig implements Parcelable {
|
||||
// For tunnel mode IPv4 UDP Encapsulation
|
||||
// IpSecTransform#ENCAP_ESP_*, such as ENCAP_ESP_OVER_UDP_IKE
|
||||
int encapType;
|
||||
int encapLocalPort;
|
||||
int encapLocalPortResourceId;
|
||||
int encapRemotePort;
|
||||
|
||||
// An interval, in seconds between the NattKeepalive packets
|
||||
@@ -69,8 +69,8 @@ public final class IpSecConfig implements Parcelable {
|
||||
return localAddress;
|
||||
}
|
||||
|
||||
public int getSpi(int direction) {
|
||||
return flow[direction].spi;
|
||||
public int getSpiResourceId(int direction) {
|
||||
return flow[direction].spiResourceId;
|
||||
}
|
||||
|
||||
public InetAddress getRemoteAddress() {
|
||||
@@ -93,8 +93,8 @@ public final class IpSecConfig implements Parcelable {
|
||||
return encapType;
|
||||
}
|
||||
|
||||
public int getEncapLocalPort() {
|
||||
return encapLocalPort;
|
||||
public int getEncapLocalResourceId() {
|
||||
return encapLocalPortResourceId;
|
||||
}
|
||||
|
||||
public int getEncapRemotePort() {
|
||||
@@ -119,14 +119,14 @@ public final class IpSecConfig implements Parcelable {
|
||||
// TODO: Use a byte array or other better method for storing IPs that can also include scope
|
||||
out.writeString((remoteAddress != null) ? remoteAddress.getHostAddress() : null);
|
||||
out.writeParcelable(network, flags);
|
||||
out.writeInt(flow[IpSecTransform.DIRECTION_IN].spi);
|
||||
out.writeInt(flow[IpSecTransform.DIRECTION_IN].spiResourceId);
|
||||
out.writeParcelable(flow[IpSecTransform.DIRECTION_IN].encryption, flags);
|
||||
out.writeParcelable(flow[IpSecTransform.DIRECTION_IN].authentication, flags);
|
||||
out.writeInt(flow[IpSecTransform.DIRECTION_OUT].spi);
|
||||
out.writeInt(flow[IpSecTransform.DIRECTION_OUT].spiResourceId);
|
||||
out.writeParcelable(flow[IpSecTransform.DIRECTION_OUT].encryption, flags);
|
||||
out.writeParcelable(flow[IpSecTransform.DIRECTION_OUT].authentication, flags);
|
||||
out.writeInt(encapType);
|
||||
out.writeInt(encapLocalPort);
|
||||
out.writeInt(encapLocalPortResourceId);
|
||||
out.writeInt(encapRemotePort);
|
||||
}
|
||||
|
||||
@@ -151,18 +151,18 @@ public final class IpSecConfig implements Parcelable {
|
||||
localAddress = readInetAddressFromParcel(in);
|
||||
remoteAddress = readInetAddressFromParcel(in);
|
||||
network = (Network) in.readParcelable(Network.class.getClassLoader());
|
||||
flow[IpSecTransform.DIRECTION_IN].spi = in.readInt();
|
||||
flow[IpSecTransform.DIRECTION_IN].spiResourceId = in.readInt();
|
||||
flow[IpSecTransform.DIRECTION_IN].encryption =
|
||||
(IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader());
|
||||
flow[IpSecTransform.DIRECTION_IN].authentication =
|
||||
(IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader());
|
||||
flow[IpSecTransform.DIRECTION_OUT].spi = in.readInt();
|
||||
flow[IpSecTransform.DIRECTION_OUT].spiResourceId = in.readInt();
|
||||
flow[IpSecTransform.DIRECTION_OUT].encryption =
|
||||
(IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader());
|
||||
flow[IpSecTransform.DIRECTION_OUT].authentication =
|
||||
(IpSecAlgorithm) in.readParcelable(IpSecAlgorithm.class.getClassLoader());
|
||||
encapType = in.readInt();
|
||||
encapLocalPort = in.readInt();
|
||||
encapLocalPortResourceId = in.readInt();
|
||||
encapRemotePort = in.readInt();
|
||||
}
|
||||
|
||||
|
||||
@@ -19,10 +19,10 @@ import static com.android.internal.util.Preconditions.checkNotNull;
|
||||
|
||||
import android.annotation.NonNull;
|
||||
import android.os.Binder;
|
||||
import android.os.Bundle;
|
||||
import android.os.ParcelFileDescriptor;
|
||||
import android.os.RemoteException;
|
||||
import android.util.AndroidException;
|
||||
import android.util.Log;
|
||||
import dalvik.system.CloseGuard;
|
||||
import java.io.FileDescriptor;
|
||||
import java.io.IOException;
|
||||
@@ -57,12 +57,6 @@ public final class IpSecManager {
|
||||
public static final int SPI_UNAVAILABLE = 2;
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
public static final String KEY_STATUS = "status";
|
||||
/** @hide */
|
||||
public static final String KEY_RESOURCE_ID = "resourceId";
|
||||
/** @hide */
|
||||
public static final String KEY_SPI = "spi";
|
||||
/** @hide */
|
||||
public static final int INVALID_RESOURCE_ID = 0;
|
||||
|
||||
@@ -128,7 +122,11 @@ public final class IpSecManager {
|
||||
*/
|
||||
@Override
|
||||
public void close() {
|
||||
mSpi = INVALID_SECURITY_PARAMETER_INDEX;
|
||||
try {
|
||||
mService.releaseSecurityParameterIndex(mResourceId);
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
mCloseGuard.close();
|
||||
}
|
||||
|
||||
@@ -147,7 +145,7 @@ public final class IpSecManager {
|
||||
mService = service;
|
||||
mRemoteAddress = remoteAddress;
|
||||
try {
|
||||
Bundle result =
|
||||
IpSecSpiResponse result =
|
||||
mService.reserveSecurityParameterIndex(
|
||||
direction, remoteAddress.getHostAddress(), spi, new Binder());
|
||||
|
||||
@@ -155,7 +153,7 @@ public final class IpSecManager {
|
||||
throw new NullPointerException("Received null response from IpSecService");
|
||||
}
|
||||
|
||||
int status = result.getInt(KEY_STATUS);
|
||||
int status = result.status;
|
||||
switch (status) {
|
||||
case Status.OK:
|
||||
break;
|
||||
@@ -168,8 +166,8 @@ public final class IpSecManager {
|
||||
throw new RuntimeException(
|
||||
"Unknown status returned by IpSecService: " + status);
|
||||
}
|
||||
mSpi = result.getInt(KEY_SPI);
|
||||
mResourceId = result.getInt(KEY_RESOURCE_ID);
|
||||
mSpi = result.spi;
|
||||
mResourceId = result.resourceId;
|
||||
|
||||
if (mSpi == INVALID_SECURITY_PARAMETER_INDEX) {
|
||||
throw new RuntimeException("Invalid SPI returned by IpSecService: " + status);
|
||||
@@ -185,6 +183,11 @@ public final class IpSecManager {
|
||||
}
|
||||
mCloseGuard.open("open");
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
int getResourceId() {
|
||||
return mResourceId;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -201,8 +204,7 @@ public final class IpSecManager {
|
||||
* @throws SpiUnavailableException indicating that a particular SPI cannot be reserved
|
||||
*/
|
||||
public SecurityParameterIndex reserveSecurityParameterIndex(
|
||||
int direction, InetAddress remoteAddress)
|
||||
throws ResourceUnavailableException {
|
||||
int direction, InetAddress remoteAddress) throws ResourceUnavailableException {
|
||||
try {
|
||||
return new SecurityParameterIndex(
|
||||
mService,
|
||||
@@ -251,7 +253,9 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void applyTransportModeTransform(Socket socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
applyTransportModeTransform(ParcelFileDescriptor.fromSocket(socket), transform);
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(socket)) {
|
||||
applyTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -269,15 +273,8 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void applyTransportModeTransform(DatagramSocket socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
applyTransportModeTransform(ParcelFileDescriptor.fromDatagramSocket(socket), transform);
|
||||
}
|
||||
|
||||
/* Call down to activate a transform */
|
||||
private void applyTransportModeTransform(ParcelFileDescriptor pfd, IpSecTransform transform) {
|
||||
try {
|
||||
mService.applyTransportModeTransform(pfd, transform.getResourceId());
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromDatagramSocket(socket)) {
|
||||
applyTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -295,7 +292,22 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void applyTransportModeTransform(FileDescriptor socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
applyTransportModeTransform(new ParcelFileDescriptor(socket), transform);
|
||||
// We dup() the FileDescriptor here because if we don't, then the ParcelFileDescriptor()
|
||||
// constructor takes control and closes the user's FD when we exit the method
|
||||
// This is behaviorally the same as the other versions, but the PFD constructor does not
|
||||
// dup() automatically, whereas PFD.fromSocket() and PDF.fromDatagramSocket() do dup().
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.dup(socket)) {
|
||||
applyTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
/* Call down to activate a transform */
|
||||
private void applyTransportModeTransform(ParcelFileDescriptor pfd, IpSecTransform transform) {
|
||||
try {
|
||||
mService.applyTransportModeTransform(pfd, transform.getResourceId());
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -324,7 +336,9 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void removeTransportModeTransform(Socket socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
removeTransportModeTransform(ParcelFileDescriptor.fromSocket(socket), transform);
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromSocket(socket)) {
|
||||
removeTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -340,7 +354,9 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void removeTransportModeTransform(DatagramSocket socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
removeTransportModeTransform(ParcelFileDescriptor.fromDatagramSocket(socket), transform);
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.fromDatagramSocket(socket)) {
|
||||
removeTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -355,7 +371,9 @@ public final class IpSecManager {
|
||||
*/
|
||||
public void removeTransportModeTransform(FileDescriptor socket, IpSecTransform transform)
|
||||
throws IOException {
|
||||
removeTransportModeTransform(new ParcelFileDescriptor(socket), transform);
|
||||
try (ParcelFileDescriptor pfd = ParcelFileDescriptor.dup(socket)) {
|
||||
removeTransportModeTransform(pfd, transform);
|
||||
}
|
||||
}
|
||||
|
||||
/* Call down to activate a transform */
|
||||
@@ -388,33 +406,48 @@ public final class IpSecManager {
|
||||
* FileDescriptor. Instead, disposing of this socket requires a call to close().
|
||||
*/
|
||||
public static final class UdpEncapsulationSocket implements AutoCloseable {
|
||||
private final FileDescriptor mFd;
|
||||
private final ParcelFileDescriptor mPfd;
|
||||
private final IIpSecService mService;
|
||||
private final int mResourceId;
|
||||
private final int mPort;
|
||||
private final CloseGuard mCloseGuard = CloseGuard.get();
|
||||
|
||||
private UdpEncapsulationSocket(@NonNull IIpSecService service, int port)
|
||||
throws ResourceUnavailableException {
|
||||
throws ResourceUnavailableException, IOException {
|
||||
mService = service;
|
||||
try {
|
||||
IpSecUdpEncapResponse result =
|
||||
mService.openUdpEncapsulationSocket(port, new Binder());
|
||||
switch (result.status) {
|
||||
case Status.OK:
|
||||
break;
|
||||
case Status.RESOURCE_UNAVAILABLE:
|
||||
throw new ResourceUnavailableException(
|
||||
"No more Sockets may be allocated by this requester.");
|
||||
default:
|
||||
throw new RuntimeException(
|
||||
"Unknown status returned by IpSecService: " + result.status);
|
||||
}
|
||||
mResourceId = result.resourceId;
|
||||
mPort = result.port;
|
||||
mPfd = result.fileDescriptor;
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
mCloseGuard.open("constructor");
|
||||
// TODO: go down to the kernel and get a socket on the specified
|
||||
mFd = new FileDescriptor();
|
||||
}
|
||||
|
||||
private UdpEncapsulationSocket(IIpSecService service) throws ResourceUnavailableException {
|
||||
mService = service;
|
||||
mCloseGuard.open("constructor");
|
||||
// TODO: go get a random socket on a random port
|
||||
mFd = new FileDescriptor();
|
||||
}
|
||||
|
||||
/** Access the inner UDP Encapsulation Socket */
|
||||
public FileDescriptor getSocket() {
|
||||
return mFd;
|
||||
if (mPfd == null) {
|
||||
return null;
|
||||
}
|
||||
return mPfd.getFileDescriptor();
|
||||
}
|
||||
|
||||
/** Retrieve the port number of the inner encapsulation socket */
|
||||
public int getPort() {
|
||||
return 0; // TODO get the port number from the Socket;
|
||||
return mPort;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -429,7 +462,18 @@ public final class IpSecManager {
|
||||
* @param fd a file descriptor previously returned as a UDP Encapsulation socket.
|
||||
*/
|
||||
public void close() throws IOException {
|
||||
// TODO: Go close the socket
|
||||
try {
|
||||
mService.closeUdpEncapsulationSocket(mResourceId);
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
|
||||
try {
|
||||
mPfd.close();
|
||||
} catch (IOException e) {
|
||||
Log.e(TAG, "Failed to close UDP Encapsulation Socket with Port= " + mPort);
|
||||
throw e;
|
||||
}
|
||||
mCloseGuard.close();
|
||||
}
|
||||
|
||||
@@ -438,9 +482,13 @@ public final class IpSecManager {
|
||||
if (mCloseGuard != null) {
|
||||
mCloseGuard.warnIfOpen();
|
||||
}
|
||||
|
||||
close();
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
int getResourceId() {
|
||||
return mResourceId;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -467,7 +515,13 @@ public final class IpSecManager {
|
||||
// socket.
|
||||
public UdpEncapsulationSocket openUdpEncapsulationSocket(int port)
|
||||
throws IOException, ResourceUnavailableException {
|
||||
// Temporary code
|
||||
/*
|
||||
* Most range checking is done in the service, but this version of the constructor expects
|
||||
* a valid port number, and zero cannot be checked after being passed to the service.
|
||||
*/
|
||||
if (port == 0) {
|
||||
throw new IllegalArgumentException("Specified port must be a valid port number!");
|
||||
}
|
||||
return new UdpEncapsulationSocket(mService, port);
|
||||
}
|
||||
|
||||
@@ -491,8 +545,7 @@ public final class IpSecManager {
|
||||
// socket.
|
||||
public UdpEncapsulationSocket openUdpEncapsulationSocket()
|
||||
throws IOException, ResourceUnavailableException {
|
||||
// Temporary code
|
||||
return new UdpEncapsulationSocket(mService);
|
||||
return new UdpEncapsulationSocket(mService, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
20
core/java/android/net/IpSecSpiResponse.aidl
Normal file
20
core/java/android/net/IpSecSpiResponse.aidl
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.net;
|
||||
|
||||
/** @hide */
|
||||
parcelable IpSecSpiResponse;
|
||||
78
core/java/android/net/IpSecSpiResponse.java
Normal file
78
core/java/android/net/IpSecSpiResponse.java
Normal file
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package android.net;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
|
||||
/**
|
||||
* This class is used to return an SPI and corresponding status from the IpSecService to an
|
||||
* IpSecManager.SecurityParameterIndex.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public final class IpSecSpiResponse implements Parcelable {
|
||||
private static final String TAG = "IpSecSpiResponse";
|
||||
|
||||
public final int resourceId;
|
||||
public final int status;
|
||||
public final int spi;
|
||||
// Parcelable Methods
|
||||
|
||||
@Override
|
||||
public int describeContents() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel out, int flags) {
|
||||
out.writeInt(status);
|
||||
out.writeInt(resourceId);
|
||||
out.writeInt(spi);
|
||||
}
|
||||
|
||||
public IpSecSpiResponse(int inStatus, int inResourceId, int inSpi) {
|
||||
status = inStatus;
|
||||
resourceId = inResourceId;
|
||||
spi = inSpi;
|
||||
}
|
||||
|
||||
public IpSecSpiResponse(int inStatus) {
|
||||
if (inStatus == IpSecManager.Status.OK) {
|
||||
throw new IllegalArgumentException("Valid status implies other args must be provided");
|
||||
}
|
||||
status = inStatus;
|
||||
resourceId = IpSecManager.INVALID_RESOURCE_ID;
|
||||
spi = IpSecManager.INVALID_SECURITY_PARAMETER_INDEX;
|
||||
}
|
||||
|
||||
private IpSecSpiResponse(Parcel in) {
|
||||
status = in.readInt();
|
||||
resourceId = in.readInt();
|
||||
spi = in.readInt();
|
||||
}
|
||||
|
||||
public static final Parcelable.Creator<IpSecSpiResponse> CREATOR =
|
||||
new Parcelable.Creator<IpSecSpiResponse>() {
|
||||
public IpSecSpiResponse createFromParcel(Parcel in) {
|
||||
return new IpSecSpiResponse(in);
|
||||
}
|
||||
|
||||
public IpSecSpiResponse[] newArray(int size) {
|
||||
return new IpSecSpiResponse[size];
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -16,15 +16,12 @@
|
||||
package android.net;
|
||||
|
||||
import static android.net.IpSecManager.INVALID_RESOURCE_ID;
|
||||
import static android.net.IpSecManager.KEY_RESOURCE_ID;
|
||||
import static android.net.IpSecManager.KEY_STATUS;
|
||||
|
||||
import android.annotation.IntDef;
|
||||
import android.annotation.NonNull;
|
||||
import android.annotation.SystemApi;
|
||||
import android.content.Context;
|
||||
import android.os.Binder;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.RemoteException;
|
||||
import android.os.ServiceManager;
|
||||
@@ -77,24 +74,24 @@ public final class IpSecTransform implements AutoCloseable {
|
||||
/** @hide */
|
||||
public static final int ENCAP_NONE = 0;
|
||||
|
||||
/**
|
||||
* IpSec traffic will be encapsulated within UDP as per <a
|
||||
* href="https://tools.ietf.org/html/rfc3948">RFC3498</a>.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final int ENCAP_ESPINUDP = 1;
|
||||
|
||||
/**
|
||||
* IpSec traffic will be encapsulated within a UDP header with an additional 8-byte header pad
|
||||
* (of '0'-value bytes) that prevents traffic from being interpreted as IKE or as ESP over UDP.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final int ENCAP_ESPINUDP_NONIKE = 2;
|
||||
public static final int ENCAP_ESPINUDP_NON_IKE = 1;
|
||||
|
||||
/**
|
||||
* IpSec traffic will be encapsulated within UDP as per <a
|
||||
* href="https://tools.ietf.org/html/rfc3948">RFC3498</a>.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final int ENCAP_ESPINUDP = 2;
|
||||
|
||||
/** @hide */
|
||||
@IntDef(value = {ENCAP_NONE, ENCAP_ESPINUDP, ENCAP_ESPINUDP_NONIKE})
|
||||
@IntDef(value = {ENCAP_NONE, ENCAP_ESPINUDP, ENCAP_ESPINUDP_NON_IKE})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface EncapType {}
|
||||
|
||||
@@ -139,10 +136,11 @@ public final class IpSecTransform implements AutoCloseable {
|
||||
synchronized (this) {
|
||||
try {
|
||||
IIpSecService svc = getIpSecService();
|
||||
Bundle result = svc.createTransportModeTransform(mConfig, new Binder());
|
||||
int status = result.getInt(KEY_STATUS);
|
||||
IpSecTransformResponse result =
|
||||
svc.createTransportModeTransform(mConfig, new Binder());
|
||||
int status = result.status;
|
||||
checkResultStatusAndThrow(status);
|
||||
mResourceId = result.getInt(KEY_RESOURCE_ID, INVALID_RESOURCE_ID);
|
||||
mResourceId = result.resourceId;
|
||||
|
||||
/* Keepalive will silently fail if not needed by the config; but, if needed and
|
||||
* it fails to start, we need to bail because a transform will not be reliable
|
||||
@@ -263,7 +261,10 @@ public final class IpSecTransform implements AutoCloseable {
|
||||
mConfig.getNattKeepaliveInterval(),
|
||||
mKeepaliveCallback,
|
||||
mConfig.getLocalAddress(),
|
||||
mConfig.getEncapLocalPort(),
|
||||
0x1234, /* FIXME: get the real port number again,
|
||||
which we need to retrieve from the provided
|
||||
EncapsulationSocket, and which isn't currently
|
||||
stashed in IpSecConfig */
|
||||
mConfig.getRemoteAddress());
|
||||
try {
|
||||
// FIXME: this is still a horrible way to fudge the synchronous callback
|
||||
@@ -360,7 +361,7 @@ public final class IpSecTransform implements AutoCloseable {
|
||||
@TransformDirection int direction, IpSecManager.SecurityParameterIndex spi) {
|
||||
// TODO: convert to using the resource Id of the SPI. Then build() can validate
|
||||
// the owner in the IpSecService
|
||||
mConfig.flow[direction].spi = spi.getSpi();
|
||||
mConfig.flow[direction].spiResourceId = spi.getResourceId();
|
||||
return this;
|
||||
}
|
||||
|
||||
@@ -394,7 +395,7 @@ public final class IpSecTransform implements AutoCloseable {
|
||||
IpSecManager.UdpEncapsulationSocket localSocket, int remotePort) {
|
||||
// TODO: check encap type is valid.
|
||||
mConfig.encapType = ENCAP_ESPINUDP;
|
||||
mConfig.encapLocalPort = localSocket.getPort(); // TODO: plug in the encap socket
|
||||
mConfig.encapLocalPortResourceId = localSocket.getResourceId();
|
||||
mConfig.encapRemotePort = remotePort;
|
||||
return this;
|
||||
}
|
||||
|
||||
20
core/java/android/net/IpSecTransformResponse.aidl
Normal file
20
core/java/android/net/IpSecTransformResponse.aidl
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.net;
|
||||
|
||||
/** @hide */
|
||||
parcelable IpSecTransformResponse;
|
||||
73
core/java/android/net/IpSecTransformResponse.java
Normal file
73
core/java/android/net/IpSecTransformResponse.java
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package android.net;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
|
||||
/**
|
||||
* This class is used to return an IpSecTransform resource Id and and corresponding status from the
|
||||
* IpSecService to an IpSecTransform object.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public final class IpSecTransformResponse implements Parcelable {
|
||||
private static final String TAG = "IpSecTransformResponse";
|
||||
|
||||
public final int resourceId;
|
||||
public final int status;
|
||||
// Parcelable Methods
|
||||
|
||||
@Override
|
||||
public int describeContents() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel out, int flags) {
|
||||
out.writeInt(status);
|
||||
out.writeInt(resourceId);
|
||||
}
|
||||
|
||||
public IpSecTransformResponse(int inStatus) {
|
||||
if (inStatus == IpSecManager.Status.OK) {
|
||||
throw new IllegalArgumentException("Valid status implies other args must be provided");
|
||||
}
|
||||
status = inStatus;
|
||||
resourceId = IpSecManager.INVALID_RESOURCE_ID;
|
||||
}
|
||||
|
||||
public IpSecTransformResponse(int inStatus, int inResourceId) {
|
||||
status = inStatus;
|
||||
resourceId = inResourceId;
|
||||
}
|
||||
|
||||
private IpSecTransformResponse(Parcel in) {
|
||||
status = in.readInt();
|
||||
resourceId = in.readInt();
|
||||
}
|
||||
|
||||
public static final Parcelable.Creator<IpSecTransformResponse> CREATOR =
|
||||
new Parcelable.Creator<IpSecTransformResponse>() {
|
||||
public IpSecTransformResponse createFromParcel(Parcel in) {
|
||||
return new IpSecTransformResponse(in);
|
||||
}
|
||||
|
||||
public IpSecTransformResponse[] newArray(int size) {
|
||||
return new IpSecTransformResponse[size];
|
||||
}
|
||||
};
|
||||
}
|
||||
20
core/java/android/net/IpSecUdpEncapResponse.aidl
Normal file
20
core/java/android/net/IpSecUdpEncapResponse.aidl
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.net;
|
||||
|
||||
/** @hide */
|
||||
parcelable IpSecUdpEncapResponse;
|
||||
96
core/java/android/net/IpSecUdpEncapResponse.java
Normal file
96
core/java/android/net/IpSecUdpEncapResponse.java
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (C) 2017 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package android.net;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.ParcelFileDescriptor;
|
||||
import android.os.Parcelable;
|
||||
import java.io.FileDescriptor;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* This class is used to return a UDP Socket and corresponding status from the IpSecService to an
|
||||
* IpSecManager.UdpEncapsulationSocket.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public final class IpSecUdpEncapResponse implements Parcelable {
|
||||
private static final String TAG = "IpSecUdpEncapResponse";
|
||||
|
||||
public final int resourceId;
|
||||
public final int port;
|
||||
public final int status;
|
||||
// There is a weird asymmetry with FileDescriptor: you can write a FileDescriptor
|
||||
// but you read a ParcelFileDescriptor. To circumvent this, when we receive a FD
|
||||
// from the user, we immediately create a ParcelFileDescriptor DUP, which we invalidate
|
||||
// on writeParcel() by setting the flag to do close-on-write.
|
||||
// TODO: tests to ensure this doesn't leak
|
||||
public final ParcelFileDescriptor fileDescriptor;
|
||||
|
||||
// Parcelable Methods
|
||||
|
||||
@Override
|
||||
public int describeContents() {
|
||||
return (fileDescriptor != null) ? Parcelable.CONTENTS_FILE_DESCRIPTOR : 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel out, int flags) {
|
||||
out.writeInt(status);
|
||||
out.writeInt(resourceId);
|
||||
out.writeInt(port);
|
||||
out.writeParcelable(fileDescriptor, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
|
||||
}
|
||||
|
||||
public IpSecUdpEncapResponse(int inStatus) {
|
||||
if (inStatus == IpSecManager.Status.OK) {
|
||||
throw new IllegalArgumentException("Valid status implies other args must be provided");
|
||||
}
|
||||
status = inStatus;
|
||||
resourceId = IpSecManager.INVALID_RESOURCE_ID;
|
||||
port = -1;
|
||||
fileDescriptor = null; // yes I know it's redundant, but readability
|
||||
}
|
||||
|
||||
public IpSecUdpEncapResponse(int inStatus, int inResourceId, int inPort, FileDescriptor inFd)
|
||||
throws IOException {
|
||||
if (inStatus == IpSecManager.Status.OK && inFd == null) {
|
||||
throw new IllegalArgumentException("Valid status implies FD must be non-null");
|
||||
}
|
||||
status = inStatus;
|
||||
resourceId = inResourceId;
|
||||
port = inPort;
|
||||
fileDescriptor = (status == IpSecManager.Status.OK) ? ParcelFileDescriptor.dup(inFd) : null;
|
||||
}
|
||||
|
||||
private IpSecUdpEncapResponse(Parcel in) {
|
||||
status = in.readInt();
|
||||
resourceId = in.readInt();
|
||||
port = in.readInt();
|
||||
fileDescriptor = in.readParcelable(ParcelFileDescriptor.class.getClassLoader());
|
||||
}
|
||||
|
||||
public static final Parcelable.Creator<IpSecUdpEncapResponse> CREATOR =
|
||||
new Parcelable.Creator<IpSecUdpEncapResponse>() {
|
||||
public IpSecUdpEncapResponse createFromParcel(Parcel in) {
|
||||
return new IpSecUdpEncapResponse(in);
|
||||
}
|
||||
|
||||
public IpSecUdpEncapResponse[] newArray(int size) {
|
||||
return new IpSecUdpEncapResponse[size];
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user