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