MobileDataStateTracker.java revision a64bf834ffa677405af1c87c9f53eed0cd3853ce
1/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.net;
18
19import android.content.BroadcastReceiver;
20import android.content.Context;
21import android.content.Intent;
22import android.content.IntentFilter;
23import android.os.RemoteException;
24import android.os.Handler;
25import android.os.ServiceManager;
26import android.os.SystemProperties;
27import com.android.internal.telephony.ITelephony;
28import com.android.internal.telephony.Phone;
29import com.android.internal.telephony.TelephonyIntents;
30import android.net.NetworkInfo.DetailedState;
31import android.telephony.TelephonyManager;
32import android.util.Log;
33import android.text.TextUtils;
34
35/**
36 * Track the state of mobile data connectivity. This is done by
37 * receiving broadcast intents from the Phone process whenever
38 * the state of data connectivity changes.
39 *
40 * {@hide}
41 */
42public class MobileDataStateTracker extends NetworkStateTracker {
43
44    private static final String TAG = "MobileDataStateTracker";
45    private static final boolean DBG = true;
46
47    private Phone.DataState mMobileDataState;
48    private ITelephony mPhoneService;
49
50    private String mApnType;
51    private boolean mEnabled;
52    private BroadcastReceiver mStateReceiver;
53
54    /**
55     * Create a new MobileDataStateTracker
56     * @param context the application context of the caller
57     * @param target a message handler for getting callbacks about state changes
58     * @param netType the ConnectivityManager network type
59     * @param apnType the Phone apnType
60     * @param tag the name of this network
61     */
62    public MobileDataStateTracker(Context context, Handler target,
63            int netType, String apnType, String tag) {
64        super(context, target, netType,
65                TelephonyManager.getDefault().getNetworkType(), tag,
66                TelephonyManager.getDefault().getNetworkTypeName());
67        mApnType = apnType;
68        mPhoneService = null;
69        if(netType == ConnectivityManager.TYPE_MOBILE) {
70            mEnabled = true;
71        } else {
72            mEnabled = false;
73        }
74
75        mDnsPropNames = new String[] {
76                "net.rmnet0.dns1",
77                "net.rmnet0.dns2",
78                "net.eth0.dns1",
79                "net.eth0.dns2",
80                "net.eth0.dns3",
81                "net.eth0.dns4",
82                "net.gprs.dns1",
83                "net.gprs.dns2",
84                "net.ppp0.dns1",
85                "net.ppp0.dns2"};
86
87    }
88
89    /**
90     * Begin monitoring mobile data connectivity.
91     */
92    public void startMonitoring() {
93        IntentFilter filter =
94                new IntentFilter(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
95        filter.addAction(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED);
96        filter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
97
98        mStateReceiver = new MobileDataStateReceiver();
99        Intent intent = mContext.registerReceiver(mStateReceiver, filter);
100        if (intent != null)
101            mMobileDataState = getMobileDataState(intent);
102        else
103            mMobileDataState = Phone.DataState.DISCONNECTED;
104    }
105
106    private Phone.DataState getMobileDataState(Intent intent) {
107        String str = intent.getStringExtra(Phone.STATE_KEY);
108        if (str != null) {
109            String apnTypeList =
110                    intent.getStringExtra(Phone.DATA_APN_TYPES_KEY);
111            if (isApnTypeIncluded(apnTypeList)) {
112                return Enum.valueOf(Phone.DataState.class, str);
113            }
114        }
115        return Phone.DataState.DISCONNECTED;
116    }
117
118    private boolean isApnTypeIncluded(String typeList) {
119        /* comma seperated list - split and check */
120        if (typeList == null)
121            return false;
122
123        String[] list = typeList.split(",");
124        for(int i=0; i< list.length; i++) {
125            if (TextUtils.equals(list[i], mApnType) ||
126                TextUtils.equals(list[i], Phone.APN_TYPE_ALL)) {
127                return true;
128            }
129        }
130        return false;
131    }
132
133    private class MobileDataStateReceiver extends BroadcastReceiver {
134        public void onReceive(Context context, Intent intent) {
135            synchronized(this) {
136                if (intent.getAction().equals(TelephonyIntents.
137                        ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
138                    Phone.DataState state = getMobileDataState(intent);
139                    String reason = intent.getStringExtra(Phone.STATE_CHANGE_REASON_KEY);
140                    String apnName = intent.getStringExtra(Phone.DATA_APN_KEY);
141                    String apnTypeList = intent.getStringExtra(Phone.DATA_APN_TYPES_KEY);
142
143                    boolean unavailable = intent.getBooleanExtra(Phone.NETWORK_UNAVAILABLE_KEY,
144                            false);
145                    if (DBG) Log.d(TAG, mApnType + " Received " + intent.getAction() +
146                            " broadcast - state = " + state + ", oldstate = " + mMobileDataState +
147                            ", unavailable = " + unavailable + ", reason = " +
148                            (reason == null ? "(unspecified)" : reason));
149
150                    if (isApnTypeIncluded(apnTypeList)) {
151                        if (mEnabled == false) {
152                            // if we're not enabled but the APN Type is supported by this connection
153                            // we should record the interface name if one's provided.  If the user
154                            // turns on this network we will need the interfacename but won't get
155                            // a fresh connected message - TODO fix this..
156                            if (state == Phone.DataState.CONNECTED) {
157                                if (DBG) Log.d(TAG, "replacing old mInterfaceName (" +
158                                        mInterfaceName + ") with " +
159                                        intent.getStringExtra(Phone.DATA_IFACE_NAME_KEY) +
160                                        " for " + mApnType);
161                                mInterfaceName = intent.getStringExtra(Phone.DATA_IFACE_NAME_KEY);
162                            }
163                            if (DBG) Log.d(TAG, "  dropped - mEnabled = false");
164                            return;
165                        }
166                    } else {
167                        if (DBG) Log.d(TAG, "  dropped - wrong Apn");
168                        return;
169                    }
170
171                    mNetworkInfo.setIsAvailable(!unavailable);
172                    if (mMobileDataState != state) {
173                        mMobileDataState = state;
174                        switch (state) {
175                            case DISCONNECTED:
176                                if(isTeardownRequested()) {
177                                    mEnabled = false;
178                                    setTeardownRequested(false);
179                                }
180
181                                setDetailedState(DetailedState.DISCONNECTED, reason, apnName);
182                                if (mInterfaceName != null) {
183                                    NetworkUtils.resetConnections(mInterfaceName);
184                                }
185                                if (DBG) Log.d(TAG, "clearing mInterfaceName for "+ mApnType +
186                                        " as it DISCONNECTED");
187                                mInterfaceName = null;
188                                mDefaultGatewayAddr = 0;
189                                break;
190                            case CONNECTING:
191                                setDetailedState(DetailedState.CONNECTING, reason, apnName);
192                                break;
193                            case SUSPENDED:
194                                setDetailedState(DetailedState.SUSPENDED, reason, apnName);
195                                break;
196                            case CONNECTED:
197                                mInterfaceName = intent.getStringExtra(Phone.DATA_IFACE_NAME_KEY);
198                                if (mInterfaceName == null) {
199                                    Log.d(TAG, "CONNECTED event did not supply interface name.");
200                                }
201                                setDetailedState(DetailedState.CONNECTED, reason, apnName);
202                                break;
203                        }
204                    }
205                } else if (intent.getAction().
206                        equals(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED)) {
207                    mEnabled = false;
208                    String reason = intent.getStringExtra(Phone.FAILURE_REASON_KEY);
209                    String apnName = intent.getStringExtra(Phone.DATA_APN_KEY);
210                    if (DBG) Log.d(TAG, "Received " + intent.getAction() + " broadcast" +
211                            reason == null ? "" : "(" + reason + ")");
212                    setDetailedState(DetailedState.FAILED, reason, apnName);
213                }
214                TelephonyManager tm = TelephonyManager.getDefault();
215                setRoamingStatus(tm.isNetworkRoaming());
216                setSubtype(tm.getNetworkType(), tm.getNetworkTypeName());
217            }
218        }
219    }
220
221    private void getPhoneService(boolean forceRefresh) {
222        if ((mPhoneService == null) || forceRefresh) {
223            mPhoneService = ITelephony.Stub.asInterface(ServiceManager.getService("phone"));
224        }
225    }
226
227    /**
228     * Report whether data connectivity is possible.
229     */
230    public boolean isAvailable() {
231        getPhoneService(false);
232
233        /*
234         * If the phone process has crashed in the past, we'll get a
235         * RemoteException and need to re-reference the service.
236         */
237        for (int retry = 0; retry < 2; retry++) {
238            if (mPhoneService == null) break;
239
240            try {
241                return mPhoneService.isDataConnectivityPossible();
242            } catch (RemoteException e) {
243                // First-time failed, get the phone service again
244                if (retry == 0) getPhoneService(true);
245            }
246        }
247
248        return false;
249    }
250
251    /**
252     * {@inheritDoc}
253     * The mobile data network subtype indicates what generation network technology is in effect,
254     * e.g., GPRS, EDGE, UMTS, etc.
255     */
256    public int getNetworkSubtype() {
257        return TelephonyManager.getDefault().getNetworkType();
258    }
259
260    /**
261     * Return the system properties name associated with the tcp buffer sizes
262     * for this network.
263     */
264    public String getTcpBufferSizesPropName() {
265        String networkTypeStr = "unknown";
266        TelephonyManager tm = new TelephonyManager(mContext);
267        //TODO We have to edit the parameter for getNetworkType regarding CDMA
268        switch(tm.getNetworkType()) {
269        case TelephonyManager.NETWORK_TYPE_GPRS:
270            networkTypeStr = "gprs";
271            break;
272        case TelephonyManager.NETWORK_TYPE_EDGE:
273            networkTypeStr = "edge";
274            break;
275        case TelephonyManager.NETWORK_TYPE_UMTS:
276            networkTypeStr = "umts";
277            break;
278        case TelephonyManager.NETWORK_TYPE_CDMA:
279            networkTypeStr = "cdma";
280            break;
281        case TelephonyManager.NETWORK_TYPE_EVDO_0:
282            networkTypeStr = "evdo";
283            break;
284        case TelephonyManager.NETWORK_TYPE_EVDO_A:
285            networkTypeStr = "evdo";
286            break;
287        }
288        return "net.tcp.buffersize." + networkTypeStr;
289    }
290
291    /**
292     * Tear down mobile data connectivity, i.e., disable the ability to create
293     * mobile data connections.
294     */
295    @Override
296    public boolean teardown() {
297        setTeardownRequested(true);
298        return (setEnableApn(mApnType, false) != Phone.APN_REQUEST_FAILED);
299    }
300
301    /**
302     * Re-enable mobile data connectivity after a {@link #teardown()}.
303     */
304    public boolean reconnect() {
305        setTeardownRequested(false);
306        switch (setEnableApn(mApnType, true)) {
307            case Phone.APN_ALREADY_ACTIVE:
308                mEnabled = true;
309                // need to set self to CONNECTING so the below message is handled.
310                mMobileDataState = Phone.DataState.CONNECTING;
311                //send out a connected message
312                Intent intent = new Intent(TelephonyIntents.
313                        ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
314                intent.putExtra(Phone.STATE_KEY, Phone.DataState.CONNECTED.toString());
315                intent.putExtra(Phone.STATE_CHANGE_REASON_KEY, Phone.REASON_APN_CHANGED);
316                intent.putExtra(Phone.DATA_APN_TYPES_KEY, mApnType);
317                intent.putExtra(Phone.DATA_IFACE_NAME_KEY, mInterfaceName);
318                intent.putExtra(Phone.NETWORK_UNAVAILABLE_KEY, false);
319                if (mStateReceiver != null) mStateReceiver.onReceive(mContext, intent);
320                break;
321            case Phone.APN_REQUEST_STARTED:
322                mEnabled = true;
323                // no need to do anything - we're already due some status update intents
324                break;
325            case Phone.APN_REQUEST_FAILED:
326                if (mPhoneService == null && mApnType == Phone.APN_TYPE_DEFAULT) {
327                    // on startup we may try to talk to the phone before it's ready
328                    // just leave mEnabled as it is for the default apn.
329                    return false;
330                }
331                // else fall through
332            case Phone.APN_TYPE_NOT_AVAILABLE:
333                mEnabled = false;
334                break;
335            default:
336                Log.e(TAG, "Error in reconnect - unexpected response.");
337                mEnabled = false;
338                break;
339        }
340        return mEnabled;
341    }
342
343    /**
344     * Turn on or off the mobile radio. No connectivity will be possible while the
345     * radio is off. The operation is a no-op if the radio is already in the desired state.
346     * @param turnOn {@code true} if the radio should be turned on, {@code false} if
347     */
348    public boolean setRadio(boolean turnOn) {
349        getPhoneService(false);
350        /*
351         * If the phone process has crashed in the past, we'll get a
352         * RemoteException and need to re-reference the service.
353         */
354        for (int retry = 0; retry < 2; retry++) {
355            if (mPhoneService == null) {
356                Log.w(TAG,
357                    "Ignoring mobile radio request because could not acquire PhoneService");
358                break;
359            }
360
361            try {
362                return mPhoneService.setRadio(turnOn);
363            } catch (RemoteException e) {
364                if (retry == 0) getPhoneService(true);
365            }
366        }
367
368        Log.w(TAG, "Could not set radio power to " + (turnOn ? "on" : "off"));
369        return false;
370    }
371
372    /**
373     * Tells the phone sub-system that the caller wants to
374     * begin using the named feature. The only supported features at
375     * this time are {@code Phone.FEATURE_ENABLE_MMS}, which allows an application
376     * to specify that it wants to send and/or receive MMS data, and
377     * {@code Phone.FEATURE_ENABLE_SUPL}, which is used for Assisted GPS.
378     * @param feature the name of the feature to be used
379     * @param callingPid the process ID of the process that is issuing this request
380     * @param callingUid the user ID of the process that is issuing this request
381     * @return an integer value representing the outcome of the request.
382     * The interpretation of this value is feature-specific.
383     * specific, except that the value {@code -1}
384     * always indicates failure. For {@code Phone.FEATURE_ENABLE_MMS},
385     * the other possible return values are
386     * <ul>
387     * <li>{@code Phone.APN_ALREADY_ACTIVE}</li>
388     * <li>{@code Phone.APN_REQUEST_STARTED}</li>
389     * <li>{@code Phone.APN_TYPE_NOT_AVAILABLE}</li>
390     * <li>{@code Phone.APN_REQUEST_FAILED}</li>
391     * </ul>
392     */
393    public int startUsingNetworkFeature(String feature, int callingPid, int callingUid) {
394        return -1;
395    }
396
397    /**
398     * Tells the phone sub-system that the caller is finished
399     * using the named feature. The only supported feature at
400     * this time is {@code Phone.FEATURE_ENABLE_MMS}, which allows an application
401     * to specify that it wants to send and/or receive MMS data.
402     * @param feature the name of the feature that is no longer needed
403     * @param callingPid the process ID of the process that is issuing this request
404     * @param callingUid the user ID of the process that is issuing this request
405     * @return an integer value representing the outcome of the request.
406     * The interpretation of this value is feature-specific, except that
407     * the value {@code -1} always indicates failure.
408     */
409    public int stopUsingNetworkFeature(String feature, int callingPid, int callingUid) {
410        return -1;
411    }
412
413    /**
414     * Ensure that a network route exists to deliver traffic to the specified
415     * host via the mobile data network.
416     * @param hostAddress the IP address of the host to which the route is desired,
417     * in network byte order.
418     * @return {@code true} on success, {@code false} on failure
419     */
420    @Override
421    public boolean requestRouteToHost(int hostAddress) {
422        if (DBG) {
423            Log.d(TAG, "Requested host route to " + Integer.toHexString(hostAddress) +
424                    " for " + mApnType + "(" + mInterfaceName + ")");
425        }
426        if (mInterfaceName != null && hostAddress != -1) {
427            return NetworkUtils.addHostRoute(mInterfaceName, hostAddress) == 0;
428        } else {
429            return false;
430        }
431    }
432
433    @Override
434    public String toString() {
435        StringBuffer sb = new StringBuffer("Mobile data state: ");
436
437        sb.append(mMobileDataState);
438        return sb.toString();
439    }
440
441   /**
442     * Internal method supporting the ENABLE_MMS feature.
443     * @param apnType the type of APN to be enabled or disabled (e.g., mms)
444     * @param enable {@code true} to enable the specified APN type,
445     * {@code false} to disable it.
446     * @return an integer value representing the outcome of the request.
447     */
448    private int setEnableApn(String apnType, boolean enable) {
449        getPhoneService(false);
450        /*
451         * If the phone process has crashed in the past, we'll get a
452         * RemoteException and need to re-reference the service.
453         */
454        for (int retry = 0; retry < 2; retry++) {
455            if (mPhoneService == null) {
456                Log.w(TAG,
457                    "Ignoring feature request because could not acquire PhoneService");
458                break;
459            }
460
461            try {
462                if (enable) {
463                    return mPhoneService.enableApnType(apnType);
464                } else {
465                    return mPhoneService.disableApnType(apnType);
466                }
467            } catch (RemoteException e) {
468                if (retry == 0) getPhoneService(true);
469            }
470        }
471
472        Log.w(TAG, "Could not " + (enable ? "enable" : "disable")
473                + " APN type \"" + apnType + "\"");
474        return Phone.APN_REQUEST_FAILED;
475    }
476}
477