ConnectivityService.java revision f81daa986e3a2d75c6f2398a59b965790484e0a2
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 com.android.server;
18
19import static android.Manifest.permission.MANAGE_NETWORK_POLICY;
20import static android.Manifest.permission.RECEIVE_DATA_ACTIVITY_CHANGE;
21import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
22import static android.net.ConnectivityManager.CONNECTIVITY_ACTION_IMMEDIATE;
23import static android.net.ConnectivityManager.TYPE_BLUETOOTH;
24import static android.net.ConnectivityManager.TYPE_DUMMY;
25import static android.net.ConnectivityManager.TYPE_ETHERNET;
26import static android.net.ConnectivityManager.TYPE_MOBILE;
27import static android.net.ConnectivityManager.TYPE_WIFI;
28import static android.net.ConnectivityManager.TYPE_WIMAX;
29import static android.net.ConnectivityManager.TYPE_PROXY;
30import static android.net.ConnectivityManager.getNetworkTypeName;
31import static android.net.ConnectivityManager.isNetworkTypeValid;
32import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
33import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
34
35import android.app.AlarmManager;
36import android.app.Notification;
37import android.app.NotificationManager;
38import android.app.PendingIntent;
39import android.bluetooth.BluetoothTetheringDataTracker;
40import android.content.ActivityNotFoundException;
41import android.content.BroadcastReceiver;
42import android.content.ContentResolver;
43import android.content.Context;
44import android.content.ContextWrapper;
45import android.content.Intent;
46import android.content.IntentFilter;
47import android.content.pm.PackageManager;
48import android.content.res.Configuration;
49import android.content.res.Resources;
50import android.database.ContentObserver;
51import android.net.CaptivePortalTracker;
52import android.net.ConnectivityManager;
53import android.net.DummyDataStateTracker;
54import android.net.EthernetDataTracker;
55import android.net.IConnectivityManager;
56import android.net.INetworkManagementEventObserver;
57import android.net.INetworkPolicyListener;
58import android.net.INetworkPolicyManager;
59import android.net.INetworkStatsService;
60import android.net.LinkAddress;
61import android.net.LinkProperties;
62import android.net.LinkProperties.CompareResult;
63import android.net.LinkQualityInfo;
64import android.net.MobileDataStateTracker;
65import android.net.NetworkConfig;
66import android.net.NetworkInfo;
67import android.net.NetworkInfo.DetailedState;
68import android.net.NetworkQuotaInfo;
69import android.net.NetworkState;
70import android.net.NetworkStateTracker;
71import android.net.NetworkUtils;
72import android.net.Proxy;
73import android.net.ProxyDataTracker;
74import android.net.ProxyProperties;
75import android.net.RouteInfo;
76import android.net.SamplingDataTracker;
77import android.net.Uri;
78import android.net.wifi.WifiStateTracker;
79import android.net.wimax.WimaxManagerConstants;
80import android.os.AsyncTask;
81import android.os.Binder;
82import android.os.Build;
83import android.os.FileUtils;
84import android.os.Handler;
85import android.os.HandlerThread;
86import android.os.IBinder;
87import android.os.INetworkManagementService;
88import android.os.Looper;
89import android.os.Message;
90import android.os.Messenger;
91import android.os.ParcelFileDescriptor;
92import android.os.PowerManager;
93import android.os.Process;
94import android.os.RemoteException;
95import android.os.ServiceManager;
96import android.os.SystemClock;
97import android.os.SystemProperties;
98import android.os.UserHandle;
99import android.provider.Settings;
100import android.security.Credentials;
101import android.security.KeyStore;
102import android.telephony.TelephonyManager;
103import android.text.TextUtils;
104import android.util.Slog;
105import android.util.SparseArray;
106import android.util.SparseIntArray;
107import android.util.Xml;
108
109import com.android.internal.R;
110import com.android.internal.annotations.GuardedBy;
111import com.android.internal.net.LegacyVpnInfo;
112import com.android.internal.net.VpnConfig;
113import com.android.internal.net.VpnProfile;
114import com.android.internal.telephony.DctConstants;
115import com.android.internal.telephony.Phone;
116import com.android.internal.telephony.PhoneConstants;
117import com.android.internal.telephony.TelephonyIntents;
118import com.android.internal.util.IndentingPrintWriter;
119import com.android.internal.util.XmlUtils;
120import com.android.server.am.BatteryStatsService;
121import com.android.server.connectivity.DataConnectionStats;
122import com.android.server.connectivity.Nat464Xlat;
123import com.android.server.connectivity.PacManager;
124import com.android.server.connectivity.Tethering;
125import com.android.server.connectivity.Vpn;
126import com.android.server.net.BaseNetworkObserver;
127import com.android.server.net.LockdownVpnTracker;
128import com.google.android.collect.Lists;
129import com.google.android.collect.Sets;
130
131import dalvik.system.DexClassLoader;
132
133import org.xmlpull.v1.XmlPullParser;
134import org.xmlpull.v1.XmlPullParserException;
135
136import java.io.File;
137import java.io.FileDescriptor;
138import java.io.FileNotFoundException;
139import java.io.FileReader;
140import java.io.IOException;
141import java.io.PrintWriter;
142import java.lang.reflect.Constructor;
143import java.net.HttpURLConnection;
144import java.net.Inet4Address;
145import java.net.Inet6Address;
146import java.net.InetAddress;
147import java.net.URL;
148import java.net.UnknownHostException;
149import java.util.ArrayList;
150import java.util.Arrays;
151import java.util.Collection;
152import java.util.GregorianCalendar;
153import java.util.HashMap;
154import java.util.HashSet;
155import java.util.List;
156import java.util.Map;
157import java.util.Random;
158import java.util.concurrent.atomic.AtomicBoolean;
159import java.util.concurrent.atomic.AtomicInteger;
160
161import javax.net.ssl.HostnameVerifier;
162import javax.net.ssl.HttpsURLConnection;
163import javax.net.ssl.SSLSession;
164
165/**
166 * @hide
167 */
168public class ConnectivityService extends IConnectivityManager.Stub {
169    private static final String TAG = "ConnectivityService";
170
171    private static final boolean DBG = true;
172    private static final boolean VDBG = true;
173
174    private static final boolean LOGD_RULES = true;
175
176    // TODO: create better separation between radio types and network types
177
178    // how long to wait before switching back to a radio's default network
179    private static final int RESTORE_DEFAULT_NETWORK_DELAY = 1 * 60 * 1000;
180    // system property that can override the above value
181    private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
182            "android.telephony.apn-restore";
183
184    // Default value if FAIL_FAST_TIME_MS is not set
185    private static final int DEFAULT_FAIL_FAST_TIME_MS = 1 * 60 * 1000;
186    // system property that can override DEFAULT_FAIL_FAST_TIME_MS
187    private static final String FAIL_FAST_TIME_MS =
188            "persist.radio.fail_fast_time_ms";
189
190    private static final String ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED =
191            "android.net.ConnectivityService.action.PKT_CNT_SAMPLE_INTERVAL_ELAPSED";
192
193    private static final int SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE = 0;
194
195    private PendingIntent mSampleIntervalElapsedIntent;
196
197    // Set network sampling interval at 12 minutes, this way, even if the timers get
198    // aggregated, it will fire at around 15 minutes, which should allow us to
199    // aggregate this timer with other timers (specially the socket keep alive timers)
200    private static final int DEFAULT_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 12 * 60);
201
202    // start network sampling a minute after booting ...
203    private static final int DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS = (VDBG ? 30 : 60);
204
205    AlarmManager mAlarmManager;
206
207    // used in recursive route setting to add gateways for the host for which
208    // a host route was requested.
209    private static final int MAX_HOSTROUTE_CYCLE_COUNT = 10;
210
211    private Tethering mTethering;
212
213    private KeyStore mKeyStore;
214
215    @GuardedBy("mVpns")
216    private final SparseArray<Vpn> mVpns = new SparseArray<Vpn>();
217    private VpnCallback mVpnCallback = new VpnCallback();
218
219    private boolean mLockdownEnabled;
220    private LockdownVpnTracker mLockdownTracker;
221
222    private Nat464Xlat mClat;
223
224    /** Lock around {@link #mUidRules} and {@link #mMeteredIfaces}. */
225    private Object mRulesLock = new Object();
226    /** Currently active network rules by UID. */
227    private SparseIntArray mUidRules = new SparseIntArray();
228    /** Set of ifaces that are costly. */
229    private HashSet<String> mMeteredIfaces = Sets.newHashSet();
230
231    /**
232     * Sometimes we want to refer to the individual network state
233     * trackers separately, and sometimes we just want to treat them
234     * abstractly.
235     */
236    private NetworkStateTracker mNetTrackers[];
237
238    /* Handles captive portal check on a network */
239    private CaptivePortalTracker mCaptivePortalTracker;
240
241    /**
242     * The link properties that define the current links
243     */
244    private LinkProperties mCurrentLinkProperties[];
245
246    /**
247     * A per Net list of the PID's that requested access to the net
248     * used both as a refcount and for per-PID DNS selection
249     */
250    private List<Integer> mNetRequestersPids[];
251
252    // priority order of the nettrackers
253    // (excluding dynamically set mNetworkPreference)
254    // TODO - move mNetworkTypePreference into this
255    private int[] mPriorityList;
256
257    private Context mContext;
258    private int mNetworkPreference;
259    private int mActiveDefaultNetwork = -1;
260    // 0 is full bad, 100 is full good
261    private int mDefaultInetCondition = 0;
262    private int mDefaultInetConditionPublished = 0;
263    private boolean mInetConditionChangeInFlight = false;
264    private int mDefaultConnectionSequence = 0;
265
266    private Object mDnsLock = new Object();
267    private int mNumDnsEntries;
268
269    private boolean mTestMode;
270    private static ConnectivityService sServiceInstance;
271
272    private INetworkManagementService mNetd;
273    private INetworkPolicyManager mPolicyManager;
274
275    private static final int ENABLED  = 1;
276    private static final int DISABLED = 0;
277
278    private static final boolean ADD = true;
279    private static final boolean REMOVE = false;
280
281    private static final boolean TO_DEFAULT_TABLE = true;
282    private static final boolean TO_SECONDARY_TABLE = false;
283
284    private static final boolean EXEMPT = true;
285    private static final boolean UNEXEMPT = false;
286
287    /**
288     * used internally as a delayed event to make us switch back to the
289     * default network
290     */
291    private static final int EVENT_RESTORE_DEFAULT_NETWORK = 1;
292
293    /**
294     * used internally to change our mobile data enabled flag
295     */
296    private static final int EVENT_CHANGE_MOBILE_DATA_ENABLED = 2;
297
298    /**
299     * used internally to change our network preference setting
300     * arg1 = networkType to prefer
301     */
302    private static final int EVENT_SET_NETWORK_PREFERENCE = 3;
303
304    /**
305     * used internally to synchronize inet condition reports
306     * arg1 = networkType
307     * arg2 = condition (0 bad, 100 good)
308     */
309    private static final int EVENT_INET_CONDITION_CHANGE = 4;
310
311    /**
312     * used internally to mark the end of inet condition hold periods
313     * arg1 = networkType
314     */
315    private static final int EVENT_INET_CONDITION_HOLD_END = 5;
316
317    /**
318     * used internally to set enable/disable cellular data
319     * arg1 = ENBALED or DISABLED
320     */
321    private static final int EVENT_SET_MOBILE_DATA = 7;
322
323    /**
324     * used internally to clear a wakelock when transitioning
325     * from one net to another
326     */
327    private static final int EVENT_CLEAR_NET_TRANSITION_WAKELOCK = 8;
328
329    /**
330     * used internally to reload global proxy settings
331     */
332    private static final int EVENT_APPLY_GLOBAL_HTTP_PROXY = 9;
333
334    /**
335     * used internally to set external dependency met/unmet
336     * arg1 = ENABLED (met) or DISABLED (unmet)
337     * arg2 = NetworkType
338     */
339    private static final int EVENT_SET_DEPENDENCY_MET = 10;
340
341    /**
342     * used internally to send a sticky broadcast delayed.
343     */
344    private static final int EVENT_SEND_STICKY_BROADCAST_INTENT = 11;
345
346    /**
347     * Used internally to
348     * {@link NetworkStateTracker#setPolicyDataEnable(boolean)}.
349     */
350    private static final int EVENT_SET_POLICY_DATA_ENABLE = 12;
351
352    private static final int EVENT_VPN_STATE_CHANGED = 13;
353
354    /**
355     * Used internally to disable fail fast of mobile data
356     */
357    private static final int EVENT_ENABLE_FAIL_FAST_MOBILE_DATA = 14;
358
359    /**
360     * user internally to indicate that data sampling interval is up
361     */
362    private static final int EVENT_SAMPLE_INTERVAL_ELAPSED = 15;
363
364    /**
365     * PAC manager has received new port.
366     */
367    private static final int EVENT_PROXY_HAS_CHANGED = 16;
368
369    /** Handler used for internal events. */
370    private InternalHandler mHandler;
371    /** Handler used for incoming {@link NetworkStateTracker} events. */
372    private NetworkStateTrackerHandler mTrackerHandler;
373
374    // list of DeathRecipients used to make sure features are turned off when
375    // a process dies
376    private List<FeatureUser> mFeatureUsers;
377
378    private boolean mSystemReady;
379    private Intent mInitialBroadcast;
380
381    private PowerManager.WakeLock mNetTransitionWakeLock;
382    private String mNetTransitionWakeLockCausedBy = "";
383    private int mNetTransitionWakeLockSerialNumber;
384    private int mNetTransitionWakeLockTimeout;
385
386    private InetAddress mDefaultDns;
387
388    // Lock for protecting access to mAddedRoutes and mExemptAddresses
389    private final Object mRoutesLock = new Object();
390
391    // this collection is used to refcount the added routes - if there are none left
392    // it's time to remove the route from the route table
393    @GuardedBy("mRoutesLock")
394    private Collection<RouteInfo> mAddedRoutes = new ArrayList<RouteInfo>();
395
396    // this collection corresponds to the entries of mAddedRoutes that have routing exemptions
397    // used to handle cleanup of exempt rules
398    @GuardedBy("mRoutesLock")
399    private Collection<LinkAddress> mExemptAddresses = new ArrayList<LinkAddress>();
400
401    // used in DBG mode to track inet condition reports
402    private static final int INET_CONDITION_LOG_MAX_SIZE = 15;
403    private ArrayList mInetLog;
404
405    // track the current default http proxy - tell the world if we get a new one (real change)
406    private ProxyProperties mDefaultProxy = null;
407    private Object mProxyLock = new Object();
408    private boolean mDefaultProxyDisabled = false;
409
410    // track the global proxy.
411    private ProxyProperties mGlobalProxy = null;
412
413    private PacManager mPacManager = null;
414
415    private SettingsObserver mSettingsObserver;
416
417    NetworkConfig[] mNetConfigs;
418    int mNetworksDefined;
419
420    private static class RadioAttributes {
421        public int mSimultaneity;
422        public int mType;
423        public RadioAttributes(String init) {
424            String fragments[] = init.split(",");
425            mType = Integer.parseInt(fragments[0]);
426            mSimultaneity = Integer.parseInt(fragments[1]);
427        }
428    }
429    RadioAttributes[] mRadioAttributes;
430
431    // the set of network types that can only be enabled by system/sig apps
432    List mProtectedNetworks;
433
434    private DataConnectionStats mDataConnectionStats;
435
436    private AtomicInteger mEnableFailFastMobileDataTag = new AtomicInteger(0);
437
438    TelephonyManager mTelephonyManager;
439
440    public ConnectivityService(Context context, INetworkManagementService netd,
441            INetworkStatsService statsService, INetworkPolicyManager policyManager) {
442        // Currently, omitting a NetworkFactory will create one internally
443        // TODO: create here when we have cleaner WiMAX support
444        this(context, netd, statsService, policyManager, null);
445    }
446
447    public ConnectivityService(Context context, INetworkManagementService netManager,
448            INetworkStatsService statsService, INetworkPolicyManager policyManager,
449            NetworkFactory netFactory) {
450        if (DBG) log("ConnectivityService starting up");
451
452        HandlerThread handlerThread = new HandlerThread("ConnectivityServiceThread");
453        handlerThread.start();
454        mHandler = new InternalHandler(handlerThread.getLooper());
455        mTrackerHandler = new NetworkStateTrackerHandler(handlerThread.getLooper());
456
457        if (netFactory == null) {
458            netFactory = new DefaultNetworkFactory(context, mTrackerHandler);
459        }
460
461        // setup our unique device name
462        if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
463            String id = Settings.Secure.getString(context.getContentResolver(),
464                    Settings.Secure.ANDROID_ID);
465            if (id != null && id.length() > 0) {
466                String name = new String("android-").concat(id);
467                SystemProperties.set("net.hostname", name);
468            }
469        }
470
471        // read our default dns server ip
472        String dns = Settings.Global.getString(context.getContentResolver(),
473                Settings.Global.DEFAULT_DNS_SERVER);
474        if (dns == null || dns.length() == 0) {
475            dns = context.getResources().getString(
476                    com.android.internal.R.string.config_default_dns_server);
477        }
478        try {
479            mDefaultDns = NetworkUtils.numericToInetAddress(dns);
480        } catch (IllegalArgumentException e) {
481            loge("Error setting defaultDns using " + dns);
482        }
483
484        mContext = checkNotNull(context, "missing Context");
485        mNetd = checkNotNull(netManager, "missing INetworkManagementService");
486        mPolicyManager = checkNotNull(policyManager, "missing INetworkPolicyManager");
487        mKeyStore = KeyStore.getInstance();
488        mTelephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
489
490        try {
491            mPolicyManager.registerListener(mPolicyListener);
492        } catch (RemoteException e) {
493            // ouch, no rules updates means some processes may never get network
494            loge("unable to register INetworkPolicyListener" + e.toString());
495        }
496
497        final PowerManager powerManager = (PowerManager) context.getSystemService(
498                Context.POWER_SERVICE);
499        mNetTransitionWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
500        mNetTransitionWakeLockTimeout = mContext.getResources().getInteger(
501                com.android.internal.R.integer.config_networkTransitionTimeout);
502
503        mNetTrackers = new NetworkStateTracker[
504                ConnectivityManager.MAX_NETWORK_TYPE+1];
505        mCurrentLinkProperties = new LinkProperties[ConnectivityManager.MAX_NETWORK_TYPE+1];
506
507        mRadioAttributes = new RadioAttributes[ConnectivityManager.MAX_RADIO_TYPE+1];
508        mNetConfigs = new NetworkConfig[ConnectivityManager.MAX_NETWORK_TYPE+1];
509
510        // Load device network attributes from resources
511        String[] raStrings = context.getResources().getStringArray(
512                com.android.internal.R.array.radioAttributes);
513        for (String raString : raStrings) {
514            RadioAttributes r = new RadioAttributes(raString);
515            if (VDBG) log("raString=" + raString + " r=" + r);
516            if (r.mType > ConnectivityManager.MAX_RADIO_TYPE) {
517                loge("Error in radioAttributes - ignoring attempt to define type " + r.mType);
518                continue;
519            }
520            if (mRadioAttributes[r.mType] != null) {
521                loge("Error in radioAttributes - ignoring attempt to redefine type " +
522                        r.mType);
523                continue;
524            }
525            mRadioAttributes[r.mType] = r;
526        }
527
528        // TODO: What is the "correct" way to do determine if this is a wifi only device?
529        boolean wifiOnly = SystemProperties.getBoolean("ro.radio.noril", false);
530        log("wifiOnly=" + wifiOnly);
531        String[] naStrings = context.getResources().getStringArray(
532                com.android.internal.R.array.networkAttributes);
533        for (String naString : naStrings) {
534            try {
535                NetworkConfig n = new NetworkConfig(naString);
536                if (VDBG) log("naString=" + naString + " config=" + n);
537                if (n.type > ConnectivityManager.MAX_NETWORK_TYPE) {
538                    loge("Error in networkAttributes - ignoring attempt to define type " +
539                            n.type);
540                    continue;
541                }
542                if (wifiOnly && ConnectivityManager.isNetworkTypeMobile(n.type)) {
543                    log("networkAttributes - ignoring mobile as this dev is wifiOnly " +
544                            n.type);
545                    continue;
546                }
547                if (mNetConfigs[n.type] != null) {
548                    loge("Error in networkAttributes - ignoring attempt to redefine type " +
549                            n.type);
550                    continue;
551                }
552                if (mRadioAttributes[n.radio] == null) {
553                    loge("Error in networkAttributes - ignoring attempt to use undefined " +
554                            "radio " + n.radio + " in network type " + n.type);
555                    continue;
556                }
557                mNetConfigs[n.type] = n;
558                mNetworksDefined++;
559            } catch(Exception e) {
560                // ignore it - leave the entry null
561            }
562        }
563        if (VDBG) log("mNetworksDefined=" + mNetworksDefined);
564
565        mProtectedNetworks = new ArrayList<Integer>();
566        int[] protectedNetworks = context.getResources().getIntArray(
567                com.android.internal.R.array.config_protectedNetworks);
568        for (int p : protectedNetworks) {
569            if ((mNetConfigs[p] != null) && (mProtectedNetworks.contains(p) == false)) {
570                mProtectedNetworks.add(p);
571            } else {
572                if (DBG) loge("Ignoring protectedNetwork " + p);
573            }
574        }
575
576        // high priority first
577        mPriorityList = new int[mNetworksDefined];
578        {
579            int insertionPoint = mNetworksDefined-1;
580            int currentLowest = 0;
581            int nextLowest = 0;
582            while (insertionPoint > -1) {
583                for (NetworkConfig na : mNetConfigs) {
584                    if (na == null) continue;
585                    if (na.priority < currentLowest) continue;
586                    if (na.priority > currentLowest) {
587                        if (na.priority < nextLowest || nextLowest == 0) {
588                            nextLowest = na.priority;
589                        }
590                        continue;
591                    }
592                    mPriorityList[insertionPoint--] = na.type;
593                }
594                currentLowest = nextLowest;
595                nextLowest = 0;
596            }
597        }
598
599        // Update mNetworkPreference according to user mannually first then overlay config.xml
600        mNetworkPreference = getPersistedNetworkPreference();
601        if (mNetworkPreference == -1) {
602            for (int n : mPriorityList) {
603                if (mNetConfigs[n].isDefault() && ConnectivityManager.isNetworkTypeValid(n)) {
604                    mNetworkPreference = n;
605                    break;
606                }
607            }
608            if (mNetworkPreference == -1) {
609                throw new IllegalStateException(
610                        "You should set at least one default Network in config.xml!");
611            }
612        }
613
614        mNetRequestersPids =
615                (List<Integer> [])new ArrayList[ConnectivityManager.MAX_NETWORK_TYPE+1];
616        for (int i : mPriorityList) {
617            mNetRequestersPids[i] = new ArrayList<Integer>();
618        }
619
620        mFeatureUsers = new ArrayList<FeatureUser>();
621
622        mTestMode = SystemProperties.get("cm.test.mode").equals("true")
623                && SystemProperties.get("ro.build.type").equals("eng");
624
625        // Create and start trackers for hard-coded networks
626        for (int targetNetworkType : mPriorityList) {
627            final NetworkConfig config = mNetConfigs[targetNetworkType];
628            final NetworkStateTracker tracker;
629            try {
630                tracker = netFactory.createTracker(targetNetworkType, config);
631                mNetTrackers[targetNetworkType] = tracker;
632            } catch (IllegalArgumentException e) {
633                Slog.e(TAG, "Problem creating " + getNetworkTypeName(targetNetworkType)
634                        + " tracker: " + e);
635                continue;
636            }
637
638            tracker.startMonitoring(context, mTrackerHandler);
639            if (config.isDefault()) {
640                tracker.reconnect();
641            }
642        }
643
644        mTethering = new Tethering(mContext, mNetd, statsService, this, mHandler.getLooper());
645
646        //set up the listener for user state for creating user VPNs
647        IntentFilter intentFilter = new IntentFilter();
648        intentFilter.addAction(Intent.ACTION_USER_STARTING);
649        intentFilter.addAction(Intent.ACTION_USER_STOPPING);
650        mContext.registerReceiverAsUser(
651                mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
652        mClat = new Nat464Xlat(mContext, mNetd, this, mTrackerHandler);
653
654        try {
655            mNetd.registerObserver(mTethering);
656            mNetd.registerObserver(mDataActivityObserver);
657            mNetd.registerObserver(mClat);
658        } catch (RemoteException e) {
659            loge("Error registering observer :" + e);
660        }
661
662        if (DBG) {
663            mInetLog = new ArrayList();
664        }
665
666        mSettingsObserver = new SettingsObserver(mHandler, EVENT_APPLY_GLOBAL_HTTP_PROXY);
667        mSettingsObserver.observe(mContext);
668
669        mDataConnectionStats = new DataConnectionStats(mContext);
670        mDataConnectionStats.startMonitoring();
671
672        // start network sampling ..
673        Intent intent = new Intent(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED, null);
674        mSampleIntervalElapsedIntent = PendingIntent.getBroadcast(mContext,
675                SAMPLE_INTERVAL_ELAPSED_REQUEST_CODE, intent, 0);
676
677        mAlarmManager = (AlarmManager)mContext.getSystemService(Context.ALARM_SERVICE);
678        setAlarm(DEFAULT_START_SAMPLING_INTERVAL_IN_SECONDS * 1000, mSampleIntervalElapsedIntent);
679
680        IntentFilter filter = new IntentFilter();
681        filter.addAction(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED);
682        mContext.registerReceiver(
683                new BroadcastReceiver() {
684                    @Override
685                    public void onReceive(Context context, Intent intent) {
686                        String action = intent.getAction();
687                        if (action.equals(ACTION_PKT_CNT_SAMPLE_INTERVAL_ELAPSED)) {
688                            mHandler.sendMessage(mHandler.obtainMessage
689                                    (EVENT_SAMPLE_INTERVAL_ELAPSED));
690                        }
691                    }
692                },
693                new IntentFilter(filter));
694
695        mPacManager = new PacManager(mContext, mHandler, EVENT_PROXY_HAS_CHANGED);
696
697        filter = new IntentFilter();
698        filter.addAction(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
699        mContext.registerReceiver(mProvisioningReceiver, filter);
700    }
701
702    /**
703     * Factory that creates {@link NetworkStateTracker} instances using given
704     * {@link NetworkConfig}.
705     */
706    public interface NetworkFactory {
707        public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config);
708    }
709
710    private static class DefaultNetworkFactory implements NetworkFactory {
711        private final Context mContext;
712        private final Handler mTrackerHandler;
713
714        public DefaultNetworkFactory(Context context, Handler trackerHandler) {
715            mContext = context;
716            mTrackerHandler = trackerHandler;
717        }
718
719        @Override
720        public NetworkStateTracker createTracker(int targetNetworkType, NetworkConfig config) {
721            switch (config.radio) {
722                case TYPE_WIFI:
723                    return new WifiStateTracker(targetNetworkType, config.name);
724                case TYPE_MOBILE:
725                    return new MobileDataStateTracker(targetNetworkType, config.name);
726                case TYPE_DUMMY:
727                    return new DummyDataStateTracker(targetNetworkType, config.name);
728                case TYPE_BLUETOOTH:
729                    return BluetoothTetheringDataTracker.getInstance();
730                case TYPE_WIMAX:
731                    return makeWimaxStateTracker(mContext, mTrackerHandler);
732                case TYPE_ETHERNET:
733                    return EthernetDataTracker.getInstance();
734                case TYPE_PROXY:
735                    return new ProxyDataTracker();
736                default:
737                    throw new IllegalArgumentException(
738                            "Trying to create a NetworkStateTracker for an unknown radio type: "
739                            + config.radio);
740            }
741        }
742    }
743
744    /**
745     * Loads external WiMAX library and registers as system service, returning a
746     * {@link NetworkStateTracker} for WiMAX. Caller is still responsible for
747     * invoking {@link NetworkStateTracker#startMonitoring(Context, Handler)}.
748     */
749    private static NetworkStateTracker makeWimaxStateTracker(
750            Context context, Handler trackerHandler) {
751        // Initialize Wimax
752        DexClassLoader wimaxClassLoader;
753        Class wimaxStateTrackerClass = null;
754        Class wimaxServiceClass = null;
755        Class wimaxManagerClass;
756        String wimaxJarLocation;
757        String wimaxLibLocation;
758        String wimaxManagerClassName;
759        String wimaxServiceClassName;
760        String wimaxStateTrackerClassName;
761
762        NetworkStateTracker wimaxStateTracker = null;
763
764        boolean isWimaxEnabled = context.getResources().getBoolean(
765                com.android.internal.R.bool.config_wimaxEnabled);
766
767        if (isWimaxEnabled) {
768            try {
769                wimaxJarLocation = context.getResources().getString(
770                        com.android.internal.R.string.config_wimaxServiceJarLocation);
771                wimaxLibLocation = context.getResources().getString(
772                        com.android.internal.R.string.config_wimaxNativeLibLocation);
773                wimaxManagerClassName = context.getResources().getString(
774                        com.android.internal.R.string.config_wimaxManagerClassname);
775                wimaxServiceClassName = context.getResources().getString(
776                        com.android.internal.R.string.config_wimaxServiceClassname);
777                wimaxStateTrackerClassName = context.getResources().getString(
778                        com.android.internal.R.string.config_wimaxStateTrackerClassname);
779
780                if (DBG) log("wimaxJarLocation: " + wimaxJarLocation);
781                wimaxClassLoader =  new DexClassLoader(wimaxJarLocation,
782                        new ContextWrapper(context).getCacheDir().getAbsolutePath(),
783                        wimaxLibLocation, ClassLoader.getSystemClassLoader());
784
785                try {
786                    wimaxManagerClass = wimaxClassLoader.loadClass(wimaxManagerClassName);
787                    wimaxStateTrackerClass = wimaxClassLoader.loadClass(wimaxStateTrackerClassName);
788                    wimaxServiceClass = wimaxClassLoader.loadClass(wimaxServiceClassName);
789                } catch (ClassNotFoundException ex) {
790                    loge("Exception finding Wimax classes: " + ex.toString());
791                    return null;
792                }
793            } catch(Resources.NotFoundException ex) {
794                loge("Wimax Resources does not exist!!! ");
795                return null;
796            }
797
798            try {
799                if (DBG) log("Starting Wimax Service... ");
800
801                Constructor wmxStTrkrConst = wimaxStateTrackerClass.getConstructor
802                        (new Class[] {Context.class, Handler.class});
803                wimaxStateTracker = (NetworkStateTracker) wmxStTrkrConst.newInstance(
804                        context, trackerHandler);
805
806                Constructor wmxSrvConst = wimaxServiceClass.getDeclaredConstructor
807                        (new Class[] {Context.class, wimaxStateTrackerClass});
808                wmxSrvConst.setAccessible(true);
809                IBinder svcInvoker = (IBinder)wmxSrvConst.newInstance(context, wimaxStateTracker);
810                wmxSrvConst.setAccessible(false);
811
812                ServiceManager.addService(WimaxManagerConstants.WIMAX_SERVICE, svcInvoker);
813
814            } catch(Exception ex) {
815                loge("Exception creating Wimax classes: " + ex.toString());
816                return null;
817            }
818        } else {
819            loge("Wimax is not enabled or not added to the network attributes!!! ");
820            return null;
821        }
822
823        return wimaxStateTracker;
824    }
825
826    /**
827     * Sets the preferred network.
828     * @param preference the new preference
829     */
830    public void setNetworkPreference(int preference) {
831        enforceChangePermission();
832
833        mHandler.sendMessage(
834                mHandler.obtainMessage(EVENT_SET_NETWORK_PREFERENCE, preference, 0));
835    }
836
837    public int getNetworkPreference() {
838        enforceAccessPermission();
839        int preference;
840        synchronized(this) {
841            preference = mNetworkPreference;
842        }
843        return preference;
844    }
845
846    private void handleSetNetworkPreference(int preference) {
847        if (ConnectivityManager.isNetworkTypeValid(preference) &&
848                mNetConfigs[preference] != null &&
849                mNetConfigs[preference].isDefault()) {
850            if (mNetworkPreference != preference) {
851                final ContentResolver cr = mContext.getContentResolver();
852                Settings.Global.putInt(cr, Settings.Global.NETWORK_PREFERENCE, preference);
853                synchronized(this) {
854                    mNetworkPreference = preference;
855                }
856                enforcePreference();
857            }
858        }
859    }
860
861    private int getConnectivityChangeDelay() {
862        final ContentResolver cr = mContext.getContentResolver();
863
864        /** Check system properties for the default value then use secure settings value, if any. */
865        int defaultDelay = SystemProperties.getInt(
866                "conn." + Settings.Global.CONNECTIVITY_CHANGE_DELAY,
867                ConnectivityManager.CONNECTIVITY_CHANGE_DELAY_DEFAULT);
868        return Settings.Global.getInt(cr, Settings.Global.CONNECTIVITY_CHANGE_DELAY,
869                defaultDelay);
870    }
871
872    private int getPersistedNetworkPreference() {
873        final ContentResolver cr = mContext.getContentResolver();
874
875        final int networkPrefSetting = Settings.Global
876                .getInt(cr, Settings.Global.NETWORK_PREFERENCE, -1);
877
878        return networkPrefSetting;
879    }
880
881    /**
882     * Make the state of network connectivity conform to the preference settings
883     * In this method, we only tear down a non-preferred network. Establishing
884     * a connection to the preferred network is taken care of when we handle
885     * the disconnect event from the non-preferred network
886     * (see {@link #handleDisconnect(NetworkInfo)}).
887     */
888    private void enforcePreference() {
889        if (mNetTrackers[mNetworkPreference].getNetworkInfo().isConnected())
890            return;
891
892        if (!mNetTrackers[mNetworkPreference].isAvailable())
893            return;
894
895        for (int t=0; t <= ConnectivityManager.MAX_RADIO_TYPE; t++) {
896            if (t != mNetworkPreference && mNetTrackers[t] != null &&
897                    mNetTrackers[t].getNetworkInfo().isConnected()) {
898                if (DBG) {
899                    log("tearing down " + mNetTrackers[t].getNetworkInfo() +
900                            " in enforcePreference");
901                }
902                teardown(mNetTrackers[t]);
903            }
904        }
905    }
906
907    private boolean teardown(NetworkStateTracker netTracker) {
908        if (netTracker.teardown()) {
909            netTracker.setTeardownRequested(true);
910            return true;
911        } else {
912            return false;
913        }
914    }
915
916    /**
917     * Check if UID should be blocked from using the network represented by the
918     * given {@link NetworkStateTracker}.
919     */
920    private boolean isNetworkBlocked(NetworkStateTracker tracker, int uid) {
921        final String iface = tracker.getLinkProperties().getInterfaceName();
922
923        final boolean networkCostly;
924        final int uidRules;
925        synchronized (mRulesLock) {
926            networkCostly = mMeteredIfaces.contains(iface);
927            uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
928        }
929
930        if (networkCostly && (uidRules & RULE_REJECT_METERED) != 0) {
931            return true;
932        }
933
934        // no restrictive rules; network is visible
935        return false;
936    }
937
938    /**
939     * Return a filtered {@link NetworkInfo}, potentially marked
940     * {@link DetailedState#BLOCKED} based on
941     * {@link #isNetworkBlocked(NetworkStateTracker, int)}.
942     */
943    private NetworkInfo getFilteredNetworkInfo(NetworkStateTracker tracker, int uid) {
944        NetworkInfo info = tracker.getNetworkInfo();
945        if (isNetworkBlocked(tracker, uid)) {
946            // network is blocked; clone and override state
947            info = new NetworkInfo(info);
948            info.setDetailedState(DetailedState.BLOCKED, null, null);
949        }
950        if (mLockdownTracker != null) {
951            info = mLockdownTracker.augmentNetworkInfo(info);
952        }
953        return info;
954    }
955
956    /**
957     * Return NetworkInfo for the active (i.e., connected) network interface.
958     * It is assumed that at most one network is active at a time. If more
959     * than one is active, it is indeterminate which will be returned.
960     * @return the info for the active network, or {@code null} if none is
961     * active
962     */
963    @Override
964    public NetworkInfo getActiveNetworkInfo() {
965        enforceAccessPermission();
966        final int uid = Binder.getCallingUid();
967        return getNetworkInfo(mActiveDefaultNetwork, uid);
968    }
969
970    /**
971     * Find the first Provisioning network.
972     *
973     * @return NetworkInfo or null if none.
974     */
975    private NetworkInfo getProvisioningNetworkInfo() {
976        enforceAccessPermission();
977
978        // Find the first Provisioning Network
979        NetworkInfo provNi = null;
980        for (NetworkInfo ni : getAllNetworkInfo()) {
981            if (ni.isConnectedToProvisioningNetwork()) {
982                provNi = ni;
983                break;
984            }
985        }
986        if (DBG) log("getProvisioningNetworkInfo: X provNi=" + provNi);
987        return provNi;
988    }
989
990    /**
991     * Find the first Provisioning network or the ActiveDefaultNetwork
992     * if there is no Provisioning network
993     *
994     * @return NetworkInfo or null if none.
995     */
996    @Override
997    public NetworkInfo getProvisioningOrActiveNetworkInfo() {
998        enforceAccessPermission();
999
1000        NetworkInfo provNi = getProvisioningNetworkInfo();
1001        if (provNi == null) {
1002            final int uid = Binder.getCallingUid();
1003            provNi = getNetworkInfo(mActiveDefaultNetwork, uid);
1004        }
1005        if (DBG) log("getProvisioningOrActiveNetworkInfo: X provNi=" + provNi);
1006        return provNi;
1007    }
1008
1009    public NetworkInfo getActiveNetworkInfoUnfiltered() {
1010        enforceAccessPermission();
1011        if (isNetworkTypeValid(mActiveDefaultNetwork)) {
1012            final NetworkStateTracker tracker = mNetTrackers[mActiveDefaultNetwork];
1013            if (tracker != null) {
1014                return tracker.getNetworkInfo();
1015            }
1016        }
1017        return null;
1018    }
1019
1020    @Override
1021    public NetworkInfo getActiveNetworkInfoForUid(int uid) {
1022        enforceConnectivityInternalPermission();
1023        return getNetworkInfo(mActiveDefaultNetwork, uid);
1024    }
1025
1026    @Override
1027    public NetworkInfo getNetworkInfo(int networkType) {
1028        enforceAccessPermission();
1029        final int uid = Binder.getCallingUid();
1030        return getNetworkInfo(networkType, uid);
1031    }
1032
1033    private NetworkInfo getNetworkInfo(int networkType, int uid) {
1034        NetworkInfo info = null;
1035        if (isNetworkTypeValid(networkType)) {
1036            final NetworkStateTracker tracker = mNetTrackers[networkType];
1037            if (tracker != null) {
1038                info = getFilteredNetworkInfo(tracker, uid);
1039            }
1040        }
1041        return info;
1042    }
1043
1044    @Override
1045    public NetworkInfo[] getAllNetworkInfo() {
1046        enforceAccessPermission();
1047        final int uid = Binder.getCallingUid();
1048        final ArrayList<NetworkInfo> result = Lists.newArrayList();
1049        synchronized (mRulesLock) {
1050            for (NetworkStateTracker tracker : mNetTrackers) {
1051                if (tracker != null) {
1052                    result.add(getFilteredNetworkInfo(tracker, uid));
1053                }
1054            }
1055        }
1056        return result.toArray(new NetworkInfo[result.size()]);
1057    }
1058
1059    @Override
1060    public boolean isNetworkSupported(int networkType) {
1061        enforceAccessPermission();
1062        return (isNetworkTypeValid(networkType) && (mNetTrackers[networkType] != null));
1063    }
1064
1065    /**
1066     * Return LinkProperties for the active (i.e., connected) default
1067     * network interface.  It is assumed that at most one default network
1068     * is active at a time. If more than one is active, it is indeterminate
1069     * which will be returned.
1070     * @return the ip properties for the active network, or {@code null} if
1071     * none is active
1072     */
1073    @Override
1074    public LinkProperties getActiveLinkProperties() {
1075        return getLinkProperties(mActiveDefaultNetwork);
1076    }
1077
1078    @Override
1079    public LinkProperties getLinkProperties(int networkType) {
1080        enforceAccessPermission();
1081        if (isNetworkTypeValid(networkType)) {
1082            final NetworkStateTracker tracker = mNetTrackers[networkType];
1083            if (tracker != null) {
1084                return tracker.getLinkProperties();
1085            }
1086        }
1087        return null;
1088    }
1089
1090    @Override
1091    public NetworkState[] getAllNetworkState() {
1092        enforceAccessPermission();
1093        final int uid = Binder.getCallingUid();
1094        final ArrayList<NetworkState> result = Lists.newArrayList();
1095        synchronized (mRulesLock) {
1096            for (NetworkStateTracker tracker : mNetTrackers) {
1097                if (tracker != null) {
1098                    final NetworkInfo info = getFilteredNetworkInfo(tracker, uid);
1099                    result.add(new NetworkState(
1100                            info, tracker.getLinkProperties(), tracker.getLinkCapabilities()));
1101                }
1102            }
1103        }
1104        return result.toArray(new NetworkState[result.size()]);
1105    }
1106
1107    private NetworkState getNetworkStateUnchecked(int networkType) {
1108        if (isNetworkTypeValid(networkType)) {
1109            final NetworkStateTracker tracker = mNetTrackers[networkType];
1110            if (tracker != null) {
1111                return new NetworkState(tracker.getNetworkInfo(), tracker.getLinkProperties(),
1112                        tracker.getLinkCapabilities());
1113            }
1114        }
1115        return null;
1116    }
1117
1118    @Override
1119    public NetworkQuotaInfo getActiveNetworkQuotaInfo() {
1120        enforceAccessPermission();
1121
1122        final long token = Binder.clearCallingIdentity();
1123        try {
1124            final NetworkState state = getNetworkStateUnchecked(mActiveDefaultNetwork);
1125            if (state != null) {
1126                try {
1127                    return mPolicyManager.getNetworkQuotaInfo(state);
1128                } catch (RemoteException e) {
1129                }
1130            }
1131            return null;
1132        } finally {
1133            Binder.restoreCallingIdentity(token);
1134        }
1135    }
1136
1137    @Override
1138    public boolean isActiveNetworkMetered() {
1139        enforceAccessPermission();
1140        final long token = Binder.clearCallingIdentity();
1141        try {
1142            return isNetworkMeteredUnchecked(mActiveDefaultNetwork);
1143        } finally {
1144            Binder.restoreCallingIdentity(token);
1145        }
1146    }
1147
1148    private boolean isNetworkMeteredUnchecked(int networkType) {
1149        final NetworkState state = getNetworkStateUnchecked(networkType);
1150        if (state != null) {
1151            try {
1152                return mPolicyManager.isNetworkMetered(state);
1153            } catch (RemoteException e) {
1154            }
1155        }
1156        return false;
1157    }
1158
1159    public boolean setRadios(boolean turnOn) {
1160        boolean result = true;
1161        enforceChangePermission();
1162        for (NetworkStateTracker t : mNetTrackers) {
1163            if (t != null) result = t.setRadio(turnOn) && result;
1164        }
1165        return result;
1166    }
1167
1168    public boolean setRadio(int netType, boolean turnOn) {
1169        enforceChangePermission();
1170        if (!ConnectivityManager.isNetworkTypeValid(netType)) {
1171            return false;
1172        }
1173        NetworkStateTracker tracker = mNetTrackers[netType];
1174        return tracker != null && tracker.setRadio(turnOn);
1175    }
1176
1177    private INetworkManagementEventObserver mDataActivityObserver = new BaseNetworkObserver() {
1178        @Override
1179        public void interfaceClassDataActivityChanged(String label, boolean active) {
1180            int deviceType = Integer.parseInt(label);
1181            sendDataActivityBroadcast(deviceType, active);
1182        }
1183    };
1184
1185    /**
1186     * Used to notice when the calling process dies so we can self-expire
1187     *
1188     * Also used to know if the process has cleaned up after itself when
1189     * our auto-expire timer goes off.  The timer has a link to an object.
1190     *
1191     */
1192    private class FeatureUser implements IBinder.DeathRecipient {
1193        int mNetworkType;
1194        String mFeature;
1195        IBinder mBinder;
1196        int mPid;
1197        int mUid;
1198        long mCreateTime;
1199
1200        FeatureUser(int type, String feature, IBinder binder) {
1201            super();
1202            mNetworkType = type;
1203            mFeature = feature;
1204            mBinder = binder;
1205            mPid = getCallingPid();
1206            mUid = getCallingUid();
1207            mCreateTime = System.currentTimeMillis();
1208
1209            try {
1210                mBinder.linkToDeath(this, 0);
1211            } catch (RemoteException e) {
1212                binderDied();
1213            }
1214        }
1215
1216        void unlinkDeathRecipient() {
1217            mBinder.unlinkToDeath(this, 0);
1218        }
1219
1220        public void binderDied() {
1221            log("ConnectivityService FeatureUser binderDied(" +
1222                    mNetworkType + ", " + mFeature + ", " + mBinder + "), created " +
1223                    (System.currentTimeMillis() - mCreateTime) + " mSec ago");
1224            stopUsingNetworkFeature(this, false);
1225        }
1226
1227        public void expire() {
1228            if (VDBG) {
1229                log("ConnectivityService FeatureUser expire(" +
1230                        mNetworkType + ", " + mFeature + ", " + mBinder +"), created " +
1231                        (System.currentTimeMillis() - mCreateTime) + " mSec ago");
1232            }
1233            stopUsingNetworkFeature(this, false);
1234        }
1235
1236        public boolean isSameUser(FeatureUser u) {
1237            if (u == null) return false;
1238
1239            return isSameUser(u.mPid, u.mUid, u.mNetworkType, u.mFeature);
1240        }
1241
1242        public boolean isSameUser(int pid, int uid, int networkType, String feature) {
1243            if ((mPid == pid) && (mUid == uid) && (mNetworkType == networkType) &&
1244                TextUtils.equals(mFeature, feature)) {
1245                return true;
1246            }
1247            return false;
1248        }
1249
1250        public String toString() {
1251            return "FeatureUser("+mNetworkType+","+mFeature+","+mPid+","+mUid+"), created " +
1252                    (System.currentTimeMillis() - mCreateTime) + " mSec ago";
1253        }
1254    }
1255
1256    // javadoc from interface
1257    public int startUsingNetworkFeature(int networkType, String feature,
1258            IBinder binder) {
1259        long startTime = 0;
1260        if (DBG) {
1261            startTime = SystemClock.elapsedRealtime();
1262        }
1263        if (VDBG) {
1264            log("startUsingNetworkFeature for net " + networkType + ": " + feature + ", uid="
1265                    + Binder.getCallingUid());
1266        }
1267        enforceChangePermission();
1268        try {
1269            if (!ConnectivityManager.isNetworkTypeValid(networkType) ||
1270                    mNetConfigs[networkType] == null) {
1271                return PhoneConstants.APN_REQUEST_FAILED;
1272            }
1273
1274            FeatureUser f = new FeatureUser(networkType, feature, binder);
1275
1276            // TODO - move this into individual networktrackers
1277            int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
1278
1279            if (mLockdownEnabled) {
1280                // Since carrier APNs usually aren't available from VPN
1281                // endpoint, mark them as unavailable.
1282                return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
1283            }
1284
1285            if (mProtectedNetworks.contains(usedNetworkType)) {
1286                enforceConnectivityInternalPermission();
1287            }
1288
1289            // if UID is restricted, don't allow them to bring up metered APNs
1290            final boolean networkMetered = isNetworkMeteredUnchecked(usedNetworkType);
1291            final int uidRules;
1292            synchronized (mRulesLock) {
1293                uidRules = mUidRules.get(Binder.getCallingUid(), RULE_ALLOW_ALL);
1294            }
1295            if (networkMetered && (uidRules & RULE_REJECT_METERED) != 0) {
1296                return PhoneConstants.APN_REQUEST_FAILED;
1297            }
1298
1299            NetworkStateTracker network = mNetTrackers[usedNetworkType];
1300            if (network != null) {
1301                Integer currentPid = new Integer(getCallingPid());
1302                if (usedNetworkType != networkType) {
1303                    NetworkInfo ni = network.getNetworkInfo();
1304
1305                    if (ni.isAvailable() == false) {
1306                        if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
1307                            if (DBG) log("special network not available ni=" + ni.getTypeName());
1308                            return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
1309                        } else {
1310                            // else make the attempt anyway - probably giving REQUEST_STARTED below
1311                            if (DBG) {
1312                                log("special network not available, but try anyway ni=" +
1313                                        ni.getTypeName());
1314                            }
1315                        }
1316                    }
1317
1318                    int restoreTimer = getRestoreDefaultNetworkDelay(usedNetworkType);
1319
1320                    synchronized(this) {
1321                        boolean addToList = true;
1322                        if (restoreTimer < 0) {
1323                            // In case there is no timer is specified for the feature,
1324                            // make sure we don't add duplicate entry with the same request.
1325                            for (FeatureUser u : mFeatureUsers) {
1326                                if (u.isSameUser(f)) {
1327                                    // Duplicate user is found. Do not add.
1328                                    addToList = false;
1329                                    break;
1330                                }
1331                            }
1332                        }
1333
1334                        if (addToList) mFeatureUsers.add(f);
1335                        if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1336                            // this gets used for per-pid dns when connected
1337                            mNetRequestersPids[usedNetworkType].add(currentPid);
1338                        }
1339                    }
1340
1341                    if (restoreTimer >= 0) {
1342                        mHandler.sendMessageDelayed(mHandler.obtainMessage(
1343                                EVENT_RESTORE_DEFAULT_NETWORK, f), restoreTimer);
1344                    }
1345
1346                    if ((ni.isConnectedOrConnecting() == true) &&
1347                            !network.isTeardownRequested()) {
1348                        if (ni.isConnected() == true) {
1349                            final long token = Binder.clearCallingIdentity();
1350                            try {
1351                                // add the pid-specific dns
1352                                handleDnsConfigurationChange(usedNetworkType);
1353                                if (VDBG) log("special network already active");
1354                            } finally {
1355                                Binder.restoreCallingIdentity(token);
1356                            }
1357                            return PhoneConstants.APN_ALREADY_ACTIVE;
1358                        }
1359                        if (VDBG) log("special network already connecting");
1360                        return PhoneConstants.APN_REQUEST_STARTED;
1361                    }
1362
1363                    // check if the radio in play can make another contact
1364                    // assume if cannot for now
1365
1366                    if (DBG) {
1367                        log("startUsingNetworkFeature reconnecting to " + networkType + ": " +
1368                                feature);
1369                    }
1370                    if (network.reconnect()) {
1371                        if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_STARTED");
1372                        return PhoneConstants.APN_REQUEST_STARTED;
1373                    } else {
1374                        if (DBG) log("startUsingNetworkFeature X: return APN_REQUEST_FAILED");
1375                        return PhoneConstants.APN_REQUEST_FAILED;
1376                    }
1377                } else {
1378                    // need to remember this unsupported request so we respond appropriately on stop
1379                    synchronized(this) {
1380                        mFeatureUsers.add(f);
1381                        if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
1382                            // this gets used for per-pid dns when connected
1383                            mNetRequestersPids[usedNetworkType].add(currentPid);
1384                        }
1385                    }
1386                    if (DBG) log("startUsingNetworkFeature X: return -1 unsupported feature.");
1387                    return -1;
1388                }
1389            }
1390            if (DBG) log("startUsingNetworkFeature X: return APN_TYPE_NOT_AVAILABLE");
1391            return PhoneConstants.APN_TYPE_NOT_AVAILABLE;
1392         } finally {
1393            if (DBG) {
1394                final long execTime = SystemClock.elapsedRealtime() - startTime;
1395                if (execTime > 250) {
1396                    loge("startUsingNetworkFeature took too long: " + execTime + "ms");
1397                } else {
1398                    if (VDBG) log("startUsingNetworkFeature took " + execTime + "ms");
1399                }
1400            }
1401         }
1402    }
1403
1404    // javadoc from interface
1405    public int stopUsingNetworkFeature(int networkType, String feature) {
1406        enforceChangePermission();
1407
1408        int pid = getCallingPid();
1409        int uid = getCallingUid();
1410
1411        FeatureUser u = null;
1412        boolean found = false;
1413
1414        synchronized(this) {
1415            for (FeatureUser x : mFeatureUsers) {
1416                if (x.isSameUser(pid, uid, networkType, feature)) {
1417                    u = x;
1418                    found = true;
1419                    break;
1420                }
1421            }
1422        }
1423        if (found && u != null) {
1424            if (VDBG) log("stopUsingNetworkFeature: X");
1425            // stop regardless of how many other time this proc had called start
1426            return stopUsingNetworkFeature(u, true);
1427        } else {
1428            // none found!
1429            if (VDBG) log("stopUsingNetworkFeature: X not a live request, ignoring");
1430            return 1;
1431        }
1432    }
1433
1434    private int stopUsingNetworkFeature(FeatureUser u, boolean ignoreDups) {
1435        int networkType = u.mNetworkType;
1436        String feature = u.mFeature;
1437        int pid = u.mPid;
1438        int uid = u.mUid;
1439
1440        NetworkStateTracker tracker = null;
1441        boolean callTeardown = false;  // used to carry our decision outside of sync block
1442
1443        if (VDBG) {
1444            log("stopUsingNetworkFeature: net " + networkType + ": " + feature);
1445        }
1446
1447        if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
1448            if (DBG) {
1449                log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1450                        ", net is invalid");
1451            }
1452            return -1;
1453        }
1454
1455        // need to link the mFeatureUsers list with the mNetRequestersPids state in this
1456        // sync block
1457        synchronized(this) {
1458            // check if this process still has an outstanding start request
1459            if (!mFeatureUsers.contains(u)) {
1460                if (VDBG) {
1461                    log("stopUsingNetworkFeature: this process has no outstanding requests" +
1462                        ", ignoring");
1463                }
1464                return 1;
1465            }
1466            u.unlinkDeathRecipient();
1467            mFeatureUsers.remove(mFeatureUsers.indexOf(u));
1468            // If we care about duplicate requests, check for that here.
1469            //
1470            // This is done to support the extension of a request - the app
1471            // can request we start the network feature again and renew the
1472            // auto-shutoff delay.  Normal "stop" calls from the app though
1473            // do not pay attention to duplicate requests - in effect the
1474            // API does not refcount and a single stop will counter multiple starts.
1475            if (ignoreDups == false) {
1476                for (FeatureUser x : mFeatureUsers) {
1477                    if (x.isSameUser(u)) {
1478                        if (VDBG) log("stopUsingNetworkFeature: dup is found, ignoring");
1479                        return 1;
1480                    }
1481                }
1482            }
1483
1484            // TODO - move to individual network trackers
1485            int usedNetworkType = convertFeatureToNetworkType(networkType, feature);
1486
1487            tracker =  mNetTrackers[usedNetworkType];
1488            if (tracker == null) {
1489                if (DBG) {
1490                    log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1491                            " no known tracker for used net type " + usedNetworkType);
1492                }
1493                return -1;
1494            }
1495            if (usedNetworkType != networkType) {
1496                Integer currentPid = new Integer(pid);
1497                mNetRequestersPids[usedNetworkType].remove(currentPid);
1498
1499                final long token = Binder.clearCallingIdentity();
1500                try {
1501                    reassessPidDns(pid, true);
1502                } finally {
1503                    Binder.restoreCallingIdentity(token);
1504                }
1505                flushVmDnsCache();
1506                if (mNetRequestersPids[usedNetworkType].size() != 0) {
1507                    if (VDBG) {
1508                        log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1509                                " others still using it");
1510                    }
1511                    return 1;
1512                }
1513                callTeardown = true;
1514            } else {
1515                if (DBG) {
1516                    log("stopUsingNetworkFeature: net " + networkType + ": " + feature +
1517                            " not a known feature - dropping");
1518                }
1519            }
1520        }
1521
1522        if (callTeardown) {
1523            if (DBG) {
1524                log("stopUsingNetworkFeature: teardown net " + networkType + ": " + feature);
1525            }
1526            tracker.teardown();
1527            return 1;
1528        } else {
1529            return -1;
1530        }
1531    }
1532
1533    /**
1534     * @deprecated use requestRouteToHostAddress instead
1535     *
1536     * Ensure that a network route exists to deliver traffic to the specified
1537     * host via the specified network interface.
1538     * @param networkType the type of the network over which traffic to the
1539     * specified host is to be routed
1540     * @param hostAddress the IP address of the host to which the route is
1541     * desired
1542     * @return {@code true} on success, {@code false} on failure
1543     */
1544    public boolean requestRouteToHost(int networkType, int hostAddress, String packageName) {
1545        InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
1546
1547        if (inetAddress == null) {
1548            return false;
1549        }
1550
1551        return requestRouteToHostAddress(networkType, inetAddress.getAddress(), packageName);
1552    }
1553
1554    /**
1555     * Ensure that a network route exists to deliver traffic to the specified
1556     * host via the specified network interface.
1557     * @param networkType the type of the network over which traffic to the
1558     * specified host is to be routed
1559     * @param hostAddress the IP address of the host to which the route is
1560     * desired
1561     * @return {@code true} on success, {@code false} on failure
1562     */
1563    public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress,
1564            String packageName) {
1565        enforceChangePermission();
1566        if (mProtectedNetworks.contains(networkType)) {
1567            enforceConnectivityInternalPermission();
1568        }
1569
1570        if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
1571            if (DBG) log("requestRouteToHostAddress on invalid network: " + networkType);
1572            return false;
1573        }
1574        NetworkStateTracker tracker = mNetTrackers[networkType];
1575        DetailedState netState = DetailedState.DISCONNECTED;
1576        if (tracker != null) {
1577            netState = tracker.getNetworkInfo().getDetailedState();
1578        }
1579
1580        if ((netState != DetailedState.CONNECTED &&
1581                netState != DetailedState.CAPTIVE_PORTAL_CHECK) ||
1582                tracker.isTeardownRequested()) {
1583            if (VDBG) {
1584                log("requestRouteToHostAddress on down network "
1585                        + "(" + networkType + ") - dropped"
1586                        + " tracker=" + tracker
1587                        + " netState=" + netState
1588                        + " isTeardownRequested="
1589                            + ((tracker != null) ? tracker.isTeardownRequested() : "tracker:null"));
1590            }
1591            return false;
1592        }
1593        final long token = Binder.clearCallingIdentity();
1594        try {
1595            InetAddress addr = InetAddress.getByAddress(hostAddress);
1596            LinkProperties lp = tracker.getLinkProperties();
1597            boolean ok = addRouteToAddress(lp, addr, EXEMPT);
1598            if (DBG) log("requestRouteToHostAddress ok=" + ok);
1599            return ok;
1600        } catch (UnknownHostException e) {
1601            if (DBG) log("requestRouteToHostAddress got " + e.toString());
1602        } finally {
1603            Binder.restoreCallingIdentity(token);
1604        }
1605        if (DBG) log("requestRouteToHostAddress X bottom return false");
1606        return false;
1607    }
1608
1609    private boolean addRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable,
1610            boolean exempt) {
1611        return modifyRoute(p, r, 0, ADD, toDefaultTable, exempt);
1612    }
1613
1614    private boolean removeRoute(LinkProperties p, RouteInfo r, boolean toDefaultTable) {
1615        return modifyRoute(p, r, 0, REMOVE, toDefaultTable, UNEXEMPT);
1616    }
1617
1618    private boolean addRouteToAddress(LinkProperties lp, InetAddress addr, boolean exempt) {
1619        return modifyRouteToAddress(lp, addr, ADD, TO_DEFAULT_TABLE, exempt);
1620    }
1621
1622    private boolean removeRouteToAddress(LinkProperties lp, InetAddress addr) {
1623        return modifyRouteToAddress(lp, addr, REMOVE, TO_DEFAULT_TABLE, UNEXEMPT);
1624    }
1625
1626    private boolean modifyRouteToAddress(LinkProperties lp, InetAddress addr, boolean doAdd,
1627            boolean toDefaultTable, boolean exempt) {
1628        RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), addr);
1629        if (bestRoute == null) {
1630            bestRoute = RouteInfo.makeHostRoute(addr, lp.getInterfaceName());
1631        } else {
1632            String iface = bestRoute.getInterface();
1633            if (bestRoute.getGateway().equals(addr)) {
1634                // if there is no better route, add the implied hostroute for our gateway
1635                bestRoute = RouteInfo.makeHostRoute(addr, iface);
1636            } else {
1637                // if we will connect to this through another route, add a direct route
1638                // to it's gateway
1639                bestRoute = RouteInfo.makeHostRoute(addr, bestRoute.getGateway(), iface);
1640            }
1641        }
1642        return modifyRoute(lp, bestRoute, 0, doAdd, toDefaultTable, exempt);
1643    }
1644
1645    private boolean modifyRoute(LinkProperties lp, RouteInfo r, int cycleCount, boolean doAdd,
1646            boolean toDefaultTable, boolean exempt) {
1647        if ((lp == null) || (r == null)) {
1648            if (DBG) log("modifyRoute got unexpected null: " + lp + ", " + r);
1649            return false;
1650        }
1651
1652        if (cycleCount > MAX_HOSTROUTE_CYCLE_COUNT) {
1653            loge("Error modifying route - too much recursion");
1654            return false;
1655        }
1656
1657        String ifaceName = r.getInterface();
1658        if(ifaceName == null) {
1659            loge("Error modifying route - no interface name");
1660            return false;
1661        }
1662        if (r.hasGateway()) {
1663            RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), r.getGateway());
1664            if (bestRoute != null) {
1665                if (bestRoute.getGateway().equals(r.getGateway())) {
1666                    // if there is no better route, add the implied hostroute for our gateway
1667                    bestRoute = RouteInfo.makeHostRoute(r.getGateway(), ifaceName);
1668                } else {
1669                    // if we will connect to our gateway through another route, add a direct
1670                    // route to it's gateway
1671                    bestRoute = RouteInfo.makeHostRoute(r.getGateway(),
1672                                                        bestRoute.getGateway(),
1673                                                        ifaceName);
1674                }
1675                modifyRoute(lp, bestRoute, cycleCount+1, doAdd, toDefaultTable, exempt);
1676            }
1677        }
1678        if (doAdd) {
1679            if (VDBG) log("Adding " + r + " for interface " + ifaceName);
1680            try {
1681                if (toDefaultTable) {
1682                    synchronized (mRoutesLock) {
1683                        // only track default table - only one apps can effect
1684                        mAddedRoutes.add(r);
1685                        mNetd.addRoute(ifaceName, r);
1686                        if (exempt) {
1687                            LinkAddress dest = r.getDestination();
1688                            if (!mExemptAddresses.contains(dest)) {
1689                                mNetd.setHostExemption(dest);
1690                                mExemptAddresses.add(dest);
1691                            }
1692                        }
1693                    }
1694                } else {
1695                    mNetd.addSecondaryRoute(ifaceName, r);
1696                }
1697            } catch (Exception e) {
1698                // never crash - catch them all
1699                if (DBG) loge("Exception trying to add a route: " + e);
1700                return false;
1701            }
1702        } else {
1703            // if we remove this one and there are no more like it, then refcount==0 and
1704            // we can remove it from the table
1705            if (toDefaultTable) {
1706                synchronized (mRoutesLock) {
1707                    mAddedRoutes.remove(r);
1708                    if (mAddedRoutes.contains(r) == false) {
1709                        if (VDBG) log("Removing " + r + " for interface " + ifaceName);
1710                        try {
1711                            mNetd.removeRoute(ifaceName, r);
1712                            LinkAddress dest = r.getDestination();
1713                            if (mExemptAddresses.contains(dest)) {
1714                                mNetd.clearHostExemption(dest);
1715                                mExemptAddresses.remove(dest);
1716                            }
1717                        } catch (Exception e) {
1718                            // never crash - catch them all
1719                            if (VDBG) loge("Exception trying to remove a route: " + e);
1720                            return false;
1721                        }
1722                    } else {
1723                        if (VDBG) log("not removing " + r + " as it's still in use");
1724                    }
1725                }
1726            } else {
1727                if (VDBG) log("Removing " + r + " for interface " + ifaceName);
1728                try {
1729                    mNetd.removeSecondaryRoute(ifaceName, r);
1730                } catch (Exception e) {
1731                    // never crash - catch them all
1732                    if (VDBG) loge("Exception trying to remove a route: " + e);
1733                    return false;
1734                }
1735            }
1736        }
1737        return true;
1738    }
1739
1740    /**
1741     * @see ConnectivityManager#getMobileDataEnabled()
1742     */
1743    public boolean getMobileDataEnabled() {
1744        // TODO: This detail should probably be in DataConnectionTracker's
1745        //       which is where we store the value and maybe make this
1746        //       asynchronous.
1747        enforceAccessPermission();
1748        boolean retVal = Settings.Global.getInt(mContext.getContentResolver(),
1749                Settings.Global.MOBILE_DATA, 1) == 1;
1750        if (VDBG) log("getMobileDataEnabled returning " + retVal);
1751        return retVal;
1752    }
1753
1754    public void setDataDependency(int networkType, boolean met) {
1755        enforceConnectivityInternalPermission();
1756
1757        mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_DEPENDENCY_MET,
1758                (met ? ENABLED : DISABLED), networkType));
1759    }
1760
1761    private void handleSetDependencyMet(int networkType, boolean met) {
1762        if (mNetTrackers[networkType] != null) {
1763            if (DBG) {
1764                log("handleSetDependencyMet(" + networkType + ", " + met + ")");
1765            }
1766            mNetTrackers[networkType].setDependencyMet(met);
1767        }
1768    }
1769
1770    private INetworkPolicyListener mPolicyListener = new INetworkPolicyListener.Stub() {
1771        @Override
1772        public void onUidRulesChanged(int uid, int uidRules) {
1773            // caller is NPMS, since we only register with them
1774            if (LOGD_RULES) {
1775                log("onUidRulesChanged(uid=" + uid + ", uidRules=" + uidRules + ")");
1776            }
1777
1778            synchronized (mRulesLock) {
1779                // skip update when we've already applied rules
1780                final int oldRules = mUidRules.get(uid, RULE_ALLOW_ALL);
1781                if (oldRules == uidRules) return;
1782
1783                mUidRules.put(uid, uidRules);
1784            }
1785
1786            // TODO: notify UID when it has requested targeted updates
1787        }
1788
1789        @Override
1790        public void onMeteredIfacesChanged(String[] meteredIfaces) {
1791            // caller is NPMS, since we only register with them
1792            if (LOGD_RULES) {
1793                log("onMeteredIfacesChanged(ifaces=" + Arrays.toString(meteredIfaces) + ")");
1794            }
1795
1796            synchronized (mRulesLock) {
1797                mMeteredIfaces.clear();
1798                for (String iface : meteredIfaces) {
1799                    mMeteredIfaces.add(iface);
1800                }
1801            }
1802        }
1803
1804        @Override
1805        public void onRestrictBackgroundChanged(boolean restrictBackground) {
1806            // caller is NPMS, since we only register with them
1807            if (LOGD_RULES) {
1808                log("onRestrictBackgroundChanged(restrictBackground=" + restrictBackground + ")");
1809            }
1810
1811            // kick off connectivity change broadcast for active network, since
1812            // global background policy change is radical.
1813            final int networkType = mActiveDefaultNetwork;
1814            if (isNetworkTypeValid(networkType)) {
1815                final NetworkStateTracker tracker = mNetTrackers[networkType];
1816                if (tracker != null) {
1817                    final NetworkInfo info = tracker.getNetworkInfo();
1818                    if (info != null && info.isConnected()) {
1819                        sendConnectedBroadcast(info);
1820                    }
1821                }
1822            }
1823        }
1824    };
1825
1826    /**
1827     * @see ConnectivityManager#setMobileDataEnabled(boolean)
1828     */
1829    public void setMobileDataEnabled(boolean enabled) {
1830        enforceChangePermission();
1831        if (DBG) log("setMobileDataEnabled(" + enabled + ")");
1832
1833        mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_MOBILE_DATA,
1834                (enabled ? ENABLED : DISABLED), 0));
1835    }
1836
1837    private void handleSetMobileData(boolean enabled) {
1838        if (mNetTrackers[ConnectivityManager.TYPE_MOBILE] != null) {
1839            if (VDBG) {
1840                log(mNetTrackers[ConnectivityManager.TYPE_MOBILE].toString() + enabled);
1841            }
1842            mNetTrackers[ConnectivityManager.TYPE_MOBILE].setUserDataEnable(enabled);
1843        }
1844        if (mNetTrackers[ConnectivityManager.TYPE_WIMAX] != null) {
1845            if (VDBG) {
1846                log(mNetTrackers[ConnectivityManager.TYPE_WIMAX].toString() + enabled);
1847            }
1848            mNetTrackers[ConnectivityManager.TYPE_WIMAX].setUserDataEnable(enabled);
1849        }
1850    }
1851
1852    @Override
1853    public void setPolicyDataEnable(int networkType, boolean enabled) {
1854        // only someone like NPMS should only be calling us
1855        mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1856
1857        mHandler.sendMessage(mHandler.obtainMessage(
1858                EVENT_SET_POLICY_DATA_ENABLE, networkType, (enabled ? ENABLED : DISABLED)));
1859    }
1860
1861    private void handleSetPolicyDataEnable(int networkType, boolean enabled) {
1862        if (isNetworkTypeValid(networkType)) {
1863            final NetworkStateTracker tracker = mNetTrackers[networkType];
1864            if (tracker != null) {
1865                tracker.setPolicyDataEnable(enabled);
1866            }
1867        }
1868    }
1869
1870    private void enforceAccessPermission() {
1871        mContext.enforceCallingOrSelfPermission(
1872                android.Manifest.permission.ACCESS_NETWORK_STATE,
1873                "ConnectivityService");
1874    }
1875
1876    private void enforceChangePermission() {
1877        mContext.enforceCallingOrSelfPermission(
1878                android.Manifest.permission.CHANGE_NETWORK_STATE,
1879                "ConnectivityService");
1880    }
1881
1882    // TODO Make this a special check when it goes public
1883    private void enforceTetherChangePermission() {
1884        mContext.enforceCallingOrSelfPermission(
1885                android.Manifest.permission.CHANGE_NETWORK_STATE,
1886                "ConnectivityService");
1887    }
1888
1889    private void enforceTetherAccessPermission() {
1890        mContext.enforceCallingOrSelfPermission(
1891                android.Manifest.permission.ACCESS_NETWORK_STATE,
1892                "ConnectivityService");
1893    }
1894
1895    private void enforceConnectivityInternalPermission() {
1896        mContext.enforceCallingOrSelfPermission(
1897                android.Manifest.permission.CONNECTIVITY_INTERNAL,
1898                "ConnectivityService");
1899    }
1900
1901    private void enforceMarkNetworkSocketPermission() {
1902        //Media server special case
1903        if (Binder.getCallingUid() == Process.MEDIA_UID) {
1904            return;
1905        }
1906        mContext.enforceCallingOrSelfPermission(
1907                android.Manifest.permission.MARK_NETWORK_SOCKET,
1908                "ConnectivityService");
1909    }
1910
1911    /**
1912     * Handle a {@code DISCONNECTED} event. If this pertains to the non-active
1913     * network, we ignore it. If it is for the active network, we send out a
1914     * broadcast. But first, we check whether it might be possible to connect
1915     * to a different network.
1916     * @param info the {@code NetworkInfo} for the network
1917     */
1918    private void handleDisconnect(NetworkInfo info) {
1919
1920        int prevNetType = info.getType();
1921
1922        mNetTrackers[prevNetType].setTeardownRequested(false);
1923
1924        // Remove idletimer previously setup in {@code handleConnect}
1925        removeDataActivityTracking(prevNetType);
1926
1927        /*
1928         * If the disconnected network is not the active one, then don't report
1929         * this as a loss of connectivity. What probably happened is that we're
1930         * getting the disconnect for a network that we explicitly disabled
1931         * in accordance with network preference policies.
1932         */
1933        if (!mNetConfigs[prevNetType].isDefault()) {
1934            List<Integer> pids = mNetRequestersPids[prevNetType];
1935            for (Integer pid : pids) {
1936                // will remove them because the net's no longer connected
1937                // need to do this now as only now do we know the pids and
1938                // can properly null things that are no longer referenced.
1939                reassessPidDns(pid.intValue(), false);
1940            }
1941        }
1942
1943        Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
1944        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
1945        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
1946        if (info.isFailover()) {
1947            intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1948            info.setFailover(false);
1949        }
1950        if (info.getReason() != null) {
1951            intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
1952        }
1953        if (info.getExtraInfo() != null) {
1954            intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
1955                    info.getExtraInfo());
1956        }
1957
1958        if (mNetConfigs[prevNetType].isDefault()) {
1959            tryFailover(prevNetType);
1960            if (mActiveDefaultNetwork != -1) {
1961                NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
1962                intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
1963            } else {
1964                mDefaultInetConditionPublished = 0; // we're not connected anymore
1965                intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
1966            }
1967        }
1968        intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
1969
1970        // Reset interface if no other connections are using the same interface
1971        boolean doReset = true;
1972        LinkProperties linkProperties = mNetTrackers[prevNetType].getLinkProperties();
1973        if (linkProperties != null) {
1974            String oldIface = linkProperties.getInterfaceName();
1975            if (TextUtils.isEmpty(oldIface) == false) {
1976                for (NetworkStateTracker networkStateTracker : mNetTrackers) {
1977                    if (networkStateTracker == null) continue;
1978                    NetworkInfo networkInfo = networkStateTracker.getNetworkInfo();
1979                    if (networkInfo.isConnected() && networkInfo.getType() != prevNetType) {
1980                        LinkProperties l = networkStateTracker.getLinkProperties();
1981                        if (l == null) continue;
1982                        if (oldIface.equals(l.getInterfaceName())) {
1983                            doReset = false;
1984                            break;
1985                        }
1986                    }
1987                }
1988            }
1989        }
1990
1991        // do this before we broadcast the change
1992        handleConnectivityChange(prevNetType, doReset);
1993
1994        final Intent immediateIntent = new Intent(intent);
1995        immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
1996        sendStickyBroadcast(immediateIntent);
1997        sendStickyBroadcastDelayed(intent, getConnectivityChangeDelay());
1998        /*
1999         * If the failover network is already connected, then immediately send
2000         * out a followup broadcast indicating successful failover
2001         */
2002        if (mActiveDefaultNetwork != -1) {
2003            sendConnectedBroadcastDelayed(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo(),
2004                    getConnectivityChangeDelay());
2005        }
2006    }
2007
2008    private void tryFailover(int prevNetType) {
2009        /*
2010         * If this is a default network, check if other defaults are available.
2011         * Try to reconnect on all available and let them hash it out when
2012         * more than one connects.
2013         */
2014        if (mNetConfigs[prevNetType].isDefault()) {
2015            if (mActiveDefaultNetwork == prevNetType) {
2016                if (DBG) {
2017                    log("tryFailover: set mActiveDefaultNetwork=-1, prevNetType=" + prevNetType);
2018                }
2019                mActiveDefaultNetwork = -1;
2020            }
2021
2022            // don't signal a reconnect for anything lower or equal priority than our
2023            // current connected default
2024            // TODO - don't filter by priority now - nice optimization but risky
2025//            int currentPriority = -1;
2026//            if (mActiveDefaultNetwork != -1) {
2027//                currentPriority = mNetConfigs[mActiveDefaultNetwork].mPriority;
2028//            }
2029
2030            for (int checkType=0; checkType <= ConnectivityManager.MAX_NETWORK_TYPE; checkType++) {
2031                if (checkType == prevNetType) continue;
2032                if (mNetConfigs[checkType] == null) continue;
2033                if (!mNetConfigs[checkType].isDefault()) continue;
2034                if (mNetTrackers[checkType] == null) continue;
2035
2036// Enabling the isAvailable() optimization caused mobile to not get
2037// selected if it was in the middle of error handling. Specifically
2038// a moble connection that took 30 seconds to complete the DEACTIVATE_DATA_CALL
2039// would not be available and we wouldn't get connected to anything.
2040// So removing the isAvailable() optimization below for now. TODO: This
2041// optimization should work and we need to investigate why it doesn't work.
2042// This could be related to how DEACTIVATE_DATA_CALL is reporting its
2043// complete before it is really complete.
2044
2045//                if (!mNetTrackers[checkType].isAvailable()) continue;
2046
2047//                if (currentPriority >= mNetConfigs[checkType].mPriority) continue;
2048
2049                NetworkStateTracker checkTracker = mNetTrackers[checkType];
2050                NetworkInfo checkInfo = checkTracker.getNetworkInfo();
2051                if (!checkInfo.isConnectedOrConnecting() || checkTracker.isTeardownRequested()) {
2052                    checkInfo.setFailover(true);
2053                    checkTracker.reconnect();
2054                }
2055                if (DBG) log("Attempting to switch to " + checkInfo.getTypeName());
2056            }
2057        }
2058    }
2059
2060    public void sendConnectedBroadcast(NetworkInfo info) {
2061        enforceConnectivityInternalPermission();
2062        sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2063        sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
2064    }
2065
2066    private void sendConnectedBroadcastDelayed(NetworkInfo info, int delayMs) {
2067        sendGeneralBroadcast(info, CONNECTIVITY_ACTION_IMMEDIATE);
2068        sendGeneralBroadcastDelayed(info, CONNECTIVITY_ACTION, delayMs);
2069    }
2070
2071    private void sendInetConditionBroadcast(NetworkInfo info) {
2072        sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
2073    }
2074
2075    private Intent makeGeneralIntent(NetworkInfo info, String bcastType) {
2076        if (mLockdownTracker != null) {
2077            info = mLockdownTracker.augmentNetworkInfo(info);
2078        }
2079
2080        Intent intent = new Intent(bcastType);
2081        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
2082        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
2083        if (info.isFailover()) {
2084            intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2085            info.setFailover(false);
2086        }
2087        if (info.getReason() != null) {
2088            intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
2089        }
2090        if (info.getExtraInfo() != null) {
2091            intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
2092                    info.getExtraInfo());
2093        }
2094        intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
2095        return intent;
2096    }
2097
2098    private void sendGeneralBroadcast(NetworkInfo info, String bcastType) {
2099        sendStickyBroadcast(makeGeneralIntent(info, bcastType));
2100    }
2101
2102    private void sendGeneralBroadcastDelayed(NetworkInfo info, String bcastType, int delayMs) {
2103        sendStickyBroadcastDelayed(makeGeneralIntent(info, bcastType), delayMs);
2104    }
2105
2106    private void sendDataActivityBroadcast(int deviceType, boolean active) {
2107        Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
2108        intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
2109        intent.putExtra(ConnectivityManager.EXTRA_IS_ACTIVE, active);
2110        final long ident = Binder.clearCallingIdentity();
2111        try {
2112            mContext.sendOrderedBroadcastAsUser(intent, UserHandle.ALL,
2113                    RECEIVE_DATA_ACTIVITY_CHANGE, null, null, 0, null, null);
2114        } finally {
2115            Binder.restoreCallingIdentity(ident);
2116        }
2117    }
2118
2119    /**
2120     * Called when an attempt to fail over to another network has failed.
2121     * @param info the {@link NetworkInfo} for the failed network
2122     */
2123    private void handleConnectionFailure(NetworkInfo info) {
2124        mNetTrackers[info.getType()].setTeardownRequested(false);
2125
2126        String reason = info.getReason();
2127        String extraInfo = info.getExtraInfo();
2128
2129        String reasonText;
2130        if (reason == null) {
2131            reasonText = ".";
2132        } else {
2133            reasonText = " (" + reason + ").";
2134        }
2135        loge("Attempt to connect to " + info.getTypeName() + " failed" + reasonText);
2136
2137        Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
2138        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
2139        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
2140        if (getActiveNetworkInfo() == null) {
2141            intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2142        }
2143        if (reason != null) {
2144            intent.putExtra(ConnectivityManager.EXTRA_REASON, reason);
2145        }
2146        if (extraInfo != null) {
2147            intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, extraInfo);
2148        }
2149        if (info.isFailover()) {
2150            intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
2151            info.setFailover(false);
2152        }
2153
2154        if (mNetConfigs[info.getType()].isDefault()) {
2155            tryFailover(info.getType());
2156            if (mActiveDefaultNetwork != -1) {
2157                NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
2158                intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
2159            } else {
2160                mDefaultInetConditionPublished = 0;
2161                intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
2162            }
2163        }
2164
2165        intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
2166
2167        final Intent immediateIntent = new Intent(intent);
2168        immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
2169        sendStickyBroadcast(immediateIntent);
2170        sendStickyBroadcast(intent);
2171        /*
2172         * If the failover network is already connected, then immediately send
2173         * out a followup broadcast indicating successful failover
2174         */
2175        if (mActiveDefaultNetwork != -1) {
2176            sendConnectedBroadcast(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo());
2177        }
2178    }
2179
2180    private void sendStickyBroadcast(Intent intent) {
2181        synchronized(this) {
2182            if (!mSystemReady) {
2183                mInitialBroadcast = new Intent(intent);
2184            }
2185            intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
2186            if (VDBG) {
2187                log("sendStickyBroadcast: action=" + intent.getAction());
2188            }
2189
2190            final long ident = Binder.clearCallingIdentity();
2191            try {
2192                mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
2193            } finally {
2194                Binder.restoreCallingIdentity(ident);
2195            }
2196        }
2197    }
2198
2199    private void sendStickyBroadcastDelayed(Intent intent, int delayMs) {
2200        if (delayMs <= 0) {
2201            sendStickyBroadcast(intent);
2202        } else {
2203            if (VDBG) {
2204                log("sendStickyBroadcastDelayed: delayMs=" + delayMs + ", action="
2205                        + intent.getAction());
2206            }
2207            mHandler.sendMessageDelayed(mHandler.obtainMessage(
2208                    EVENT_SEND_STICKY_BROADCAST_INTENT, intent), delayMs);
2209        }
2210    }
2211
2212    void systemReady() {
2213        mCaptivePortalTracker = CaptivePortalTracker.makeCaptivePortalTracker(mContext, this);
2214        loadGlobalProxy();
2215
2216        synchronized(this) {
2217            mSystemReady = true;
2218            if (mInitialBroadcast != null) {
2219                mContext.sendStickyBroadcastAsUser(mInitialBroadcast, UserHandle.ALL);
2220                mInitialBroadcast = null;
2221            }
2222        }
2223        // load the global proxy at startup
2224        mHandler.sendMessage(mHandler.obtainMessage(EVENT_APPLY_GLOBAL_HTTP_PROXY));
2225
2226        // Try bringing up tracker, but if KeyStore isn't ready yet, wait
2227        // for user to unlock device.
2228        if (!updateLockdownVpn()) {
2229            final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
2230            mContext.registerReceiver(mUserPresentReceiver, filter);
2231        }
2232    }
2233
2234    private BroadcastReceiver mUserPresentReceiver = new BroadcastReceiver() {
2235        @Override
2236        public void onReceive(Context context, Intent intent) {
2237            // Try creating lockdown tracker, since user present usually means
2238            // unlocked keystore.
2239            if (updateLockdownVpn()) {
2240                mContext.unregisterReceiver(this);
2241            }
2242        }
2243    };
2244
2245    private boolean isNewNetTypePreferredOverCurrentNetType(int type) {
2246        if (((type != mNetworkPreference)
2247                      && (mNetConfigs[mActiveDefaultNetwork].priority > mNetConfigs[type].priority))
2248                   || (mNetworkPreference == mActiveDefaultNetwork)) {
2249            return false;
2250        }
2251        return true;
2252    }
2253
2254    private void handleConnect(NetworkInfo info) {
2255        final int newNetType = info.getType();
2256
2257        setupDataActivityTracking(newNetType);
2258
2259        // snapshot isFailover, because sendConnectedBroadcast() resets it
2260        boolean isFailover = info.isFailover();
2261        final NetworkStateTracker thisNet = mNetTrackers[newNetType];
2262        final String thisIface = thisNet.getLinkProperties().getInterfaceName();
2263
2264        if (VDBG) {
2265            log("handleConnect: E newNetType=" + newNetType + " thisIface=" + thisIface
2266                    + " isFailover" + isFailover);
2267        }
2268
2269        // if this is a default net and other default is running
2270        // kill the one not preferred
2271        if (mNetConfigs[newNetType].isDefault()) {
2272            if (mActiveDefaultNetwork != -1 && mActiveDefaultNetwork != newNetType) {
2273                if (isNewNetTypePreferredOverCurrentNetType(newNetType)) {
2274                    // tear down the other
2275                    NetworkStateTracker otherNet =
2276                            mNetTrackers[mActiveDefaultNetwork];
2277                    if (DBG) {
2278                        log("Policy requires " + otherNet.getNetworkInfo().getTypeName() +
2279                            " teardown");
2280                    }
2281                    if (!teardown(otherNet)) {
2282                        loge("Network declined teardown request");
2283                        teardown(thisNet);
2284                        return;
2285                    }
2286                } else {
2287                       // don't accept this one
2288                        if (VDBG) {
2289                            log("Not broadcasting CONNECT_ACTION " +
2290                                "to torn down network " + info.getTypeName());
2291                        }
2292                        teardown(thisNet);
2293                        return;
2294                }
2295            }
2296            synchronized (ConnectivityService.this) {
2297                // have a new default network, release the transition wakelock in a second
2298                // if it's held.  The second pause is to allow apps to reconnect over the
2299                // new network
2300                if (mNetTransitionWakeLock.isHeld()) {
2301                    mHandler.sendMessageDelayed(mHandler.obtainMessage(
2302                            EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
2303                            mNetTransitionWakeLockSerialNumber, 0),
2304                            1000);
2305                }
2306            }
2307            mActiveDefaultNetwork = newNetType;
2308            // this will cause us to come up initially as unconnected and switching
2309            // to connected after our normal pause unless somebody reports us as reall
2310            // disconnected
2311            mDefaultInetConditionPublished = 0;
2312            mDefaultConnectionSequence++;
2313            mInetConditionChangeInFlight = false;
2314            // Don't do this - if we never sign in stay, grey
2315            //reportNetworkCondition(mActiveDefaultNetwork, 100);
2316        }
2317        thisNet.setTeardownRequested(false);
2318        updateNetworkSettings(thisNet);
2319        updateMtuSizeSettings(thisNet);
2320        handleConnectivityChange(newNetType, false);
2321        sendConnectedBroadcastDelayed(info, getConnectivityChangeDelay());
2322
2323        // notify battery stats service about this network
2324        if (thisIface != null) {
2325            try {
2326                BatteryStatsService.getService().noteNetworkInterfaceType(thisIface, newNetType);
2327            } catch (RemoteException e) {
2328                // ignored; service lives in system_server
2329            }
2330        }
2331    }
2332
2333    /** @hide */
2334    @Override
2335    public void captivePortalCheckCompleted(NetworkInfo info, boolean isCaptivePortal) {
2336        enforceConnectivityInternalPermission();
2337        if (DBG) log("captivePortalCheckCompleted: ni=" + info + " captive=" + isCaptivePortal);
2338        mNetTrackers[info.getType()].captivePortalCheckCompleted(isCaptivePortal);
2339    }
2340
2341    /**
2342     * Setup data activity tracking for the given network interface.
2343     *
2344     * Every {@code setupDataActivityTracking} should be paired with a
2345     * {@link removeDataActivityTracking} for cleanup.
2346     */
2347    private void setupDataActivityTracking(int type) {
2348        final NetworkStateTracker thisNet = mNetTrackers[type];
2349        final String iface = thisNet.getLinkProperties().getInterfaceName();
2350
2351        final int timeout;
2352
2353        if (ConnectivityManager.isNetworkTypeMobile(type)) {
2354            timeout = Settings.Global.getInt(mContext.getContentResolver(),
2355                                             Settings.Global.DATA_ACTIVITY_TIMEOUT_MOBILE,
2356                                             5);
2357            // Canonicalize mobile network type
2358            type = ConnectivityManager.TYPE_MOBILE;
2359        } else if (ConnectivityManager.TYPE_WIFI == type) {
2360            timeout = Settings.Global.getInt(mContext.getContentResolver(),
2361                                             Settings.Global.DATA_ACTIVITY_TIMEOUT_WIFI,
2362                                             0);
2363        } else {
2364            // do not track any other networks
2365            timeout = 0;
2366        }
2367
2368        if (timeout > 0 && iface != null) {
2369            try {
2370                mNetd.addIdleTimer(iface, timeout, Integer.toString(type));
2371            } catch (RemoteException e) {
2372            }
2373        }
2374    }
2375
2376    /**
2377     * Remove data activity tracking when network disconnects.
2378     */
2379    private void removeDataActivityTracking(int type) {
2380        final NetworkStateTracker net = mNetTrackers[type];
2381        final String iface = net.getLinkProperties().getInterfaceName();
2382
2383        if (iface != null && (ConnectivityManager.isNetworkTypeMobile(type) ||
2384                              ConnectivityManager.TYPE_WIFI == type)) {
2385            try {
2386                // the call fails silently if no idletimer setup for this interface
2387                mNetd.removeIdleTimer(iface);
2388            } catch (RemoteException e) {
2389            }
2390        }
2391    }
2392
2393    /**
2394     * After a change in the connectivity state of a network. We're mainly
2395     * concerned with making sure that the list of DNS servers is set up
2396     * according to which networks are connected, and ensuring that the
2397     * right routing table entries exist.
2398     */
2399    private void handleConnectivityChange(int netType, boolean doReset) {
2400        int resetMask = doReset ? NetworkUtils.RESET_ALL_ADDRESSES : 0;
2401        boolean exempt = ConnectivityManager.isNetworkTypeExempt(netType);
2402        if (VDBG) {
2403            log("handleConnectivityChange: netType=" + netType + " doReset=" + doReset
2404                    + " resetMask=" + resetMask);
2405        }
2406
2407        /*
2408         * If a non-default network is enabled, add the host routes that
2409         * will allow it's DNS servers to be accessed.
2410         */
2411        handleDnsConfigurationChange(netType);
2412
2413        LinkProperties curLp = mCurrentLinkProperties[netType];
2414        LinkProperties newLp = null;
2415
2416        if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
2417            newLp = mNetTrackers[netType].getLinkProperties();
2418            if (VDBG) {
2419                log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2420                        " doReset=" + doReset + " resetMask=" + resetMask +
2421                        "\n   curLp=" + curLp +
2422                        "\n   newLp=" + newLp);
2423            }
2424
2425            if (curLp != null) {
2426                if (curLp.isIdenticalInterfaceName(newLp)) {
2427                    CompareResult<LinkAddress> car = curLp.compareAddresses(newLp);
2428                    if ((car.removed.size() != 0) || (car.added.size() != 0)) {
2429                        for (LinkAddress linkAddr : car.removed) {
2430                            if (linkAddr.getAddress() instanceof Inet4Address) {
2431                                resetMask |= NetworkUtils.RESET_IPV4_ADDRESSES;
2432                            }
2433                            if (linkAddr.getAddress() instanceof Inet6Address) {
2434                                resetMask |= NetworkUtils.RESET_IPV6_ADDRESSES;
2435                            }
2436                        }
2437                        if (DBG) {
2438                            log("handleConnectivityChange: addresses changed" +
2439                                    " linkProperty[" + netType + "]:" + " resetMask=" + resetMask +
2440                                    "\n   car=" + car);
2441                        }
2442                    } else {
2443                        if (VDBG) {
2444                            log("handleConnectivityChange: addresses are the same reset per" +
2445                                   " doReset linkProperty[" + netType + "]:" +
2446                                   " resetMask=" + resetMask);
2447                        }
2448                    }
2449                } else {
2450                    resetMask = NetworkUtils.RESET_ALL_ADDRESSES;
2451                    if (DBG) {
2452                        log("handleConnectivityChange: interface not not equivalent reset both" +
2453                                " linkProperty[" + netType + "]:" +
2454                                " resetMask=" + resetMask);
2455                    }
2456                }
2457            }
2458            if (mNetConfigs[netType].isDefault()) {
2459                handleApplyDefaultProxy(newLp.getHttpProxy());
2460            }
2461        } else {
2462            if (VDBG) {
2463                log("handleConnectivityChange: changed linkProperty[" + netType + "]:" +
2464                        " doReset=" + doReset + " resetMask=" + resetMask +
2465                        "\n  curLp=" + curLp +
2466                        "\n  newLp= null");
2467            }
2468        }
2469        mCurrentLinkProperties[netType] = newLp;
2470        boolean resetDns = updateRoutes(newLp, curLp, mNetConfigs[netType].isDefault(), exempt);
2471
2472        if (resetMask != 0 || resetDns) {
2473            if (VDBG) log("handleConnectivityChange: resetting");
2474            if (curLp != null) {
2475                if (VDBG) log("handleConnectivityChange: resetting curLp=" + curLp);
2476                for (String iface : curLp.getAllInterfaceNames()) {
2477                    if (TextUtils.isEmpty(iface) == false) {
2478                        if (resetMask != 0) {
2479                            if (DBG) log("resetConnections(" + iface + ", " + resetMask + ")");
2480                            NetworkUtils.resetConnections(iface, resetMask);
2481
2482                            // Tell VPN the interface is down. It is a temporary
2483                            // but effective fix to make VPN aware of the change.
2484                            if ((resetMask & NetworkUtils.RESET_IPV4_ADDRESSES) != 0) {
2485                                synchronized(mVpns) {
2486                                    for (int i = 0; i < mVpns.size(); i++) {
2487                                        mVpns.valueAt(i).interfaceStatusChanged(iface, false);
2488                                    }
2489                                }
2490                            }
2491                        }
2492                        if (resetDns) {
2493                            flushVmDnsCache();
2494                            if (VDBG) log("resetting DNS cache for " + iface);
2495                            try {
2496                                mNetd.flushInterfaceDnsCache(iface);
2497                            } catch (Exception e) {
2498                                // never crash - catch them all
2499                                if (DBG) loge("Exception resetting dns cache: " + e);
2500                            }
2501                        }
2502                    } else {
2503                        loge("Can't reset connection for type "+netType);
2504                    }
2505                }
2506            }
2507        }
2508
2509        // Update 464xlat state.
2510        NetworkStateTracker tracker = mNetTrackers[netType];
2511        if (mClat.requiresClat(netType, tracker)) {
2512
2513            // If the connection was previously using clat, but is not using it now, stop the clat
2514            // daemon. Normally, this happens automatically when the connection disconnects, but if
2515            // the disconnect is not reported, or if the connection's LinkProperties changed for
2516            // some other reason (e.g., handoff changes the IP addresses on the link), it would
2517            // still be running. If it's not running, then stopping it is a no-op.
2518            if (Nat464Xlat.isRunningClat(curLp) && !Nat464Xlat.isRunningClat(newLp)) {
2519                mClat.stopClat();
2520            }
2521            // If the link requires clat to be running, then start the daemon now.
2522            if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
2523                mClat.startClat(tracker);
2524            } else {
2525                mClat.stopClat();
2526            }
2527        }
2528
2529        // TODO: Temporary notifying upstread change to Tethering.
2530        //       @see bug/4455071
2531        /** Notify TetheringService if interface name has been changed. */
2532        if (TextUtils.equals(mNetTrackers[netType].getNetworkInfo().getReason(),
2533                             PhoneConstants.REASON_LINK_PROPERTIES_CHANGED)) {
2534            if (isTetheringSupported()) {
2535                mTethering.handleTetherIfaceChange();
2536            }
2537        }
2538    }
2539
2540    /**
2541     * Add and remove routes using the old properties (null if not previously connected),
2542     * new properties (null if becoming disconnected).  May even be double null, which
2543     * is a noop.
2544     * Uses isLinkDefault to determine if default routes should be set or conversely if
2545     * host routes should be set to the dns servers
2546     * returns a boolean indicating the routes changed
2547     */
2548    private boolean updateRoutes(LinkProperties newLp, LinkProperties curLp,
2549            boolean isLinkDefault, boolean exempt) {
2550        Collection<RouteInfo> routesToAdd = null;
2551        CompareResult<InetAddress> dnsDiff = new CompareResult<InetAddress>();
2552        CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
2553        if (curLp != null) {
2554            // check for the delta between the current set and the new
2555            routeDiff = curLp.compareAllRoutes(newLp);
2556            dnsDiff = curLp.compareDnses(newLp);
2557        } else if (newLp != null) {
2558            routeDiff.added = newLp.getAllRoutes();
2559            dnsDiff.added = newLp.getDnses();
2560        }
2561
2562        boolean routesChanged = (routeDiff.removed.size() != 0 || routeDiff.added.size() != 0);
2563
2564        for (RouteInfo r : routeDiff.removed) {
2565            if (isLinkDefault || ! r.isDefaultRoute()) {
2566                if (VDBG) log("updateRoutes: default remove route r=" + r);
2567                removeRoute(curLp, r, TO_DEFAULT_TABLE);
2568            }
2569            if (isLinkDefault == false) {
2570                // remove from a secondary route table
2571                removeRoute(curLp, r, TO_SECONDARY_TABLE);
2572            }
2573        }
2574
2575        if (!isLinkDefault) {
2576            // handle DNS routes
2577            if (routesChanged) {
2578                // routes changed - remove all old dns entries and add new
2579                if (curLp != null) {
2580                    for (InetAddress oldDns : curLp.getDnses()) {
2581                        removeRouteToAddress(curLp, oldDns);
2582                    }
2583                }
2584                if (newLp != null) {
2585                    for (InetAddress newDns : newLp.getDnses()) {
2586                        addRouteToAddress(newLp, newDns, exempt);
2587                    }
2588                }
2589            } else {
2590                // no change in routes, check for change in dns themselves
2591                for (InetAddress oldDns : dnsDiff.removed) {
2592                    removeRouteToAddress(curLp, oldDns);
2593                }
2594                for (InetAddress newDns : dnsDiff.added) {
2595                    addRouteToAddress(newLp, newDns, exempt);
2596                }
2597            }
2598        }
2599
2600        for (RouteInfo r :  routeDiff.added) {
2601            if (isLinkDefault || ! r.isDefaultRoute()) {
2602                addRoute(newLp, r, TO_DEFAULT_TABLE, exempt);
2603            } else {
2604                // add to a secondary route table
2605                addRoute(newLp, r, TO_SECONDARY_TABLE, UNEXEMPT);
2606
2607                // many radios add a default route even when we don't want one.
2608                // remove the default route unless somebody else has asked for it
2609                String ifaceName = newLp.getInterfaceName();
2610                synchronized (mRoutesLock) {
2611                    if (!TextUtils.isEmpty(ifaceName) && !mAddedRoutes.contains(r)) {
2612                        if (VDBG) log("Removing " + r + " for interface " + ifaceName);
2613                        try {
2614                            mNetd.removeRoute(ifaceName, r);
2615                        } catch (Exception e) {
2616                            // never crash - catch them all
2617                            if (DBG) loge("Exception trying to remove a route: " + e);
2618                        }
2619                    }
2620                }
2621            }
2622        }
2623
2624        return routesChanged;
2625    }
2626
2627   /**
2628     * Reads the network specific MTU size from reources.
2629     * and set it on it's iface.
2630     */
2631   private void updateMtuSizeSettings(NetworkStateTracker nt) {
2632       final String iface = nt.getLinkProperties().getInterfaceName();
2633       final int mtu = nt.getLinkProperties().getMtu();
2634
2635       if (mtu < 68 || mtu > 10000) {
2636           loge("Unexpected mtu value: " + nt);
2637           return;
2638       }
2639
2640       try {
2641           if (VDBG) log("Setting MTU size: " + iface + ", " + mtu);
2642           mNetd.setMtu(iface, mtu);
2643       } catch (Exception e) {
2644           Slog.e(TAG, "exception in setMtu()" + e);
2645       }
2646   }
2647
2648    /**
2649     * Reads the network specific TCP buffer sizes from SystemProperties
2650     * net.tcp.buffersize.[default|wifi|umts|edge|gprs] and set them for system
2651     * wide use
2652     */
2653    private void updateNetworkSettings(NetworkStateTracker nt) {
2654        String key = nt.getTcpBufferSizesPropName();
2655        String bufferSizes = key == null ? null : SystemProperties.get(key);
2656
2657        if (TextUtils.isEmpty(bufferSizes)) {
2658            if (VDBG) log(key + " not found in system properties. Using defaults");
2659
2660            // Setting to default values so we won't be stuck to previous values
2661            key = "net.tcp.buffersize.default";
2662            bufferSizes = SystemProperties.get(key);
2663        }
2664
2665        // Set values in kernel
2666        if (bufferSizes.length() != 0) {
2667            if (VDBG) {
2668                log("Setting TCP values: [" + bufferSizes
2669                        + "] which comes from [" + key + "]");
2670            }
2671            setBufferSize(bufferSizes);
2672        }
2673    }
2674
2675    /**
2676     * Writes TCP buffer sizes to /sys/kernel/ipv4/tcp_[r/w]mem_[min/def/max]
2677     * which maps to /proc/sys/net/ipv4/tcp_rmem and tcpwmem
2678     *
2679     * @param bufferSizes in the format of "readMin, readInitial, readMax,
2680     *        writeMin, writeInitial, writeMax"
2681     */
2682    private void setBufferSize(String bufferSizes) {
2683        try {
2684            String[] values = bufferSizes.split(",");
2685
2686            if (values.length == 6) {
2687              final String prefix = "/sys/kernel/ipv4/tcp_";
2688                FileUtils.stringToFile(prefix + "rmem_min", values[0]);
2689                FileUtils.stringToFile(prefix + "rmem_def", values[1]);
2690                FileUtils.stringToFile(prefix + "rmem_max", values[2]);
2691                FileUtils.stringToFile(prefix + "wmem_min", values[3]);
2692                FileUtils.stringToFile(prefix + "wmem_def", values[4]);
2693                FileUtils.stringToFile(prefix + "wmem_max", values[5]);
2694            } else {
2695                loge("Invalid buffersize string: " + bufferSizes);
2696            }
2697        } catch (IOException e) {
2698            loge("Can't set tcp buffer sizes:" + e);
2699        }
2700    }
2701
2702    /**
2703     * Adjust the per-process dns entries (net.dns<x>.<pid>) based
2704     * on the highest priority active net which this process requested.
2705     * If there aren't any, clear it out
2706     */
2707    private void reassessPidDns(int pid, boolean doBump)
2708    {
2709        if (VDBG) log("reassessPidDns for pid " + pid);
2710        Integer myPid = new Integer(pid);
2711        for(int i : mPriorityList) {
2712            if (mNetConfigs[i].isDefault()) {
2713                continue;
2714            }
2715            NetworkStateTracker nt = mNetTrackers[i];
2716            if (nt.getNetworkInfo().isConnected() &&
2717                    !nt.isTeardownRequested()) {
2718                LinkProperties p = nt.getLinkProperties();
2719                if (p == null) continue;
2720                if (mNetRequestersPids[i].contains(myPid)) {
2721                    try {
2722                        mNetd.setDnsInterfaceForPid(p.getInterfaceName(), pid);
2723                    } catch (Exception e) {
2724                        Slog.e(TAG, "exception reasseses pid dns: " + e);
2725                    }
2726                    return;
2727                }
2728           }
2729        }
2730        // nothing found - delete
2731        try {
2732            mNetd.clearDnsInterfaceForPid(pid);
2733        } catch (Exception e) {
2734            Slog.e(TAG, "exception clear interface from pid: " + e);
2735        }
2736    }
2737
2738    private void flushVmDnsCache() {
2739        /*
2740         * Tell the VMs to toss their DNS caches
2741         */
2742        Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
2743        intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
2744        /*
2745         * Connectivity events can happen before boot has completed ...
2746         */
2747        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
2748        final long ident = Binder.clearCallingIdentity();
2749        try {
2750            mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
2751        } finally {
2752            Binder.restoreCallingIdentity(ident);
2753        }
2754    }
2755
2756    // Caller must grab mDnsLock.
2757    private void updateDnsLocked(String network, String iface,
2758            Collection<InetAddress> dnses, String domains, boolean defaultDns) {
2759        int last = 0;
2760        if (dnses.size() == 0 && mDefaultDns != null) {
2761            dnses = new ArrayList();
2762            dnses.add(mDefaultDns);
2763            if (DBG) {
2764                loge("no dns provided for " + network + " - using " + mDefaultDns.getHostAddress());
2765            }
2766        }
2767
2768        try {
2769            mNetd.setDnsServersForInterface(iface, NetworkUtils.makeStrings(dnses), domains);
2770            if (defaultDns) {
2771                mNetd.setDefaultInterfaceForDns(iface);
2772            }
2773
2774            for (InetAddress dns : dnses) {
2775                ++last;
2776                String key = "net.dns" + last;
2777                String value = dns.getHostAddress();
2778                SystemProperties.set(key, value);
2779            }
2780            for (int i = last + 1; i <= mNumDnsEntries; ++i) {
2781                String key = "net.dns" + i;
2782                SystemProperties.set(key, "");
2783            }
2784            mNumDnsEntries = last;
2785        } catch (Exception e) {
2786            loge("exception setting default dns interface: " + e);
2787        }
2788    }
2789
2790    private void handleDnsConfigurationChange(int netType) {
2791        // add default net's dns entries
2792        NetworkStateTracker nt = mNetTrackers[netType];
2793        if (nt != null && nt.getNetworkInfo().isConnected() && !nt.isTeardownRequested()) {
2794            LinkProperties p = nt.getLinkProperties();
2795            if (p == null) return;
2796            Collection<InetAddress> dnses = p.getDnses();
2797            if (mNetConfigs[netType].isDefault()) {
2798                String network = nt.getNetworkInfo().getTypeName();
2799                synchronized (mDnsLock) {
2800                    updateDnsLocked(network, p.getInterfaceName(), dnses, p.getDomains(), true);
2801                }
2802            } else {
2803                try {
2804                    mNetd.setDnsServersForInterface(p.getInterfaceName(),
2805                            NetworkUtils.makeStrings(dnses), p.getDomains());
2806                } catch (Exception e) {
2807                    if (DBG) loge("exception setting dns servers: " + e);
2808                }
2809                // set per-pid dns for attached secondary nets
2810                List<Integer> pids = mNetRequestersPids[netType];
2811                for (Integer pid : pids) {
2812                    try {
2813                        mNetd.setDnsInterfaceForPid(p.getInterfaceName(), pid);
2814                    } catch (Exception e) {
2815                        Slog.e(TAG, "exception setting interface for pid: " + e);
2816                    }
2817                }
2818            }
2819            flushVmDnsCache();
2820        }
2821    }
2822
2823    private int getRestoreDefaultNetworkDelay(int networkType) {
2824        String restoreDefaultNetworkDelayStr = SystemProperties.get(
2825                NETWORK_RESTORE_DELAY_PROP_NAME);
2826        if(restoreDefaultNetworkDelayStr != null &&
2827                restoreDefaultNetworkDelayStr.length() != 0) {
2828            try {
2829                return Integer.valueOf(restoreDefaultNetworkDelayStr);
2830            } catch (NumberFormatException e) {
2831            }
2832        }
2833        // if the system property isn't set, use the value for the apn type
2834        int ret = RESTORE_DEFAULT_NETWORK_DELAY;
2835
2836        if ((networkType <= ConnectivityManager.MAX_NETWORK_TYPE) &&
2837                (mNetConfigs[networkType] != null)) {
2838            ret = mNetConfigs[networkType].restoreTime;
2839        }
2840        return ret;
2841    }
2842
2843    @Override
2844    protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
2845        final IndentingPrintWriter pw = new IndentingPrintWriter(writer, "  ");
2846        if (mContext.checkCallingOrSelfPermission(
2847                android.Manifest.permission.DUMP)
2848                != PackageManager.PERMISSION_GRANTED) {
2849            pw.println("Permission Denial: can't dump ConnectivityService " +
2850                    "from from pid=" + Binder.getCallingPid() + ", uid=" +
2851                    Binder.getCallingUid());
2852            return;
2853        }
2854
2855        // TODO: add locking to get atomic snapshot
2856        pw.println();
2857        for (int i = 0; i < mNetTrackers.length; i++) {
2858            final NetworkStateTracker nst = mNetTrackers[i];
2859            if (nst != null) {
2860                pw.println("NetworkStateTracker for " + getNetworkTypeName(i) + ":");
2861                pw.increaseIndent();
2862                if (nst.getNetworkInfo().isConnected()) {
2863                    pw.println("Active network: " + nst.getNetworkInfo().
2864                            getTypeName());
2865                }
2866                pw.println(nst.getNetworkInfo());
2867                pw.println(nst.getLinkProperties());
2868                pw.println(nst);
2869                pw.println();
2870                pw.decreaseIndent();
2871            }
2872        }
2873
2874        pw.println("Network Requester Pids:");
2875        pw.increaseIndent();
2876        for (int net : mPriorityList) {
2877            String pidString = net + ": ";
2878            for (Integer pid : mNetRequestersPids[net]) {
2879                pidString = pidString + pid.toString() + ", ";
2880            }
2881            pw.println(pidString);
2882        }
2883        pw.println();
2884        pw.decreaseIndent();
2885
2886        pw.println("FeatureUsers:");
2887        pw.increaseIndent();
2888        for (Object requester : mFeatureUsers) {
2889            pw.println(requester.toString());
2890        }
2891        pw.println();
2892        pw.decreaseIndent();
2893
2894        synchronized (this) {
2895            pw.println("NetworkTranstionWakeLock is currently " +
2896                    (mNetTransitionWakeLock.isHeld() ? "" : "not ") + "held.");
2897            pw.println("It was last requested for "+mNetTransitionWakeLockCausedBy);
2898        }
2899        pw.println();
2900
2901        mTethering.dump(fd, pw, args);
2902
2903        if (mInetLog != null) {
2904            pw.println();
2905            pw.println("Inet condition reports:");
2906            pw.increaseIndent();
2907            for(int i = 0; i < mInetLog.size(); i++) {
2908                pw.println(mInetLog.get(i));
2909            }
2910            pw.decreaseIndent();
2911        }
2912    }
2913
2914    // must be stateless - things change under us.
2915    private class NetworkStateTrackerHandler extends Handler {
2916        public NetworkStateTrackerHandler(Looper looper) {
2917            super(looper);
2918        }
2919
2920        @Override
2921        public void handleMessage(Message msg) {
2922            NetworkInfo info;
2923            switch (msg.what) {
2924                case NetworkStateTracker.EVENT_STATE_CHANGED: {
2925                    info = (NetworkInfo) msg.obj;
2926                    NetworkInfo.State state = info.getState();
2927
2928                    if (VDBG || (state == NetworkInfo.State.CONNECTED) ||
2929                            (state == NetworkInfo.State.DISCONNECTED) ||
2930                            (state == NetworkInfo.State.SUSPENDED)) {
2931                        log("ConnectivityChange for " +
2932                            info.getTypeName() + ": " +
2933                            state + "/" + info.getDetailedState());
2934                    }
2935
2936                    // Since mobile has the notion of a network/apn that can be used for
2937                    // provisioning we need to check every time we're connected as
2938                    // CaptiveProtalTracker won't detected it because DCT doesn't report it
2939                    // as connected as ACTION_ANY_DATA_CONNECTION_STATE_CHANGED instead its
2940                    // reported as ACTION_DATA_CONNECTION_CONNECTED_TO_PROVISIONING_APN. Which
2941                    // is received by MDST and sent here as EVENT_STATE_CHANGED.
2942                    if (ConnectivityManager.isNetworkTypeMobile(info.getType())
2943                            && (0 != Settings.Global.getInt(mContext.getContentResolver(),
2944                                        Settings.Global.DEVICE_PROVISIONED, 0))
2945                            && (((state == NetworkInfo.State.CONNECTED)
2946                                    && (info.getType() == ConnectivityManager.TYPE_MOBILE))
2947                                || info.isConnectedToProvisioningNetwork())) {
2948                        log("ConnectivityChange checkMobileProvisioning for"
2949                                + " TYPE_MOBILE or ProvisioningNetwork");
2950                        checkMobileProvisioning(CheckMp.MAX_TIMEOUT_MS);
2951                    }
2952
2953                    EventLogTags.writeConnectivityStateChanged(
2954                            info.getType(), info.getSubtype(), info.getDetailedState().ordinal());
2955
2956                    if (info.getDetailedState() ==
2957                            NetworkInfo.DetailedState.FAILED) {
2958                        handleConnectionFailure(info);
2959                    } else if (info.isConnectedToProvisioningNetwork()) {
2960                        /**
2961                         * TODO: Create ConnectivityManager.TYPE_MOBILE_PROVISIONING
2962                         * for now its an in between network, its a network that
2963                         * is actually a default network but we don't want it to be
2964                         * announced as such to keep background applications from
2965                         * trying to use it. It turns out that some still try so we
2966                         * take the additional step of clearing any default routes
2967                         * to the link that may have incorrectly setup by the lower
2968                         * levels.
2969                         */
2970                        LinkProperties lp = getLinkProperties(info.getType());
2971                        if (DBG) {
2972                            log("EVENT_STATE_CHANGED: connected to provisioning network, lp=" + lp);
2973                        }
2974
2975                        // Clear any default routes setup by the radio so
2976                        // any activity by applications trying to use this
2977                        // connection will fail until the provisioning network
2978                        // is enabled.
2979                        for (RouteInfo r : lp.getRoutes()) {
2980                            removeRoute(lp, r, TO_DEFAULT_TABLE);
2981                        }
2982                    } else if (state == NetworkInfo.State.DISCONNECTED) {
2983                        handleDisconnect(info);
2984                    } else if (state == NetworkInfo.State.SUSPENDED) {
2985                        // TODO: need to think this over.
2986                        // the logic here is, handle SUSPENDED the same as
2987                        // DISCONNECTED. The only difference being we are
2988                        // broadcasting an intent with NetworkInfo that's
2989                        // suspended. This allows the applications an
2990                        // opportunity to handle DISCONNECTED and SUSPENDED
2991                        // differently, or not.
2992                        handleDisconnect(info);
2993                    } else if (state == NetworkInfo.State.CONNECTED) {
2994                        handleConnect(info);
2995                    }
2996                    if (mLockdownTracker != null) {
2997                        mLockdownTracker.onNetworkInfoChanged(info);
2998                    }
2999                    break;
3000                }
3001                case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED: {
3002                    info = (NetworkInfo) msg.obj;
3003                    // TODO: Temporary allowing network configuration
3004                    //       change not resetting sockets.
3005                    //       @see bug/4455071
3006                    handleConnectivityChange(info.getType(), false);
3007                    break;
3008                }
3009                case NetworkStateTracker.EVENT_NETWORK_SUBTYPE_CHANGED: {
3010                    info = (NetworkInfo) msg.obj;
3011                    int type = info.getType();
3012                    updateNetworkSettings(mNetTrackers[type]);
3013                    break;
3014                }
3015            }
3016        }
3017    }
3018
3019    private class InternalHandler extends Handler {
3020        public InternalHandler(Looper looper) {
3021            super(looper);
3022        }
3023
3024        @Override
3025        public void handleMessage(Message msg) {
3026            NetworkInfo info;
3027            switch (msg.what) {
3028                case EVENT_CLEAR_NET_TRANSITION_WAKELOCK: {
3029                    String causedBy = null;
3030                    synchronized (ConnectivityService.this) {
3031                        if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
3032                                mNetTransitionWakeLock.isHeld()) {
3033                            mNetTransitionWakeLock.release();
3034                            causedBy = mNetTransitionWakeLockCausedBy;
3035                        }
3036                    }
3037                    if (causedBy != null) {
3038                        log("NetTransition Wakelock for " + causedBy + " released by timeout");
3039                    }
3040                    break;
3041                }
3042                case EVENT_RESTORE_DEFAULT_NETWORK: {
3043                    FeatureUser u = (FeatureUser)msg.obj;
3044                    u.expire();
3045                    break;
3046                }
3047                case EVENT_INET_CONDITION_CHANGE: {
3048                    int netType = msg.arg1;
3049                    int condition = msg.arg2;
3050                    handleInetConditionChange(netType, condition);
3051                    break;
3052                }
3053                case EVENT_INET_CONDITION_HOLD_END: {
3054                    int netType = msg.arg1;
3055                    int sequence = msg.arg2;
3056                    handleInetConditionHoldEnd(netType, sequence);
3057                    break;
3058                }
3059                case EVENT_SET_NETWORK_PREFERENCE: {
3060                    int preference = msg.arg1;
3061                    handleSetNetworkPreference(preference);
3062                    break;
3063                }
3064                case EVENT_SET_MOBILE_DATA: {
3065                    boolean enabled = (msg.arg1 == ENABLED);
3066                    handleSetMobileData(enabled);
3067                    break;
3068                }
3069                case EVENT_APPLY_GLOBAL_HTTP_PROXY: {
3070                    handleDeprecatedGlobalHttpProxy();
3071                    break;
3072                }
3073                case EVENT_SET_DEPENDENCY_MET: {
3074                    boolean met = (msg.arg1 == ENABLED);
3075                    handleSetDependencyMet(msg.arg2, met);
3076                    break;
3077                }
3078                case EVENT_SEND_STICKY_BROADCAST_INTENT: {
3079                    Intent intent = (Intent)msg.obj;
3080                    sendStickyBroadcast(intent);
3081                    break;
3082                }
3083                case EVENT_SET_POLICY_DATA_ENABLE: {
3084                    final int networkType = msg.arg1;
3085                    final boolean enabled = msg.arg2 == ENABLED;
3086                    handleSetPolicyDataEnable(networkType, enabled);
3087                    break;
3088                }
3089                case EVENT_VPN_STATE_CHANGED: {
3090                    if (mLockdownTracker != null) {
3091                        mLockdownTracker.onVpnStateChanged((NetworkInfo) msg.obj);
3092                    }
3093                    break;
3094                }
3095                case EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: {
3096                    int tag = mEnableFailFastMobileDataTag.get();
3097                    if (msg.arg1 == tag) {
3098                        MobileDataStateTracker mobileDst =
3099                            (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE];
3100                        if (mobileDst != null) {
3101                            mobileDst.setEnableFailFastMobileData(msg.arg2);
3102                        }
3103                    } else {
3104                        log("EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: stale arg1:" + msg.arg1
3105                                + " != tag:" + tag);
3106                    }
3107                    break;
3108                }
3109                case EVENT_SAMPLE_INTERVAL_ELAPSED: {
3110                    handleNetworkSamplingTimeout();
3111                    break;
3112                }
3113                case EVENT_PROXY_HAS_CHANGED: {
3114                    handleApplyDefaultProxy((ProxyProperties)msg.obj);
3115                    break;
3116                }
3117            }
3118        }
3119    }
3120
3121    // javadoc from interface
3122    public int tether(String iface) {
3123        enforceTetherChangePermission();
3124
3125        if (isTetheringSupported()) {
3126            return mTethering.tether(iface);
3127        } else {
3128            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3129        }
3130    }
3131
3132    // javadoc from interface
3133    public int untether(String iface) {
3134        enforceTetherChangePermission();
3135
3136        if (isTetheringSupported()) {
3137            return mTethering.untether(iface);
3138        } else {
3139            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3140        }
3141    }
3142
3143    // javadoc from interface
3144    public int getLastTetherError(String iface) {
3145        enforceTetherAccessPermission();
3146
3147        if (isTetheringSupported()) {
3148            return mTethering.getLastTetherError(iface);
3149        } else {
3150            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3151        }
3152    }
3153
3154    // TODO - proper iface API for selection by property, inspection, etc
3155    public String[] getTetherableUsbRegexs() {
3156        enforceTetherAccessPermission();
3157        if (isTetheringSupported()) {
3158            return mTethering.getTetherableUsbRegexs();
3159        } else {
3160            return new String[0];
3161        }
3162    }
3163
3164    public String[] getTetherableWifiRegexs() {
3165        enforceTetherAccessPermission();
3166        if (isTetheringSupported()) {
3167            return mTethering.getTetherableWifiRegexs();
3168        } else {
3169            return new String[0];
3170        }
3171    }
3172
3173    public String[] getTetherableBluetoothRegexs() {
3174        enforceTetherAccessPermission();
3175        if (isTetheringSupported()) {
3176            return mTethering.getTetherableBluetoothRegexs();
3177        } else {
3178            return new String[0];
3179        }
3180    }
3181
3182    public int setUsbTethering(boolean enable) {
3183        enforceTetherChangePermission();
3184        if (isTetheringSupported()) {
3185            return mTethering.setUsbTethering(enable);
3186        } else {
3187            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
3188        }
3189    }
3190
3191    // TODO - move iface listing, queries, etc to new module
3192    // javadoc from interface
3193    public String[] getTetherableIfaces() {
3194        enforceTetherAccessPermission();
3195        return mTethering.getTetherableIfaces();
3196    }
3197
3198    public String[] getTetheredIfaces() {
3199        enforceTetherAccessPermission();
3200        return mTethering.getTetheredIfaces();
3201    }
3202
3203    public String[] getTetheringErroredIfaces() {
3204        enforceTetherAccessPermission();
3205        return mTethering.getErroredIfaces();
3206    }
3207
3208    // if ro.tether.denied = true we default to no tethering
3209    // gservices could set the secure setting to 1 though to enable it on a build where it
3210    // had previously been turned off.
3211    public boolean isTetheringSupported() {
3212        enforceTetherAccessPermission();
3213        int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
3214        boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
3215                Settings.Global.TETHER_SUPPORTED, defaultVal) != 0);
3216        return tetherEnabledInSettings && ((mTethering.getTetherableUsbRegexs().length != 0 ||
3217                mTethering.getTetherableWifiRegexs().length != 0 ||
3218                mTethering.getTetherableBluetoothRegexs().length != 0) &&
3219                mTethering.getUpstreamIfaceTypes().length != 0);
3220    }
3221
3222    // An API NetworkStateTrackers can call when they lose their network.
3223    // This will automatically be cleared after X seconds or a network becomes CONNECTED,
3224    // whichever happens first.  The timer is started by the first caller and not
3225    // restarted by subsequent callers.
3226    public void requestNetworkTransitionWakelock(String forWhom) {
3227        enforceConnectivityInternalPermission();
3228        synchronized (this) {
3229            if (mNetTransitionWakeLock.isHeld()) return;
3230            mNetTransitionWakeLockSerialNumber++;
3231            mNetTransitionWakeLock.acquire();
3232            mNetTransitionWakeLockCausedBy = forWhom;
3233        }
3234        mHandler.sendMessageDelayed(mHandler.obtainMessage(
3235                EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
3236                mNetTransitionWakeLockSerialNumber, 0),
3237                mNetTransitionWakeLockTimeout);
3238        return;
3239    }
3240
3241    // 100 percent is full good, 0 is full bad.
3242    public void reportInetCondition(int networkType, int percentage) {
3243        if (VDBG) log("reportNetworkCondition(" + networkType + ", " + percentage + ")");
3244        mContext.enforceCallingOrSelfPermission(
3245                android.Manifest.permission.STATUS_BAR,
3246                "ConnectivityService");
3247
3248        if (DBG) {
3249            int pid = getCallingPid();
3250            int uid = getCallingUid();
3251            String s = pid + "(" + uid + ") reports inet is " +
3252                (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
3253                "network Type " + networkType + " at " + GregorianCalendar.getInstance().getTime();
3254            mInetLog.add(s);
3255            while(mInetLog.size() > INET_CONDITION_LOG_MAX_SIZE) {
3256                mInetLog.remove(0);
3257            }
3258        }
3259        mHandler.sendMessage(mHandler.obtainMessage(
3260            EVENT_INET_CONDITION_CHANGE, networkType, percentage));
3261    }
3262
3263    private void handleInetConditionChange(int netType, int condition) {
3264        if (mActiveDefaultNetwork == -1) {
3265            if (DBG) log("handleInetConditionChange: no active default network - ignore");
3266            return;
3267        }
3268        if (mActiveDefaultNetwork != netType) {
3269            if (DBG) log("handleInetConditionChange: net=" + netType +
3270                            " != default=" + mActiveDefaultNetwork + " - ignore");
3271            return;
3272        }
3273        if (VDBG) {
3274            log("handleInetConditionChange: net=" +
3275                    netType + ", condition=" + condition +
3276                    ",mActiveDefaultNetwork=" + mActiveDefaultNetwork);
3277        }
3278        mDefaultInetCondition = condition;
3279        int delay;
3280        if (mInetConditionChangeInFlight == false) {
3281            if (VDBG) log("handleInetConditionChange: starting a change hold");
3282            // setup a new hold to debounce this
3283            if (mDefaultInetCondition > 50) {
3284                delay = Settings.Global.getInt(mContext.getContentResolver(),
3285                        Settings.Global.INET_CONDITION_DEBOUNCE_UP_DELAY, 500);
3286            } else {
3287                delay = Settings.Global.getInt(mContext.getContentResolver(),
3288                        Settings.Global.INET_CONDITION_DEBOUNCE_DOWN_DELAY, 3000);
3289            }
3290            mInetConditionChangeInFlight = true;
3291            mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_INET_CONDITION_HOLD_END,
3292                    mActiveDefaultNetwork, mDefaultConnectionSequence), delay);
3293        } else {
3294            // we've set the new condition, when this hold ends that will get picked up
3295            if (VDBG) log("handleInetConditionChange: currently in hold - not setting new end evt");
3296        }
3297    }
3298
3299    private void handleInetConditionHoldEnd(int netType, int sequence) {
3300        if (DBG) {
3301            log("handleInetConditionHoldEnd: net=" + netType +
3302                    ", condition=" + mDefaultInetCondition +
3303                    ", published condition=" + mDefaultInetConditionPublished);
3304        }
3305        mInetConditionChangeInFlight = false;
3306
3307        if (mActiveDefaultNetwork == -1) {
3308            if (DBG) log("handleInetConditionHoldEnd: no active default network - ignoring");
3309            return;
3310        }
3311        if (mDefaultConnectionSequence != sequence) {
3312            if (DBG) log("handleInetConditionHoldEnd: event hold for obsolete network - ignoring");
3313            return;
3314        }
3315        // TODO: Figure out why this optimization sometimes causes a
3316        //       change in mDefaultInetCondition to be missed and the
3317        //       UI to not be updated.
3318        //if (mDefaultInetConditionPublished == mDefaultInetCondition) {
3319        //    if (DBG) log("no change in condition - aborting");
3320        //    return;
3321        //}
3322        NetworkInfo networkInfo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
3323        if (networkInfo.isConnected() == false) {
3324            if (DBG) log("handleInetConditionHoldEnd: default network not connected - ignoring");
3325            return;
3326        }
3327        mDefaultInetConditionPublished = mDefaultInetCondition;
3328        sendInetConditionBroadcast(networkInfo);
3329        return;
3330    }
3331
3332    public ProxyProperties getProxy() {
3333        // this information is already available as a world read/writable jvm property
3334        // so this API change wouldn't have a benifit.  It also breaks the passing
3335        // of proxy info to all the JVMs.
3336        // enforceAccessPermission();
3337        synchronized (mProxyLock) {
3338            ProxyProperties ret = mGlobalProxy;
3339            if ((ret == null) && !mDefaultProxyDisabled) ret = mDefaultProxy;
3340            return ret;
3341        }
3342    }
3343
3344    public void setGlobalProxy(ProxyProperties proxyProperties) {
3345        enforceConnectivityInternalPermission();
3346
3347        synchronized (mProxyLock) {
3348            if (proxyProperties == mGlobalProxy) return;
3349            if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
3350            if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
3351
3352            String host = "";
3353            int port = 0;
3354            String exclList = "";
3355            String pacFileUrl = "";
3356            if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
3357                    !TextUtils.isEmpty(proxyProperties.getPacFileUrl()))) {
3358                if (!proxyProperties.isValid()) {
3359                    if (DBG)
3360                        log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3361                    return;
3362                }
3363                mGlobalProxy = new ProxyProperties(proxyProperties);
3364                host = mGlobalProxy.getHost();
3365                port = mGlobalProxy.getPort();
3366                exclList = mGlobalProxy.getExclusionList();
3367                if (proxyProperties.getPacFileUrl() != null) {
3368                    pacFileUrl = proxyProperties.getPacFileUrl();
3369                }
3370            } else {
3371                mGlobalProxy = null;
3372            }
3373            ContentResolver res = mContext.getContentResolver();
3374            final long token = Binder.clearCallingIdentity();
3375            try {
3376                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST, host);
3377                Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
3378                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
3379                        exclList);
3380                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
3381            } finally {
3382                Binder.restoreCallingIdentity(token);
3383            }
3384        }
3385
3386        if (mGlobalProxy == null) {
3387            proxyProperties = mDefaultProxy;
3388        }
3389        sendProxyBroadcast(proxyProperties);
3390    }
3391
3392    private void loadGlobalProxy() {
3393        ContentResolver res = mContext.getContentResolver();
3394        String host = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST);
3395        int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
3396        String exclList = Settings.Global.getString(res,
3397                Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
3398        String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
3399        if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
3400            ProxyProperties proxyProperties;
3401            if (!TextUtils.isEmpty(pacFileUrl)) {
3402                proxyProperties = new ProxyProperties(pacFileUrl);
3403            } else {
3404                proxyProperties = new ProxyProperties(host, port, exclList);
3405            }
3406            if (!proxyProperties.isValid()) {
3407                if (DBG) log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
3408                return;
3409            }
3410
3411            synchronized (mProxyLock) {
3412                mGlobalProxy = proxyProperties;
3413            }
3414        }
3415    }
3416
3417    public ProxyProperties getGlobalProxy() {
3418        // this information is already available as a world read/writable jvm property
3419        // so this API change wouldn't have a benifit.  It also breaks the passing
3420        // of proxy info to all the JVMs.
3421        // enforceAccessPermission();
3422        synchronized (mProxyLock) {
3423            return mGlobalProxy;
3424        }
3425    }
3426
3427    private void handleApplyDefaultProxy(ProxyProperties proxy) {
3428        if (proxy != null && TextUtils.isEmpty(proxy.getHost())
3429                && TextUtils.isEmpty(proxy.getPacFileUrl())) {
3430            proxy = null;
3431        }
3432        synchronized (mProxyLock) {
3433            if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
3434            if (mDefaultProxy == proxy) return; // catches repeated nulls
3435            if (proxy != null &&  !proxy.isValid()) {
3436                if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
3437                return;
3438            }
3439            mDefaultProxy = proxy;
3440
3441            if (mGlobalProxy != null) return;
3442            if (!mDefaultProxyDisabled) {
3443                sendProxyBroadcast(proxy);
3444            }
3445        }
3446    }
3447
3448    private void handleDeprecatedGlobalHttpProxy() {
3449        String proxy = Settings.Global.getString(mContext.getContentResolver(),
3450                Settings.Global.HTTP_PROXY);
3451        if (!TextUtils.isEmpty(proxy)) {
3452            String data[] = proxy.split(":");
3453            if (data.length == 0) {
3454                return;
3455            }
3456
3457            String proxyHost =  data[0];
3458            int proxyPort = 8080;
3459            if (data.length > 1) {
3460                try {
3461                    proxyPort = Integer.parseInt(data[1]);
3462                } catch (NumberFormatException e) {
3463                    return;
3464                }
3465            }
3466            ProxyProperties p = new ProxyProperties(data[0], proxyPort, "");
3467            setGlobalProxy(p);
3468        }
3469    }
3470
3471    private void sendProxyBroadcast(ProxyProperties proxy) {
3472        if (proxy == null) proxy = new ProxyProperties("", 0, "");
3473        if (mPacManager.setCurrentProxyScriptUrl(proxy)) return;
3474        if (DBG) log("sending Proxy Broadcast for " + proxy);
3475        Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
3476        intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
3477            Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
3478        intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
3479        final long ident = Binder.clearCallingIdentity();
3480        try {
3481            mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
3482        } finally {
3483            Binder.restoreCallingIdentity(ident);
3484        }
3485    }
3486
3487    private static class SettingsObserver extends ContentObserver {
3488        private int mWhat;
3489        private Handler mHandler;
3490        SettingsObserver(Handler handler, int what) {
3491            super(handler);
3492            mHandler = handler;
3493            mWhat = what;
3494        }
3495
3496        void observe(Context context) {
3497            ContentResolver resolver = context.getContentResolver();
3498            resolver.registerContentObserver(Settings.Global.getUriFor(
3499                    Settings.Global.HTTP_PROXY), false, this);
3500        }
3501
3502        @Override
3503        public void onChange(boolean selfChange) {
3504            mHandler.obtainMessage(mWhat).sendToTarget();
3505        }
3506    }
3507
3508    private static void log(String s) {
3509        Slog.d(TAG, s);
3510    }
3511
3512    private static void loge(String s) {
3513        Slog.e(TAG, s);
3514    }
3515
3516    int convertFeatureToNetworkType(int networkType, String feature) {
3517        int usedNetworkType = networkType;
3518
3519        if(networkType == ConnectivityManager.TYPE_MOBILE) {
3520            if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_MMS)) {
3521                usedNetworkType = ConnectivityManager.TYPE_MOBILE_MMS;
3522            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_SUPL)) {
3523                usedNetworkType = ConnectivityManager.TYPE_MOBILE_SUPL;
3524            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN) ||
3525                    TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
3526                usedNetworkType = ConnectivityManager.TYPE_MOBILE_DUN;
3527            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_HIPRI)) {
3528                usedNetworkType = ConnectivityManager.TYPE_MOBILE_HIPRI;
3529            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_FOTA)) {
3530                usedNetworkType = ConnectivityManager.TYPE_MOBILE_FOTA;
3531            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_IMS)) {
3532                usedNetworkType = ConnectivityManager.TYPE_MOBILE_IMS;
3533            } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_CBS)) {
3534                usedNetworkType = ConnectivityManager.TYPE_MOBILE_CBS;
3535            } else {
3536                Slog.e(TAG, "Can't match any mobile netTracker!");
3537            }
3538        } else if (networkType == ConnectivityManager.TYPE_WIFI) {
3539            if (TextUtils.equals(feature, "p2p")) {
3540                usedNetworkType = ConnectivityManager.TYPE_WIFI_P2P;
3541            } else {
3542                Slog.e(TAG, "Can't match any wifi netTracker!");
3543            }
3544        } else {
3545            Slog.e(TAG, "Unexpected network type");
3546        }
3547        return usedNetworkType;
3548    }
3549
3550    private static <T> T checkNotNull(T value, String message) {
3551        if (value == null) {
3552            throw new NullPointerException(message);
3553        }
3554        return value;
3555    }
3556
3557    /**
3558     * Protect a socket from VPN routing rules. This method is used by
3559     * VpnBuilder and not available in ConnectivityManager. Permissions
3560     * are checked in Vpn class.
3561     * @hide
3562     */
3563    @Override
3564    public boolean protectVpn(ParcelFileDescriptor socket) {
3565        throwIfLockdownEnabled();
3566        try {
3567            int type = mActiveDefaultNetwork;
3568            int user = UserHandle.getUserId(Binder.getCallingUid());
3569            if (ConnectivityManager.isNetworkTypeValid(type) && mNetTrackers[type] != null) {
3570                synchronized(mVpns) {
3571                    mVpns.get(user).protect(socket,
3572                            mNetTrackers[type].getLinkProperties().getInterfaceName());
3573                }
3574                return true;
3575            }
3576        } catch (Exception e) {
3577            // ignore
3578        } finally {
3579            try {
3580                socket.close();
3581            } catch (Exception e) {
3582                // ignore
3583            }
3584        }
3585        return false;
3586    }
3587
3588    /**
3589     * Prepare for a VPN application. This method is used by VpnDialogs
3590     * and not available in ConnectivityManager. Permissions are checked
3591     * in Vpn class.
3592     * @hide
3593     */
3594    @Override
3595    public boolean prepareVpn(String oldPackage, String newPackage) {
3596        throwIfLockdownEnabled();
3597        int user = UserHandle.getUserId(Binder.getCallingUid());
3598        synchronized(mVpns) {
3599            return mVpns.get(user).prepare(oldPackage, newPackage);
3600        }
3601    }
3602
3603    @Override
3604    public void markSocketAsUser(ParcelFileDescriptor socket, int uid) {
3605        enforceMarkNetworkSocketPermission();
3606        final long token = Binder.clearCallingIdentity();
3607        try {
3608            int mark = mNetd.getMarkForUid(uid);
3609            // Clear the mark on the socket if no mark is needed to prevent socket reuse issues
3610            if (mark == -1) {
3611                mark = 0;
3612            }
3613            NetworkUtils.markSocket(socket.getFd(), mark);
3614        } catch (RemoteException e) {
3615        } finally {
3616            Binder.restoreCallingIdentity(token);
3617        }
3618    }
3619
3620    /**
3621     * Configure a TUN interface and return its file descriptor. Parameters
3622     * are encoded and opaque to this class. This method is used by VpnBuilder
3623     * and not available in ConnectivityManager. Permissions are checked in
3624     * Vpn class.
3625     * @hide
3626     */
3627    @Override
3628    public ParcelFileDescriptor establishVpn(VpnConfig config) {
3629        throwIfLockdownEnabled();
3630        int user = UserHandle.getUserId(Binder.getCallingUid());
3631        synchronized(mVpns) {
3632            return mVpns.get(user).establish(config);
3633        }
3634    }
3635
3636    /**
3637     * Start legacy VPN, controlling native daemons as needed. Creates a
3638     * secondary thread to perform connection work, returning quickly.
3639     */
3640    @Override
3641    public void startLegacyVpn(VpnProfile profile) {
3642        throwIfLockdownEnabled();
3643        final LinkProperties egress = getActiveLinkProperties();
3644        if (egress == null) {
3645            throw new IllegalStateException("Missing active network connection");
3646        }
3647        int user = UserHandle.getUserId(Binder.getCallingUid());
3648        synchronized(mVpns) {
3649            mVpns.get(user).startLegacyVpn(profile, mKeyStore, egress);
3650        }
3651    }
3652
3653    /**
3654     * Return the information of the ongoing legacy VPN. This method is used
3655     * by VpnSettings and not available in ConnectivityManager. Permissions
3656     * are checked in Vpn class.
3657     * @hide
3658     */
3659    @Override
3660    public LegacyVpnInfo getLegacyVpnInfo() {
3661        throwIfLockdownEnabled();
3662        int user = UserHandle.getUserId(Binder.getCallingUid());
3663        synchronized(mVpns) {
3664            return mVpns.get(user).getLegacyVpnInfo();
3665        }
3666    }
3667
3668    /**
3669     * Returns the information of the ongoing VPN. This method is used by VpnDialogs and
3670     * not available in ConnectivityManager.
3671     * Permissions are checked in Vpn class.
3672     * @hide
3673     */
3674    @Override
3675    public VpnConfig getVpnConfig() {
3676        int user = UserHandle.getUserId(Binder.getCallingUid());
3677        synchronized(mVpns) {
3678            return mVpns.get(user).getVpnConfig();
3679        }
3680    }
3681
3682    /**
3683     * Callback for VPN subsystem. Currently VPN is not adapted to the service
3684     * through NetworkStateTracker since it works differently. For example, it
3685     * needs to override DNS servers but never takes the default routes. It
3686     * relies on another data network, and it could keep existing connections
3687     * alive after reconnecting, switching between networks, or even resuming
3688     * from deep sleep. Calls from applications should be done synchronously
3689     * to avoid race conditions. As these are all hidden APIs, refactoring can
3690     * be done whenever a better abstraction is developed.
3691     */
3692    public class VpnCallback {
3693        private VpnCallback() {
3694        }
3695
3696        public void onStateChanged(NetworkInfo info) {
3697            mHandler.obtainMessage(EVENT_VPN_STATE_CHANGED, info).sendToTarget();
3698        }
3699
3700        public void override(String iface, List<String> dnsServers, List<String> searchDomains) {
3701            if (dnsServers == null) {
3702                restore();
3703                return;
3704            }
3705
3706            // Convert DNS servers into addresses.
3707            List<InetAddress> addresses = new ArrayList<InetAddress>();
3708            for (String address : dnsServers) {
3709                // Double check the addresses and remove invalid ones.
3710                try {
3711                    addresses.add(InetAddress.parseNumericAddress(address));
3712                } catch (Exception e) {
3713                    // ignore
3714                }
3715            }
3716            if (addresses.isEmpty()) {
3717                restore();
3718                return;
3719            }
3720
3721            // Concatenate search domains into a string.
3722            StringBuilder buffer = new StringBuilder();
3723            if (searchDomains != null) {
3724                for (String domain : searchDomains) {
3725                    buffer.append(domain).append(' ');
3726                }
3727            }
3728            String domains = buffer.toString().trim();
3729
3730            // Apply DNS changes.
3731            synchronized (mDnsLock) {
3732                updateDnsLocked("VPN", iface, addresses, domains, false);
3733            }
3734
3735            // Temporarily disable the default proxy (not global).
3736            synchronized (mProxyLock) {
3737                mDefaultProxyDisabled = true;
3738                if (mGlobalProxy == null && mDefaultProxy != null) {
3739                    sendProxyBroadcast(null);
3740                }
3741            }
3742
3743            // TODO: support proxy per network.
3744        }
3745
3746        public void restore() {
3747            synchronized (mProxyLock) {
3748                mDefaultProxyDisabled = false;
3749                if (mGlobalProxy == null && mDefaultProxy != null) {
3750                    sendProxyBroadcast(mDefaultProxy);
3751                }
3752            }
3753        }
3754
3755        public void protect(ParcelFileDescriptor socket) {
3756            try {
3757                final int mark = mNetd.getMarkForProtect();
3758                NetworkUtils.markSocket(socket.getFd(), mark);
3759            } catch (RemoteException e) {
3760            }
3761        }
3762
3763        public void setRoutes(String interfaze, List<RouteInfo> routes) {
3764            for (RouteInfo route : routes) {
3765                try {
3766                    mNetd.setMarkedForwardingRoute(interfaze, route);
3767                } catch (RemoteException e) {
3768                }
3769            }
3770        }
3771
3772        public void setMarkedForwarding(String interfaze) {
3773            try {
3774                mNetd.setMarkedForwarding(interfaze);
3775            } catch (RemoteException e) {
3776            }
3777        }
3778
3779        public void clearMarkedForwarding(String interfaze) {
3780            try {
3781                mNetd.clearMarkedForwarding(interfaze);
3782            } catch (RemoteException e) {
3783            }
3784        }
3785
3786        public void addUserForwarding(String interfaze, int uid, boolean forwardDns) {
3787            int uidStart = uid * UserHandle.PER_USER_RANGE;
3788            int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
3789            addUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
3790        }
3791
3792        public void clearUserForwarding(String interfaze, int uid, boolean forwardDns) {
3793            int uidStart = uid * UserHandle.PER_USER_RANGE;
3794            int uidEnd = uidStart + UserHandle.PER_USER_RANGE - 1;
3795            clearUidForwarding(interfaze, uidStart, uidEnd, forwardDns);
3796        }
3797
3798        public void addUidForwarding(String interfaze, int uidStart, int uidEnd,
3799                boolean forwardDns) {
3800            try {
3801                mNetd.setUidRangeRoute(interfaze,uidStart, uidEnd);
3802                if (forwardDns) mNetd.setDnsInterfaceForUidRange(interfaze, uidStart, uidEnd);
3803            } catch (RemoteException e) {
3804            }
3805
3806        }
3807
3808        public void clearUidForwarding(String interfaze, int uidStart, int uidEnd,
3809                boolean forwardDns) {
3810            try {
3811                mNetd.clearUidRangeRoute(interfaze, uidStart, uidEnd);
3812                if (forwardDns) mNetd.clearDnsInterfaceForUidRange(uidStart, uidEnd);
3813            } catch (RemoteException e) {
3814            }
3815
3816        }
3817    }
3818
3819    @Override
3820    public boolean updateLockdownVpn() {
3821        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
3822            Slog.w(TAG, "Lockdown VPN only available to AID_SYSTEM");
3823            return false;
3824        }
3825
3826        // Tear down existing lockdown if profile was removed
3827        mLockdownEnabled = LockdownVpnTracker.isEnabled();
3828        if (mLockdownEnabled) {
3829            if (!mKeyStore.isUnlocked()) {
3830                Slog.w(TAG, "KeyStore locked; unable to create LockdownTracker");
3831                return false;
3832            }
3833
3834            final String profileName = new String(mKeyStore.get(Credentials.LOCKDOWN_VPN));
3835            final VpnProfile profile = VpnProfile.decode(
3836                    profileName, mKeyStore.get(Credentials.VPN + profileName));
3837            int user = UserHandle.getUserId(Binder.getCallingUid());
3838            synchronized(mVpns) {
3839                setLockdownTracker(new LockdownVpnTracker(mContext, mNetd, this, mVpns.get(user),
3840                            profile));
3841            }
3842        } else {
3843            setLockdownTracker(null);
3844        }
3845
3846        return true;
3847    }
3848
3849    /**
3850     * Internally set new {@link LockdownVpnTracker}, shutting down any existing
3851     * {@link LockdownVpnTracker}. Can be {@code null} to disable lockdown.
3852     */
3853    private void setLockdownTracker(LockdownVpnTracker tracker) {
3854        // Shutdown any existing tracker
3855        final LockdownVpnTracker existing = mLockdownTracker;
3856        mLockdownTracker = null;
3857        if (existing != null) {
3858            existing.shutdown();
3859        }
3860
3861        try {
3862            if (tracker != null) {
3863                mNetd.setFirewallEnabled(true);
3864                mNetd.setFirewallInterfaceRule("lo", true);
3865                mLockdownTracker = tracker;
3866                mLockdownTracker.init();
3867            } else {
3868                mNetd.setFirewallEnabled(false);
3869            }
3870        } catch (RemoteException e) {
3871            // ignored; NMS lives inside system_server
3872        }
3873    }
3874
3875    private void throwIfLockdownEnabled() {
3876        if (mLockdownEnabled) {
3877            throw new IllegalStateException("Unavailable in lockdown mode");
3878        }
3879    }
3880
3881    public void supplyMessenger(int networkType, Messenger messenger) {
3882        enforceConnectivityInternalPermission();
3883
3884        if (isNetworkTypeValid(networkType) && mNetTrackers[networkType] != null) {
3885            mNetTrackers[networkType].supplyMessenger(messenger);
3886        }
3887    }
3888
3889    public int findConnectionTypeForIface(String iface) {
3890        enforceConnectivityInternalPermission();
3891
3892        if (TextUtils.isEmpty(iface)) return ConnectivityManager.TYPE_NONE;
3893        for (NetworkStateTracker tracker : mNetTrackers) {
3894            if (tracker != null) {
3895                LinkProperties lp = tracker.getLinkProperties();
3896                if (lp != null && iface.equals(lp.getInterfaceName())) {
3897                    return tracker.getNetworkInfo().getType();
3898                }
3899            }
3900        }
3901        return ConnectivityManager.TYPE_NONE;
3902    }
3903
3904    /**
3905     * Have mobile data fail fast if enabled.
3906     *
3907     * @param enabled DctConstants.ENABLED/DISABLED
3908     */
3909    private void setEnableFailFastMobileData(int enabled) {
3910        int tag;
3911
3912        if (enabled == DctConstants.ENABLED) {
3913            tag = mEnableFailFastMobileDataTag.incrementAndGet();
3914        } else {
3915            tag = mEnableFailFastMobileDataTag.get();
3916        }
3917        mHandler.sendMessage(mHandler.obtainMessage(EVENT_ENABLE_FAIL_FAST_MOBILE_DATA, tag,
3918                         enabled));
3919    }
3920
3921    private boolean isMobileDataStateTrackerReady() {
3922        MobileDataStateTracker mdst =
3923                (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
3924        return (mdst != null) && (mdst.isReady());
3925    }
3926
3927    /**
3928     * The ResultReceiver resultCode for checkMobileProvisioning (CMP_RESULT_CODE)
3929     */
3930
3931    /**
3932     * No connection was possible to the network.
3933     * This is NOT a warm sim.
3934     */
3935    private static final int CMP_RESULT_CODE_NO_CONNECTION = 0;
3936
3937    /**
3938     * A connection was made to the internet, all is well.
3939     * This is NOT a warm sim.
3940     */
3941    private static final int CMP_RESULT_CODE_CONNECTABLE = 1;
3942
3943    /**
3944     * A connection was made but no dns server was available to resolve a name to address.
3945     * This is NOT a warm sim since provisioning network is supported.
3946     */
3947    private static final int CMP_RESULT_CODE_NO_DNS = 2;
3948
3949    /**
3950     * A connection was made but could not open a TCP connection.
3951     * This is NOT a warm sim since provisioning network is supported.
3952     */
3953    private static final int CMP_RESULT_CODE_NO_TCP_CONNECTION = 3;
3954
3955    /**
3956     * A connection was made but there was a redirection, we appear to be in walled garden.
3957     * This is an indication of a warm sim on a mobile network such as T-Mobile.
3958     */
3959    private static final int CMP_RESULT_CODE_REDIRECTED = 4;
3960
3961    /**
3962     * The mobile network is a provisioning network.
3963     * This is an indication of a warm sim on a mobile network such as AT&T.
3964     */
3965    private static final int CMP_RESULT_CODE_PROVISIONING_NETWORK = 5;
3966
3967    private AtomicBoolean mIsCheckingMobileProvisioning = new AtomicBoolean(false);
3968
3969    @Override
3970    public int checkMobileProvisioning(int suggestedTimeOutMs) {
3971        int timeOutMs = -1;
3972        if (DBG) log("checkMobileProvisioning: E suggestedTimeOutMs=" + suggestedTimeOutMs);
3973        enforceConnectivityInternalPermission();
3974
3975        final long token = Binder.clearCallingIdentity();
3976        try {
3977            timeOutMs = suggestedTimeOutMs;
3978            if (suggestedTimeOutMs > CheckMp.MAX_TIMEOUT_MS) {
3979                timeOutMs = CheckMp.MAX_TIMEOUT_MS;
3980            }
3981
3982            // Check that mobile networks are supported
3983            if (!isNetworkSupported(ConnectivityManager.TYPE_MOBILE)
3984                    || !isNetworkSupported(ConnectivityManager.TYPE_MOBILE_HIPRI)) {
3985                if (DBG) log("checkMobileProvisioning: X no mobile network");
3986                return timeOutMs;
3987            }
3988
3989            // If we're already checking don't do it again
3990            // TODO: Add a queue of results...
3991            if (mIsCheckingMobileProvisioning.getAndSet(true)) {
3992                if (DBG) log("checkMobileProvisioning: X already checking ignore for the moment");
3993                return timeOutMs;
3994            }
3995
3996            // Start off with mobile notification off
3997            setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
3998
3999            CheckMp checkMp = new CheckMp(mContext, this);
4000            CheckMp.CallBack cb = new CheckMp.CallBack() {
4001                @Override
4002                void onComplete(Integer result) {
4003                    if (DBG) log("CheckMp.onComplete: result=" + result);
4004                    NetworkInfo ni =
4005                            mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI].getNetworkInfo();
4006                    switch(result) {
4007                        case CMP_RESULT_CODE_CONNECTABLE:
4008                        case CMP_RESULT_CODE_NO_CONNECTION:
4009                        case CMP_RESULT_CODE_NO_DNS:
4010                        case CMP_RESULT_CODE_NO_TCP_CONNECTION: {
4011                            if (DBG) log("CheckMp.onComplete: ignore, connected or no connection");
4012                            break;
4013                        }
4014                        case CMP_RESULT_CODE_REDIRECTED: {
4015                            if (DBG) log("CheckMp.onComplete: warm sim");
4016                            String url = getMobileProvisioningUrl();
4017                            if (TextUtils.isEmpty(url)) {
4018                                url = getMobileRedirectedProvisioningUrl();
4019                            }
4020                            if (TextUtils.isEmpty(url) == false) {
4021                                if (DBG) log("CheckMp.onComplete: warm (redirected), url=" + url);
4022                                setProvNotificationVisible(true,
4023                                        ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
4024                                        url);
4025                            } else {
4026                                if (DBG) log("CheckMp.onComplete: warm (redirected), no url");
4027                            }
4028                            break;
4029                        }
4030                        case CMP_RESULT_CODE_PROVISIONING_NETWORK: {
4031                            String url = getMobileProvisioningUrl();
4032                            if (TextUtils.isEmpty(url) == false) {
4033                                if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), url=" + url);
4034                                setProvNotificationVisible(true,
4035                                        ConnectivityManager.TYPE_MOBILE_HIPRI, ni.getExtraInfo(),
4036                                        url);
4037                            } else {
4038                                if (DBG) log("CheckMp.onComplete: warm (no dns/tcp), no url");
4039                            }
4040                            break;
4041                        }
4042                        default: {
4043                            loge("CheckMp.onComplete: ignore unexpected result=" + result);
4044                            break;
4045                        }
4046                    }
4047                    mIsCheckingMobileProvisioning.set(false);
4048                }
4049            };
4050            CheckMp.Params params =
4051                    new CheckMp.Params(checkMp.getDefaultUrl(), timeOutMs, cb);
4052            if (DBG) log("checkMobileProvisioning: params=" + params);
4053            checkMp.execute(params);
4054        } finally {
4055            Binder.restoreCallingIdentity(token);
4056            if (DBG) log("checkMobileProvisioning: X");
4057        }
4058        return timeOutMs;
4059    }
4060
4061    static class CheckMp extends
4062            AsyncTask<CheckMp.Params, Void, Integer> {
4063        private static final String CHECKMP_TAG = "CheckMp";
4064
4065        // adb shell setprop persist.checkmp.testfailures 1 to enable testing failures
4066        private static boolean mTestingFailures;
4067
4068        // Choosing 4 loops as half of them will use HTTPS and the other half HTTP
4069        private static final int MAX_LOOPS = 4;
4070
4071        // Number of milli-seconds to complete all of the retires
4072        public static final int MAX_TIMEOUT_MS =  60000;
4073
4074        // The socket should retry only 5 seconds, the default is longer
4075        private static final int SOCKET_TIMEOUT_MS = 5000;
4076
4077        // Sleep time for network errors
4078        private static final int NET_ERROR_SLEEP_SEC = 3;
4079
4080        // Sleep time for network route establishment
4081        private static final int NET_ROUTE_ESTABLISHMENT_SLEEP_SEC = 3;
4082
4083        // Short sleep time for polling :(
4084        private static final int POLLING_SLEEP_SEC = 1;
4085
4086        private Context mContext;
4087        private ConnectivityService mCs;
4088        private TelephonyManager mTm;
4089        private Params mParams;
4090
4091        /**
4092         * Parameters for AsyncTask.execute
4093         */
4094        static class Params {
4095            private String mUrl;
4096            private long mTimeOutMs;
4097            private CallBack mCb;
4098
4099            Params(String url, long timeOutMs, CallBack cb) {
4100                mUrl = url;
4101                mTimeOutMs = timeOutMs;
4102                mCb = cb;
4103            }
4104
4105            @Override
4106            public String toString() {
4107                return "{" + " url=" + mUrl + " mTimeOutMs=" + mTimeOutMs + " mCb=" + mCb + "}";
4108            }
4109        }
4110
4111        // As explained to me by Brian Carlstrom and Kenny Root, Certificates can be
4112        // issued by name or ip address, for Google its by name so when we construct
4113        // this HostnameVerifier we'll pass the original Uri and use it to verify
4114        // the host. If the host name in the original uril fails we'll test the
4115        // hostname parameter just incase things change.
4116        static class CheckMpHostnameVerifier implements HostnameVerifier {
4117            Uri mOrgUri;
4118
4119            CheckMpHostnameVerifier(Uri orgUri) {
4120                mOrgUri = orgUri;
4121            }
4122
4123            @Override
4124            public boolean verify(String hostname, SSLSession session) {
4125                HostnameVerifier hv = HttpsURLConnection.getDefaultHostnameVerifier();
4126                String orgUriHost = mOrgUri.getHost();
4127                boolean retVal = hv.verify(orgUriHost, session) || hv.verify(hostname, session);
4128                if (DBG) {
4129                    log("isMobileOk: hostnameVerify retVal=" + retVal + " hostname=" + hostname
4130                        + " orgUriHost=" + orgUriHost);
4131                }
4132                return retVal;
4133            }
4134        }
4135
4136        /**
4137         * The call back object passed in Params. onComplete will be called
4138         * on the main thread.
4139         */
4140        abstract static class CallBack {
4141            // Called on the main thread.
4142            abstract void onComplete(Integer result);
4143        }
4144
4145        public CheckMp(Context context, ConnectivityService cs) {
4146            if (Build.IS_DEBUGGABLE) {
4147                mTestingFailures =
4148                        SystemProperties.getInt("persist.checkmp.testfailures", 0) == 1;
4149            } else {
4150                mTestingFailures = false;
4151            }
4152
4153            mContext = context;
4154            mCs = cs;
4155
4156            // Setup access to TelephonyService we'll be using.
4157            mTm = (TelephonyManager) mContext.getSystemService(
4158                    Context.TELEPHONY_SERVICE);
4159        }
4160
4161        /**
4162         * Get the default url to use for the test.
4163         */
4164        public String getDefaultUrl() {
4165            // See http://go/clientsdns for usage approval
4166            String server = Settings.Global.getString(mContext.getContentResolver(),
4167                    Settings.Global.CAPTIVE_PORTAL_SERVER);
4168            if (server == null) {
4169                server = "clients3.google.com";
4170            }
4171            return "http://" + server + "/generate_204";
4172        }
4173
4174        /**
4175         * Detect if its possible to connect to the http url. DNS based detection techniques
4176         * do not work at all hotspots. The best way to check is to perform a request to
4177         * a known address that fetches the data we expect.
4178         */
4179        private synchronized Integer isMobileOk(Params params) {
4180            Integer result = CMP_RESULT_CODE_NO_CONNECTION;
4181            Uri orgUri = Uri.parse(params.mUrl);
4182            Random rand = new Random();
4183            mParams = params;
4184
4185            if (mCs.isNetworkSupported(ConnectivityManager.TYPE_MOBILE) == false) {
4186                result = CMP_RESULT_CODE_NO_CONNECTION;
4187                log("isMobileOk: X not mobile capable result=" + result);
4188                return result;
4189            }
4190
4191            // See if we've already determined we've got a provisioning connection,
4192            // if so we don't need to do anything active.
4193            MobileDataStateTracker mdstDefault = (MobileDataStateTracker)
4194                    mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4195            boolean isDefaultProvisioning = mdstDefault.isProvisioningNetwork();
4196            log("isMobileOk: isDefaultProvisioning=" + isDefaultProvisioning);
4197
4198            MobileDataStateTracker mdstHipri = (MobileDataStateTracker)
4199                    mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4200            boolean isHipriProvisioning = mdstHipri.isProvisioningNetwork();
4201            log("isMobileOk: isHipriProvisioning=" + isHipriProvisioning);
4202
4203            if (isDefaultProvisioning || isHipriProvisioning) {
4204                result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
4205                log("isMobileOk: X default || hipri is provisioning result=" + result);
4206                return result;
4207            }
4208
4209            try {
4210                // Continue trying to connect until time has run out
4211                long endTime = SystemClock.elapsedRealtime() + params.mTimeOutMs;
4212
4213                if (!mCs.isMobileDataStateTrackerReady()) {
4214                    // Wait for MobileDataStateTracker to be ready.
4215                    if (DBG) log("isMobileOk: mdst is not ready");
4216                    while(SystemClock.elapsedRealtime() < endTime) {
4217                        if (mCs.isMobileDataStateTrackerReady()) {
4218                            // Enable fail fast as we'll do retries here and use a
4219                            // hipri connection so the default connection stays active.
4220                            if (DBG) log("isMobileOk: mdst ready, enable fail fast of mobile data");
4221                            mCs.setEnableFailFastMobileData(DctConstants.ENABLED);
4222                            break;
4223                        }
4224                        sleep(POLLING_SLEEP_SEC);
4225                    }
4226                }
4227
4228                log("isMobileOk: start hipri url=" + params.mUrl);
4229
4230                // First wait until we can start using hipri
4231                Binder binder = new Binder();
4232                while(SystemClock.elapsedRealtime() < endTime) {
4233                    int ret = mCs.startUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4234                            Phone.FEATURE_ENABLE_HIPRI, binder);
4235                    if ((ret == PhoneConstants.APN_ALREADY_ACTIVE)
4236                        || (ret == PhoneConstants.APN_REQUEST_STARTED)) {
4237                            log("isMobileOk: hipri started");
4238                            break;
4239                    }
4240                    if (VDBG) log("isMobileOk: hipri not started yet");
4241                    result = CMP_RESULT_CODE_NO_CONNECTION;
4242                    sleep(POLLING_SLEEP_SEC);
4243                }
4244
4245                // Continue trying to connect until time has run out
4246                while(SystemClock.elapsedRealtime() < endTime) {
4247                    try {
4248                        // Wait for hipri to connect.
4249                        // TODO: Don't poll and handle situation where hipri fails
4250                        // because default is retrying. See b/9569540
4251                        NetworkInfo.State state = mCs
4252                                .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4253                        if (state != NetworkInfo.State.CONNECTED) {
4254                            if (true/*VDBG*/) {
4255                                log("isMobileOk: not connected ni=" +
4256                                    mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
4257                            }
4258                            sleep(POLLING_SLEEP_SEC);
4259                            result = CMP_RESULT_CODE_NO_CONNECTION;
4260                            continue;
4261                        }
4262
4263                        // Hipri has started check if this is a provisioning url
4264                        MobileDataStateTracker mdst = (MobileDataStateTracker)
4265                                mCs.mNetTrackers[ConnectivityManager.TYPE_MOBILE_HIPRI];
4266                        if (mdst.isProvisioningNetwork()) {
4267                            result = CMP_RESULT_CODE_PROVISIONING_NETWORK;
4268                            if (DBG) log("isMobileOk: X isProvisioningNetwork result=" + result);
4269                            return result;
4270                        } else {
4271                            if (DBG) log("isMobileOk: isProvisioningNetwork is false, continue");
4272                        }
4273
4274                        // Get of the addresses associated with the url host. We need to use the
4275                        // address otherwise HttpURLConnection object will use the name to get
4276                        // the addresses and will try every address but that will bypass the
4277                        // route to host we setup and the connection could succeed as the default
4278                        // interface might be connected to the internet via wifi or other interface.
4279                        InetAddress[] addresses;
4280                        try {
4281                            addresses = InetAddress.getAllByName(orgUri.getHost());
4282                        } catch (UnknownHostException e) {
4283                            result = CMP_RESULT_CODE_NO_DNS;
4284                            log("isMobileOk: X UnknownHostException result=" + result);
4285                            return result;
4286                        }
4287                        log("isMobileOk: addresses=" + inetAddressesToString(addresses));
4288
4289                        // Get the type of addresses supported by this link
4290                        LinkProperties lp = mCs.getLinkProperties(
4291                                ConnectivityManager.TYPE_MOBILE_HIPRI);
4292                        boolean linkHasIpv4 = lp.hasIPv4Address();
4293                        boolean linkHasIpv6 = lp.hasIPv6Address();
4294                        log("isMobileOk: linkHasIpv4=" + linkHasIpv4
4295                                + " linkHasIpv6=" + linkHasIpv6);
4296
4297                        final ArrayList<InetAddress> validAddresses =
4298                                new ArrayList<InetAddress>(addresses.length);
4299
4300                        for (InetAddress addr : addresses) {
4301                            if (((addr instanceof Inet4Address) && linkHasIpv4) ||
4302                                    ((addr instanceof Inet6Address) && linkHasIpv6)) {
4303                                validAddresses.add(addr);
4304                            }
4305                        }
4306
4307                        if (validAddresses.size() == 0) {
4308                            return CMP_RESULT_CODE_NO_CONNECTION;
4309                        }
4310
4311                        int addrTried = 0;
4312                        while (true) {
4313                            // Loop through at most MAX_LOOPS valid addresses or until
4314                            // we run out of time
4315                            if (addrTried++ >= MAX_LOOPS) {
4316                                log("isMobileOk: too many loops tried - giving up");
4317                                break;
4318                            }
4319                            if (SystemClock.elapsedRealtime() >= endTime) {
4320                                log("isMobileOk: spend too much time - giving up");
4321                                break;
4322                            }
4323
4324                            InetAddress hostAddr = validAddresses.get(rand.nextInt(
4325                                    validAddresses.size()));
4326
4327                            // Make a route to host so we check the specific interface.
4328                            if (mCs.requestRouteToHostAddress(ConnectivityManager.TYPE_MOBILE_HIPRI,
4329                                    hostAddr.getAddress(), null)) {
4330                                // Wait a short time to be sure the route is established ??
4331                                log("isMobileOk:"
4332                                        + " wait to establish route to hostAddr=" + hostAddr);
4333                                sleep(NET_ROUTE_ESTABLISHMENT_SLEEP_SEC);
4334                            } else {
4335                                log("isMobileOk:"
4336                                        + " could not establish route to hostAddr=" + hostAddr);
4337                                // Wait a short time before the next attempt
4338                                sleep(NET_ERROR_SLEEP_SEC);
4339                                continue;
4340                            }
4341
4342                            // Rewrite the url to have numeric address to use the specific route
4343                            // using http for half the attempts and https for the other half.
4344                            // Doing https first and http second as on a redirected walled garden
4345                            // such as t-mobile uses we get a SocketTimeoutException: "SSL
4346                            // handshake timed out" which we declare as
4347                            // CMP_RESULT_CODE_NO_TCP_CONNECTION. We could change this, but by
4348                            // having http second we will be using logic used for some time.
4349                            URL newUrl;
4350                            String scheme = (addrTried <= (MAX_LOOPS/2)) ? "https" : "http";
4351                            newUrl = new URL(scheme, hostAddr.getHostAddress(),
4352                                        orgUri.getPath());
4353                            log("isMobileOk: newUrl=" + newUrl);
4354
4355                            HttpURLConnection urlConn = null;
4356                            try {
4357                                // Open the connection set the request headers and get the response
4358                                urlConn = (HttpURLConnection)newUrl.openConnection(
4359                                        java.net.Proxy.NO_PROXY);
4360                                if (scheme.equals("https")) {
4361                                    ((HttpsURLConnection)urlConn).setHostnameVerifier(
4362                                            new CheckMpHostnameVerifier(orgUri));
4363                                }
4364                                urlConn.setInstanceFollowRedirects(false);
4365                                urlConn.setConnectTimeout(SOCKET_TIMEOUT_MS);
4366                                urlConn.setReadTimeout(SOCKET_TIMEOUT_MS);
4367                                urlConn.setUseCaches(false);
4368                                urlConn.setAllowUserInteraction(false);
4369                                // Set the "Connection" to "Close" as by default "Keep-Alive"
4370                                // is used which is useless in this case.
4371                                urlConn.setRequestProperty("Connection", "close");
4372                                int responseCode = urlConn.getResponseCode();
4373
4374                                // For debug display the headers
4375                                Map<String, List<String>> headers = urlConn.getHeaderFields();
4376                                log("isMobileOk: headers=" + headers);
4377
4378                                // Close the connection
4379                                urlConn.disconnect();
4380                                urlConn = null;
4381
4382                                if (mTestingFailures) {
4383                                    // Pretend no connection, this tests using http and https
4384                                    result = CMP_RESULT_CODE_NO_CONNECTION;
4385                                    log("isMobileOk: TESTING_FAILURES, pretend no connction");
4386                                    continue;
4387                                }
4388
4389                                if (responseCode == 204) {
4390                                    // Return
4391                                    result = CMP_RESULT_CODE_CONNECTABLE;
4392                                    log("isMobileOk: X got expected responseCode=" + responseCode
4393                                            + " result=" + result);
4394                                    return result;
4395                                } else {
4396                                    // Retry to be sure this was redirected, we've gotten
4397                                    // occasions where a server returned 200 even though
4398                                    // the device didn't have a "warm" sim.
4399                                    log("isMobileOk: not expected responseCode=" + responseCode);
4400                                    // TODO - it would be nice in the single-address case to do
4401                                    // another DNS resolve here, but flushing the cache is a bit
4402                                    // heavy-handed.
4403                                    result = CMP_RESULT_CODE_REDIRECTED;
4404                                }
4405                            } catch (Exception e) {
4406                                log("isMobileOk: HttpURLConnection Exception" + e);
4407                                result = CMP_RESULT_CODE_NO_TCP_CONNECTION;
4408                                if (urlConn != null) {
4409                                    urlConn.disconnect();
4410                                    urlConn = null;
4411                                }
4412                                sleep(NET_ERROR_SLEEP_SEC);
4413                                continue;
4414                            }
4415                        }
4416                        log("isMobileOk: X loops|timed out result=" + result);
4417                        return result;
4418                    } catch (Exception e) {
4419                        log("isMobileOk: Exception e=" + e);
4420                        continue;
4421                    }
4422                }
4423                log("isMobileOk: timed out");
4424            } finally {
4425                log("isMobileOk: F stop hipri");
4426                mCs.setEnableFailFastMobileData(DctConstants.DISABLED);
4427                mCs.stopUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE,
4428                        Phone.FEATURE_ENABLE_HIPRI);
4429
4430                // Wait for hipri to disconnect.
4431                long endTime = SystemClock.elapsedRealtime() + 5000;
4432
4433                while(SystemClock.elapsedRealtime() < endTime) {
4434                    NetworkInfo.State state = mCs
4435                            .getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI).getState();
4436                    if (state != NetworkInfo.State.DISCONNECTED) {
4437                        if (VDBG) {
4438                            log("isMobileOk: connected ni=" +
4439                                mCs.getNetworkInfo(ConnectivityManager.TYPE_MOBILE_HIPRI));
4440                        }
4441                        sleep(POLLING_SLEEP_SEC);
4442                        continue;
4443                    }
4444                }
4445
4446                log("isMobileOk: X result=" + result);
4447            }
4448            return result;
4449        }
4450
4451        @Override
4452        protected Integer doInBackground(Params... params) {
4453            return isMobileOk(params[0]);
4454        }
4455
4456        @Override
4457        protected void onPostExecute(Integer result) {
4458            log("onPostExecute: result=" + result);
4459            if ((mParams != null) && (mParams.mCb != null)) {
4460                mParams.mCb.onComplete(result);
4461            }
4462        }
4463
4464        private String inetAddressesToString(InetAddress[] addresses) {
4465            StringBuffer sb = new StringBuffer();
4466            boolean firstTime = true;
4467            for(InetAddress addr : addresses) {
4468                if (firstTime) {
4469                    firstTime = false;
4470                } else {
4471                    sb.append(",");
4472                }
4473                sb.append(addr);
4474            }
4475            return sb.toString();
4476        }
4477
4478        private void printNetworkInfo() {
4479            boolean hasIccCard = mTm.hasIccCard();
4480            int simState = mTm.getSimState();
4481            log("hasIccCard=" + hasIccCard
4482                    + " simState=" + simState);
4483            NetworkInfo[] ni = mCs.getAllNetworkInfo();
4484            if (ni != null) {
4485                log("ni.length=" + ni.length);
4486                for (NetworkInfo netInfo: ni) {
4487                    log("netInfo=" + netInfo.toString());
4488                }
4489            } else {
4490                log("no network info ni=null");
4491            }
4492        }
4493
4494        /**
4495         * Sleep for a few seconds then return.
4496         * @param seconds
4497         */
4498        private static void sleep(int seconds) {
4499            log("XXXXX sleeping for " + seconds + " sec");
4500            long stopTime = System.nanoTime() + (seconds * 1000000000);
4501            long sleepTime;
4502            while ((sleepTime = stopTime - System.nanoTime()) > 0) {
4503                try {
4504                    Thread.sleep(sleepTime / 1000000);
4505                } catch (InterruptedException ignored) {
4506                }
4507            }
4508            log("XXXXX returning from sleep");
4509        }
4510
4511        private static void log(String s) {
4512            Slog.d(ConnectivityService.TAG, "[" + CHECKMP_TAG + "] " + s);
4513        }
4514    }
4515
4516    // TODO: Move to ConnectivityManager and make public?
4517    private static final String CONNECTED_TO_PROVISIONING_NETWORK_ACTION =
4518            "com.android.server.connectivityservice.CONNECTED_TO_PROVISIONING_NETWORK_ACTION";
4519
4520    private BroadcastReceiver mProvisioningReceiver = new BroadcastReceiver() {
4521        @Override
4522        public void onReceive(Context context, Intent intent) {
4523            if (intent.getAction().equals(CONNECTED_TO_PROVISIONING_NETWORK_ACTION)) {
4524                handleMobileProvisioningAction(intent.getStringExtra("EXTRA_URL"));
4525            }
4526        }
4527    };
4528
4529    private void handleMobileProvisioningAction(String url) {
4530        // Notication mark notification as not visible
4531        setProvNotificationVisible(false, ConnectivityManager.TYPE_MOBILE_HIPRI, null, null);
4532
4533        // If provisioning network handle as a special case,
4534        // otherwise launch browser with the intent directly.
4535        NetworkInfo ni = getProvisioningNetworkInfo();
4536        if ((ni != null) && ni.isConnectedToProvisioningNetwork()) {
4537            if (DBG) log("handleMobileProvisioningAction: on provisioning network");
4538            MobileDataStateTracker mdst = (MobileDataStateTracker)
4539                    mNetTrackers[ConnectivityManager.TYPE_MOBILE];
4540            mdst.enableMobileProvisioning(url);
4541        } else {
4542            if (DBG) log("handleMobileProvisioningAction: on default network");
4543            // Check for  apps that can handle provisioning first
4544            Intent provisioningIntent = new Intent(TelephonyIntents.ACTION_CARRIER_SETUP);
4545            provisioningIntent.addCategory(TelephonyIntents.CATEGORY_MCCMNC_PREFIX
4546                    + mTelephonyManager.getSimOperator());
4547            if (mContext.getPackageManager().resolveActivity(provisioningIntent, 0 /* flags */)
4548                    != null) {
4549                provisioningIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4550                        Intent.FLAG_ACTIVITY_NEW_TASK);
4551                mContext.startActivity(provisioningIntent);
4552            } else {
4553                // If no apps exist, use standard URL ACTION_VIEW method
4554                Intent newIntent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,
4555                        Intent.CATEGORY_APP_BROWSER);
4556                newIntent.setData(Uri.parse(url));
4557                newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4558                        Intent.FLAG_ACTIVITY_NEW_TASK);
4559                try {
4560                    mContext.startActivity(newIntent);
4561                } catch (ActivityNotFoundException e) {
4562                    loge("handleMobileProvisioningAction: startActivity failed" + e);
4563                }
4564            }
4565        }
4566    }
4567
4568    private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
4569    private volatile boolean mIsNotificationVisible = false;
4570
4571    private void setProvNotificationVisible(boolean visible, int networkType, String extraInfo,
4572            String url) {
4573        if (DBG) {
4574            log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
4575                + " extraInfo=" + extraInfo + " url=" + url);
4576        }
4577
4578        Resources r = Resources.getSystem();
4579        NotificationManager notificationManager = (NotificationManager) mContext
4580            .getSystemService(Context.NOTIFICATION_SERVICE);
4581
4582        if (visible) {
4583            CharSequence title;
4584            CharSequence details;
4585            int icon;
4586            Intent intent;
4587            Notification notification = new Notification();
4588            switch (networkType) {
4589                case ConnectivityManager.TYPE_WIFI:
4590                    title = r.getString(R.string.wifi_available_sign_in, 0);
4591                    details = r.getString(R.string.network_available_sign_in_detailed,
4592                            extraInfo);
4593                    icon = R.drawable.stat_notify_wifi_in_range;
4594                    intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4595                    intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4596                            Intent.FLAG_ACTIVITY_NEW_TASK);
4597                    notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
4598                    break;
4599                case ConnectivityManager.TYPE_MOBILE:
4600                case ConnectivityManager.TYPE_MOBILE_HIPRI:
4601                    title = r.getString(R.string.network_available_sign_in, 0);
4602                    // TODO: Change this to pull from NetworkInfo once a printable
4603                    // name has been added to it
4604                    details = mTelephonyManager.getNetworkOperatorName();
4605                    icon = R.drawable.stat_notify_rssi_in_range;
4606                    intent = new Intent(CONNECTED_TO_PROVISIONING_NETWORK_ACTION);
4607                    intent.putExtra("EXTRA_URL", url);
4608                    intent.setFlags(0);
4609                    notification.contentIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
4610                    break;
4611                default:
4612                    title = r.getString(R.string.network_available_sign_in, 0);
4613                    details = r.getString(R.string.network_available_sign_in_detailed,
4614                            extraInfo);
4615                    icon = R.drawable.stat_notify_rssi_in_range;
4616                    intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
4617                    intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
4618                            Intent.FLAG_ACTIVITY_NEW_TASK);
4619                    notification.contentIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
4620                    break;
4621            }
4622
4623            notification.when = 0;
4624            notification.icon = icon;
4625            notification.flags = Notification.FLAG_AUTO_CANCEL;
4626            notification.tickerText = title;
4627            notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
4628
4629            try {
4630                notificationManager.notify(NOTIFICATION_ID, networkType, notification);
4631            } catch (NullPointerException npe) {
4632                loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
4633                npe.printStackTrace();
4634            }
4635        } else {
4636            try {
4637                notificationManager.cancel(NOTIFICATION_ID, networkType);
4638            } catch (NullPointerException npe) {
4639                loge("setNotificaitionVisible: cancel notificationManager npe=" + npe);
4640                npe.printStackTrace();
4641            }
4642        }
4643        mIsNotificationVisible = visible;
4644    }
4645
4646    /** Location to an updatable file listing carrier provisioning urls.
4647     *  An example:
4648     *
4649     * <?xml version="1.0" encoding="utf-8"?>
4650     *  <provisioningUrls>
4651     *   <provisioningUrl mcc="310" mnc="4">http://myserver.com/foo?mdn=%3$s&iccid=%1$s&imei=%2$s</provisioningUrl>
4652     *   <redirectedUrl mcc="310" mnc="4">http://www.google.com</redirectedUrl>
4653     *  </provisioningUrls>
4654     */
4655    private static final String PROVISIONING_URL_PATH =
4656            "/data/misc/radio/provisioning_urls.xml";
4657    private final File mProvisioningUrlFile = new File(PROVISIONING_URL_PATH);
4658
4659    /** XML tag for root element. */
4660    private static final String TAG_PROVISIONING_URLS = "provisioningUrls";
4661    /** XML tag for individual url */
4662    private static final String TAG_PROVISIONING_URL = "provisioningUrl";
4663    /** XML tag for redirected url */
4664    private static final String TAG_REDIRECTED_URL = "redirectedUrl";
4665    /** XML attribute for mcc */
4666    private static final String ATTR_MCC = "mcc";
4667    /** XML attribute for mnc */
4668    private static final String ATTR_MNC = "mnc";
4669
4670    private static final int REDIRECTED_PROVISIONING = 1;
4671    private static final int PROVISIONING = 2;
4672
4673    private String getProvisioningUrlBaseFromFile(int type) {
4674        FileReader fileReader = null;
4675        XmlPullParser parser = null;
4676        Configuration config = mContext.getResources().getConfiguration();
4677        String tagType;
4678
4679        switch (type) {
4680            case PROVISIONING:
4681                tagType = TAG_PROVISIONING_URL;
4682                break;
4683            case REDIRECTED_PROVISIONING:
4684                tagType = TAG_REDIRECTED_URL;
4685                break;
4686            default:
4687                throw new RuntimeException("getProvisioningUrlBaseFromFile: Unexpected parameter " +
4688                        type);
4689        }
4690
4691        try {
4692            fileReader = new FileReader(mProvisioningUrlFile);
4693            parser = Xml.newPullParser();
4694            parser.setInput(fileReader);
4695            XmlUtils.beginDocument(parser, TAG_PROVISIONING_URLS);
4696
4697            while (true) {
4698                XmlUtils.nextElement(parser);
4699
4700                String element = parser.getName();
4701                if (element == null) break;
4702
4703                if (element.equals(tagType)) {
4704                    String mcc = parser.getAttributeValue(null, ATTR_MCC);
4705                    try {
4706                        if (mcc != null && Integer.parseInt(mcc) == config.mcc) {
4707                            String mnc = parser.getAttributeValue(null, ATTR_MNC);
4708                            if (mnc != null && Integer.parseInt(mnc) == config.mnc) {
4709                                parser.next();
4710                                if (parser.getEventType() == XmlPullParser.TEXT) {
4711                                    return parser.getText();
4712                                }
4713                            }
4714                        }
4715                    } catch (NumberFormatException e) {
4716                        loge("NumberFormatException in getProvisioningUrlBaseFromFile: " + e);
4717                    }
4718                }
4719            }
4720            return null;
4721        } catch (FileNotFoundException e) {
4722            loge("Carrier Provisioning Urls file not found");
4723        } catch (XmlPullParserException e) {
4724            loge("Xml parser exception reading Carrier Provisioning Urls file: " + e);
4725        } catch (IOException e) {
4726            loge("I/O exception reading Carrier Provisioning Urls file: " + e);
4727        } finally {
4728            if (fileReader != null) {
4729                try {
4730                    fileReader.close();
4731                } catch (IOException e) {}
4732            }
4733        }
4734        return null;
4735    }
4736
4737    @Override
4738    public String getMobileRedirectedProvisioningUrl() {
4739        enforceConnectivityInternalPermission();
4740        String url = getProvisioningUrlBaseFromFile(REDIRECTED_PROVISIONING);
4741        if (TextUtils.isEmpty(url)) {
4742            url = mContext.getResources().getString(R.string.mobile_redirected_provisioning_url);
4743        }
4744        return url;
4745    }
4746
4747    @Override
4748    public String getMobileProvisioningUrl() {
4749        enforceConnectivityInternalPermission();
4750        String url = getProvisioningUrlBaseFromFile(PROVISIONING);
4751        if (TextUtils.isEmpty(url)) {
4752            url = mContext.getResources().getString(R.string.mobile_provisioning_url);
4753            log("getMobileProvisioningUrl: mobile_provisioining_url from resource =" + url);
4754        } else {
4755            log("getMobileProvisioningUrl: mobile_provisioning_url from File =" + url);
4756        }
4757        // populate the iccid, imei and phone number in the provisioning url.
4758        if (!TextUtils.isEmpty(url)) {
4759            String phoneNumber = mTelephonyManager.getLine1Number();
4760            if (TextUtils.isEmpty(phoneNumber)) {
4761                phoneNumber = "0000000000";
4762            }
4763            url = String.format(url,
4764                    mTelephonyManager.getSimSerialNumber() /* ICCID */,
4765                    mTelephonyManager.getDeviceId() /* IMEI */,
4766                    phoneNumber /* Phone numer */);
4767        }
4768
4769        return url;
4770    }
4771
4772    @Override
4773    public void setProvisioningNotificationVisible(boolean visible, int networkType,
4774            String extraInfo, String url) {
4775        enforceConnectivityInternalPermission();
4776        setProvNotificationVisible(visible, networkType, extraInfo, url);
4777    }
4778
4779    @Override
4780    public void setAirplaneMode(boolean enable) {
4781        enforceConnectivityInternalPermission();
4782        final long ident = Binder.clearCallingIdentity();
4783        try {
4784            final ContentResolver cr = mContext.getContentResolver();
4785            Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
4786            Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
4787            intent.putExtra("state", enable);
4788            mContext.sendBroadcast(intent);
4789        } finally {
4790            Binder.restoreCallingIdentity(ident);
4791        }
4792    }
4793
4794    private void onUserStart(int userId) {
4795        synchronized(mVpns) {
4796            Vpn userVpn = mVpns.get(userId);
4797            if (userVpn != null) {
4798                loge("Starting user already has a VPN");
4799                return;
4800            }
4801            userVpn = new Vpn(mContext, mVpnCallback, mNetd, this, userId);
4802            mVpns.put(userId, userVpn);
4803            userVpn.startMonitoring(mContext, mTrackerHandler);
4804        }
4805    }
4806
4807    private void onUserStop(int userId) {
4808        synchronized(mVpns) {
4809            Vpn userVpn = mVpns.get(userId);
4810            if (userVpn == null) {
4811                loge("Stopping user has no VPN");
4812                return;
4813            }
4814            mVpns.delete(userId);
4815        }
4816    }
4817
4818    private BroadcastReceiver mUserIntentReceiver = new BroadcastReceiver() {
4819        @Override
4820        public void onReceive(Context context, Intent intent) {
4821            final String action = intent.getAction();
4822            final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
4823            if (userId == UserHandle.USER_NULL) return;
4824
4825            if (Intent.ACTION_USER_STARTING.equals(action)) {
4826                onUserStart(userId);
4827            } else if (Intent.ACTION_USER_STOPPING.equals(action)) {
4828                onUserStop(userId);
4829            }
4830        }
4831    };
4832
4833    @Override
4834    public LinkQualityInfo getLinkQualityInfo(int networkType) {
4835        enforceAccessPermission();
4836        if (isNetworkTypeValid(networkType)) {
4837            return mNetTrackers[networkType].getLinkQualityInfo();
4838        } else {
4839            return null;
4840        }
4841    }
4842
4843    @Override
4844    public LinkQualityInfo getActiveLinkQualityInfo() {
4845        enforceAccessPermission();
4846        if (isNetworkTypeValid(mActiveDefaultNetwork)) {
4847            return mNetTrackers[mActiveDefaultNetwork].getLinkQualityInfo();
4848        } else {
4849            return null;
4850        }
4851    }
4852
4853    @Override
4854    public LinkQualityInfo[] getAllLinkQualityInfo() {
4855        enforceAccessPermission();
4856        final ArrayList<LinkQualityInfo> result = Lists.newArrayList();
4857        for (NetworkStateTracker tracker : mNetTrackers) {
4858            if (tracker != null) {
4859                LinkQualityInfo li = tracker.getLinkQualityInfo();
4860                if (li != null) {
4861                    result.add(li);
4862                }
4863            }
4864        }
4865
4866        return result.toArray(new LinkQualityInfo[result.size()]);
4867    }
4868
4869    /* Infrastructure for network sampling */
4870
4871    private void handleNetworkSamplingTimeout() {
4872
4873        log("Sampling interval elapsed, updating statistics ..");
4874
4875        // initialize list of interfaces ..
4876        Map<String, SamplingDataTracker.SamplingSnapshot> mapIfaceToSample =
4877                new HashMap<String, SamplingDataTracker.SamplingSnapshot>();
4878        for (NetworkStateTracker tracker : mNetTrackers) {
4879            if (tracker != null) {
4880                String ifaceName = tracker.getNetworkInterfaceName();
4881                if (ifaceName != null) {
4882                    mapIfaceToSample.put(ifaceName, null);
4883                }
4884            }
4885        }
4886
4887        // Read samples for all interfaces
4888        SamplingDataTracker.getSamplingSnapshots(mapIfaceToSample);
4889
4890        // process samples for all networks
4891        for (NetworkStateTracker tracker : mNetTrackers) {
4892            if (tracker != null) {
4893                String ifaceName = tracker.getNetworkInterfaceName();
4894                SamplingDataTracker.SamplingSnapshot ss = mapIfaceToSample.get(ifaceName);
4895                if (ss != null) {
4896                    // end the previous sampling cycle
4897                    tracker.stopSampling(ss);
4898                    // start a new sampling cycle ..
4899                    tracker.startSampling(ss);
4900                }
4901            }
4902        }
4903
4904        log("Done.");
4905
4906        int samplingIntervalInSeconds = Settings.Global.getInt(mContext.getContentResolver(),
4907                Settings.Global.CONNECTIVITY_SAMPLING_INTERVAL_IN_SECONDS,
4908                DEFAULT_SAMPLING_INTERVAL_IN_SECONDS);
4909
4910        if (DBG) log("Setting timer for " + String.valueOf(samplingIntervalInSeconds) + "seconds");
4911
4912        setAlarm(samplingIntervalInSeconds * 1000, mSampleIntervalElapsedIntent);
4913    }
4914
4915    void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
4916        long wakeupTime = SystemClock.elapsedRealtime() + timeoutInMilliseconds;
4917        mAlarmManager.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, wakeupTime, intent);
4918    }
4919}
4920