Merge "Merge commit '270226b0' into manualmerge" into klp-dev
This commit is contained in:
@@ -16,22 +16,16 @@
|
||||
|
||||
package android.net;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.Notification;
|
||||
import android.app.NotificationManager;
|
||||
import android.app.PendingIntent;
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.content.res.Resources;
|
||||
import android.database.ContentObserver;
|
||||
import android.net.ConnectivityManager;
|
||||
import android.net.IConnectivityManager;
|
||||
import android.net.wifi.WifiInfo;
|
||||
import android.net.wifi.WifiManager;
|
||||
import android.os.Handler;
|
||||
import android.os.UserHandle;
|
||||
import android.os.Message;
|
||||
import android.os.RemoteException;
|
||||
import android.os.SystemClock;
|
||||
@@ -46,7 +40,6 @@ import android.telephony.CellInfoGsm;
|
||||
import android.telephony.CellInfoLte;
|
||||
import android.telephony.CellInfoWcdma;
|
||||
import android.telephony.TelephonyManager;
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.android.internal.util.State;
|
||||
import com.android.internal.util.StateMachine;
|
||||
@@ -60,8 +53,6 @@ import java.net.URL;
|
||||
import java.net.UnknownHostException;
|
||||
import java.util.List;
|
||||
|
||||
import com.android.internal.R;
|
||||
|
||||
/**
|
||||
* This class allows captive portal detection on a network.
|
||||
* @hide
|
||||
@@ -71,7 +62,6 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
private static final String TAG = "CaptivePortalTracker";
|
||||
|
||||
private static final String DEFAULT_SERVER = "clients3.google.com";
|
||||
private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
|
||||
|
||||
private static final int SOCKET_TIMEOUT_MS = 10000;
|
||||
|
||||
@@ -93,7 +83,6 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
|
||||
private String mServer;
|
||||
private String mUrl;
|
||||
private boolean mNotificationShown = false;
|
||||
private boolean mIsCaptivePortalCheckEnabled = false;
|
||||
private IConnectivityManager mConnService;
|
||||
private TelephonyManager mTelephonyManager;
|
||||
@@ -192,12 +181,12 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
private class DefaultState extends State {
|
||||
@Override
|
||||
public void enter() {
|
||||
if (DBG) log(getName() + "\n");
|
||||
setNotificationOff();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean processMessage(Message message) {
|
||||
if (DBG) log(getName() + message.toString() + "\n");
|
||||
if (DBG) log(getName() + message.toString());
|
||||
switch (message.what) {
|
||||
case CMD_DETECT_PORTAL:
|
||||
NetworkInfo info = (NetworkInfo) message.obj;
|
||||
@@ -219,23 +208,24 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
private class NoActiveNetworkState extends State {
|
||||
@Override
|
||||
public void enter() {
|
||||
if (DBG) log(getName() + "\n");
|
||||
mNetworkInfo = null;
|
||||
/* Clear any previous notification */
|
||||
setNotificationVisible(false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean processMessage(Message message) {
|
||||
if (DBG) log(getName() + message.toString() + "\n");
|
||||
if (DBG) log(getName() + message.toString());
|
||||
InetAddress server;
|
||||
NetworkInfo info;
|
||||
switch (message.what) {
|
||||
case CMD_CONNECTIVITY_CHANGE:
|
||||
info = (NetworkInfo) message.obj;
|
||||
if (info.isConnected() && isActiveNetwork(info)) {
|
||||
mNetworkInfo = info;
|
||||
transitionTo(mDelayedCaptiveCheckState);
|
||||
if (info.getType() == ConnectivityManager.TYPE_WIFI) {
|
||||
if (info.isConnected() && isActiveNetwork(info)) {
|
||||
mNetworkInfo = info;
|
||||
transitionTo(mDelayedCaptiveCheckState);
|
||||
}
|
||||
} else {
|
||||
log(getName() + " not a wifi connectivity change, ignore");
|
||||
}
|
||||
break;
|
||||
default:
|
||||
@@ -248,7 +238,7 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
private class ActiveNetworkState extends State {
|
||||
@Override
|
||||
public void enter() {
|
||||
if (DBG) log(getName() + "\n");
|
||||
setNotificationOff();
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -281,7 +271,6 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
private class DelayedCaptiveCheckState extends State {
|
||||
@Override
|
||||
public void enter() {
|
||||
if (DBG) log(getName() + "\n");
|
||||
Message message = obtainMessage(CMD_DELAYED_CAPTIVE_CHECK, ++mDelayedCheckToken, 0);
|
||||
if (mDeviceProvisioned) {
|
||||
sendMessageDelayed(message, DELAYED_CHECK_INTERVAL_MS);
|
||||
@@ -292,7 +281,7 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
|
||||
@Override
|
||||
public boolean processMessage(Message message) {
|
||||
if (DBG) log(getName() + message.toString() + "\n");
|
||||
if (DBG) log(getName() + message.toString());
|
||||
switch (message.what) {
|
||||
case CMD_DELAYED_CAPTIVE_CHECK:
|
||||
if (message.arg1 == mDelayedCheckToken) {
|
||||
@@ -308,7 +297,12 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
if (captive) {
|
||||
// Setup Wizard will assist the user in connecting to a captive
|
||||
// portal, so make the notification visible unless during setup
|
||||
setNotificationVisible(true);
|
||||
try {
|
||||
mConnService.setProvisioningNotificationVisible(true,
|
||||
mNetworkInfo.getType(), mNetworkInfo.getExtraInfo(), mUrl);
|
||||
} catch(RemoteException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Intent intent = new Intent(
|
||||
@@ -366,6 +360,15 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
return false;
|
||||
}
|
||||
|
||||
private void setNotificationOff() {
|
||||
try {
|
||||
mConnService.setProvisioningNotificationVisible(false, ConnectivityManager.TYPE_NONE,
|
||||
null, null);
|
||||
} catch (RemoteException e) {
|
||||
log("setNotificationOff: " + e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Do a URL fetch on a known server to see if we get the data we expect.
|
||||
* Measure the response time and broadcast that.
|
||||
@@ -435,77 +438,6 @@ public class CaptivePortalTracker extends StateMachine {
|
||||
return null;
|
||||
}
|
||||
|
||||
private void setNotificationVisible(boolean visible) {
|
||||
// if it should be hidden and it is already hidden, then noop
|
||||
if (!visible && !mNotificationShown) {
|
||||
if (DBG) log("setNotivicationVisible: false and not shown, so noop");
|
||||
return;
|
||||
}
|
||||
|
||||
Resources r = Resources.getSystem();
|
||||
NotificationManager notificationManager = (NotificationManager) mContext
|
||||
.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||
|
||||
if (visible) {
|
||||
CharSequence title;
|
||||
CharSequence details;
|
||||
int icon;
|
||||
String url = null;
|
||||
switch (mNetworkInfo.getType()) {
|
||||
case ConnectivityManager.TYPE_WIFI:
|
||||
title = r.getString(R.string.wifi_available_sign_in, 0);
|
||||
details = r.getString(R.string.network_available_sign_in_detailed,
|
||||
mNetworkInfo.getExtraInfo());
|
||||
icon = R.drawable.stat_notify_wifi_in_range;
|
||||
url = mUrl;
|
||||
break;
|
||||
case ConnectivityManager.TYPE_MOBILE:
|
||||
title = r.getString(R.string.network_available_sign_in, 0);
|
||||
// TODO: Change this to pull from NetworkInfo once a printable
|
||||
// name has been added to it
|
||||
details = mTelephonyManager.getNetworkOperatorName();
|
||||
icon = R.drawable.stat_notify_rssi_in_range;
|
||||
try {
|
||||
url = mConnService.getMobileProvisioningUrl();
|
||||
if (TextUtils.isEmpty(url)) {
|
||||
url = mConnService.getMobileRedirectedProvisioningUrl();
|
||||
}
|
||||
} catch(RemoteException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
if (TextUtils.isEmpty(url)) {
|
||||
url = mUrl;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
title = r.getString(R.string.network_available_sign_in, 0);
|
||||
details = r.getString(R.string.network_available_sign_in_detailed,
|
||||
mNetworkInfo.getExtraInfo());
|
||||
icon = R.drawable.stat_notify_rssi_in_range;
|
||||
url = mUrl;
|
||||
break;
|
||||
}
|
||||
|
||||
Notification notification = new Notification();
|
||||
notification.when = 0;
|
||||
notification.icon = icon;
|
||||
notification.flags = Notification.FLAG_AUTO_CANCEL;
|
||||
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
|
||||
Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
|
||||
notification.tickerText = title;
|
||||
notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
|
||||
|
||||
if (DBG) log("setNotivicationVisible: make visible");
|
||||
notificationManager.notify(NOTIFICATION_ID, 1, notification);
|
||||
} else {
|
||||
if (DBG) log("setNotivicationVisible: cancel notification");
|
||||
notificationManager.cancel(NOTIFICATION_ID, 1);
|
||||
}
|
||||
mNotificationShown = visible;
|
||||
}
|
||||
|
||||
private void sendFailedCaptivePortalCheckBroadcast(long requestTimestampMs) {
|
||||
sendNetworkConditionsBroadcast(false /* response received */, false /* ignored */,
|
||||
requestTimestampMs, 0 /* ignored */);
|
||||
|
||||
@@ -623,6 +623,29 @@ public class ConnectivityManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns details about the Provisioning or currently active default data network. When
|
||||
* connected, this network is the default route for outgoing connections.
|
||||
* You should always check {@link NetworkInfo#isConnected()} before initiating
|
||||
* network traffic. This may return {@code null} when there is no default
|
||||
* network.
|
||||
*
|
||||
* @return a {@link NetworkInfo} object for the current default network
|
||||
* or {@code null} if no network default network is currently active
|
||||
*
|
||||
* <p>This method requires the call to hold the permission
|
||||
* {@link android.Manifest.permission#ACCESS_NETWORK_STATE}.
|
||||
*
|
||||
* {@hide}
|
||||
*/
|
||||
public NetworkInfo getProvisioningOrActiveNetworkInfo() {
|
||||
try {
|
||||
return mService.getProvisioningOrActiveNetworkInfo();
|
||||
} catch (RemoteException e) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the IP information for the current default network.
|
||||
*
|
||||
@@ -1357,63 +1380,19 @@ public class ConnectivityManager {
|
||||
}
|
||||
|
||||
/**
|
||||
* The ResultReceiver resultCode for checkMobileProvisioning (CMP_RESULT_CODE)
|
||||
*/
|
||||
|
||||
/**
|
||||
* No connection was possible to the network.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_CONNECTION = 0;
|
||||
|
||||
/**
|
||||
* A connection was made to the internet, all is well.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_CONNECTABLE = 1;
|
||||
|
||||
/**
|
||||
* A connection was made but there was a redirection, we appear to be in walled garden.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_REDIRECTED = 2;
|
||||
|
||||
/**
|
||||
* A connection was made but no dns server was available to resolve a name to address.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
* Check mobile provisioning.
|
||||
*
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_DNS = 3;
|
||||
|
||||
/**
|
||||
* A connection was made but could not open a TCP connection.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
* {@hide}
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_TCP_CONNECTION = 4;
|
||||
|
||||
/**
|
||||
* Check mobile provisioning. The resultCode passed to
|
||||
* onReceiveResult will be one of the CMP_RESULT_CODE_xxxx values above.
|
||||
* This may take a minute or more to complete.
|
||||
*
|
||||
* @param sendNotificaiton, when true a notification will be sent to user.
|
||||
* @param suggestedTimeOutMs, timeout in milliseconds
|
||||
* @param resultReceiver needs to be supplied to receive the result
|
||||
*
|
||||
* @return time out that will be used, maybe less that suggestedTimeOutMs
|
||||
* -1 if an error.
|
||||
*
|
||||
* {@hide}
|
||||
*/
|
||||
public int checkMobileProvisioning(boolean sendNotification, int suggestedTimeOutMs,
|
||||
ResultReceiver resultReceiver) {
|
||||
public int checkMobileProvisioning(int suggestedTimeOutMs) {
|
||||
int timeOutMs = -1;
|
||||
try {
|
||||
timeOutMs = mService.checkMobileProvisioning(sendNotification, suggestedTimeOutMs,
|
||||
resultReceiver);
|
||||
timeOutMs = mService.checkMobileProvisioning(suggestedTimeOutMs);
|
||||
} catch (RemoteException e) {
|
||||
}
|
||||
return timeOutMs;
|
||||
@@ -1481,4 +1460,20 @@ public class ConnectivityManager {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set sign in error notification to visible or in visible
|
||||
*
|
||||
* @param visible
|
||||
* @param networkType
|
||||
*
|
||||
* {@hide}
|
||||
*/
|
||||
public void setProvisioningNotificationVisible(boolean visible, int networkType,
|
||||
String extraInfo, String url) {
|
||||
try {
|
||||
mService.setProvisioningNotificationVisible(visible, networkType, extraInfo, url);
|
||||
} catch (RemoteException e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,6 +50,8 @@ interface IConnectivityManager
|
||||
NetworkInfo getNetworkInfo(int networkType);
|
||||
NetworkInfo[] getAllNetworkInfo();
|
||||
|
||||
NetworkInfo getProvisioningOrActiveNetworkInfo();
|
||||
|
||||
boolean isNetworkSupported(int networkType);
|
||||
|
||||
LinkProperties getActiveLinkProperties();
|
||||
@@ -141,7 +143,7 @@ interface IConnectivityManager
|
||||
|
||||
int findConnectionTypeForIface(in String iface);
|
||||
|
||||
int checkMobileProvisioning(boolean sendNotification, int suggestedTimeOutMs, in ResultReceiver resultReceiver);
|
||||
int checkMobileProvisioning(int suggestedTimeOutMs);
|
||||
|
||||
String getMobileProvisioningUrl();
|
||||
|
||||
@@ -153,4 +155,5 @@ interface IConnectivityManager
|
||||
|
||||
LinkInfo[] getAllLinkInfo();
|
||||
|
||||
void setProvisioningNotificationVisible(boolean visible, int networkType, in String extraInfo, in String url);
|
||||
}
|
||||
|
||||
@@ -61,8 +61,12 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
private ITelephony mPhoneService;
|
||||
|
||||
private String mApnType;
|
||||
private NetworkInfo mNetworkInfo;
|
||||
private boolean mTeardownRequested = false;
|
||||
private Handler mTarget;
|
||||
private Context mContext;
|
||||
private LinkProperties mLinkProperties;
|
||||
private LinkCapabilities mLinkCapabilities;
|
||||
private boolean mPrivateDnsRouteSet = false;
|
||||
private boolean mDefaultRouteSet = false;
|
||||
|
||||
@@ -106,6 +110,7 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
|
||||
IntentFilter filter = new IntentFilter();
|
||||
filter.addAction(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
|
||||
filter.addAction(TelephonyIntents.ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN);
|
||||
filter.addAction(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED);
|
||||
|
||||
mContext.registerReceiver(new MobileDataStateReceiver(), filter);
|
||||
@@ -184,10 +189,41 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
public void releaseWakeLock() {
|
||||
}
|
||||
|
||||
private void updateLinkProperitesAndCapatilities(Intent intent) {
|
||||
mLinkProperties = intent.getParcelableExtra(
|
||||
PhoneConstants.DATA_LINK_PROPERTIES_KEY);
|
||||
if (mLinkProperties == null) {
|
||||
loge("CONNECTED event did not supply link properties.");
|
||||
mLinkProperties = new LinkProperties();
|
||||
}
|
||||
mLinkCapabilities = intent.getParcelableExtra(
|
||||
PhoneConstants.DATA_LINK_CAPABILITIES_KEY);
|
||||
if (mLinkCapabilities == null) {
|
||||
loge("CONNECTED event did not supply link capabilities.");
|
||||
mLinkCapabilities = new LinkCapabilities();
|
||||
}
|
||||
}
|
||||
|
||||
private class MobileDataStateReceiver extends BroadcastReceiver {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
if (intent.getAction().equals(TelephonyIntents.
|
||||
ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN)) {
|
||||
String apnName = intent.getStringExtra(PhoneConstants.DATA_APN_KEY);
|
||||
String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
|
||||
if (!TextUtils.equals(mApnType, apnType)) {
|
||||
return;
|
||||
}
|
||||
if (DBG) {
|
||||
log("Broadcast received: " + intent.getAction() + " apnType=" + apnType
|
||||
+ " apnName=" + apnName);
|
||||
}
|
||||
|
||||
// Make us in the connecting state until we make a new TYPE_MOBILE_PROVISIONING
|
||||
mMobileDataState = PhoneConstants.DataState.CONNECTING;
|
||||
updateLinkProperitesAndCapatilities(intent);
|
||||
setDetailedState(DetailedState.CONNECTED_TO_PROVISIONING_NETWORK, "", apnName);
|
||||
} else if (intent.getAction().equals(TelephonyIntents.
|
||||
ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
|
||||
String apnType = intent.getStringExtra(PhoneConstants.DATA_APN_TYPE_KEY);
|
||||
if (VDBG) {
|
||||
@@ -249,18 +285,7 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
setDetailedState(DetailedState.SUSPENDED, reason, apnName);
|
||||
break;
|
||||
case CONNECTED:
|
||||
mLinkProperties = intent.getParcelableExtra(
|
||||
PhoneConstants.DATA_LINK_PROPERTIES_KEY);
|
||||
if (mLinkProperties == null) {
|
||||
loge("CONNECTED event did not supply link properties.");
|
||||
mLinkProperties = new LinkProperties();
|
||||
}
|
||||
mLinkCapabilities = intent.getParcelableExtra(
|
||||
PhoneConstants.DATA_LINK_CAPABILITIES_KEY);
|
||||
if (mLinkCapabilities == null) {
|
||||
loge("CONNECTED event did not supply link capabilities.");
|
||||
mLinkCapabilities = new LinkCapabilities();
|
||||
}
|
||||
updateLinkProperitesAndCapatilities(intent);
|
||||
setDetailedState(DetailedState.CONNECTED, reason, apnName);
|
||||
break;
|
||||
}
|
||||
@@ -319,8 +344,8 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
String reason = intent.getStringExtra(PhoneConstants.FAILURE_REASON_KEY);
|
||||
String apnName = intent.getStringExtra(PhoneConstants.DATA_APN_KEY);
|
||||
if (DBG) {
|
||||
log("Received " + intent.getAction() +
|
||||
" broadcast" + (reason == null ? "" : "(" + reason + ")"));
|
||||
log("Broadcast received: " + intent.getAction() +
|
||||
" reason=" + reason == null ? "null" : reason);
|
||||
}
|
||||
setDetailedState(DetailedState.FAILED, reason, apnName);
|
||||
} else {
|
||||
@@ -412,6 +437,13 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
return (setEnableApn(mApnType, false) != PhoneConstants.APN_REQUEST_FAILED);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true if this is ready to operate
|
||||
*/
|
||||
public boolean isReady() {
|
||||
return mDataConnectionTrackerAc != null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void captivePortalCheckComplete() {
|
||||
// not implemented
|
||||
@@ -574,6 +606,40 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Inform DCT mobile provisioning has started, it ends when provisioning completes.
|
||||
*/
|
||||
public void enableMobileProvisioning(String url) {
|
||||
if (DBG) log("enableMobileProvisioning(url=" + url + ")");
|
||||
final AsyncChannel channel = mDataConnectionTrackerAc;
|
||||
if (channel != null) {
|
||||
Message msg = Message.obtain();
|
||||
msg.what = DctConstants.CMD_ENABLE_MOBILE_PROVISIONING;
|
||||
msg.setData(Bundle.forPair(DctConstants.PROVISIONING_URL_KEY, url));
|
||||
channel.sendMessage(msg);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Return if this network is the provisioning network. Valid only if connected.
|
||||
* @param met
|
||||
*/
|
||||
public boolean isProvisioningNetwork() {
|
||||
boolean retVal;
|
||||
try {
|
||||
Message msg = Message.obtain();
|
||||
msg.what = DctConstants.CMD_IS_PROVISIONING_APN;
|
||||
msg.setData(Bundle.forPair(DctConstants.APN_TYPE_KEY, mApnType));
|
||||
Message result = mDataConnectionTrackerAc.sendMessageSynchronously(msg);
|
||||
retVal = result.arg1 == DctConstants.ENABLED;
|
||||
} catch (NullPointerException e) {
|
||||
loge("isProvisioningNetwork: X " + e);
|
||||
retVal = false;
|
||||
}
|
||||
if (DBG) log("isProvisioningNetwork: retVal=" + retVal);
|
||||
return retVal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addStackedLink(LinkProperties link) {
|
||||
mLinkProperties.addStackedLink(link);
|
||||
|
||||
@@ -84,6 +84,12 @@ public class NetworkInfo implements Parcelable {
|
||||
VERIFYING_POOR_LINK,
|
||||
/** Checking if network is a captive portal */
|
||||
CAPTIVE_PORTAL_CHECK,
|
||||
/**
|
||||
* Network is connected to provisioning network
|
||||
* TODO: Probably not needed when we add TYPE_PROVISIONING_NETWORK
|
||||
* @hide
|
||||
*/
|
||||
CONNECTED_TO_PROVISIONING_NETWORK
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -108,6 +114,7 @@ public class NetworkInfo implements Parcelable {
|
||||
stateMap.put(DetailedState.DISCONNECTED, State.DISCONNECTED);
|
||||
stateMap.put(DetailedState.FAILED, State.DISCONNECTED);
|
||||
stateMap.put(DetailedState.BLOCKED, State.DISCONNECTED);
|
||||
stateMap.put(DetailedState.CONNECTED_TO_PROVISIONING_NETWORK, State.CONNECTED);
|
||||
}
|
||||
|
||||
private int mNetworkType;
|
||||
|
||||
@@ -207,6 +207,7 @@
|
||||
<protected-broadcast android:name="android.intent.action.DREAMING_STARTED" />
|
||||
<protected-broadcast android:name="android.intent.action.DREAMING_STOPPED" />
|
||||
<protected-broadcast android:name="android.intent.action.ANY_DATA_STATE" />
|
||||
<protected-broadcast android:name="android.intent.action.DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN" />
|
||||
|
||||
<protected-broadcast android:name="com.android.server.WifiManager.action.START_SCAN" />
|
||||
<protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" />
|
||||
@@ -249,6 +250,9 @@
|
||||
<protected-broadcast android:name="android.location.GPS_FIX_CHANGE" />
|
||||
<protected-broadcast android:name="android.net.proxy.PAC_REFRESH" />
|
||||
|
||||
<protected-broadcast
|
||||
android:name="com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION" />
|
||||
|
||||
<!-- ====================================== -->
|
||||
<!-- Permissions for things that cost money -->
|
||||
<!-- ====================================== -->
|
||||
|
||||
@@ -820,6 +820,10 @@
|
||||
<!-- IP address of the dns server to use if nobody else suggests one -->
|
||||
<string name="config_default_dns_server" translatable="false">8.8.8.8</string>
|
||||
|
||||
<!-- The default mobile provisioning apn. Empty by default, maybe overridden by
|
||||
an mcc/mnc specific config.xml -->
|
||||
<string name="mobile_provisioning_apn" translatable="false"></string>
|
||||
|
||||
<!-- The default mobile provisioning url. Empty by default, maybe overridden by
|
||||
an mcc/mnc specific config.xml -->
|
||||
<string name="mobile_provisioning_url" translatable="false"></string>
|
||||
|
||||
@@ -668,6 +668,7 @@
|
||||
<java-symbol type="string" name="preposition_for_time" />
|
||||
<java-symbol type="string" name="progress_erasing" />
|
||||
<java-symbol type="string" name="progress_unmounting" />
|
||||
<java-symbol type="string" name="mobile_provisioning_apn" />
|
||||
<java-symbol type="string" name="mobile_provisioning_url" />
|
||||
<java-symbol type="string" name="mobile_redirected_provisioning_url" />
|
||||
<java-symbol type="string" name="reboot_safemode_confirm" />
|
||||
|
||||
@@ -36,6 +36,7 @@ import android.app.Notification;
|
||||
import android.app.NotificationManager;
|
||||
import android.app.PendingIntent;
|
||||
import android.bluetooth.BluetoothTetheringDataTracker;
|
||||
import android.content.ActivityNotFoundException;
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Context;
|
||||
@@ -152,6 +153,7 @@ import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Random;
|
||||
import java.util.concurrent.atomic.AtomicBoolean;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
/**
|
||||
@@ -424,9 +426,6 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
|
||||
TelephonyManager mTelephonyManager;
|
||||
|
||||
// We only want one checkMobileProvisioning after booting.
|
||||
volatile boolean mFirstProvisioningCheckStarted = false;
|
||||
|
||||
public ConnectivityService(Context context, INetworkManagementService netd,
|
||||
INetworkStatsService statsService, INetworkPolicyManager policyManager) {
|
||||
// Currently, omitting a NetworkFactory will create one internally
|
||||
@@ -656,9 +655,6 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
mSettingsObserver = new SettingsObserver(mHandler, EVENT_APPLY_GLOBAL_HTTP_PROXY);
|
||||
mSettingsObserver.observe(mContext);
|
||||
|
||||
mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
|
||||
loadGlobalProxy();
|
||||
|
||||
mDataConnectionStats = new DataConnectionStats(mContext);
|
||||
mDataConnectionStats.startMonitoring();
|
||||
|
||||
@@ -686,6 +682,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
new IntentFilter(filter));
|
||||
|
||||
mPacManager = new PacManager(mContext);
|
||||
|
||||
filter = new IntentFilter();
|
||||
filter.addAction(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
|
||||
mContext.registerReceiver(mProvisioningReceiver, filter);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -954,6 +954,46 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
return getNetworkInfo(mActiveDefaultNetwork, uid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Find the first Provisioning network.
|
||||
*
|
||||
* @return NetworkInfo or null if none.
|
||||
*/
|
||||
private NetworkInfo getProvisioningNetworkInfo() {
|
||||
enforceAccessPermission();
|
||||
|
||||
// Find the first Provisioning Network
|
||||
NetworkInfo provNi = null;
|
||||
for (NetworkInfo ni : getAllNetworkInfo()) {
|
||||
if (ni.getDetailedState()
|
||||
== NetworkInfo.DetailedState.CONNECTED_TO_PROVISIONING_NETWORK) {
|
||||
provNi = ni;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (DBG) log("getProvisioningNetworkInfo: X provNi=" + provNi);
|
||||
return provNi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Find the first Provisioning network or the ActiveDefaultNetwork
|
||||
* if there is no Provisioning network
|
||||
*
|
||||
* @return NetworkInfo or null if none.
|
||||
*/
|
||||
@Override
|
||||
public NetworkInfo getProvisioningOrActiveNetworkInfo() {
|
||||
enforceAccessPermission();
|
||||
|
||||
NetworkInfo provNi = getProvisioningNetworkInfo();
|
||||
if (provNi == null) {
|
||||
final int uid = Binder.getCallingUid();
|
||||
provNi = getNetworkInfo(mActiveDefaultNetwork, uid);
|
||||
}
|
||||
if (DBG) log("getProvisioningOrActiveNetworkInfo: X provNi=" + provNi);
|
||||
return provNi;
|
||||
}
|
||||
|
||||
public NetworkInfo getActiveNetworkInfoUnfiltered() {
|
||||
enforceAccessPermission();
|
||||
if (isNetworkTypeValid(mActiveDefaultNetwork)) {
|
||||
@@ -1316,8 +1356,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
feature);
|
||||
}
|
||||
if (network.reconnect()) {
|
||||
if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_STARTED");
|
||||
return PhoneConstants.APN_REQUEST_STARTED;
|
||||
} else {
|
||||
if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_FAILED");
|
||||
return PhoneConstants.APN_REQUEST_FAILED;
|
||||
}
|
||||
} else {
|
||||
@@ -1329,9 +1371,11 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
mNetRequestersPids[usedNetworkType].add(currentPid);
|
||||
}
|
||||
}
|
||||
if (DBG) log("startUsingNetworkFeature X: return -1 unsupported feature.");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (DBG) log("startUsingNetworkFeature X: return APN_TYPE_NOT_AVAILABLE");
|
||||
return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
|
||||
} finally {
|
||||
if (DBG) {
|
||||
@@ -1365,11 +1409,12 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
}
|
||||
}
|
||||
if (found && u != null) {
|
||||
if (VDBG) log("stopUsingNetworkFeature: X");
|
||||
// stop regardless of how many other time this proc had called start
|
||||
return stopUsingNetworkFeature(u, true);
|
||||
} else {
|
||||
// none found!
|
||||
if (VDBG) log("stopUsingNetworkFeature - not a live request, ignoring");
|
||||
if (VDBG) log("stopUsingNetworkFeature: X not a live request, ignoring");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
@@ -1952,6 +1997,9 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
*/
|
||||
if (mNetConfigs[prevNetType].isDefault()) {
|
||||
if (mActiveDefaultNetwork == prevNetType) {
|
||||
if (DBG) {
|
||||
log("tryFailover: set mActiveDefaultNetwork=-1, prevNetType=" + prevNetType);
|
||||
}
|
||||
mActiveDefaultNetwork = -1;
|
||||
}
|
||||
|
||||
@@ -2146,6 +2194,9 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
}
|
||||
|
||||
void systemReady() {
|
||||
mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
|
||||
loadGlobalProxy();
|
||||
|
||||
synchronized(this) {
|
||||
mSystemReady = true;
|
||||
if (mInitialBroadcast != null) {
|
||||
@@ -2176,10 +2227,11 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
};
|
||||
|
||||
private boolean isNewNetTypePreferredOverCurrentNetType(int type) {
|
||||
if ((type != mNetworkPreference &&
|
||||
mNetConfigs[mActiveDefaultNetwork].priority >
|
||||
mNetConfigs[type].priority) ||
|
||||
mNetworkPreference == mActiveDefaultNetwork) return false;
|
||||
if (((type != mNetworkPreference)
|
||||
&& (mNetConfigs[mActiveDefaultNetwork].priority > mNetConfigs[type].priority))
|
||||
|| (mNetworkPreference == mActiveDefaultNetwork)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -2193,6 +2245,11 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
final NetworkStateTracker thisNet = mNetTrackers[newNetType];
|
||||
final String thisIface = thisNet.getLinkProperties().getInterfaceName();
|
||||
|
||||
if (VDBG) {
|
||||
log("handleConnect: E newNetType=" + newNetType + " thisIface=" + thisIface
|
||||
+ " isFailover" + isFailover);
|
||||
}
|
||||
|
||||
// if this is a default net and other default is running
|
||||
// kill the one not preferred
|
||||
if (mNetConfigs[newNetType].isDefault()) {
|
||||
@@ -2355,6 +2412,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
private void handleConnectivityChange(int netType, boolean doReset) {
|
||||
int resetMask = doReset ? NetworkUtils.RESET_ALL_ADDRESSES : 0;
|
||||
boolean exempt = ConnectivityManager.isNetworkTypeExempt(netType);
|
||||
if (VDBG) {
|
||||
log("handleConnectivityChange: netType=" + netType + " doReset=" + doReset
|
||||
+ " resetMask=" + resetMask);
|
||||
}
|
||||
|
||||
/*
|
||||
* If a non-default network is enabled, add the host routes that
|
||||
@@ -2422,7 +2483,9 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
boolean resetDns = updateRoutes(newLp, curLp, mNetConfigs[netType].isDefault(), exempt);
|
||||
|
||||
if (resetMask != 0 || resetDns) {
|
||||
if (VDBG) log("handleConnectivityChange: resetting");
|
||||
if (curLp != null) {
|
||||
if (VDBG) log("handleConnectivityChange: resetting curLp=" + curLp);
|
||||
for (String iface : curLp.getAllInterfaceNames()) {
|
||||
if (TextUtils.isEmpty(iface) == false) {
|
||||
if (resetMask != 0) {
|
||||
@@ -2459,6 +2522,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
// Update 464xlat state.
|
||||
NetworkStateTracker tracker = mNetTrackers[netType];
|
||||
if (mClat.requiresClat(netType, tracker)) {
|
||||
|
||||
// If the connection was previously using clat, but is not using it now, stop the clat
|
||||
// daemon. Normally, this happens automatically when the connection disconnects, but if
|
||||
// the disconnect is not reported, or if the connection's LinkProperties changed for
|
||||
@@ -2512,6 +2576,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
|
||||
for (RouteInfo r : routeDiff.removed) {
|
||||
if (isLinkDefault || ! r.isDefaultRoute()) {
|
||||
if (VDBG) log("updateRoutes: default remove route r=" + r);
|
||||
removeRoute(curLp, r, TO_DEFAULT_TABLE);
|
||||
}
|
||||
if (isLinkDefault == false) {
|
||||
@@ -2849,9 +2914,8 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
public void handleMessage(Message msg) {
|
||||
NetworkInfo info;
|
||||
switch (msg.what) {
|
||||
case NetworkStateTracker.EVENT_STATE_CHANGED:
|
||||
case NetworkStateTracker.EVENT_STATE_CHANGED: {
|
||||
info = (NetworkInfo) msg.obj;
|
||||
int type = info.getType();
|
||||
NetworkInfo.State state = info.getState();
|
||||
|
||||
if (VDBG || (state == NetworkInfo.State.CONNECTED) ||
|
||||
@@ -2861,15 +2925,17 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
state + "/" + info.getDetailedState());
|
||||
}
|
||||
|
||||
// After booting we'll check once for mobile provisioning
|
||||
// if we've provisioned by and connected.
|
||||
if (!mFirstProvisioningCheckStarted
|
||||
// Since mobile has the notion of a network/apn that can be used for
|
||||
// provisioning we need to check every time we're connected as
|
||||
// CaptiveProtalTracker won't detected it because DCT doesn't report it
|
||||
// as connected as ACTION_ANY_DATA_CONNECTION_STATE_CHANGED instead its
|
||||
// reported as ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN. Which
|
||||
// is received by MDST and sent here as EVENT_STATE_CHANGED.
|
||||
if (ConnectivityManager.isNetworkTypeMobile(info.getType())
|
||||
&& (0 != Settings.Global.getInt(mContext.getContentResolver(),
|
||||
Settings.Global.DEVICE_PROVISIONED, 0))
|
||||
&& (state == NetworkInfo.State.CONNECTED)) {
|
||||
log("check provisioning after booting");
|
||||
mFirstProvisioningCheckStarted = true;
|
||||
checkMobileProvisioning(true, CheckMp.MAX_TIMEOUT_MS, null);
|
||||
checkMobileProvisioning(CheckMp.MAX_TIMEOUT_MS);
|
||||
}
|
||||
|
||||
EventLogTags.writeConnectivityStateChanged(
|
||||
@@ -2881,6 +2947,30 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
} else if (info.getDetailedState() ==
|
||||
DetailedState.CAPTIVE_PORTAL_CHECK) {
|
||||
handleCaptivePortalTrackerCheck(info);
|
||||
} else if (info.getDetailedState() ==
|
||||
DetailedState.CONNECTED_TO_PROVISIONING_NETWORK) {
|
||||
/**
|
||||
* TODO: Create ConnectivityManager.TYPE_MOBILE_PROVISIONING
|
||||
* for now its an in between network, its a network that
|
||||
* is actually a default network but we don't want it to be
|
||||
* announced as such to keep background applications from
|
||||
* trying to use it. It turns out that some still try so we
|
||||
* take the additional step of clearing any default routes
|
||||
* to the link that may have incorrectly setup by the lower
|
||||
* levels.
|
||||
*/
|
||||
LinkProperties lp = getLinkProperties(info.getType());
|
||||
if (DBG) {
|
||||
log("EVENT_STATE_CHANGED: connected to provisioning network, lp=" + lp);
|
||||
}
|
||||
|
||||
// Clear any default routes setup by the radio so
|
||||
// any activity by applications trying to use this
|
||||
// connection will fail until the provisioning network
|
||||
// is enabled.
|
||||
for (RouteInfo r : lp.getRoutes()) {
|
||||
removeRoute(lp, r, TO_DEFAULT_TABLE);
|
||||
}
|
||||
} else if (state == NetworkInfo.State.DISCONNECTED) {
|
||||
handleDisconnect(info);
|
||||
} else if (state == NetworkInfo.State.SUSPENDED) {
|
||||
@@ -2899,18 +2989,21 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
mLockdownTracker.onNetworkInfoChanged(info);
|
||||
}
|
||||
break;
|
||||
case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED:
|
||||
}
|
||||
case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED: {
|
||||
info = (NetworkInfo) msg.obj;
|
||||
// TODO: Temporary allowing network configuration
|
||||
// change not resetting sockets.
|
||||
// @see bug/4455071
|
||||
handleConnectivityChange(info.getType(), false);
|
||||
break;
|
||||
case NetworkStateTracker.EVENT_NETWORK_SUBTYPE_CHANGED:
|
||||
}
|
||||
case NetworkStateTracker.EVENT_NETWORK_SUBTYPE_CHANGED: {
|
||||
info = (NetworkInfo) msg.obj;
|
||||
type = info.getType();
|
||||
int type = info.getType();
|
||||
updateNetworkSettings(mNetTrackers[type]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3806,76 +3899,153 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
enabled));
|
||||
}
|
||||
|
||||
private boolean isMobileDataStateTrackerReady() {
|
||||
MobileDataStateTracker mdst =
|
||||
(MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
|
||||
return (mdst != null) && (mdst.isReady());
|
||||
}
|
||||
|
||||
/**
|
||||
* The ResultReceiver resultCode for checkMobileProvisioning (CMP_RESULT_CODE)
|
||||
*/
|
||||
|
||||
/**
|
||||
* No connection was possible to the network.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_CONNECTION = 0;
|
||||
|
||||
/**
|
||||
* A connection was made to the internet, all is well.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_CONNECTABLE = 1;
|
||||
|
||||
/**
|
||||
* A connection was made but there was a redirection, we appear to be in walled garden.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_REDIRECTED = 2;
|
||||
|
||||
/**
|
||||
* A connection was made but no dns server was available to resolve a name to address.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_DNS = 3;
|
||||
|
||||
/**
|
||||
* A connection was made but could not open a TCP connection.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_NO_TCP_CONNECTION = 4;
|
||||
|
||||
/**
|
||||
* The mobile network is a provisioning network.
|
||||
* This is an indication of a warm sim on a mobile network.
|
||||
*/
|
||||
public static final int CMP_RESULT_CODE_PROVISIONING_NETWORK = 5;
|
||||
|
||||
AtomicBoolean mIsCheckingMobileProvisioning = new AtomicBoolean(false);
|
||||
|
||||
@Override
|
||||
public int checkMobileProvisioning(final boolean sendNotification, int suggestedTimeOutMs,
|
||||
final ResultReceiver resultReceiver) {
|
||||
log("checkMobileProvisioning: E sendNotification=" + sendNotification
|
||||
+ " suggestedTimeOutMs=" + suggestedTimeOutMs
|
||||
+ " resultReceiver=" + resultReceiver);
|
||||
enforceChangePermission();
|
||||
|
||||
mFirstProvisioningCheckStarted = true;
|
||||
|
||||
int timeOutMs = suggestedTimeOutMs;
|
||||
if (suggestedTimeOutMs > CheckMp.MAX_TIMEOUT_MS) {
|
||||
timeOutMs = CheckMp.MAX_TIMEOUT_MS;
|
||||
}
|
||||
|
||||
// Check that mobile networks are supported
|
||||
if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
|
||||
|| !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
|
||||
log("checkMobileProvisioning: X no mobile network");
|
||||
if (resultReceiver != null) {
|
||||
resultReceiver.send(ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION, null);
|
||||
}
|
||||
return timeOutMs;
|
||||
}
|
||||
public int checkMobileProvisioning(int suggestedTimeOutMs) {
|
||||
int timeOutMs = -1;
|
||||
if (DBG) log("checkMobileProvisioning: E suggestedTimeOutMs=" + suggestedTimeOutMs);
|
||||
enforceConnectivityInternalPermission();
|
||||
|
||||
final long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
timeOutMs = suggestedTimeOutMs;
|
||||
if (suggestedTimeOutMs > CheckMp.MAX_TIMEOUT_MS) {
|
||||
timeOutMs = CheckMp.MAX_TIMEOUT_MS;
|
||||
}
|
||||
|
||||
// Check that mobile networks are supported
|
||||
if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
|
||||
|| !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
|
||||
if (DBG) log("checkMobileProvisioning: X no mobile network");
|
||||
return timeOutMs;
|
||||
}
|
||||
|
||||
// If we're already checking don't do it again
|
||||
// TODO: Add a queue of results...
|
||||
if (mIsCheckingMobileProvisioning.getAndSet(true)) {
|
||||
if (DBG) log("checkMobileProvisioning: X already checking ignore for the moment");
|
||||
return timeOutMs;
|
||||
}
|
||||
|
||||
// Start off with notification off
|
||||
setProvNotificationVisible(false, ConnectivityManager.TYPE_NONE, null, null);
|
||||
|
||||
// See if we've alreadying determined if we've got a provsioning connection
|
||||
// if so we don't need to do anything active
|
||||
MobileDataStateTracker mdstDefault = (MobileDataStateTracker)
|
||||
mNetTrackers[ConnectivityManager.TYPE_MOBILE];
|
||||
boolean isDefaultProvisioning = mdstDefault.isProvisioningNetwork();
|
||||
|
||||
MobileDataStateTracker mdstHipri = (MobileDataStateTracker)
|
||||
mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
|
||||
boolean isHipriProvisioning = mdstHipri.isProvisioningNetwork();
|
||||
|
||||
if (isDefaultProvisioning || isHipriProvisioning) {
|
||||
if (mIsNotificationVisible) {
|
||||
if (DBG) {
|
||||
log("checkMobileProvisioning: provisioning-ignore notification is visible");
|
||||
}
|
||||
} else {
|
||||
NetworkInfo ni = null;
|
||||
if (isDefaultProvisioning) {
|
||||
ni = mdstDefault.getNetworkInfo();
|
||||
}
|
||||
if (isHipriProvisioning) {
|
||||
ni = mdstHipri.getNetworkInfo();
|
||||
}
|
||||
String url = getMobileProvisioningUrl();
|
||||
if ((ni != null) && (!TextUtils.isEmpty(url))) {
|
||||
setProvNotificationVisible(true, ni.getType(), ni.getExtraInfo(), url);
|
||||
} else {
|
||||
if (DBG) log("checkMobileProvisioning: provisioning but no url, ignore");
|
||||
}
|
||||
}
|
||||
mIsCheckingMobileProvisioning.set(false);
|
||||
return timeOutMs;
|
||||
}
|
||||
|
||||
CheckMp checkMp = new CheckMp(mContext, this);
|
||||
CheckMp.CallBack cb = new CheckMp.CallBack() {
|
||||
@Override
|
||||
void onComplete(Integer result) {
|
||||
log("CheckMp.onComplete: result=" + result);
|
||||
if (resultReceiver != null) {
|
||||
log("CheckMp.onComplete: send result");
|
||||
resultReceiver.send(result, null);
|
||||
}
|
||||
if (!sendNotification) {
|
||||
log("CheckMp.onComplete: done, not sending notification");
|
||||
return;
|
||||
}
|
||||
if (DBG) log("CheckMp.onComplete: result=" + result);
|
||||
NetworkInfo ni =
|
||||
mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI].getNetworkInfo();
|
||||
switch(result) {
|
||||
case ConnectivityManager.CMP_RESULT_CODE_CONNECTABLE:
|
||||
case ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION: {
|
||||
log("CheckMp.onComplete: ignore, connected or no connection");
|
||||
case CMP_RESULT_CODE_CONNECTABLE:
|
||||
case CMP_RESULT_CODE_NO_CONNECTION: {
|
||||
if (DBG) log("CheckMp.onComplete: ignore, connected or no connection");
|
||||
break;
|
||||
}
|
||||
case ConnectivityManager.CMP_RESULT_CODE_REDIRECTED: {
|
||||
log("CheckMp.onComplete: warm sim");
|
||||
case CMP_RESULT_CODE_REDIRECTED: {
|
||||
if (DBG) log("CheckMp.onComplete: warm sim");
|
||||
String url = getMobileProvisioningUrl();
|
||||
if (TextUtils.isEmpty(url)) {
|
||||
url = getMobileRedirectedProvisioningUrl();
|
||||
}
|
||||
if (TextUtils.isEmpty(url) == false) {
|
||||
log("CheckMp.onComplete: warm sim (redirected), url=" + url);
|
||||
setNotificationVisible(true, ni, url);
|
||||
if (DBG) log("CheckMp.onComplete: warm (redirected), url=" + url);
|
||||
setProvNotificationVisible(true, ni.getType(), ni.getExtraInfo(),
|
||||
url);
|
||||
} else {
|
||||
log("CheckMp.onComplete: warm sim (redirected), no url");
|
||||
if (DBG) log("CheckMp.onComplete: warm (redirected), no url");
|
||||
}
|
||||
break;
|
||||
}
|
||||
case ConnectivityManager.CMP_RESULT_CODE_NO_DNS:
|
||||
case ConnectivityManager.CMP_RESULT_CODE_NO_TCP_CONNECTION: {
|
||||
case CMP_RESULT_CODE_NO_DNS:
|
||||
case CMP_RESULT_CODE_NO_TCP_CONNECTION: {
|
||||
String url = getMobileProvisioningUrl();
|
||||
if (TextUtils.isEmpty(url) == false) {
|
||||
log("CheckMp.onComplete: warm sim (no dns/tcp), url=" + url);
|
||||
setNotificationVisible(true, ni, url);
|
||||
if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), url=" + url);
|
||||
setProvNotificationVisible(true, ni.getType(), ni.getExtraInfo(),
|
||||
url);
|
||||
} else {
|
||||
log("CheckMp.onComplete: warm sim (no dns/tcp), no url");
|
||||
if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), no url");
|
||||
}
|
||||
break;
|
||||
}
|
||||
@@ -3884,16 +4054,16 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
break;
|
||||
}
|
||||
}
|
||||
mIsCheckingMobileProvisioning.set(false);
|
||||
}
|
||||
};
|
||||
CheckMp.Params params =
|
||||
new CheckMp.Params(checkMp.getDefaultUrl(), timeOutMs, cb);
|
||||
log("checkMobileProvisioning: params=" + params);
|
||||
setNotificationVisible(false, null, null);
|
||||
if (DBG) log("checkMobileProvisioning: params=" + params);
|
||||
checkMp.execute(params);
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(token);
|
||||
log("checkMobileProvisioning: X");
|
||||
if (DBG) log("checkMobileProvisioning: X");
|
||||
}
|
||||
return timeOutMs;
|
||||
}
|
||||
@@ -3965,26 +4135,38 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
* a known address that fetches the data we expect.
|
||||
*/
|
||||
private synchronized Integer isMobileOk(Params params) {
|
||||
Integer result = ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION;
|
||||
Integer result = CMP_RESULT_CODE_NO_CONNECTION;
|
||||
Uri orgUri = Uri.parse(params.mUrl);
|
||||
Random rand = new Random();
|
||||
mParams = params;
|
||||
|
||||
if (mCs.isNetworkSupported(ConnectivityManager.TYPE_MOBILE) == false) {
|
||||
log("isMobileOk: not mobile capable");
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION;
|
||||
result = CMP_RESULT_CODE_NO_CONNECTION;
|
||||
return result;
|
||||
}
|
||||
|
||||
try {
|
||||
// Enable fail fast as we'll do retries here and use a
|
||||
// hipri connection so the default connection stays active.
|
||||
log("isMobileOk: start hipri url=" + params.mUrl);
|
||||
mCs.setEnableFailFastMobileData(DctConstants.ENABLED);
|
||||
|
||||
// Continue trying to connect until time has run out
|
||||
long endTime = SystemClock.elapsedRealtime() + params.mTimeOutMs;
|
||||
|
||||
if (!mCs.isMobileDataStateTrackerReady()) {
|
||||
// Wait for MobileDataStateTracker to be ready.
|
||||
if (DBG) log("isMobileOk: mdst is not ready");
|
||||
while(SystemClock.elapsedRealtime() < endTime) {
|
||||
if (mCs.isMobileDataStateTrackerReady()) {
|
||||
// Enable fail fast as we'll do retries here and use a
|
||||
// hipri connection so the default connection stays active.
|
||||
if (DBG) log("isMobileOk: mdst ready, enable fail fast of mobile data");
|
||||
mCs.setEnableFailFastMobileData(DctConstants.ENABLED);
|
||||
break;
|
||||
}
|
||||
sleep(1);
|
||||
}
|
||||
}
|
||||
|
||||
log("isMobileOk: start hipri url=" + params.mUrl);
|
||||
|
||||
// First wait until we can start using hipri
|
||||
Binder binder = new Binder();
|
||||
while(SystemClock.elapsedRealtime() < endTime) {
|
||||
@@ -3996,7 +4178,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
break;
|
||||
}
|
||||
if (VDBG) log("isMobileOk: hipri not started yet");
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION;
|
||||
result = CMP_RESULT_CODE_NO_CONNECTION;
|
||||
sleep(1);
|
||||
}
|
||||
|
||||
@@ -4009,15 +4191,26 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
NetworkInfo.State state = mCs
|
||||
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
|
||||
if (state != NetworkInfo.State.CONNECTED) {
|
||||
if (VDBG) {
|
||||
if (true/*VDBG*/) {
|
||||
log("isMobileOk: not connected ni=" +
|
||||
mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
|
||||
}
|
||||
sleep(1);
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_NO_CONNECTION;
|
||||
result = CMP_RESULT_CODE_NO_CONNECTION;
|
||||
continue;
|
||||
}
|
||||
|
||||
// Hipri has started check if this is a provisioning url
|
||||
MobileDataStateTracker mdst = (MobileDataStateTracker)
|
||||
mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
|
||||
if (mdst.isProvisioningNetwork()) {
|
||||
if (DBG) log("isMobileOk: isProvisioningNetwork is true, no TCP conn");
|
||||
result = CMP_RESULT_CODE_NO_TCP_CONNECTION;
|
||||
return result;
|
||||
} else {
|
||||
if (DBG) log("isMobileOk: isProvisioningNetwork is false, continue");
|
||||
}
|
||||
|
||||
// Get of the addresses associated with the url host. We need to use the
|
||||
// address otherwise HttpURLConnection object will use the name to get
|
||||
// the addresses and is will try every address but that will bypass the
|
||||
@@ -4028,7 +4221,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
addresses = InetAddress.getAllByName(orgUri.getHost());
|
||||
} catch (UnknownHostException e) {
|
||||
log("isMobileOk: UnknownHostException");
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_NO_DNS;
|
||||
result = CMP_RESULT_CODE_NO_DNS;
|
||||
return result;
|
||||
}
|
||||
log("isMobileOk: addresses=" + inetAddressesToString(addresses));
|
||||
@@ -4093,9 +4286,9 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
urlConn.setRequestProperty("Connection", "close");
|
||||
int responseCode = urlConn.getResponseCode();
|
||||
if (responseCode == 204) {
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_CONNECTABLE;
|
||||
result = CMP_RESULT_CODE_CONNECTABLE;
|
||||
} else {
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_REDIRECTED;
|
||||
result = CMP_RESULT_CODE_REDIRECTED;
|
||||
}
|
||||
log("isMobileOk: connected responseCode=" + responseCode);
|
||||
urlConn.disconnect();
|
||||
@@ -4109,7 +4302,7 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
}
|
||||
}
|
||||
}
|
||||
result = ConnectivityManager.CMP_RESULT_CODE_NO_TCP_CONNECTION;
|
||||
result = CMP_RESULT_CODE_NO_TCP_CONNECTION;
|
||||
log("isMobileOk: loops|timed out");
|
||||
return result;
|
||||
} catch (Exception e) {
|
||||
@@ -4123,6 +4316,23 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
mCs.setEnableFailFastMobileData(DctConstants.DISABLED);
|
||||
mCs.stopUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
|
||||
Phone.FEATURE_ENABLE_HIPRI);
|
||||
|
||||
// Wait for hipri to disconnect.
|
||||
long endTime = SystemClock.elapsedRealtime() + 5000;
|
||||
|
||||
while(SystemClock.elapsedRealtime() < endTime) {
|
||||
NetworkInfo.State state = mCs
|
||||
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
|
||||
if (state != NetworkInfo.State.DISCONNECTED) {
|
||||
if (VDBG) {
|
||||
log("isMobileOk: connected ni=" +
|
||||
mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
|
||||
}
|
||||
sleep(1);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
log("isMobileOk: X result=" + result);
|
||||
}
|
||||
return result;
|
||||
@@ -4188,10 +4398,55 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
}
|
||||
}
|
||||
|
||||
private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
|
||||
// TODO: Move to ConnectivityManager and make public?
|
||||
private static final String CONNECTED_TO_PROVISIONING_NETWORK_ACTION =
|
||||
"com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION";
|
||||
|
||||
private void setNotificationVisible(boolean visible, NetworkInfo networkInfo, String url) {
|
||||
log("setNotificationVisible: E visible=" + visible + " ni=" + networkInfo + " url=" + url);
|
||||
private BroadcastReceiver mProvisioningReceiver = new BroadcastReceiver() {
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
if (intent.getAction().equals(CONNECTED_TO_PROVISIONING_NETWORK_ACTION)) {
|
||||
handleMobileProvisioningAction(intent.getStringExtra("EXTRA_URL"));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
private void handleMobileProvisioningAction(String url) {
|
||||
// Notication mark notification as not visible
|
||||
setProvNotificationVisible(false, ConnectivityManager.TYPE_NONE, null, null);
|
||||
|
||||
// If provisioning network handle as a special case,
|
||||
// otherwise launch browser with the intent directly.
|
||||
NetworkInfo ni = getProvisioningNetworkInfo();
|
||||
if ((ni != null) && ni.getDetailedState() ==
|
||||
NetworkInfo.DetailedState.CONNECTED_TO_PROVISIONING_NETWORK) {
|
||||
if (DBG) log("handleMobileProvisioningAction: on provisioning network");
|
||||
MobileDataStateTracker mdst = (MobileDataStateTracker)
|
||||
mNetTrackers[ConnectivityManager.TYPE_MOBILE];
|
||||
mdst.enableMobileProvisioning(url);
|
||||
} else {
|
||||
if (DBG) log("handleMobileProvisioningAction: on default network");
|
||||
Intent newIntent =
|
||||
new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
|
||||
Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
try {
|
||||
mContext.startActivity(newIntent);
|
||||
} catch (ActivityNotFoundException e) {
|
||||
loge("handleMobileProvisioningAction: startActivity failed" + e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
|
||||
private volatile boolean mIsNotificationVisible = false;
|
||||
|
||||
private void setProvNotificationVisible(boolean visible, int networkType, String extraInfo,
|
||||
String url) {
|
||||
if (DBG) {
|
||||
log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
|
||||
+ " extraInfo=" + extraInfo + " url=" + url);
|
||||
}
|
||||
|
||||
Resources r = Resources.getSystem();
|
||||
NotificationManager notificationManager = (NotificationManager) mContext
|
||||
@@ -4201,50 +4456,64 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
CharSequence title;
|
||||
CharSequence details;
|
||||
int icon;
|
||||
switch (networkInfo.getType()) {
|
||||
Intent intent;
|
||||
Notification notification = new Notification();
|
||||
switch (networkType) {
|
||||
case ConnectivityManager.TYPE_WIFI:
|
||||
log("setNotificationVisible: TYPE_WIFI");
|
||||
title = r.getString(R.string.wifi_available_sign_in, 0);
|
||||
details = r.getString(R.string.network_available_sign_in_detailed,
|
||||
networkInfo.getExtraInfo());
|
||||
extraInfo);
|
||||
icon = R.drawable.stat_notify_wifi_in_range;
|
||||
intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
|
||||
Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
|
||||
break;
|
||||
case ConnectivityManager.TYPE_MOBILE:
|
||||
case ConnectivityManager.TYPE_MOBILE_HIPRI:
|
||||
log("setNotificationVisible: TYPE_MOBILE|HIPRI");
|
||||
title = r.getString(R.string.network_available_sign_in, 0);
|
||||
// TODO: Change this to pull from NetworkInfo once a printable
|
||||
// name has been added to it
|
||||
details = mTelephonyManager.getNetworkOperatorName();
|
||||
icon = R.drawable.stat_notify_rssi_in_range;
|
||||
intent = new Intent(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
|
||||
intent.putExtra("EXTRA_URL", url);
|
||||
intent.setFlags(0);
|
||||
notification.contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
|
||||
break;
|
||||
default:
|
||||
log("setNotificationVisible: other type=" + networkInfo.getType());
|
||||
title = r.getString(R.string.network_available_sign_in, 0);
|
||||
details = r.getString(R.string.network_available_sign_in_detailed,
|
||||
networkInfo.getExtraInfo());
|
||||
extraInfo);
|
||||
icon = R.drawable.stat_notify_rssi_in_range;
|
||||
intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
|
||||
Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
|
||||
break;
|
||||
}
|
||||
|
||||
Notification notification = new Notification();
|
||||
notification.when = 0;
|
||||
notification.icon = icon;
|
||||
notification.flags = Notification.FLAG_AUTO_CANCEL;
|
||||
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
|
||||
Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
|
||||
notification.tickerText = title;
|
||||
notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
|
||||
|
||||
log("setNotificaitionVisible: notify notificaiton=" + notification);
|
||||
notificationManager.notify(NOTIFICATION_ID, 1, notification);
|
||||
try {
|
||||
notificationManager.notify(NOTIFICATION_ID, 1, notification);
|
||||
} catch (NullPointerException npe) {
|
||||
loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
|
||||
npe.printStackTrace();
|
||||
}
|
||||
} else {
|
||||
log("setNotificaitionVisible: cancel");
|
||||
notificationManager.cancel(NOTIFICATION_ID, 1);
|
||||
try {
|
||||
notificationManager.cancel(NOTIFICATION_ID, 1);
|
||||
} catch (NullPointerException npe) {
|
||||
loge("setNotificaitionVisible: cancel notificationManager npe=" + npe);
|
||||
npe.printStackTrace();
|
||||
}
|
||||
}
|
||||
log("setNotificationVisible: X visible=" + visible + " ni=" + networkInfo + " url=" + url);
|
||||
mIsNotificationVisible = visible;
|
||||
}
|
||||
|
||||
/** Location to an updatable file listing carrier provisioning urls.
|
||||
@@ -4373,6 +4642,13 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
return url;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setProvisioningNotificationVisible(boolean visible, int networkType,
|
||||
String extraInfo, String url) {
|
||||
enforceConnectivityInternalPermission();
|
||||
setProvNotificationVisible(visible, networkType, extraInfo, url);
|
||||
}
|
||||
|
||||
private void onUserStart(int userId) {
|
||||
synchronized(mVpns) {
|
||||
Vpn userVpn = mVpns.get(userId);
|
||||
|
||||
@@ -94,6 +94,8 @@ public class DctConstants {
|
||||
public static final int EVENT_DISCONNECT_DC_RETRYING = BASE + 34;
|
||||
public static final int EVENT_DATA_SETUP_COMPLETE_ERROR = BASE + 35;
|
||||
public static final int CMD_SET_ENABLE_FAIL_FAST_MOBILE_DATA = BASE + 36;
|
||||
public static final int CMD_ENABLE_MOBILE_PROVISIONING = BASE + 37;
|
||||
public static final int CMD_IS_PROVISIONING_APN = BASE + 38;
|
||||
|
||||
/***** Constants *****/
|
||||
|
||||
@@ -113,4 +115,5 @@ public class DctConstants {
|
||||
public static final int ENABLED = 1;
|
||||
|
||||
public static final String APN_TYPE_KEY = "apnType";
|
||||
public static final String PROVISIONING_URL_KEY = "provisioningUrl";
|
||||
}
|
||||
|
||||
@@ -145,6 +145,29 @@ public class TelephonyIntents {
|
||||
public static final String ACTION_ANY_DATA_CONNECTION_STATE_CHANGED
|
||||
= "android.intent.action.ANY_DATA_STATE";
|
||||
|
||||
/**
|
||||
* Broadcast Action: Occurs when a data connection connects to a provisioning apn
|
||||
* and is broadcast by the low level data connection code.
|
||||
* The intent will have the following extra values:</p>
|
||||
* <ul>
|
||||
* <li><em>apn</em> - A string that is the APN associated with this
|
||||
* connection.</li>
|
||||
* <li><em>apnType</em> - A string array of APN types associated with
|
||||
* this connection. The APN type <code>"*"</code> is a special
|
||||
* type that means this APN services all types.</li>
|
||||
* <li><em>linkProperties</em> - The <code>LinkProperties</code> for this APN</li>
|
||||
* <li><em>linkCapabilities</em> - The <code>linkCapabilities</code> for this APN</li>
|
||||
* <li><em>iface</em> - A string that is the name of the interface</li>
|
||||
* </ul>
|
||||
*
|
||||
* <p class="note">
|
||||
* Requires the READ_PHONE_STATE permission.
|
||||
*
|
||||
* <p class="note">This is a protected intent that can only be sent
|
||||
* by the system.
|
||||
*/
|
||||
public static final String ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN
|
||||
= "android.intent.action.DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN";
|
||||
|
||||
/**
|
||||
* Broadcast Action: An attempt to establish a data connection has failed.
|
||||
|
||||
Reference in New Issue
Block a user