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