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