Add a Skeleton IpSecService

-Add IpSecService with the necessary glue to connect to netd
-Add code to retrieve IpSecService from System Server

Bug: 34811227
Test: Service boots (and dumpsys works), more via b/34811227
Merged-In: I4cdcb643421141202f77a0e2f87a37012de0cd92
Change-Id: I4cdcb643421141202f77a0e2f87a37012de0cd92
This commit is contained in:
Nathan Harold
2017-03-01 18:55:06 -08:00
parent 662a01236a
commit d2a1dad9a8
3 changed files with 152 additions and 17 deletions

View File

@@ -0,0 +1,24 @@
/*
** Copyright 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
*/
interface IIpSecService
{
}

View File

@@ -18,8 +18,6 @@ package android.net;
import static com.android.internal.util.Preconditions.checkNotNull;
import android.annotation.SystemApi;
import android.content.Context;
import android.os.INetworkManagementService;
import android.os.ParcelFileDescriptor;
import android.util.AndroidException;
import dalvik.system.CloseGuard;
@@ -79,11 +77,10 @@ public final class IpSecManager {
}
}
private final Context mContext;
private final INetworkManagementService mService;
private final IIpSecService mService;
public static final class SecurityParameterIndex implements AutoCloseable {
private final Context mContext;
private final IIpSecService mService;
private final InetAddress mDestinationAddress;
private final CloseGuard mCloseGuard = CloseGuard.get();
private int mSpi;
@@ -93,9 +90,10 @@ public final class IpSecManager {
return mSpi;
}
private SecurityParameterIndex(Context context, InetAddress destinationAddress, int spi)
private SecurityParameterIndex(
IIpSecService service, InetAddress destinationAddress, int spi)
throws ResourceUnavailableException, SpiUnavailableException {
mContext = context;
mService = service;
mDestinationAddress = destinationAddress;
mSpi = spi;
mCloseGuard.open("open");
@@ -152,7 +150,7 @@ public final class IpSecManager {
public SecurityParameterIndex reserveSecurityParameterIndex(
InetAddress destinationAddress, int requestedSpi)
throws SpiUnavailableException, ResourceUnavailableException {
return new SecurityParameterIndex(mContext, destinationAddress, requestedSpi);
return new SecurityParameterIndex(mService, destinationAddress, requestedSpi);
}
/**
@@ -260,19 +258,19 @@ public final class IpSecManager {
*/
public static final class UdpEncapsulationSocket implements AutoCloseable {
private final FileDescriptor mFd;
private final Context mContext;
private final IIpSecService mService;
private final CloseGuard mCloseGuard = CloseGuard.get();
private UdpEncapsulationSocket(Context context, int port)
private UdpEncapsulationSocket(IIpSecService service, int port)
throws ResourceUnavailableException {
mContext = context;
mService = service;
mCloseGuard.open("constructor");
// TODO: go down to the kernel and get a socket on the specified
mFd = new FileDescriptor();
}
private UdpEncapsulationSocket(Context context) throws ResourceUnavailableException {
mContext = context;
private UdpEncapsulationSocket(IIpSecService service) throws ResourceUnavailableException {
mService = service;
mCloseGuard.open("constructor");
// TODO: go get a random socket on a random port
mFd = new FileDescriptor();
@@ -339,7 +337,7 @@ public final class IpSecManager {
public UdpEncapsulationSocket openUdpEncapsulationSocket(int port)
throws IOException, ResourceUnavailableException {
// Temporary code
return new UdpEncapsulationSocket(mContext, port);
return new UdpEncapsulationSocket(mService, port);
}
/**
@@ -363,7 +361,7 @@ public final class IpSecManager {
public UdpEncapsulationSocket openUdpEncapsulationSocket()
throws IOException, ResourceUnavailableException {
// Temporary code
return new UdpEncapsulationSocket(mContext);
return new UdpEncapsulationSocket(mService);
}
/**
@@ -372,8 +370,7 @@ public final class IpSecManager {
* @param context the application context for this manager
* @hide
*/
public IpSecManager(Context context, INetworkManagementService service) {
mContext = checkNotNull(context, "missing context");
public IpSecManager(IIpSecService service) {
mService = checkNotNull(service, "missing service");
}
}