ConnectivityService.java revision b36a3131d1b05efa176f79d318197499b2c45380
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.RECEIVE_DATA_ACTIVITY_CHANGE;
20import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
21import static android.net.ConnectivityManager.NETID_UNSET;
22import static android.net.ConnectivityManager.TYPE_NONE;
23import static android.net.ConnectivityManager.TYPE_VPN;
24import static android.net.ConnectivityManager.getNetworkTypeName;
25import static android.net.ConnectivityManager.isNetworkTypeValid;
26import static android.net.NetworkCapabilities.NET_CAPABILITY_CAPTIVE_PORTAL;
27import static android.net.NetworkCapabilities.NET_CAPABILITY_INTERNET;
28import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_METERED;
29import static android.net.NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED;
30import static android.net.NetworkCapabilities.NET_CAPABILITY_VALIDATED;
31import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
32import static android.net.NetworkPolicyManager.RULE_REJECT_ALL;
33import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
34
35import android.annotation.Nullable;
36import android.app.AlarmManager;
37import android.app.Notification;
38import android.app.NotificationManager;
39import android.app.PendingIntent;
40import android.content.BroadcastReceiver;
41import android.content.ContentResolver;
42import android.content.Context;
43import android.content.Intent;
44import android.content.IntentFilter;
45import android.content.pm.PackageManager;
46import android.content.res.Configuration;
47import android.content.res.Resources;
48import android.database.ContentObserver;
49import android.net.ConnectivityManager;
50import android.net.IConnectivityManager;
51import android.net.INetworkManagementEventObserver;
52import android.net.INetworkPolicyListener;
53import android.net.INetworkPolicyManager;
54import android.net.INetworkStatsService;
55import android.net.LinkProperties;
56import android.net.LinkProperties.CompareResult;
57import android.net.Network;
58import android.net.NetworkAgent;
59import android.net.NetworkCapabilities;
60import android.net.NetworkConfig;
61import android.net.NetworkInfo;
62import android.net.NetworkInfo.DetailedState;
63import android.net.NetworkMisc;
64import android.net.NetworkQuotaInfo;
65import android.net.NetworkRequest;
66import android.net.NetworkState;
67import android.net.NetworkUtils;
68import android.net.Proxy;
69import android.net.ProxyInfo;
70import android.net.RouteInfo;
71import android.net.UidRange;
72import android.net.Uri;
73import android.os.Binder;
74import android.os.Bundle;
75import android.os.FileUtils;
76import android.os.Handler;
77import android.os.HandlerThread;
78import android.os.IBinder;
79import android.os.INetworkManagementService;
80import android.os.Looper;
81import android.os.Message;
82import android.os.Messenger;
83import android.os.ParcelFileDescriptor;
84import android.os.PowerManager;
85import android.os.Process;
86import android.os.RemoteException;
87import android.os.SystemClock;
88import android.os.SystemProperties;
89import android.os.UserHandle;
90import android.os.UserManager;
91import android.provider.Settings;
92import android.security.Credentials;
93import android.security.KeyStore;
94import android.telephony.TelephonyManager;
95import android.text.TextUtils;
96import android.util.LocalLog;
97import android.util.LocalLog.ReadOnlyLocalLog;
98import android.util.Pair;
99import android.util.Slog;
100import android.util.SparseArray;
101import android.util.SparseBooleanArray;
102import android.util.SparseIntArray;
103import android.util.Xml;
104
105import com.android.internal.R;
106import com.android.internal.annotations.GuardedBy;
107import com.android.internal.annotations.VisibleForTesting;
108import com.android.internal.app.IBatteryStats;
109import com.android.internal.net.LegacyVpnInfo;
110import com.android.internal.net.NetworkStatsFactory;
111import com.android.internal.net.VpnConfig;
112import com.android.internal.net.VpnInfo;
113import com.android.internal.net.VpnProfile;
114import com.android.internal.telephony.DctConstants;
115import com.android.internal.util.AsyncChannel;
116import com.android.internal.util.IndentingPrintWriter;
117import com.android.internal.util.XmlUtils;
118import com.android.server.am.BatteryStatsService;
119import com.android.server.connectivity.DataConnectionStats;
120import com.android.server.connectivity.NetworkDiagnostics;
121import com.android.server.connectivity.Nat464Xlat;
122import com.android.server.connectivity.NetworkAgentInfo;
123import com.android.server.connectivity.NetworkMonitor;
124import com.android.server.connectivity.PacManager;
125import com.android.server.connectivity.PermissionMonitor;
126import com.android.server.connectivity.Tethering;
127import com.android.server.connectivity.Vpn;
128import com.android.server.net.BaseNetworkObserver;
129import com.android.server.net.LockdownVpnTracker;
130import com.google.android.collect.Lists;
131import com.google.android.collect.Sets;
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.net.Inet4Address;
143import java.net.InetAddress;
144import java.net.UnknownHostException;
145import java.util.ArrayDeque;
146import java.util.ArrayList;
147import java.util.Arrays;
148import java.util.Collection;
149import java.util.HashMap;
150import java.util.HashSet;
151import java.util.Iterator;
152import java.util.List;
153import java.util.Map;
154import java.util.Objects;
155import java.util.concurrent.atomic.AtomicInteger;
156
157/**
158 * @hide
159 */
160public class ConnectivityService extends IConnectivityManager.Stub
161        implements PendingIntent.OnFinished {
162    private static final String TAG = "ConnectivityService";
163
164    private static final boolean DBG = true;
165    private static final boolean VDBG = false;
166
167    private static final boolean LOGD_RULES = false;
168
169    // TODO: create better separation between radio types and network types
170
171    // how long to wait before switching back to a radio's default network
172    private static final int RESTORE_DEFAULT_NETWORK_DELAY = 1 * 60 * 1000;
173    // system property that can override the above value
174    private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
175            "android.telephony.apn-restore";
176
177    // How long to wait before putting up a "This network doesn't have an Internet connection,
178    // connect anyway?" dialog after the user selects a network that doesn't validate.
179    private static final int PROMPT_UNVALIDATED_DELAY_MS = 8 * 1000;
180
181    // How long to delay to removal of a pending intent based request.
182    // See Settings.Secure.CONNECTIVITY_RELEASE_PENDING_INTENT_DELAY_MS
183    private final int mReleasePendingIntentDelayMs;
184
185    private Tethering mTethering;
186
187    private final PermissionMonitor mPermissionMonitor;
188
189    private KeyStore mKeyStore;
190
191    @GuardedBy("mVpns")
192    private final SparseArray<Vpn> mVpns = new SparseArray<Vpn>();
193
194    private boolean mLockdownEnabled;
195    private LockdownVpnTracker mLockdownTracker;
196
197    /** Lock around {@link #mUidRules} and {@link #mMeteredIfaces}. */
198    private Object mRulesLock = new Object();
199    /** Currently active network rules by UID. */
200    private SparseIntArray mUidRules = new SparseIntArray();
201    /** Set of ifaces that are costly. */
202    private HashSet<String> mMeteredIfaces = Sets.newHashSet();
203
204    final private Context mContext;
205    private int mNetworkPreference;
206    // 0 is full bad, 100 is full good
207    private int mDefaultInetConditionPublished = 0;
208
209    private int mNumDnsEntries;
210
211    private boolean mTestMode;
212    private static ConnectivityService sServiceInstance;
213
214    private INetworkManagementService mNetd;
215    private INetworkStatsService mStatsService;
216    private INetworkPolicyManager mPolicyManager;
217
218    private String mCurrentTcpBufferSizes;
219
220    private static final int ENABLED  = 1;
221    private static final int DISABLED = 0;
222
223    // Arguments to rematchNetworkAndRequests()
224    private enum NascentState {
225        // Indicates a network was just validated for the first time.  If the network is found to
226        // be unwanted (i.e. not satisfy any NetworkRequests) it is torn down.
227        JUST_VALIDATED,
228        // Indicates a network was not validated for the first time immediately prior to this call.
229        NOT_JUST_VALIDATED
230    };
231    private enum ReapUnvalidatedNetworks {
232        // Tear down unvalidated networks that have no chance (i.e. even if validated) of becoming
233        // the highest scoring network satisfying a NetworkRequest.  This should be passed when it's
234        // known that there may be unvalidated networks that could potentially be reaped, and when
235        // all networks have been rematched against all NetworkRequests.
236        REAP,
237        // Don't reap unvalidated networks.  This should be passed when it's known that there are
238        // no unvalidated networks that could potentially be reaped, and when some networks have
239        // not yet been rematched against all NetworkRequests.
240        DONT_REAP
241    };
242
243    /**
244     * used internally to change our mobile data enabled flag
245     */
246    private static final int EVENT_CHANGE_MOBILE_DATA_ENABLED = 2;
247
248    /**
249     * used internally to clear a wakelock when transitioning
250     * from one net to another.  Clear happens when we get a new
251     * network - EVENT_EXPIRE_NET_TRANSITION_WAKELOCK happens
252     * after a timeout if no network is found (typically 1 min).
253     */
254    private static final int EVENT_CLEAR_NET_TRANSITION_WAKELOCK = 8;
255
256    /**
257     * used internally to reload global proxy settings
258     */
259    private static final int EVENT_APPLY_GLOBAL_HTTP_PROXY = 9;
260
261    /**
262     * used internally to send a sticky broadcast delayed.
263     */
264    private static final int EVENT_SEND_STICKY_BROADCAST_INTENT = 11;
265
266    /**
267     * PAC manager has received new port.
268     */
269    private static final int EVENT_PROXY_HAS_CHANGED = 16;
270
271    /**
272     * used internally when registering NetworkFactories
273     * obj = NetworkFactoryInfo
274     */
275    private static final int EVENT_REGISTER_NETWORK_FACTORY = 17;
276
277    /**
278     * used internally when registering NetworkAgents
279     * obj = Messenger
280     */
281    private static final int EVENT_REGISTER_NETWORK_AGENT = 18;
282
283    /**
284     * used to add a network request
285     * includes a NetworkRequestInfo
286     */
287    private static final int EVENT_REGISTER_NETWORK_REQUEST = 19;
288
289    /**
290     * indicates a timeout period is over - check if we had a network yet or not
291     * and if not, call the timeout calback (but leave the request live until they
292     * cancel it.
293     * includes a NetworkRequestInfo
294     */
295    private static final int EVENT_TIMEOUT_NETWORK_REQUEST = 20;
296
297    /**
298     * used to add a network listener - no request
299     * includes a NetworkRequestInfo
300     */
301    private static final int EVENT_REGISTER_NETWORK_LISTENER = 21;
302
303    /**
304     * used to remove a network request, either a listener or a real request
305     * arg1 = UID of caller
306     * obj  = NetworkRequest
307     */
308    private static final int EVENT_RELEASE_NETWORK_REQUEST = 22;
309
310    /**
311     * used internally when registering NetworkFactories
312     * obj = Messenger
313     */
314    private static final int EVENT_UNREGISTER_NETWORK_FACTORY = 23;
315
316    /**
317     * used internally to expire a wakelock when transitioning
318     * from one net to another.  Expire happens when we fail to find
319     * a new network (typically after 1 minute) -
320     * EVENT_CLEAR_NET_TRANSITION_WAKELOCK happens if we had found
321     * a replacement network.
322     */
323    private static final int EVENT_EXPIRE_NET_TRANSITION_WAKELOCK = 24;
324
325    /**
326     * Used internally to indicate the system is ready.
327     */
328    private static final int EVENT_SYSTEM_READY = 25;
329
330    /**
331     * used to add a network request with a pending intent
332     * obj = NetworkRequestInfo
333     */
334    private static final int EVENT_REGISTER_NETWORK_REQUEST_WITH_INTENT = 26;
335
336    /**
337     * used to remove a pending intent and its associated network request.
338     * arg1 = UID of caller
339     * obj  = PendingIntent
340     */
341    private static final int EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT = 27;
342
343    /**
344     * used to specify whether a network should be used even if unvalidated.
345     * arg1 = whether to accept the network if it's unvalidated (1 or 0)
346     * arg2 = whether to remember this choice in the future (1 or 0)
347     * obj  = network
348     */
349    private static final int EVENT_SET_ACCEPT_UNVALIDATED = 28;
350
351    /**
352     * used to ask the user to confirm a connection to an unvalidated network.
353     * obj  = network
354     */
355    private static final int EVENT_PROMPT_UNVALIDATED = 29;
356
357    /**
358     * used internally to (re)configure mobile data always-on settings.
359     */
360    private static final int EVENT_CONFIGURE_MOBILE_DATA_ALWAYS_ON = 30;
361
362    /**
363     * used to add a network listener with a pending intent
364     * obj = NetworkRequestInfo
365     */
366    private static final int EVENT_REGISTER_NETWORK_LISTENER_WITH_INTENT = 31;
367
368    /** Handler used for internal events. */
369    final private InternalHandler mHandler;
370    /** Handler used for incoming {@link NetworkStateTracker} events. */
371    final private NetworkStateTrackerHandler mTrackerHandler;
372
373    private boolean mSystemReady;
374    private Intent mInitialBroadcast;
375
376    private PowerManager.WakeLock mNetTransitionWakeLock;
377    private String mNetTransitionWakeLockCausedBy = "";
378    private int mNetTransitionWakeLockSerialNumber;
379    private int mNetTransitionWakeLockTimeout;
380    private final PowerManager.WakeLock mPendingIntentWakeLock;
381
382    private InetAddress mDefaultDns;
383
384    // used in DBG mode to track inet condition reports
385    private static final int INET_CONDITION_LOG_MAX_SIZE = 15;
386    private ArrayList mInetLog;
387
388    // track the current default http proxy - tell the world if we get a new one (real change)
389    private volatile ProxyInfo mDefaultProxy = null;
390    private Object mProxyLock = new Object();
391    private boolean mDefaultProxyDisabled = false;
392
393    // track the global proxy.
394    private ProxyInfo mGlobalProxy = null;
395
396    private PacManager mPacManager = null;
397
398    final private SettingsObserver mSettingsObserver;
399
400    private UserManager mUserManager;
401
402    NetworkConfig[] mNetConfigs;
403    int mNetworksDefined;
404
405    // the set of network types that can only be enabled by system/sig apps
406    List mProtectedNetworks;
407
408    private DataConnectionStats mDataConnectionStats;
409
410    TelephonyManager mTelephonyManager;
411
412    // sequence number for Networks; keep in sync with system/netd/NetworkController.cpp
413    private final static int MIN_NET_ID = 100; // some reserved marks
414    private final static int MAX_NET_ID = 65535;
415    private int mNextNetId = MIN_NET_ID;
416
417    // sequence number of NetworkRequests
418    private int mNextNetworkRequestId = 1;
419
420    // Array of <Network,ReadOnlyLocalLogs> tracking network validation and results
421    private static final int MAX_VALIDATION_LOGS = 10;
422    private final ArrayDeque<Pair<Network,ReadOnlyLocalLog>> mValidationLogs =
423            new ArrayDeque<Pair<Network,ReadOnlyLocalLog>>(MAX_VALIDATION_LOGS);
424
425    private void addValidationLogs(ReadOnlyLocalLog log, Network network) {
426        synchronized(mValidationLogs) {
427            while (mValidationLogs.size() >= MAX_VALIDATION_LOGS) {
428                mValidationLogs.removeLast();
429            }
430            mValidationLogs.addFirst(new Pair(network, log));
431        }
432    }
433
434    /**
435     * Implements support for the legacy "one network per network type" model.
436     *
437     * We used to have a static array of NetworkStateTrackers, one for each
438     * network type, but that doesn't work any more now that we can have,
439     * for example, more that one wifi network. This class stores all the
440     * NetworkAgentInfo objects that support a given type, but the legacy
441     * API will only see the first one.
442     *
443     * It serves two main purposes:
444     *
445     * 1. Provide information about "the network for a given type" (since this
446     *    API only supports one).
447     * 2. Send legacy connectivity change broadcasts. Broadcasts are sent if
448     *    the first network for a given type changes, or if the default network
449     *    changes.
450     */
451    private class LegacyTypeTracker {
452
453        private static final boolean DBG = true;
454        private static final boolean VDBG = false;
455        private static final String TAG = "CSLegacyTypeTracker";
456
457        /**
458         * Array of lists, one per legacy network type (e.g., TYPE_MOBILE_MMS).
459         * Each list holds references to all NetworkAgentInfos that are used to
460         * satisfy requests for that network type.
461         *
462         * This array is built out at startup such that an unsupported network
463         * doesn't get an ArrayList instance, making this a tristate:
464         * unsupported, supported but not active and active.
465         *
466         * The actual lists are populated when we scan the network types that
467         * are supported on this device.
468         */
469        private ArrayList<NetworkAgentInfo> mTypeLists[];
470
471        public LegacyTypeTracker() {
472            mTypeLists = (ArrayList<NetworkAgentInfo>[])
473                    new ArrayList[ConnectivityManager.MAX_NETWORK_TYPE + 1];
474        }
475
476        public void addSupportedType(int type) {
477            if (mTypeLists[type] != null) {
478                throw new IllegalStateException(
479                        "legacy list for type " + type + "already initialized");
480            }
481            mTypeLists[type] = new ArrayList<NetworkAgentInfo>();
482        }
483
484        public boolean isTypeSupported(int type) {
485            return isNetworkTypeValid(type) && mTypeLists[type] != null;
486        }
487
488        public NetworkAgentInfo getNetworkForType(int type) {
489            if (isTypeSupported(type) && !mTypeLists[type].isEmpty()) {
490                return mTypeLists[type].get(0);
491            } else {
492                return null;
493            }
494        }
495
496        private void maybeLogBroadcast(NetworkAgentInfo nai, boolean connected, int type,
497                boolean isDefaultNetwork) {
498            if (DBG) {
499                log("Sending " + (connected ? "connected" : "disconnected") +
500                        " broadcast for type " + type + " " + nai.name() +
501                        " isDefaultNetwork=" + isDefaultNetwork);
502            }
503        }
504
505        /** Adds the given network to the specified legacy type list. */
506        public void add(int type, NetworkAgentInfo nai) {
507            if (!isTypeSupported(type)) {
508                return;  // Invalid network type.
509            }
510            if (VDBG) log("Adding agent " + nai + " for legacy network type " + type);
511
512            ArrayList<NetworkAgentInfo> list = mTypeLists[type];
513            if (list.contains(nai)) {
514                loge("Attempting to register duplicate agent for type " + type + ": " + nai);
515                return;
516            }
517
518            list.add(nai);
519
520            // Send a broadcast if this is the first network of its type or if it's the default.
521            final boolean isDefaultNetwork = isDefaultNetwork(nai);
522            if (list.size() == 1 || isDefaultNetwork) {
523                maybeLogBroadcast(nai, true, type, isDefaultNetwork);
524                sendLegacyNetworkBroadcast(nai, true, type);
525            }
526        }
527
528        /** Removes the given network from the specified legacy type list. */
529        public void remove(int type, NetworkAgentInfo nai, boolean wasDefault) {
530            ArrayList<NetworkAgentInfo> list = mTypeLists[type];
531            if (list == null || list.isEmpty()) {
532                return;
533            }
534
535            final boolean wasFirstNetwork = list.get(0).equals(nai);
536
537            if (!list.remove(nai)) {
538                return;
539            }
540
541            if (wasFirstNetwork || wasDefault) {
542                maybeLogBroadcast(nai, false, type, wasDefault);
543                sendLegacyNetworkBroadcast(nai, false, type);
544            }
545
546            if (!list.isEmpty() && wasFirstNetwork) {
547                if (DBG) log("Other network available for type " + type +
548                              ", sending connected broadcast");
549                final NetworkAgentInfo replacement = list.get(0);
550                maybeLogBroadcast(replacement, false, type, isDefaultNetwork(replacement));
551                sendLegacyNetworkBroadcast(replacement, false, type);
552            }
553        }
554
555        /** Removes the given network from all legacy type lists. */
556        public void remove(NetworkAgentInfo nai, boolean wasDefault) {
557            if (VDBG) log("Removing agent " + nai + " wasDefault=" + wasDefault);
558            for (int type = 0; type < mTypeLists.length; type++) {
559                remove(type, nai, wasDefault);
560            }
561        }
562
563        private String naiToString(NetworkAgentInfo nai) {
564            String name = (nai != null) ? nai.name() : "null";
565            String state = (nai.networkInfo != null) ?
566                    nai.networkInfo.getState() + "/" + nai.networkInfo.getDetailedState() :
567                    "???/???";
568            return name + " " + state;
569        }
570
571        public void dump(IndentingPrintWriter pw) {
572            pw.println("mLegacyTypeTracker:");
573            pw.increaseIndent();
574            pw.print("Supported types:");
575            for (int type = 0; type < mTypeLists.length; type++) {
576                if (mTypeLists[type] != null) pw.print(" " + type);
577            }
578            pw.println();
579            pw.println("Current state:");
580            pw.increaseIndent();
581            for (int type = 0; type < mTypeLists.length; type++) {
582                if (mTypeLists[type] == null|| mTypeLists[type].size() == 0) continue;
583                for (NetworkAgentInfo nai : mTypeLists[type]) {
584                    pw.println(type + " " + naiToString(nai));
585                }
586            }
587            pw.decreaseIndent();
588            pw.decreaseIndent();
589            pw.println();
590        }
591
592        // This class needs its own log method because it has a different TAG.
593        private void log(String s) {
594            Slog.d(TAG, s);
595        }
596
597    }
598    private LegacyTypeTracker mLegacyTypeTracker = new LegacyTypeTracker();
599
600    public ConnectivityService(Context context, INetworkManagementService netManager,
601            INetworkStatsService statsService, INetworkPolicyManager policyManager) {
602        if (DBG) log("ConnectivityService starting up");
603
604        mDefaultRequest = createInternetRequestForTransport(-1);
605        mNetworkRequests.put(mDefaultRequest, new NetworkRequestInfo(
606                null, mDefaultRequest, new Binder(), NetworkRequestInfo.REQUEST));
607
608        mDefaultMobileDataRequest = createInternetRequestForTransport(
609                NetworkCapabilities.TRANSPORT_CELLULAR);
610
611        HandlerThread handlerThread = new HandlerThread("ConnectivityServiceThread");
612        handlerThread.start();
613        mHandler = new InternalHandler(handlerThread.getLooper());
614        mTrackerHandler = new NetworkStateTrackerHandler(handlerThread.getLooper());
615
616        // setup our unique device name
617        if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
618            String id = Settings.Secure.getString(context.getContentResolver(),
619                    Settings.Secure.ANDROID_ID);
620            if (id != null && id.length() > 0) {
621                String name = new String("android-").concat(id);
622                SystemProperties.set("net.hostname", name);
623            }
624        }
625
626        // read our default dns server ip
627        String dns = Settings.Global.getString(context.getContentResolver(),
628                Settings.Global.DEFAULT_DNS_SERVER);
629        if (dns == null || dns.length() == 0) {
630            dns = context.getResources().getString(
631                    com.android.internal.R.string.config_default_dns_server);
632        }
633        try {
634            mDefaultDns = NetworkUtils.numericToInetAddress(dns);
635        } catch (IllegalArgumentException e) {
636            loge("Error setting defaultDns using " + dns);
637        }
638
639        mReleasePendingIntentDelayMs = Settings.Secure.getInt(context.getContentResolver(),
640                Settings.Secure.CONNECTIVITY_RELEASE_PENDING_INTENT_DELAY_MS, 5_000);
641
642        mContext = checkNotNull(context, "missing Context");
643        mNetd = checkNotNull(netManager, "missing INetworkManagementService");
644        mStatsService = checkNotNull(statsService, "missing INetworkStatsService");
645        mPolicyManager = checkNotNull(policyManager, "missing INetworkPolicyManager");
646        mKeyStore = KeyStore.getInstance();
647        mTelephonyManager = (TelephonyManager) mContext.getSystemService(Context.TELEPHONY_SERVICE);
648
649        try {
650            mPolicyManager.registerListener(mPolicyListener);
651        } catch (RemoteException e) {
652            // ouch, no rules updates means some processes may never get network
653            loge("unable to register INetworkPolicyListener" + e.toString());
654        }
655
656        final PowerManager powerManager = (PowerManager) context.getSystemService(
657                Context.POWER_SERVICE);
658        mNetTransitionWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
659        mNetTransitionWakeLockTimeout = mContext.getResources().getInteger(
660                com.android.internal.R.integer.config_networkTransitionTimeout);
661        mPendingIntentWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
662
663        mNetConfigs = new NetworkConfig[ConnectivityManager.MAX_NETWORK_TYPE+1];
664
665        // TODO: What is the "correct" way to do determine if this is a wifi only device?
666        boolean wifiOnly = SystemProperties.getBoolean("ro.radio.noril", false);
667        log("wifiOnly=" + wifiOnly);
668        String[] naStrings = context.getResources().getStringArray(
669                com.android.internal.R.array.networkAttributes);
670        for (String naString : naStrings) {
671            try {
672                NetworkConfig n = new NetworkConfig(naString);
673                if (VDBG) log("naString=" + naString + " config=" + n);
674                if (n.type > ConnectivityManager.MAX_NETWORK_TYPE) {
675                    loge("Error in networkAttributes - ignoring attempt to define type " +
676                            n.type);
677                    continue;
678                }
679                if (wifiOnly && ConnectivityManager.isNetworkTypeMobile(n.type)) {
680                    log("networkAttributes - ignoring mobile as this dev is wifiOnly " +
681                            n.type);
682                    continue;
683                }
684                if (mNetConfigs[n.type] != null) {
685                    loge("Error in networkAttributes - ignoring attempt to redefine type " +
686                            n.type);
687                    continue;
688                }
689                mLegacyTypeTracker.addSupportedType(n.type);
690
691                mNetConfigs[n.type] = n;
692                mNetworksDefined++;
693            } catch(Exception e) {
694                // ignore it - leave the entry null
695            }
696        }
697
698        // Forcibly add TYPE_VPN as a supported type, if it has not already been added via config.
699        if (mNetConfigs[TYPE_VPN] == null) {
700            // mNetConfigs is used only for "restore time", which isn't applicable to VPNs, so we
701            // don't need to add TYPE_VPN to mNetConfigs.
702            mLegacyTypeTracker.addSupportedType(TYPE_VPN);
703            mNetworksDefined++;  // used only in the log() statement below.
704        }
705
706        if (VDBG) log("mNetworksDefined=" + mNetworksDefined);
707
708        mProtectedNetworks = new ArrayList<Integer>();
709        int[] protectedNetworks = context.getResources().getIntArray(
710                com.android.internal.R.array.config_protectedNetworks);
711        for (int p : protectedNetworks) {
712            if ((mNetConfigs[p] != null) && (mProtectedNetworks.contains(p) == false)) {
713                mProtectedNetworks.add(p);
714            } else {
715                if (DBG) loge("Ignoring protectedNetwork " + p);
716            }
717        }
718
719        mTestMode = SystemProperties.get("cm.test.mode").equals("true")
720                && SystemProperties.get("ro.build.type").equals("eng");
721
722        mTethering = new Tethering(mContext, mNetd, statsService, mHandler.getLooper());
723
724        mPermissionMonitor = new PermissionMonitor(mContext, mNetd);
725
726        //set up the listener for user state for creating user VPNs
727        IntentFilter intentFilter = new IntentFilter();
728        intentFilter.addAction(Intent.ACTION_USER_STARTING);
729        intentFilter.addAction(Intent.ACTION_USER_STOPPING);
730        mContext.registerReceiverAsUser(
731                mUserIntentReceiver, UserHandle.ALL, intentFilter, null, null);
732
733        try {
734            mNetd.registerObserver(mTethering);
735            mNetd.registerObserver(mDataActivityObserver);
736        } catch (RemoteException e) {
737            loge("Error registering observer :" + e);
738        }
739
740        if (DBG) {
741            mInetLog = new ArrayList();
742        }
743
744        mSettingsObserver = new SettingsObserver(mContext, mHandler);
745        registerSettingsCallbacks();
746
747        mDataConnectionStats = new DataConnectionStats(mContext);
748        mDataConnectionStats.startMonitoring();
749
750        mPacManager = new PacManager(mContext, mHandler, EVENT_PROXY_HAS_CHANGED);
751
752        mUserManager = (UserManager) context.getSystemService(Context.USER_SERVICE);
753    }
754
755    private NetworkRequest createInternetRequestForTransport(int transportType) {
756        NetworkCapabilities netCap = new NetworkCapabilities();
757        netCap.addCapability(NET_CAPABILITY_INTERNET);
758        netCap.addCapability(NET_CAPABILITY_NOT_RESTRICTED);
759        if (transportType > -1) {
760            netCap.addTransportType(transportType);
761        }
762        return new NetworkRequest(netCap, TYPE_NONE, nextNetworkRequestId());
763    }
764
765    private void handleMobileDataAlwaysOn() {
766        final boolean enable = (Settings.Global.getInt(
767                mContext.getContentResolver(), Settings.Global.MOBILE_DATA_ALWAYS_ON, 0) == 1);
768        final boolean isEnabled = (mNetworkRequests.get(mDefaultMobileDataRequest) != null);
769        if (enable == isEnabled) {
770            return;  // Nothing to do.
771        }
772
773        if (enable) {
774            handleRegisterNetworkRequest(new NetworkRequestInfo(
775                    null, mDefaultMobileDataRequest, new Binder(), NetworkRequestInfo.REQUEST));
776        } else {
777            handleReleaseNetworkRequest(mDefaultMobileDataRequest, Process.SYSTEM_UID);
778        }
779    }
780
781    private void registerSettingsCallbacks() {
782        // Watch for global HTTP proxy changes.
783        mSettingsObserver.observe(
784                Settings.Global.getUriFor(Settings.Global.HTTP_PROXY),
785                EVENT_APPLY_GLOBAL_HTTP_PROXY);
786
787        // Watch for whether or not to keep mobile data always on.
788        mSettingsObserver.observe(
789                Settings.Global.getUriFor(Settings.Global.MOBILE_DATA_ALWAYS_ON),
790                EVENT_CONFIGURE_MOBILE_DATA_ALWAYS_ON);
791    }
792
793    private synchronized int nextNetworkRequestId() {
794        return mNextNetworkRequestId++;
795    }
796
797    @VisibleForTesting
798    protected int reserveNetId() {
799        synchronized (mNetworkForNetId) {
800            for (int i = MIN_NET_ID; i <= MAX_NET_ID; i++) {
801                int netId = mNextNetId;
802                if (++mNextNetId > MAX_NET_ID) mNextNetId = MIN_NET_ID;
803                // Make sure NetID unused.  http://b/16815182
804                if (!mNetIdInUse.get(netId)) {
805                    mNetIdInUse.put(netId, true);
806                    return netId;
807                }
808            }
809        }
810        throw new IllegalStateException("No free netIds");
811    }
812
813    private NetworkState getFilteredNetworkState(int networkType, int uid) {
814        NetworkInfo info = null;
815        LinkProperties lp = null;
816        NetworkCapabilities nc = null;
817        Network network = null;
818        String subscriberId = null;
819
820        if (mLegacyTypeTracker.isTypeSupported(networkType)) {
821            NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType);
822            if (nai != null) {
823                synchronized (nai) {
824                    info = new NetworkInfo(nai.networkInfo);
825                    lp = new LinkProperties(nai.linkProperties);
826                    nc = new NetworkCapabilities(nai.networkCapabilities);
827                    // Network objects are outwardly immutable so there is no point to duplicating.
828                    // Duplicating also precludes sharing socket factories and connection pools.
829                    network = nai.network;
830                    subscriberId = (nai.networkMisc != null) ? nai.networkMisc.subscriberId : null;
831                }
832                info.setType(networkType);
833            } else {
834                info = new NetworkInfo(networkType, 0, getNetworkTypeName(networkType), "");
835                info.setDetailedState(NetworkInfo.DetailedState.DISCONNECTED, null, null);
836                info.setIsAvailable(true);
837                lp = new LinkProperties();
838                nc = new NetworkCapabilities();
839                network = null;
840            }
841            info = getFilteredNetworkInfo(info, lp, uid);
842        }
843
844        return new NetworkState(info, lp, nc, network, subscriberId, null);
845    }
846
847    private NetworkAgentInfo getNetworkAgentInfoForNetwork(Network network) {
848        if (network == null) {
849            return null;
850        }
851        synchronized (mNetworkForNetId) {
852            return mNetworkForNetId.get(network.netId);
853        }
854    };
855
856    private Network[] getVpnUnderlyingNetworks(int uid) {
857        if (!mLockdownEnabled) {
858            int user = UserHandle.getUserId(uid);
859            synchronized (mVpns) {
860                Vpn vpn = mVpns.get(user);
861                if (vpn != null && vpn.appliesToUid(uid)) {
862                    return vpn.getUnderlyingNetworks();
863                }
864            }
865        }
866        return null;
867    }
868
869    private NetworkState getUnfilteredActiveNetworkState(int uid) {
870        NetworkInfo info = null;
871        LinkProperties lp = null;
872        NetworkCapabilities nc = null;
873        Network network = null;
874        String subscriberId = null;
875
876        NetworkAgentInfo nai = mNetworkForRequestId.get(mDefaultRequest.requestId);
877
878        final Network[] networks = getVpnUnderlyingNetworks(uid);
879        if (networks != null) {
880            // getUnderlyingNetworks() returns:
881            // null => there was no VPN, or the VPN didn't specify anything, so we use the default.
882            // empty array => the VPN explicitly said "no default network".
883            // non-empty array => the VPN specified one or more default networks; we use the
884            //                    first one.
885            if (networks.length > 0) {
886                nai = getNetworkAgentInfoForNetwork(networks[0]);
887            } else {
888                nai = null;
889            }
890        }
891
892        if (nai != null) {
893            synchronized (nai) {
894                info = new NetworkInfo(nai.networkInfo);
895                lp = new LinkProperties(nai.linkProperties);
896                nc = new NetworkCapabilities(nai.networkCapabilities);
897                // Network objects are outwardly immutable so there is no point to duplicating.
898                // Duplicating also precludes sharing socket factories and connection pools.
899                network = nai.network;
900                subscriberId = (nai.networkMisc != null) ? nai.networkMisc.subscriberId : null;
901            }
902        }
903
904        return new NetworkState(info, lp, nc, network, subscriberId, null);
905    }
906
907    /**
908     * Check if UID should be blocked from using the network with the given LinkProperties.
909     */
910    private boolean isNetworkWithLinkPropertiesBlocked(LinkProperties lp, int uid) {
911        final boolean networkCostly;
912        final int uidRules;
913
914        final String iface = (lp == null ? "" : lp.getInterfaceName());
915        synchronized (mRulesLock) {
916            networkCostly = mMeteredIfaces.contains(iface);
917            uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
918        }
919
920        if ((uidRules & RULE_REJECT_ALL) != 0
921                || (networkCostly && (uidRules & RULE_REJECT_METERED) != 0)) {
922            return true;
923        }
924
925        // no restrictive rules; network is visible
926        return false;
927    }
928
929    /**
930     * Return a filtered {@link NetworkInfo}, potentially marked
931     * {@link DetailedState#BLOCKED} based on
932     * {@link #isNetworkWithLinkPropertiesBlocked}.
933     */
934    private NetworkInfo getFilteredNetworkInfo(NetworkInfo info, LinkProperties lp, int uid) {
935        if (info != null && isNetworkWithLinkPropertiesBlocked(lp, uid)) {
936            // network is blocked; clone and override state
937            info = new NetworkInfo(info);
938            info.setDetailedState(DetailedState.BLOCKED, null, null);
939            if (VDBG) {
940                log("returning Blocked NetworkInfo for ifname=" +
941                        lp.getInterfaceName() + ", uid=" + uid);
942            }
943        }
944        if (info != null && mLockdownTracker != null) {
945            info = mLockdownTracker.augmentNetworkInfo(info);
946            if (VDBG) log("returning Locked NetworkInfo");
947        }
948        return info;
949    }
950
951    /**
952     * Return NetworkInfo for the active (i.e., connected) network interface.
953     * It is assumed that at most one network is active at a time. If more
954     * than one is active, it is indeterminate which will be returned.
955     * @return the info for the active network, or {@code null} if none is
956     * active
957     */
958    @Override
959    public NetworkInfo getActiveNetworkInfo() {
960        enforceAccessPermission();
961        final int uid = Binder.getCallingUid();
962        NetworkState state = getUnfilteredActiveNetworkState(uid);
963        return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
964    }
965
966    @Override
967    public Network getActiveNetwork() {
968        enforceAccessPermission();
969        final int uid = Binder.getCallingUid();
970        final int user = UserHandle.getUserId(uid);
971        int vpnNetId = NETID_UNSET;
972        synchronized (mVpns) {
973            final Vpn vpn = mVpns.get(user);
974            if (vpn != null && vpn.appliesToUid(uid)) vpnNetId = vpn.getNetId();
975        }
976        NetworkAgentInfo nai;
977        if (vpnNetId != NETID_UNSET) {
978            synchronized (mNetworkForNetId) {
979                nai = mNetworkForNetId.get(vpnNetId);
980            }
981            if (nai != null) return nai.network;
982        }
983        nai = getDefaultNetwork();
984        if (nai != null && isNetworkWithLinkPropertiesBlocked(nai.linkProperties, uid)) nai = null;
985        return nai != null ? nai.network : null;
986    }
987
988    public NetworkInfo getActiveNetworkInfoUnfiltered() {
989        enforceAccessPermission();
990        final int uid = Binder.getCallingUid();
991        NetworkState state = getUnfilteredActiveNetworkState(uid);
992        return state.networkInfo;
993    }
994
995    @Override
996    public NetworkInfo getActiveNetworkInfoForUid(int uid) {
997        enforceConnectivityInternalPermission();
998        NetworkState state = getUnfilteredActiveNetworkState(uid);
999        return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
1000    }
1001
1002    @Override
1003    public NetworkInfo getNetworkInfo(int networkType) {
1004        enforceAccessPermission();
1005        final int uid = Binder.getCallingUid();
1006        if (getVpnUnderlyingNetworks(uid) != null) {
1007            // A VPN is active, so we may need to return one of its underlying networks. This
1008            // information is not available in LegacyTypeTracker, so we have to get it from
1009            // getUnfilteredActiveNetworkState.
1010            NetworkState state = getUnfilteredActiveNetworkState(uid);
1011            if (state.networkInfo != null && state.networkInfo.getType() == networkType) {
1012                return getFilteredNetworkInfo(state.networkInfo, state.linkProperties, uid);
1013            }
1014        }
1015        NetworkState state = getFilteredNetworkState(networkType, uid);
1016        return state.networkInfo;
1017    }
1018
1019    @Override
1020    public NetworkInfo getNetworkInfoForNetwork(Network network) {
1021        enforceAccessPermission();
1022        final int uid = Binder.getCallingUid();
1023        NetworkInfo info = null;
1024        NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
1025        if (nai != null) {
1026            synchronized (nai) {
1027                info = new NetworkInfo(nai.networkInfo);
1028                info = getFilteredNetworkInfo(info, nai.linkProperties, uid);
1029            }
1030        }
1031        return info;
1032    }
1033
1034    @Override
1035    public NetworkInfo[] getAllNetworkInfo() {
1036        enforceAccessPermission();
1037        final ArrayList<NetworkInfo> result = Lists.newArrayList();
1038        for (int networkType = 0; networkType <= ConnectivityManager.MAX_NETWORK_TYPE;
1039                networkType++) {
1040            NetworkInfo info = getNetworkInfo(networkType);
1041            if (info != null) {
1042                result.add(info);
1043            }
1044        }
1045        return result.toArray(new NetworkInfo[result.size()]);
1046    }
1047
1048    @Override
1049    public Network getNetworkForType(int networkType) {
1050        enforceAccessPermission();
1051        final int uid = Binder.getCallingUid();
1052        NetworkState state = getFilteredNetworkState(networkType, uid);
1053        if (!isNetworkWithLinkPropertiesBlocked(state.linkProperties, uid)) {
1054            return state.network;
1055        }
1056        return null;
1057    }
1058
1059    @Override
1060    public Network[] getAllNetworks() {
1061        enforceAccessPermission();
1062        synchronized (mNetworkForNetId) {
1063            final Network[] result = new Network[mNetworkForNetId.size()];
1064            for (int i = 0; i < mNetworkForNetId.size(); i++) {
1065                result[i] = mNetworkForNetId.valueAt(i).network;
1066            }
1067            return result;
1068        }
1069    }
1070
1071    @Override
1072    public NetworkCapabilities[] getDefaultNetworkCapabilitiesForUser(int userId) {
1073        // The basic principle is: if an app's traffic could possibly go over a
1074        // network, without the app doing anything multinetwork-specific,
1075        // (hence, by "default"), then include that network's capabilities in
1076        // the array.
1077        //
1078        // In the normal case, app traffic only goes over the system's default
1079        // network connection, so that's the only network returned.
1080        //
1081        // With a VPN in force, some app traffic may go into the VPN, and thus
1082        // over whatever underlying networks the VPN specifies, while other app
1083        // traffic may go over the system default network (e.g.: a split-tunnel
1084        // VPN, or an app disallowed by the VPN), so the set of networks
1085        // returned includes the VPN's underlying networks and the system
1086        // default.
1087        enforceAccessPermission();
1088
1089        HashMap<Network, NetworkCapabilities> result = new HashMap<Network, NetworkCapabilities>();
1090
1091        NetworkAgentInfo nai = getDefaultNetwork();
1092        NetworkCapabilities nc = getNetworkCapabilitiesInternal(nai);
1093        if (nc != null) {
1094            result.put(nai.network, nc);
1095        }
1096
1097        if (!mLockdownEnabled) {
1098            synchronized (mVpns) {
1099                Vpn vpn = mVpns.get(userId);
1100                if (vpn != null) {
1101                    Network[] networks = vpn.getUnderlyingNetworks();
1102                    if (networks != null) {
1103                        for (Network network : networks) {
1104                            nai = getNetworkAgentInfoForNetwork(network);
1105                            nc = getNetworkCapabilitiesInternal(nai);
1106                            if (nc != null) {
1107                                result.put(network, nc);
1108                            }
1109                        }
1110                    }
1111                }
1112            }
1113        }
1114
1115        NetworkCapabilities[] out = new NetworkCapabilities[result.size()];
1116        out = result.values().toArray(out);
1117        return out;
1118    }
1119
1120    @Override
1121    public boolean isNetworkSupported(int networkType) {
1122        enforceAccessPermission();
1123        return mLegacyTypeTracker.isTypeSupported(networkType);
1124    }
1125
1126    /**
1127     * Return LinkProperties for the active (i.e., connected) default
1128     * network interface.  It is assumed that at most one default network
1129     * is active at a time. If more than one is active, it is indeterminate
1130     * which will be returned.
1131     * @return the ip properties for the active network, or {@code null} if
1132     * none is active
1133     */
1134    @Override
1135    public LinkProperties getActiveLinkProperties() {
1136        enforceAccessPermission();
1137        final int uid = Binder.getCallingUid();
1138        NetworkState state = getUnfilteredActiveNetworkState(uid);
1139        return state.linkProperties;
1140    }
1141
1142    @Override
1143    public LinkProperties getLinkPropertiesForType(int networkType) {
1144        enforceAccessPermission();
1145        NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType);
1146        if (nai != null) {
1147            synchronized (nai) {
1148                return new LinkProperties(nai.linkProperties);
1149            }
1150        }
1151        return null;
1152    }
1153
1154    // TODO - this should be ALL networks
1155    @Override
1156    public LinkProperties getLinkProperties(Network network) {
1157        enforceAccessPermission();
1158        NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
1159        if (nai != null) {
1160            synchronized (nai) {
1161                return new LinkProperties(nai.linkProperties);
1162            }
1163        }
1164        return null;
1165    }
1166
1167    private NetworkCapabilities getNetworkCapabilitiesInternal(NetworkAgentInfo nai) {
1168        if (nai != null) {
1169            synchronized (nai) {
1170                if (nai.networkCapabilities != null) {
1171                    return new NetworkCapabilities(nai.networkCapabilities);
1172                }
1173            }
1174        }
1175        return null;
1176    }
1177
1178    @Override
1179    public NetworkCapabilities getNetworkCapabilities(Network network) {
1180        enforceAccessPermission();
1181        return getNetworkCapabilitiesInternal(getNetworkAgentInfoForNetwork(network));
1182    }
1183
1184    @Override
1185    public NetworkState[] getAllNetworkState() {
1186        // Require internal since we're handing out IMSI details
1187        enforceConnectivityInternalPermission();
1188
1189        final ArrayList<NetworkState> result = Lists.newArrayList();
1190        for (Network network : getAllNetworks()) {
1191            final NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
1192            if (nai != null) {
1193                synchronized (nai) {
1194                    final String subscriberId = (nai.networkMisc != null)
1195                            ? nai.networkMisc.subscriberId : null;
1196                    result.add(new NetworkState(nai.networkInfo, nai.linkProperties,
1197                            nai.networkCapabilities, network, subscriberId, null));
1198                }
1199            }
1200        }
1201        return result.toArray(new NetworkState[result.size()]);
1202    }
1203
1204    @Override
1205    public NetworkQuotaInfo getActiveNetworkQuotaInfo() {
1206        enforceAccessPermission();
1207        final int uid = Binder.getCallingUid();
1208        final long token = Binder.clearCallingIdentity();
1209        try {
1210            final NetworkState state = getUnfilteredActiveNetworkState(uid);
1211            if (state.networkInfo != null) {
1212                try {
1213                    return mPolicyManager.getNetworkQuotaInfo(state);
1214                } catch (RemoteException e) {
1215                }
1216            }
1217            return null;
1218        } finally {
1219            Binder.restoreCallingIdentity(token);
1220        }
1221    }
1222
1223    @Override
1224    public boolean isActiveNetworkMetered() {
1225        enforceAccessPermission();
1226        final int uid = Binder.getCallingUid();
1227        final long token = Binder.clearCallingIdentity();
1228        try {
1229            return isActiveNetworkMeteredUnchecked(uid);
1230        } finally {
1231            Binder.restoreCallingIdentity(token);
1232        }
1233    }
1234
1235    private boolean isActiveNetworkMeteredUnchecked(int uid) {
1236        final NetworkState state = getUnfilteredActiveNetworkState(uid);
1237        if (state.networkInfo != null) {
1238            try {
1239                return mPolicyManager.isNetworkMetered(state);
1240            } catch (RemoteException e) {
1241            }
1242        }
1243        return false;
1244    }
1245
1246    private INetworkManagementEventObserver mDataActivityObserver = new BaseNetworkObserver() {
1247        @Override
1248        public void interfaceClassDataActivityChanged(String label, boolean active, long tsNanos) {
1249            int deviceType = Integer.parseInt(label);
1250            sendDataActivityBroadcast(deviceType, active, tsNanos);
1251        }
1252    };
1253
1254    /**
1255     * Ensure that a network route exists to deliver traffic to the specified
1256     * host via the specified network interface.
1257     * @param networkType the type of the network over which traffic to the
1258     * specified host is to be routed
1259     * @param hostAddress the IP address of the host to which the route is
1260     * desired
1261     * @return {@code true} on success, {@code false} on failure
1262     */
1263    public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress) {
1264        enforceChangePermission();
1265        if (mProtectedNetworks.contains(networkType)) {
1266            enforceConnectivityInternalPermission();
1267        }
1268
1269        InetAddress addr;
1270        try {
1271            addr = InetAddress.getByAddress(hostAddress);
1272        } catch (UnknownHostException e) {
1273            if (DBG) log("requestRouteToHostAddress got " + e.toString());
1274            return false;
1275        }
1276
1277        if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
1278            if (DBG) log("requestRouteToHostAddress on invalid network: " + networkType);
1279            return false;
1280        }
1281
1282        NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType);
1283        if (nai == null) {
1284            if (mLegacyTypeTracker.isTypeSupported(networkType) == false) {
1285                if (DBG) log("requestRouteToHostAddress on unsupported network: " + networkType);
1286            } else {
1287                if (DBG) log("requestRouteToHostAddress on down network: " + networkType);
1288            }
1289            return false;
1290        }
1291
1292        DetailedState netState;
1293        synchronized (nai) {
1294            netState = nai.networkInfo.getDetailedState();
1295        }
1296
1297        if (netState != DetailedState.CONNECTED && netState != DetailedState.CAPTIVE_PORTAL_CHECK) {
1298            if (VDBG) {
1299                log("requestRouteToHostAddress on down network "
1300                        + "(" + networkType + ") - dropped"
1301                        + " netState=" + netState);
1302            }
1303            return false;
1304        }
1305
1306        final int uid = Binder.getCallingUid();
1307        final long token = Binder.clearCallingIdentity();
1308        try {
1309            LinkProperties lp;
1310            int netId;
1311            synchronized (nai) {
1312                lp = nai.linkProperties;
1313                netId = nai.network.netId;
1314            }
1315            boolean ok = addLegacyRouteToHost(lp, addr, netId, uid);
1316            if (DBG) log("requestRouteToHostAddress ok=" + ok);
1317            return ok;
1318        } finally {
1319            Binder.restoreCallingIdentity(token);
1320        }
1321    }
1322
1323    private boolean addLegacyRouteToHost(LinkProperties lp, InetAddress addr, int netId, int uid) {
1324        RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getAllRoutes(), addr);
1325        if (bestRoute == null) {
1326            bestRoute = RouteInfo.makeHostRoute(addr, lp.getInterfaceName());
1327        } else {
1328            String iface = bestRoute.getInterface();
1329            if (bestRoute.getGateway().equals(addr)) {
1330                // if there is no better route, add the implied hostroute for our gateway
1331                bestRoute = RouteInfo.makeHostRoute(addr, iface);
1332            } else {
1333                // if we will connect to this through another route, add a direct route
1334                // to it's gateway
1335                bestRoute = RouteInfo.makeHostRoute(addr, bestRoute.getGateway(), iface);
1336            }
1337        }
1338        if (DBG) log("Adding " + bestRoute + " for interface " + bestRoute.getInterface());
1339        try {
1340            mNetd.addLegacyRouteForNetId(netId, bestRoute, uid);
1341        } catch (Exception e) {
1342            // never crash - catch them all
1343            if (DBG) loge("Exception trying to add a route: " + e);
1344            return false;
1345        }
1346        return true;
1347    }
1348
1349    private INetworkPolicyListener mPolicyListener = new INetworkPolicyListener.Stub() {
1350        @Override
1351        public void onUidRulesChanged(int uid, int uidRules) {
1352            // caller is NPMS, since we only register with them
1353            if (LOGD_RULES) {
1354                log("onUidRulesChanged(uid=" + uid + ", uidRules=" + uidRules + ")");
1355            }
1356
1357            synchronized (mRulesLock) {
1358                // skip update when we've already applied rules
1359                final int oldRules = mUidRules.get(uid, RULE_ALLOW_ALL);
1360                if (oldRules == uidRules) return;
1361
1362                mUidRules.put(uid, uidRules);
1363            }
1364
1365            // TODO: notify UID when it has requested targeted updates
1366        }
1367
1368        @Override
1369        public void onMeteredIfacesChanged(String[] meteredIfaces) {
1370            // caller is NPMS, since we only register with them
1371            if (LOGD_RULES) {
1372                log("onMeteredIfacesChanged(ifaces=" + Arrays.toString(meteredIfaces) + ")");
1373            }
1374
1375            synchronized (mRulesLock) {
1376                mMeteredIfaces.clear();
1377                for (String iface : meteredIfaces) {
1378                    mMeteredIfaces.add(iface);
1379                }
1380            }
1381        }
1382
1383        @Override
1384        public void onRestrictBackgroundChanged(boolean restrictBackground) {
1385            // caller is NPMS, since we only register with them
1386            if (LOGD_RULES) {
1387                log("onRestrictBackgroundChanged(restrictBackground=" + restrictBackground + ")");
1388            }
1389        }
1390    };
1391
1392    /**
1393     * Require that the caller is either in the same user or has appropriate permission to interact
1394     * across users.
1395     *
1396     * @param userId Target user for whatever operation the current IPC is supposed to perform.
1397     */
1398    private void enforceCrossUserPermission(int userId) {
1399        if (userId == UserHandle.getCallingUserId()) {
1400            // Not a cross-user call.
1401            return;
1402        }
1403        mContext.enforceCallingOrSelfPermission(
1404                android.Manifest.permission.INTERACT_ACROSS_USERS_FULL,
1405                "ConnectivityService");
1406    }
1407
1408    private void enforceInternetPermission() {
1409        mContext.enforceCallingOrSelfPermission(
1410                android.Manifest.permission.INTERNET,
1411                "ConnectivityService");
1412    }
1413
1414    private void enforceAccessPermission() {
1415        mContext.enforceCallingOrSelfPermission(
1416                android.Manifest.permission.ACCESS_NETWORK_STATE,
1417                "ConnectivityService");
1418    }
1419
1420    private void enforceChangePermission() {
1421        mContext.enforceCallingOrSelfPermission(
1422                android.Manifest.permission.CHANGE_NETWORK_STATE,
1423                "ConnectivityService");
1424    }
1425
1426    private void enforceTetherAccessPermission() {
1427        mContext.enforceCallingOrSelfPermission(
1428                android.Manifest.permission.ACCESS_NETWORK_STATE,
1429                "ConnectivityService");
1430    }
1431
1432    private void enforceConnectivityInternalPermission() {
1433        mContext.enforceCallingOrSelfPermission(
1434                android.Manifest.permission.CONNECTIVITY_INTERNAL,
1435                "ConnectivityService");
1436    }
1437
1438    public void sendConnectedBroadcast(NetworkInfo info) {
1439        enforceConnectivityInternalPermission();
1440        sendGeneralBroadcast(info, CONNECTIVITY_ACTION);
1441    }
1442
1443    private void sendInetConditionBroadcast(NetworkInfo info) {
1444        sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
1445    }
1446
1447    private Intent makeGeneralIntent(NetworkInfo info, String bcastType) {
1448        if (mLockdownTracker != null) {
1449            info = mLockdownTracker.augmentNetworkInfo(info);
1450        }
1451
1452        Intent intent = new Intent(bcastType);
1453        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, new NetworkInfo(info));
1454        intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
1455        if (info.isFailover()) {
1456            intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1457            info.setFailover(false);
1458        }
1459        if (info.getReason() != null) {
1460            intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
1461        }
1462        if (info.getExtraInfo() != null) {
1463            intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
1464                    info.getExtraInfo());
1465        }
1466        intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
1467        return intent;
1468    }
1469
1470    private void sendGeneralBroadcast(NetworkInfo info, String bcastType) {
1471        sendStickyBroadcast(makeGeneralIntent(info, bcastType));
1472    }
1473
1474    private void sendDataActivityBroadcast(int deviceType, boolean active, long tsNanos) {
1475        Intent intent = new Intent(ConnectivityManager.ACTION_DATA_ACTIVITY_CHANGE);
1476        intent.putExtra(ConnectivityManager.EXTRA_DEVICE_TYPE, deviceType);
1477        intent.putExtra(ConnectivityManager.EXTRA_IS_ACTIVE, active);
1478        intent.putExtra(ConnectivityManager.EXTRA_REALTIME_NS, tsNanos);
1479        final long ident = Binder.clearCallingIdentity();
1480        try {
1481            mContext.sendOrderedBroadcastAsUser(intent, UserHandle.ALL,
1482                    RECEIVE_DATA_ACTIVITY_CHANGE, null, null, 0, null, null);
1483        } finally {
1484            Binder.restoreCallingIdentity(ident);
1485        }
1486    }
1487
1488    private void sendStickyBroadcast(Intent intent) {
1489        synchronized(this) {
1490            if (!mSystemReady) {
1491                mInitialBroadcast = new Intent(intent);
1492            }
1493            intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
1494            if (DBG) {
1495                log("sendStickyBroadcast: action=" + intent.getAction());
1496            }
1497
1498            final long ident = Binder.clearCallingIdentity();
1499            if (ConnectivityManager.CONNECTIVITY_ACTION.equals(intent.getAction())) {
1500                final IBatteryStats bs = BatteryStatsService.getService();
1501                try {
1502                    NetworkInfo ni = intent.getParcelableExtra(
1503                            ConnectivityManager.EXTRA_NETWORK_INFO);
1504                    bs.noteConnectivityChanged(intent.getIntExtra(
1505                            ConnectivityManager.EXTRA_NETWORK_TYPE, ConnectivityManager.TYPE_NONE),
1506                            ni != null ? ni.getState().toString() : "?");
1507                } catch (RemoteException e) {
1508                }
1509            }
1510            try {
1511                mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
1512            } finally {
1513                Binder.restoreCallingIdentity(ident);
1514            }
1515        }
1516    }
1517
1518    void systemReady() {
1519        loadGlobalProxy();
1520
1521        synchronized(this) {
1522            mSystemReady = true;
1523            if (mInitialBroadcast != null) {
1524                mContext.sendStickyBroadcastAsUser(mInitialBroadcast, UserHandle.ALL);
1525                mInitialBroadcast = null;
1526            }
1527        }
1528        // load the global proxy at startup
1529        mHandler.sendMessage(mHandler.obtainMessage(EVENT_APPLY_GLOBAL_HTTP_PROXY));
1530
1531        // Try bringing up tracker, but if KeyStore isn't ready yet, wait
1532        // for user to unlock device.
1533        if (!updateLockdownVpn()) {
1534            final IntentFilter filter = new IntentFilter(Intent.ACTION_USER_PRESENT);
1535            mContext.registerReceiver(mUserPresentReceiver, filter);
1536        }
1537
1538        // Configure whether mobile data is always on.
1539        mHandler.sendMessage(mHandler.obtainMessage(EVENT_CONFIGURE_MOBILE_DATA_ALWAYS_ON));
1540
1541        mHandler.sendMessage(mHandler.obtainMessage(EVENT_SYSTEM_READY));
1542
1543        mPermissionMonitor.startMonitoring();
1544    }
1545
1546    private BroadcastReceiver mUserPresentReceiver = new BroadcastReceiver() {
1547        @Override
1548        public void onReceive(Context context, Intent intent) {
1549            // Try creating lockdown tracker, since user present usually means
1550            // unlocked keystore.
1551            if (updateLockdownVpn()) {
1552                mContext.unregisterReceiver(this);
1553            }
1554        }
1555    };
1556
1557    /**
1558     * Setup data activity tracking for the given network.
1559     *
1560     * Every {@code setupDataActivityTracking} should be paired with a
1561     * {@link #removeDataActivityTracking} for cleanup.
1562     */
1563    private void setupDataActivityTracking(NetworkAgentInfo networkAgent) {
1564        final String iface = networkAgent.linkProperties.getInterfaceName();
1565
1566        final int timeout;
1567        int type = ConnectivityManager.TYPE_NONE;
1568
1569        if (networkAgent.networkCapabilities.hasTransport(
1570                NetworkCapabilities.TRANSPORT_CELLULAR)) {
1571            timeout = Settings.Global.getInt(mContext.getContentResolver(),
1572                                             Settings.Global.DATA_ACTIVITY_TIMEOUT_MOBILE,
1573                                             5);
1574            type = ConnectivityManager.TYPE_MOBILE;
1575        } else if (networkAgent.networkCapabilities.hasTransport(
1576                NetworkCapabilities.TRANSPORT_WIFI)) {
1577            timeout = Settings.Global.getInt(mContext.getContentResolver(),
1578                                             Settings.Global.DATA_ACTIVITY_TIMEOUT_WIFI,
1579                                             15);
1580            type = ConnectivityManager.TYPE_WIFI;
1581        } else {
1582            // do not track any other networks
1583            timeout = 0;
1584        }
1585
1586        if (timeout > 0 && iface != null && type != ConnectivityManager.TYPE_NONE) {
1587            try {
1588                mNetd.addIdleTimer(iface, timeout, type);
1589            } catch (Exception e) {
1590                // You shall not crash!
1591                loge("Exception in setupDataActivityTracking " + e);
1592            }
1593        }
1594    }
1595
1596    /**
1597     * Remove data activity tracking when network disconnects.
1598     */
1599    private void removeDataActivityTracking(NetworkAgentInfo networkAgent) {
1600        final String iface = networkAgent.linkProperties.getInterfaceName();
1601        final NetworkCapabilities caps = networkAgent.networkCapabilities;
1602
1603        if (iface != null && (caps.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) ||
1604                              caps.hasTransport(NetworkCapabilities.TRANSPORT_WIFI))) {
1605            try {
1606                // the call fails silently if no idletimer setup for this interface
1607                mNetd.removeIdleTimer(iface);
1608            } catch (Exception e) {
1609                loge("Exception in removeDataActivityTracking " + e);
1610            }
1611        }
1612    }
1613
1614    /**
1615     * Reads the network specific MTU size from reources.
1616     * and set it on it's iface.
1617     */
1618    private void updateMtu(LinkProperties newLp, LinkProperties oldLp) {
1619        final String iface = newLp.getInterfaceName();
1620        final int mtu = newLp.getMtu();
1621        if (oldLp != null && newLp.isIdenticalMtu(oldLp)) {
1622            if (VDBG) log("identical MTU - not setting");
1623            return;
1624        }
1625
1626        if (LinkProperties.isValidMtu(mtu, newLp.hasGlobalIPv6Address()) == false) {
1627            loge("Unexpected mtu value: " + mtu + ", " + iface);
1628            return;
1629        }
1630
1631        // Cannot set MTU without interface name
1632        if (TextUtils.isEmpty(iface)) {
1633            loge("Setting MTU size with null iface.");
1634            return;
1635        }
1636
1637        try {
1638            if (DBG) log("Setting MTU size: " + iface + ", " + mtu);
1639            mNetd.setMtu(iface, mtu);
1640        } catch (Exception e) {
1641            Slog.e(TAG, "exception in setMtu()" + e);
1642        }
1643    }
1644
1645    private static final String DEFAULT_TCP_BUFFER_SIZES = "4096,87380,110208,4096,16384,110208";
1646    private static final String DEFAULT_TCP_RWND_KEY = "net.tcp.default_init_rwnd";
1647
1648    // Overridden for testing purposes to avoid writing to SystemProperties.
1649    @VisibleForTesting
1650    protected int getDefaultTcpRwnd() {
1651        return SystemProperties.getInt(DEFAULT_TCP_RWND_KEY, 0);
1652    }
1653
1654    private void updateTcpBufferSizes(NetworkAgentInfo nai) {
1655        if (isDefaultNetwork(nai) == false) {
1656            return;
1657        }
1658
1659        String tcpBufferSizes = nai.linkProperties.getTcpBufferSizes();
1660        String[] values = null;
1661        if (tcpBufferSizes != null) {
1662            values = tcpBufferSizes.split(",");
1663        }
1664
1665        if (values == null || values.length != 6) {
1666            if (DBG) log("Invalid tcpBufferSizes string: " + tcpBufferSizes +", using defaults");
1667            tcpBufferSizes = DEFAULT_TCP_BUFFER_SIZES;
1668            values = tcpBufferSizes.split(",");
1669        }
1670
1671        if (tcpBufferSizes.equals(mCurrentTcpBufferSizes)) return;
1672
1673        try {
1674            if (DBG) Slog.d(TAG, "Setting tx/rx TCP buffers to " + tcpBufferSizes);
1675
1676            final String prefix = "/sys/kernel/ipv4/tcp_";
1677            FileUtils.stringToFile(prefix + "rmem_min", values[0]);
1678            FileUtils.stringToFile(prefix + "rmem_def", values[1]);
1679            FileUtils.stringToFile(prefix + "rmem_max", values[2]);
1680            FileUtils.stringToFile(prefix + "wmem_min", values[3]);
1681            FileUtils.stringToFile(prefix + "wmem_def", values[4]);
1682            FileUtils.stringToFile(prefix + "wmem_max", values[5]);
1683            mCurrentTcpBufferSizes = tcpBufferSizes;
1684        } catch (IOException e) {
1685            loge("Can't set TCP buffer sizes:" + e);
1686        }
1687
1688        Integer rwndValue = Settings.Global.getInt(mContext.getContentResolver(),
1689            Settings.Global.TCP_DEFAULT_INIT_RWND, getDefaultTcpRwnd());
1690        final String sysctlKey = "sys.sysctl.tcp_def_init_rwnd";
1691        if (rwndValue != 0) {
1692            SystemProperties.set(sysctlKey, rwndValue.toString());
1693        }
1694    }
1695
1696    private void flushVmDnsCache() {
1697        /*
1698         * Tell the VMs to toss their DNS caches
1699         */
1700        Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
1701        intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
1702        /*
1703         * Connectivity events can happen before boot has completed ...
1704         */
1705        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
1706        final long ident = Binder.clearCallingIdentity();
1707        try {
1708            mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
1709        } finally {
1710            Binder.restoreCallingIdentity(ident);
1711        }
1712    }
1713
1714    @Override
1715    public int getRestoreDefaultNetworkDelay(int networkType) {
1716        String restoreDefaultNetworkDelayStr = SystemProperties.get(
1717                NETWORK_RESTORE_DELAY_PROP_NAME);
1718        if(restoreDefaultNetworkDelayStr != null &&
1719                restoreDefaultNetworkDelayStr.length() != 0) {
1720            try {
1721                return Integer.valueOf(restoreDefaultNetworkDelayStr);
1722            } catch (NumberFormatException e) {
1723            }
1724        }
1725        // if the system property isn't set, use the value for the apn type
1726        int ret = RESTORE_DEFAULT_NETWORK_DELAY;
1727
1728        if ((networkType <= ConnectivityManager.MAX_NETWORK_TYPE) &&
1729                (mNetConfigs[networkType] != null)) {
1730            ret = mNetConfigs[networkType].restoreTime;
1731        }
1732        return ret;
1733    }
1734
1735    private boolean argsContain(String[] args, String target) {
1736        for (String arg : args) {
1737            if (arg.equals(target)) return true;
1738        }
1739        return false;
1740    }
1741
1742    @Override
1743    protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
1744        final IndentingPrintWriter pw = new IndentingPrintWriter(writer, "  ");
1745        if (mContext.checkCallingOrSelfPermission(
1746                android.Manifest.permission.DUMP)
1747                != PackageManager.PERMISSION_GRANTED) {
1748            pw.println("Permission Denial: can't dump ConnectivityService " +
1749                    "from from pid=" + Binder.getCallingPid() + ", uid=" +
1750                    Binder.getCallingUid());
1751            return;
1752        }
1753
1754        final List<NetworkDiagnostics> netDiags = new ArrayList<NetworkDiagnostics>();
1755        if (argsContain(args, "--diag")) {
1756            final long DIAG_TIME_MS = 5000;
1757            for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
1758                // Start gathering diagnostic information.
1759                netDiags.add(new NetworkDiagnostics(
1760                        nai.network,
1761                        new LinkProperties(nai.linkProperties),
1762                        DIAG_TIME_MS));
1763            }
1764
1765            for (NetworkDiagnostics netDiag : netDiags) {
1766                pw.println();
1767                netDiag.waitForMeasurements();
1768                netDiag.dump(pw);
1769            }
1770
1771            return;
1772        }
1773
1774        pw.print("NetworkFactories for:");
1775        for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
1776            pw.print(" " + nfi.name);
1777        }
1778        pw.println();
1779        pw.println();
1780
1781        NetworkAgentInfo defaultNai = mNetworkForRequestId.get(mDefaultRequest.requestId);
1782        pw.print("Active default network: ");
1783        if (defaultNai == null) {
1784            pw.println("none");
1785        } else {
1786            pw.println(defaultNai.network.netId);
1787        }
1788        pw.println();
1789
1790        pw.println("Current Networks:");
1791        pw.increaseIndent();
1792        for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
1793            pw.println(nai.toString());
1794            pw.increaseIndent();
1795            pw.println("Requests:");
1796            pw.increaseIndent();
1797            for (int i = 0; i < nai.networkRequests.size(); i++) {
1798                pw.println(nai.networkRequests.valueAt(i).toString());
1799            }
1800            pw.decreaseIndent();
1801            pw.println("Lingered:");
1802            pw.increaseIndent();
1803            for (NetworkRequest nr : nai.networkLingered) pw.println(nr.toString());
1804            pw.decreaseIndent();
1805            pw.decreaseIndent();
1806        }
1807        pw.decreaseIndent();
1808        pw.println();
1809
1810        pw.println("Network Requests:");
1811        pw.increaseIndent();
1812        for (NetworkRequestInfo nri : mNetworkRequests.values()) {
1813            pw.println(nri.toString());
1814        }
1815        pw.println();
1816        pw.decreaseIndent();
1817
1818        mLegacyTypeTracker.dump(pw);
1819
1820        synchronized (this) {
1821            pw.print("mNetTransitionWakeLock: currently " +
1822                    (mNetTransitionWakeLock.isHeld() ? "" : "not ") + "held");
1823            if (!TextUtils.isEmpty(mNetTransitionWakeLockCausedBy)) {
1824                pw.println(", last requested for " + mNetTransitionWakeLockCausedBy);
1825            } else {
1826                pw.println(", last requested never");
1827            }
1828        }
1829        pw.println();
1830
1831        mTethering.dump(fd, pw, args);
1832
1833        if (mInetLog != null && mInetLog.size() > 0) {
1834            pw.println();
1835            pw.println("Inet condition reports:");
1836            pw.increaseIndent();
1837            for(int i = 0; i < mInetLog.size(); i++) {
1838                pw.println(mInetLog.get(i));
1839            }
1840            pw.decreaseIndent();
1841        }
1842
1843        if (argsContain(args, "--short") == false) {
1844            pw.println();
1845            synchronized (mValidationLogs) {
1846                pw.println("mValidationLogs (most recent first):");
1847                for (Pair<Network,ReadOnlyLocalLog> p : mValidationLogs) {
1848                    pw.println(p.first);
1849                    pw.increaseIndent();
1850                    p.second.dump(fd, pw, args);
1851                    pw.decreaseIndent();
1852                }
1853            }
1854        }
1855    }
1856
1857    private boolean isLiveNetworkAgent(NetworkAgentInfo nai, String msg) {
1858        if (nai.network == null) return false;
1859        final NetworkAgentInfo officialNai = getNetworkAgentInfoForNetwork(nai.network);
1860        if (officialNai != null && officialNai.equals(nai)) return true;
1861        if (officialNai != null || VDBG) {
1862            loge(msg + " - isLiveNetworkAgent found mismatched netId: " + officialNai +
1863                " - " + nai);
1864        }
1865        return false;
1866    }
1867
1868    private boolean isRequest(NetworkRequest request) {
1869        return mNetworkRequests.get(request).isRequest;
1870    }
1871
1872    // must be stateless - things change under us.
1873    private class NetworkStateTrackerHandler extends Handler {
1874        public NetworkStateTrackerHandler(Looper looper) {
1875            super(looper);
1876        }
1877
1878        @Override
1879        public void handleMessage(Message msg) {
1880            NetworkInfo info;
1881            switch (msg.what) {
1882                case AsyncChannel.CMD_CHANNEL_HALF_CONNECTED: {
1883                    handleAsyncChannelHalfConnect(msg);
1884                    break;
1885                }
1886                case AsyncChannel.CMD_CHANNEL_DISCONNECT: {
1887                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1888                    if (nai != null) nai.asyncChannel.disconnect();
1889                    break;
1890                }
1891                case AsyncChannel.CMD_CHANNEL_DISCONNECTED: {
1892                    handleAsyncChannelDisconnected(msg);
1893                    break;
1894                }
1895                case NetworkAgent.EVENT_NETWORK_CAPABILITIES_CHANGED: {
1896                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1897                    if (nai == null) {
1898                        loge("EVENT_NETWORK_CAPABILITIES_CHANGED from unknown NetworkAgent");
1899                    } else {
1900                        final NetworkCapabilities networkCapabilities =
1901                                (NetworkCapabilities)msg.obj;
1902                        if (networkCapabilities.hasCapability(NET_CAPABILITY_CAPTIVE_PORTAL) ||
1903                                networkCapabilities.hasCapability(NET_CAPABILITY_VALIDATED)) {
1904                            Slog.wtf(TAG, "BUG: " + nai + " has stateful capability.");
1905                        }
1906                        updateCapabilities(nai, networkCapabilities,
1907                                NascentState.NOT_JUST_VALIDATED);
1908                    }
1909                    break;
1910                }
1911                case NetworkAgent.EVENT_NETWORK_PROPERTIES_CHANGED: {
1912                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1913                    if (nai == null) {
1914                        loge("NetworkAgent not found for EVENT_NETWORK_PROPERTIES_CHANGED");
1915                    } else {
1916                        if (VDBG) {
1917                            log("Update of LinkProperties for " + nai.name() +
1918                                    "; created=" + nai.created);
1919                        }
1920                        LinkProperties oldLp = nai.linkProperties;
1921                        synchronized (nai) {
1922                            nai.linkProperties = (LinkProperties)msg.obj;
1923                        }
1924                        if (nai.created) updateLinkProperties(nai, oldLp);
1925                    }
1926                    break;
1927                }
1928                case NetworkAgent.EVENT_NETWORK_INFO_CHANGED: {
1929                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1930                    if (nai == null) {
1931                        loge("EVENT_NETWORK_INFO_CHANGED from unknown NetworkAgent");
1932                        break;
1933                    }
1934                    info = (NetworkInfo) msg.obj;
1935                    updateNetworkInfo(nai, info);
1936                    break;
1937                }
1938                case NetworkAgent.EVENT_NETWORK_SCORE_CHANGED: {
1939                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1940                    if (nai == null) {
1941                        loge("EVENT_NETWORK_SCORE_CHANGED from unknown NetworkAgent");
1942                        break;
1943                    }
1944                    Integer score = (Integer) msg.obj;
1945                    if (score != null) updateNetworkScore(nai, score.intValue());
1946                    break;
1947                }
1948                case NetworkAgent.EVENT_UID_RANGES_ADDED: {
1949                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1950                    if (nai == null) {
1951                        loge("EVENT_UID_RANGES_ADDED from unknown NetworkAgent");
1952                        break;
1953                    }
1954                    try {
1955                        mNetd.addVpnUidRanges(nai.network.netId, (UidRange[])msg.obj);
1956                    } catch (Exception e) {
1957                        // Never crash!
1958                        loge("Exception in addVpnUidRanges: " + e);
1959                    }
1960                    break;
1961                }
1962                case NetworkAgent.EVENT_UID_RANGES_REMOVED: {
1963                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1964                    if (nai == null) {
1965                        loge("EVENT_UID_RANGES_REMOVED from unknown NetworkAgent");
1966                        break;
1967                    }
1968                    try {
1969                        mNetd.removeVpnUidRanges(nai.network.netId, (UidRange[])msg.obj);
1970                    } catch (Exception e) {
1971                        // Never crash!
1972                        loge("Exception in removeVpnUidRanges: " + e);
1973                    }
1974                    break;
1975                }
1976                case NetworkAgent.EVENT_SET_EXPLICITLY_SELECTED: {
1977                    NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
1978                    if (nai == null) {
1979                        loge("EVENT_SET_EXPLICITLY_SELECTED from unknown NetworkAgent");
1980                        break;
1981                    }
1982                    if (nai.created && !nai.networkMisc.explicitlySelected) {
1983                        loge("ERROR: created network explicitly selected.");
1984                    }
1985                    nai.networkMisc.explicitlySelected = true;
1986                    nai.networkMisc.acceptUnvalidated = (boolean) msg.obj;
1987                    break;
1988                }
1989                case NetworkMonitor.EVENT_NETWORK_TESTED: {
1990                    NetworkAgentInfo nai = (NetworkAgentInfo)msg.obj;
1991                    if (isLiveNetworkAgent(nai, "EVENT_NETWORK_TESTED")) {
1992                        final boolean valid =
1993                                (msg.arg1 == NetworkMonitor.NETWORK_TEST_RESULT_VALID);
1994                        if (DBG) log(nai.name() + " validation " + (valid ? " passed" : "failed"));
1995                        if (valid != nai.lastValidated) {
1996                            final int oldScore = nai.getCurrentScore();
1997                            final NascentState nascent = (valid && !nai.everValidated) ?
1998                                    NascentState.JUST_VALIDATED : NascentState.NOT_JUST_VALIDATED;
1999                            nai.lastValidated = valid;
2000                            nai.everValidated |= valid;
2001                            updateCapabilities(nai, nai.networkCapabilities, nascent);
2002                            // If score has changed, rebroadcast to NetworkFactories. b/17726566
2003                            if (oldScore != nai.getCurrentScore()) sendUpdatedScoreToFactories(nai);
2004                        }
2005                        updateInetCondition(nai);
2006                        // Let the NetworkAgent know the state of its network
2007                        nai.asyncChannel.sendMessage(
2008                                android.net.NetworkAgent.CMD_REPORT_NETWORK_STATUS,
2009                                (valid ? NetworkAgent.VALID_NETWORK : NetworkAgent.INVALID_NETWORK),
2010                                0, null);
2011                    }
2012                    break;
2013                }
2014                case NetworkMonitor.EVENT_NETWORK_LINGER_COMPLETE: {
2015                    NetworkAgentInfo nai = (NetworkAgentInfo)msg.obj;
2016                    if (isLiveNetworkAgent(nai, "EVENT_NETWORK_LINGER_COMPLETE")) {
2017                        handleLingerComplete(nai);
2018                    }
2019                    break;
2020                }
2021                case NetworkMonitor.EVENT_PROVISIONING_NOTIFICATION: {
2022                    final int netId = msg.arg2;
2023                    final boolean visible = (msg.arg1 != 0);
2024                    final NetworkAgentInfo nai;
2025                    synchronized (mNetworkForNetId) {
2026                        nai = mNetworkForNetId.get(netId);
2027                    }
2028                    // If captive portal status has changed, update capabilities.
2029                    if (nai != null && (visible != nai.lastCaptivePortalDetected)) {
2030                        nai.lastCaptivePortalDetected = visible;
2031                        nai.everCaptivePortalDetected |= visible;
2032                        updateCapabilities(nai, nai.networkCapabilities,
2033                                NascentState.NOT_JUST_VALIDATED);
2034                    }
2035                    if (!visible) {
2036                        setProvNotificationVisibleIntent(false, netId, null, 0, null, null, false);
2037                    } else {
2038                        if (nai == null) {
2039                            loge("EVENT_PROVISIONING_NOTIFICATION from unknown NetworkMonitor");
2040                            break;
2041                        }
2042                        setProvNotificationVisibleIntent(true, netId, NotificationType.SIGN_IN,
2043                                nai.networkInfo.getType(), nai.networkInfo.getExtraInfo(),
2044                                (PendingIntent)msg.obj, nai.networkMisc.explicitlySelected);
2045                    }
2046                    break;
2047                }
2048            }
2049        }
2050    }
2051
2052    // Cancel any lingering so the linger timeout doesn't teardown a network.
2053    // This should be called when a network begins satisfying a NetworkRequest.
2054    // Note: depending on what state the NetworkMonitor is in (e.g.,
2055    // if it's awaiting captive portal login, or if validation failed), this
2056    // may trigger a re-evaluation of the network.
2057    private void unlinger(NetworkAgentInfo nai) {
2058        if (VDBG) log("Canceling linger of " + nai.name());
2059        // If network has never been validated, it cannot have been lingered, so don't bother
2060        // needlessly triggering a re-evaluation.
2061        if (!nai.everValidated) return;
2062        nai.networkLingered.clear();
2063        nai.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_CONNECTED);
2064    }
2065
2066    private void handleAsyncChannelHalfConnect(Message msg) {
2067        AsyncChannel ac = (AsyncChannel) msg.obj;
2068        if (mNetworkFactoryInfos.containsKey(msg.replyTo)) {
2069            if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
2070                if (VDBG) log("NetworkFactory connected");
2071                // A network factory has connected.  Send it all current NetworkRequests.
2072                for (NetworkRequestInfo nri : mNetworkRequests.values()) {
2073                    if (nri.isRequest == false) continue;
2074                    NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId);
2075                    ac.sendMessage(android.net.NetworkFactory.CMD_REQUEST_NETWORK,
2076                            (nai != null ? nai.getCurrentScore() : 0), 0, nri.request);
2077                }
2078            } else {
2079                loge("Error connecting NetworkFactory");
2080                mNetworkFactoryInfos.remove(msg.obj);
2081            }
2082        } else if (mNetworkAgentInfos.containsKey(msg.replyTo)) {
2083            if (msg.arg1 == AsyncChannel.STATUS_SUCCESSFUL) {
2084                if (VDBG) log("NetworkAgent connected");
2085                // A network agent has requested a connection.  Establish the connection.
2086                mNetworkAgentInfos.get(msg.replyTo).asyncChannel.
2087                        sendMessage(AsyncChannel.CMD_CHANNEL_FULL_CONNECTION);
2088            } else {
2089                loge("Error connecting NetworkAgent");
2090                NetworkAgentInfo nai = mNetworkAgentInfos.remove(msg.replyTo);
2091                if (nai != null) {
2092                    final boolean wasDefault = isDefaultNetwork(nai);
2093                    synchronized (mNetworkForNetId) {
2094                        mNetworkForNetId.remove(nai.network.netId);
2095                        mNetIdInUse.delete(nai.network.netId);
2096                    }
2097                    // Just in case.
2098                    mLegacyTypeTracker.remove(nai, wasDefault);
2099                }
2100            }
2101        }
2102    }
2103
2104    private void handleAsyncChannelDisconnected(Message msg) {
2105        NetworkAgentInfo nai = mNetworkAgentInfos.get(msg.replyTo);
2106        if (nai != null) {
2107            if (DBG) {
2108                log(nai.name() + " got DISCONNECTED, was satisfying " + nai.networkRequests.size());
2109            }
2110            // A network agent has disconnected.
2111            // TODO - if we move the logic to the network agent (have them disconnect
2112            // because they lost all their requests or because their score isn't good)
2113            // then they would disconnect organically, report their new state and then
2114            // disconnect the channel.
2115            if (nai.networkInfo.isConnected()) {
2116                nai.networkInfo.setDetailedState(NetworkInfo.DetailedState.DISCONNECTED,
2117                        null, null);
2118            }
2119            final boolean wasDefault = isDefaultNetwork(nai);
2120            if (wasDefault) {
2121                mDefaultInetConditionPublished = 0;
2122            }
2123            notifyIfacesChanged();
2124            notifyNetworkCallbacks(nai, ConnectivityManager.CALLBACK_LOST);
2125            nai.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_DISCONNECTED);
2126            mNetworkAgentInfos.remove(msg.replyTo);
2127            updateClat(null, nai.linkProperties, nai);
2128            synchronized (mNetworkForNetId) {
2129                // Remove the NetworkAgent, but don't mark the netId as
2130                // available until we've told netd to delete it below.
2131                mNetworkForNetId.remove(nai.network.netId);
2132            }
2133            // Since we've lost the network, go through all the requests that
2134            // it was satisfying and see if any other factory can satisfy them.
2135            // TODO: This logic may be better replaced with a call to rematchAllNetworksAndRequests
2136            final ArrayList<NetworkAgentInfo> toActivate = new ArrayList<NetworkAgentInfo>();
2137            for (int i = 0; i < nai.networkRequests.size(); i++) {
2138                NetworkRequest request = nai.networkRequests.valueAt(i);
2139                NetworkAgentInfo currentNetwork = mNetworkForRequestId.get(request.requestId);
2140                if (currentNetwork != null && currentNetwork.network.netId == nai.network.netId) {
2141                    if (DBG) {
2142                        log("Checking for replacement network to handle request " + request );
2143                    }
2144                    mNetworkForRequestId.remove(request.requestId);
2145                    sendUpdatedScoreToFactories(request, 0);
2146                    NetworkAgentInfo alternative = null;
2147                    for (NetworkAgentInfo existing : mNetworkAgentInfos.values()) {
2148                        if (existing.satisfies(request) &&
2149                                (alternative == null ||
2150                                 alternative.getCurrentScore() < existing.getCurrentScore())) {
2151                            alternative = existing;
2152                        }
2153                    }
2154                    if (alternative != null) {
2155                        if (DBG) log(" found replacement in " + alternative.name());
2156                        if (!toActivate.contains(alternative)) {
2157                            toActivate.add(alternative);
2158                        }
2159                    }
2160                }
2161            }
2162            if (nai.networkRequests.get(mDefaultRequest.requestId) != null) {
2163                removeDataActivityTracking(nai);
2164                notifyLockdownVpn(nai);
2165                requestNetworkTransitionWakelock(nai.name());
2166            }
2167            mLegacyTypeTracker.remove(nai, wasDefault);
2168            for (NetworkAgentInfo networkToActivate : toActivate) {
2169                unlinger(networkToActivate);
2170                rematchNetworkAndRequests(networkToActivate, NascentState.NOT_JUST_VALIDATED,
2171                        ReapUnvalidatedNetworks.DONT_REAP);
2172            }
2173            if (nai.created) {
2174                // Tell netd to clean up the configuration for this network
2175                // (routing rules, DNS, etc).
2176                // This may be slow as it requires a lot of netd shelling out to ip and
2177                // ip[6]tables to flush routes and remove the incoming packet mark rule, so do it
2178                // after we've rematched networks with requests which should make a potential
2179                // fallback network the default or requested a new network from the
2180                // NetworkFactories, so network traffic isn't interrupted for an unnecessarily
2181                // long time.
2182                try {
2183                    mNetd.removeNetwork(nai.network.netId);
2184                } catch (Exception e) {
2185                    loge("Exception removing network: " + e);
2186                }
2187            }
2188            synchronized (mNetworkForNetId) {
2189                mNetIdInUse.delete(nai.network.netId);
2190            }
2191        } else {
2192            NetworkFactoryInfo nfi = mNetworkFactoryInfos.remove(msg.replyTo);
2193            if (DBG && nfi != null) log("unregisterNetworkFactory for " + nfi.name);
2194        }
2195    }
2196
2197    // If this method proves to be too slow then we can maintain a separate
2198    // pendingIntent => NetworkRequestInfo map.
2199    // This method assumes that every non-null PendingIntent maps to exactly 1 NetworkRequestInfo.
2200    private NetworkRequestInfo findExistingNetworkRequestInfo(PendingIntent pendingIntent) {
2201        Intent intent = pendingIntent.getIntent();
2202        for (Map.Entry<NetworkRequest, NetworkRequestInfo> entry : mNetworkRequests.entrySet()) {
2203            PendingIntent existingPendingIntent = entry.getValue().mPendingIntent;
2204            if (existingPendingIntent != null &&
2205                    existingPendingIntent.getIntent().filterEquals(intent)) {
2206                return entry.getValue();
2207            }
2208        }
2209        return null;
2210    }
2211
2212    private void handleRegisterNetworkRequestWithIntent(Message msg) {
2213        final NetworkRequestInfo nri = (NetworkRequestInfo) (msg.obj);
2214
2215        NetworkRequestInfo existingRequest = findExistingNetworkRequestInfo(nri.mPendingIntent);
2216        if (existingRequest != null) { // remove the existing request.
2217            if (DBG) log("Replacing " + existingRequest.request + " with "
2218                    + nri.request + " because their intents matched.");
2219            handleReleaseNetworkRequest(existingRequest.request, getCallingUid());
2220        }
2221        handleRegisterNetworkRequest(nri);
2222    }
2223
2224    private void handleRegisterNetworkRequest(NetworkRequestInfo nri) {
2225        mNetworkRequests.put(nri.request, nri);
2226
2227        // TODO: This logic may be better replaced with a call to rematchNetworkAndRequests
2228
2229        // Check for the best currently alive network that satisfies this request
2230        NetworkAgentInfo bestNetwork = null;
2231        for (NetworkAgentInfo network : mNetworkAgentInfos.values()) {
2232            if (DBG) log("handleRegisterNetworkRequest checking " + network.name());
2233            if (network.satisfies(nri.request)) {
2234                if (DBG) log("apparently satisfied.  currentScore=" + network.getCurrentScore());
2235                if (!nri.isRequest) {
2236                    // Not setting bestNetwork here as a listening NetworkRequest may be
2237                    // satisfied by multiple Networks.  Instead the request is added to
2238                    // each satisfying Network and notified about each.
2239                    if (!network.addRequest(nri.request)) {
2240                        Slog.wtf(TAG, "BUG: " + network.name() + " already has " + nri.request);
2241                    }
2242                    notifyNetworkCallback(network, nri);
2243                } else if (bestNetwork == null ||
2244                        bestNetwork.getCurrentScore() < network.getCurrentScore()) {
2245                    bestNetwork = network;
2246                }
2247            }
2248        }
2249        if (bestNetwork != null) {
2250            if (DBG) log("using " + bestNetwork.name());
2251            unlinger(bestNetwork);
2252            if (!bestNetwork.addRequest(nri.request)) {
2253                Slog.wtf(TAG, "BUG: " + bestNetwork.name() + " already has " + nri.request);
2254            }
2255            mNetworkForRequestId.put(nri.request.requestId, bestNetwork);
2256            notifyNetworkCallback(bestNetwork, nri);
2257            if (nri.request.legacyType != TYPE_NONE) {
2258                mLegacyTypeTracker.add(nri.request.legacyType, bestNetwork);
2259            }
2260        }
2261
2262        if (nri.isRequest) {
2263            if (DBG) log("sending new NetworkRequest to factories");
2264            final int score = bestNetwork == null ? 0 : bestNetwork.getCurrentScore();
2265            for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
2266                nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_REQUEST_NETWORK, score,
2267                        0, nri.request);
2268            }
2269        }
2270    }
2271
2272    private void handleReleaseNetworkRequestWithIntent(PendingIntent pendingIntent,
2273            int callingUid) {
2274        NetworkRequestInfo nri = findExistingNetworkRequestInfo(pendingIntent);
2275        if (nri != null) {
2276            handleReleaseNetworkRequest(nri.request, callingUid);
2277        }
2278    }
2279
2280    // Is nai unneeded by all NetworkRequests (and should be disconnected)?
2281    // For validated Networks this is simply whether it is satsifying any NetworkRequests.
2282    // For unvalidated Networks this is whether it is satsifying any NetworkRequests or
2283    // were it to become validated, would it have a chance of satisfying any NetworkRequests.
2284    private boolean unneeded(NetworkAgentInfo nai) {
2285        if (!nai.created || nai.isVPN()) return false;
2286        boolean unneeded = true;
2287        if (nai.everValidated) {
2288            for (int i = 0; i < nai.networkRequests.size() && unneeded; i++) {
2289                final NetworkRequest nr = nai.networkRequests.valueAt(i);
2290                try {
2291                    if (isRequest(nr)) unneeded = false;
2292                } catch (Exception e) {
2293                    loge("Request " + nr + " not found in mNetworkRequests.");
2294                    loge("  it came from request list  of " + nai.name());
2295                }
2296            }
2297        } else {
2298            for (NetworkRequestInfo nri : mNetworkRequests.values()) {
2299                // If this Network is already the highest scoring Network for a request, or if
2300                // there is hope for it to become one if it validated, then it is needed.
2301                if (nri.isRequest && nai.satisfies(nri.request) &&
2302                        (nai.networkRequests.get(nri.request.requestId) != null ||
2303                        // Note that this catches two important cases:
2304                        // 1. Unvalidated cellular will not be reaped when unvalidated WiFi
2305                        //    is currently satisfying the request.  This is desirable when
2306                        //    cellular ends up validating but WiFi does not.
2307                        // 2. Unvalidated WiFi will not be reaped when validated cellular
2308                        //    is currently satsifying the request.  This is desirable when
2309                        //    WiFi ends up validating and out scoring cellular.
2310                        mNetworkForRequestId.get(nri.request.requestId).getCurrentScore() <
2311                                nai.getCurrentScoreAsValidated())) {
2312                    unneeded = false;
2313                    break;
2314                }
2315            }
2316        }
2317        return unneeded;
2318    }
2319
2320    private void handleReleaseNetworkRequest(NetworkRequest request, int callingUid) {
2321        NetworkRequestInfo nri = mNetworkRequests.get(request);
2322        if (nri != null) {
2323            if (Process.SYSTEM_UID != callingUid && nri.mUid != callingUid) {
2324                if (DBG) log("Attempt to release unowned NetworkRequest " + request);
2325                return;
2326            }
2327            if (DBG) log("releasing NetworkRequest " + request);
2328            nri.unlinkDeathRecipient();
2329            mNetworkRequests.remove(request);
2330            if (nri.isRequest) {
2331                // Find all networks that are satisfying this request and remove the request
2332                // from their request lists.
2333                // TODO - it's my understanding that for a request there is only a single
2334                // network satisfying it, so this loop is wasteful
2335                boolean wasKept = false;
2336                for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2337                    if (nai.networkRequests.get(nri.request.requestId) != null) {
2338                        nai.networkRequests.remove(nri.request.requestId);
2339                        if (DBG) {
2340                            log(" Removing from current network " + nai.name() +
2341                                    ", leaving " + nai.networkRequests.size() +
2342                                    " requests.");
2343                        }
2344                        if (unneeded(nai)) {
2345                            if (DBG) log("no live requests for " + nai.name() + "; disconnecting");
2346                            teardownUnneededNetwork(nai);
2347                        } else {
2348                            // suspect there should only be one pass through here
2349                            // but if any were kept do the check below
2350                            wasKept |= true;
2351                        }
2352                    }
2353                }
2354
2355                NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId);
2356                if (nai != null) {
2357                    mNetworkForRequestId.remove(nri.request.requestId);
2358                }
2359                // Maintain the illusion.  When this request arrived, we might have pretended
2360                // that a network connected to serve it, even though the network was already
2361                // connected.  Now that this request has gone away, we might have to pretend
2362                // that the network disconnected.  LegacyTypeTracker will generate that
2363                // phantom disconnect for this type.
2364                if (nri.request.legacyType != TYPE_NONE && nai != null) {
2365                    boolean doRemove = true;
2366                    if (wasKept) {
2367                        // check if any of the remaining requests for this network are for the
2368                        // same legacy type - if so, don't remove the nai
2369                        for (int i = 0; i < nai.networkRequests.size(); i++) {
2370                            NetworkRequest otherRequest = nai.networkRequests.valueAt(i);
2371                            if (otherRequest.legacyType == nri.request.legacyType &&
2372                                    isRequest(otherRequest)) {
2373                                if (DBG) log(" still have other legacy request - leaving");
2374                                doRemove = false;
2375                            }
2376                        }
2377                    }
2378
2379                    if (doRemove) {
2380                        mLegacyTypeTracker.remove(nri.request.legacyType, nai, false);
2381                    }
2382                }
2383
2384                for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
2385                    nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_CANCEL_REQUEST,
2386                            nri.request);
2387                }
2388            } else {
2389                // listens don't have a singular affectedNetwork.  Check all networks to see
2390                // if this listen request applies and remove it.
2391                for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2392                    nai.networkRequests.remove(nri.request.requestId);
2393                }
2394            }
2395            callCallbackForRequest(nri, null, ConnectivityManager.CALLBACK_RELEASED);
2396        }
2397    }
2398
2399    public void setAcceptUnvalidated(Network network, boolean accept, boolean always) {
2400        enforceConnectivityInternalPermission();
2401        mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_ACCEPT_UNVALIDATED,
2402                accept ? 1 : 0, always ? 1: 0, network));
2403    }
2404
2405    private void handleSetAcceptUnvalidated(Network network, boolean accept, boolean always) {
2406        if (DBG) log("handleSetAcceptUnvalidated network=" + network +
2407                " accept=" + accept + " always=" + always);
2408
2409        NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
2410        if (nai == null) {
2411            // Nothing to do.
2412            return;
2413        }
2414
2415        if (nai.everValidated) {
2416            // The network validated while the dialog box was up. Take no action.
2417            return;
2418        }
2419
2420        if (!nai.networkMisc.explicitlySelected) {
2421            Slog.wtf(TAG, "BUG: setAcceptUnvalidated non non-explicitly selected network");
2422        }
2423
2424        if (accept != nai.networkMisc.acceptUnvalidated) {
2425            int oldScore = nai.getCurrentScore();
2426            nai.networkMisc.acceptUnvalidated = accept;
2427            rematchAllNetworksAndRequests(nai, oldScore, NascentState.NOT_JUST_VALIDATED);
2428            sendUpdatedScoreToFactories(nai);
2429        }
2430
2431        if (always) {
2432            nai.asyncChannel.sendMessage(
2433                    NetworkAgent.CMD_SAVE_ACCEPT_UNVALIDATED, accept ? 1 : 0);
2434        }
2435
2436        if (!accept) {
2437            // Tell the NetworkAgent that the network does not have Internet access (because that's
2438            // what we just told the user). This will hint to Wi-Fi not to autojoin this network in
2439            // the future. We do this now because NetworkMonitor might not yet have finished
2440            // validating and thus we might not yet have received an EVENT_NETWORK_TESTED.
2441            nai.asyncChannel.sendMessage(NetworkAgent.CMD_REPORT_NETWORK_STATUS,
2442                    NetworkAgent.INVALID_NETWORK, 0, null);
2443            // TODO: Tear the network down once we have determined how to tell WifiStateMachine not
2444            // to reconnect to it immediately. http://b/20739299
2445        }
2446
2447    }
2448
2449    private void scheduleUnvalidatedPrompt(NetworkAgentInfo nai) {
2450        if (DBG) log("scheduleUnvalidatedPrompt " + nai.network);
2451        mHandler.sendMessageDelayed(
2452                mHandler.obtainMessage(EVENT_PROMPT_UNVALIDATED, nai.network),
2453                PROMPT_UNVALIDATED_DELAY_MS);
2454    }
2455
2456    private void handlePromptUnvalidated(Network network) {
2457        if (DBG) log("handlePromptUnvalidated " + network);
2458        NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
2459
2460        // Only prompt if the network is unvalidated and was explicitly selected by the user, and if
2461        // we haven't already been told to switch to it regardless of whether it validated or not.
2462        // Also don't prompt on captive portals because we're already prompting the user to sign in.
2463        if (nai == null || nai.everValidated || nai.everCaptivePortalDetected ||
2464                !nai.networkMisc.explicitlySelected || nai.networkMisc.acceptUnvalidated) {
2465            return;
2466        }
2467
2468        Intent intent = new Intent(ConnectivityManager.ACTION_PROMPT_UNVALIDATED);
2469        intent.setData(Uri.fromParts("netId", Integer.toString(network.netId), null));
2470        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2471        intent.setClassName("com.android.settings",
2472                "com.android.settings.wifi.WifiNoInternetDialog");
2473
2474        PendingIntent pendingIntent = PendingIntent.getActivityAsUser(
2475                mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT, null, UserHandle.CURRENT);
2476        setProvNotificationVisibleIntent(true, nai.network.netId, NotificationType.NO_INTERNET,
2477                nai.networkInfo.getType(), nai.networkInfo.getExtraInfo(), pendingIntent, true);
2478    }
2479
2480    private class InternalHandler extends Handler {
2481        public InternalHandler(Looper looper) {
2482            super(looper);
2483        }
2484
2485        @Override
2486        public void handleMessage(Message msg) {
2487            switch (msg.what) {
2488                case EVENT_EXPIRE_NET_TRANSITION_WAKELOCK:
2489                case EVENT_CLEAR_NET_TRANSITION_WAKELOCK: {
2490                    String causedBy = null;
2491                    synchronized (ConnectivityService.this) {
2492                        if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
2493                                mNetTransitionWakeLock.isHeld()) {
2494                            mNetTransitionWakeLock.release();
2495                            causedBy = mNetTransitionWakeLockCausedBy;
2496                        } else {
2497                            break;
2498                        }
2499                    }
2500                    if (msg.what == EVENT_EXPIRE_NET_TRANSITION_WAKELOCK) {
2501                        log("Failed to find a new network - expiring NetTransition Wakelock");
2502                    } else {
2503                        log("NetTransition Wakelock (" + (causedBy == null ? "unknown" : causedBy) +
2504                                " cleared because we found a replacement network");
2505                    }
2506                    break;
2507                }
2508                case EVENT_APPLY_GLOBAL_HTTP_PROXY: {
2509                    handleDeprecatedGlobalHttpProxy();
2510                    break;
2511                }
2512                case EVENT_SEND_STICKY_BROADCAST_INTENT: {
2513                    Intent intent = (Intent)msg.obj;
2514                    sendStickyBroadcast(intent);
2515                    break;
2516                }
2517                case EVENT_PROXY_HAS_CHANGED: {
2518                    handleApplyDefaultProxy((ProxyInfo)msg.obj);
2519                    break;
2520                }
2521                case EVENT_REGISTER_NETWORK_FACTORY: {
2522                    handleRegisterNetworkFactory((NetworkFactoryInfo)msg.obj);
2523                    break;
2524                }
2525                case EVENT_UNREGISTER_NETWORK_FACTORY: {
2526                    handleUnregisterNetworkFactory((Messenger)msg.obj);
2527                    break;
2528                }
2529                case EVENT_REGISTER_NETWORK_AGENT: {
2530                    handleRegisterNetworkAgent((NetworkAgentInfo)msg.obj);
2531                    break;
2532                }
2533                case EVENT_REGISTER_NETWORK_REQUEST:
2534                case EVENT_REGISTER_NETWORK_LISTENER: {
2535                    handleRegisterNetworkRequest((NetworkRequestInfo) msg.obj);
2536                    break;
2537                }
2538                case EVENT_REGISTER_NETWORK_REQUEST_WITH_INTENT:
2539                case EVENT_REGISTER_NETWORK_LISTENER_WITH_INTENT: {
2540                    handleRegisterNetworkRequestWithIntent(msg);
2541                    break;
2542                }
2543                case EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT: {
2544                    handleReleaseNetworkRequestWithIntent((PendingIntent) msg.obj, msg.arg1);
2545                    break;
2546                }
2547                case EVENT_RELEASE_NETWORK_REQUEST: {
2548                    handleReleaseNetworkRequest((NetworkRequest) msg.obj, msg.arg1);
2549                    break;
2550                }
2551                case EVENT_SET_ACCEPT_UNVALIDATED: {
2552                    handleSetAcceptUnvalidated((Network) msg.obj, msg.arg1 != 0, msg.arg2 != 0);
2553                    break;
2554                }
2555                case EVENT_PROMPT_UNVALIDATED: {
2556                    handlePromptUnvalidated((Network) msg.obj);
2557                    break;
2558                }
2559                case EVENT_CONFIGURE_MOBILE_DATA_ALWAYS_ON: {
2560                    handleMobileDataAlwaysOn();
2561                    break;
2562                }
2563                case EVENT_SYSTEM_READY: {
2564                    for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2565                        nai.networkMonitor.systemReady = true;
2566                    }
2567                    break;
2568                }
2569            }
2570        }
2571    }
2572
2573    // javadoc from interface
2574    public int tether(String iface) {
2575        ConnectivityManager.enforceTetherChangePermission(mContext);
2576        if (isTetheringSupported()) {
2577            return mTethering.tether(iface);
2578        } else {
2579            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2580        }
2581    }
2582
2583    // javadoc from interface
2584    public int untether(String iface) {
2585        ConnectivityManager.enforceTetherChangePermission(mContext);
2586
2587        if (isTetheringSupported()) {
2588            return mTethering.untether(iface);
2589        } else {
2590            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2591        }
2592    }
2593
2594    // javadoc from interface
2595    public int getLastTetherError(String iface) {
2596        enforceTetherAccessPermission();
2597
2598        if (isTetheringSupported()) {
2599            return mTethering.getLastTetherError(iface);
2600        } else {
2601            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2602        }
2603    }
2604
2605    // TODO - proper iface API for selection by property, inspection, etc
2606    public String[] getTetherableUsbRegexs() {
2607        enforceTetherAccessPermission();
2608        if (isTetheringSupported()) {
2609            return mTethering.getTetherableUsbRegexs();
2610        } else {
2611            return new String[0];
2612        }
2613    }
2614
2615    public String[] getTetherableWifiRegexs() {
2616        enforceTetherAccessPermission();
2617        if (isTetheringSupported()) {
2618            return mTethering.getTetherableWifiRegexs();
2619        } else {
2620            return new String[0];
2621        }
2622    }
2623
2624    public String[] getTetherableBluetoothRegexs() {
2625        enforceTetherAccessPermission();
2626        if (isTetheringSupported()) {
2627            return mTethering.getTetherableBluetoothRegexs();
2628        } else {
2629            return new String[0];
2630        }
2631    }
2632
2633    public int setUsbTethering(boolean enable) {
2634        ConnectivityManager.enforceTetherChangePermission(mContext);
2635        if (isTetheringSupported()) {
2636            return mTethering.setUsbTethering(enable);
2637        } else {
2638            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2639        }
2640    }
2641
2642    // TODO - move iface listing, queries, etc to new module
2643    // javadoc from interface
2644    public String[] getTetherableIfaces() {
2645        enforceTetherAccessPermission();
2646        return mTethering.getTetherableIfaces();
2647    }
2648
2649    public String[] getTetheredIfaces() {
2650        enforceTetherAccessPermission();
2651        return mTethering.getTetheredIfaces();
2652    }
2653
2654    public String[] getTetheringErroredIfaces() {
2655        enforceTetherAccessPermission();
2656        return mTethering.getErroredIfaces();
2657    }
2658
2659    public String[] getTetheredDhcpRanges() {
2660        enforceConnectivityInternalPermission();
2661        return mTethering.getTetheredDhcpRanges();
2662    }
2663
2664    // if ro.tether.denied = true we default to no tethering
2665    // gservices could set the secure setting to 1 though to enable it on a build where it
2666    // had previously been turned off.
2667    public boolean isTetheringSupported() {
2668        enforceTetherAccessPermission();
2669        int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
2670        boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
2671                Settings.Global.TETHER_SUPPORTED, defaultVal) != 0)
2672                && !mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_TETHERING);
2673        return tetherEnabledInSettings && ((mTethering.getTetherableUsbRegexs().length != 0 ||
2674                mTethering.getTetherableWifiRegexs().length != 0 ||
2675                mTethering.getTetherableBluetoothRegexs().length != 0) &&
2676                mTethering.getUpstreamIfaceTypes().length != 0);
2677    }
2678
2679    // Called when we lose the default network and have no replacement yet.
2680    // This will automatically be cleared after X seconds or a new default network
2681    // becomes CONNECTED, whichever happens first.  The timer is started by the
2682    // first caller and not restarted by subsequent callers.
2683    private void requestNetworkTransitionWakelock(String forWhom) {
2684        int serialNum = 0;
2685        synchronized (this) {
2686            if (mNetTransitionWakeLock.isHeld()) return;
2687            serialNum = ++mNetTransitionWakeLockSerialNumber;
2688            mNetTransitionWakeLock.acquire();
2689            mNetTransitionWakeLockCausedBy = forWhom;
2690        }
2691        mHandler.sendMessageDelayed(mHandler.obtainMessage(
2692                EVENT_EXPIRE_NET_TRANSITION_WAKELOCK, serialNum, 0),
2693                mNetTransitionWakeLockTimeout);
2694        return;
2695    }
2696
2697    // 100 percent is full good, 0 is full bad.
2698    public void reportInetCondition(int networkType, int percentage) {
2699        NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType);
2700        if (nai == null) return;
2701        reportNetworkConnectivity(nai.network, percentage > 50);
2702    }
2703
2704    public void reportNetworkConnectivity(Network network, boolean hasConnectivity) {
2705        enforceAccessPermission();
2706        enforceInternetPermission();
2707
2708        NetworkAgentInfo nai;
2709        if (network == null) {
2710            nai = getDefaultNetwork();
2711        } else {
2712            nai = getNetworkAgentInfoForNetwork(network);
2713        }
2714        if (nai == null) return;
2715        // Revalidate if the app report does not match our current validated state.
2716        if (hasConnectivity == nai.lastValidated) return;
2717        final int uid = Binder.getCallingUid();
2718        if (DBG) {
2719            log("reportNetworkConnectivity(" + nai.network.netId + ", " + hasConnectivity +
2720                    ") by " + uid);
2721        }
2722        synchronized (nai) {
2723            // Validating an uncreated network could result in a call to rematchNetworkAndRequests()
2724            // which isn't meant to work on uncreated networks.
2725            if (!nai.created) return;
2726
2727            if (isNetworkWithLinkPropertiesBlocked(nai.linkProperties, uid)) return;
2728
2729            nai.networkMonitor.sendMessage(NetworkMonitor.CMD_FORCE_REEVALUATION, uid);
2730        }
2731    }
2732
2733    public void captivePortalAppResponse(Network network, int response, String actionToken) {
2734        if (response == ConnectivityManager.CAPTIVE_PORTAL_APP_RETURN_WANTED_AS_IS) {
2735            enforceConnectivityInternalPermission();
2736        }
2737        final NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
2738        if (nai == null) return;
2739        nai.networkMonitor.sendMessage(NetworkMonitor.CMD_CAPTIVE_PORTAL_APP_FINISHED, response, 0,
2740                actionToken);
2741    }
2742
2743    private ProxyInfo getDefaultProxy() {
2744        // this information is already available as a world read/writable jvm property
2745        // so this API change wouldn't have a benifit.  It also breaks the passing
2746        // of proxy info to all the JVMs.
2747        // enforceAccessPermission();
2748        synchronized (mProxyLock) {
2749            ProxyInfo ret = mGlobalProxy;
2750            if ((ret == null) && !mDefaultProxyDisabled) ret = mDefaultProxy;
2751            return ret;
2752        }
2753    }
2754
2755    public ProxyInfo getProxyForNetwork(Network network) {
2756        if (network == null) return getDefaultProxy();
2757        final ProxyInfo globalProxy = getGlobalProxy();
2758        if (globalProxy != null) return globalProxy;
2759        if (!NetworkUtils.queryUserAccess(Binder.getCallingUid(), network.netId)) return null;
2760        // Don't call getLinkProperties() as it requires ACCESS_NETWORK_STATE permission, which
2761        // caller may not have.
2762        final NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
2763        if (nai == null) return null;
2764        synchronized (nai) {
2765            final ProxyInfo proxyInfo = nai.linkProperties.getHttpProxy();
2766            if (proxyInfo == null) return null;
2767            return new ProxyInfo(proxyInfo);
2768        }
2769    }
2770
2771    // Convert empty ProxyInfo's to null as null-checks are used to determine if proxies are present
2772    // (e.g. if mGlobalProxy==null fall back to network-specific proxy, if network-specific
2773    // proxy is null then there is no proxy in place).
2774    private ProxyInfo canonicalizeProxyInfo(ProxyInfo proxy) {
2775        if (proxy != null && TextUtils.isEmpty(proxy.getHost())
2776                && (proxy.getPacFileUrl() == null || Uri.EMPTY.equals(proxy.getPacFileUrl()))) {
2777            proxy = null;
2778        }
2779        return proxy;
2780    }
2781
2782    // ProxyInfo equality function with a couple modifications over ProxyInfo.equals() to make it
2783    // better for determining if a new proxy broadcast is necessary:
2784    // 1. Canonicalize empty ProxyInfos to null so an empty proxy compares equal to null so as to
2785    //    avoid unnecessary broadcasts.
2786    // 2. Make sure all parts of the ProxyInfo's compare true, including the host when a PAC URL
2787    //    is in place.  This is important so legacy PAC resolver (see com.android.proxyhandler)
2788    //    changes aren't missed.  The legacy PAC resolver pretends to be a simple HTTP proxy but
2789    //    actually uses the PAC to resolve; this results in ProxyInfo's with PAC URL, host and port
2790    //    all set.
2791    private boolean proxyInfoEqual(ProxyInfo a, ProxyInfo b) {
2792        a = canonicalizeProxyInfo(a);
2793        b = canonicalizeProxyInfo(b);
2794        // ProxyInfo.equals() doesn't check hosts when PAC URLs are present, but we need to check
2795        // hosts even when PAC URLs are present to account for the legacy PAC resolver.
2796        return Objects.equals(a, b) && (a == null || Objects.equals(a.getHost(), b.getHost()));
2797    }
2798
2799    public void setGlobalProxy(ProxyInfo proxyProperties) {
2800        enforceConnectivityInternalPermission();
2801
2802        synchronized (mProxyLock) {
2803            if (proxyProperties == mGlobalProxy) return;
2804            if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
2805            if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
2806
2807            String host = "";
2808            int port = 0;
2809            String exclList = "";
2810            String pacFileUrl = "";
2811            if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
2812                    !Uri.EMPTY.equals(proxyProperties.getPacFileUrl()))) {
2813                if (!proxyProperties.isValid()) {
2814                    if (DBG)
2815                        log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
2816                    return;
2817                }
2818                mGlobalProxy = new ProxyInfo(proxyProperties);
2819                host = mGlobalProxy.getHost();
2820                port = mGlobalProxy.getPort();
2821                exclList = mGlobalProxy.getExclusionListAsString();
2822                if (!Uri.EMPTY.equals(proxyProperties.getPacFileUrl())) {
2823                    pacFileUrl = proxyProperties.getPacFileUrl().toString();
2824                }
2825            } else {
2826                mGlobalProxy = null;
2827            }
2828            ContentResolver res = mContext.getContentResolver();
2829            final long token = Binder.clearCallingIdentity();
2830            try {
2831                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST, host);
2832                Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
2833                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
2834                        exclList);
2835                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
2836            } finally {
2837                Binder.restoreCallingIdentity(token);
2838            }
2839
2840            if (mGlobalProxy == null) {
2841                proxyProperties = mDefaultProxy;
2842            }
2843            sendProxyBroadcast(proxyProperties);
2844        }
2845    }
2846
2847    private void loadGlobalProxy() {
2848        ContentResolver res = mContext.getContentResolver();
2849        String host = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST);
2850        int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
2851        String exclList = Settings.Global.getString(res,
2852                Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
2853        String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
2854        if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
2855            ProxyInfo proxyProperties;
2856            if (!TextUtils.isEmpty(pacFileUrl)) {
2857                proxyProperties = new ProxyInfo(pacFileUrl);
2858            } else {
2859                proxyProperties = new ProxyInfo(host, port, exclList);
2860            }
2861            if (!proxyProperties.isValid()) {
2862                if (DBG) log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
2863                return;
2864            }
2865
2866            synchronized (mProxyLock) {
2867                mGlobalProxy = proxyProperties;
2868            }
2869        }
2870    }
2871
2872    public ProxyInfo getGlobalProxy() {
2873        // this information is already available as a world read/writable jvm property
2874        // so this API change wouldn't have a benifit.  It also breaks the passing
2875        // of proxy info to all the JVMs.
2876        // enforceAccessPermission();
2877        synchronized (mProxyLock) {
2878            return mGlobalProxy;
2879        }
2880    }
2881
2882    private void handleApplyDefaultProxy(ProxyInfo proxy) {
2883        if (proxy != null && TextUtils.isEmpty(proxy.getHost())
2884                && Uri.EMPTY.equals(proxy.getPacFileUrl())) {
2885            proxy = null;
2886        }
2887        synchronized (mProxyLock) {
2888            if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
2889            if (mDefaultProxy == proxy) return; // catches repeated nulls
2890            if (proxy != null &&  !proxy.isValid()) {
2891                if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
2892                return;
2893            }
2894
2895            // This call could be coming from the PacManager, containing the port of the local
2896            // proxy.  If this new proxy matches the global proxy then copy this proxy to the
2897            // global (to get the correct local port), and send a broadcast.
2898            // TODO: Switch PacManager to have its own message to send back rather than
2899            // reusing EVENT_HAS_CHANGED_PROXY and this call to handleApplyDefaultProxy.
2900            if ((mGlobalProxy != null) && (proxy != null)
2901                    && (!Uri.EMPTY.equals(proxy.getPacFileUrl()))
2902                    && proxy.getPacFileUrl().equals(mGlobalProxy.getPacFileUrl())) {
2903                mGlobalProxy = proxy;
2904                sendProxyBroadcast(mGlobalProxy);
2905                return;
2906            }
2907            mDefaultProxy = proxy;
2908
2909            if (mGlobalProxy != null) return;
2910            if (!mDefaultProxyDisabled) {
2911                sendProxyBroadcast(proxy);
2912            }
2913        }
2914    }
2915
2916    // If the proxy has changed from oldLp to newLp, resend proxy broadcast with default proxy.
2917    // This method gets called when any network changes proxy, but the broadcast only ever contains
2918    // the default proxy (even if it hasn't changed).
2919    // TODO: Deprecate the broadcast extras as they aren't necessarily applicable in a multi-network
2920    // world where an app might be bound to a non-default network.
2921    private void updateProxy(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) {
2922        ProxyInfo newProxyInfo = newLp == null ? null : newLp.getHttpProxy();
2923        ProxyInfo oldProxyInfo = oldLp == null ? null : oldLp.getHttpProxy();
2924
2925        if (!proxyInfoEqual(newProxyInfo, oldProxyInfo)) {
2926            sendProxyBroadcast(getDefaultProxy());
2927        }
2928    }
2929
2930    private void handleDeprecatedGlobalHttpProxy() {
2931        String proxy = Settings.Global.getString(mContext.getContentResolver(),
2932                Settings.Global.HTTP_PROXY);
2933        if (!TextUtils.isEmpty(proxy)) {
2934            String data[] = proxy.split(":");
2935            if (data.length == 0) {
2936                return;
2937            }
2938
2939            String proxyHost =  data[0];
2940            int proxyPort = 8080;
2941            if (data.length > 1) {
2942                try {
2943                    proxyPort = Integer.parseInt(data[1]);
2944                } catch (NumberFormatException e) {
2945                    return;
2946                }
2947            }
2948            ProxyInfo p = new ProxyInfo(data[0], proxyPort, "");
2949            setGlobalProxy(p);
2950        }
2951    }
2952
2953    private void sendProxyBroadcast(ProxyInfo proxy) {
2954        if (proxy == null) proxy = new ProxyInfo("", 0, "");
2955        if (mPacManager.setCurrentProxyScriptUrl(proxy)) return;
2956        if (DBG) log("sending Proxy Broadcast for " + proxy);
2957        Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
2958        intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
2959            Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
2960        intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
2961        final long ident = Binder.clearCallingIdentity();
2962        try {
2963            mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
2964        } finally {
2965            Binder.restoreCallingIdentity(ident);
2966        }
2967    }
2968
2969    private static class SettingsObserver extends ContentObserver {
2970        final private HashMap<Uri, Integer> mUriEventMap;
2971        final private Context mContext;
2972        final private Handler mHandler;
2973
2974        SettingsObserver(Context context, Handler handler) {
2975            super(null);
2976            mUriEventMap = new HashMap<Uri, Integer>();
2977            mContext = context;
2978            mHandler = handler;
2979        }
2980
2981        void observe(Uri uri, int what) {
2982            mUriEventMap.put(uri, what);
2983            final ContentResolver resolver = mContext.getContentResolver();
2984            resolver.registerContentObserver(uri, false, this);
2985        }
2986
2987        @Override
2988        public void onChange(boolean selfChange) {
2989            Slog.wtf(TAG, "Should never be reached.");
2990        }
2991
2992        @Override
2993        public void onChange(boolean selfChange, Uri uri) {
2994            final Integer what = mUriEventMap.get(uri);
2995            if (what != null) {
2996                mHandler.obtainMessage(what.intValue()).sendToTarget();
2997            } else {
2998                loge("No matching event to send for URI=" + uri);
2999            }
3000        }
3001    }
3002
3003    private static void log(String s) {
3004        Slog.d(TAG, s);
3005    }
3006
3007    private static void loge(String s) {
3008        Slog.e(TAG, s);
3009    }
3010
3011    private static <T> T checkNotNull(T value, String message) {
3012        if (value == null) {
3013            throw new NullPointerException(message);
3014        }
3015        return value;
3016    }
3017
3018    /**
3019     * Prepare for a VPN application.
3020     * VPN permissions are checked in the {@link Vpn} class. If the caller is not {@code userId},
3021     * {@link android.Manifest.permission.INTERACT_ACROSS_USERS_FULL} permission is required.
3022     *
3023     * @param oldPackage Package name of the application which currently controls VPN, which will
3024     *                   be replaced. If there is no such application, this should should either be
3025     *                   {@code null} or {@link VpnConfig.LEGACY_VPN}.
3026     * @param newPackage Package name of the application which should gain control of VPN, or
3027     *                   {@code null} to disable.
3028     * @param userId User for whom to prepare the new VPN.
3029     *
3030     * @hide
3031     */
3032    @Override
3033    public boolean prepareVpn(@Nullable String oldPackage, @Nullable String newPackage,
3034            int userId) {
3035        enforceCrossUserPermission(userId);
3036        throwIfLockdownEnabled();
3037
3038        synchronized(mVpns) {
3039            Vpn vpn = mVpns.get(userId);
3040            if (vpn != null) {
3041                return vpn.prepare(oldPackage, newPackage);
3042            } else {
3043                return false;
3044            }
3045        }
3046    }
3047
3048    /**
3049     * Set whether the VPN package has the ability to launch VPNs without user intervention.
3050     * This method is used by system-privileged apps.
3051     * VPN permissions are checked in the {@link Vpn} class. If the caller is not {@code userId},
3052     * {@link android.Manifest.permission.INTERACT_ACROSS_USERS_FULL} permission is required.
3053     *
3054     * @param packageName The package for which authorization state should change.
3055     * @param userId User for whom {@code packageName} is installed.
3056     * @param authorized {@code true} if this app should be able to start a VPN connection without
3057     *                   explicit user approval, {@code false} if not.
3058     *
3059     * @hide
3060     */
3061    @Override
3062    public void setVpnPackageAuthorization(String packageName, int userId, boolean authorized) {
3063        enforceCrossUserPermission(userId);
3064
3065        synchronized(mVpns) {
3066            Vpn vpn = mVpns.get(userId);
3067            if (vpn != null) {
3068                vpn.setPackageAuthorization(packageName, authorized);
3069            }
3070        }
3071    }
3072
3073    /**
3074     * Configure a TUN interface and return its file descriptor. Parameters
3075     * are encoded and opaque to this class. This method is used by VpnBuilder
3076     * and not available in ConnectivityManager. Permissions are checked in
3077     * Vpn class.
3078     * @hide
3079     */
3080    @Override
3081    public ParcelFileDescriptor establishVpn(VpnConfig config) {
3082        throwIfLockdownEnabled();
3083        int user = UserHandle.getUserId(Binder.getCallingUid());
3084        synchronized(mVpns) {
3085            return mVpns.get(user).establish(config);
3086        }
3087    }
3088
3089    /**
3090     * Start legacy VPN, controlling native daemons as needed. Creates a
3091     * secondary thread to perform connection work, returning quickly.
3092     */
3093    @Override
3094    public void startLegacyVpn(VpnProfile profile) {
3095        throwIfLockdownEnabled();
3096        final LinkProperties egress = getActiveLinkProperties();
3097        if (egress == null) {
3098            throw new IllegalStateException("Missing active network connection");
3099        }
3100        int user = UserHandle.getUserId(Binder.getCallingUid());
3101        synchronized(mVpns) {
3102            mVpns.get(user).startLegacyVpn(profile, mKeyStore, egress);
3103        }
3104    }
3105
3106    /**
3107     * Return the information of the ongoing legacy VPN. This method is used
3108     * by VpnSettings and not available in ConnectivityManager. Permissions
3109     * are checked in Vpn class.
3110     */
3111    @Override
3112    public LegacyVpnInfo getLegacyVpnInfo() {
3113        throwIfLockdownEnabled();
3114        int user = UserHandle.getUserId(Binder.getCallingUid());
3115        synchronized(mVpns) {
3116            return mVpns.get(user).getLegacyVpnInfo();
3117        }
3118    }
3119
3120    /**
3121     * Return the information of all ongoing VPNs. This method is used by NetworkStatsService
3122     * and not available in ConnectivityManager.
3123     */
3124    @Override
3125    public VpnInfo[] getAllVpnInfo() {
3126        enforceConnectivityInternalPermission();
3127        if (mLockdownEnabled) {
3128            return new VpnInfo[0];
3129        }
3130
3131        synchronized(mVpns) {
3132            List<VpnInfo> infoList = new ArrayList<>();
3133            for (int i = 0; i < mVpns.size(); i++) {
3134                VpnInfo info = createVpnInfo(mVpns.valueAt(i));
3135                if (info != null) {
3136                    infoList.add(info);
3137                }
3138            }
3139            return infoList.toArray(new VpnInfo[infoList.size()]);
3140        }
3141    }
3142
3143    /**
3144     * @return VPN information for accounting, or null if we can't retrieve all required
3145     *         information, e.g primary underlying iface.
3146     */
3147    @Nullable
3148    private VpnInfo createVpnInfo(Vpn vpn) {
3149        VpnInfo info = vpn.getVpnInfo();
3150        if (info == null) {
3151            return null;
3152        }
3153        Network[] underlyingNetworks = vpn.getUnderlyingNetworks();
3154        // see VpnService.setUnderlyingNetworks()'s javadoc about how to interpret
3155        // the underlyingNetworks list.
3156        if (underlyingNetworks == null) {
3157            NetworkAgentInfo defaultNetwork = getDefaultNetwork();
3158            if (defaultNetwork != null && defaultNetwork.linkProperties != null) {
3159                info.primaryUnderlyingIface = getDefaultNetwork().linkProperties.getInterfaceName();
3160            }
3161        } else if (underlyingNetworks.length > 0) {
3162            LinkProperties linkProperties = getLinkProperties(underlyingNetworks[0]);
3163            if (linkProperties != null) {
3164                info.primaryUnderlyingIface = linkProperties.getInterfaceName();
3165            }
3166        }
3167        return info.primaryUnderlyingIface == null ? null : info;
3168    }
3169
3170    /**
3171     * Returns the information of the ongoing VPN for {@code userId}. This method is used by
3172     * VpnDialogs and not available in ConnectivityManager.
3173     * Permissions are checked in Vpn class.
3174     * @hide
3175     */
3176    @Override
3177    public VpnConfig getVpnConfig(int userId) {
3178        enforceCrossUserPermission(userId);
3179        synchronized(mVpns) {
3180            Vpn vpn = mVpns.get(userId);
3181            if (vpn != null) {
3182                return vpn.getVpnConfig();
3183            } else {
3184                return null;
3185            }
3186        }
3187    }
3188
3189    @Override
3190    public boolean updateLockdownVpn() {
3191        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
3192            Slog.w(TAG, "Lockdown VPN only available to AID_SYSTEM");
3193            return false;
3194        }
3195
3196        // Tear down existing lockdown if profile was removed
3197        mLockdownEnabled = LockdownVpnTracker.isEnabled();
3198        if (mLockdownEnabled) {
3199            if (!mKeyStore.isUnlocked()) {
3200                Slog.w(TAG, "KeyStore locked; unable to create LockdownTracker");
3201                return false;
3202            }
3203
3204            final String profileName = new String(mKeyStore.get(Credentials.LOCKDOWN_VPN));
3205            final VpnProfile profile = VpnProfile.decode(
3206                    profileName, mKeyStore.get(Credentials.VPN + profileName));
3207            int user = UserHandle.getUserId(Binder.getCallingUid());
3208            synchronized(mVpns) {
3209                setLockdownTracker(new LockdownVpnTracker(mContext, mNetd, this, mVpns.get(user),
3210                            profile));
3211            }
3212        } else {
3213            setLockdownTracker(null);
3214        }
3215
3216        return true;
3217    }
3218
3219    /**
3220     * Internally set new {@link LockdownVpnTracker}, shutting down any existing
3221     * {@link LockdownVpnTracker}. Can be {@code null} to disable lockdown.
3222     */
3223    private void setLockdownTracker(LockdownVpnTracker tracker) {
3224        // Shutdown any existing tracker
3225        final LockdownVpnTracker existing = mLockdownTracker;
3226        mLockdownTracker = null;
3227        if (existing != null) {
3228            existing.shutdown();
3229        }
3230
3231        try {
3232            if (tracker != null) {
3233                mNetd.setFirewallEnabled(true);
3234                mNetd.setFirewallInterfaceRule("lo", true);
3235                mLockdownTracker = tracker;
3236                mLockdownTracker.init();
3237            } else {
3238                mNetd.setFirewallEnabled(false);
3239            }
3240        } catch (RemoteException e) {
3241            // ignored; NMS lives inside system_server
3242        }
3243    }
3244
3245    private void throwIfLockdownEnabled() {
3246        if (mLockdownEnabled) {
3247            throw new IllegalStateException("Unavailable in lockdown mode");
3248        }
3249    }
3250
3251    @Override
3252    public int checkMobileProvisioning(int suggestedTimeOutMs) {
3253        // TODO: Remove?  Any reason to trigger a provisioning check?
3254        return -1;
3255    }
3256
3257    private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
3258    private static enum NotificationType { SIGN_IN, NO_INTERNET; };
3259
3260    private void setProvNotificationVisible(boolean visible, int networkType, String action) {
3261        if (DBG) {
3262            log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
3263                + " action=" + action);
3264        }
3265        Intent intent = new Intent(action);
3266        PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
3267        // Concatenate the range of types onto the range of NetIDs.
3268        int id = MAX_NET_ID + 1 + (networkType - ConnectivityManager.TYPE_NONE);
3269        setProvNotificationVisibleIntent(visible, id, NotificationType.SIGN_IN,
3270                networkType, null, pendingIntent, false);
3271    }
3272
3273    /**
3274     * Show or hide network provisioning notifications.
3275     *
3276     * We use notifications for two purposes: to notify that a network requires sign in
3277     * (NotificationType.SIGN_IN), or to notify that a network does not have Internet access
3278     * (NotificationType.NO_INTERNET). We display at most one notification per ID, so on a
3279     * particular network we can display the notification type that was most recently requested.
3280     * So for example if a captive portal fails to reply within a few seconds of connecting, we
3281     * might first display NO_INTERNET, and then when the captive portal check completes, display
3282     * SIGN_IN.
3283     *
3284     * @param id an identifier that uniquely identifies this notification.  This must match
3285     *         between show and hide calls.  We use the NetID value but for legacy callers
3286     *         we concatenate the range of types with the range of NetIDs.
3287     */
3288    private void setProvNotificationVisibleIntent(boolean visible, int id,
3289            NotificationType notifyType, int networkType, String extraInfo, PendingIntent intent,
3290            boolean highPriority) {
3291        if (DBG) {
3292            log("setProvNotificationVisibleIntent " + notifyType + " visible=" + visible
3293                    + " networkType=" + getNetworkTypeName(networkType)
3294                    + " extraInfo=" + extraInfo + " highPriority=" + highPriority);
3295        }
3296
3297        Resources r = Resources.getSystem();
3298        NotificationManager notificationManager = (NotificationManager) mContext
3299            .getSystemService(Context.NOTIFICATION_SERVICE);
3300
3301        if (visible) {
3302            CharSequence title;
3303            CharSequence details;
3304            int icon;
3305            if (notifyType == NotificationType.NO_INTERNET &&
3306                    networkType == ConnectivityManager.TYPE_WIFI) {
3307                title = r.getString(R.string.wifi_no_internet, 0);
3308                details = r.getString(R.string.wifi_no_internet_detailed);
3309                icon = R.drawable.stat_notify_wifi_in_range;  // TODO: Need new icon.
3310            } else if (notifyType == NotificationType.SIGN_IN) {
3311                switch (networkType) {
3312                    case ConnectivityManager.TYPE_WIFI:
3313                        title = r.getString(R.string.wifi_available_sign_in, 0);
3314                        details = r.getString(R.string.network_available_sign_in_detailed,
3315                                extraInfo);
3316                        icon = R.drawable.stat_notify_wifi_in_range;
3317                        break;
3318                    case ConnectivityManager.TYPE_MOBILE:
3319                    case ConnectivityManager.TYPE_MOBILE_HIPRI:
3320                        title = r.getString(R.string.network_available_sign_in, 0);
3321                        // TODO: Change this to pull from NetworkInfo once a printable
3322                        // name has been added to it
3323                        details = mTelephonyManager.getNetworkOperatorName();
3324                        icon = R.drawable.stat_notify_rssi_in_range;
3325                        break;
3326                    default:
3327                        title = r.getString(R.string.network_available_sign_in, 0);
3328                        details = r.getString(R.string.network_available_sign_in_detailed,
3329                                extraInfo);
3330                        icon = R.drawable.stat_notify_rssi_in_range;
3331                        break;
3332                }
3333            } else {
3334                Slog.wtf(TAG, "Unknown notification type " + notifyType + "on network type "
3335                        + getNetworkTypeName(networkType));
3336                return;
3337            }
3338
3339            Notification notification = new Notification.Builder(mContext)
3340                    .setWhen(0)
3341                    .setSmallIcon(icon)
3342                    .setAutoCancel(true)
3343                    .setTicker(title)
3344                    .setColor(mContext.getColor(
3345                            com.android.internal.R.color.system_notification_accent_color))
3346                    .setContentTitle(title)
3347                    .setContentText(details)
3348                    .setContentIntent(intent)
3349                    .setLocalOnly(true)
3350                    .setPriority(highPriority ?
3351                            Notification.PRIORITY_HIGH :
3352                            Notification.PRIORITY_DEFAULT)
3353                    .setDefaults(Notification.DEFAULT_ALL)
3354                    .setOnlyAlertOnce(true)
3355                    .build();
3356
3357            try {
3358                notificationManager.notify(NOTIFICATION_ID, id, notification);
3359            } catch (NullPointerException npe) {
3360                loge("setNotificationVisible: visible notificationManager npe=" + npe);
3361                npe.printStackTrace();
3362            }
3363        } else {
3364            try {
3365                notificationManager.cancel(NOTIFICATION_ID, id);
3366            } catch (NullPointerException npe) {
3367                loge("setNotificationVisible: cancel notificationManager npe=" + npe);
3368                npe.printStackTrace();
3369            }
3370        }
3371    }
3372
3373    /** Location to an updatable file listing carrier provisioning urls.
3374     *  An example:
3375     *
3376     * <?xml version="1.0" encoding="utf-8"?>
3377     *  <provisioningUrls>
3378     *   <provisioningUrl mcc="310" mnc="4">http://myserver.com/foo?mdn=%3$s&iccid=%1$s&imei=%2$s</provisioningUrl>
3379     *  </provisioningUrls>
3380     */
3381    private static final String PROVISIONING_URL_PATH =
3382            "/data/misc/radio/provisioning_urls.xml";
3383    private final File mProvisioningUrlFile = new File(PROVISIONING_URL_PATH);
3384
3385    /** XML tag for root element. */
3386    private static final String TAG_PROVISIONING_URLS = "provisioningUrls";
3387    /** XML tag for individual url */
3388    private static final String TAG_PROVISIONING_URL = "provisioningUrl";
3389    /** XML attribute for mcc */
3390    private static final String ATTR_MCC = "mcc";
3391    /** XML attribute for mnc */
3392    private static final String ATTR_MNC = "mnc";
3393
3394    private String getProvisioningUrlBaseFromFile() {
3395        FileReader fileReader = null;
3396        XmlPullParser parser = null;
3397        Configuration config = mContext.getResources().getConfiguration();
3398
3399        try {
3400            fileReader = new FileReader(mProvisioningUrlFile);
3401            parser = Xml.newPullParser();
3402            parser.setInput(fileReader);
3403            XmlUtils.beginDocument(parser, TAG_PROVISIONING_URLS);
3404
3405            while (true) {
3406                XmlUtils.nextElement(parser);
3407
3408                String element = parser.getName();
3409                if (element == null) break;
3410
3411                if (element.equals(TAG_PROVISIONING_URL)) {
3412                    String mcc = parser.getAttributeValue(null, ATTR_MCC);
3413                    try {
3414                        if (mcc != null && Integer.parseInt(mcc) == config.mcc) {
3415                            String mnc = parser.getAttributeValue(null, ATTR_MNC);
3416                            if (mnc != null && Integer.parseInt(mnc) == config.mnc) {
3417                                parser.next();
3418                                if (parser.getEventType() == XmlPullParser.TEXT) {
3419                                    return parser.getText();
3420                                }
3421                            }
3422                        }
3423                    } catch (NumberFormatException e) {
3424                        loge("NumberFormatException in getProvisioningUrlBaseFromFile: " + e);
3425                    }
3426                }
3427            }
3428            return null;
3429        } catch (FileNotFoundException e) {
3430            loge("Carrier Provisioning Urls file not found");
3431        } catch (XmlPullParserException e) {
3432            loge("Xml parser exception reading Carrier Provisioning Urls file: " + e);
3433        } catch (IOException e) {
3434            loge("I/O exception reading Carrier Provisioning Urls file: " + e);
3435        } finally {
3436            if (fileReader != null) {
3437                try {
3438                    fileReader.close();
3439                } catch (IOException e) {}
3440            }
3441        }
3442        return null;
3443    }
3444
3445    @Override
3446    public String getMobileProvisioningUrl() {
3447        enforceConnectivityInternalPermission();
3448        String url = getProvisioningUrlBaseFromFile();
3449        if (TextUtils.isEmpty(url)) {
3450            url = mContext.getResources().getString(R.string.mobile_provisioning_url);
3451            log("getMobileProvisioningUrl: mobile_provisioining_url from resource =" + url);
3452        } else {
3453            log("getMobileProvisioningUrl: mobile_provisioning_url from File =" + url);
3454        }
3455        // populate the iccid, imei and phone number in the provisioning url.
3456        if (!TextUtils.isEmpty(url)) {
3457            String phoneNumber = mTelephonyManager.getLine1Number();
3458            if (TextUtils.isEmpty(phoneNumber)) {
3459                phoneNumber = "0000000000";
3460            }
3461            url = String.format(url,
3462                    mTelephonyManager.getSimSerialNumber() /* ICCID */,
3463                    mTelephonyManager.getDeviceId() /* IMEI */,
3464                    phoneNumber /* Phone numer */);
3465        }
3466
3467        return url;
3468    }
3469
3470    @Override
3471    public void setProvisioningNotificationVisible(boolean visible, int networkType,
3472            String action) {
3473        enforceConnectivityInternalPermission();
3474        final long ident = Binder.clearCallingIdentity();
3475        try {
3476            setProvNotificationVisible(visible, networkType, action);
3477        } finally {
3478            Binder.restoreCallingIdentity(ident);
3479        }
3480    }
3481
3482    @Override
3483    public void setAirplaneMode(boolean enable) {
3484        enforceConnectivityInternalPermission();
3485        final long ident = Binder.clearCallingIdentity();
3486        try {
3487            final ContentResolver cr = mContext.getContentResolver();
3488            Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
3489            Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
3490            intent.putExtra("state", enable);
3491            mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
3492        } finally {
3493            Binder.restoreCallingIdentity(ident);
3494        }
3495    }
3496
3497    private void onUserStart(int userId) {
3498        synchronized(mVpns) {
3499            Vpn userVpn = mVpns.get(userId);
3500            if (userVpn != null) {
3501                loge("Starting user already has a VPN");
3502                return;
3503            }
3504            userVpn = new Vpn(mHandler.getLooper(), mContext, mNetd, userId);
3505            mVpns.put(userId, userVpn);
3506        }
3507    }
3508
3509    private void onUserStop(int userId) {
3510        synchronized(mVpns) {
3511            Vpn userVpn = mVpns.get(userId);
3512            if (userVpn == null) {
3513                loge("Stopping user has no VPN");
3514                return;
3515            }
3516            mVpns.delete(userId);
3517        }
3518    }
3519
3520    private BroadcastReceiver mUserIntentReceiver = new BroadcastReceiver() {
3521        @Override
3522        public void onReceive(Context context, Intent intent) {
3523            final String action = intent.getAction();
3524            final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
3525            if (userId == UserHandle.USER_NULL) return;
3526
3527            if (Intent.ACTION_USER_STARTING.equals(action)) {
3528                onUserStart(userId);
3529            } else if (Intent.ACTION_USER_STOPPING.equals(action)) {
3530                onUserStop(userId);
3531            }
3532        }
3533    };
3534
3535    private final HashMap<Messenger, NetworkFactoryInfo> mNetworkFactoryInfos =
3536            new HashMap<Messenger, NetworkFactoryInfo>();
3537    private final HashMap<NetworkRequest, NetworkRequestInfo> mNetworkRequests =
3538            new HashMap<NetworkRequest, NetworkRequestInfo>();
3539
3540    private static class NetworkFactoryInfo {
3541        public final String name;
3542        public final Messenger messenger;
3543        public final AsyncChannel asyncChannel;
3544
3545        public NetworkFactoryInfo(String name, Messenger messenger, AsyncChannel asyncChannel) {
3546            this.name = name;
3547            this.messenger = messenger;
3548            this.asyncChannel = asyncChannel;
3549        }
3550    }
3551
3552    /**
3553     * Tracks info about the requester.
3554     * Also used to notice when the calling process dies so we can self-expire
3555     */
3556    private class NetworkRequestInfo implements IBinder.DeathRecipient {
3557        static final boolean REQUEST = true;
3558        static final boolean LISTEN = false;
3559
3560        final NetworkRequest request;
3561        final PendingIntent mPendingIntent;
3562        boolean mPendingIntentSent;
3563        private final IBinder mBinder;
3564        final int mPid;
3565        final int mUid;
3566        final Messenger messenger;
3567        final boolean isRequest;
3568
3569        NetworkRequestInfo(NetworkRequest r, PendingIntent pi, boolean isRequest) {
3570            request = r;
3571            mPendingIntent = pi;
3572            messenger = null;
3573            mBinder = null;
3574            mPid = getCallingPid();
3575            mUid = getCallingUid();
3576            this.isRequest = isRequest;
3577        }
3578
3579        NetworkRequestInfo(Messenger m, NetworkRequest r, IBinder binder, boolean isRequest) {
3580            super();
3581            messenger = m;
3582            request = r;
3583            mBinder = binder;
3584            mPid = getCallingPid();
3585            mUid = getCallingUid();
3586            this.isRequest = isRequest;
3587            mPendingIntent = null;
3588
3589            try {
3590                mBinder.linkToDeath(this, 0);
3591            } catch (RemoteException e) {
3592                binderDied();
3593            }
3594        }
3595
3596        void unlinkDeathRecipient() {
3597            if (mBinder != null) {
3598                mBinder.unlinkToDeath(this, 0);
3599            }
3600        }
3601
3602        public void binderDied() {
3603            log("ConnectivityService NetworkRequestInfo binderDied(" +
3604                    request + ", " + mBinder + ")");
3605            releaseNetworkRequest(request);
3606        }
3607
3608        public String toString() {
3609            return (isRequest ? "Request" : "Listen") + " from uid/pid:" + mUid + "/" +
3610                    mPid + " for " + request +
3611                    (mPendingIntent == null ? "" : " to trigger " + mPendingIntent);
3612        }
3613    }
3614
3615    private void ensureImmutableCapabilities(NetworkCapabilities networkCapabilities) {
3616        if (networkCapabilities.hasCapability(NET_CAPABILITY_VALIDATED)) {
3617            throw new IllegalArgumentException(
3618                    "Cannot request network with NET_CAPABILITY_VALIDATED");
3619        }
3620        if (networkCapabilities.hasCapability(NET_CAPABILITY_CAPTIVE_PORTAL)) {
3621            throw new IllegalArgumentException(
3622                    "Cannot request network with NET_CAPABILITY_CAPTIVE_PORTAL");
3623        }
3624    }
3625
3626    @Override
3627    public NetworkRequest requestNetwork(NetworkCapabilities networkCapabilities,
3628            Messenger messenger, int timeoutMs, IBinder binder, int legacyType) {
3629        networkCapabilities = new NetworkCapabilities(networkCapabilities);
3630        enforceNetworkRequestPermissions(networkCapabilities);
3631        enforceMeteredApnPolicy(networkCapabilities);
3632        ensureImmutableCapabilities(networkCapabilities);
3633
3634        if (timeoutMs < 0 || timeoutMs > ConnectivityManager.MAX_NETWORK_REQUEST_TIMEOUT_MS) {
3635            throw new IllegalArgumentException("Bad timeout specified");
3636        }
3637
3638        NetworkRequest networkRequest = new NetworkRequest(networkCapabilities, legacyType,
3639                nextNetworkRequestId());
3640        if (DBG) log("requestNetwork for " + networkRequest);
3641        NetworkRequestInfo nri = new NetworkRequestInfo(messenger, networkRequest, binder,
3642                NetworkRequestInfo.REQUEST);
3643
3644        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_REQUEST, nri));
3645        if (timeoutMs > 0) {
3646            mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_TIMEOUT_NETWORK_REQUEST,
3647                    nri), timeoutMs);
3648        }
3649        return networkRequest;
3650    }
3651
3652    private void enforceNetworkRequestPermissions(NetworkCapabilities networkCapabilities) {
3653        if (networkCapabilities.hasCapability(NET_CAPABILITY_NOT_RESTRICTED) == false) {
3654            enforceConnectivityInternalPermission();
3655        } else {
3656            enforceChangePermission();
3657        }
3658    }
3659
3660    @Override
3661    public boolean requestBandwidthUpdate(Network network) {
3662        enforceAccessPermission();
3663        NetworkAgentInfo nai = null;
3664        if (network == null) {
3665            return false;
3666        }
3667        synchronized (mNetworkForNetId) {
3668            nai = mNetworkForNetId.get(network.netId);
3669        }
3670        if (nai != null) {
3671            nai.asyncChannel.sendMessage(android.net.NetworkAgent.CMD_REQUEST_BANDWIDTH_UPDATE);
3672            return true;
3673        }
3674        return false;
3675    }
3676
3677
3678    private void enforceMeteredApnPolicy(NetworkCapabilities networkCapabilities) {
3679        // if UID is restricted, don't allow them to bring up metered APNs
3680        if (networkCapabilities.hasCapability(NET_CAPABILITY_NOT_METERED) == false) {
3681            final int uidRules;
3682            final int uid = Binder.getCallingUid();
3683            synchronized(mRulesLock) {
3684                uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
3685            }
3686            if ((uidRules & (RULE_REJECT_METERED | RULE_REJECT_ALL)) != 0) {
3687                // we could silently fail or we can filter the available nets to only give
3688                // them those they have access to.  Chose the more useful
3689                networkCapabilities.addCapability(NET_CAPABILITY_NOT_METERED);
3690            }
3691        }
3692    }
3693
3694    @Override
3695    public NetworkRequest pendingRequestForNetwork(NetworkCapabilities networkCapabilities,
3696            PendingIntent operation) {
3697        checkNotNull(operation, "PendingIntent cannot be null.");
3698        networkCapabilities = new NetworkCapabilities(networkCapabilities);
3699        enforceNetworkRequestPermissions(networkCapabilities);
3700        enforceMeteredApnPolicy(networkCapabilities);
3701        ensureImmutableCapabilities(networkCapabilities);
3702
3703        NetworkRequest networkRequest = new NetworkRequest(networkCapabilities, TYPE_NONE,
3704                nextNetworkRequestId());
3705        if (DBG) log("pendingRequest for " + networkRequest + " to trigger " + operation);
3706        NetworkRequestInfo nri = new NetworkRequestInfo(networkRequest, operation,
3707                NetworkRequestInfo.REQUEST);
3708        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_REQUEST_WITH_INTENT,
3709                nri));
3710        return networkRequest;
3711    }
3712
3713    private void releasePendingNetworkRequestWithDelay(PendingIntent operation) {
3714        mHandler.sendMessageDelayed(
3715                mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT,
3716                getCallingUid(), 0, operation), mReleasePendingIntentDelayMs);
3717    }
3718
3719    @Override
3720    public void releasePendingNetworkRequest(PendingIntent operation) {
3721        checkNotNull(operation, "PendingIntent cannot be null.");
3722        mHandler.sendMessage(mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT,
3723                getCallingUid(), 0, operation));
3724    }
3725
3726    // In order to implement the compatibility measure for pre-M apps that call
3727    // WifiManager.enableNetwork(..., true) without also binding to that network explicitly,
3728    // WifiManager registers a network listen for the purpose of calling setProcessDefaultNetwork.
3729    // This ensures it has permission to do so.
3730    private boolean hasWifiNetworkListenPermission(NetworkCapabilities nc) {
3731        if (nc == null) {
3732            return false;
3733        }
3734        int[] transportTypes = nc.getTransportTypes();
3735        if (transportTypes.length != 1 || transportTypes[0] != NetworkCapabilities.TRANSPORT_WIFI) {
3736            return false;
3737        }
3738        try {
3739            mContext.enforceCallingOrSelfPermission(
3740                    android.Manifest.permission.ACCESS_WIFI_STATE,
3741                    "ConnectivityService");
3742        } catch (SecurityException e) {
3743            return false;
3744        }
3745        return true;
3746    }
3747
3748    @Override
3749    public NetworkRequest listenForNetwork(NetworkCapabilities networkCapabilities,
3750            Messenger messenger, IBinder binder) {
3751        if (!hasWifiNetworkListenPermission(networkCapabilities)) {
3752            enforceAccessPermission();
3753        }
3754
3755        NetworkRequest networkRequest = new NetworkRequest(new NetworkCapabilities(
3756                networkCapabilities), TYPE_NONE, nextNetworkRequestId());
3757        if (DBG) log("listenForNetwork for " + networkRequest);
3758        NetworkRequestInfo nri = new NetworkRequestInfo(messenger, networkRequest, binder,
3759                NetworkRequestInfo.LISTEN);
3760
3761        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_LISTENER, nri));
3762        return networkRequest;
3763    }
3764
3765    @Override
3766    public void pendingListenForNetwork(NetworkCapabilities networkCapabilities,
3767            PendingIntent operation) {
3768        checkNotNull(operation, "PendingIntent cannot be null.");
3769        if (!hasWifiNetworkListenPermission(networkCapabilities)) {
3770            enforceAccessPermission();
3771        }
3772
3773        NetworkRequest networkRequest = new NetworkRequest(new NetworkCapabilities(
3774                networkCapabilities), TYPE_NONE, nextNetworkRequestId());
3775        if (DBG) log("pendingListenForNetwork for " + networkRequest + " to trigger " + operation);
3776        NetworkRequestInfo nri = new NetworkRequestInfo(networkRequest, operation,
3777                NetworkRequestInfo.LISTEN);
3778
3779        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_LISTENER, nri));
3780    }
3781
3782    @Override
3783    public void releaseNetworkRequest(NetworkRequest networkRequest) {
3784        mHandler.sendMessage(mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST, getCallingUid(),
3785                0, networkRequest));
3786    }
3787
3788    @Override
3789    public void registerNetworkFactory(Messenger messenger, String name) {
3790        enforceConnectivityInternalPermission();
3791        NetworkFactoryInfo nfi = new NetworkFactoryInfo(name, messenger, new AsyncChannel());
3792        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_FACTORY, nfi));
3793    }
3794
3795    private void handleRegisterNetworkFactory(NetworkFactoryInfo nfi) {
3796        if (DBG) log("Got NetworkFactory Messenger for " + nfi.name);
3797        mNetworkFactoryInfos.put(nfi.messenger, nfi);
3798        nfi.asyncChannel.connect(mContext, mTrackerHandler, nfi.messenger);
3799    }
3800
3801    @Override
3802    public void unregisterNetworkFactory(Messenger messenger) {
3803        enforceConnectivityInternalPermission();
3804        mHandler.sendMessage(mHandler.obtainMessage(EVENT_UNREGISTER_NETWORK_FACTORY, messenger));
3805    }
3806
3807    private void handleUnregisterNetworkFactory(Messenger messenger) {
3808        NetworkFactoryInfo nfi = mNetworkFactoryInfos.remove(messenger);
3809        if (nfi == null) {
3810            loge("Failed to find Messenger in unregisterNetworkFactory");
3811            return;
3812        }
3813        if (DBG) log("unregisterNetworkFactory for " + nfi.name);
3814    }
3815
3816    /**
3817     * NetworkAgentInfo supporting a request by requestId.
3818     * These have already been vetted (their Capabilities satisfy the request)
3819     * and the are the highest scored network available.
3820     * the are keyed off the Requests requestId.
3821     */
3822    // TODO: Yikes, this is accessed on multiple threads: add synchronization.
3823    private final SparseArray<NetworkAgentInfo> mNetworkForRequestId =
3824            new SparseArray<NetworkAgentInfo>();
3825
3826    // NOTE: Accessed on multiple threads, must be synchronized on itself.
3827    @GuardedBy("mNetworkForNetId")
3828    private final SparseArray<NetworkAgentInfo> mNetworkForNetId =
3829            new SparseArray<NetworkAgentInfo>();
3830    // NOTE: Accessed on multiple threads, synchronized with mNetworkForNetId.
3831    // An entry is first added to mNetIdInUse, prior to mNetworkForNetId, so
3832    // there may not be a strict 1:1 correlation between the two.
3833    @GuardedBy("mNetworkForNetId")
3834    private final SparseBooleanArray mNetIdInUse = new SparseBooleanArray();
3835
3836    // NetworkAgentInfo keyed off its connecting messenger
3837    // TODO - eval if we can reduce the number of lists/hashmaps/sparsearrays
3838    // NOTE: Only should be accessed on ConnectivityServiceThread, except dump().
3839    private final HashMap<Messenger, NetworkAgentInfo> mNetworkAgentInfos =
3840            new HashMap<Messenger, NetworkAgentInfo>();
3841
3842    // Note: if mDefaultRequest is changed, NetworkMonitor needs to be updated.
3843    private final NetworkRequest mDefaultRequest;
3844
3845    // Request used to optionally keep mobile data active even when higher
3846    // priority networks like Wi-Fi are active.
3847    private final NetworkRequest mDefaultMobileDataRequest;
3848
3849    private NetworkAgentInfo getDefaultNetwork() {
3850        return mNetworkForRequestId.get(mDefaultRequest.requestId);
3851    }
3852
3853    private boolean isDefaultNetwork(NetworkAgentInfo nai) {
3854        return nai == getDefaultNetwork();
3855    }
3856
3857    public int registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo,
3858            LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
3859            int currentScore, NetworkMisc networkMisc) {
3860        enforceConnectivityInternalPermission();
3861
3862        // TODO: Instead of passing mDefaultRequest, provide an API to determine whether a Network
3863        // satisfies mDefaultRequest.
3864        NetworkAgentInfo nai = new NetworkAgentInfo(messenger, new AsyncChannel(),
3865                new Network(reserveNetId()), new NetworkInfo(networkInfo), new LinkProperties(
3866                linkProperties), new NetworkCapabilities(networkCapabilities), currentScore,
3867                mContext, mTrackerHandler, new NetworkMisc(networkMisc), mDefaultRequest);
3868        synchronized (this) {
3869            nai.networkMonitor.systemReady = mSystemReady;
3870        }
3871        addValidationLogs(nai.networkMonitor.getValidationLogs(), nai.network);
3872        if (DBG) log("registerNetworkAgent " + nai);
3873        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_AGENT, nai));
3874        return nai.network.netId;
3875    }
3876
3877    private void handleRegisterNetworkAgent(NetworkAgentInfo na) {
3878        if (VDBG) log("Got NetworkAgent Messenger");
3879        mNetworkAgentInfos.put(na.messenger, na);
3880        synchronized (mNetworkForNetId) {
3881            mNetworkForNetId.put(na.network.netId, na);
3882        }
3883        na.asyncChannel.connect(mContext, mTrackerHandler, na.messenger);
3884        NetworkInfo networkInfo = na.networkInfo;
3885        na.networkInfo = null;
3886        updateNetworkInfo(na, networkInfo);
3887    }
3888
3889    private void updateLinkProperties(NetworkAgentInfo networkAgent, LinkProperties oldLp) {
3890        LinkProperties newLp = networkAgent.linkProperties;
3891        int netId = networkAgent.network.netId;
3892
3893        // The NetworkAgentInfo does not know whether clatd is running on its network or not. Before
3894        // we do anything else, make sure its LinkProperties are accurate.
3895        if (networkAgent.clatd != null) {
3896            networkAgent.clatd.fixupLinkProperties(oldLp);
3897        }
3898
3899        updateInterfaces(newLp, oldLp, netId);
3900        updateMtu(newLp, oldLp);
3901        // TODO - figure out what to do for clat
3902//        for (LinkProperties lp : newLp.getStackedLinks()) {
3903//            updateMtu(lp, null);
3904//        }
3905        updateTcpBufferSizes(networkAgent);
3906
3907        // TODO: deprecate and remove mDefaultDns when we can do so safely. See http://b/18327075
3908        // In L, we used it only when the network had Internet access but provided no DNS servers.
3909        // For now, just disable it, and if disabling it doesn't break things, remove it.
3910        // final boolean useDefaultDns = networkAgent.networkCapabilities.hasCapability(
3911        //        NET_CAPABILITY_INTERNET);
3912        final boolean useDefaultDns = false;
3913        final boolean flushDns = updateRoutes(newLp, oldLp, netId);
3914        updateDnses(newLp, oldLp, netId, flushDns, useDefaultDns);
3915
3916        updateClat(newLp, oldLp, networkAgent);
3917        if (isDefaultNetwork(networkAgent)) {
3918            handleApplyDefaultProxy(newLp.getHttpProxy());
3919        } else {
3920            updateProxy(newLp, oldLp, networkAgent);
3921        }
3922        // TODO - move this check to cover the whole function
3923        if (!Objects.equals(newLp, oldLp)) {
3924            notifyIfacesChanged();
3925            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_IP_CHANGED);
3926        }
3927    }
3928
3929    private void updateClat(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) {
3930        final boolean wasRunningClat = nai.clatd != null && nai.clatd.isStarted();
3931        final boolean shouldRunClat = Nat464Xlat.requiresClat(nai);
3932
3933        if (!wasRunningClat && shouldRunClat) {
3934            nai.clatd = new Nat464Xlat(mContext, mNetd, mTrackerHandler, nai);
3935            nai.clatd.start();
3936        } else if (wasRunningClat && !shouldRunClat) {
3937            nai.clatd.stop();
3938        }
3939    }
3940
3941    private void updateInterfaces(LinkProperties newLp, LinkProperties oldLp, int netId) {
3942        CompareResult<String> interfaceDiff = new CompareResult<String>();
3943        if (oldLp != null) {
3944            interfaceDiff = oldLp.compareAllInterfaceNames(newLp);
3945        } else if (newLp != null) {
3946            interfaceDiff.added = newLp.getAllInterfaceNames();
3947        }
3948        for (String iface : interfaceDiff.added) {
3949            try {
3950                if (DBG) log("Adding iface " + iface + " to network " + netId);
3951                mNetd.addInterfaceToNetwork(iface, netId);
3952            } catch (Exception e) {
3953                loge("Exception adding interface: " + e);
3954            }
3955        }
3956        for (String iface : interfaceDiff.removed) {
3957            try {
3958                if (DBG) log("Removing iface " + iface + " from network " + netId);
3959                mNetd.removeInterfaceFromNetwork(iface, netId);
3960            } catch (Exception e) {
3961                loge("Exception removing interface: " + e);
3962            }
3963        }
3964    }
3965
3966    /**
3967     * Have netd update routes from oldLp to newLp.
3968     * @return true if routes changed between oldLp and newLp
3969     */
3970    private boolean updateRoutes(LinkProperties newLp, LinkProperties oldLp, int netId) {
3971        CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
3972        if (oldLp != null) {
3973            routeDiff = oldLp.compareAllRoutes(newLp);
3974        } else if (newLp != null) {
3975            routeDiff.added = newLp.getAllRoutes();
3976        }
3977
3978        // add routes before removing old in case it helps with continuous connectivity
3979
3980        // do this twice, adding non-nexthop routes first, then routes they are dependent on
3981        for (RouteInfo route : routeDiff.added) {
3982            if (route.hasGateway()) continue;
3983            if (DBG) log("Adding Route [" + route + "] to network " + netId);
3984            try {
3985                mNetd.addRoute(netId, route);
3986            } catch (Exception e) {
3987                if ((route.getDestination().getAddress() instanceof Inet4Address) || VDBG) {
3988                    loge("Exception in addRoute for non-gateway: " + e);
3989                }
3990            }
3991        }
3992        for (RouteInfo route : routeDiff.added) {
3993            if (route.hasGateway() == false) continue;
3994            if (DBG) log("Adding Route [" + route + "] to network " + netId);
3995            try {
3996                mNetd.addRoute(netId, route);
3997            } catch (Exception e) {
3998                if ((route.getGateway() instanceof Inet4Address) || VDBG) {
3999                    loge("Exception in addRoute for gateway: " + e);
4000                }
4001            }
4002        }
4003
4004        for (RouteInfo route : routeDiff.removed) {
4005            if (DBG) log("Removing Route [" + route + "] from network " + netId);
4006            try {
4007                mNetd.removeRoute(netId, route);
4008            } catch (Exception e) {
4009                loge("Exception in removeRoute: " + e);
4010            }
4011        }
4012        return !routeDiff.added.isEmpty() || !routeDiff.removed.isEmpty();
4013    }
4014
4015    private void updateDnses(LinkProperties newLp, LinkProperties oldLp, int netId,
4016                             boolean flush, boolean useDefaultDns) {
4017        if (oldLp == null || (newLp.isIdenticalDnses(oldLp) == false)) {
4018            Collection<InetAddress> dnses = newLp.getDnsServers();
4019            if (dnses.size() == 0 && mDefaultDns != null && useDefaultDns) {
4020                dnses = new ArrayList();
4021                dnses.add(mDefaultDns);
4022                if (DBG) {
4023                    loge("no dns provided for netId " + netId + ", so using defaults");
4024                }
4025            }
4026            if (DBG) log("Setting Dns servers for network " + netId + " to " + dnses);
4027            try {
4028                mNetd.setDnsServersForNetwork(netId, NetworkUtils.makeStrings(dnses),
4029                    newLp.getDomains());
4030            } catch (Exception e) {
4031                loge("Exception in setDnsServersForNetwork: " + e);
4032            }
4033            NetworkAgentInfo defaultNai = mNetworkForRequestId.get(mDefaultRequest.requestId);
4034            if (defaultNai != null && defaultNai.network.netId == netId) {
4035                setDefaultDnsSystemProperties(dnses);
4036            }
4037            flushVmDnsCache();
4038        } else if (flush) {
4039            try {
4040                mNetd.flushNetworkDnsCache(netId);
4041            } catch (Exception e) {
4042                loge("Exception in flushNetworkDnsCache: " + e);
4043            }
4044            flushVmDnsCache();
4045        }
4046    }
4047
4048    private void setDefaultDnsSystemProperties(Collection<InetAddress> dnses) {
4049        int last = 0;
4050        for (InetAddress dns : dnses) {
4051            ++last;
4052            String key = "net.dns" + last;
4053            String value = dns.getHostAddress();
4054            SystemProperties.set(key, value);
4055        }
4056        for (int i = last + 1; i <= mNumDnsEntries; ++i) {
4057            String key = "net.dns" + i;
4058            SystemProperties.set(key, "");
4059        }
4060        mNumDnsEntries = last;
4061    }
4062
4063    /**
4064     * Update the NetworkCapabilities for {@code networkAgent} to {@code networkCapabilities}
4065     * augmented with any stateful capabilities implied from {@code networkAgent}
4066     * (e.g., validated status and captive portal status).
4067     *
4068     * @param networkAgent the network having its capabilities updated.
4069     * @param networkCapabilities the new network capabilities.
4070     * @param nascent indicates whether {@code networkAgent} was validated
4071     *         (i.e. had everValidated set for the first time) immediately prior to this call.
4072     */
4073    private void updateCapabilities(NetworkAgentInfo networkAgent,
4074            NetworkCapabilities networkCapabilities, NascentState nascent) {
4075        // Don't modify caller's NetworkCapabilities.
4076        networkCapabilities = new NetworkCapabilities(networkCapabilities);
4077        if (networkAgent.lastValidated) {
4078            networkCapabilities.addCapability(NET_CAPABILITY_VALIDATED);
4079        } else {
4080            networkCapabilities.removeCapability(NET_CAPABILITY_VALIDATED);
4081        }
4082        if (networkAgent.lastCaptivePortalDetected) {
4083            networkCapabilities.addCapability(NET_CAPABILITY_CAPTIVE_PORTAL);
4084        } else {
4085            networkCapabilities.removeCapability(NET_CAPABILITY_CAPTIVE_PORTAL);
4086        }
4087        if (!Objects.equals(networkAgent.networkCapabilities, networkCapabilities)) {
4088            synchronized (networkAgent) {
4089                networkAgent.networkCapabilities = networkCapabilities;
4090            }
4091            rematchAllNetworksAndRequests(networkAgent, networkAgent.getCurrentScore(), nascent);
4092            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_CAP_CHANGED);
4093        }
4094    }
4095
4096    private void sendUpdatedScoreToFactories(NetworkAgentInfo nai) {
4097        for (int i = 0; i < nai.networkRequests.size(); i++) {
4098            NetworkRequest nr = nai.networkRequests.valueAt(i);
4099            // Don't send listening requests to factories. b/17393458
4100            if (!isRequest(nr)) continue;
4101            sendUpdatedScoreToFactories(nr, nai.getCurrentScore());
4102        }
4103    }
4104
4105    private void sendUpdatedScoreToFactories(NetworkRequest networkRequest, int score) {
4106        if (VDBG) log("sending new Min Network Score(" + score + "): " + networkRequest.toString());
4107        for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
4108            nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_REQUEST_NETWORK, score, 0,
4109                    networkRequest);
4110        }
4111    }
4112
4113    private void sendPendingIntentForRequest(NetworkRequestInfo nri, NetworkAgentInfo networkAgent,
4114            int notificationType) {
4115        if (notificationType == ConnectivityManager.CALLBACK_AVAILABLE && !nri.mPendingIntentSent) {
4116            Intent intent = new Intent();
4117            intent.putExtra(ConnectivityManager.EXTRA_NETWORK, networkAgent.network);
4118            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_REQUEST, nri.request);
4119            nri.mPendingIntentSent = true;
4120            sendIntent(nri.mPendingIntent, intent);
4121        }
4122        // else not handled
4123    }
4124
4125    private void sendIntent(PendingIntent pendingIntent, Intent intent) {
4126        mPendingIntentWakeLock.acquire();
4127        try {
4128            if (DBG) log("Sending " + pendingIntent);
4129            pendingIntent.send(mContext, 0, intent, this /* onFinished */, null /* Handler */);
4130        } catch (PendingIntent.CanceledException e) {
4131            if (DBG) log(pendingIntent + " was not sent, it had been canceled.");
4132            mPendingIntentWakeLock.release();
4133            releasePendingNetworkRequest(pendingIntent);
4134        }
4135        // ...otherwise, mPendingIntentWakeLock.release() gets called by onSendFinished()
4136    }
4137
4138    @Override
4139    public void onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode,
4140            String resultData, Bundle resultExtras) {
4141        if (DBG) log("Finished sending " + pendingIntent);
4142        mPendingIntentWakeLock.release();
4143        // Release with a delay so the receiving client has an opportunity to put in its
4144        // own request.
4145        releasePendingNetworkRequestWithDelay(pendingIntent);
4146    }
4147
4148    private void callCallbackForRequest(NetworkRequestInfo nri,
4149            NetworkAgentInfo networkAgent, int notificationType) {
4150        if (nri.messenger == null) return;  // Default request has no msgr
4151        Bundle bundle = new Bundle();
4152        bundle.putParcelable(NetworkRequest.class.getSimpleName(),
4153                new NetworkRequest(nri.request));
4154        Message msg = Message.obtain();
4155        if (notificationType != ConnectivityManager.CALLBACK_UNAVAIL &&
4156                notificationType != ConnectivityManager.CALLBACK_RELEASED) {
4157            bundle.putParcelable(Network.class.getSimpleName(), networkAgent.network);
4158        }
4159        switch (notificationType) {
4160            case ConnectivityManager.CALLBACK_LOSING: {
4161                msg.arg1 = 30 * 1000; // TODO - read this from NetworkMonitor
4162                break;
4163            }
4164            case ConnectivityManager.CALLBACK_CAP_CHANGED: {
4165                bundle.putParcelable(NetworkCapabilities.class.getSimpleName(),
4166                        new NetworkCapabilities(networkAgent.networkCapabilities));
4167                break;
4168            }
4169            case ConnectivityManager.CALLBACK_IP_CHANGED: {
4170                bundle.putParcelable(LinkProperties.class.getSimpleName(),
4171                        new LinkProperties(networkAgent.linkProperties));
4172                break;
4173            }
4174        }
4175        msg.what = notificationType;
4176        msg.setData(bundle);
4177        try {
4178            if (VDBG) {
4179                log("sending notification " + notifyTypeToName(notificationType) +
4180                        " for " + nri.request);
4181            }
4182            nri.messenger.send(msg);
4183        } catch (RemoteException e) {
4184            // may occur naturally in the race of binder death.
4185            loge("RemoteException caught trying to send a callback msg for " + nri.request);
4186        }
4187    }
4188
4189    private void teardownUnneededNetwork(NetworkAgentInfo nai) {
4190        for (int i = 0; i < nai.networkRequests.size(); i++) {
4191            NetworkRequest nr = nai.networkRequests.valueAt(i);
4192            // Ignore listening requests.
4193            if (!isRequest(nr)) continue;
4194            loge("Dead network still had at least " + nr);
4195            break;
4196        }
4197        nai.asyncChannel.disconnect();
4198    }
4199
4200    private void handleLingerComplete(NetworkAgentInfo oldNetwork) {
4201        if (oldNetwork == null) {
4202            loge("Unknown NetworkAgentInfo in handleLingerComplete");
4203            return;
4204        }
4205        if (DBG) log("handleLingerComplete for " + oldNetwork.name());
4206        teardownUnneededNetwork(oldNetwork);
4207    }
4208
4209    private void makeDefault(NetworkAgentInfo newNetwork) {
4210        if (DBG) log("Switching to new default network: " + newNetwork);
4211        setupDataActivityTracking(newNetwork);
4212        try {
4213            mNetd.setDefaultNetId(newNetwork.network.netId);
4214        } catch (Exception e) {
4215            loge("Exception setting default network :" + e);
4216        }
4217        notifyLockdownVpn(newNetwork);
4218        handleApplyDefaultProxy(newNetwork.linkProperties.getHttpProxy());
4219        updateTcpBufferSizes(newNetwork);
4220        setDefaultDnsSystemProperties(newNetwork.linkProperties.getDnsServers());
4221    }
4222
4223    // Handles a network appearing or improving its score.
4224    //
4225    // - Evaluates all current NetworkRequests that can be
4226    //   satisfied by newNetwork, and reassigns to newNetwork
4227    //   any such requests for which newNetwork is the best.
4228    //
4229    // - Lingers any validated Networks that as a result are no longer
4230    //   needed. A network is needed if it is the best network for
4231    //   one or more NetworkRequests, or if it is a VPN.
4232    //
4233    // - Tears down newNetwork if it just became validated
4234    //   (i.e. nascent==JUST_VALIDATED) but turns out to be unneeded.
4235    //
4236    // - If reapUnvalidatedNetworks==REAP, tears down unvalidated
4237    //   networks that have no chance (i.e. even if validated)
4238    //   of becoming the highest scoring network.
4239    //
4240    // NOTE: This function only adds NetworkRequests that "newNetwork" could satisfy,
4241    // it does not remove NetworkRequests that other Networks could better satisfy.
4242    // If you need to handle decreases in score, use {@link rematchAllNetworksAndRequests}.
4243    // This function should be used when possible instead of {@code rematchAllNetworksAndRequests}
4244    // as it performs better by a factor of the number of Networks.
4245    //
4246    // @param newNetwork is the network to be matched against NetworkRequests.
4247    // @param nascent indicates if newNetwork just became validated, in which case it should be
4248    //               torn down if unneeded.
4249    // @param reapUnvalidatedNetworks indicates if an additional pass over all networks should be
4250    //               performed to tear down unvalidated networks that have no chance (i.e. even if
4251    //               validated) of becoming the highest scoring network.
4252    private void rematchNetworkAndRequests(NetworkAgentInfo newNetwork, NascentState nascent,
4253            ReapUnvalidatedNetworks reapUnvalidatedNetworks) {
4254        if (!newNetwork.created) return;
4255        if (nascent == NascentState.JUST_VALIDATED && !newNetwork.everValidated) {
4256            loge("ERROR: nascent network not validated.");
4257        }
4258        boolean keep = newNetwork.isVPN();
4259        boolean isNewDefault = false;
4260        NetworkAgentInfo oldDefaultNetwork = null;
4261        if (DBG) log("rematching " + newNetwork.name());
4262        // Find and migrate to this Network any NetworkRequests for
4263        // which this network is now the best.
4264        ArrayList<NetworkAgentInfo> affectedNetworks = new ArrayList<NetworkAgentInfo>();
4265        ArrayList<NetworkRequestInfo> addedRequests = new ArrayList<NetworkRequestInfo>();
4266        if (VDBG) log(" network has: " + newNetwork.networkCapabilities);
4267        for (NetworkRequestInfo nri : mNetworkRequests.values()) {
4268            NetworkAgentInfo currentNetwork = mNetworkForRequestId.get(nri.request.requestId);
4269            if (newNetwork == currentNetwork) {
4270                if (DBG) {
4271                    log("Network " + newNetwork.name() + " was already satisfying" +
4272                            " request " + nri.request.requestId + ". No change.");
4273                }
4274                keep = true;
4275                continue;
4276            }
4277
4278            // check if it satisfies the NetworkCapabilities
4279            if (VDBG) log("  checking if request is satisfied: " + nri.request);
4280            if (newNetwork.satisfies(nri.request)) {
4281                if (!nri.isRequest) {
4282                    // This is not a request, it's a callback listener.
4283                    // Add it to newNetwork regardless of score.
4284                    if (newNetwork.addRequest(nri.request)) addedRequests.add(nri);
4285                    continue;
4286                }
4287
4288                // next check if it's better than any current network we're using for
4289                // this request
4290                if (VDBG) {
4291                    log("currentScore = " +
4292                            (currentNetwork != null ? currentNetwork.getCurrentScore() : 0) +
4293                            ", newScore = " + newNetwork.getCurrentScore());
4294                }
4295                if (currentNetwork == null ||
4296                        currentNetwork.getCurrentScore() < newNetwork.getCurrentScore()) {
4297                    if (currentNetwork != null) {
4298                        if (DBG) log("   accepting network in place of " + currentNetwork.name());
4299                        currentNetwork.networkRequests.remove(nri.request.requestId);
4300                        currentNetwork.networkLingered.add(nri.request);
4301                        affectedNetworks.add(currentNetwork);
4302                    } else {
4303                        if (DBG) log("   accepting network in place of null");
4304                    }
4305                    unlinger(newNetwork);
4306                    mNetworkForRequestId.put(nri.request.requestId, newNetwork);
4307                    if (!newNetwork.addRequest(nri.request)) {
4308                        Slog.wtf(TAG, "BUG: " + newNetwork.name() + " already has " + nri.request);
4309                    }
4310                    addedRequests.add(nri);
4311                    keep = true;
4312                    // Tell NetworkFactories about the new score, so they can stop
4313                    // trying to connect if they know they cannot match it.
4314                    // TODO - this could get expensive if we have alot of requests for this
4315                    // network.  Think about if there is a way to reduce this.  Push
4316                    // netid->request mapping to each factory?
4317                    sendUpdatedScoreToFactories(nri.request, newNetwork.getCurrentScore());
4318                    if (mDefaultRequest.requestId == nri.request.requestId) {
4319                        isNewDefault = true;
4320                        oldDefaultNetwork = currentNetwork;
4321                    }
4322                }
4323            }
4324        }
4325        // Linger any networks that are no longer needed.
4326        for (NetworkAgentInfo nai : affectedNetworks) {
4327            if (nai.everValidated && unneeded(nai)) {
4328                nai.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_LINGER);
4329                notifyNetworkCallbacks(nai, ConnectivityManager.CALLBACK_LOSING);
4330            } else {
4331                unlinger(nai);
4332            }
4333        }
4334        if (keep) {
4335            if (isNewDefault) {
4336                // Notify system services that this network is up.
4337                makeDefault(newNetwork);
4338                synchronized (ConnectivityService.this) {
4339                    // have a new default network, release the transition wakelock in
4340                    // a second if it's held.  The second pause is to allow apps
4341                    // to reconnect over the new network
4342                    if (mNetTransitionWakeLock.isHeld()) {
4343                        mHandler.sendMessageDelayed(mHandler.obtainMessage(
4344                                EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
4345                                mNetTransitionWakeLockSerialNumber, 0),
4346                                1000);
4347                    }
4348                }
4349            }
4350
4351            // do this after the default net is switched, but
4352            // before LegacyTypeTracker sends legacy broadcasts
4353            for (NetworkRequestInfo nri : addedRequests) notifyNetworkCallback(newNetwork, nri);
4354
4355            if (isNewDefault) {
4356                // Maintain the illusion: since the legacy API only
4357                // understands one network at a time, we must pretend
4358                // that the current default network disconnected before
4359                // the new one connected.
4360                if (oldDefaultNetwork != null) {
4361                    mLegacyTypeTracker.remove(oldDefaultNetwork.networkInfo.getType(),
4362                                              oldDefaultNetwork, true);
4363                }
4364                mDefaultInetConditionPublished = newNetwork.everValidated ? 100 : 0;
4365                mLegacyTypeTracker.add(newNetwork.networkInfo.getType(), newNetwork);
4366                notifyLockdownVpn(newNetwork);
4367            }
4368
4369            // Notify battery stats service about this network, both the normal
4370            // interface and any stacked links.
4371            // TODO: Avoid redoing this; this must only be done once when a network comes online.
4372            try {
4373                final IBatteryStats bs = BatteryStatsService.getService();
4374                final int type = newNetwork.networkInfo.getType();
4375
4376                final String baseIface = newNetwork.linkProperties.getInterfaceName();
4377                bs.noteNetworkInterfaceType(baseIface, type);
4378                for (LinkProperties stacked : newNetwork.linkProperties.getStackedLinks()) {
4379                    final String stackedIface = stacked.getInterfaceName();
4380                    bs.noteNetworkInterfaceType(stackedIface, type);
4381                    NetworkStatsFactory.noteStackedIface(stackedIface, baseIface);
4382                }
4383            } catch (RemoteException ignored) {
4384            }
4385
4386            // This has to happen after the notifyNetworkCallbacks as that tickles each
4387            // ConnectivityManager instance so that legacy requests correctly bind dns
4388            // requests to this network.  The legacy users are listening for this bcast
4389            // and will generally do a dns request so they can ensureRouteToHost and if
4390            // they do that before the callbacks happen they'll use the default network.
4391            //
4392            // TODO: Is there still a race here? We send the broadcast
4393            // after sending the callback, but if the app can receive the
4394            // broadcast before the callback, it might still break.
4395            //
4396            // This *does* introduce a race where if the user uses the new api
4397            // (notification callbacks) and then uses the old api (getNetworkInfo(type))
4398            // they may get old info.  Reverse this after the old startUsing api is removed.
4399            // This is on top of the multiple intent sequencing referenced in the todo above.
4400            for (int i = 0; i < newNetwork.networkRequests.size(); i++) {
4401                NetworkRequest nr = newNetwork.networkRequests.valueAt(i);
4402                if (nr.legacyType != TYPE_NONE && isRequest(nr)) {
4403                    // legacy type tracker filters out repeat adds
4404                    mLegacyTypeTracker.add(nr.legacyType, newNetwork);
4405                }
4406            }
4407
4408            // A VPN generally won't get added to the legacy tracker in the "for (nri)" loop above,
4409            // because usually there are no NetworkRequests it satisfies (e.g., mDefaultRequest
4410            // wants the NOT_VPN capability, so it will never be satisfied by a VPN). So, add the
4411            // newNetwork to the tracker explicitly (it's a no-op if it has already been added).
4412            if (newNetwork.isVPN()) {
4413                mLegacyTypeTracker.add(TYPE_VPN, newNetwork);
4414            }
4415        } else if (nascent == NascentState.JUST_VALIDATED) {
4416            // Only tear down newly validated networks here.  Leave unvalidated to either become
4417            // validated (and get evaluated against peers, one losing here), or get reaped (see
4418            // reapUnvalidatedNetworks) if they have no chance of becoming the highest scoring
4419            // network.  Networks that have been up for a while and are validated should be torn
4420            // down via the lingering process so communication on that network is given time to
4421            // wrap up.
4422            if (DBG) log("Validated network turns out to be unwanted.  Tear it down.");
4423            teardownUnneededNetwork(newNetwork);
4424        }
4425        if (reapUnvalidatedNetworks == ReapUnvalidatedNetworks.REAP) {
4426            for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
4427                if (!nai.everValidated && unneeded(nai)) {
4428                    if (DBG) log("Reaping " + nai.name());
4429                    teardownUnneededNetwork(nai);
4430                }
4431            }
4432        }
4433    }
4434
4435    /**
4436     * Attempt to rematch all Networks with NetworkRequests.  This may result in Networks
4437     * being disconnected.
4438     * @param changed If only one Network's score or capabilities have been modified since the last
4439     *         time this function was called, pass this Network in this argument, otherwise pass
4440     *         null.
4441     * @param oldScore If only one Network has been changed but its NetworkCapabilities have not
4442     *         changed, pass in the Network's score (from getCurrentScore()) prior to the change via
4443     *         this argument, otherwise pass {@code changed.getCurrentScore()} or 0 if
4444     *         {@code changed} is {@code null}. This is because NetworkCapabilities influence a
4445     *         network's score.
4446     * @param nascent indicates if {@code changed} has just been validated.
4447     */
4448    private void rematchAllNetworksAndRequests(NetworkAgentInfo changed, int oldScore,
4449            NascentState nascent) {
4450        // TODO: This may get slow.  The "changed" parameter is provided for future optimization
4451        // to avoid the slowness.  It is not simply enough to process just "changed", for
4452        // example in the case where "changed"'s score decreases and another network should begin
4453        // satifying a NetworkRequest that "changed" currently satisfies.
4454
4455        // Optimization: Only reprocess "changed" if its score improved.  This is safe because it
4456        // can only add more NetworkRequests satisfied by "changed", and this is exactly what
4457        // rematchNetworkAndRequests() handles.
4458        if (changed != null &&
4459                (oldScore < changed.getCurrentScore() || nascent == NascentState.JUST_VALIDATED)) {
4460            rematchNetworkAndRequests(changed, nascent, ReapUnvalidatedNetworks.REAP);
4461        } else {
4462            for (Iterator i = mNetworkAgentInfos.values().iterator(); i.hasNext(); ) {
4463                rematchNetworkAndRequests((NetworkAgentInfo)i.next(),
4464                        NascentState.NOT_JUST_VALIDATED,
4465                        // Only reap the last time through the loop.  Reaping before all rematching
4466                        // is complete could incorrectly teardown a network that hasn't yet been
4467                        // rematched.
4468                        i.hasNext() ? ReapUnvalidatedNetworks.DONT_REAP
4469                                : ReapUnvalidatedNetworks.REAP);
4470            }
4471        }
4472    }
4473
4474    private void updateInetCondition(NetworkAgentInfo nai) {
4475        // Don't bother updating until we've graduated to validated at least once.
4476        if (!nai.everValidated) return;
4477        // For now only update icons for default connection.
4478        // TODO: Update WiFi and cellular icons separately. b/17237507
4479        if (!isDefaultNetwork(nai)) return;
4480
4481        int newInetCondition = nai.lastValidated ? 100 : 0;
4482        // Don't repeat publish.
4483        if (newInetCondition == mDefaultInetConditionPublished) return;
4484
4485        mDefaultInetConditionPublished = newInetCondition;
4486        sendInetConditionBroadcast(nai.networkInfo);
4487    }
4488
4489    private void notifyLockdownVpn(NetworkAgentInfo nai) {
4490        if (mLockdownTracker != null) {
4491            if (nai != null && nai.isVPN()) {
4492                mLockdownTracker.onVpnStateChanged(nai.networkInfo);
4493            } else {
4494                mLockdownTracker.onNetworkInfoChanged();
4495            }
4496        }
4497    }
4498
4499    private void updateNetworkInfo(NetworkAgentInfo networkAgent, NetworkInfo newInfo) {
4500        NetworkInfo.State state = newInfo.getState();
4501        NetworkInfo oldInfo = null;
4502        synchronized (networkAgent) {
4503            oldInfo = networkAgent.networkInfo;
4504            networkAgent.networkInfo = newInfo;
4505        }
4506        notifyLockdownVpn(networkAgent);
4507
4508        if (oldInfo != null && oldInfo.getState() == state) {
4509            if (VDBG) log("ignoring duplicate network state non-change");
4510            return;
4511        }
4512        if (DBG) {
4513            log(networkAgent.name() + " EVENT_NETWORK_INFO_CHANGED, going from " +
4514                    (oldInfo == null ? "null" : oldInfo.getState()) +
4515                    " to " + state);
4516        }
4517
4518        if (state == NetworkInfo.State.CONNECTED && !networkAgent.created) {
4519            try {
4520                // This should never fail.  Specifying an already in use NetID will cause failure.
4521                if (networkAgent.isVPN()) {
4522                    mNetd.createVirtualNetwork(networkAgent.network.netId,
4523                            !networkAgent.linkProperties.getDnsServers().isEmpty(),
4524                            (networkAgent.networkMisc == null ||
4525                                !networkAgent.networkMisc.allowBypass));
4526                } else {
4527                    mNetd.createPhysicalNetwork(networkAgent.network.netId);
4528                }
4529            } catch (Exception e) {
4530                loge("Error creating network " + networkAgent.network.netId + ": "
4531                        + e.getMessage());
4532                return;
4533            }
4534            networkAgent.created = true;
4535            updateLinkProperties(networkAgent, null);
4536            notifyIfacesChanged();
4537
4538            networkAgent.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_CONNECTED);
4539            scheduleUnvalidatedPrompt(networkAgent);
4540
4541            if (networkAgent.isVPN()) {
4542                // Temporarily disable the default proxy (not global).
4543                synchronized (mProxyLock) {
4544                    if (!mDefaultProxyDisabled) {
4545                        mDefaultProxyDisabled = true;
4546                        if (mGlobalProxy == null && mDefaultProxy != null) {
4547                            sendProxyBroadcast(null);
4548                        }
4549                    }
4550                }
4551                // TODO: support proxy per network.
4552            }
4553
4554            // Consider network even though it is not yet validated.
4555            rematchNetworkAndRequests(networkAgent, NascentState.NOT_JUST_VALIDATED,
4556                    ReapUnvalidatedNetworks.REAP);
4557
4558            // This has to happen after matching the requests, because callbacks are just requests.
4559            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_PRECHECK);
4560        } else if (state == NetworkInfo.State.DISCONNECTED ||
4561                state == NetworkInfo.State.SUSPENDED) {
4562            networkAgent.asyncChannel.disconnect();
4563            if (networkAgent.isVPN()) {
4564                synchronized (mProxyLock) {
4565                    if (mDefaultProxyDisabled) {
4566                        mDefaultProxyDisabled = false;
4567                        if (mGlobalProxy == null && mDefaultProxy != null) {
4568                            sendProxyBroadcast(mDefaultProxy);
4569                        }
4570                    }
4571                }
4572            }
4573        }
4574    }
4575
4576    private void updateNetworkScore(NetworkAgentInfo nai, int score) {
4577        if (DBG) log("updateNetworkScore for " + nai.name() + " to " + score);
4578        if (score < 0) {
4579            loge("updateNetworkScore for " + nai.name() + " got a negative score (" + score +
4580                    ").  Bumping score to min of 0");
4581            score = 0;
4582        }
4583
4584        final int oldScore = nai.getCurrentScore();
4585        nai.setCurrentScore(score);
4586
4587        rematchAllNetworksAndRequests(nai, oldScore, NascentState.NOT_JUST_VALIDATED);
4588
4589        sendUpdatedScoreToFactories(nai);
4590    }
4591
4592    // notify only this one new request of the current state
4593    protected void notifyNetworkCallback(NetworkAgentInfo nai, NetworkRequestInfo nri) {
4594        int notifyType = ConnectivityManager.CALLBACK_AVAILABLE;
4595        // TODO - read state from monitor to decide what to send.
4596//        if (nai.networkMonitor.isLingering()) {
4597//            notifyType = NetworkCallbacks.LOSING;
4598//        } else if (nai.networkMonitor.isEvaluating()) {
4599//            notifyType = NetworkCallbacks.callCallbackForRequest(request, nai, notifyType);
4600//        }
4601        if (nri.mPendingIntent == null) {
4602            callCallbackForRequest(nri, nai, notifyType);
4603        } else {
4604            sendPendingIntentForRequest(nri, nai, notifyType);
4605        }
4606    }
4607
4608    private void sendLegacyNetworkBroadcast(NetworkAgentInfo nai, boolean connected, int type) {
4609        // The NetworkInfo we actually send out has no bearing on the real
4610        // state of affairs. For example, if the default connection is mobile,
4611        // and a request for HIPRI has just gone away, we need to pretend that
4612        // HIPRI has just disconnected. So we need to set the type to HIPRI and
4613        // the state to DISCONNECTED, even though the network is of type MOBILE
4614        // and is still connected.
4615        NetworkInfo info = new NetworkInfo(nai.networkInfo);
4616        info.setType(type);
4617        if (connected) {
4618            info.setDetailedState(DetailedState.CONNECTED, null, info.getExtraInfo());
4619            sendConnectedBroadcast(info);
4620        } else {
4621            info.setDetailedState(DetailedState.DISCONNECTED, info.getReason(), info.getExtraInfo());
4622            Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
4623            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, info);
4624            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
4625            if (info.isFailover()) {
4626                intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
4627                nai.networkInfo.setFailover(false);
4628            }
4629            if (info.getReason() != null) {
4630                intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
4631            }
4632            if (info.getExtraInfo() != null) {
4633                intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, info.getExtraInfo());
4634            }
4635            NetworkAgentInfo newDefaultAgent = null;
4636            if (nai.networkRequests.get(mDefaultRequest.requestId) != null) {
4637                newDefaultAgent = mNetworkForRequestId.get(mDefaultRequest.requestId);
4638                if (newDefaultAgent != null) {
4639                    intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO,
4640                            newDefaultAgent.networkInfo);
4641                } else {
4642                    intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
4643                }
4644            }
4645            intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION,
4646                    mDefaultInetConditionPublished);
4647            sendStickyBroadcast(intent);
4648            if (newDefaultAgent != null) {
4649                sendConnectedBroadcast(newDefaultAgent.networkInfo);
4650            }
4651        }
4652    }
4653
4654    protected void notifyNetworkCallbacks(NetworkAgentInfo networkAgent, int notifyType) {
4655        if (DBG) log("notifyType " + notifyTypeToName(notifyType) + " for " + networkAgent.name());
4656        for (int i = 0; i < networkAgent.networkRequests.size(); i++) {
4657            NetworkRequest nr = networkAgent.networkRequests.valueAt(i);
4658            NetworkRequestInfo nri = mNetworkRequests.get(nr);
4659            if (VDBG) log(" sending notification for " + nr);
4660            if (nri.mPendingIntent == null) {
4661                callCallbackForRequest(nri, networkAgent, notifyType);
4662            } else {
4663                sendPendingIntentForRequest(nri, networkAgent, notifyType);
4664            }
4665        }
4666    }
4667
4668    private String notifyTypeToName(int notifyType) {
4669        switch (notifyType) {
4670            case ConnectivityManager.CALLBACK_PRECHECK:    return "PRECHECK";
4671            case ConnectivityManager.CALLBACK_AVAILABLE:   return "AVAILABLE";
4672            case ConnectivityManager.CALLBACK_LOSING:      return "LOSING";
4673            case ConnectivityManager.CALLBACK_LOST:        return "LOST";
4674            case ConnectivityManager.CALLBACK_UNAVAIL:     return "UNAVAILABLE";
4675            case ConnectivityManager.CALLBACK_CAP_CHANGED: return "CAP_CHANGED";
4676            case ConnectivityManager.CALLBACK_IP_CHANGED:  return "IP_CHANGED";
4677            case ConnectivityManager.CALLBACK_RELEASED:    return "RELEASED";
4678        }
4679        return "UNKNOWN";
4680    }
4681
4682    /**
4683     * Notify other system services that set of active ifaces has changed.
4684     */
4685    private void notifyIfacesChanged() {
4686        try {
4687            mStatsService.forceUpdateIfaces();
4688        } catch (Exception ignored) {
4689        }
4690    }
4691
4692    @Override
4693    public boolean addVpnAddress(String address, int prefixLength) {
4694        throwIfLockdownEnabled();
4695        int user = UserHandle.getUserId(Binder.getCallingUid());
4696        synchronized (mVpns) {
4697            return mVpns.get(user).addAddress(address, prefixLength);
4698        }
4699    }
4700
4701    @Override
4702    public boolean removeVpnAddress(String address, int prefixLength) {
4703        throwIfLockdownEnabled();
4704        int user = UserHandle.getUserId(Binder.getCallingUid());
4705        synchronized (mVpns) {
4706            return mVpns.get(user).removeAddress(address, prefixLength);
4707        }
4708    }
4709
4710    @Override
4711    public boolean setUnderlyingNetworksForVpn(Network[] networks) {
4712        throwIfLockdownEnabled();
4713        int user = UserHandle.getUserId(Binder.getCallingUid());
4714        boolean success;
4715        synchronized (mVpns) {
4716            success = mVpns.get(user).setUnderlyingNetworks(networks);
4717        }
4718        if (success) {
4719            notifyIfacesChanged();
4720        }
4721        return success;
4722    }
4723
4724    @Override
4725    public void factoryReset() {
4726        enforceConnectivityInternalPermission();
4727
4728        if (mUserManager.hasUserRestriction(UserManager.DISALLOW_NETWORK_RESET)) {
4729            return;
4730        }
4731
4732        final int userId = UserHandle.getCallingUserId();
4733
4734        // Turn airplane mode off
4735        setAirplaneMode(false);
4736
4737        if (!mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_TETHERING)) {
4738            // Untether
4739            for (String tether : getTetheredIfaces()) {
4740                untether(tether);
4741            }
4742        }
4743
4744        if (!mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_VPN)) {
4745            // Turn VPN off
4746            VpnConfig vpnConfig = getVpnConfig(userId);
4747            if (vpnConfig != null) {
4748                if (vpnConfig.legacy) {
4749                    prepareVpn(VpnConfig.LEGACY_VPN, VpnConfig.LEGACY_VPN, userId);
4750                } else {
4751                    // Prevent this app (packagename = vpnConfig.user) from initiating VPN connections
4752                    // in the future without user intervention.
4753                    setVpnPackageAuthorization(vpnConfig.user, userId, false);
4754
4755                    prepareVpn(vpnConfig.user, VpnConfig.LEGACY_VPN, userId);
4756                }
4757            }
4758        }
4759    }
4760}
4761