ConnectivityService.java revision 9936484667620ff20905ea8524265b4add39cd63
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    // Is nai unneeded by all NetworkRequests (and should be disconnected)?
2272    // For validated Networks this is simply whether it is satsifying any NetworkRequests.
2273    // For unvalidated Networks this is whether it is satsifying any NetworkRequests or
2274    // were it to become validated, would it have a chance of satisfying any NetworkRequests.
2275    private boolean unneeded(NetworkAgentInfo nai) {
2276        if (!nai.created || nai.isVPN()) return false;
2277        boolean unneeded = true;
2278        if (nai.everValidated) {
2279            for (int i = 0; i < nai.networkRequests.size() && unneeded; i++) {
2280                final NetworkRequest nr = nai.networkRequests.valueAt(i);
2281                try {
2282                    if (isRequest(nr)) unneeded = false;
2283                } catch (Exception e) {
2284                    loge("Request " + nr + " not found in mNetworkRequests.");
2285                    loge("  it came from request list  of " + nai.name());
2286                }
2287            }
2288        } else {
2289            for (NetworkRequestInfo nri : mNetworkRequests.values()) {
2290                // If this Network is already the highest scoring Network for a request, or if
2291                // there is hope for it to become one if it validated, then it is needed.
2292                if (nri.isRequest && nai.satisfies(nri.request) &&
2293                        (nai.networkRequests.get(nri.request.requestId) != null ||
2294                        // Note that this catches two important cases:
2295                        // 1. Unvalidated cellular will not be reaped when unvalidated WiFi
2296                        //    is currently satisfying the request.  This is desirable when
2297                        //    cellular ends up validating but WiFi does not.
2298                        // 2. Unvalidated WiFi will not be reaped when validated cellular
2299                        //    is currently satsifying the request.  This is desirable when
2300                        //    WiFi ends up validating and out scoring cellular.
2301                        mNetworkForRequestId.get(nri.request.requestId).getCurrentScore() <
2302                                nai.getCurrentScoreAsValidated())) {
2303                    unneeded = false;
2304                    break;
2305                }
2306            }
2307        }
2308        return unneeded;
2309    }
2310
2311    private void handleReleaseNetworkRequest(NetworkRequest request, int callingUid) {
2312        NetworkRequestInfo nri = mNetworkRequests.get(request);
2313        if (nri != null) {
2314            if (Process.SYSTEM_UID != callingUid && nri.mUid != callingUid) {
2315                if (DBG) log("Attempt to release unowned NetworkRequest " + request);
2316                return;
2317            }
2318            if (DBG) log("releasing NetworkRequest " + request);
2319            nri.unlinkDeathRecipient();
2320            mNetworkRequests.remove(request);
2321            if (nri.isRequest) {
2322                // Find all networks that are satisfying this request and remove the request
2323                // from their request lists.
2324                for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2325                    if (nai.networkRequests.get(nri.request.requestId) != null) {
2326                        nai.networkRequests.remove(nri.request.requestId);
2327                        if (DBG) {
2328                            log(" Removing from current network " + nai.name() +
2329                                    ", leaving " + nai.networkRequests.size() +
2330                                    " requests.");
2331                        }
2332                        if (unneeded(nai)) {
2333                            if (DBG) log("no live requests for " + nai.name() + "; disconnecting");
2334                            teardownUnneededNetwork(nai);
2335                        }
2336                    }
2337                }
2338
2339                // Maintain the illusion.  When this request arrived, we might have pretended
2340                // that a network connected to serve it, even though the network was already
2341                // connected.  Now that this request has gone away, we might have to pretend
2342                // that the network disconnected.  LegacyTypeTracker will generate that
2343                // phantom disconnect for this type.
2344                NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId);
2345                if (nai != null) {
2346                    mNetworkForRequestId.remove(nri.request.requestId);
2347                    if (nri.request.legacyType != TYPE_NONE) {
2348                        mLegacyTypeTracker.remove(nri.request.legacyType, nai);
2349                    }
2350                }
2351
2352                for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
2353                    nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_CANCEL_REQUEST,
2354                            nri.request);
2355                }
2356            } else {
2357                // listens don't have a singular affectedNetwork.  Check all networks to see
2358                // if this listen request applies and remove it.
2359                for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2360                    nai.networkRequests.remove(nri.request.requestId);
2361                }
2362            }
2363            callCallbackForRequest(nri, null, ConnectivityManager.CALLBACK_RELEASED);
2364        }
2365    }
2366
2367    private class InternalHandler extends Handler {
2368        public InternalHandler(Looper looper) {
2369            super(looper);
2370        }
2371
2372        @Override
2373        public void handleMessage(Message msg) {
2374            switch (msg.what) {
2375                case EVENT_EXPIRE_NET_TRANSITION_WAKELOCK:
2376                case EVENT_CLEAR_NET_TRANSITION_WAKELOCK: {
2377                    String causedBy = null;
2378                    synchronized (ConnectivityService.this) {
2379                        if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
2380                                mNetTransitionWakeLock.isHeld()) {
2381                            mNetTransitionWakeLock.release();
2382                            causedBy = mNetTransitionWakeLockCausedBy;
2383                        } else {
2384                            break;
2385                        }
2386                    }
2387                    if (msg.what == EVENT_EXPIRE_NET_TRANSITION_WAKELOCK) {
2388                        log("Failed to find a new network - expiring NetTransition Wakelock");
2389                    } else {
2390                        log("NetTransition Wakelock (" + (causedBy == null ? "unknown" : causedBy) +
2391                                " cleared because we found a replacement network");
2392                    }
2393                    break;
2394                }
2395                case EVENT_APPLY_GLOBAL_HTTP_PROXY: {
2396                    handleDeprecatedGlobalHttpProxy();
2397                    break;
2398                }
2399                case EVENT_SET_DEPENDENCY_MET: {
2400                    boolean met = (msg.arg1 == ENABLED);
2401                    handleSetDependencyMet(msg.arg2, met);
2402                    break;
2403                }
2404                case EVENT_SEND_STICKY_BROADCAST_INTENT: {
2405                    Intent intent = (Intent)msg.obj;
2406                    sendStickyBroadcast(intent);
2407                    break;
2408                }
2409                case EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: {
2410                    int tag = mEnableFailFastMobileDataTag.get();
2411                    if (msg.arg1 == tag) {
2412                        MobileDataStateTracker mobileDst =
2413                            (MobileDataStateTracker) mNetTrackers[ConnectivityManager.TYPE_MOBILE];
2414                        if (mobileDst != null) {
2415                            mobileDst.setEnableFailFastMobileData(msg.arg2);
2416                        }
2417                    } else {
2418                        log("EVENT_ENABLE_FAIL_FAST_MOBILE_DATA: stale arg1:" + msg.arg1
2419                                + " != tag:" + tag);
2420                    }
2421                    break;
2422                }
2423                case EVENT_SAMPLE_INTERVAL_ELAPSED: {
2424                    handleNetworkSamplingTimeout();
2425                    break;
2426                }
2427                case EVENT_PROXY_HAS_CHANGED: {
2428                    handleApplyDefaultProxy((ProxyInfo)msg.obj);
2429                    break;
2430                }
2431                case EVENT_REGISTER_NETWORK_FACTORY: {
2432                    handleRegisterNetworkFactory((NetworkFactoryInfo)msg.obj);
2433                    break;
2434                }
2435                case EVENT_UNREGISTER_NETWORK_FACTORY: {
2436                    handleUnregisterNetworkFactory((Messenger)msg.obj);
2437                    break;
2438                }
2439                case EVENT_REGISTER_NETWORK_AGENT: {
2440                    handleRegisterNetworkAgent((NetworkAgentInfo)msg.obj);
2441                    break;
2442                }
2443                case EVENT_REGISTER_NETWORK_REQUEST:
2444                case EVENT_REGISTER_NETWORK_LISTENER: {
2445                    handleRegisterNetworkRequest(msg);
2446                    break;
2447                }
2448                case EVENT_REGISTER_NETWORK_REQUEST_WITH_INTENT: {
2449                    handleRegisterNetworkRequestWithIntent(msg);
2450                    break;
2451                }
2452                case EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT: {
2453                    handleReleaseNetworkRequestWithIntent((PendingIntent) msg.obj, msg.arg1);
2454                    break;
2455                }
2456                case EVENT_RELEASE_NETWORK_REQUEST: {
2457                    handleReleaseNetworkRequest((NetworkRequest) msg.obj, msg.arg1);
2458                    break;
2459                }
2460                case EVENT_SYSTEM_READY: {
2461                    for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
2462                        nai.networkMonitor.systemReady = true;
2463                    }
2464                    break;
2465                }
2466            }
2467        }
2468    }
2469
2470    // javadoc from interface
2471    public int tether(String iface) {
2472        ConnectivityManager.enforceTetherChangePermission(mContext);
2473        if (isTetheringSupported()) {
2474            return mTethering.tether(iface);
2475        } else {
2476            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2477        }
2478    }
2479
2480    // javadoc from interface
2481    public int untether(String iface) {
2482        ConnectivityManager.enforceTetherChangePermission(mContext);
2483
2484        if (isTetheringSupported()) {
2485            return mTethering.untether(iface);
2486        } else {
2487            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2488        }
2489    }
2490
2491    // javadoc from interface
2492    public int getLastTetherError(String iface) {
2493        enforceTetherAccessPermission();
2494
2495        if (isTetheringSupported()) {
2496            return mTethering.getLastTetherError(iface);
2497        } else {
2498            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2499        }
2500    }
2501
2502    // TODO - proper iface API for selection by property, inspection, etc
2503    public String[] getTetherableUsbRegexs() {
2504        enforceTetherAccessPermission();
2505        if (isTetheringSupported()) {
2506            return mTethering.getTetherableUsbRegexs();
2507        } else {
2508            return new String[0];
2509        }
2510    }
2511
2512    public String[] getTetherableWifiRegexs() {
2513        enforceTetherAccessPermission();
2514        if (isTetheringSupported()) {
2515            return mTethering.getTetherableWifiRegexs();
2516        } else {
2517            return new String[0];
2518        }
2519    }
2520
2521    public String[] getTetherableBluetoothRegexs() {
2522        enforceTetherAccessPermission();
2523        if (isTetheringSupported()) {
2524            return mTethering.getTetherableBluetoothRegexs();
2525        } else {
2526            return new String[0];
2527        }
2528    }
2529
2530    public int setUsbTethering(boolean enable) {
2531        ConnectivityManager.enforceTetherChangePermission(mContext);
2532        if (isTetheringSupported()) {
2533            return mTethering.setUsbTethering(enable);
2534        } else {
2535            return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
2536        }
2537    }
2538
2539    // TODO - move iface listing, queries, etc to new module
2540    // javadoc from interface
2541    public String[] getTetherableIfaces() {
2542        enforceTetherAccessPermission();
2543        return mTethering.getTetherableIfaces();
2544    }
2545
2546    public String[] getTetheredIfaces() {
2547        enforceTetherAccessPermission();
2548        return mTethering.getTetheredIfaces();
2549    }
2550
2551    public String[] getTetheringErroredIfaces() {
2552        enforceTetherAccessPermission();
2553        return mTethering.getErroredIfaces();
2554    }
2555
2556    public String[] getTetheredDhcpRanges() {
2557        enforceConnectivityInternalPermission();
2558        return mTethering.getTetheredDhcpRanges();
2559    }
2560
2561    // if ro.tether.denied = true we default to no tethering
2562    // gservices could set the secure setting to 1 though to enable it on a build where it
2563    // had previously been turned off.
2564    public boolean isTetheringSupported() {
2565        enforceTetherAccessPermission();
2566        int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
2567        boolean tetherEnabledInSettings = (Settings.Global.getInt(mContext.getContentResolver(),
2568                Settings.Global.TETHER_SUPPORTED, defaultVal) != 0)
2569                && !mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_TETHERING);
2570        return tetherEnabledInSettings && ((mTethering.getTetherableUsbRegexs().length != 0 ||
2571                mTethering.getTetherableWifiRegexs().length != 0 ||
2572                mTethering.getTetherableBluetoothRegexs().length != 0) &&
2573                mTethering.getUpstreamIfaceTypes().length != 0);
2574    }
2575
2576    // Called when we lose the default network and have no replacement yet.
2577    // This will automatically be cleared after X seconds or a new default network
2578    // becomes CONNECTED, whichever happens first.  The timer is started by the
2579    // first caller and not restarted by subsequent callers.
2580    private void requestNetworkTransitionWakelock(String forWhom) {
2581        int serialNum = 0;
2582        synchronized (this) {
2583            if (mNetTransitionWakeLock.isHeld()) return;
2584            serialNum = ++mNetTransitionWakeLockSerialNumber;
2585            mNetTransitionWakeLock.acquire();
2586            mNetTransitionWakeLockCausedBy = forWhom;
2587        }
2588        mHandler.sendMessageDelayed(mHandler.obtainMessage(
2589                EVENT_EXPIRE_NET_TRANSITION_WAKELOCK, serialNum, 0),
2590                mNetTransitionWakeLockTimeout);
2591        return;
2592    }
2593
2594    // 100 percent is full good, 0 is full bad.
2595    public void reportInetCondition(int networkType, int percentage) {
2596        if (percentage > 50) return;  // don't handle good network reports
2597        NetworkAgentInfo nai = mLegacyTypeTracker.getNetworkForType(networkType);
2598        if (nai != null) reportBadNetwork(nai.network);
2599    }
2600
2601    public void reportBadNetwork(Network network) {
2602        enforceAccessPermission();
2603        enforceInternetPermission();
2604
2605        if (network == null) return;
2606
2607        final int uid = Binder.getCallingUid();
2608        NetworkAgentInfo nai = getNetworkAgentInfoForNetwork(network);
2609        if (nai == null) return;
2610        if (DBG) log("reportBadNetwork(" + nai.name() + ") by " + uid);
2611        synchronized (nai) {
2612            // Validating an uncreated network could result in a call to rematchNetworkAndRequests()
2613            // which isn't meant to work on uncreated networks.
2614            if (!nai.created) return;
2615
2616            if (isNetworkWithLinkPropertiesBlocked(nai.linkProperties, uid)) return;
2617
2618            nai.networkMonitor.sendMessage(NetworkMonitor.CMD_FORCE_REEVALUATION, uid);
2619        }
2620    }
2621
2622    public ProxyInfo getDefaultProxy() {
2623        // this information is already available as a world read/writable jvm property
2624        // so this API change wouldn't have a benifit.  It also breaks the passing
2625        // of proxy info to all the JVMs.
2626        // enforceAccessPermission();
2627        synchronized (mProxyLock) {
2628            ProxyInfo ret = mGlobalProxy;
2629            if ((ret == null) && !mDefaultProxyDisabled) ret = mDefaultProxy;
2630            return ret;
2631        }
2632    }
2633
2634    // Convert empty ProxyInfo's to null as null-checks are used to determine if proxies are present
2635    // (e.g. if mGlobalProxy==null fall back to network-specific proxy, if network-specific
2636    // proxy is null then there is no proxy in place).
2637    private ProxyInfo canonicalizeProxyInfo(ProxyInfo proxy) {
2638        if (proxy != null && TextUtils.isEmpty(proxy.getHost())
2639                && (proxy.getPacFileUrl() == null || Uri.EMPTY.equals(proxy.getPacFileUrl()))) {
2640            proxy = null;
2641        }
2642        return proxy;
2643    }
2644
2645    // ProxyInfo equality function with a couple modifications over ProxyInfo.equals() to make it
2646    // better for determining if a new proxy broadcast is necessary:
2647    // 1. Canonicalize empty ProxyInfos to null so an empty proxy compares equal to null so as to
2648    //    avoid unnecessary broadcasts.
2649    // 2. Make sure all parts of the ProxyInfo's compare true, including the host when a PAC URL
2650    //    is in place.  This is important so legacy PAC resolver (see com.android.proxyhandler)
2651    //    changes aren't missed.  The legacy PAC resolver pretends to be a simple HTTP proxy but
2652    //    actually uses the PAC to resolve; this results in ProxyInfo's with PAC URL, host and port
2653    //    all set.
2654    private boolean proxyInfoEqual(ProxyInfo a, ProxyInfo b) {
2655        a = canonicalizeProxyInfo(a);
2656        b = canonicalizeProxyInfo(b);
2657        // ProxyInfo.equals() doesn't check hosts when PAC URLs are present, but we need to check
2658        // hosts even when PAC URLs are present to account for the legacy PAC resolver.
2659        return Objects.equals(a, b) && (a == null || Objects.equals(a.getHost(), b.getHost()));
2660    }
2661
2662    public void setGlobalProxy(ProxyInfo proxyProperties) {
2663        enforceConnectivityInternalPermission();
2664
2665        synchronized (mProxyLock) {
2666            if (proxyProperties == mGlobalProxy) return;
2667            if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
2668            if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
2669
2670            String host = "";
2671            int port = 0;
2672            String exclList = "";
2673            String pacFileUrl = "";
2674            if (proxyProperties != null && (!TextUtils.isEmpty(proxyProperties.getHost()) ||
2675                    !Uri.EMPTY.equals(proxyProperties.getPacFileUrl()))) {
2676                if (!proxyProperties.isValid()) {
2677                    if (DBG)
2678                        log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
2679                    return;
2680                }
2681                mGlobalProxy = new ProxyInfo(proxyProperties);
2682                host = mGlobalProxy.getHost();
2683                port = mGlobalProxy.getPort();
2684                exclList = mGlobalProxy.getExclusionListAsString();
2685                if (!Uri.EMPTY.equals(proxyProperties.getPacFileUrl())) {
2686                    pacFileUrl = proxyProperties.getPacFileUrl().toString();
2687                }
2688            } else {
2689                mGlobalProxy = null;
2690            }
2691            ContentResolver res = mContext.getContentResolver();
2692            final long token = Binder.clearCallingIdentity();
2693            try {
2694                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST, host);
2695                Settings.Global.putInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, port);
2696                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
2697                        exclList);
2698                Settings.Global.putString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC, pacFileUrl);
2699            } finally {
2700                Binder.restoreCallingIdentity(token);
2701            }
2702
2703            if (mGlobalProxy == null) {
2704                proxyProperties = mDefaultProxy;
2705            }
2706            sendProxyBroadcast(proxyProperties);
2707        }
2708    }
2709
2710    private void loadGlobalProxy() {
2711        ContentResolver res = mContext.getContentResolver();
2712        String host = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_HOST);
2713        int port = Settings.Global.getInt(res, Settings.Global.GLOBAL_HTTP_PROXY_PORT, 0);
2714        String exclList = Settings.Global.getString(res,
2715                Settings.Global.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
2716        String pacFileUrl = Settings.Global.getString(res, Settings.Global.GLOBAL_HTTP_PROXY_PAC);
2717        if (!TextUtils.isEmpty(host) || !TextUtils.isEmpty(pacFileUrl)) {
2718            ProxyInfo proxyProperties;
2719            if (!TextUtils.isEmpty(pacFileUrl)) {
2720                proxyProperties = new ProxyInfo(pacFileUrl);
2721            } else {
2722                proxyProperties = new ProxyInfo(host, port, exclList);
2723            }
2724            if (!proxyProperties.isValid()) {
2725                if (DBG) log("Invalid proxy properties, ignoring: " + proxyProperties.toString());
2726                return;
2727            }
2728
2729            synchronized (mProxyLock) {
2730                mGlobalProxy = proxyProperties;
2731            }
2732        }
2733    }
2734
2735    public ProxyInfo getGlobalProxy() {
2736        // this information is already available as a world read/writable jvm property
2737        // so this API change wouldn't have a benifit.  It also breaks the passing
2738        // of proxy info to all the JVMs.
2739        // enforceAccessPermission();
2740        synchronized (mProxyLock) {
2741            return mGlobalProxy;
2742        }
2743    }
2744
2745    private void handleApplyDefaultProxy(ProxyInfo proxy) {
2746        if (proxy != null && TextUtils.isEmpty(proxy.getHost())
2747                && Uri.EMPTY.equals(proxy.getPacFileUrl())) {
2748            proxy = null;
2749        }
2750        synchronized (mProxyLock) {
2751            if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
2752            if (mDefaultProxy == proxy) return; // catches repeated nulls
2753            if (proxy != null &&  !proxy.isValid()) {
2754                if (DBG) log("Invalid proxy properties, ignoring: " + proxy.toString());
2755                return;
2756            }
2757
2758            // This call could be coming from the PacManager, containing the port of the local
2759            // proxy.  If this new proxy matches the global proxy then copy this proxy to the
2760            // global (to get the correct local port), and send a broadcast.
2761            // TODO: Switch PacManager to have its own message to send back rather than
2762            // reusing EVENT_HAS_CHANGED_PROXY and this call to handleApplyDefaultProxy.
2763            if ((mGlobalProxy != null) && (proxy != null)
2764                    && (!Uri.EMPTY.equals(proxy.getPacFileUrl()))
2765                    && proxy.getPacFileUrl().equals(mGlobalProxy.getPacFileUrl())) {
2766                mGlobalProxy = proxy;
2767                sendProxyBroadcast(mGlobalProxy);
2768                return;
2769            }
2770            mDefaultProxy = proxy;
2771
2772            if (mGlobalProxy != null) return;
2773            if (!mDefaultProxyDisabled) {
2774                sendProxyBroadcast(proxy);
2775            }
2776        }
2777    }
2778
2779    // If the proxy has changed from oldLp to newLp, resend proxy broadcast with default proxy.
2780    // This method gets called when any network changes proxy, but the broadcast only ever contains
2781    // the default proxy (even if it hasn't changed).
2782    // TODO: Deprecate the broadcast extras as they aren't necessarily applicable in a multi-network
2783    // world where an app might be bound to a non-default network.
2784    private void updateProxy(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) {
2785        ProxyInfo newProxyInfo = newLp == null ? null : newLp.getHttpProxy();
2786        ProxyInfo oldProxyInfo = oldLp == null ? null : oldLp.getHttpProxy();
2787
2788        if (!proxyInfoEqual(newProxyInfo, oldProxyInfo)) {
2789            sendProxyBroadcast(getDefaultProxy());
2790        }
2791    }
2792
2793    private void handleDeprecatedGlobalHttpProxy() {
2794        String proxy = Settings.Global.getString(mContext.getContentResolver(),
2795                Settings.Global.HTTP_PROXY);
2796        if (!TextUtils.isEmpty(proxy)) {
2797            String data[] = proxy.split(":");
2798            if (data.length == 0) {
2799                return;
2800            }
2801
2802            String proxyHost =  data[0];
2803            int proxyPort = 8080;
2804            if (data.length > 1) {
2805                try {
2806                    proxyPort = Integer.parseInt(data[1]);
2807                } catch (NumberFormatException e) {
2808                    return;
2809                }
2810            }
2811            ProxyInfo p = new ProxyInfo(data[0], proxyPort, "");
2812            setGlobalProxy(p);
2813        }
2814    }
2815
2816    private void sendProxyBroadcast(ProxyInfo proxy) {
2817        if (proxy == null) proxy = new ProxyInfo("", 0, "");
2818        if (mPacManager.setCurrentProxyScriptUrl(proxy)) return;
2819        if (DBG) log("sending Proxy Broadcast for " + proxy);
2820        Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
2821        intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
2822            Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
2823        intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
2824        final long ident = Binder.clearCallingIdentity();
2825        try {
2826            mContext.sendStickyBroadcastAsUser(intent, UserHandle.ALL);
2827        } finally {
2828            Binder.restoreCallingIdentity(ident);
2829        }
2830    }
2831
2832    private static class SettingsObserver extends ContentObserver {
2833        private int mWhat;
2834        private Handler mHandler;
2835        SettingsObserver(Handler handler, int what) {
2836            super(handler);
2837            mHandler = handler;
2838            mWhat = what;
2839        }
2840
2841        void observe(Context context) {
2842            ContentResolver resolver = context.getContentResolver();
2843            resolver.registerContentObserver(Settings.Global.getUriFor(
2844                    Settings.Global.HTTP_PROXY), false, this);
2845        }
2846
2847        @Override
2848        public void onChange(boolean selfChange) {
2849            mHandler.obtainMessage(mWhat).sendToTarget();
2850        }
2851    }
2852
2853    private static void log(String s) {
2854        Slog.d(TAG, s);
2855    }
2856
2857    private static void loge(String s) {
2858        Slog.e(TAG, s);
2859    }
2860
2861    private static <T> T checkNotNull(T value, String message) {
2862        if (value == null) {
2863            throw new NullPointerException(message);
2864        }
2865        return value;
2866    }
2867
2868    /**
2869     * Prepare for a VPN application.
2870     * Permissions are checked in Vpn class.
2871     * @hide
2872     */
2873    @Override
2874    public boolean prepareVpn(String oldPackage, String newPackage) {
2875        throwIfLockdownEnabled();
2876        int user = UserHandle.getUserId(Binder.getCallingUid());
2877        synchronized(mVpns) {
2878            return mVpns.get(user).prepare(oldPackage, newPackage);
2879        }
2880    }
2881
2882    /**
2883     * Set whether the current VPN package has the ability to launch VPNs without
2884     * user intervention. This method is used by system-privileged apps.
2885     * Permissions are checked in Vpn class.
2886     * @hide
2887     */
2888    @Override
2889    public void setVpnPackageAuthorization(boolean authorized) {
2890        int user = UserHandle.getUserId(Binder.getCallingUid());
2891        synchronized(mVpns) {
2892            mVpns.get(user).setPackageAuthorization(authorized);
2893        }
2894    }
2895
2896    /**
2897     * Configure a TUN interface and return its file descriptor. Parameters
2898     * are encoded and opaque to this class. This method is used by VpnBuilder
2899     * and not available in ConnectivityManager. Permissions are checked in
2900     * Vpn class.
2901     * @hide
2902     */
2903    @Override
2904    public ParcelFileDescriptor establishVpn(VpnConfig config) {
2905        throwIfLockdownEnabled();
2906        int user = UserHandle.getUserId(Binder.getCallingUid());
2907        synchronized(mVpns) {
2908            return mVpns.get(user).establish(config);
2909        }
2910    }
2911
2912    /**
2913     * Start legacy VPN, controlling native daemons as needed. Creates a
2914     * secondary thread to perform connection work, returning quickly.
2915     */
2916    @Override
2917    public void startLegacyVpn(VpnProfile profile) {
2918        throwIfLockdownEnabled();
2919        final LinkProperties egress = getActiveLinkProperties();
2920        if (egress == null) {
2921            throw new IllegalStateException("Missing active network connection");
2922        }
2923        int user = UserHandle.getUserId(Binder.getCallingUid());
2924        synchronized(mVpns) {
2925            mVpns.get(user).startLegacyVpn(profile, mKeyStore, egress);
2926        }
2927    }
2928
2929    /**
2930     * Return the information of the ongoing legacy VPN. This method is used
2931     * by VpnSettings and not available in ConnectivityManager. Permissions
2932     * are checked in Vpn class.
2933     * @hide
2934     */
2935    @Override
2936    public LegacyVpnInfo getLegacyVpnInfo() {
2937        throwIfLockdownEnabled();
2938        int user = UserHandle.getUserId(Binder.getCallingUid());
2939        synchronized(mVpns) {
2940            return mVpns.get(user).getLegacyVpnInfo();
2941        }
2942    }
2943
2944    /**
2945     * Returns the information of the ongoing VPN. This method is used by VpnDialogs and
2946     * not available in ConnectivityManager.
2947     * Permissions are checked in Vpn class.
2948     * @hide
2949     */
2950    @Override
2951    public VpnConfig getVpnConfig() {
2952        int user = UserHandle.getUserId(Binder.getCallingUid());
2953        synchronized(mVpns) {
2954            return mVpns.get(user).getVpnConfig();
2955        }
2956    }
2957
2958    @Override
2959    public boolean updateLockdownVpn() {
2960        if (Binder.getCallingUid() != Process.SYSTEM_UID) {
2961            Slog.w(TAG, "Lockdown VPN only available to AID_SYSTEM");
2962            return false;
2963        }
2964
2965        // Tear down existing lockdown if profile was removed
2966        mLockdownEnabled = LockdownVpnTracker.isEnabled();
2967        if (mLockdownEnabled) {
2968            if (!mKeyStore.isUnlocked()) {
2969                Slog.w(TAG, "KeyStore locked; unable to create LockdownTracker");
2970                return false;
2971            }
2972
2973            final String profileName = new String(mKeyStore.get(Credentials.LOCKDOWN_VPN));
2974            final VpnProfile profile = VpnProfile.decode(
2975                    profileName, mKeyStore.get(Credentials.VPN + profileName));
2976            int user = UserHandle.getUserId(Binder.getCallingUid());
2977            synchronized(mVpns) {
2978                setLockdownTracker(new LockdownVpnTracker(mContext, mNetd, this, mVpns.get(user),
2979                            profile));
2980            }
2981        } else {
2982            setLockdownTracker(null);
2983        }
2984
2985        return true;
2986    }
2987
2988    /**
2989     * Internally set new {@link LockdownVpnTracker}, shutting down any existing
2990     * {@link LockdownVpnTracker}. Can be {@code null} to disable lockdown.
2991     */
2992    private void setLockdownTracker(LockdownVpnTracker tracker) {
2993        // Shutdown any existing tracker
2994        final LockdownVpnTracker existing = mLockdownTracker;
2995        mLockdownTracker = null;
2996        if (existing != null) {
2997            existing.shutdown();
2998        }
2999
3000        try {
3001            if (tracker != null) {
3002                mNetd.setFirewallEnabled(true);
3003                mNetd.setFirewallInterfaceRule("lo", true);
3004                mLockdownTracker = tracker;
3005                mLockdownTracker.init();
3006            } else {
3007                mNetd.setFirewallEnabled(false);
3008            }
3009        } catch (RemoteException e) {
3010            // ignored; NMS lives inside system_server
3011        }
3012    }
3013
3014    private void throwIfLockdownEnabled() {
3015        if (mLockdownEnabled) {
3016            throw new IllegalStateException("Unavailable in lockdown mode");
3017        }
3018    }
3019
3020    public void supplyMessenger(int networkType, Messenger messenger) {
3021        enforceConnectivityInternalPermission();
3022
3023        if (isNetworkTypeValid(networkType) && mNetTrackers[networkType] != null) {
3024            mNetTrackers[networkType].supplyMessenger(messenger);
3025        }
3026    }
3027
3028    public int findConnectionTypeForIface(String iface) {
3029        enforceConnectivityInternalPermission();
3030
3031        if (TextUtils.isEmpty(iface)) return ConnectivityManager.TYPE_NONE;
3032
3033        synchronized(mNetworkForNetId) {
3034            for (int i = 0; i < mNetworkForNetId.size(); i++) {
3035                NetworkAgentInfo nai = mNetworkForNetId.valueAt(i);
3036                LinkProperties lp = nai.linkProperties;
3037                if (lp != null && iface.equals(lp.getInterfaceName()) && nai.networkInfo != null) {
3038                    return nai.networkInfo.getType();
3039                }
3040            }
3041        }
3042        return ConnectivityManager.TYPE_NONE;
3043    }
3044
3045    /**
3046     * Have mobile data fail fast if enabled.
3047     *
3048     * @param enabled DctConstants.ENABLED/DISABLED
3049     */
3050    private void setEnableFailFastMobileData(int enabled) {
3051        int tag;
3052
3053        if (enabled == DctConstants.ENABLED) {
3054            tag = mEnableFailFastMobileDataTag.incrementAndGet();
3055        } else {
3056            tag = mEnableFailFastMobileDataTag.get();
3057        }
3058        mHandler.sendMessage(mHandler.obtainMessage(EVENT_ENABLE_FAIL_FAST_MOBILE_DATA, tag,
3059                         enabled));
3060    }
3061
3062    @Override
3063    public int checkMobileProvisioning(int suggestedTimeOutMs) {
3064        // TODO: Remove?  Any reason to trigger a provisioning check?
3065        return -1;
3066    }
3067
3068    private static final String NOTIFICATION_ID = "CaptivePortal.Notification";
3069    private volatile boolean mIsNotificationVisible = false;
3070
3071    private void setProvNotificationVisible(boolean visible, int networkType, String action) {
3072        if (DBG) {
3073            log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
3074                + " action=" + action);
3075        }
3076        Intent intent = new Intent(action);
3077        PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
3078        // Concatenate the range of types onto the range of NetIDs.
3079        int id = MAX_NET_ID + 1 + (networkType - ConnectivityManager.TYPE_NONE);
3080        setProvNotificationVisibleIntent(visible, id, networkType, null, pendingIntent);
3081    }
3082
3083    /**
3084     * Show or hide network provisioning notificaitons.
3085     *
3086     * @param id an identifier that uniquely identifies this notification.  This must match
3087     *         between show and hide calls.  We use the NetID value but for legacy callers
3088     *         we concatenate the range of types with the range of NetIDs.
3089     */
3090    private void setProvNotificationVisibleIntent(boolean visible, int id, int networkType,
3091            String extraInfo, PendingIntent intent) {
3092        if (DBG) {
3093            log("setProvNotificationVisibleIntent: E visible=" + visible + " networkType=" +
3094                networkType + " extraInfo=" + extraInfo);
3095        }
3096
3097        Resources r = Resources.getSystem();
3098        NotificationManager notificationManager = (NotificationManager) mContext
3099            .getSystemService(Context.NOTIFICATION_SERVICE);
3100
3101        if (visible) {
3102            CharSequence title;
3103            CharSequence details;
3104            int icon;
3105            Notification notification = new Notification();
3106            switch (networkType) {
3107                case ConnectivityManager.TYPE_WIFI:
3108                    title = r.getString(R.string.wifi_available_sign_in, 0);
3109                    details = r.getString(R.string.network_available_sign_in_detailed,
3110                            extraInfo);
3111                    icon = R.drawable.stat_notify_wifi_in_range;
3112                    break;
3113                case ConnectivityManager.TYPE_MOBILE:
3114                case ConnectivityManager.TYPE_MOBILE_HIPRI:
3115                    title = r.getString(R.string.network_available_sign_in, 0);
3116                    // TODO: Change this to pull from NetworkInfo once a printable
3117                    // name has been added to it
3118                    details = mTelephonyManager.getNetworkOperatorName();
3119                    icon = R.drawable.stat_notify_rssi_in_range;
3120                    break;
3121                default:
3122                    title = r.getString(R.string.network_available_sign_in, 0);
3123                    details = r.getString(R.string.network_available_sign_in_detailed,
3124                            extraInfo);
3125                    icon = R.drawable.stat_notify_rssi_in_range;
3126                    break;
3127            }
3128
3129            notification.when = 0;
3130            notification.icon = icon;
3131            notification.flags = Notification.FLAG_AUTO_CANCEL;
3132            notification.tickerText = title;
3133            notification.color = mContext.getResources().getColor(
3134                    com.android.internal.R.color.system_notification_accent_color);
3135            notification.setLatestEventInfo(mContext, title, details, notification.contentIntent);
3136            notification.contentIntent = intent;
3137
3138            try {
3139                notificationManager.notify(NOTIFICATION_ID, id, notification);
3140            } catch (NullPointerException npe) {
3141                loge("setNotificaitionVisible: visible notificationManager npe=" + npe);
3142                npe.printStackTrace();
3143            }
3144        } else {
3145            try {
3146                notificationManager.cancel(NOTIFICATION_ID, id);
3147            } catch (NullPointerException npe) {
3148                loge("setNotificaitionVisible: cancel notificationManager npe=" + npe);
3149                npe.printStackTrace();
3150            }
3151        }
3152        mIsNotificationVisible = visible;
3153    }
3154
3155    /** Location to an updatable file listing carrier provisioning urls.
3156     *  An example:
3157     *
3158     * <?xml version="1.0" encoding="utf-8"?>
3159     *  <provisioningUrls>
3160     *   <provisioningUrl mcc="310" mnc="4">http://myserver.com/foo?mdn=%3$s&iccid=%1$s&imei=%2$s</provisioningUrl>
3161     *   <redirectedUrl mcc="310" mnc="4">http://www.google.com</redirectedUrl>
3162     *  </provisioningUrls>
3163     */
3164    private static final String PROVISIONING_URL_PATH =
3165            "/data/misc/radio/provisioning_urls.xml";
3166    private final File mProvisioningUrlFile = new File(PROVISIONING_URL_PATH);
3167
3168    /** XML tag for root element. */
3169    private static final String TAG_PROVISIONING_URLS = "provisioningUrls";
3170    /** XML tag for individual url */
3171    private static final String TAG_PROVISIONING_URL = "provisioningUrl";
3172    /** XML tag for redirected url */
3173    private static final String TAG_REDIRECTED_URL = "redirectedUrl";
3174    /** XML attribute for mcc */
3175    private static final String ATTR_MCC = "mcc";
3176    /** XML attribute for mnc */
3177    private static final String ATTR_MNC = "mnc";
3178
3179    private static final int REDIRECTED_PROVISIONING = 1;
3180    private static final int PROVISIONING = 2;
3181
3182    private String getProvisioningUrlBaseFromFile(int type) {
3183        FileReader fileReader = null;
3184        XmlPullParser parser = null;
3185        Configuration config = mContext.getResources().getConfiguration();
3186        String tagType;
3187
3188        switch (type) {
3189            case PROVISIONING:
3190                tagType = TAG_PROVISIONING_URL;
3191                break;
3192            case REDIRECTED_PROVISIONING:
3193                tagType = TAG_REDIRECTED_URL;
3194                break;
3195            default:
3196                throw new RuntimeException("getProvisioningUrlBaseFromFile: Unexpected parameter " +
3197                        type);
3198        }
3199
3200        try {
3201            fileReader = new FileReader(mProvisioningUrlFile);
3202            parser = Xml.newPullParser();
3203            parser.setInput(fileReader);
3204            XmlUtils.beginDocument(parser, TAG_PROVISIONING_URLS);
3205
3206            while (true) {
3207                XmlUtils.nextElement(parser);
3208
3209                String element = parser.getName();
3210                if (element == null) break;
3211
3212                if (element.equals(tagType)) {
3213                    String mcc = parser.getAttributeValue(null, ATTR_MCC);
3214                    try {
3215                        if (mcc != null && Integer.parseInt(mcc) == config.mcc) {
3216                            String mnc = parser.getAttributeValue(null, ATTR_MNC);
3217                            if (mnc != null && Integer.parseInt(mnc) == config.mnc) {
3218                                parser.next();
3219                                if (parser.getEventType() == XmlPullParser.TEXT) {
3220                                    return parser.getText();
3221                                }
3222                            }
3223                        }
3224                    } catch (NumberFormatException e) {
3225                        loge("NumberFormatException in getProvisioningUrlBaseFromFile: " + e);
3226                    }
3227                }
3228            }
3229            return null;
3230        } catch (FileNotFoundException e) {
3231            loge("Carrier Provisioning Urls file not found");
3232        } catch (XmlPullParserException e) {
3233            loge("Xml parser exception reading Carrier Provisioning Urls file: " + e);
3234        } catch (IOException e) {
3235            loge("I/O exception reading Carrier Provisioning Urls file: " + e);
3236        } finally {
3237            if (fileReader != null) {
3238                try {
3239                    fileReader.close();
3240                } catch (IOException e) {}
3241            }
3242        }
3243        return null;
3244    }
3245
3246    @Override
3247    public String getMobileRedirectedProvisioningUrl() {
3248        enforceConnectivityInternalPermission();
3249        String url = getProvisioningUrlBaseFromFile(REDIRECTED_PROVISIONING);
3250        if (TextUtils.isEmpty(url)) {
3251            url = mContext.getResources().getString(R.string.mobile_redirected_provisioning_url);
3252        }
3253        return url;
3254    }
3255
3256    @Override
3257    public String getMobileProvisioningUrl() {
3258        enforceConnectivityInternalPermission();
3259        String url = getProvisioningUrlBaseFromFile(PROVISIONING);
3260        if (TextUtils.isEmpty(url)) {
3261            url = mContext.getResources().getString(R.string.mobile_provisioning_url);
3262            log("getMobileProvisioningUrl: mobile_provisioining_url from resource =" + url);
3263        } else {
3264            log("getMobileProvisioningUrl: mobile_provisioning_url from File =" + url);
3265        }
3266        // populate the iccid, imei and phone number in the provisioning url.
3267        if (!TextUtils.isEmpty(url)) {
3268            String phoneNumber = mTelephonyManager.getLine1Number();
3269            if (TextUtils.isEmpty(phoneNumber)) {
3270                phoneNumber = "0000000000";
3271            }
3272            url = String.format(url,
3273                    mTelephonyManager.getSimSerialNumber() /* ICCID */,
3274                    mTelephonyManager.getDeviceId() /* IMEI */,
3275                    phoneNumber /* Phone numer */);
3276        }
3277
3278        return url;
3279    }
3280
3281    @Override
3282    public void setProvisioningNotificationVisible(boolean visible, int networkType,
3283            String action) {
3284        enforceConnectivityInternalPermission();
3285        final long ident = Binder.clearCallingIdentity();
3286        try {
3287            setProvNotificationVisible(visible, networkType, action);
3288        } finally {
3289            Binder.restoreCallingIdentity(ident);
3290        }
3291    }
3292
3293    @Override
3294    public void setAirplaneMode(boolean enable) {
3295        enforceConnectivityInternalPermission();
3296        final long ident = Binder.clearCallingIdentity();
3297        try {
3298            final ContentResolver cr = mContext.getContentResolver();
3299            Settings.Global.putInt(cr, Settings.Global.AIRPLANE_MODE_ON, enable ? 1 : 0);
3300            Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
3301            intent.putExtra("state", enable);
3302            mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
3303        } finally {
3304            Binder.restoreCallingIdentity(ident);
3305        }
3306    }
3307
3308    private void onUserStart(int userId) {
3309        synchronized(mVpns) {
3310            Vpn userVpn = mVpns.get(userId);
3311            if (userVpn != null) {
3312                loge("Starting user already has a VPN");
3313                return;
3314            }
3315            userVpn = new Vpn(mHandler.getLooper(), mContext, mNetd, this, userId);
3316            mVpns.put(userId, userVpn);
3317        }
3318    }
3319
3320    private void onUserStop(int userId) {
3321        synchronized(mVpns) {
3322            Vpn userVpn = mVpns.get(userId);
3323            if (userVpn == null) {
3324                loge("Stopping user has no VPN");
3325                return;
3326            }
3327            mVpns.delete(userId);
3328        }
3329    }
3330
3331    private BroadcastReceiver mUserIntentReceiver = new BroadcastReceiver() {
3332        @Override
3333        public void onReceive(Context context, Intent intent) {
3334            final String action = intent.getAction();
3335            final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, UserHandle.USER_NULL);
3336            if (userId == UserHandle.USER_NULL) return;
3337
3338            if (Intent.ACTION_USER_STARTING.equals(action)) {
3339                onUserStart(userId);
3340            } else if (Intent.ACTION_USER_STOPPING.equals(action)) {
3341                onUserStop(userId);
3342            }
3343        }
3344    };
3345
3346    /* Infrastructure for network sampling */
3347
3348    private void handleNetworkSamplingTimeout() {
3349
3350        if (SAMPLE_DBG) log("Sampling interval elapsed, updating statistics ..");
3351
3352        // initialize list of interfaces ..
3353        Map<String, SamplingDataTracker.SamplingSnapshot> mapIfaceToSample =
3354                new HashMap<String, SamplingDataTracker.SamplingSnapshot>();
3355        for (NetworkStateTracker tracker : mNetTrackers) {
3356            if (tracker != null) {
3357                String ifaceName = tracker.getNetworkInterfaceName();
3358                if (ifaceName != null) {
3359                    mapIfaceToSample.put(ifaceName, null);
3360                }
3361            }
3362        }
3363
3364        // Read samples for all interfaces
3365        SamplingDataTracker.getSamplingSnapshots(mapIfaceToSample);
3366
3367        // process samples for all networks
3368        for (NetworkStateTracker tracker : mNetTrackers) {
3369            if (tracker != null) {
3370                String ifaceName = tracker.getNetworkInterfaceName();
3371                SamplingDataTracker.SamplingSnapshot ss = mapIfaceToSample.get(ifaceName);
3372                if (ss != null) {
3373                    // end the previous sampling cycle
3374                    tracker.stopSampling(ss);
3375                    // start a new sampling cycle ..
3376                    tracker.startSampling(ss);
3377                }
3378            }
3379        }
3380
3381        if (SAMPLE_DBG) log("Done.");
3382
3383        int samplingIntervalInSeconds = Settings.Global.getInt(mContext.getContentResolver(),
3384                Settings.Global.CONNECTIVITY_SAMPLING_INTERVAL_IN_SECONDS,
3385                DEFAULT_SAMPLING_INTERVAL_IN_SECONDS);
3386
3387        if (SAMPLE_DBG) {
3388            log("Setting timer for " + String.valueOf(samplingIntervalInSeconds) + "seconds");
3389        }
3390
3391        setAlarm(samplingIntervalInSeconds * 1000, mSampleIntervalElapsedIntent);
3392    }
3393
3394    /**
3395     * Sets a network sampling alarm.
3396     */
3397    void setAlarm(int timeoutInMilliseconds, PendingIntent intent) {
3398        long wakeupTime = SystemClock.elapsedRealtime() + timeoutInMilliseconds;
3399        int alarmType;
3400        if (Resources.getSystem().getBoolean(
3401                R.bool.config_networkSamplingWakesDevice)) {
3402            alarmType = AlarmManager.ELAPSED_REALTIME_WAKEUP;
3403        } else {
3404            alarmType = AlarmManager.ELAPSED_REALTIME;
3405        }
3406        mAlarmManager.set(alarmType, wakeupTime, intent);
3407    }
3408
3409    private final HashMap<Messenger, NetworkFactoryInfo> mNetworkFactoryInfos =
3410            new HashMap<Messenger, NetworkFactoryInfo>();
3411    private final HashMap<NetworkRequest, NetworkRequestInfo> mNetworkRequests =
3412            new HashMap<NetworkRequest, NetworkRequestInfo>();
3413
3414    private static class NetworkFactoryInfo {
3415        public final String name;
3416        public final Messenger messenger;
3417        public final AsyncChannel asyncChannel;
3418
3419        public NetworkFactoryInfo(String name, Messenger messenger, AsyncChannel asyncChannel) {
3420            this.name = name;
3421            this.messenger = messenger;
3422            this.asyncChannel = asyncChannel;
3423        }
3424    }
3425
3426    /**
3427     * Tracks info about the requester.
3428     * Also used to notice when the calling process dies so we can self-expire
3429     */
3430    private class NetworkRequestInfo implements IBinder.DeathRecipient {
3431        static final boolean REQUEST = true;
3432        static final boolean LISTEN = false;
3433
3434        final NetworkRequest request;
3435        final PendingIntent mPendingIntent;
3436        boolean mPendingIntentSent;
3437        private final IBinder mBinder;
3438        final int mPid;
3439        final int mUid;
3440        final Messenger messenger;
3441        final boolean isRequest;
3442
3443        NetworkRequestInfo(NetworkRequest r, PendingIntent pi, boolean isRequest) {
3444            request = r;
3445            mPendingIntent = pi;
3446            messenger = null;
3447            mBinder = null;
3448            mPid = getCallingPid();
3449            mUid = getCallingUid();
3450            this.isRequest = isRequest;
3451        }
3452
3453        NetworkRequestInfo(Messenger m, NetworkRequest r, IBinder binder, boolean isRequest) {
3454            super();
3455            messenger = m;
3456            request = r;
3457            mBinder = binder;
3458            mPid = getCallingPid();
3459            mUid = getCallingUid();
3460            this.isRequest = isRequest;
3461            mPendingIntent = null;
3462
3463            try {
3464                mBinder.linkToDeath(this, 0);
3465            } catch (RemoteException e) {
3466                binderDied();
3467            }
3468        }
3469
3470        void unlinkDeathRecipient() {
3471            if (mBinder != null) {
3472                mBinder.unlinkToDeath(this, 0);
3473            }
3474        }
3475
3476        public void binderDied() {
3477            log("ConnectivityService NetworkRequestInfo binderDied(" +
3478                    request + ", " + mBinder + ")");
3479            releaseNetworkRequest(request);
3480        }
3481
3482        public String toString() {
3483            return (isRequest ? "Request" : "Listen") + " from uid/pid:" + mUid + "/" +
3484                    mPid + " for " + request +
3485                    (mPendingIntent == null ? "" : " to trigger " + mPendingIntent);
3486        }
3487    }
3488
3489    @Override
3490    public NetworkRequest requestNetwork(NetworkCapabilities networkCapabilities,
3491            Messenger messenger, int timeoutMs, IBinder binder, int legacyType) {
3492        networkCapabilities = new NetworkCapabilities(networkCapabilities);
3493        enforceNetworkRequestPermissions(networkCapabilities);
3494        enforceMeteredApnPolicy(networkCapabilities);
3495
3496        if (timeoutMs < 0 || timeoutMs > ConnectivityManager.MAX_NETWORK_REQUEST_TIMEOUT_MS) {
3497            throw new IllegalArgumentException("Bad timeout specified");
3498        }
3499
3500        NetworkRequest networkRequest = new NetworkRequest(networkCapabilities, legacyType,
3501                nextNetworkRequestId());
3502        if (DBG) log("requestNetwork for " + networkRequest);
3503        NetworkRequestInfo nri = new NetworkRequestInfo(messenger, networkRequest, binder,
3504                NetworkRequestInfo.REQUEST);
3505
3506        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_REQUEST, nri));
3507        if (timeoutMs > 0) {
3508            mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_TIMEOUT_NETWORK_REQUEST,
3509                    nri), timeoutMs);
3510        }
3511        return networkRequest;
3512    }
3513
3514    private void enforceNetworkRequestPermissions(NetworkCapabilities networkCapabilities) {
3515        if (networkCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED)
3516                == false) {
3517            enforceConnectivityInternalPermission();
3518        } else {
3519            enforceChangePermission();
3520        }
3521    }
3522
3523    private void enforceMeteredApnPolicy(NetworkCapabilities networkCapabilities) {
3524        // if UID is restricted, don't allow them to bring up metered APNs
3525        if (networkCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED)
3526                == false) {
3527            final int uidRules;
3528            final int uid = Binder.getCallingUid();
3529            synchronized(mRulesLock) {
3530                uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
3531            }
3532            if ((uidRules & RULE_REJECT_METERED) != 0) {
3533                // we could silently fail or we can filter the available nets to only give
3534                // them those they have access to.  Chose the more useful
3535                networkCapabilities.addCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED);
3536            }
3537        }
3538    }
3539
3540    @Override
3541    public NetworkRequest pendingRequestForNetwork(NetworkCapabilities networkCapabilities,
3542            PendingIntent operation) {
3543        checkNotNull(operation, "PendingIntent cannot be null.");
3544        networkCapabilities = new NetworkCapabilities(networkCapabilities);
3545        enforceNetworkRequestPermissions(networkCapabilities);
3546        enforceMeteredApnPolicy(networkCapabilities);
3547
3548        NetworkRequest networkRequest = new NetworkRequest(networkCapabilities, TYPE_NONE,
3549                nextNetworkRequestId());
3550        if (DBG) log("pendingRequest for " + networkRequest + " to trigger " + operation);
3551        NetworkRequestInfo nri = new NetworkRequestInfo(networkRequest, operation,
3552                NetworkRequestInfo.REQUEST);
3553        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_REQUEST_WITH_INTENT,
3554                nri));
3555        return networkRequest;
3556    }
3557
3558    private void releasePendingNetworkRequestWithDelay(PendingIntent operation) {
3559        mHandler.sendMessageDelayed(
3560                mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT,
3561                getCallingUid(), 0, operation), mReleasePendingIntentDelayMs);
3562    }
3563
3564    @Override
3565    public void releasePendingNetworkRequest(PendingIntent operation) {
3566        mHandler.sendMessage(mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST_WITH_INTENT,
3567                getCallingUid(), 0, operation));
3568    }
3569
3570    @Override
3571    public NetworkRequest listenForNetwork(NetworkCapabilities networkCapabilities,
3572            Messenger messenger, IBinder binder) {
3573        enforceAccessPermission();
3574
3575        NetworkRequest networkRequest = new NetworkRequest(new NetworkCapabilities(
3576                networkCapabilities), TYPE_NONE, nextNetworkRequestId());
3577        if (DBG) log("listenForNetwork for " + networkRequest);
3578        NetworkRequestInfo nri = new NetworkRequestInfo(messenger, networkRequest, binder,
3579                NetworkRequestInfo.LISTEN);
3580
3581        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_LISTENER, nri));
3582        return networkRequest;
3583    }
3584
3585    @Override
3586    public void pendingListenForNetwork(NetworkCapabilities networkCapabilities,
3587            PendingIntent operation) {
3588    }
3589
3590    @Override
3591    public void releaseNetworkRequest(NetworkRequest networkRequest) {
3592        mHandler.sendMessage(mHandler.obtainMessage(EVENT_RELEASE_NETWORK_REQUEST, getCallingUid(),
3593                0, networkRequest));
3594    }
3595
3596    @Override
3597    public void registerNetworkFactory(Messenger messenger, String name) {
3598        enforceConnectivityInternalPermission();
3599        NetworkFactoryInfo nfi = new NetworkFactoryInfo(name, messenger, new AsyncChannel());
3600        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_FACTORY, nfi));
3601    }
3602
3603    private void handleRegisterNetworkFactory(NetworkFactoryInfo nfi) {
3604        if (DBG) log("Got NetworkFactory Messenger for " + nfi.name);
3605        mNetworkFactoryInfos.put(nfi.messenger, nfi);
3606        nfi.asyncChannel.connect(mContext, mTrackerHandler, nfi.messenger);
3607    }
3608
3609    @Override
3610    public void unregisterNetworkFactory(Messenger messenger) {
3611        enforceConnectivityInternalPermission();
3612        mHandler.sendMessage(mHandler.obtainMessage(EVENT_UNREGISTER_NETWORK_FACTORY, messenger));
3613    }
3614
3615    private void handleUnregisterNetworkFactory(Messenger messenger) {
3616        NetworkFactoryInfo nfi = mNetworkFactoryInfos.remove(messenger);
3617        if (nfi == null) {
3618            loge("Failed to find Messenger in unregisterNetworkFactory");
3619            return;
3620        }
3621        if (DBG) log("unregisterNetworkFactory for " + nfi.name);
3622    }
3623
3624    /**
3625     * NetworkAgentInfo supporting a request by requestId.
3626     * These have already been vetted (their Capabilities satisfy the request)
3627     * and the are the highest scored network available.
3628     * the are keyed off the Requests requestId.
3629     */
3630    private final SparseArray<NetworkAgentInfo> mNetworkForRequestId =
3631            new SparseArray<NetworkAgentInfo>();
3632
3633    private final SparseArray<NetworkAgentInfo> mNetworkForNetId =
3634            new SparseArray<NetworkAgentInfo>();
3635
3636    // NetworkAgentInfo keyed off its connecting messenger
3637    // TODO - eval if we can reduce the number of lists/hashmaps/sparsearrays
3638    private final HashMap<Messenger, NetworkAgentInfo> mNetworkAgentInfos =
3639            new HashMap<Messenger, NetworkAgentInfo>();
3640
3641    // Note: if mDefaultRequest is changed, NetworkMonitor needs to be updated.
3642    private final NetworkRequest mDefaultRequest;
3643
3644    private NetworkAgentInfo getDefaultNetwork() {
3645        return mNetworkForRequestId.get(mDefaultRequest.requestId);
3646    }
3647
3648    private boolean isDefaultNetwork(NetworkAgentInfo nai) {
3649        return nai == getDefaultNetwork();
3650    }
3651
3652    public void registerNetworkAgent(Messenger messenger, NetworkInfo networkInfo,
3653            LinkProperties linkProperties, NetworkCapabilities networkCapabilities,
3654            int currentScore, NetworkMisc networkMisc) {
3655        enforceConnectivityInternalPermission();
3656
3657        // TODO: Instead of passing mDefaultRequest, provide an API to determine whether a Network
3658        // satisfies mDefaultRequest.
3659        NetworkAgentInfo nai = new NetworkAgentInfo(messenger, new AsyncChannel(),
3660            new NetworkInfo(networkInfo), new LinkProperties(linkProperties),
3661            new NetworkCapabilities(networkCapabilities), currentScore, mContext, mTrackerHandler,
3662            new NetworkMisc(networkMisc), mDefaultRequest);
3663        synchronized (this) {
3664            nai.networkMonitor.systemReady = mSystemReady;
3665        }
3666        if (DBG) log("registerNetworkAgent " + nai);
3667        mHandler.sendMessage(mHandler.obtainMessage(EVENT_REGISTER_NETWORK_AGENT, nai));
3668    }
3669
3670    private void handleRegisterNetworkAgent(NetworkAgentInfo na) {
3671        if (VDBG) log("Got NetworkAgent Messenger");
3672        mNetworkAgentInfos.put(na.messenger, na);
3673        assignNextNetId(na);
3674        na.asyncChannel.connect(mContext, mTrackerHandler, na.messenger);
3675        NetworkInfo networkInfo = na.networkInfo;
3676        na.networkInfo = null;
3677        updateNetworkInfo(na, networkInfo);
3678    }
3679
3680    private void updateLinkProperties(NetworkAgentInfo networkAgent, LinkProperties oldLp) {
3681        LinkProperties newLp = networkAgent.linkProperties;
3682        int netId = networkAgent.network.netId;
3683
3684        // The NetworkAgentInfo does not know whether clatd is running on its network or not. Before
3685        // we do anything else, make sure its LinkProperties are accurate.
3686        if (networkAgent.clatd != null) {
3687            networkAgent.clatd.fixupLinkProperties(oldLp);
3688        }
3689
3690        updateInterfaces(newLp, oldLp, netId);
3691        updateMtu(newLp, oldLp);
3692        // TODO - figure out what to do for clat
3693//        for (LinkProperties lp : newLp.getStackedLinks()) {
3694//            updateMtu(lp, null);
3695//        }
3696        updateTcpBufferSizes(networkAgent);
3697
3698        // TODO: deprecate and remove mDefaultDns when we can do so safely.
3699        // For now, use it only when the network has Internet access. http://b/18327075
3700        final boolean useDefaultDns = networkAgent.networkCapabilities.hasCapability(
3701                NetworkCapabilities.NET_CAPABILITY_INTERNET);
3702        final boolean flushDns = updateRoutes(newLp, oldLp, netId);
3703        updateDnses(newLp, oldLp, netId, flushDns, useDefaultDns);
3704
3705        updateClat(newLp, oldLp, networkAgent);
3706        if (isDefaultNetwork(networkAgent)) {
3707            handleApplyDefaultProxy(newLp.getHttpProxy());
3708        } else {
3709            updateProxy(newLp, oldLp, networkAgent);
3710        }
3711        // TODO - move this check to cover the whole function
3712        if (!Objects.equals(newLp, oldLp)) {
3713            notifyIfacesChanged();
3714            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_IP_CHANGED);
3715        }
3716    }
3717
3718    private void updateClat(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) {
3719        final boolean wasRunningClat = nai.clatd != null && nai.clatd.isStarted();
3720        final boolean shouldRunClat = Nat464Xlat.requiresClat(nai);
3721
3722        if (!wasRunningClat && shouldRunClat) {
3723            nai.clatd = new Nat464Xlat(mContext, mNetd, mTrackerHandler, nai);
3724            nai.clatd.start();
3725        } else if (wasRunningClat && !shouldRunClat) {
3726            nai.clatd.stop();
3727        }
3728    }
3729
3730    private void updateInterfaces(LinkProperties newLp, LinkProperties oldLp, int netId) {
3731        CompareResult<String> interfaceDiff = new CompareResult<String>();
3732        if (oldLp != null) {
3733            interfaceDiff = oldLp.compareAllInterfaceNames(newLp);
3734        } else if (newLp != null) {
3735            interfaceDiff.added = newLp.getAllInterfaceNames();
3736        }
3737        for (String iface : interfaceDiff.added) {
3738            try {
3739                if (DBG) log("Adding iface " + iface + " to network " + netId);
3740                mNetd.addInterfaceToNetwork(iface, netId);
3741            } catch (Exception e) {
3742                loge("Exception adding interface: " + e);
3743            }
3744        }
3745        for (String iface : interfaceDiff.removed) {
3746            try {
3747                if (DBG) log("Removing iface " + iface + " from network " + netId);
3748                mNetd.removeInterfaceFromNetwork(iface, netId);
3749            } catch (Exception e) {
3750                loge("Exception removing interface: " + e);
3751            }
3752        }
3753    }
3754
3755    /**
3756     * Have netd update routes from oldLp to newLp.
3757     * @return true if routes changed between oldLp and newLp
3758     */
3759    private boolean updateRoutes(LinkProperties newLp, LinkProperties oldLp, int netId) {
3760        CompareResult<RouteInfo> routeDiff = new CompareResult<RouteInfo>();
3761        if (oldLp != null) {
3762            routeDiff = oldLp.compareAllRoutes(newLp);
3763        } else if (newLp != null) {
3764            routeDiff.added = newLp.getAllRoutes();
3765        }
3766
3767        // add routes before removing old in case it helps with continuous connectivity
3768
3769        // do this twice, adding non-nexthop routes first, then routes they are dependent on
3770        for (RouteInfo route : routeDiff.added) {
3771            if (route.hasGateway()) continue;
3772            if (DBG) log("Adding Route [" + route + "] to network " + netId);
3773            try {
3774                mNetd.addRoute(netId, route);
3775            } catch (Exception e) {
3776                if ((route.getDestination().getAddress() instanceof Inet4Address) || VDBG) {
3777                    loge("Exception in addRoute for non-gateway: " + e);
3778                }
3779            }
3780        }
3781        for (RouteInfo route : routeDiff.added) {
3782            if (route.hasGateway() == false) continue;
3783            if (DBG) log("Adding Route [" + route + "] to network " + netId);
3784            try {
3785                mNetd.addRoute(netId, route);
3786            } catch (Exception e) {
3787                if ((route.getGateway() instanceof Inet4Address) || VDBG) {
3788                    loge("Exception in addRoute for gateway: " + e);
3789                }
3790            }
3791        }
3792
3793        for (RouteInfo route : routeDiff.removed) {
3794            if (DBG) log("Removing Route [" + route + "] from network " + netId);
3795            try {
3796                mNetd.removeRoute(netId, route);
3797            } catch (Exception e) {
3798                loge("Exception in removeRoute: " + e);
3799            }
3800        }
3801        return !routeDiff.added.isEmpty() || !routeDiff.removed.isEmpty();
3802    }
3803    private void updateDnses(LinkProperties newLp, LinkProperties oldLp, int netId,
3804                             boolean flush, boolean useDefaultDns) {
3805        if (oldLp == null || (newLp.isIdenticalDnses(oldLp) == false)) {
3806            Collection<InetAddress> dnses = newLp.getDnsServers();
3807            if (dnses.size() == 0 && mDefaultDns != null && useDefaultDns) {
3808                dnses = new ArrayList();
3809                dnses.add(mDefaultDns);
3810                if (DBG) {
3811                    loge("no dns provided for netId " + netId + ", so using defaults");
3812                }
3813            }
3814            if (DBG) log("Setting Dns servers for network " + netId + " to " + dnses);
3815            try {
3816                mNetd.setDnsServersForNetwork(netId, NetworkUtils.makeStrings(dnses),
3817                    newLp.getDomains());
3818            } catch (Exception e) {
3819                loge("Exception in setDnsServersForNetwork: " + e);
3820            }
3821            NetworkAgentInfo defaultNai = mNetworkForRequestId.get(mDefaultRequest.requestId);
3822            if (defaultNai != null && defaultNai.network.netId == netId) {
3823                setDefaultDnsSystemProperties(dnses);
3824            }
3825            flushVmDnsCache();
3826        } else if (flush) {
3827            try {
3828                mNetd.flushNetworkDnsCache(netId);
3829            } catch (Exception e) {
3830                loge("Exception in flushNetworkDnsCache: " + e);
3831            }
3832            flushVmDnsCache();
3833        }
3834    }
3835
3836    private void setDefaultDnsSystemProperties(Collection<InetAddress> dnses) {
3837        int last = 0;
3838        for (InetAddress dns : dnses) {
3839            ++last;
3840            String key = "net.dns" + last;
3841            String value = dns.getHostAddress();
3842            SystemProperties.set(key, value);
3843        }
3844        for (int i = last + 1; i <= mNumDnsEntries; ++i) {
3845            String key = "net.dns" + i;
3846            SystemProperties.set(key, "");
3847        }
3848        mNumDnsEntries = last;
3849    }
3850
3851    private void updateCapabilities(NetworkAgentInfo networkAgent,
3852            NetworkCapabilities networkCapabilities) {
3853        if (!Objects.equals(networkAgent.networkCapabilities, networkCapabilities)) {
3854            synchronized (networkAgent) {
3855                networkAgent.networkCapabilities = networkCapabilities;
3856            }
3857            rematchAllNetworksAndRequests(networkAgent, networkAgent.getCurrentScore());
3858            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_CAP_CHANGED);
3859        }
3860    }
3861
3862    private void sendUpdatedScoreToFactories(NetworkAgentInfo nai) {
3863        for (int i = 0; i < nai.networkRequests.size(); i++) {
3864            NetworkRequest nr = nai.networkRequests.valueAt(i);
3865            // Don't send listening requests to factories. b/17393458
3866            if (!isRequest(nr)) continue;
3867            sendUpdatedScoreToFactories(nr, nai.getCurrentScore());
3868        }
3869    }
3870
3871    private void sendUpdatedScoreToFactories(NetworkRequest networkRequest, int score) {
3872        if (VDBG) log("sending new Min Network Score(" + score + "): " + networkRequest.toString());
3873        for (NetworkFactoryInfo nfi : mNetworkFactoryInfos.values()) {
3874            nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_REQUEST_NETWORK, score, 0,
3875                    networkRequest);
3876        }
3877    }
3878
3879    private void sendPendingIntentForRequest(NetworkRequestInfo nri, NetworkAgentInfo networkAgent,
3880            int notificationType) {
3881        if (notificationType == ConnectivityManager.CALLBACK_AVAILABLE && !nri.mPendingIntentSent) {
3882            Intent intent = new Intent();
3883            intent.putExtra(ConnectivityManager.EXTRA_NETWORK, networkAgent.network);
3884            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_REQUEST, nri.request);
3885            nri.mPendingIntentSent = true;
3886            sendIntent(nri.mPendingIntent, intent);
3887        }
3888        // else not handled
3889    }
3890
3891    private void sendIntent(PendingIntent pendingIntent, Intent intent) {
3892        mPendingIntentWakeLock.acquire();
3893        try {
3894            if (DBG) log("Sending " + pendingIntent);
3895            pendingIntent.send(mContext, 0, intent, this /* onFinished */, null /* Handler */);
3896        } catch (PendingIntent.CanceledException e) {
3897            if (DBG) log(pendingIntent + " was not sent, it had been canceled.");
3898            mPendingIntentWakeLock.release();
3899            releasePendingNetworkRequest(pendingIntent);
3900        }
3901        // ...otherwise, mPendingIntentWakeLock.release() gets called by onSendFinished()
3902    }
3903
3904    @Override
3905    public void onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode,
3906            String resultData, Bundle resultExtras) {
3907        if (DBG) log("Finished sending " + pendingIntent);
3908        mPendingIntentWakeLock.release();
3909        // Release with a delay so the receiving client has an opportunity to put in its
3910        // own request.
3911        releasePendingNetworkRequestWithDelay(pendingIntent);
3912    }
3913
3914    private void callCallbackForRequest(NetworkRequestInfo nri,
3915            NetworkAgentInfo networkAgent, int notificationType) {
3916        if (nri.messenger == null) return;  // Default request has no msgr
3917        Bundle bundle = new Bundle();
3918        bundle.putParcelable(NetworkRequest.class.getSimpleName(),
3919                new NetworkRequest(nri.request));
3920        Message msg = Message.obtain();
3921        if (notificationType != ConnectivityManager.CALLBACK_UNAVAIL &&
3922                notificationType != ConnectivityManager.CALLBACK_RELEASED) {
3923            bundle.putParcelable(Network.class.getSimpleName(), networkAgent.network);
3924        }
3925        switch (notificationType) {
3926            case ConnectivityManager.CALLBACK_LOSING: {
3927                msg.arg1 = 30 * 1000; // TODO - read this from NetworkMonitor
3928                break;
3929            }
3930            case ConnectivityManager.CALLBACK_CAP_CHANGED: {
3931                bundle.putParcelable(NetworkCapabilities.class.getSimpleName(),
3932                        new NetworkCapabilities(networkAgent.networkCapabilities));
3933                break;
3934            }
3935            case ConnectivityManager.CALLBACK_IP_CHANGED: {
3936                bundle.putParcelable(LinkProperties.class.getSimpleName(),
3937                        new LinkProperties(networkAgent.linkProperties));
3938                break;
3939            }
3940        }
3941        msg.what = notificationType;
3942        msg.setData(bundle);
3943        try {
3944            if (VDBG) {
3945                log("sending notification " + notifyTypeToName(notificationType) +
3946                        " for " + nri.request);
3947            }
3948            nri.messenger.send(msg);
3949        } catch (RemoteException e) {
3950            // may occur naturally in the race of binder death.
3951            loge("RemoteException caught trying to send a callback msg for " + nri.request);
3952        }
3953    }
3954
3955    private void teardownUnneededNetwork(NetworkAgentInfo nai) {
3956        for (int i = 0; i < nai.networkRequests.size(); i++) {
3957            NetworkRequest nr = nai.networkRequests.valueAt(i);
3958            // Ignore listening requests.
3959            if (!isRequest(nr)) continue;
3960            loge("Dead network still had at least " + nr);
3961            break;
3962        }
3963        nai.asyncChannel.disconnect();
3964    }
3965
3966    private void handleLingerComplete(NetworkAgentInfo oldNetwork) {
3967        if (oldNetwork == null) {
3968            loge("Unknown NetworkAgentInfo in handleLingerComplete");
3969            return;
3970        }
3971        if (DBG) log("handleLingerComplete for " + oldNetwork.name());
3972        teardownUnneededNetwork(oldNetwork);
3973    }
3974
3975    private void makeDefault(NetworkAgentInfo newNetwork) {
3976        if (DBG) log("Switching to new default network: " + newNetwork);
3977        setupDataActivityTracking(newNetwork);
3978        try {
3979            mNetd.setDefaultNetId(newNetwork.network.netId);
3980        } catch (Exception e) {
3981            loge("Exception setting default network :" + e);
3982        }
3983        notifyLockdownVpn(newNetwork);
3984        handleApplyDefaultProxy(newNetwork.linkProperties.getHttpProxy());
3985        updateTcpBufferSizes(newNetwork);
3986        setDefaultDnsSystemProperties(newNetwork.linkProperties.getDnsServers());
3987    }
3988
3989    // Handles a network appearing or improving its score.
3990    //
3991    // - Evaluates all current NetworkRequests that can be
3992    //   satisfied by newNetwork, and reassigns to newNetwork
3993    //   any such requests for which newNetwork is the best.
3994    //
3995    // - Lingers any validated Networks that as a result are no longer
3996    //   needed. A network is needed if it is the best network for
3997    //   one or more NetworkRequests, or if it is a VPN.
3998    //
3999    // - Tears down newNetwork if it just became validated
4000    //   (i.e. nascent==JUST_VALIDATED) but turns out to be unneeded.
4001    //
4002    // - If reapUnvalidatedNetworks==REAP, tears down unvalidated
4003    //   networks that have no chance (i.e. even if validated)
4004    //   of becoming the highest scoring network.
4005    //
4006    // NOTE: This function only adds NetworkRequests that "newNetwork" could satisfy,
4007    // it does not remove NetworkRequests that other Networks could better satisfy.
4008    // If you need to handle decreases in score, use {@link rematchAllNetworksAndRequests}.
4009    // This function should be used when possible instead of {@code rematchAllNetworksAndRequests}
4010    // as it performs better by a factor of the number of Networks.
4011    //
4012    // @param newNetwork is the network to be matched against NetworkRequests.
4013    // @param nascent indicates if newNetwork just became validated, in which case it should be
4014    //               torn down if unneeded.
4015    // @param reapUnvalidatedNetworks indicates if an additional pass over all networks should be
4016    //               performed to tear down unvalidated networks that have no chance (i.e. even if
4017    //               validated) of becoming the highest scoring network.
4018    private void rematchNetworkAndRequests(NetworkAgentInfo newNetwork, NascentState nascent,
4019            ReapUnvalidatedNetworks reapUnvalidatedNetworks) {
4020        if (!newNetwork.created) return;
4021        if (nascent == NascentState.JUST_VALIDATED && !newNetwork.everValidated) {
4022            loge("ERROR: nascent network not validated.");
4023        }
4024        boolean keep = newNetwork.isVPN();
4025        boolean isNewDefault = false;
4026        NetworkAgentInfo oldDefaultNetwork = null;
4027        if (DBG) log("rematching " + newNetwork.name());
4028        // Find and migrate to this Network any NetworkRequests for
4029        // which this network is now the best.
4030        ArrayList<NetworkAgentInfo> affectedNetworks = new ArrayList<NetworkAgentInfo>();
4031        if (VDBG) log(" network has: " + newNetwork.networkCapabilities);
4032        for (NetworkRequestInfo nri : mNetworkRequests.values()) {
4033            NetworkAgentInfo currentNetwork = mNetworkForRequestId.get(nri.request.requestId);
4034            if (newNetwork == currentNetwork) {
4035                if (DBG) {
4036                    log("Network " + newNetwork.name() + " was already satisfying" +
4037                            " request " + nri.request.requestId + ". No change.");
4038                }
4039                keep = true;
4040                continue;
4041            }
4042
4043            // check if it satisfies the NetworkCapabilities
4044            if (VDBG) log("  checking if request is satisfied: " + nri.request);
4045            if (newNetwork.satisfies(nri.request)) {
4046                if (!nri.isRequest) {
4047                    // This is not a request, it's a callback listener.
4048                    // Add it to newNetwork regardless of score.
4049                    newNetwork.addRequest(nri.request);
4050                    continue;
4051                }
4052
4053                // next check if it's better than any current network we're using for
4054                // this request
4055                if (VDBG) {
4056                    log("currentScore = " +
4057                            (currentNetwork != null ? currentNetwork.getCurrentScore() : 0) +
4058                            ", newScore = " + newNetwork.getCurrentScore());
4059                }
4060                if (currentNetwork == null ||
4061                        currentNetwork.getCurrentScore() < newNetwork.getCurrentScore()) {
4062                    if (currentNetwork != null) {
4063                        if (DBG) log("   accepting network in place of " + currentNetwork.name());
4064                        currentNetwork.networkRequests.remove(nri.request.requestId);
4065                        currentNetwork.networkLingered.add(nri.request);
4066                        affectedNetworks.add(currentNetwork);
4067                    } else {
4068                        if (DBG) log("   accepting network in place of null");
4069                    }
4070                    mNetworkForRequestId.put(nri.request.requestId, newNetwork);
4071                    newNetwork.addRequest(nri.request);
4072                    keep = true;
4073                    // Tell NetworkFactories about the new score, so they can stop
4074                    // trying to connect if they know they cannot match it.
4075                    // TODO - this could get expensive if we have alot of requests for this
4076                    // network.  Think about if there is a way to reduce this.  Push
4077                    // netid->request mapping to each factory?
4078                    sendUpdatedScoreToFactories(nri.request, newNetwork.getCurrentScore());
4079                    if (mDefaultRequest.requestId == nri.request.requestId) {
4080                        isNewDefault = true;
4081                        oldDefaultNetwork = currentNetwork;
4082                    }
4083                }
4084            }
4085        }
4086        // Linger any networks that are no longer needed.
4087        for (NetworkAgentInfo nai : affectedNetworks) {
4088            if (nai.everValidated && unneeded(nai)) {
4089                nai.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_LINGER);
4090                notifyNetworkCallbacks(nai, ConnectivityManager.CALLBACK_LOSING);
4091            } else {
4092                unlinger(nai);
4093            }
4094        }
4095        if (keep) {
4096            if (isNewDefault) {
4097                // Notify system services that this network is up.
4098                makeDefault(newNetwork);
4099                synchronized (ConnectivityService.this) {
4100                    // have a new default network, release the transition wakelock in
4101                    // a second if it's held.  The second pause is to allow apps
4102                    // to reconnect over the new network
4103                    if (mNetTransitionWakeLock.isHeld()) {
4104                        mHandler.sendMessageDelayed(mHandler.obtainMessage(
4105                                EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
4106                                mNetTransitionWakeLockSerialNumber, 0),
4107                                1000);
4108                    }
4109                }
4110            }
4111
4112            // do this after the default net is switched, but
4113            // before LegacyTypeTracker sends legacy broadcasts
4114            notifyNetworkCallbacks(newNetwork, ConnectivityManager.CALLBACK_AVAILABLE);
4115
4116            if (isNewDefault) {
4117                // Maintain the illusion: since the legacy API only
4118                // understands one network at a time, we must pretend
4119                // that the current default network disconnected before
4120                // the new one connected.
4121                if (oldDefaultNetwork != null) {
4122                    mLegacyTypeTracker.remove(oldDefaultNetwork.networkInfo.getType(),
4123                                              oldDefaultNetwork);
4124                }
4125                mDefaultInetConditionPublished = newNetwork.everValidated ? 100 : 0;
4126                mLegacyTypeTracker.add(newNetwork.networkInfo.getType(), newNetwork);
4127                notifyLockdownVpn(newNetwork);
4128            }
4129
4130            // Notify battery stats service about this network, both the normal
4131            // interface and any stacked links.
4132            // TODO: Avoid redoing this; this must only be done once when a network comes online.
4133            try {
4134                final IBatteryStats bs = BatteryStatsService.getService();
4135                final int type = newNetwork.networkInfo.getType();
4136
4137                final String baseIface = newNetwork.linkProperties.getInterfaceName();
4138                bs.noteNetworkInterfaceType(baseIface, type);
4139                for (LinkProperties stacked : newNetwork.linkProperties.getStackedLinks()) {
4140                    final String stackedIface = stacked.getInterfaceName();
4141                    bs.noteNetworkInterfaceType(stackedIface, type);
4142                    NetworkStatsFactory.noteStackedIface(stackedIface, baseIface);
4143                }
4144            } catch (RemoteException ignored) {
4145            }
4146
4147            // This has to happen after the notifyNetworkCallbacks as that tickles each
4148            // ConnectivityManager instance so that legacy requests correctly bind dns
4149            // requests to this network.  The legacy users are listening for this bcast
4150            // and will generally do a dns request so they can ensureRouteToHost and if
4151            // they do that before the callbacks happen they'll use the default network.
4152            //
4153            // TODO: Is there still a race here? We send the broadcast
4154            // after sending the callback, but if the app can receive the
4155            // broadcast before the callback, it might still break.
4156            //
4157            // This *does* introduce a race where if the user uses the new api
4158            // (notification callbacks) and then uses the old api (getNetworkInfo(type))
4159            // they may get old info.  Reverse this after the old startUsing api is removed.
4160            // This is on top of the multiple intent sequencing referenced in the todo above.
4161            for (int i = 0; i < newNetwork.networkRequests.size(); i++) {
4162                NetworkRequest nr = newNetwork.networkRequests.valueAt(i);
4163                if (nr.legacyType != TYPE_NONE && isRequest(nr)) {
4164                    // legacy type tracker filters out repeat adds
4165                    mLegacyTypeTracker.add(nr.legacyType, newNetwork);
4166                }
4167            }
4168
4169            // A VPN generally won't get added to the legacy tracker in the "for (nri)" loop above,
4170            // because usually there are no NetworkRequests it satisfies (e.g., mDefaultRequest
4171            // wants the NOT_VPN capability, so it will never be satisfied by a VPN). So, add the
4172            // newNetwork to the tracker explicitly (it's a no-op if it has already been added).
4173            if (newNetwork.isVPN()) {
4174                mLegacyTypeTracker.add(TYPE_VPN, newNetwork);
4175            }
4176        } else if (nascent == NascentState.JUST_VALIDATED) {
4177            // Only tear down newly validated networks here.  Leave unvalidated to either become
4178            // validated (and get evaluated against peers, one losing here), or get reaped (see
4179            // reapUnvalidatedNetworks) if they have no chance of becoming the highest scoring
4180            // network.  Networks that have been up for a while and are validated should be torn
4181            // down via the lingering process so communication on that network is given time to
4182            // wrap up.
4183            if (DBG) log("Validated network turns out to be unwanted.  Tear it down.");
4184            teardownUnneededNetwork(newNetwork);
4185        }
4186        if (reapUnvalidatedNetworks == ReapUnvalidatedNetworks.REAP) {
4187            for (NetworkAgentInfo nai : mNetworkAgentInfos.values()) {
4188                if (!nai.everValidated && unneeded(nai)) {
4189                    if (DBG) log("Reaping " + nai.name());
4190                    teardownUnneededNetwork(nai);
4191                }
4192            }
4193        }
4194    }
4195
4196    // Attempt to rematch all Networks with NetworkRequests.  This may result in Networks
4197    // being disconnected.
4198    // If only one Network's score or capabilities have been modified since the last time
4199    // this function was called, pass this Network in via the "changed" arugment, otherwise
4200    // pass null.
4201    // If only one Network has been changed but its NetworkCapabilities have not changed,
4202    // pass in the Network's score (from getCurrentScore()) prior to the change via
4203    // "oldScore", otherwise pass changed.getCurrentScore() or 0 if "changed" is null.
4204    private void rematchAllNetworksAndRequests(NetworkAgentInfo changed, int oldScore) {
4205        // TODO: This may get slow.  The "changed" parameter is provided for future optimization
4206        // to avoid the slowness.  It is not simply enough to process just "changed", for
4207        // example in the case where "changed"'s score decreases and another network should begin
4208        // satifying a NetworkRequest that "changed" currently satisfies.
4209
4210        // Optimization: Only reprocess "changed" if its score improved.  This is safe because it
4211        // can only add more NetworkRequests satisfied by "changed", and this is exactly what
4212        // rematchNetworkAndRequests() handles.
4213        if (changed != null && oldScore < changed.getCurrentScore()) {
4214            rematchNetworkAndRequests(changed, NascentState.NOT_JUST_VALIDATED,
4215                    ReapUnvalidatedNetworks.REAP);
4216        } else {
4217            for (Iterator i = mNetworkAgentInfos.values().iterator(); i.hasNext(); ) {
4218                rematchNetworkAndRequests((NetworkAgentInfo)i.next(),
4219                        NascentState.NOT_JUST_VALIDATED,
4220                        // Only reap the last time through the loop.  Reaping before all rematching
4221                        // is complete could incorrectly teardown a network that hasn't yet been
4222                        // rematched.
4223                        i.hasNext() ? ReapUnvalidatedNetworks.DONT_REAP
4224                                : ReapUnvalidatedNetworks.REAP);
4225            }
4226        }
4227    }
4228
4229    private void updateInetCondition(NetworkAgentInfo nai) {
4230        // Don't bother updating until we've graduated to validated at least once.
4231        if (!nai.everValidated) return;
4232        // For now only update icons for default connection.
4233        // TODO: Update WiFi and cellular icons separately. b/17237507
4234        if (!isDefaultNetwork(nai)) return;
4235
4236        int newInetCondition = nai.lastValidated ? 100 : 0;
4237        // Don't repeat publish.
4238        if (newInetCondition == mDefaultInetConditionPublished) return;
4239
4240        mDefaultInetConditionPublished = newInetCondition;
4241        sendInetConditionBroadcast(nai.networkInfo);
4242    }
4243
4244    private void notifyLockdownVpn(NetworkAgentInfo nai) {
4245        if (mLockdownTracker != null) {
4246            if (nai != null && nai.isVPN()) {
4247                mLockdownTracker.onVpnStateChanged(nai.networkInfo);
4248            } else {
4249                mLockdownTracker.onNetworkInfoChanged();
4250            }
4251        }
4252    }
4253
4254    private void updateNetworkInfo(NetworkAgentInfo networkAgent, NetworkInfo newInfo) {
4255        NetworkInfo.State state = newInfo.getState();
4256        NetworkInfo oldInfo = null;
4257        synchronized (networkAgent) {
4258            oldInfo = networkAgent.networkInfo;
4259            networkAgent.networkInfo = newInfo;
4260        }
4261        notifyLockdownVpn(networkAgent);
4262
4263        if (oldInfo != null && oldInfo.getState() == state) {
4264            if (VDBG) log("ignoring duplicate network state non-change");
4265            return;
4266        }
4267        if (DBG) {
4268            log(networkAgent.name() + " EVENT_NETWORK_INFO_CHANGED, going from " +
4269                    (oldInfo == null ? "null" : oldInfo.getState()) +
4270                    " to " + state);
4271        }
4272
4273        if (state == NetworkInfo.State.CONNECTED && !networkAgent.created) {
4274            try {
4275                // This should never fail.  Specifying an already in use NetID will cause failure.
4276                if (networkAgent.isVPN()) {
4277                    mNetd.createVirtualNetwork(networkAgent.network.netId,
4278                            !networkAgent.linkProperties.getDnsServers().isEmpty(),
4279                            (networkAgent.networkMisc == null ||
4280                                !networkAgent.networkMisc.allowBypass));
4281                } else {
4282                    mNetd.createPhysicalNetwork(networkAgent.network.netId);
4283                }
4284            } catch (Exception e) {
4285                loge("Error creating network " + networkAgent.network.netId + ": "
4286                        + e.getMessage());
4287                return;
4288            }
4289            networkAgent.created = true;
4290            updateLinkProperties(networkAgent, null);
4291            notifyIfacesChanged();
4292            notifyNetworkCallbacks(networkAgent, ConnectivityManager.CALLBACK_PRECHECK);
4293            networkAgent.networkMonitor.sendMessage(NetworkMonitor.CMD_NETWORK_CONNECTED);
4294            if (networkAgent.isVPN()) {
4295                // Temporarily disable the default proxy (not global).
4296                synchronized (mProxyLock) {
4297                    if (!mDefaultProxyDisabled) {
4298                        mDefaultProxyDisabled = true;
4299                        if (mGlobalProxy == null && mDefaultProxy != null) {
4300                            sendProxyBroadcast(null);
4301                        }
4302                    }
4303                }
4304                // TODO: support proxy per network.
4305            }
4306            // Consider network even though it is not yet validated.
4307            rematchNetworkAndRequests(networkAgent, NascentState.NOT_JUST_VALIDATED,
4308                    ReapUnvalidatedNetworks.REAP);
4309        } else if (state == NetworkInfo.State.DISCONNECTED ||
4310                state == NetworkInfo.State.SUSPENDED) {
4311            networkAgent.asyncChannel.disconnect();
4312            if (networkAgent.isVPN()) {
4313                synchronized (mProxyLock) {
4314                    if (mDefaultProxyDisabled) {
4315                        mDefaultProxyDisabled = false;
4316                        if (mGlobalProxy == null && mDefaultProxy != null) {
4317                            sendProxyBroadcast(mDefaultProxy);
4318                        }
4319                    }
4320                }
4321            }
4322        }
4323    }
4324
4325    private void updateNetworkScore(NetworkAgentInfo nai, int score) {
4326        if (DBG) log("updateNetworkScore for " + nai.name() + " to " + score);
4327        if (score < 0) {
4328            loge("updateNetworkScore for " + nai.name() + " got a negative score (" + score +
4329                    ").  Bumping score to min of 0");
4330            score = 0;
4331        }
4332
4333        final int oldScore = nai.getCurrentScore();
4334        nai.setCurrentScore(score);
4335
4336        rematchAllNetworksAndRequests(nai, oldScore);
4337
4338        sendUpdatedScoreToFactories(nai);
4339    }
4340
4341    // notify only this one new request of the current state
4342    protected void notifyNetworkCallback(NetworkAgentInfo nai, NetworkRequestInfo nri) {
4343        int notifyType = ConnectivityManager.CALLBACK_AVAILABLE;
4344        // TODO - read state from monitor to decide what to send.
4345//        if (nai.networkMonitor.isLingering()) {
4346//            notifyType = NetworkCallbacks.LOSING;
4347//        } else if (nai.networkMonitor.isEvaluating()) {
4348//            notifyType = NetworkCallbacks.callCallbackForRequest(request, nai, notifyType);
4349//        }
4350        if (nri.mPendingIntent == null) {
4351            callCallbackForRequest(nri, nai, notifyType);
4352        } else {
4353            sendPendingIntentForRequest(nri, nai, notifyType);
4354        }
4355    }
4356
4357    private void sendLegacyNetworkBroadcast(NetworkAgentInfo nai, boolean connected, int type) {
4358        // The NetworkInfo we actually send out has no bearing on the real
4359        // state of affairs. For example, if the default connection is mobile,
4360        // and a request for HIPRI has just gone away, we need to pretend that
4361        // HIPRI has just disconnected. So we need to set the type to HIPRI and
4362        // the state to DISCONNECTED, even though the network is of type MOBILE
4363        // and is still connected.
4364        NetworkInfo info = new NetworkInfo(nai.networkInfo);
4365        info.setType(type);
4366        if (connected) {
4367            info.setDetailedState(DetailedState.CONNECTED, null, info.getExtraInfo());
4368            sendConnectedBroadcast(info);
4369        } else {
4370            info.setDetailedState(DetailedState.DISCONNECTED, null, info.getExtraInfo());
4371            Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
4372            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, info);
4373            intent.putExtra(ConnectivityManager.EXTRA_NETWORK_TYPE, info.getType());
4374            if (info.isFailover()) {
4375                intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
4376                nai.networkInfo.setFailover(false);
4377            }
4378            if (info.getReason() != null) {
4379                intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
4380            }
4381            if (info.getExtraInfo() != null) {
4382                intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, info.getExtraInfo());
4383            }
4384            NetworkAgentInfo newDefaultAgent = null;
4385            if (nai.networkRequests.get(mDefaultRequest.requestId) != null) {
4386                newDefaultAgent = mNetworkForRequestId.get(mDefaultRequest.requestId);
4387                if (newDefaultAgent != null) {
4388                    intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO,
4389                            newDefaultAgent.networkInfo);
4390                } else {
4391                    intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
4392                }
4393            }
4394            intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION,
4395                    mDefaultInetConditionPublished);
4396            final Intent immediateIntent = new Intent(intent);
4397            immediateIntent.setAction(CONNECTIVITY_ACTION_IMMEDIATE);
4398            sendStickyBroadcast(immediateIntent);
4399            sendStickyBroadcast(intent);
4400            if (newDefaultAgent != null) {
4401                sendConnectedBroadcast(newDefaultAgent.networkInfo);
4402            }
4403        }
4404    }
4405
4406    protected void notifyNetworkCallbacks(NetworkAgentInfo networkAgent, int notifyType) {
4407        if (DBG) log("notifyType " + notifyTypeToName(notifyType) + " for " + networkAgent.name());
4408        for (int i = 0; i < networkAgent.networkRequests.size(); i++) {
4409            NetworkRequest nr = networkAgent.networkRequests.valueAt(i);
4410            NetworkRequestInfo nri = mNetworkRequests.get(nr);
4411            if (VDBG) log(" sending notification for " + nr);
4412            if (nri.mPendingIntent == null) {
4413                callCallbackForRequest(nri, networkAgent, notifyType);
4414            } else {
4415                sendPendingIntentForRequest(nri, networkAgent, notifyType);
4416            }
4417        }
4418    }
4419
4420    private String notifyTypeToName(int notifyType) {
4421        switch (notifyType) {
4422            case ConnectivityManager.CALLBACK_PRECHECK:    return "PRECHECK";
4423            case ConnectivityManager.CALLBACK_AVAILABLE:   return "AVAILABLE";
4424            case ConnectivityManager.CALLBACK_LOSING:      return "LOSING";
4425            case ConnectivityManager.CALLBACK_LOST:        return "LOST";
4426            case ConnectivityManager.CALLBACK_UNAVAIL:     return "UNAVAILABLE";
4427            case ConnectivityManager.CALLBACK_CAP_CHANGED: return "CAP_CHANGED";
4428            case ConnectivityManager.CALLBACK_IP_CHANGED:  return "IP_CHANGED";
4429            case ConnectivityManager.CALLBACK_RELEASED:    return "RELEASED";
4430        }
4431        return "UNKNOWN";
4432    }
4433
4434    /**
4435     * Notify other system services that set of active ifaces has changed.
4436     */
4437    private void notifyIfacesChanged() {
4438        try {
4439            mStatsService.forceUpdateIfaces();
4440        } catch (Exception ignored) {
4441        }
4442    }
4443
4444    @Override
4445    public boolean addVpnAddress(String address, int prefixLength) {
4446        throwIfLockdownEnabled();
4447        int user = UserHandle.getUserId(Binder.getCallingUid());
4448        synchronized (mVpns) {
4449            return mVpns.get(user).addAddress(address, prefixLength);
4450        }
4451    }
4452
4453    @Override
4454    public boolean removeVpnAddress(String address, int prefixLength) {
4455        throwIfLockdownEnabled();
4456        int user = UserHandle.getUserId(Binder.getCallingUid());
4457        synchronized (mVpns) {
4458            return mVpns.get(user).removeAddress(address, prefixLength);
4459        }
4460    }
4461
4462    @Override
4463    public boolean setUnderlyingNetworksForVpn(Network[] networks) {
4464        throwIfLockdownEnabled();
4465        int user = UserHandle.getUserId(Binder.getCallingUid());
4466        synchronized (mVpns) {
4467            return mVpns.get(user).setUnderlyingNetworks(networks);
4468        }
4469    }
4470}
4471