blob: 9330491e17667e1e9e7e86bb177c3f4e72531bdd [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
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
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080019import android.bluetooth.BluetoothTetheringDataTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.ContentResolver;
21import android.content.Context;
22import android.content.Intent;
23import android.content.pm.PackageManager;
Robert Greenwalt434203a2010-10-11 16:00:27 -070024import android.database.ContentObserver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.net.ConnectivityManager;
Robert Greenwaltda3d5e62010-12-06 13:56:24 -080026import android.net.DummyDataStateTracker;
Benoit Goby08c39c62010-12-22 14:29:40 -080027import android.net.EthernetDataTracker;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.net.IConnectivityManager;
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -070029import android.net.LinkAddress;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -080030import android.net.LinkProperties;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.net.MobileDataStateTracker;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -070032import android.net.NetworkConfig;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.net.NetworkInfo;
34import android.net.NetworkStateTracker;
Robert Greenwalt585ac0f2010-08-27 09:24:29 -070035import android.net.NetworkUtils;
Robert Greenwalt434203a2010-10-11 16:00:27 -070036import android.net.Proxy;
37import android.net.ProxyProperties;
Robert Greenwaltaa70f102011-04-28 14:28:50 -070038import android.net.RouteInfo;
Hung-ying Tyan6b818de2011-01-19 16:48:38 +080039import android.net.vpn.VpnManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.net.wifi.WifiStateTracker;
41import android.os.Binder;
42import android.os.Handler;
Wink Savillebb08caf2010-09-02 19:23:52 -070043import android.os.HandlerThread;
Robert Greenwalt42acef32009-08-12 16:08:25 -070044import android.os.IBinder;
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -070045import android.os.INetworkManagementService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.os.Looper;
47import android.os.Message;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -070048import android.os.PowerManager;
Robert Greenwalt42acef32009-08-12 16:08:25 -070049import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050import android.os.ServiceManager;
51import android.os.SystemProperties;
52import android.provider.Settings;
Robert Greenwalt42acef32009-08-12 16:08:25 -070053import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054import android.util.EventLog;
Joe Onorato8a9b2202010-02-26 18:56:32 -080055import android.util.Slog;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080056
Robert Greenwalt42acef32009-08-12 16:08:25 -070057import com.android.internal.telephony.Phone;
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080058import com.android.server.connectivity.Tethering;
59
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060import java.io.FileDescriptor;
Irfan Sheriffd649c122010-06-09 15:39:36 -070061import java.io.FileWriter;
62import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063import java.io.PrintWriter;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -070064import java.net.InetAddress;
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -070065import java.net.Inet4Address;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -070066import java.net.UnknownHostException;
Robert Greenwalt42acef32009-08-12 16:08:25 -070067import java.util.ArrayList;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -070068import java.util.Collection;
Robert Greenwaltd825ea42010-12-29 16:15:02 -080069import java.util.concurrent.atomic.AtomicBoolean;
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -070070import java.util.GregorianCalendar;
Robert Greenwalt42acef32009-08-12 16:08:25 -070071import java.util.List;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072
73/**
74 * @hide
75 */
76public class ConnectivityService extends IConnectivityManager.Stub {
77
Robert Greenwaltba175a52010-10-05 19:12:26 -070078 private static final boolean DBG = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079 private static final String TAG = "ConnectivityService";
80
Robert Greenwalt42acef32009-08-12 16:08:25 -070081 // how long to wait before switching back to a radio's default network
82 private static final int RESTORE_DEFAULT_NETWORK_DELAY = 1 * 60 * 1000;
83 // system property that can override the above value
84 private static final String NETWORK_RESTORE_DELAY_PROP_NAME =
85 "android.telephony.apn-restore";
86
Robert Greenwaltf43396c2011-05-06 17:10:53 -070087 // used in recursive route setting to add gateways for the host for which
88 // a host route was requested.
89 private static final int MAX_HOSTROUTE_CYCLE_COUNT = 10;
90
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080091 private Tethering mTethering;
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -080092 private boolean mTetheringConfigValid = false;
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -080093
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080094 /**
95 * Sometimes we want to refer to the individual network state
96 * trackers separately, and sometimes we just want to treat them
97 * abstractly.
98 */
99 private NetworkStateTracker mNetTrackers[];
Robert Greenwalt42acef32009-08-12 16:08:25 -0700100
101 /**
102 * A per Net list of the PID's that requested access to the net
103 * used both as a refcount and for per-PID DNS selection
104 */
105 private List mNetRequestersPids[];
106
Irfan Sheriffa2a1b912010-06-07 09:03:04 -0700107 private WifiWatchdogService mWifiWatchdogService;
108
Robert Greenwalt42acef32009-08-12 16:08:25 -0700109 // priority order of the nettrackers
110 // (excluding dynamically set mNetworkPreference)
111 // TODO - move mNetworkTypePreference into this
112 private int[] mPriorityList;
113
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114 private Context mContext;
115 private int mNetworkPreference;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700116 private int mActiveDefaultNetwork = -1;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -0700117 // 0 is full bad, 100 is full good
118 private int mDefaultInetCondition = 0;
119 private int mDefaultInetConditionPublished = 0;
120 private boolean mInetConditionChangeInFlight = false;
121 private int mDefaultConnectionSequence = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122
123 private int mNumDnsEntries;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124
125 private boolean mTestMode;
Joe Onorato00092872010-09-01 21:18:22 -0700126 private static ConnectivityService sServiceInstance;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127
Robert Greenwaltd825ea42010-12-29 16:15:02 -0800128 private AtomicBoolean mBackgroundDataEnabled = new AtomicBoolean(true);
129
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700130 private INetworkManagementService mNetd;
131
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700132 private static final int ENABLED = 1;
133 private static final int DISABLED = 0;
134
135 // Share the event space with NetworkStateTracker (which can't see this
136 // internal class but sends us events). If you change these, change
137 // NetworkStateTracker.java too.
138 private static final int MIN_NETWORK_STATE_TRACKER_EVENT = 1;
139 private static final int MAX_NETWORK_STATE_TRACKER_EVENT = 100;
140
141 /**
142 * used internally as a delayed event to make us switch back to the
143 * default network
144 */
145 private static final int EVENT_RESTORE_DEFAULT_NETWORK =
146 MAX_NETWORK_STATE_TRACKER_EVENT + 1;
147
148 /**
149 * used internally to change our mobile data enabled flag
150 */
151 private static final int EVENT_CHANGE_MOBILE_DATA_ENABLED =
152 MAX_NETWORK_STATE_TRACKER_EVENT + 2;
153
154 /**
155 * used internally to change our network preference setting
156 * arg1 = networkType to prefer
157 */
158 private static final int EVENT_SET_NETWORK_PREFERENCE =
159 MAX_NETWORK_STATE_TRACKER_EVENT + 3;
160
161 /**
162 * used internally to synchronize inet condition reports
163 * arg1 = networkType
164 * arg2 = condition (0 bad, 100 good)
165 */
166 private static final int EVENT_INET_CONDITION_CHANGE =
167 MAX_NETWORK_STATE_TRACKER_EVENT + 4;
168
169 /**
170 * used internally to mark the end of inet condition hold periods
171 * arg1 = networkType
172 */
173 private static final int EVENT_INET_CONDITION_HOLD_END =
174 MAX_NETWORK_STATE_TRACKER_EVENT + 5;
175
176 /**
177 * used internally to set the background data preference
178 * arg1 = TRUE for enabled, FALSE for disabled
179 */
180 private static final int EVENT_SET_BACKGROUND_DATA =
181 MAX_NETWORK_STATE_TRACKER_EVENT + 6;
182
183 /**
184 * used internally to set enable/disable cellular data
185 * arg1 = ENBALED or DISABLED
186 */
187 private static final int EVENT_SET_MOBILE_DATA =
188 MAX_NETWORK_STATE_TRACKER_EVENT + 7;
189
Robert Greenwaltf3331232010-09-24 14:32:21 -0700190 /**
191 * used internally to clear a wakelock when transitioning
192 * from one net to another
193 */
194 private static final int EVENT_CLEAR_NET_TRANSITION_WAKELOCK =
195 MAX_NETWORK_STATE_TRACKER_EVENT + 8;
196
Robert Greenwalt434203a2010-10-11 16:00:27 -0700197 /**
198 * used internally to reload global proxy settings
199 */
200 private static final int EVENT_APPLY_GLOBAL_HTTP_PROXY =
201 MAX_NETWORK_STATE_TRACKER_EVENT + 9;
202
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700203 /**
204 * used internally to set external dependency met/unmet
205 * arg1 = ENABLED (met) or DISABLED (unmet)
206 * arg2 = NetworkType
207 */
208 private static final int EVENT_SET_DEPENDENCY_MET =
209 MAX_NETWORK_STATE_TRACKER_EVENT + 10;
210
Robert Greenwalt42acef32009-08-12 16:08:25 -0700211 private Handler mHandler;
212
213 // list of DeathRecipients used to make sure features are turned off when
214 // a process dies
215 private List mFeatureUsers;
216
Mike Lockwood0f79b542009-08-14 14:18:49 -0400217 private boolean mSystemReady;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -0800218 private Intent mInitialBroadcast;
Mike Lockwood0f79b542009-08-14 14:18:49 -0400219
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700220 private PowerManager.WakeLock mNetTransitionWakeLock;
221 private String mNetTransitionWakeLockCausedBy = "";
222 private int mNetTransitionWakeLockSerialNumber;
223 private int mNetTransitionWakeLockTimeout;
224
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700225 private InetAddress mDefaultDns;
226
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700227 // used in DBG mode to track inet condition reports
228 private static final int INET_CONDITION_LOG_MAX_SIZE = 15;
229 private ArrayList mInetLog;
230
Robert Greenwalt434203a2010-10-11 16:00:27 -0700231 // track the current default http proxy - tell the world if we get a new one (real change)
232 private ProxyProperties mDefaultProxy = null;
233 // track the global proxy.
234 private ProxyProperties mGlobalProxy = null;
235 private final Object mGlobalProxyLock = new Object();
236
237 private SettingsObserver mSettingsObserver;
238
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700239 NetworkConfig[] mNetConfigs;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700240 int mNetworksDefined;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700241
Robert Greenwalt511288a2009-12-07 11:33:18 -0800242 private static class RadioAttributes {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700243 public int mSimultaneity;
244 public int mType;
245 public RadioAttributes(String init) {
246 String fragments[] = init.split(",");
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700247 mType = Integer.parseInt(fragments[0]);
248 mSimultaneity = Integer.parseInt(fragments[1]);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700249 }
250 }
251 RadioAttributes[] mRadioAttributes;
252
Wink Savillebb08caf2010-09-02 19:23:52 -0700253 public static synchronized ConnectivityService getInstance(Context context) {
254 if (sServiceInstance == null) {
255 sServiceInstance = new ConnectivityService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 }
Wink Savillebb08caf2010-09-02 19:23:52 -0700257 return sServiceInstance;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700259
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 private ConnectivityService(Context context) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800261 if (DBG) log("ConnectivityService starting up");
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800262
Wink Savillebb08caf2010-09-02 19:23:52 -0700263 HandlerThread handlerThread = new HandlerThread("ConnectivityServiceThread");
264 handlerThread.start();
265 mHandler = new MyHandler(handlerThread.getLooper());
266
Robert Greenwaltd825ea42010-12-29 16:15:02 -0800267 mBackgroundDataEnabled.set(Settings.Secure.getInt(context.getContentResolver(),
268 Settings.Secure.BACKGROUND_DATA, 1) == 1);
269
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800270 // setup our unique device name
Robert Greenwalt733c6292010-12-06 09:30:17 -0800271 if (TextUtils.isEmpty(SystemProperties.get("net.hostname"))) {
272 String id = Settings.Secure.getString(context.getContentResolver(),
273 Settings.Secure.ANDROID_ID);
274 if (id != null && id.length() > 0) {
275 String name = new String("android_").concat(id);
276 SystemProperties.set("net.hostname", name);
277 }
Robert Greenwaltde8383c2010-01-14 17:47:58 -0800278 }
279
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700280 // read our default dns server ip
281 String dns = Settings.Secure.getString(context.getContentResolver(),
282 Settings.Secure.DEFAULT_DNS_SERVER);
283 if (dns == null || dns.length() == 0) {
284 dns = context.getResources().getString(
285 com.android.internal.R.string.config_default_dns_server);
286 }
287 try {
Robert Greenwalte5903732011-02-22 16:00:42 -0800288 mDefaultDns = NetworkUtils.numericToInetAddress(dns);
289 } catch (IllegalArgumentException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800290 loge("Error setting defaultDns using " + dns);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -0700291 }
292
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293 mContext = context;
Robert Greenwalt14f2ef42010-06-15 12:19:37 -0700294
295 PowerManager powerManager = (PowerManager)mContext.getSystemService(Context.POWER_SERVICE);
296 mNetTransitionWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, TAG);
297 mNetTransitionWakeLockTimeout = mContext.getResources().getInteger(
298 com.android.internal.R.integer.config_networkTransitionTimeout);
299
Robert Greenwalt42acef32009-08-12 16:08:25 -0700300 mNetTrackers = new NetworkStateTracker[
301 ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700302
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 mNetworkPreference = getPersistedNetworkPreference();
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700304
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700305 mRadioAttributes = new RadioAttributes[ConnectivityManager.MAX_RADIO_TYPE+1];
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700306 mNetConfigs = new NetworkConfig[ConnectivityManager.MAX_NETWORK_TYPE+1];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700307
Robert Greenwalt42acef32009-08-12 16:08:25 -0700308 // Load device network attributes from resources
Robert Greenwalt42acef32009-08-12 16:08:25 -0700309 String[] raStrings = context.getResources().getStringArray(
310 com.android.internal.R.array.radioAttributes);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700311 for (String raString : raStrings) {
312 RadioAttributes r = new RadioAttributes(raString);
313 if (r.mType > ConnectivityManager.MAX_RADIO_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800314 loge("Error in radioAttributes - ignoring attempt to define type " + r.mType);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700315 continue;
316 }
317 if (mRadioAttributes[r.mType] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800318 loge("Error in radioAttributes - ignoring attempt to redefine type " +
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700319 r.mType);
320 continue;
321 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700322 mRadioAttributes[r.mType] = r;
323 }
324
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700325 String[] naStrings = context.getResources().getStringArray(
326 com.android.internal.R.array.networkAttributes);
327 for (String naString : naStrings) {
328 try {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700329 NetworkConfig n = new NetworkConfig(naString);
Wink Saville975c8482011-04-07 14:23:45 -0700330 if (n.type > ConnectivityManager.MAX_NETWORK_TYPE) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800331 loge("Error in networkAttributes - ignoring attempt to define type " +
Wink Saville975c8482011-04-07 14:23:45 -0700332 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700333 continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700334 }
Wink Saville975c8482011-04-07 14:23:45 -0700335 if (mNetConfigs[n.type] != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800336 loge("Error in networkAttributes - ignoring attempt to redefine type " +
Wink Saville975c8482011-04-07 14:23:45 -0700337 n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700338 continue;
339 }
Wink Saville975c8482011-04-07 14:23:45 -0700340 if (mRadioAttributes[n.radio] == null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800341 loge("Error in networkAttributes - ignoring attempt to use undefined " +
Wink Saville975c8482011-04-07 14:23:45 -0700342 "radio " + n.radio + " in network type " + n.type);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700343 continue;
344 }
Wink Saville975c8482011-04-07 14:23:45 -0700345 mNetConfigs[n.type] = n;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700346 mNetworksDefined++;
347 } catch(Exception e) {
348 // ignore it - leave the entry null
Robert Greenwalt42acef32009-08-12 16:08:25 -0700349 }
350 }
351
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700352 // high priority first
353 mPriorityList = new int[mNetworksDefined];
354 {
355 int insertionPoint = mNetworksDefined-1;
356 int currentLowest = 0;
357 int nextLowest = 0;
358 while (insertionPoint > -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700359 for (NetworkConfig na : mNetConfigs) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700360 if (na == null) continue;
Wink Saville975c8482011-04-07 14:23:45 -0700361 if (na.priority < currentLowest) continue;
362 if (na.priority > currentLowest) {
363 if (na.priority < nextLowest || nextLowest == 0) {
364 nextLowest = na.priority;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700365 }
366 continue;
367 }
Wink Saville975c8482011-04-07 14:23:45 -0700368 mPriorityList[insertionPoint--] = na.type;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700369 }
370 currentLowest = nextLowest;
371 nextLowest = 0;
372 }
373 }
374
375 mNetRequestersPids = new ArrayList[ConnectivityManager.MAX_NETWORK_TYPE+1];
376 for (int i : mPriorityList) {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700377 mNetRequestersPids[i] = new ArrayList();
378 }
379
380 mFeatureUsers = new ArrayList();
381
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700382 mNumDnsEntries = 0;
383
384 mTestMode = SystemProperties.get("cm.test.mode").equals("true")
385 && SystemProperties.get("ro.build.type").equals("eng");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 /*
387 * Create the network state trackers for Wi-Fi and mobile
388 * data. Maybe this could be done with a factory class,
389 * but it's not clear that it's worth it, given that
390 * the number of different network types is not going
391 * to change very often.
392 */
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700393 for (int netType : mPriorityList) {
Wink Saville975c8482011-04-07 14:23:45 -0700394 switch (mNetConfigs[netType].radio) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700395 case ConnectivityManager.TYPE_WIFI:
Wink Savilleed9c02b2010-12-03 12:01:38 -0800396 if (DBG) log("Starting Wifi Service.");
Wink Savillec7a98342010-08-13 16:11:42 -0700397 WifiStateTracker wst = new WifiStateTracker();
Irfan Sheriff0d255342010-07-28 09:35:20 -0700398 WifiService wifiService = new WifiService(context);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700399 ServiceManager.addService(Context.WIFI_SERVICE, wifiService);
Irfan Sheriff0d255342010-07-28 09:35:20 -0700400 wifiService.checkAndStartWifi();
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700401 mNetTrackers[ConnectivityManager.TYPE_WIFI] = wst;
Wink Savillec7a98342010-08-13 16:11:42 -0700402 wst.startMonitoring(context, mHandler);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403
Irfan Sheriffa2a1b912010-06-07 09:03:04 -0700404 //TODO: as part of WWS refactor, create only when needed
Irfan Sheriff0d255342010-07-28 09:35:20 -0700405 mWifiWatchdogService = new WifiWatchdogService(context);
Irfan Sheriffa2a1b912010-06-07 09:03:04 -0700406
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700407 break;
408 case ConnectivityManager.TYPE_MOBILE:
Wink Savillec7a98342010-08-13 16:11:42 -0700409 mNetTrackers[netType] = new MobileDataStateTracker(netType,
Wink Saville975c8482011-04-07 14:23:45 -0700410 mNetConfigs[netType].name);
Wink Savillec7a98342010-08-13 16:11:42 -0700411 mNetTrackers[netType].startMonitoring(context, mHandler);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700412 break;
Robert Greenwaltda3d5e62010-12-06 13:56:24 -0800413 case ConnectivityManager.TYPE_DUMMY:
414 mNetTrackers[netType] = new DummyDataStateTracker(netType,
Wink Saville975c8482011-04-07 14:23:45 -0700415 mNetConfigs[netType].name);
Robert Greenwaltda3d5e62010-12-06 13:56:24 -0800416 mNetTrackers[netType].startMonitoring(context, mHandler);
417 break;
Jaikumar Ganesh15c74392010-12-21 22:31:44 -0800418 case ConnectivityManager.TYPE_BLUETOOTH:
419 mNetTrackers[netType] = BluetoothTetheringDataTracker.getInstance();
420 mNetTrackers[netType].startMonitoring(context, mHandler);
421 break;
Benoit Goby08c39c62010-12-22 14:29:40 -0800422 case ConnectivityManager.TYPE_ETHERNET:
423 mNetTrackers[netType] = EthernetDataTracker.getInstance();
424 mNetTrackers[netType].startMonitoring(context, mHandler);
425 break;
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700426 default:
Wink Savilleed9c02b2010-12-03 12:01:38 -0800427 loge("Trying to create a DataStateTracker for an unknown radio type " +
Wink Saville975c8482011-04-07 14:23:45 -0700428 mNetConfigs[netType].radio);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700429 continue;
430 }
431 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -0800432
Robert Greenwaltdfadaea2010-03-11 15:03:08 -0800433 mTethering = new Tethering(mContext, mHandler.getLooper());
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -0800434 mTetheringConfigValid = (((mNetTrackers[ConnectivityManager.TYPE_MOBILE_DUN] != null) ||
435 !mTethering.isDunRequired()) &&
436 (mTethering.getTetherableUsbRegexs().length != 0 ||
Danica Chang6fdd0c62010-08-11 14:54:43 -0700437 mTethering.getTetherableWifiRegexs().length != 0 ||
438 mTethering.getTetherableBluetoothRegexs().length != 0) &&
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -0800439 mTethering.getUpstreamIfaceRegexs().length != 0);
440
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -0700441 if (DBG) {
442 mInetLog = new ArrayList();
443 }
Robert Greenwalt434203a2010-10-11 16:00:27 -0700444
445 mSettingsObserver = new SettingsObserver(mHandler, EVENT_APPLY_GLOBAL_HTTP_PROXY);
446 mSettingsObserver.observe(mContext);
Robert Greenwaltb7090d62010-12-02 11:31:00 -0800447
448 loadGlobalProxy();
Hung-ying Tyan6b818de2011-01-19 16:48:38 +0800449
450 VpnManager.startVpnService(context);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800451 }
452
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700453
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700455 * Sets the preferred network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 * @param preference the new preference
457 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700458 public void setNetworkPreference(int preference) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800459 enforceChangePermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700460
461 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_NETWORK_PREFERENCE, preference, 0));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 }
463
464 public int getNetworkPreference() {
465 enforceAccessPermission();
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700466 int preference;
467 synchronized(this) {
468 preference = mNetworkPreference;
469 }
470 return preference;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800471 }
472
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700473 private void handleSetNetworkPreference(int preference) {
474 if (ConnectivityManager.isNetworkTypeValid(preference) &&
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700475 mNetConfigs[preference] != null &&
476 mNetConfigs[preference].isDefault()) {
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700477 if (mNetworkPreference != preference) {
478 final ContentResolver cr = mContext.getContentResolver();
479 Settings.Secure.putInt(cr, Settings.Secure.NETWORK_PREFERENCE, preference);
480 synchronized(this) {
481 mNetworkPreference = preference;
482 }
483 enforcePreference();
484 }
485 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800486 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700487
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800488 private int getPersistedNetworkPreference() {
489 final ContentResolver cr = mContext.getContentResolver();
490
491 final int networkPrefSetting = Settings.Secure
492 .getInt(cr, Settings.Secure.NETWORK_PREFERENCE, -1);
493 if (networkPrefSetting != -1) {
494 return networkPrefSetting;
495 }
496
497 return ConnectivityManager.DEFAULT_NETWORK_PREFERENCE;
498 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700499
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800500 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700501 * Make the state of network connectivity conform to the preference settings
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502 * In this method, we only tear down a non-preferred network. Establishing
503 * a connection to the preferred network is taken care of when we handle
504 * the disconnect event from the non-preferred network
505 * (see {@link #handleDisconnect(NetworkInfo)}).
506 */
507 private void enforcePreference() {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700508 if (mNetTrackers[mNetworkPreference].getNetworkInfo().isConnected())
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800509 return;
510
Robert Greenwalt42acef32009-08-12 16:08:25 -0700511 if (!mNetTrackers[mNetworkPreference].isAvailable())
512 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513
Robert Greenwalt42acef32009-08-12 16:08:25 -0700514 for (int t=0; t <= ConnectivityManager.MAX_RADIO_TYPE; t++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700515 if (t != mNetworkPreference && mNetTrackers[t] != null &&
Robert Greenwalt42acef32009-08-12 16:08:25 -0700516 mNetTrackers[t].getNetworkInfo().isConnected()) {
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700517 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800518 log("tearing down " + mNetTrackers[t].getNetworkInfo() +
Robert Greenwaltec9fe462009-08-20 15:25:14 -0700519 " in enforcePreference");
520 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700521 teardown(mNetTrackers[t]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522 }
523 }
524 }
525
526 private boolean teardown(NetworkStateTracker netTracker) {
527 if (netTracker.teardown()) {
528 netTracker.setTeardownRequested(true);
529 return true;
530 } else {
531 return false;
532 }
533 }
534
535 /**
536 * Return NetworkInfo for the active (i.e., connected) network interface.
537 * It is assumed that at most one network is active at a time. If more
538 * than one is active, it is indeterminate which will be returned.
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700539 * @return the info for the active network, or {@code null} if none is
540 * active
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 */
542 public NetworkInfo getActiveNetworkInfo() {
Robert Greenwalt59911582011-05-20 12:23:41 -0700543 return getNetworkInfo(mActiveDefaultNetwork);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544 }
545
546 public NetworkInfo getNetworkInfo(int networkType) {
547 enforceAccessPermission();
548 if (ConnectivityManager.isNetworkTypeValid(networkType)) {
549 NetworkStateTracker t = mNetTrackers[networkType];
550 if (t != null)
551 return t.getNetworkInfo();
552 }
553 return null;
554 }
555
556 public NetworkInfo[] getAllNetworkInfo() {
557 enforceAccessPermission();
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700558 NetworkInfo[] result = new NetworkInfo[mNetworksDefined];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559 int i = 0;
560 for (NetworkStateTracker t : mNetTrackers) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700561 if(t != null) result[i++] = t.getNetworkInfo();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800562 }
563 return result;
564 }
565
Robert Greenwaltd192dad2010-09-14 09:18:02 -0700566 /**
567 * Return LinkProperties for the active (i.e., connected) default
568 * network interface. It is assumed that at most one default network
569 * is active at a time. If more than one is active, it is indeterminate
570 * which will be returned.
571 * @return the ip properties for the active network, or {@code null} if
572 * none is active
573 */
574 public LinkProperties getActiveLinkProperties() {
Robert Greenwalt59911582011-05-20 12:23:41 -0700575 return getLinkProperties(mActiveDefaultNetwork);
Robert Greenwaltd192dad2010-09-14 09:18:02 -0700576 }
577
578 public LinkProperties getLinkProperties(int networkType) {
579 enforceAccessPermission();
580 if (ConnectivityManager.isNetworkTypeValid(networkType)) {
581 NetworkStateTracker t = mNetTrackers[networkType];
582 if (t != null) return t.getLinkProperties();
583 }
584 return null;
585 }
586
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 public boolean setRadios(boolean turnOn) {
588 boolean result = true;
589 enforceChangePermission();
590 for (NetworkStateTracker t : mNetTrackers) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700591 if (t != null) result = t.setRadio(turnOn) && result;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800592 }
593 return result;
594 }
595
596 public boolean setRadio(int netType, boolean turnOn) {
597 enforceChangePermission();
598 if (!ConnectivityManager.isNetworkTypeValid(netType)) {
599 return false;
600 }
601 NetworkStateTracker tracker = mNetTrackers[netType];
602 return tracker != null && tracker.setRadio(turnOn);
603 }
604
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700605 /**
606 * Used to notice when the calling process dies so we can self-expire
607 *
608 * Also used to know if the process has cleaned up after itself when
609 * our auto-expire timer goes off. The timer has a link to an object.
610 *
611 */
Robert Greenwalt42acef32009-08-12 16:08:25 -0700612 private class FeatureUser implements IBinder.DeathRecipient {
613 int mNetworkType;
614 String mFeature;
615 IBinder mBinder;
616 int mPid;
617 int mUid;
Robert Greenwaltb9285352009-12-21 18:24:07 -0800618 long mCreateTime;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700619
620 FeatureUser(int type, String feature, IBinder binder) {
621 super();
622 mNetworkType = type;
623 mFeature = feature;
624 mBinder = binder;
625 mPid = getCallingPid();
626 mUid = getCallingUid();
Robert Greenwaltb9285352009-12-21 18:24:07 -0800627 mCreateTime = System.currentTimeMillis();
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700628
Robert Greenwalt42acef32009-08-12 16:08:25 -0700629 try {
630 mBinder.linkToDeath(this, 0);
631 } catch (RemoteException e) {
632 binderDied();
633 }
634 }
635
636 void unlinkDeathRecipient() {
637 mBinder.unlinkToDeath(this, 0);
638 }
639
640 public void binderDied() {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800641 log("ConnectivityService FeatureUser binderDied(" +
Robert Greenwaltb9285352009-12-21 18:24:07 -0800642 mNetworkType + ", " + mFeature + ", " + mBinder + "), created " +
643 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700644 stopUsingNetworkFeature(this, false);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700645 }
646
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700647 public void expire() {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800648 log("ConnectivityService FeatureUser expire(" +
Robert Greenwaltb9285352009-12-21 18:24:07 -0800649 mNetworkType + ", " + mFeature + ", " + mBinder +"), created " +
650 (System.currentTimeMillis() - mCreateTime) + " mSec ago");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700651 stopUsingNetworkFeature(this, false);
652 }
Robert Greenwaltb9285352009-12-21 18:24:07 -0800653
654 public String toString() {
655 return "FeatureUser("+mNetworkType+","+mFeature+","+mPid+","+mUid+"), created " +
656 (System.currentTimeMillis() - mCreateTime) + " mSec ago";
657 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700658 }
659
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700660 // javadoc from interface
Robert Greenwalt42acef32009-08-12 16:08:25 -0700661 public int startUsingNetworkFeature(int networkType, String feature,
662 IBinder binder) {
663 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800664 log("startUsingNetworkFeature for net " + networkType + ": " + feature);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700665 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800666 enforceChangePermission();
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700667 if (!ConnectivityManager.isNetworkTypeValid(networkType) ||
Robert Greenwaltd55a6b42011-03-25 13:09:25 -0700668 mNetConfigs[networkType] == null) {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700669 return Phone.APN_REQUEST_FAILED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800670 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700671
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700672 FeatureUser f = new FeatureUser(networkType, feature, binder);
Robert Greenwalt42acef32009-08-12 16:08:25 -0700673
674 // TODO - move this into the MobileDataStateTracker
675 int usedNetworkType = networkType;
676 if(networkType == ConnectivityManager.TYPE_MOBILE) {
Wink Saville9d7d6282011-03-12 14:52:01 -0800677 usedNetworkType = convertFeatureToNetworkType(feature);
678 if (usedNetworkType < 0) {
679 Slog.e(TAG, "Can't match any netTracker!");
680 usedNetworkType = networkType;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700681 }
682 }
683 NetworkStateTracker network = mNetTrackers[usedNetworkType];
684 if (network != null) {
Robert Greenwalt0be1e982010-12-15 13:26:33 -0800685 Integer currentPid = new Integer(getCallingPid());
Robert Greenwalt42acef32009-08-12 16:08:25 -0700686 if (usedNetworkType != networkType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700687 NetworkStateTracker radio = mNetTrackers[networkType];
688 NetworkInfo ni = network.getNetworkInfo();
689
690 if (ni.isAvailable() == false) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800691 if (DBG) log("special network not available");
Robert Greenwalte32e8122010-12-29 14:35:21 -0800692 if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
693 return Phone.APN_TYPE_NOT_AVAILABLE;
694 } else {
695 // else make the attempt anyway - probably giving REQUEST_STARTED below
696 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700697 }
698
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700699 synchronized(this) {
700 mFeatureUsers.add(f);
701 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
702 // this gets used for per-pid dns when connected
703 mNetRequestersPids[usedNetworkType].add(currentPid);
704 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700705 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700706
Robert Greenwaltf2102f72011-05-03 19:02:44 -0700707 int restoreTimer = getRestoreDefaultNetworkDelay(usedNetworkType);
708
709 if (restoreTimer >= 0) {
710 mHandler.sendMessageDelayed(
711 mHandler.obtainMessage(EVENT_RESTORE_DEFAULT_NETWORK, f), restoreTimer);
712 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700713
Robert Greenwalta64bf832009-08-19 20:19:33 -0700714 if ((ni.isConnectedOrConnecting() == true) &&
715 !network.isTeardownRequested()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -0700716 if (ni.isConnected() == true) {
717 // add the pid-specific dns
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -0700718 handleDnsConfigurationChange(networkType);
Wink Savilleed9c02b2010-12-03 12:01:38 -0800719 if (DBG) log("special network already active");
Robert Greenwalt42acef32009-08-12 16:08:25 -0700720 return Phone.APN_ALREADY_ACTIVE;
721 }
Wink Savilleed9c02b2010-12-03 12:01:38 -0800722 if (DBG) log("special network already connecting");
Robert Greenwalt42acef32009-08-12 16:08:25 -0700723 return Phone.APN_REQUEST_STARTED;
724 }
725
726 // check if the radio in play can make another contact
727 // assume if cannot for now
728
Wink Savilleed9c02b2010-12-03 12:01:38 -0800729 if (DBG) log("reconnecting to special network");
Robert Greenwalt42acef32009-08-12 16:08:25 -0700730 network.reconnect();
731 return Phone.APN_REQUEST_STARTED;
732 } else {
Robert Greenwalt0be1e982010-12-15 13:26:33 -0800733 // need to remember this unsupported request so we respond appropriately on stop
734 synchronized(this) {
735 mFeatureUsers.add(f);
736 if (!mNetRequestersPids[usedNetworkType].contains(currentPid)) {
737 // this gets used for per-pid dns when connected
738 mNetRequestersPids[usedNetworkType].add(currentPid);
739 }
740 }
Robert Greenwalt02648a42010-05-18 10:52:51 -0700741 return -1;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700742 }
743 }
744 return Phone.APN_TYPE_NOT_AVAILABLE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800745 }
746
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700747 // javadoc from interface
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800748 public int stopUsingNetworkFeature(int networkType, String feature) {
Robert Greenwaltb8f16342009-10-06 17:52:40 -0700749 enforceChangePermission();
750
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700751 int pid = getCallingPid();
752 int uid = getCallingUid();
753
754 FeatureUser u = null;
755 boolean found = false;
756
757 synchronized(this) {
758 for (int i = 0; i < mFeatureUsers.size() ; i++) {
759 u = (FeatureUser)mFeatureUsers.get(i);
760 if (uid == u.mUid && pid == u.mPid &&
761 networkType == u.mNetworkType &&
762 TextUtils.equals(feature, u.mFeature)) {
763 found = true;
764 break;
765 }
766 }
767 }
768 if (found && u != null) {
769 // stop regardless of how many other time this proc had called start
770 return stopUsingNetworkFeature(u, true);
771 } else {
772 // none found!
Wink Savilleed9c02b2010-12-03 12:01:38 -0800773 if (DBG) log("ignoring stopUsingNetworkFeature - not a live request");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700774 return 1;
775 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700776 }
777
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700778 private int stopUsingNetworkFeature(FeatureUser u, boolean ignoreDups) {
779 int networkType = u.mNetworkType;
780 String feature = u.mFeature;
781 int pid = u.mPid;
782 int uid = u.mUid;
783
784 NetworkStateTracker tracker = null;
785 boolean callTeardown = false; // used to carry our decision outside of sync block
786
Robert Greenwalt42acef32009-08-12 16:08:25 -0700787 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800788 log("stopUsingNetworkFeature for net " + networkType +
Robert Greenwalt42acef32009-08-12 16:08:25 -0700789 ": " + feature);
790 }
Robert Greenwaltb8f16342009-10-06 17:52:40 -0700791
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
793 return -1;
794 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700795
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700796 // need to link the mFeatureUsers list with the mNetRequestersPids state in this
797 // sync block
798 synchronized(this) {
799 // check if this process still has an outstanding start request
800 if (!mFeatureUsers.contains(u)) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800801 if (DBG) log("ignoring - this process has no outstanding requests");
Robert Greenwalt42acef32009-08-12 16:08:25 -0700802 return 1;
803 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700804 u.unlinkDeathRecipient();
805 mFeatureUsers.remove(mFeatureUsers.indexOf(u));
806 // If we care about duplicate requests, check for that here.
807 //
808 // This is done to support the extension of a request - the app
809 // can request we start the network feature again and renew the
810 // auto-shutoff delay. Normal "stop" calls from the app though
811 // do not pay attention to duplicate requests - in effect the
812 // API does not refcount and a single stop will counter multiple starts.
813 if (ignoreDups == false) {
814 for (int i = 0; i < mFeatureUsers.size() ; i++) {
815 FeatureUser x = (FeatureUser)mFeatureUsers.get(i);
816 if (x.mUid == u.mUid && x.mPid == u.mPid &&
817 x.mNetworkType == u.mNetworkType &&
818 TextUtils.equals(x.mFeature, u.mFeature)) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800819 if (DBG) log("ignoring stopUsingNetworkFeature as dup is found");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700820 return 1;
821 }
822 }
Robert Greenwalt42acef32009-08-12 16:08:25 -0700823 }
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700824
825 // TODO - move to MobileDataStateTracker
826 int usedNetworkType = networkType;
827 if (networkType == ConnectivityManager.TYPE_MOBILE) {
Wink Saville9d7d6282011-03-12 14:52:01 -0800828 usedNetworkType = convertFeatureToNetworkType(feature);
829 if (usedNetworkType < 0) {
830 usedNetworkType = networkType;
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700831 }
832 }
833 tracker = mNetTrackers[usedNetworkType];
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700834 if (tracker == null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800835 if (DBG) log("ignoring - no known tracker for net type " + usedNetworkType);
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700836 return -1;
837 }
838 if (usedNetworkType != networkType) {
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700839 Integer currentPid = new Integer(pid);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700840 mNetRequestersPids[usedNetworkType].remove(currentPid);
Robert Greenwalt421c72b2009-12-17 14:54:59 -0800841 reassessPidDns(pid, true);
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700842 if (mNetRequestersPids[usedNetworkType].size() != 0) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800843 if (DBG) log("not tearing down special network - " +
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700844 "others still using it");
845 return 1;
846 }
847 callTeardown = true;
Robert Greenwalt19b9ab42011-01-10 11:58:31 -0800848 } else {
849 if (DBG) log("not a known feature - dropping");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700850 }
851 }
Wink Savilleed9c02b2010-12-03 12:01:38 -0800852 if (DBG) log("Doing network teardown");
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -0700853 if (callTeardown) {
854 tracker.teardown();
Robert Greenwalt42acef32009-08-12 16:08:25 -0700855 return 1;
856 } else {
Robert Greenwalt02648a42010-05-18 10:52:51 -0700857 return -1;
Robert Greenwalt42acef32009-08-12 16:08:25 -0700858 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859 }
860
861 /**
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700862 * @deprecated use requestRouteToHostAddress instead
863 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800864 * Ensure that a network route exists to deliver traffic to the specified
865 * host via the specified network interface.
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700866 * @param networkType the type of the network over which traffic to the
867 * specified host is to be routed
868 * @param hostAddress the IP address of the host to which the route is
869 * desired
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800870 * @return {@code true} on success, {@code false} on failure
871 */
872 public boolean requestRouteToHost(int networkType, int hostAddress) {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700873 InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
874
875 if (inetAddress == null) {
876 return false;
877 }
878
879 return requestRouteToHostAddress(networkType, inetAddress.getAddress());
880 }
881
882 /**
883 * Ensure that a network route exists to deliver traffic to the specified
884 * host via the specified network interface.
885 * @param networkType the type of the network over which traffic to the
886 * specified host is to be routed
887 * @param hostAddress the IP address of the host to which the route is
888 * desired
889 * @return {@code true} on success, {@code false} on failure
890 */
891 public boolean requestRouteToHostAddress(int networkType, byte[] hostAddress) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800892 enforceChangePermission();
893 if (!ConnectivityManager.isNetworkTypeValid(networkType)) {
894 return false;
895 }
896 NetworkStateTracker tracker = mNetTrackers[networkType];
Robert Greenwalt8206ff32009-09-10 15:06:20 -0700897
Robert Greenwalt5154ae762009-10-30 14:17:42 -0700898 if (tracker == null || !tracker.getNetworkInfo().isConnected() ||
899 tracker.isTeardownRequested()) {
Robert Greenwalt8206ff32009-09-10 15:06:20 -0700900 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800901 log("requestRouteToHostAddress on down network " +
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700902 "(" + networkType + ") - dropped");
Robert Greenwalt8206ff32009-09-10 15:06:20 -0700903 }
904 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 }
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700906 try {
Robert Greenwalt585ac0f2010-08-27 09:24:29 -0700907 InetAddress addr = InetAddress.getByAddress(hostAddress);
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700908 return addHostRoute(tracker, addr, 0);
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700909 } catch (UnknownHostException e) {}
910 return false;
Irfan Sheriffd649c122010-06-09 15:39:36 -0700911 }
912
913 /**
914 * Ensure that a network route exists to deliver traffic to the specified
915 * host via the mobile data network.
916 * @param hostAddress the IP address of the host to which the route is desired,
917 * in network byte order.
Robert Greenwalt47f69fe2010-06-15 15:43:39 -0700918 * TODO - deprecate
Irfan Sheriffd649c122010-06-09 15:39:36 -0700919 * @return {@code true} on success, {@code false} on failure
920 */
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700921 private boolean addHostRoute(NetworkStateTracker nt, InetAddress hostAddress, int cycleCount) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700922 LinkProperties lp = nt.getLinkProperties();
923 if ((lp == null) || (hostAddress == null)) return false;
Irfan Sheriffd649c122010-06-09 15:39:36 -0700924
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700925 String interfaceName = lp.getInterfaceName();
Irfan Sheriffd649c122010-06-09 15:39:36 -0700926 if (DBG) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700927 log("Requested host route to " + hostAddress + "(" + interfaceName + "), cycleCount=" +
928 cycleCount);
Irfan Sheriffd649c122010-06-09 15:39:36 -0700929 }
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700930 if (interfaceName == null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -0800931 if (DBG) loge("addHostRoute failed due to null interface name");
Irfan Sheriffd649c122010-06-09 15:39:36 -0700932 return false;
933 }
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700934
935 RouteInfo bestRoute = RouteInfo.selectBestRoute(lp.getRoutes(), hostAddress);
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700936 InetAddress gatewayAddress = null;
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700937 if (bestRoute != null) {
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700938 gatewayAddress = bestRoute.getGateway();
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700939 // if the best route is ourself, don't relf-reference, just add the host route
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700940 if (hostAddress.equals(gatewayAddress)) gatewayAddress = null;
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700941 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700942 if (gatewayAddress != null) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700943 if (cycleCount > MAX_HOSTROUTE_CYCLE_COUNT) {
944 loge("Error adding hostroute - too much recursion");
945 return false;
946 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700947 if (!addHostRoute(nt, gatewayAddress, cycleCount+1)) return false;
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700948 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -0700949
950 RouteInfo route = RouteInfo.makeHostRoute(hostAddress, gatewayAddress);
951
952 try {
953 mNetd.addRoute(interfaceName, route);
954 return true;
955 } catch (Exception ex) {
956 return false;
957 }
Robert Greenwaltf43396c2011-05-06 17:10:53 -0700958 }
959
960 // TODO support the removal of single host routes. Keep a ref count of them so we
961 // aren't over-zealous
962 private boolean removeHostRoute(NetworkStateTracker nt, InetAddress hostAddress) {
963 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 }
965
966 /**
967 * @see ConnectivityManager#getBackgroundDataSetting()
968 */
969 public boolean getBackgroundDataSetting() {
Robert Greenwaltd825ea42010-12-29 16:15:02 -0800970 return mBackgroundDataEnabled.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971 }
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700972
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800973 /**
974 * @see ConnectivityManager#setBackgroundDataSetting(boolean)
975 */
976 public void setBackgroundDataSetting(boolean allowBackgroundDataUsage) {
977 mContext.enforceCallingOrSelfPermission(
978 android.Manifest.permission.CHANGE_BACKGROUND_DATA_SETTING,
979 "ConnectivityService");
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700980
Robert Greenwaltd825ea42010-12-29 16:15:02 -0800981 mBackgroundDataEnabled.set(allowBackgroundDataUsage);
982
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700983 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_BACKGROUND_DATA,
984 (allowBackgroundDataUsage ? ENABLED : DISABLED), 0));
985 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800986
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -0700987 private void handleSetBackgroundData(boolean enabled) {
Robert Greenwaltdb4afae2011-02-25 13:44:09 -0800988 Settings.Secure.putInt(mContext.getContentResolver(),
989 Settings.Secure.BACKGROUND_DATA, enabled ? 1 : 0);
990 Intent broadcast = new Intent(
991 ConnectivityManager.ACTION_BACKGROUND_DATA_SETTING_CHANGED);
992 mContext.sendBroadcast(broadcast);
Robert Greenwalt86e9e552009-07-16 17:21:39 -0700993 }
994
Robert Greenwaltc03fa502010-02-23 18:58:05 -0800995 /**
996 * @see ConnectivityManager#getMobileDataEnabled()
997 */
998 public boolean getMobileDataEnabled() {
Wink Savillee7982682010-12-07 10:31:02 -0800999 // TODO: This detail should probably be in DataConnectionTracker's
1000 // which is where we store the value and maybe make this
1001 // asynchronous.
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001002 enforceAccessPermission();
1003 boolean retVal = Settings.Secure.getInt(mContext.getContentResolver(),
1004 Settings.Secure.MOBILE_DATA, 1) == 1;
Wink Savilleed9c02b2010-12-03 12:01:38 -08001005 if (DBG) log("getMobileDataEnabled returning " + retVal);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001006 return retVal;
1007 }
1008
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001009 public void setDataDependency(int networkType, boolean met) {
1010 enforceChangePermission();
1011 if (DBG) {
1012 log("setDataDependency(" + networkType + ", " + met + ")");
1013 }
1014 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_DEPENDENCY_MET,
1015 (met ? ENABLED : DISABLED), networkType));
1016 }
1017
1018 private void handleSetDependencyMet(int networkType, boolean met) {
1019 if (mNetTrackers[networkType] != null) {
1020 if (DBG) {
1021 log("handleSetDependencyMet(" + networkType + ", " + met + ")");
1022 }
1023 mNetTrackers[networkType].setDependencyMet(met);
1024 }
1025 }
1026
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001027 /**
1028 * @see ConnectivityManager#setMobileDataEnabled(boolean)
1029 */
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001030 public void setMobileDataEnabled(boolean enabled) {
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001031 enforceChangePermission();
Wink Savilleed9c02b2010-12-03 12:01:38 -08001032 if (DBG) log("setMobileDataEnabled(" + enabled + ")");
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001033
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001034 mHandler.sendMessage(mHandler.obtainMessage(EVENT_SET_MOBILE_DATA,
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001035 (enabled ? ENABLED : DISABLED), 0));
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001036 }
1037
1038 private void handleSetMobileData(boolean enabled) {
Wink Savillee7982682010-12-07 10:31:02 -08001039 if (mNetTrackers[ConnectivityManager.TYPE_MOBILE] != null) {
1040 if (DBG) {
1041 Slog.d(TAG, mNetTrackers[ConnectivityManager.TYPE_MOBILE].toString() + enabled);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001042 }
Wink Savillee7982682010-12-07 10:31:02 -08001043 mNetTrackers[ConnectivityManager.TYPE_MOBILE].setDataEnable(enabled);
Robert Greenwaltc03fa502010-02-23 18:58:05 -08001044 }
1045 }
1046
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001047 private void enforceAccessPermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001048 mContext.enforceCallingOrSelfPermission(
1049 android.Manifest.permission.ACCESS_NETWORK_STATE,
1050 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001051 }
1052
1053 private void enforceChangePermission() {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001054 mContext.enforceCallingOrSelfPermission(
1055 android.Manifest.permission.CHANGE_NETWORK_STATE,
1056 "ConnectivityService");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001057 }
1058
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001059 // TODO Make this a special check when it goes public
1060 private void enforceTetherChangePermission() {
1061 mContext.enforceCallingOrSelfPermission(
1062 android.Manifest.permission.CHANGE_NETWORK_STATE,
1063 "ConnectivityService");
1064 }
1065
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001066 private void enforceTetherAccessPermission() {
1067 mContext.enforceCallingOrSelfPermission(
1068 android.Manifest.permission.ACCESS_NETWORK_STATE,
1069 "ConnectivityService");
1070 }
1071
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001072 private void enforceConnectivityInternalPermission() {
1073 mContext.enforceCallingOrSelfPermission(
1074 android.Manifest.permission.CONNECTIVITY_INTERNAL,
1075 "ConnectivityService");
1076 }
1077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001078 /**
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001079 * Handle a {@code DISCONNECTED} event. If this pertains to the non-active
1080 * network, we ignore it. If it is for the active network, we send out a
1081 * broadcast. But first, we check whether it might be possible to connect
1082 * to a different network.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001083 * @param info the {@code NetworkInfo} for the network
1084 */
1085 private void handleDisconnect(NetworkInfo info) {
1086
Robert Greenwalt42acef32009-08-12 16:08:25 -07001087 int prevNetType = info.getType();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001088
Robert Greenwalt42acef32009-08-12 16:08:25 -07001089 mNetTrackers[prevNetType].setTeardownRequested(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001090 /*
1091 * If the disconnected network is not the active one, then don't report
1092 * this as a loss of connectivity. What probably happened is that we're
1093 * getting the disconnect for a network that we explicitly disabled
1094 * in accordance with network preference policies.
1095 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001096 if (!mNetConfigs[prevNetType].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001097 List pids = mNetRequestersPids[prevNetType];
1098 for (int i = 0; i<pids.size(); i++) {
1099 Integer pid = (Integer)pids.get(i);
1100 // will remove them because the net's no longer connected
1101 // need to do this now as only now do we know the pids and
1102 // can properly null things that are no longer referenced.
1103 reassessPidDns(pid.intValue(), false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001104 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001105 }
1106
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
1108 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, info);
1109 if (info.isFailover()) {
1110 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1111 info.setFailover(false);
1112 }
1113 if (info.getReason() != null) {
1114 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
1115 }
1116 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001117 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
1118 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001119 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001120
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001121 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001122 tryFailover(prevNetType);
1123 if (mActiveDefaultNetwork != -1) {
1124 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08001125 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
1126 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07001127 mDefaultInetConditionPublished = 0; // we're not connected anymore
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08001128 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
1129 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001130 }
Robert Greenwalt029be812010-09-20 18:01:43 -07001131 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001132 // do this before we broadcast the change
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001133 handleConnectivityChange(prevNetType);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001134
1135 sendStickyBroadcast(intent);
1136 /*
1137 * If the failover network is already connected, then immediately send
1138 * out a followup broadcast indicating successful failover
1139 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001140 if (mActiveDefaultNetwork != -1) {
1141 sendConnectedBroadcast(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001142 }
1143 }
1144
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001145 private void tryFailover(int prevNetType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001146 /*
Robert Greenwaltbff90182011-01-06 15:41:07 -08001147 * If this is a default network, check if other defaults are available.
1148 * Try to reconnect on all available and let them hash it out when
1149 * more than one connects.
Robert Greenwalt42acef32009-08-12 16:08:25 -07001150 */
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001151 if (mNetConfigs[prevNetType].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001152 if (mActiveDefaultNetwork == prevNetType) {
1153 mActiveDefaultNetwork = -1;
1154 }
1155
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001156 // don't signal a reconnect for anything lower or equal priority than our
1157 // current connected default
1158 // TODO - don't filter by priority now - nice optimization but risky
1159// int currentPriority = -1;
1160// if (mActiveDefaultNetwork != -1) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001161// currentPriority = mNetConfigs[mActiveDefaultNetwork].mPriority;
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001162// }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001163 for (int checkType=0; checkType <= ConnectivityManager.MAX_NETWORK_TYPE; checkType++) {
Robert Greenwalt5154ae762009-10-30 14:17:42 -07001164 if (checkType == prevNetType) continue;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001165 if (mNetConfigs[checkType] == null) continue;
1166 if (!mNetConfigs[checkType].isDefault()) continue;
Wink Saville9f7a0b22011-01-26 15:43:49 -08001167
1168// Enabling the isAvailable() optimization caused mobile to not get
1169// selected if it was in the middle of error handling. Specifically
1170// a moble connection that took 30 seconds to complete the DEACTIVATE_DATA_CALL
1171// would not be available and we wouldn't get connected to anything.
1172// So removing the isAvailable() optimization below for now. TODO: This
1173// optimization should work and we need to investigate why it doesn't work.
1174// This could be related to how DEACTIVATE_DATA_CALL is reporting its
1175// complete before it is really complete.
1176// if (!mNetTrackers[checkType].isAvailable()) continue;
1177
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001178// if (currentPriority >= mNetConfigs[checkType].mPriority) continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001179
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001180 NetworkStateTracker checkTracker = mNetTrackers[checkType];
1181 NetworkInfo checkInfo = checkTracker.getNetworkInfo();
1182 if (!checkInfo.isConnectedOrConnecting() || checkTracker.isTeardownRequested()) {
1183 checkInfo.setFailover(true);
1184 checkTracker.reconnect();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001185 }
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001186 if (DBG) log("Attempting to switch to " + checkInfo.getTypeName());
Robert Greenwalt42acef32009-08-12 16:08:25 -07001187 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001189 }
1190
1191 private void sendConnectedBroadcast(NetworkInfo info) {
Robert Greenwalt1e9aac22010-09-15 17:36:33 -07001192 sendGeneralBroadcast(info, ConnectivityManager.CONNECTIVITY_ACTION);
1193 }
1194
1195 private void sendInetConditionBroadcast(NetworkInfo info) {
1196 sendGeneralBroadcast(info, ConnectivityManager.INET_CONDITION_ACTION);
1197 }
1198
1199 private void sendGeneralBroadcast(NetworkInfo info, String bcastType) {
1200 Intent intent = new Intent(bcastType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001201 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, info);
1202 if (info.isFailover()) {
1203 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1204 info.setFailover(false);
1205 }
1206 if (info.getReason() != null) {
1207 intent.putExtra(ConnectivityManager.EXTRA_REASON, info.getReason());
1208 }
1209 if (info.getExtraInfo() != null) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001210 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO,
1211 info.getExtraInfo());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001212 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07001213 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Mike Lockwood0f79b542009-08-14 14:18:49 -04001214 sendStickyBroadcast(intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215 }
1216
1217 /**
1218 * Called when an attempt to fail over to another network has failed.
1219 * @param info the {@link NetworkInfo} for the failed network
1220 */
1221 private void handleConnectionFailure(NetworkInfo info) {
1222 mNetTrackers[info.getType()].setTeardownRequested(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001223
Robert Greenwalt42acef32009-08-12 16:08:25 -07001224 String reason = info.getReason();
1225 String extraInfo = info.getExtraInfo();
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001226
Robert Greenwalt572172b2010-10-08 16:35:52 -07001227 String reasonText;
1228 if (reason == null) {
1229 reasonText = ".";
1230 } else {
1231 reasonText = " (" + reason + ").";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001232 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08001233 loge("Attempt to connect to " + info.getTypeName() + " failed" + reasonText);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001234
1235 Intent intent = new Intent(ConnectivityManager.CONNECTIVITY_ACTION);
1236 intent.putExtra(ConnectivityManager.EXTRA_NETWORK_INFO, info);
1237 if (getActiveNetworkInfo() == null) {
1238 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
1239 }
1240 if (reason != null) {
1241 intent.putExtra(ConnectivityManager.EXTRA_REASON, reason);
1242 }
1243 if (extraInfo != null) {
1244 intent.putExtra(ConnectivityManager.EXTRA_EXTRA_INFO, extraInfo);
1245 }
1246 if (info.isFailover()) {
1247 intent.putExtra(ConnectivityManager.EXTRA_IS_FAILOVER, true);
1248 info.setFailover(false);
1249 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001250
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001251 if (mNetConfigs[info.getType()].isDefault()) {
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001252 tryFailover(info.getType());
1253 if (mActiveDefaultNetwork != -1) {
1254 NetworkInfo switchTo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08001255 intent.putExtra(ConnectivityManager.EXTRA_OTHER_NETWORK_INFO, switchTo);
1256 } else {
Robert Greenwalt029be812010-09-20 18:01:43 -07001257 mDefaultInetConditionPublished = 0;
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08001258 intent.putExtra(ConnectivityManager.EXTRA_NO_CONNECTIVITY, true);
1259 }
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001260 }
Robert Greenwaltcc4b4012010-01-25 17:54:29 -08001261
Robert Greenwalt029be812010-09-20 18:01:43 -07001262 intent.putExtra(ConnectivityManager.EXTRA_INET_CONDITION, mDefaultInetConditionPublished);
Mike Lockwood0f79b542009-08-14 14:18:49 -04001263 sendStickyBroadcast(intent);
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001264 /*
1265 * If the failover network is already connected, then immediately send
1266 * out a followup broadcast indicating successful failover
1267 */
Robert Greenwaltf21ef7d2011-01-11 13:56:33 -08001268 if (mActiveDefaultNetwork != -1) {
1269 sendConnectedBroadcast(mNetTrackers[mActiveDefaultNetwork].getNetworkInfo());
Robert Greenwaltda03c4e2010-01-20 19:29:41 -08001270 }
Mike Lockwood0f79b542009-08-14 14:18:49 -04001271 }
1272
1273 private void sendStickyBroadcast(Intent intent) {
1274 synchronized(this) {
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001275 if (!mSystemReady) {
1276 mInitialBroadcast = new Intent(intent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04001277 }
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001278 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
1279 mContext.sendStickyBroadcast(intent);
Mike Lockwood0f79b542009-08-14 14:18:49 -04001280 }
1281 }
1282
1283 void systemReady() {
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001284 IBinder b = ServiceManager.getService(Context.NETWORKMANAGEMENT_SERVICE);
1285 mNetd = INetworkManagementService.Stub.asInterface(b);
1286
Mike Lockwood0f79b542009-08-14 14:18:49 -04001287 synchronized(this) {
1288 mSystemReady = true;
Dianne Hackborn1c633fc2009-12-08 19:45:14 -08001289 if (mInitialBroadcast != null) {
1290 mContext.sendStickyBroadcast(mInitialBroadcast);
1291 mInitialBroadcast = null;
Mike Lockwood0f79b542009-08-14 14:18:49 -04001292 }
1293 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07001294 // load the global proxy at startup
1295 mHandler.sendMessage(mHandler.obtainMessage(EVENT_APPLY_GLOBAL_HTTP_PROXY));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001296 }
1297
1298 private void handleConnect(NetworkInfo info) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001299 int type = info.getType();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001300
1301 // snapshot isFailover, because sendConnectedBroadcast() resets it
1302 boolean isFailover = info.isFailover();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001303 NetworkStateTracker thisNet = mNetTrackers[type];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001304
Robert Greenwalt42acef32009-08-12 16:08:25 -07001305 // if this is a default net and other default is running
1306 // kill the one not preferred
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001307 if (mNetConfigs[type].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001308 if (mActiveDefaultNetwork != -1 && mActiveDefaultNetwork != type) {
1309 if ((type != mNetworkPreference &&
Wink Saville975c8482011-04-07 14:23:45 -07001310 mNetConfigs[mActiveDefaultNetwork].priority >
1311 mNetConfigs[type].priority) ||
Robert Greenwalt42acef32009-08-12 16:08:25 -07001312 mNetworkPreference == mActiveDefaultNetwork) {
1313 // don't accept this one
Wink Savilleed9c02b2010-12-03 12:01:38 -08001314 if (DBG) {
1315 log("Not broadcasting CONNECT_ACTION " +
Robert Greenwalt42acef32009-08-12 16:08:25 -07001316 "to torn down network " + info.getTypeName());
Wink Savilleed9c02b2010-12-03 12:01:38 -08001317 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001318 teardown(thisNet);
1319 return;
1320 } else {
1321 // tear down the other
1322 NetworkStateTracker otherNet =
1323 mNetTrackers[mActiveDefaultNetwork];
Wink Savilleed9c02b2010-12-03 12:01:38 -08001324 if (DBG) {
1325 log("Policy requires " + otherNet.getNetworkInfo().getTypeName() +
Robert Greenwalt42acef32009-08-12 16:08:25 -07001326 " teardown");
Wink Savilleed9c02b2010-12-03 12:01:38 -08001327 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001328 if (!teardown(otherNet)) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001329 loge("Network declined teardown request");
Robert Greenwalt42acef32009-08-12 16:08:25 -07001330 return;
1331 }
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001332 }
1333 }
1334 synchronized (ConnectivityService.this) {
1335 // have a new default network, release the transition wakelock in a second
1336 // if it's held. The second pause is to allow apps to reconnect over the
1337 // new network
1338 if (mNetTransitionWakeLock.isHeld()) {
1339 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07001340 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001341 mNetTransitionWakeLockSerialNumber, 0),
1342 1000);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001343 }
1344 }
1345 mActiveDefaultNetwork = type;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07001346 // this will cause us to come up initially as unconnected and switching
1347 // to connected after our normal pause unless somebody reports us as reall
1348 // disconnected
1349 mDefaultInetConditionPublished = 0;
1350 mDefaultConnectionSequence++;
1351 mInetConditionChangeInFlight = false;
1352 // Don't do this - if we never sign in stay, grey
1353 //reportNetworkCondition(mActiveDefaultNetwork, 100);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001354 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001355 thisNet.setTeardownRequested(false);
Irfan Sheriffd649c122010-06-09 15:39:36 -07001356 updateNetworkSettings(thisNet);
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001357 handleConnectivityChange(type);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001358 sendConnectedBroadcast(info);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001359 }
1360
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361 /**
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001362 * After a change in the connectivity state of a network. We're mainly
1363 * concerned with making sure that the list of DNS servers is set up
1364 * according to which networks are connected, and ensuring that the
1365 * right routing table entries exist.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001366 */
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001367 private void handleConnectivityChange(int netType) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368 /*
Robert Greenwalt42acef32009-08-12 16:08:25 -07001369 * If a non-default network is enabled, add the host routes that
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001370 * will allow it's DNS servers to be accessed.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001371 */
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001372 handleDnsConfigurationChange(netType);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001373
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001374 if (mNetTrackers[netType].getNetworkInfo().isConnected()) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001375 if (mNetConfigs[netType].isDefault()) {
Robert Greenwalt434203a2010-10-11 16:00:27 -07001376 handleApplyDefaultProxy(netType);
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001377 addDefaultRoute(mNetTrackers[netType]);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001378 } else {
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001379 addPrivateDnsRoutes(mNetTrackers[netType]);
1380 }
Kazuhiro Ondo01758e82011-04-30 20:10:57 -05001381
1382 /** Notify TetheringService if interface name has been changed. */
1383 if (TextUtils.equals(mNetTrackers[netType].getNetworkInfo().getReason(),
1384 Phone.REASON_LINK_PROPERTIES_CHANGED)) {
1385 handleTetherIfaceChange(netType);
1386 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001387 } else {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001388 if (mNetConfigs[netType].isDefault()) {
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001389 removeDefaultRoute(mNetTrackers[netType]);
1390 } else {
1391 removePrivateDnsRoutes(mNetTrackers[netType]);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001392 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001393 }
1394 }
1395
Irfan Sheriffd649c122010-06-09 15:39:36 -07001396 private void addPrivateDnsRoutes(NetworkStateTracker nt) {
Irfan Sheriffd649c122010-06-09 15:39:36 -07001397 boolean privateDnsRouteSet = nt.isPrivateDnsRouteSet();
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001398 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001399 if (p == null) return;
1400 String interfaceName = p.getInterfaceName();
Irfan Sheriffd649c122010-06-09 15:39:36 -07001401
1402 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001403 log("addPrivateDnsRoutes for " + nt +
Irfan Sheriffd649c122010-06-09 15:39:36 -07001404 "(" + interfaceName + ") - mPrivateDnsRouteSet = " + privateDnsRouteSet);
1405 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001406 if (interfaceName != null && !privateDnsRouteSet) {
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001407 Collection<InetAddress> dnsList = p.getDnses();
1408 for (InetAddress dns : dnsList) {
Robert Greenwaltf43396c2011-05-06 17:10:53 -07001409 addHostRoute(nt, dns, 0);
Irfan Sheriffd649c122010-06-09 15:39:36 -07001410 }
1411 nt.privateDnsRouteSet(true);
1412 }
1413 }
1414
1415 private void removePrivateDnsRoutes(NetworkStateTracker nt) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001416 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001417 if (p == null) return;
1418 String interfaceName = p.getInterfaceName();
Irfan Sheriffd649c122010-06-09 15:39:36 -07001419 boolean privateDnsRouteSet = nt.isPrivateDnsRouteSet();
1420 if (interfaceName != null && privateDnsRouteSet) {
1421 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001422 log("removePrivateDnsRoutes for " + nt.getNetworkInfo().getTypeName() +
Irfan Sheriffd649c122010-06-09 15:39:36 -07001423 " (" + interfaceName + ")");
1424 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001425
1426 Collection<InetAddress> dnsList = p.getDnses();
1427 for (InetAddress dns : dnsList) {
1428 if (DBG) log(" removing " + dns);
1429 RouteInfo route = RouteInfo.makeHostRoute(dns);
1430 try {
1431 mNetd.removeRoute(interfaceName, route);
1432 } catch (Exception ex) {
1433 loge("error (" + ex + ") removing dns route " + route);
1434 }
1435 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001436 nt.privateDnsRouteSet(false);
1437 }
1438 }
1439
Irfan Sheriffd649c122010-06-09 15:39:36 -07001440
1441 private void addDefaultRoute(NetworkStateTracker nt) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001442 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001443 if (p == null) return;
1444 String interfaceName = p.getInterfaceName();
Robert Greenwalt992564e2011-02-09 13:56:06 -08001445 if (TextUtils.isEmpty(interfaceName)) return;
Irfan Sheriffd649c122010-06-09 15:39:36 -07001446
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001447 for (RouteInfo route : p.getRoutes()) {
Robert Greenwaltaa70f102011-04-28 14:28:50 -07001448 //TODO - handle non-default routes
1449 if (route.isDefaultRoute()) {
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001450 if (DBG) log("adding default route " + route);
Robert Greenwaltaa70f102011-04-28 14:28:50 -07001451 InetAddress gateway = route.getGateway();
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001452 if (addHostRoute(nt, gateway, 0)) {
1453 try {
1454 mNetd.addRoute(interfaceName, route);
1455 } catch (Exception e) {
1456 loge("error adding default route " + route);
1457 continue;
1458 }
Robert Greenwaltaa70f102011-04-28 14:28:50 -07001459 if (DBG) {
1460 NetworkInfo networkInfo = nt.getNetworkInfo();
1461 log("addDefaultRoute for " + networkInfo.getTypeName() +
1462 " (" + interfaceName + "), GatewayAddr=" +
1463 gateway.getHostAddress());
1464 }
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001465 } else {
1466 loge("error adding host route for default route " + route);
Robert Greenwaltedcb4f92011-03-22 18:47:42 -07001467 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001468 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001469 }
1470 }
1471
1472
1473 public void removeDefaultRoute(NetworkStateTracker nt) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001474 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001475 if (p == null) return;
1476 String interfaceName = p.getInterfaceName();
Irfan Sheriffd649c122010-06-09 15:39:36 -07001477
Robert Greenwalt59b1a4e2011-05-10 15:05:02 -07001478 if (interfaceName == null) return;
1479
1480 for (RouteInfo route : p.getRoutes()) {
1481 //TODO - handle non-default routes
1482 if (route.isDefaultRoute()) {
1483 try {
1484 mNetd.removeRoute(interfaceName, route);
1485 } catch (Exception ex) {
1486 loge("error (" + ex + ") removing default route " + route);
1487 continue;
1488 }
Robert Greenwaltedcb4f92011-03-22 18:47:42 -07001489 if (DBG) {
1490 NetworkInfo networkInfo = nt.getNetworkInfo();
1491 log("removeDefaultRoute for " + networkInfo.getTypeName() + " (" +
1492 interfaceName + ")");
1493 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001494 }
Irfan Sheriffd649c122010-06-09 15:39:36 -07001495 }
1496 }
1497
1498 /**
1499 * Reads the network specific TCP buffer sizes from SystemProperties
1500 * net.tcp.buffersize.[default|wifi|umts|edge|gprs] and set them for system
1501 * wide use
1502 */
1503 public void updateNetworkSettings(NetworkStateTracker nt) {
1504 String key = nt.getTcpBufferSizesPropName();
1505 String bufferSizes = SystemProperties.get(key);
1506
1507 if (bufferSizes.length() == 0) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001508 loge(key + " not found in system properties. Using defaults");
Irfan Sheriffd649c122010-06-09 15:39:36 -07001509
1510 // Setting to default values so we won't be stuck to previous values
1511 key = "net.tcp.buffersize.default";
1512 bufferSizes = SystemProperties.get(key);
1513 }
1514
1515 // Set values in kernel
1516 if (bufferSizes.length() != 0) {
1517 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001518 log("Setting TCP values: [" + bufferSizes
Irfan Sheriffd649c122010-06-09 15:39:36 -07001519 + "] which comes from [" + key + "]");
1520 }
1521 setBufferSize(bufferSizes);
1522 }
1523 }
1524
1525 /**
1526 * Writes TCP buffer sizes to /sys/kernel/ipv4/tcp_[r/w]mem_[min/def/max]
1527 * which maps to /proc/sys/net/ipv4/tcp_rmem and tcpwmem
1528 *
1529 * @param bufferSizes in the format of "readMin, readInitial, readMax,
1530 * writeMin, writeInitial, writeMax"
1531 */
1532 private void setBufferSize(String bufferSizes) {
1533 try {
1534 String[] values = bufferSizes.split(",");
1535
1536 if (values.length == 6) {
1537 final String prefix = "/sys/kernel/ipv4/tcp_";
1538 stringToFile(prefix + "rmem_min", values[0]);
1539 stringToFile(prefix + "rmem_def", values[1]);
1540 stringToFile(prefix + "rmem_max", values[2]);
1541 stringToFile(prefix + "wmem_min", values[3]);
1542 stringToFile(prefix + "wmem_def", values[4]);
1543 stringToFile(prefix + "wmem_max", values[5]);
1544 } else {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001545 loge("Invalid buffersize string: " + bufferSizes);
Irfan Sheriffd649c122010-06-09 15:39:36 -07001546 }
1547 } catch (IOException e) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001548 loge("Can't set tcp buffer sizes:" + e);
Irfan Sheriffd649c122010-06-09 15:39:36 -07001549 }
1550 }
1551
1552 /**
1553 * Writes string to file. Basically same as "echo -n $string > $filename"
1554 *
1555 * @param filename
1556 * @param string
1557 * @throws IOException
1558 */
1559 private void stringToFile(String filename, String string) throws IOException {
1560 FileWriter out = new FileWriter(filename);
1561 try {
1562 out.write(string);
1563 } finally {
1564 out.close();
1565 }
1566 }
1567
1568
Robert Greenwalt42acef32009-08-12 16:08:25 -07001569 /**
1570 * Adjust the per-process dns entries (net.dns<x>.<pid>) based
1571 * on the highest priority active net which this process requested.
1572 * If there aren't any, clear it out
1573 */
1574 private void reassessPidDns(int myPid, boolean doBump)
1575 {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001576 if (DBG) log("reassessPidDns for pid " + myPid);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001577 for(int i : mPriorityList) {
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001578 if (mNetConfigs[i].isDefault()) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001579 continue;
1580 }
1581 NetworkStateTracker nt = mNetTrackers[i];
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001582 if (nt.getNetworkInfo().isConnected() &&
1583 !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001584 LinkProperties p = nt.getLinkProperties();
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001585 if (p == null) continue;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001586 List pids = mNetRequestersPids[i];
1587 for (int j=0; j<pids.size(); j++) {
1588 Integer pid = (Integer)pids.get(j);
1589 if (pid.intValue() == myPid) {
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001590 Collection<InetAddress> dnses = p.getDnses();
1591 writePidDns(dnses, myPid);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001592 if (doBump) {
1593 bumpDns();
1594 }
1595 return;
1596 }
1597 }
1598 }
1599 }
1600 // nothing found - delete
1601 for (int i = 1; ; i++) {
1602 String prop = "net.dns" + i + "." + myPid;
1603 if (SystemProperties.get(prop).length() == 0) {
1604 if (doBump) {
1605 bumpDns();
1606 }
1607 return;
1608 }
1609 SystemProperties.set(prop, "");
1610 }
1611 }
1612
Robert Greenwalt10398722010-12-17 15:20:36 -08001613 // return true if results in a change
1614 private boolean writePidDns(Collection <InetAddress> dnses, int pid) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001615 int j = 1;
Robert Greenwalt10398722010-12-17 15:20:36 -08001616 boolean changed = false;
Robert Greenwalt47f69fe2010-06-15 15:43:39 -07001617 for (InetAddress dns : dnses) {
Robert Greenwalt10398722010-12-17 15:20:36 -08001618 String dnsString = dns.getHostAddress();
1619 if (changed || !dnsString.equals(SystemProperties.get("net.dns" + j + "." + pid))) {
1620 changed = true;
1621 SystemProperties.set("net.dns" + j++ + "." + pid, dns.getHostAddress());
1622 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001623 }
Robert Greenwalt10398722010-12-17 15:20:36 -08001624 return changed;
Robert Greenwalt42acef32009-08-12 16:08:25 -07001625 }
1626
1627 private void bumpDns() {
1628 /*
1629 * Bump the property that tells the name resolver library to reread
1630 * the DNS server list from the properties.
1631 */
1632 String propVal = SystemProperties.get("net.dnschange");
1633 int n = 0;
1634 if (propVal.length() != 0) {
1635 try {
1636 n = Integer.parseInt(propVal);
1637 } catch (NumberFormatException e) {}
1638 }
1639 SystemProperties.set("net.dnschange", "" + (n+1));
Robert Greenwalt03595d02010-11-02 14:08:23 -07001640 /*
1641 * Tell the VMs to toss their DNS caches
1642 */
1643 Intent intent = new Intent(Intent.ACTION_CLEAR_DNS_CACHE);
1644 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
Stan Chesnutt3d1db862011-01-05 17:14:03 -08001645 /*
1646 * Connectivity events can happen before boot has completed ...
1647 */
1648 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Robert Greenwalt03595d02010-11-02 14:08:23 -07001649 mContext.sendBroadcast(intent);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001650 }
1651
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001652 private void handleDnsConfigurationChange(int netType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001653 // add default net's dns entries
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001654 NetworkStateTracker nt = mNetTrackers[netType];
1655 if (nt != null && nt.getNetworkInfo().isConnected() && !nt.isTeardownRequested()) {
Robert Greenwalt37e65eb2010-08-30 10:56:47 -07001656 LinkProperties p = nt.getLinkProperties();
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001657 if (p == null) return;
1658 Collection<InetAddress> dnses = p.getDnses();
Robert Greenwalt10398722010-12-17 15:20:36 -08001659 boolean changed = false;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001660 if (mNetConfigs[netType].isDefault()) {
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001661 int j = 1;
Robert Greenwalte90aa5e2010-09-01 11:34:05 -07001662 if (dnses.size() == 0 && mDefaultDns != null) {
Robert Greenwalt10398722010-12-17 15:20:36 -08001663 String dnsString = mDefaultDns.getHostAddress();
1664 if (!dnsString.equals(SystemProperties.get("net.dns1"))) {
1665 if (DBG) {
1666 log("no dns provided - using " + dnsString);
1667 }
1668 changed = true;
1669 SystemProperties.set("net.dns1", dnsString);
Robert Greenwalt42acef32009-08-12 16:08:25 -07001670 }
Robert Greenwalte90aa5e2010-09-01 11:34:05 -07001671 j++;
1672 } else {
1673 for (InetAddress dns : dnses) {
Robert Greenwalt10398722010-12-17 15:20:36 -08001674 String dnsString = dns.getHostAddress();
1675 if (!changed && dnsString.equals(SystemProperties.get("net.dns" + j))) {
1676 j++;
1677 continue;
1678 }
Robert Greenwalte90aa5e2010-09-01 11:34:05 -07001679 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001680 log("adding dns " + dns + " for " +
Robert Greenwalte90aa5e2010-09-01 11:34:05 -07001681 nt.getNetworkInfo().getTypeName());
1682 }
Robert Greenwalt10398722010-12-17 15:20:36 -08001683 changed = true;
1684 SystemProperties.set("net.dns" + j++, dnsString);
Robert Greenwalte90aa5e2010-09-01 11:34:05 -07001685 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001686 }
1687 for (int k=j ; k<mNumDnsEntries; k++) {
Robert Greenwalt10398722010-12-17 15:20:36 -08001688 if (changed || !TextUtils.isEmpty(SystemProperties.get("net.dns" + k))) {
1689 if (DBG) log("erasing net.dns" + k);
1690 changed = true;
1691 SystemProperties.set("net.dns" + k, "");
1692 }
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001693 }
1694 mNumDnsEntries = j;
1695 } else {
1696 // set per-pid dns for attached secondary nets
1697 List pids = mNetRequestersPids[netType];
1698 for (int y=0; y< pids.size(); y++) {
1699 Integer pid = (Integer)pids.get(y);
Robert Greenwalt10398722010-12-17 15:20:36 -08001700 changed = writePidDns(dnses, pid.intValue());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001701 }
1702 }
Robert Greenwalt10398722010-12-17 15:20:36 -08001703 if (changed) bumpDns();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001704 }
Robert Greenwalt42acef32009-08-12 16:08:25 -07001705 }
1706
Robert Greenwaltf2102f72011-05-03 19:02:44 -07001707 private int getRestoreDefaultNetworkDelay(int networkType) {
Robert Greenwalt42acef32009-08-12 16:08:25 -07001708 String restoreDefaultNetworkDelayStr = SystemProperties.get(
1709 NETWORK_RESTORE_DELAY_PROP_NAME);
1710 if(restoreDefaultNetworkDelayStr != null &&
1711 restoreDefaultNetworkDelayStr.length() != 0) {
1712 try {
1713 return Integer.valueOf(restoreDefaultNetworkDelayStr);
1714 } catch (NumberFormatException e) {
1715 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 }
Robert Greenwaltf2102f72011-05-03 19:02:44 -07001717 // if the system property isn't set, use the value for the apn type
1718 int ret = RESTORE_DEFAULT_NETWORK_DELAY;
1719
1720 if ((networkType <= ConnectivityManager.MAX_NETWORK_TYPE) &&
1721 (mNetConfigs[networkType] != null)) {
1722 ret = mNetConfigs[networkType].restoreTime;
1723 }
1724 return ret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001725 }
1726
1727 @Override
1728 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001729 if (mContext.checkCallingOrSelfPermission(
1730 android.Manifest.permission.DUMP)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001731 != PackageManager.PERMISSION_GRANTED) {
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001732 pw.println("Permission Denial: can't dump ConnectivityService " +
1733 "from from pid=" + Binder.getCallingPid() + ", uid=" +
1734 Binder.getCallingUid());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001735 return;
1736 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001737 pw.println();
1738 for (NetworkStateTracker nst : mNetTrackers) {
Robert Greenwaltb9285352009-12-21 18:24:07 -08001739 if (nst != null) {
1740 if (nst.getNetworkInfo().isConnected()) {
1741 pw.println("Active network: " + nst.getNetworkInfo().
1742 getTypeName());
1743 }
1744 pw.println(nst.getNetworkInfo());
1745 pw.println(nst);
1746 pw.println();
Robert Greenwalt42acef32009-08-12 16:08:25 -07001747 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001748 }
Robert Greenwaltb9285352009-12-21 18:24:07 -08001749
1750 pw.println("Network Requester Pids:");
1751 for (int net : mPriorityList) {
1752 String pidString = net + ": ";
1753 for (Object pid : mNetRequestersPids[net]) {
1754 pidString = pidString + pid.toString() + ", ";
1755 }
1756 pw.println(pidString);
1757 }
1758 pw.println();
1759
1760 pw.println("FeatureUsers:");
1761 for (Object requester : mFeatureUsers) {
1762 pw.println(requester.toString());
1763 }
1764 pw.println();
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001765
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001766 synchronized (this) {
1767 pw.println("NetworkTranstionWakeLock is currently " +
1768 (mNetTransitionWakeLock.isHeld() ? "" : "not ") + "held.");
1769 pw.println("It was last requested for "+mNetTransitionWakeLockCausedBy);
1770 }
1771 pw.println();
1772
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001773 mTethering.dump(fd, pw, args);
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07001774
1775 if (mInetLog != null) {
1776 pw.println();
1777 pw.println("Inet condition reports:");
1778 for(int i = 0; i < mInetLog.size(); i++) {
1779 pw.println(mInetLog.get(i));
1780 }
1781 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001782 }
1783
Robert Greenwalt42acef32009-08-12 16:08:25 -07001784 // must be stateless - things change under us.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001785 private class MyHandler extends Handler {
Wink Savillebb08caf2010-09-02 19:23:52 -07001786 public MyHandler(Looper looper) {
1787 super(looper);
1788 }
1789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001790 @Override
1791 public void handleMessage(Message msg) {
1792 NetworkInfo info;
1793 switch (msg.what) {
1794 case NetworkStateTracker.EVENT_STATE_CHANGED:
1795 info = (NetworkInfo) msg.obj;
Robert Greenwalt511288a2009-12-07 11:33:18 -08001796 int type = info.getType();
1797 NetworkInfo.State state = info.getState();
Robert Greenwalt511288a2009-12-07 11:33:18 -08001798
Wink Savilleed9c02b2010-12-03 12:01:38 -08001799 if (DBG) log("ConnectivityChange for " +
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001800 info.getTypeName() + ": " +
Robert Greenwalt511288a2009-12-07 11:33:18 -08001801 state + "/" + info.getDetailedState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001802
1803 // Connectivity state changed:
1804 // [31-13] Reserved for future use
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001805 // [12-9] Network subtype (for mobile network, as defined
1806 // by TelephonyManager)
1807 // [8-3] Detailed state ordinal (as defined by
1808 // NetworkInfo.DetailedState)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001809 // [2-0] Network type (as defined by ConnectivityManager)
1810 int eventLogParam = (info.getType() & 0x7) |
1811 ((info.getDetailedState().ordinal() & 0x3f) << 3) |
1812 (info.getSubtype() << 9);
Doug Zongkerab5c49c2009-12-04 10:31:43 -08001813 EventLog.writeEvent(EventLogTags.CONNECTIVITY_STATE_CHANGED,
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001814 eventLogParam);
1815
1816 if (info.getDetailedState() ==
1817 NetworkInfo.DetailedState.FAILED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001818 handleConnectionFailure(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08001819 } else if (state == NetworkInfo.State.DISCONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001820 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08001821 } else if (state == NetworkInfo.State.SUSPENDED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001822 // TODO: need to think this over.
Robert Greenwalt86e9e552009-07-16 17:21:39 -07001823 // the logic here is, handle SUSPENDED the same as
1824 // DISCONNECTED. The only difference being we are
1825 // broadcasting an intent with NetworkInfo that's
1826 // suspended. This allows the applications an
1827 // opportunity to handle DISCONNECTED and SUSPENDED
1828 // differently, or not.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001829 handleDisconnect(info);
Robert Greenwalt511288a2009-12-07 11:33:18 -08001830 } else if (state == NetworkInfo.State.CONNECTED) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001831 handleConnect(info);
1832 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001833 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001834 case NetworkStateTracker.EVENT_CONFIGURATION_CHANGED:
Robert Greenwaltc76b8fa2010-07-23 15:46:26 -07001835 info = (NetworkInfo) msg.obj;
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001836 handleConnectivityChange(info.getType());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001837 break;
Robert Greenwaltf3331232010-09-24 14:32:21 -07001838 case EVENT_CLEAR_NET_TRANSITION_WAKELOCK:
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001839 String causedBy = null;
1840 synchronized (ConnectivityService.this) {
1841 if (msg.arg1 == mNetTransitionWakeLockSerialNumber &&
1842 mNetTransitionWakeLock.isHeld()) {
1843 mNetTransitionWakeLock.release();
1844 causedBy = mNetTransitionWakeLockCausedBy;
1845 }
1846 }
1847 if (causedBy != null) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08001848 log("NetTransition Wakelock for " + causedBy + " released by timeout");
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001849 }
Robert Greenwalt057d5e92010-09-09 14:05:10 -07001850 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001851 case EVENT_RESTORE_DEFAULT_NETWORK:
Robert Greenwalt9c75d4a2009-09-27 17:27:04 -07001852 FeatureUser u = (FeatureUser)msg.obj;
1853 u.expire();
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07001854 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001855 case EVENT_INET_CONDITION_CHANGE:
1856 {
1857 int netType = msg.arg1;
1858 int condition = msg.arg2;
1859 handleInetConditionChange(netType, condition);
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001860 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001861 }
1862 case EVENT_INET_CONDITION_HOLD_END:
1863 {
1864 int netType = msg.arg1;
1865 int sequence = msg.arg2;
1866 handleInetConditionHoldEnd(netType, sequence);
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07001867 break;
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07001868 }
1869 case EVENT_SET_NETWORK_PREFERENCE:
1870 {
1871 int preference = msg.arg1;
1872 handleSetNetworkPreference(preference);
1873 break;
1874 }
1875 case EVENT_SET_BACKGROUND_DATA:
1876 {
1877 boolean enabled = (msg.arg1 == ENABLED);
1878 handleSetBackgroundData(enabled);
1879 break;
1880 }
1881 case EVENT_SET_MOBILE_DATA:
1882 {
1883 boolean enabled = (msg.arg1 == ENABLED);
1884 handleSetMobileData(enabled);
1885 break;
1886 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07001887 case EVENT_APPLY_GLOBAL_HTTP_PROXY:
1888 {
1889 handleDeprecatedGlobalHttpProxy();
Robert Greenwaltd55a6b42011-03-25 13:09:25 -07001890 break;
1891 }
1892 case EVENT_SET_DEPENDENCY_MET:
1893 {
1894 boolean met = (msg.arg1 == ENABLED);
1895 handleSetDependencyMet(msg.arg2, met);
1896 break;
Robert Greenwalt434203a2010-10-11 16:00:27 -07001897 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001898 }
1899 }
1900 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001901
1902 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08001903 public int tether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001904 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08001905
1906 if (isTetheringSupported()) {
1907 return mTethering.tether(iface);
1908 } else {
1909 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
1910 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001911 }
1912
1913 // javadoc from interface
Robert Greenwalt5a735062010-03-02 17:25:02 -08001914 public int untether(String iface) {
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001915 enforceTetherChangePermission();
Robert Greenwalt5a735062010-03-02 17:25:02 -08001916
1917 if (isTetheringSupported()) {
1918 return mTethering.untether(iface);
1919 } else {
1920 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
1921 }
1922 }
1923
1924 // javadoc from interface
1925 public int getLastTetherError(String iface) {
1926 enforceTetherAccessPermission();
1927
1928 if (isTetheringSupported()) {
1929 return mTethering.getLastTetherError(iface);
1930 } else {
1931 return ConnectivityManager.TETHER_ERROR_UNSUPPORTED;
1932 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001933 }
1934
1935 // TODO - proper iface API for selection by property, inspection, etc
1936 public String[] getTetherableUsbRegexs() {
1937 enforceTetherAccessPermission();
1938 if (isTetheringSupported()) {
1939 return mTethering.getTetherableUsbRegexs();
1940 } else {
1941 return new String[0];
1942 }
1943 }
1944
1945 public String[] getTetherableWifiRegexs() {
1946 enforceTetherAccessPermission();
1947 if (isTetheringSupported()) {
1948 return mTethering.getTetherableWifiRegexs();
1949 } else {
1950 return new String[0];
1951 }
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001952 }
1953
Danica Chang6fdd0c62010-08-11 14:54:43 -07001954 public String[] getTetherableBluetoothRegexs() {
1955 enforceTetherAccessPermission();
1956 if (isTetheringSupported()) {
1957 return mTethering.getTetherableBluetoothRegexs();
1958 } else {
1959 return new String[0];
1960 }
1961 }
1962
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001963 // TODO - move iface listing, queries, etc to new module
1964 // javadoc from interface
1965 public String[] getTetherableIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001966 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001967 return mTethering.getTetherableIfaces();
1968 }
1969
1970 public String[] getTetheredIfaces() {
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001971 enforceTetherAccessPermission();
Robert Greenwaltd0e18ff2010-01-26 11:40:34 -08001972 return mTethering.getTetheredIfaces();
1973 }
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001974
Robert Greenwalt5a735062010-03-02 17:25:02 -08001975 public String[] getTetheringErroredIfaces() {
1976 enforceTetherAccessPermission();
1977 return mTethering.getErroredIfaces();
1978 }
1979
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001980 // if ro.tether.denied = true we default to no tethering
1981 // gservices could set the secure setting to 1 though to enable it on a build where it
1982 // had previously been turned off.
1983 public boolean isTetheringSupported() {
1984 enforceTetherAccessPermission();
1985 int defaultVal = (SystemProperties.get("ro.tether.denied").equals("true") ? 0 : 1);
Robert Greenwaltc9d5fb72010-02-25 12:29:30 -08001986 boolean tetherEnabledInSettings = (Settings.Secure.getInt(mContext.getContentResolver(),
1987 Settings.Secure.TETHER_SUPPORTED, defaultVal) != 0);
1988 return tetherEnabledInSettings && mTetheringConfigValid;
Robert Greenwalt2a091d72010-02-11 18:18:40 -08001989 }
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07001990
1991 // An API NetworkStateTrackers can call when they lose their network.
1992 // This will automatically be cleared after X seconds or a network becomes CONNECTED,
1993 // whichever happens first. The timer is started by the first caller and not
1994 // restarted by subsequent callers.
1995 public void requestNetworkTransitionWakelock(String forWhom) {
1996 enforceConnectivityInternalPermission();
1997 synchronized (this) {
1998 if (mNetTransitionWakeLock.isHeld()) return;
1999 mNetTransitionWakeLockSerialNumber++;
2000 mNetTransitionWakeLock.acquire();
2001 mNetTransitionWakeLockCausedBy = forWhom;
2002 }
2003 mHandler.sendMessageDelayed(mHandler.obtainMessage(
Robert Greenwaltf3331232010-09-24 14:32:21 -07002004 EVENT_CLEAR_NET_TRANSITION_WAKELOCK,
Robert Greenwalt14f2ef42010-06-15 12:19:37 -07002005 mNetTransitionWakeLockSerialNumber, 0),
2006 mNetTransitionWakeLockTimeout);
2007 return;
2008 }
Robert Greenwaltca4306c2010-09-09 13:15:32 -07002009
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002010 // 100 percent is full good, 0 is full bad.
2011 public void reportInetCondition(int networkType, int percentage) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002012 if (DBG) log("reportNetworkCondition(" + networkType + ", " + percentage + ")");
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002013 mContext.enforceCallingOrSelfPermission(
2014 android.Manifest.permission.STATUS_BAR,
2015 "ConnectivityService");
2016
Robert Greenwalt4e8dfef2010-09-20 14:35:25 -07002017 if (DBG) {
2018 int pid = getCallingPid();
2019 int uid = getCallingUid();
2020 String s = pid + "(" + uid + ") reports inet is " +
2021 (percentage > 50 ? "connected" : "disconnected") + " (" + percentage + ") on " +
2022 "network Type " + networkType + " at " + GregorianCalendar.getInstance().getTime();
2023 mInetLog.add(s);
2024 while(mInetLog.size() > INET_CONDITION_LOG_MAX_SIZE) {
2025 mInetLog.remove(0);
2026 }
2027 }
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002028 mHandler.sendMessage(mHandler.obtainMessage(
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002029 EVENT_INET_CONDITION_CHANGE, networkType, percentage));
2030 }
2031
2032 private void handleInetConditionChange(int netType, int condition) {
2033 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002034 log("Inet connectivity change, net=" +
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002035 netType + ", condition=" + condition +
2036 ",mActiveDefaultNetwork=" + mActiveDefaultNetwork);
2037 }
2038 if (mActiveDefaultNetwork == -1) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002039 if (DBG) log("no active default network - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002040 return;
2041 }
2042 if (mActiveDefaultNetwork != netType) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002043 if (DBG) log("given net not default - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002044 return;
2045 }
2046 mDefaultInetCondition = condition;
2047 int delay;
2048 if (mInetConditionChangeInFlight == false) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002049 if (DBG) log("starting a change hold");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002050 // setup a new hold to debounce this
2051 if (mDefaultInetCondition > 50) {
2052 delay = Settings.Secure.getInt(mContext.getContentResolver(),
2053 Settings.Secure.INET_CONDITION_DEBOUNCE_UP_DELAY, 500);
2054 } else {
2055 delay = Settings.Secure.getInt(mContext.getContentResolver(),
2056 Settings.Secure.INET_CONDITION_DEBOUNCE_DOWN_DELAY, 3000);
2057 }
2058 mInetConditionChangeInFlight = true;
2059 mHandler.sendMessageDelayed(mHandler.obtainMessage(EVENT_INET_CONDITION_HOLD_END,
2060 mActiveDefaultNetwork, mDefaultConnectionSequence), delay);
2061 } else {
2062 // we've set the new condition, when this hold ends that will get
2063 // picked up
Wink Savilleed9c02b2010-12-03 12:01:38 -08002064 if (DBG) log("currently in hold - not setting new end evt");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002065 }
2066 }
2067
2068 private void handleInetConditionHoldEnd(int netType, int sequence) {
2069 if (DBG) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002070 log("Inet hold end, net=" + netType +
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002071 ", condition =" + mDefaultInetCondition +
2072 ", published condition =" + mDefaultInetConditionPublished);
2073 }
2074 mInetConditionChangeInFlight = false;
2075
2076 if (mActiveDefaultNetwork == -1) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002077 if (DBG) log("no active default network - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002078 return;
2079 }
2080 if (mDefaultConnectionSequence != sequence) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002081 if (DBG) log("event hold for obsolete network - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002082 return;
2083 }
2084 if (mDefaultInetConditionPublished == mDefaultInetCondition) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002085 if (DBG) log("no change in condition - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002086 return;
2087 }
2088 NetworkInfo networkInfo = mNetTrackers[mActiveDefaultNetwork].getNetworkInfo();
2089 if (networkInfo.isConnected() == false) {
Wink Savilleed9c02b2010-12-03 12:01:38 -08002090 if (DBG) log("default network not connected - aborting");
Robert Greenwalt8dcc28b2010-09-23 10:05:56 -07002091 return;
2092 }
2093 mDefaultInetConditionPublished = mDefaultInetCondition;
2094 sendInetConditionBroadcast(networkInfo);
2095 return;
Robert Greenwaltd7085fc2010-09-08 15:24:47 -07002096 }
Robert Greenwalt434203a2010-10-11 16:00:27 -07002097
2098 public synchronized ProxyProperties getProxy() {
2099 if (mGlobalProxy != null) return mGlobalProxy;
2100 if (mDefaultProxy != null) return mDefaultProxy;
2101 return null;
2102 }
2103
2104 public void setGlobalProxy(ProxyProperties proxyProperties) {
2105 enforceChangePermission();
2106 synchronized (mGlobalProxyLock) {
2107 if (proxyProperties == mGlobalProxy) return;
2108 if (proxyProperties != null && proxyProperties.equals(mGlobalProxy)) return;
2109 if (mGlobalProxy != null && mGlobalProxy.equals(proxyProperties)) return;
2110
2111 String host = "";
2112 int port = 0;
2113 String exclList = "";
2114 if (proxyProperties != null && !TextUtils.isEmpty(proxyProperties.getHost())) {
2115 mGlobalProxy = new ProxyProperties(proxyProperties);
2116 host = mGlobalProxy.getHost();
2117 port = mGlobalProxy.getPort();
2118 exclList = mGlobalProxy.getExclusionList();
2119 } else {
2120 mGlobalProxy = null;
2121 }
2122 ContentResolver res = mContext.getContentResolver();
2123 Settings.Secure.putString(res, Settings.Secure.GLOBAL_HTTP_PROXY_HOST, host);
2124 Settings.Secure.putInt(res, Settings.Secure.GLOBAL_HTTP_PROXY_PORT, port);
Robert Greenwaltb7090d62010-12-02 11:31:00 -08002125 Settings.Secure.putString(res, Settings.Secure.GLOBAL_HTTP_PROXY_EXCLUSION_LIST,
Robert Greenwalt434203a2010-10-11 16:00:27 -07002126 exclList);
2127 }
2128
2129 if (mGlobalProxy == null) {
2130 proxyProperties = mDefaultProxy;
2131 }
2132 sendProxyBroadcast(proxyProperties);
2133 }
2134
Robert Greenwaltb7090d62010-12-02 11:31:00 -08002135 private void loadGlobalProxy() {
2136 ContentResolver res = mContext.getContentResolver();
2137 String host = Settings.Secure.getString(res, Settings.Secure.GLOBAL_HTTP_PROXY_HOST);
2138 int port = Settings.Secure.getInt(res, Settings.Secure.GLOBAL_HTTP_PROXY_PORT, 0);
2139 String exclList = Settings.Secure.getString(res,
2140 Settings.Secure.GLOBAL_HTTP_PROXY_EXCLUSION_LIST);
2141 if (!TextUtils.isEmpty(host)) {
2142 ProxyProperties proxyProperties = new ProxyProperties(host, port, exclList);
2143 synchronized (mGlobalProxyLock) {
2144 mGlobalProxy = proxyProperties;
2145 }
2146 }
2147 }
2148
Robert Greenwalt434203a2010-10-11 16:00:27 -07002149 public ProxyProperties getGlobalProxy() {
2150 synchronized (mGlobalProxyLock) {
2151 return mGlobalProxy;
2152 }
2153 }
2154
2155 private void handleApplyDefaultProxy(int type) {
2156 // check if new default - push it out to all VM if so
2157 ProxyProperties proxy = mNetTrackers[type].getLinkProperties().getHttpProxy();
2158 synchronized (this) {
2159 if (mDefaultProxy != null && mDefaultProxy.equals(proxy)) return;
2160 if (mDefaultProxy == proxy) return;
2161 if (!TextUtils.isEmpty(proxy.getHost())) {
2162 mDefaultProxy = proxy;
2163 } else {
2164 mDefaultProxy = null;
2165 }
2166 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08002167 if (DBG) log("changing default proxy to " + proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07002168 if ((proxy == null && mGlobalProxy == null) || proxy.equals(mGlobalProxy)) return;
2169 if (mGlobalProxy != null) return;
2170 sendProxyBroadcast(proxy);
2171 }
2172
2173 private void handleDeprecatedGlobalHttpProxy() {
2174 String proxy = Settings.Secure.getString(mContext.getContentResolver(),
2175 Settings.Secure.HTTP_PROXY);
2176 if (!TextUtils.isEmpty(proxy)) {
2177 String data[] = proxy.split(":");
2178 String proxyHost = data[0];
2179 int proxyPort = 8080;
2180 if (data.length > 1) {
2181 try {
2182 proxyPort = Integer.parseInt(data[1]);
2183 } catch (NumberFormatException e) {
2184 return;
2185 }
2186 }
2187 ProxyProperties p = new ProxyProperties(data[0], proxyPort, "");
2188 setGlobalProxy(p);
2189 }
2190 }
2191
2192 private void sendProxyBroadcast(ProxyProperties proxy) {
Robert Greenwalt55985be2010-12-23 15:51:10 -08002193 if (proxy == null) proxy = new ProxyProperties("", 0, "");
Wink Savilleed9c02b2010-12-03 12:01:38 -08002194 log("sending Proxy Broadcast for " + proxy);
Robert Greenwalt434203a2010-10-11 16:00:27 -07002195 Intent intent = new Intent(Proxy.PROXY_CHANGE_ACTION);
Stan Chesnuttb35d67a2011-01-06 11:00:19 -08002196 intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING |
2197 Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
Robert Greenwalt434203a2010-10-11 16:00:27 -07002198 intent.putExtra(Proxy.EXTRA_PROXY_INFO, proxy);
Robert Greenwalta2e13392010-12-06 11:29:17 -08002199 mContext.sendStickyBroadcast(intent);
Robert Greenwalt434203a2010-10-11 16:00:27 -07002200 }
2201
2202 private static class SettingsObserver extends ContentObserver {
2203 private int mWhat;
2204 private Handler mHandler;
2205 SettingsObserver(Handler handler, int what) {
2206 super(handler);
2207 mHandler = handler;
2208 mWhat = what;
2209 }
2210
2211 void observe(Context context) {
2212 ContentResolver resolver = context.getContentResolver();
2213 resolver.registerContentObserver(Settings.Secure.getUriFor(
2214 Settings.Secure.HTTP_PROXY), false, this);
2215 }
2216
2217 @Override
2218 public void onChange(boolean selfChange) {
2219 mHandler.obtainMessage(mWhat).sendToTarget();
2220 }
2221 }
Wink Savilleed9c02b2010-12-03 12:01:38 -08002222
Kazuhiro Ondo01758e82011-04-30 20:10:57 -05002223 private void handleTetherIfaceChange(int type) {
2224 String iface = mNetTrackers[type].getLinkProperties().getInterfaceName();
2225
2226 if (isTetheringSupported()) {
2227 mTethering.handleTetherIfaceChange(iface);
2228 }
2229 }
2230
Wink Savilleed9c02b2010-12-03 12:01:38 -08002231 private void log(String s) {
2232 Slog.d(TAG, s);
2233 }
2234
2235 private void loge(String s) {
2236 Slog.e(TAG, s);
2237 }
Wink Saville9d7d6282011-03-12 14:52:01 -08002238 int convertFeatureToNetworkType(String feature){
2239 int networkType = -1;
2240 if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_MMS)) {
2241 networkType = ConnectivityManager.TYPE_MOBILE_MMS;
2242 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_SUPL)) {
2243 networkType = ConnectivityManager.TYPE_MOBILE_SUPL;
2244 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN) ||
2245 TextUtils.equals(feature, Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
2246 networkType = ConnectivityManager.TYPE_MOBILE_DUN;
2247 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_HIPRI)) {
2248 networkType = ConnectivityManager.TYPE_MOBILE_HIPRI;
2249 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_FOTA)) {
2250 networkType = ConnectivityManager.TYPE_MOBILE_FOTA;
2251 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_IMS)) {
2252 networkType = ConnectivityManager.TYPE_MOBILE_IMS;
2253 } else if (TextUtils.equals(feature, Phone.FEATURE_ENABLE_CBS)) {
2254 networkType = ConnectivityManager.TYPE_MOBILE_CBS;
2255 }
2256 return networkType;
2257 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002258}