blob: c4abac971b64e803ed5ec54c37675eac2ed14b6c [file] [log] [blame]
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001/*
2 * Copyright (C) 2011 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.net;
18
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070019import static android.Manifest.permission.ACCESS_NETWORK_STATE;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070020import static android.Manifest.permission.CONNECTIVITY_INTERNAL;
Jeff Sharkey1b861272011-05-22 00:34:52 -070021import static android.Manifest.permission.DUMP;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070022import static android.Manifest.permission.MANAGE_NETWORK_POLICY;
Jeff Sharkey497e4432011-06-14 17:27:29 -070023import static android.Manifest.permission.READ_NETWORK_USAGE_HISTORY;
Jeff Sharkey22c055e2011-06-12 21:13:51 -070024import static android.Manifest.permission.READ_PHONE_STATE;
Jeff Sharkey02e21d62011-07-17 15:53:33 -070025import static android.content.Intent.ACTION_PACKAGE_ADDED;
Jeff Sharkeyb09540f2011-06-19 01:08:12 -070026import static android.content.Intent.ACTION_UID_REMOVED;
27import static android.content.Intent.EXTRA_UID;
Jeff Sharkey961e3042011-08-29 16:02:57 -070028import static android.net.ConnectivityManager.CONNECTIVITY_ACTION_IMMEDIATE;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070029import static android.net.ConnectivityManager.TYPE_ETHERNET;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070030import static android.net.ConnectivityManager.TYPE_MOBILE;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070031import static android.net.ConnectivityManager.TYPE_WIFI;
32import static android.net.ConnectivityManager.TYPE_WIMAX;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070033import static android.net.ConnectivityManager.isNetworkTypeMobile;
34import static android.net.NetworkPolicy.CYCLE_NONE;
Jeff Sharkey22c055e2011-06-12 21:13:51 -070035import static android.net.NetworkPolicy.LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070036import static android.net.NetworkPolicy.SNOOZE_NEVER;
Jeff Sharkey497e4432011-06-14 17:27:29 -070037import static android.net.NetworkPolicy.WARNING_DISABLED;
Jeff Sharkey14711eb2011-06-15 10:29:17 -070038import static android.net.NetworkPolicyManager.EXTRA_NETWORK_TEMPLATE;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070039import static android.net.NetworkPolicyManager.POLICY_NONE;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070040import static android.net.NetworkPolicyManager.POLICY_REJECT_METERED_BACKGROUND;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070041import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070042import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -070043import static android.net.NetworkPolicyManager.computeLastCycleBoundary;
Jeff Sharkey1b861272011-05-22 00:34:52 -070044import static android.net.NetworkPolicyManager.dumpPolicy;
45import static android.net.NetworkPolicyManager.dumpRules;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070046import static android.net.NetworkTemplate.MATCH_ETHERNET;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070047import static android.net.NetworkTemplate.MATCH_MOBILE_3G_LOWER;
48import static android.net.NetworkTemplate.MATCH_MOBILE_4G;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070049import static android.net.NetworkTemplate.MATCH_MOBILE_ALL;
50import static android.net.NetworkTemplate.MATCH_WIFI;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070051import static android.net.NetworkTemplate.buildTemplateMobileAll;
Jeff Sharkey241dde22012-02-03 14:50:07 -080052import static android.net.TrafficStats.MB_IN_BYTES;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070053import static android.net.wifi.WifiInfo.removeDoubleQuotes;
54import static android.net.wifi.WifiManager.CHANGE_REASON_ADDED;
55import static android.net.wifi.WifiManager.CHANGE_REASON_REMOVED;
56import static android.net.wifi.WifiManager.CONFIGURED_NETWORKS_CHANGED_ACTION;
57import static android.net.wifi.WifiManager.EXTRA_CHANGE_REASON;
58import static android.net.wifi.WifiManager.EXTRA_NETWORK_INFO;
59import static android.net.wifi.WifiManager.EXTRA_WIFI_CONFIGURATION;
60import static android.net.wifi.WifiManager.EXTRA_WIFI_INFO;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070061import static android.telephony.TelephonyManager.SIM_STATE_READY;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070062import static android.text.format.DateUtils.DAY_IN_MILLIS;
Jeff Sharkey854b2b12012-04-13 16:03:40 -070063import static com.android.internal.util.ArrayUtils.appendInt;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070064import static com.android.internal.util.Preconditions.checkNotNull;
Jeff Sharkey961e3042011-08-29 16:02:57 -070065import static com.android.server.NetworkManagementService.LIMIT_GLOBAL_ALERT;
Jeff Sharkey46645002011-07-27 21:11:21 -070066import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.readBooleanAttribute;
67import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.readIntAttribute;
68import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.readLongAttribute;
69import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.writeBooleanAttribute;
70import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.writeIntAttribute;
71import static com.android.server.net.NetworkPolicyManagerService.XmlUtils.writeLongAttribute;
Jeff Sharkey497e4432011-06-14 17:27:29 -070072import static com.android.server.net.NetworkStatsService.ACTION_NETWORK_STATS_UPDATED;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070073import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
74import static org.xmlpull.v1.XmlPullParser.START_TAG;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070075
Jeff Sharkeya4620792011-05-20 15:29:23 -070076import android.app.IActivityManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -070077import android.app.INotificationManager;
Jeff Sharkeya4620792011-05-20 15:29:23 -070078import android.app.IProcessObserver;
Jeff Sharkey497e4432011-06-14 17:27:29 -070079import android.app.Notification;
80import android.app.PendingIntent;
Jeff Sharkeya4620792011-05-20 15:29:23 -070081import android.content.BroadcastReceiver;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070082import android.content.ComponentName;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070083import android.content.Context;
Jeff Sharkeya4620792011-05-20 15:29:23 -070084import android.content.Intent;
85import android.content.IntentFilter;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -070086import android.content.pm.ApplicationInfo;
87import android.content.pm.PackageManager;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -070088import android.content.pm.UserInfo;
Jeff Sharkey497e4432011-06-14 17:27:29 -070089import android.content.res.Resources;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070090import android.net.ConnectivityManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070091import android.net.IConnectivityManager;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070092import android.net.INetworkManagementEventObserver;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070093import android.net.INetworkPolicyListener;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070094import android.net.INetworkPolicyManager;
Jeff Sharkey75279902011-05-24 18:39:45 -070095import android.net.INetworkStatsService;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070096import android.net.NetworkIdentity;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070097import android.net.NetworkInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070098import android.net.NetworkPolicy;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -070099import android.net.NetworkQuotaInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700100import android.net.NetworkState;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700101import android.net.NetworkTemplate;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700102import android.net.wifi.WifiConfiguration;
103import android.net.wifi.WifiInfo;
104import android.net.wifi.WifiManager;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -0700105import android.os.Binder;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700106import android.os.Environment;
107import android.os.Handler;
108import android.os.HandlerThread;
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700109import android.os.INetworkManagementService;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700110import android.os.IPowerManager;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700111import android.os.Message;
Jeff Sharkey163e6442011-10-31 16:37:52 -0700112import android.os.MessageQueue.IdleHandler;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700113import android.os.RemoteCallbackList;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700114import android.os.RemoteException;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700115import android.os.UserId;
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700116import android.provider.Settings;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700117import android.telephony.TelephonyManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700118import android.text.format.Formatter;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700119import android.text.format.Time;
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700120import android.util.Log;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700121import android.util.NtpTrustedTime;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700122import android.util.Slog;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700123import android.util.SparseArray;
124import android.util.SparseBooleanArray;
125import android.util.SparseIntArray;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700126import android.util.TrustedTime;
127import android.util.Xml;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700128
Jeff Sharkey497e4432011-06-14 17:27:29 -0700129import com.android.internal.R;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700130import com.android.internal.os.AtomicFile;
131import com.android.internal.util.FastXmlSerializer;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700132import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700133import com.android.internal.util.Objects;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700134import com.google.android.collect.Lists;
135import com.google.android.collect.Maps;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700136import com.google.android.collect.Sets;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700137
138import org.xmlpull.v1.XmlPullParser;
139import org.xmlpull.v1.XmlPullParserException;
140import org.xmlpull.v1.XmlSerializer;
141
142import java.io.File;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700143import java.io.FileDescriptor;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700144import java.io.FileInputStream;
145import java.io.FileNotFoundException;
146import java.io.FileOutputStream;
147import java.io.IOException;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700148import java.io.PrintWriter;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700149import java.net.ProtocolException;
150import java.util.ArrayList;
151import java.util.Arrays;
152import java.util.HashMap;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700153import java.util.HashSet;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700154import java.util.List;
Jeff Sharkey47eb1022011-08-25 17:48:52 -0700155import java.util.Map;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700156
157import libcore.io.IoUtils;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700158
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700159/**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700160 * Service that maintains low-level network policy rules, using
161 * {@link NetworkStatsService} statistics to drive those rules.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700162 * <p>
163 * Derives active rules by combining a given policy with other system status,
164 * and delivers to listeners, such as {@link ConnectivityManager}, for
165 * enforcement.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700166 */
167public class NetworkPolicyManagerService extends INetworkPolicyManager.Stub {
168 private static final String TAG = "NetworkPolicy";
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700169 private static final boolean LOGD = false;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700170 private static final boolean LOGV = false;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700171
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700172 private static final int VERSION_INIT = 1;
173 private static final int VERSION_ADDED_SNOOZE = 2;
Jeff Sharkey46645002011-07-27 21:11:21 -0700174 private static final int VERSION_ADDED_RESTRICT_BACKGROUND = 3;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800175 private static final int VERSION_ADDED_METERED = 4;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800176 private static final int VERSION_SPLIT_SNOOZE = 5;
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800177 private static final int VERSION_ADDED_TIMEZONE = 6;
Jeff Sharkey837f9242012-03-20 16:52:20 -0700178 private static final int VERSION_ADDED_INFERRED = 7;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700179 private static final int VERSION_SWITCH_APP_ID = 8;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700180 private static final int VERSION_ADDED_NETWORK_ID = 9;
181 private static final int VERSION_LATEST = VERSION_ADDED_NETWORK_ID;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700182
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700183 // @VisibleForTesting
184 public static final int TYPE_WARNING = 0x1;
185 public static final int TYPE_LIMIT = 0x2;
186 public static final int TYPE_LIMIT_SNOOZED = 0x3;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700187
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700188 private static final String TAG_POLICY_LIST = "policy-list";
189 private static final String TAG_NETWORK_POLICY = "network-policy";
190 private static final String TAG_UID_POLICY = "uid-policy";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700191 private static final String TAG_APP_POLICY = "app-policy";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700192
193 private static final String ATTR_VERSION = "version";
Jeff Sharkey46645002011-07-27 21:11:21 -0700194 private static final String ATTR_RESTRICT_BACKGROUND = "restrictBackground";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700195 private static final String ATTR_NETWORK_TEMPLATE = "networkTemplate";
196 private static final String ATTR_SUBSCRIBER_ID = "subscriberId";
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700197 private static final String ATTR_NETWORK_ID = "networkId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700198 private static final String ATTR_CYCLE_DAY = "cycleDay";
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800199 private static final String ATTR_CYCLE_TIMEZONE = "cycleTimezone";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700200 private static final String ATTR_WARNING_BYTES = "warningBytes";
201 private static final String ATTR_LIMIT_BYTES = "limitBytes";
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700202 private static final String ATTR_LAST_SNOOZE = "lastSnooze";
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800203 private static final String ATTR_LAST_WARNING_SNOOZE = "lastWarningSnooze";
204 private static final String ATTR_LAST_LIMIT_SNOOZE = "lastLimitSnooze";
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800205 private static final String ATTR_METERED = "metered";
Jeff Sharkey837f9242012-03-20 16:52:20 -0700206 private static final String ATTR_INFERRED = "inferred";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700207 private static final String ATTR_UID = "uid";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700208 private static final String ATTR_APP_ID = "appId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700209 private static final String ATTR_POLICY = "policy";
210
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700211 private static final String TAG_ALLOW_BACKGROUND = TAG + ":allowBackground";
212
213 // @VisibleForTesting
214 public static final String ACTION_ALLOW_BACKGROUND =
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800215 "com.android.server.net.action.ALLOW_BACKGROUND";
216 public static final String ACTION_SNOOZE_WARNING =
217 "com.android.server.net.action.SNOOZE_WARNING";
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700218
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700219 private static final long TIME_CACHE_MAX_AGE = DAY_IN_MILLIS;
220
Jeff Sharkey6f7af032011-11-01 18:25:15 -0700221 private static final int MSG_RULES_CHANGED = 1;
222 private static final int MSG_METERED_IFACES_CHANGED = 2;
223 private static final int MSG_FOREGROUND_ACTIVITIES_CHANGED = 3;
224 private static final int MSG_PROCESS_DIED = 4;
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -0800225 private static final int MSG_LIMIT_REACHED = 5;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -0800226 private static final int MSG_RESTRICT_BACKGROUND_CHANGED = 6;
Jeff Sharkeye19f39b2012-05-24 10:21:16 -0700227 private static final int MSG_ADVISE_PERSIST_THRESHOLD = 7;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700228
Jeff Sharkey75279902011-05-24 18:39:45 -0700229 private final Context mContext;
230 private final IActivityManager mActivityManager;
231 private final IPowerManager mPowerManager;
232 private final INetworkStatsService mNetworkStats;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700233 private final INetworkManagementService mNetworkManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700234 private final TrustedTime mTime;
235
236 private IConnectivityManager mConnManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700237 private INotificationManager mNotifManager;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700238
Jeff Sharkey75279902011-05-24 18:39:45 -0700239 private final Object mRulesLock = new Object();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700240
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700241 private volatile boolean mScreenOn;
242 private volatile boolean mRestrictBackground;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700243
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700244 private final boolean mSuppressDefaultPolicy;
245
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700246 /** Defined network policies. */
247 private HashMap<NetworkTemplate, NetworkPolicy> mNetworkPolicy = Maps.newHashMap();
248 /** Currently active network rules for ifaces. */
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700249 private HashMap<NetworkPolicy, String[]> mNetworkRules = Maps.newHashMap();
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700250
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700251 /** Defined app policies. */
252 private SparseIntArray mAppPolicy = new SparseIntArray();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700253 /** Currently derived rules for each UID. */
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700254 private SparseIntArray mUidRules = new SparseIntArray();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700255
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700256 /** Set of ifaces that are metered. */
257 private HashSet<String> mMeteredIfaces = Sets.newHashSet();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700258 /** Set of over-limit templates that have been notified. */
259 private HashSet<NetworkTemplate> mOverLimitNotified = Sets.newHashSet();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700260
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700261 /** Set of currently active {@link Notification} tags. */
262 private HashSet<String> mActiveNotifs = Sets.newHashSet();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700263
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700264 /** Foreground at both UID and PID granularity. */
Jeff Sharkeya4620792011-05-20 15:29:23 -0700265 private SparseBooleanArray mUidForeground = new SparseBooleanArray();
266 private SparseArray<SparseBooleanArray> mUidPidForeground = new SparseArray<
267 SparseBooleanArray>();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700268
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700269 private final RemoteCallbackList<INetworkPolicyListener> mListeners = new RemoteCallbackList<
270 INetworkPolicyListener>();
271
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700272 private final HandlerThread mHandlerThread;
273 private final Handler mHandler;
274
275 private final AtomicFile mPolicyFile;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700276
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700277 // TODO: keep whitelist of system-critical services that should never have
278 // rules enforced, such as system, phone, and radio UIDs.
279
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700280 // TODO: migrate notifications to SystemUI
281
Jeff Sharkey75279902011-05-24 18:39:45 -0700282 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700283 IPowerManager powerManager, INetworkStatsService networkStats,
284 INetworkManagementService networkManagement) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700285 this(context, activityManager, powerManager, networkStats, networkManagement,
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700286 NtpTrustedTime.getInstance(context), getSystemDir(), false);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700287 }
288
289 private static File getSystemDir() {
290 return new File(Environment.getDataDirectory(), "system");
291 }
292
293 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700294 IPowerManager powerManager, INetworkStatsService networkStats,
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700295 INetworkManagementService networkManagement, TrustedTime time, File systemDir,
296 boolean suppressDefaultPolicy) {
Jeff Sharkeya4620792011-05-20 15:29:23 -0700297 mContext = checkNotNull(context, "missing context");
298 mActivityManager = checkNotNull(activityManager, "missing activityManager");
299 mPowerManager = checkNotNull(powerManager, "missing powerManager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700300 mNetworkStats = checkNotNull(networkStats, "missing networkStats");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700301 mNetworkManager = checkNotNull(networkManagement, "missing networkManagement");
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700302 mTime = checkNotNull(time, "missing TrustedTime");
303
304 mHandlerThread = new HandlerThread(TAG);
305 mHandlerThread.start();
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700306 mHandler = new Handler(mHandlerThread.getLooper(), mHandlerCallback);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700307
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700308 mSuppressDefaultPolicy = suppressDefaultPolicy;
309
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700310 mPolicyFile = new AtomicFile(new File(systemDir, "netpolicy.xml"));
311 }
312
313 public void bindConnectivityManager(IConnectivityManager connManager) {
314 mConnManager = checkNotNull(connManager, "missing IConnectivityManager");
Jeff Sharkeya4620792011-05-20 15:29:23 -0700315 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700316
Jeff Sharkey497e4432011-06-14 17:27:29 -0700317 public void bindNotificationManager(INotificationManager notifManager) {
318 mNotifManager = checkNotNull(notifManager, "missing INotificationManager");
319 }
320
Jeff Sharkeya4620792011-05-20 15:29:23 -0700321 public void systemReady() {
Jeff Sharkey8c1dc722012-05-04 14:49:37 -0700322 if (!isBandwidthControlEnabled()) {
323 Slog.w(TAG, "bandwidth controls disabled, unable to enforce policy");
324 return;
325 }
326
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700327 synchronized (mRulesLock) {
328 // read policy from disk
329 readPolicyLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -0700330
331 if (mRestrictBackground) {
332 updateRulesForRestrictBackgroundLocked();
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700333 updateNotificationsLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -0700334 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700335 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700336
Jeff Sharkeya4620792011-05-20 15:29:23 -0700337 updateScreenOn();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700338
Jeff Sharkeya4620792011-05-20 15:29:23 -0700339 try {
340 mActivityManager.registerProcessObserver(mProcessObserver);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700341 mNetworkManager.registerObserver(mAlertObserver);
342 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700343 // ignored; both services live in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700344 }
345
Jeff Sharkeya4620792011-05-20 15:29:23 -0700346 // TODO: traverse existing processes to know foreground state, or have
347 // activitymanager dispatch current state when new observer attached.
348
349 final IntentFilter screenFilter = new IntentFilter();
350 screenFilter.addAction(Intent.ACTION_SCREEN_ON);
351 screenFilter.addAction(Intent.ACTION_SCREEN_OFF);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700352 mContext.registerReceiver(mScreenReceiver, screenFilter, null, mHandler);
Jeff Sharkeya4620792011-05-20 15:29:23 -0700353
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700354 // watch for network interfaces to be claimed
Jeff Sharkey961e3042011-08-29 16:02:57 -0700355 final IntentFilter connFilter = new IntentFilter(CONNECTIVITY_ACTION_IMMEDIATE);
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700356 mContext.registerReceiver(mConnReceiver, connFilter, CONNECTIVITY_INTERNAL, mHandler);
357
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700358 // listen for package/uid changes to update policy
359 final IntentFilter packageFilter = new IntentFilter();
360 packageFilter.addAction(ACTION_PACKAGE_ADDED);
361 packageFilter.addAction(ACTION_UID_REMOVED);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700362 mContext.registerReceiver(mPackageReceiver, packageFilter, null, mHandler);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700363
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700364 // listen for stats update events
Jeff Sharkey497e4432011-06-14 17:27:29 -0700365 final IntentFilter statsFilter = new IntentFilter(ACTION_NETWORK_STATS_UPDATED);
366 mContext.registerReceiver(
367 mStatsReceiver, statsFilter, READ_NETWORK_USAGE_HISTORY, mHandler);
368
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700369 // listen for restrict background changes from notifications
370 final IntentFilter allowFilter = new IntentFilter(ACTION_ALLOW_BACKGROUND);
371 mContext.registerReceiver(mAllowReceiver, allowFilter, MANAGE_NETWORK_POLICY, mHandler);
372
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800373 // listen for snooze warning from notifications
374 final IntentFilter snoozeWarningFilter = new IntentFilter(ACTION_SNOOZE_WARNING);
375 mContext.registerReceiver(mSnoozeWarningReceiver, snoozeWarningFilter,
376 MANAGE_NETWORK_POLICY, mHandler);
377
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700378 // listen for configured wifi networks to be removed
379 final IntentFilter wifiConfigFilter = new IntentFilter(CONFIGURED_NETWORKS_CHANGED_ACTION);
380 mContext.registerReceiver(
381 mWifiConfigReceiver, wifiConfigFilter, CONNECTIVITY_INTERNAL, mHandler);
382
383 // listen for wifi state changes to catch metered hint
384 final IntentFilter wifiStateFilter = new IntentFilter(
385 WifiManager.NETWORK_STATE_CHANGED_ACTION);
386 mContext.registerReceiver(
387 mWifiStateReceiver, wifiStateFilter, CONNECTIVITY_INTERNAL, mHandler);
388
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700389 }
390
Jeff Sharkeya4620792011-05-20 15:29:23 -0700391 private IProcessObserver mProcessObserver = new IProcessObserver.Stub() {
392 @Override
393 public void onForegroundActivitiesChanged(int pid, int uid, boolean foregroundActivities) {
Jeff Sharkey6f7af032011-11-01 18:25:15 -0700394 mHandler.obtainMessage(MSG_FOREGROUND_ACTIVITIES_CHANGED,
395 pid, uid, foregroundActivities).sendToTarget();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700396 }
Jeff Sharkeya4620792011-05-20 15:29:23 -0700397
398 @Override
Dianne Hackborna93c2c12012-05-31 15:29:36 -0700399 public void onImportanceChanged(int pid, int uid, int importance) {
400 }
401
402 @Override
Jeff Sharkeya4620792011-05-20 15:29:23 -0700403 public void onProcessDied(int pid, int uid) {
Jeff Sharkey6f7af032011-11-01 18:25:15 -0700404 mHandler.obtainMessage(MSG_PROCESS_DIED, pid, uid).sendToTarget();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700405 }
406 };
407
408 private BroadcastReceiver mScreenReceiver = new BroadcastReceiver() {
409 @Override
410 public void onReceive(Context context, Intent intent) {
411 synchronized (mRulesLock) {
412 // screen-related broadcasts are protected by system, no need
413 // for permissions check.
414 updateScreenOn();
415 }
416 }
417 };
418
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700419 private BroadcastReceiver mPackageReceiver = new BroadcastReceiver() {
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700420 @Override
421 public void onReceive(Context context, Intent intent) {
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700422 // on background handler thread, and PACKAGE_ADDED and UID_REMOVED
423 // are protected broadcasts.
424
425 final String action = intent.getAction();
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700426 final int uid = intent.getIntExtra(EXTRA_UID, 0);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700427 final int appId = UserId.getAppId(uid);
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700428 synchronized (mRulesLock) {
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700429 if (ACTION_PACKAGE_ADDED.equals(action)) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700430 // NOTE: PACKAGE_ADDED is currently only sent once, and is
431 // not broadcast when users are added.
432
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700433 // update rules for UID, since it might be subject to
434 // global background data policy.
435 if (LOGV) Slog.v(TAG, "ACTION_PACKAGE_ADDED for uid=" + uid);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700436 updateRulesForAppLocked(appId);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700437
438 } else if (ACTION_UID_REMOVED.equals(action)) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700439 // NOTE: UID_REMOVED is currently only sent once, and is not
440 // broadcast when users are removed.
441
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700442 // remove any policy and update rules to clean up.
443 if (LOGV) Slog.v(TAG, "ACTION_UID_REMOVED for uid=" + uid);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700444
445 mAppPolicy.delete(appId);
446 updateRulesForAppLocked(appId);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700447 writePolicyLocked();
448 }
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700449 }
450 }
451 };
452
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700453 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700454 * Receiver that watches for {@link INetworkStatsService} updates, which we
455 * use to check against {@link NetworkPolicy#warningBytes}.
456 */
457 private BroadcastReceiver mStatsReceiver = new BroadcastReceiver() {
458 @Override
459 public void onReceive(Context context, Intent intent) {
460 // on background handler thread, and verified
461 // READ_NETWORK_USAGE_HISTORY permission above.
462
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800463 maybeRefreshTrustedTime();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700464 synchronized (mRulesLock) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700465 updateNetworkEnabledLocked();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700466 updateNotificationsLocked();
467 }
468 }
469 };
470
471 /**
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700472 * Receiver that watches for {@link Notification} control of
473 * {@link #mRestrictBackground}.
474 */
475 private BroadcastReceiver mAllowReceiver = new BroadcastReceiver() {
476 @Override
477 public void onReceive(Context context, Intent intent) {
478 // on background handler thread, and verified MANAGE_NETWORK_POLICY
479 // permission above.
480
481 setRestrictBackground(false);
482 }
483 };
484
485 /**
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800486 * Receiver that watches for {@link Notification} control of
487 * {@link NetworkPolicy#lastWarningSnooze}.
488 */
489 private BroadcastReceiver mSnoozeWarningReceiver = new BroadcastReceiver() {
490 @Override
491 public void onReceive(Context context, Intent intent) {
492 // on background handler thread, and verified MANAGE_NETWORK_POLICY
493 // permission above.
494
495 final NetworkTemplate template = intent.getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
496 performSnooze(template, TYPE_WARNING);
497 }
498 };
499
500 /**
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700501 * Receiver that watches for {@link WifiConfiguration} to be changed.
502 */
503 private BroadcastReceiver mWifiConfigReceiver = new BroadcastReceiver() {
504 @Override
505 public void onReceive(Context context, Intent intent) {
506 // on background handler thread, and verified CONNECTIVITY_INTERNAL
507 // permission above.
508
509 final int reason = intent.getIntExtra(EXTRA_CHANGE_REASON, CHANGE_REASON_ADDED);
510 if (reason == CHANGE_REASON_REMOVED) {
511 final WifiConfiguration config = intent.getParcelableExtra(
512 EXTRA_WIFI_CONFIGURATION);
Irfan Sheriff00a10a12012-04-27 21:24:17 -0700513 if (config.SSID != null) {
514 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(
515 removeDoubleQuotes(config.SSID));
516 synchronized (mRulesLock) {
517 if (mNetworkPolicy.containsKey(template)) {
518 mNetworkPolicy.remove(template);
519 writePolicyLocked();
520 }
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700521 }
522 }
523 }
524 }
525 };
526
527 /**
528 * Receiver that watches {@link WifiInfo} state changes to infer metered
529 * state. Ignores hints when policy is user-defined.
530 */
531 private BroadcastReceiver mWifiStateReceiver = new BroadcastReceiver() {
532 @Override
533 public void onReceive(Context context, Intent intent) {
534 // on background handler thread, and verified CONNECTIVITY_INTERNAL
535 // permission above.
536
537 // ignore when not connected
538 final NetworkInfo netInfo = intent.getParcelableExtra(EXTRA_NETWORK_INFO);
539 if (!netInfo.isConnected()) return;
540
541 final WifiInfo info = intent.getParcelableExtra(EXTRA_WIFI_INFO);
542 final boolean meteredHint = info.getMeteredHint();
543
544 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(
545 removeDoubleQuotes(info.getSSID()));
546 synchronized (mRulesLock) {
547 NetworkPolicy policy = mNetworkPolicy.get(template);
548 if (policy == null && meteredHint) {
549 // policy doesn't exist, and AP is hinting that it's
550 // metered: create an inferred policy.
551 policy = new NetworkPolicy(template, CYCLE_NONE, Time.TIMEZONE_UTC,
552 WARNING_DISABLED, LIMIT_DISABLED, SNOOZE_NEVER, SNOOZE_NEVER,
553 meteredHint, true);
554 addNetworkPolicyLocked(policy);
555
556 } else if (policy != null && policy.inferred) {
557 // policy exists, and was inferred: update its current
558 // metered state.
559 policy.metered = meteredHint;
560
561 // since this is inferred for each wifi session, just update
562 // rules without persisting.
563 updateNetworkRulesLocked();
564 }
565 }
566 }
567 };
568
569 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700570 * Observer that watches for {@link INetworkManagementService} alerts.
571 */
572 private INetworkManagementEventObserver mAlertObserver = new NetworkAlertObserver() {
573 @Override
574 public void limitReached(String limitName, String iface) {
575 // only someone like NMS should be calling us
576 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
577
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -0800578 if (!LIMIT_GLOBAL_ALERT.equals(limitName)) {
579 mHandler.obtainMessage(MSG_LIMIT_REACHED, iface).sendToTarget();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700580 }
581 }
582 };
583
584 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700585 * Check {@link NetworkPolicy} against current {@link INetworkStatsService}
586 * to show visible notifications as needed.
587 */
588 private void updateNotificationsLocked() {
589 if (LOGV) Slog.v(TAG, "updateNotificationsLocked()");
590
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700591 // keep track of previously active notifications
592 final HashSet<String> beforeNotifs = Sets.newHashSet();
593 beforeNotifs.addAll(mActiveNotifs);
594 mActiveNotifs.clear();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700595
596 // TODO: when switching to kernel notifications, compute next future
597 // cycle boundary to recompute notifications.
598
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700599 // examine stats for each active policy
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800600 final long currentTime = currentTimeMillis();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700601 for (NetworkPolicy policy : mNetworkPolicy.values()) {
602 // ignore policies that aren't relevant to user
603 if (!isTemplateRelevant(policy.template)) continue;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700604 if (!policy.hasCycle()) continue;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700605
Jeff Sharkey497e4432011-06-14 17:27:29 -0700606 final long start = computeLastCycleBoundary(currentTime, policy);
607 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700608 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700609
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700610 if (policy.isOverLimit(totalBytes)) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800611 if (policy.lastLimitSnooze >= start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700612 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes);
613 } else {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700614 enqueueNotification(policy, TYPE_LIMIT, totalBytes);
615 notifyOverLimitLocked(policy.template);
616 }
617
Jeff Sharkey497e4432011-06-14 17:27:29 -0700618 } else {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700619 notifyUnderLimitLocked(policy.template);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700620
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800621 if (policy.isOverWarning(totalBytes) && policy.lastWarningSnooze < start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700622 enqueueNotification(policy, TYPE_WARNING, totalBytes);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700623 }
624 }
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700625 }
626
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700627 // ongoing notification when restricting background data
628 if (mRestrictBackground) {
629 enqueueRestrictedNotification(TAG_ALLOW_BACKGROUND);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700630 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700631
632 // cancel stale notifications that we didn't renew above
633 for (String tag : beforeNotifs) {
634 if (!mActiveNotifs.contains(tag)) {
635 cancelNotification(tag);
636 }
637 }
638 }
639
640 /**
641 * Test if given {@link NetworkTemplate} is relevant to user based on
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700642 * current device state, such as when
643 * {@link TelephonyManager#getSubscriberId()} matches. This is regardless of
644 * data connection status.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700645 */
646 private boolean isTemplateRelevant(NetworkTemplate template) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700647 final TelephonyManager tele = TelephonyManager.from(mContext);
648
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700649 switch (template.getMatchRule()) {
650 case MATCH_MOBILE_3G_LOWER:
651 case MATCH_MOBILE_4G:
652 case MATCH_MOBILE_ALL:
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700653 // mobile templates are relevant when SIM is ready and
654 // subscriberId matches.
655 if (tele.getSimState() == SIM_STATE_READY) {
656 return Objects.equal(tele.getSubscriberId(), template.getSubscriberId());
657 } else {
Jeff Sharkey3a66cf32012-03-20 17:00:01 -0700658 return false;
659 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700660 }
661 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700662 }
663
664 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700665 * Notify that given {@link NetworkTemplate} is over
666 * {@link NetworkPolicy#limitBytes}, potentially showing dialog to user.
667 */
668 private void notifyOverLimitLocked(NetworkTemplate template) {
669 if (!mOverLimitNotified.contains(template)) {
670 mContext.startActivity(buildNetworkOverLimitIntent(template));
671 mOverLimitNotified.add(template);
672 }
673 }
674
675 private void notifyUnderLimitLocked(NetworkTemplate template) {
676 mOverLimitNotified.remove(template);
677 }
678
679 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700680 * Build unique tag that identifies an active {@link NetworkPolicy}
681 * notification of a specific type, like {@link #TYPE_LIMIT}.
682 */
683 private String buildNotificationTag(NetworkPolicy policy, int type) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700684 return TAG + ":" + policy.template.hashCode() + ":" + type;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700685 }
686
687 /**
688 * Show notification for combined {@link NetworkPolicy} and specific type,
689 * like {@link #TYPE_LIMIT}. Okay to call multiple times.
690 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700691 private void enqueueNotification(NetworkPolicy policy, int type, long totalBytes) {
Jeff Sharkey497e4432011-06-14 17:27:29 -0700692 final String tag = buildNotificationTag(policy, type);
693 final Notification.Builder builder = new Notification.Builder(mContext);
694 builder.setOnlyAlertOnce(true);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800695 builder.setWhen(0L);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700696
697 final Resources res = mContext.getResources();
698 switch (type) {
699 case TYPE_WARNING: {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700700 final CharSequence title = res.getText(R.string.data_usage_warning_title);
Jeff Sharkey8ca953d2011-09-14 19:56:11 -0700701 final CharSequence body = res.getString(R.string.data_usage_warning_body);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700702
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700703 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700704 builder.setTicker(title);
705 builder.setContentTitle(title);
706 builder.setContentText(body);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700707
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800708 final Intent snoozeIntent = buildSnoozeWarningIntent(policy.template);
709 builder.setDeleteIntent(PendingIntent.getBroadcast(
710 mContext, 0, snoozeIntent, PendingIntent.FLAG_UPDATE_CURRENT));
711
712 final Intent viewIntent = buildViewDataUsageIntent(policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700713 builder.setContentIntent(PendingIntent.getActivity(
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800714 mContext, 0, viewIntent, PendingIntent.FLAG_UPDATE_CURRENT));
715
Jeff Sharkey497e4432011-06-14 17:27:29 -0700716 break;
717 }
718 case TYPE_LIMIT: {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700719 final CharSequence body = res.getText(R.string.data_usage_limit_body);
720
721 final CharSequence title;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700722 switch (policy.template.getMatchRule()) {
723 case MATCH_MOBILE_3G_LOWER:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700724 title = res.getText(R.string.data_usage_3g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700725 break;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700726 case MATCH_MOBILE_4G:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700727 title = res.getText(R.string.data_usage_4g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700728 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700729 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700730 title = res.getText(R.string.data_usage_mobile_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700731 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700732 case MATCH_WIFI:
733 title = res.getText(R.string.data_usage_wifi_limit_title);
734 break;
735 default:
736 title = null;
737 break;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700738 }
739
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800740 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700741 builder.setSmallIcon(R.drawable.stat_notify_disabled);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700742 builder.setTicker(title);
743 builder.setContentTitle(title);
744 builder.setContentText(body);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700745
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700746 final Intent intent = buildNetworkOverLimitIntent(policy.template);
747 builder.setContentIntent(PendingIntent.getActivity(
748 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
749 break;
750 }
751 case TYPE_LIMIT_SNOOZED: {
752 final long overBytes = totalBytes - policy.limitBytes;
753 final CharSequence body = res.getString(R.string.data_usage_limit_snoozed_body,
754 Formatter.formatFileSize(mContext, overBytes));
755
756 final CharSequence title;
757 switch (policy.template.getMatchRule()) {
758 case MATCH_MOBILE_3G_LOWER:
759 title = res.getText(R.string.data_usage_3g_limit_snoozed_title);
760 break;
761 case MATCH_MOBILE_4G:
762 title = res.getText(R.string.data_usage_4g_limit_snoozed_title);
763 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700764 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700765 title = res.getText(R.string.data_usage_mobile_limit_snoozed_title);
766 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700767 case MATCH_WIFI:
768 title = res.getText(R.string.data_usage_wifi_limit_snoozed_title);
769 break;
770 default:
771 title = null;
772 break;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700773 }
774
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800775 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700776 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700777 builder.setTicker(title);
778 builder.setContentTitle(title);
779 builder.setContentText(body);
780
781 final Intent intent = buildViewDataUsageIntent(policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700782 builder.setContentIntent(PendingIntent.getActivity(
783 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
Jeff Sharkey497e4432011-06-14 17:27:29 -0700784 break;
785 }
786 }
787
788 // TODO: move to NotificationManager once we can mock it
789 try {
790 final String packageName = mContext.getPackageName();
791 final int[] idReceived = new int[1];
792 mNotifManager.enqueueNotificationWithTag(
793 packageName, tag, 0x0, builder.getNotification(), idReceived);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700794 mActiveNotifs.add(tag);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700795 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700796 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -0700797 }
798 }
799
800 /**
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700801 * Show ongoing notification to reflect that {@link #mRestrictBackground}
802 * has been enabled.
Jeff Sharkey497e4432011-06-14 17:27:29 -0700803 */
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700804 private void enqueueRestrictedNotification(String tag) {
805 final Resources res = mContext.getResources();
806 final Notification.Builder builder = new Notification.Builder(mContext);
807
808 final CharSequence title = res.getText(R.string.data_usage_restricted_title);
809 final CharSequence body = res.getString(R.string.data_usage_restricted_body);
810
811 builder.setOnlyAlertOnce(true);
812 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700813 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700814 builder.setTicker(title);
815 builder.setContentTitle(title);
816 builder.setContentText(body);
817
818 final Intent intent = buildAllowBackgroundDataIntent();
819 builder.setContentIntent(
820 PendingIntent.getBroadcast(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
Jeff Sharkey497e4432011-06-14 17:27:29 -0700821
822 // TODO: move to NotificationManager once we can mock it
823 try {
824 final String packageName = mContext.getPackageName();
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700825 final int[] idReceived = new int[1];
826 mNotifManager.enqueueNotificationWithTag(packageName, tag,
827 0x0, builder.getNotification(), idReceived);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700828 mActiveNotifs.add(tag);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700829 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700830 // ignored; service lives in system_server
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700831 }
832 }
833
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700834 private void cancelNotification(String tag) {
835 // TODO: move to NotificationManager once we can mock it
836 try {
837 final String packageName = mContext.getPackageName();
838 mNotifManager.cancelNotificationWithTag(
839 packageName, tag, 0x0);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700840 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700841 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -0700842 }
843 }
844
845 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700846 * Receiver that watches for {@link IConnectivityManager} to claim network
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700847 * interfaces. Used to apply {@link NetworkPolicy} to matching networks.
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700848 */
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700849 private BroadcastReceiver mConnReceiver = new BroadcastReceiver() {
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700850 @Override
851 public void onReceive(Context context, Intent intent) {
852 // on background handler thread, and verified CONNECTIVITY_INTERNAL
853 // permission above.
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800854
855 maybeRefreshTrustedTime();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700856 synchronized (mRulesLock) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700857 ensureActiveMobilePolicyLocked();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700858 updateNetworkEnabledLocked();
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700859 updateNetworkRulesLocked();
860 updateNotificationsLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700861 }
862 }
863 };
864
865 /**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700866 * Proactively control network data connections when they exceed
867 * {@link NetworkPolicy#limitBytes}.
868 */
869 private void updateNetworkEnabledLocked() {
870 if (LOGV) Slog.v(TAG, "updateNetworkEnabledLocked()");
871
872 // TODO: reset any policy-disabled networks when any policy is removed
873 // completely, which is currently rare case.
874
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800875 final long currentTime = currentTimeMillis();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700876 for (NetworkPolicy policy : mNetworkPolicy.values()) {
877 // shortcut when policy has no limit
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700878 if (policy.limitBytes == LIMIT_DISABLED || !policy.hasCycle()) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700879 setNetworkTemplateEnabled(policy.template, true);
880 continue;
881 }
882
883 final long start = computeLastCycleBoundary(currentTime, policy);
884 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700885 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700886
887 // disable data connection when over limit and not snoozed
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800888 final boolean overLimitWithoutSnooze = policy.isOverLimit(totalBytes)
889 && policy.lastLimitSnooze < start;
890 final boolean networkEnabled = !overLimitWithoutSnooze;
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700891
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800892 setNetworkTemplateEnabled(policy.template, networkEnabled);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700893 }
894 }
895
896 /**
897 * Control {@link IConnectivityManager#setPolicyDataEnable(int, boolean)}
898 * for the given {@link NetworkTemplate}.
899 */
900 private void setNetworkTemplateEnabled(NetworkTemplate template, boolean enabled) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700901 final TelephonyManager tele = TelephonyManager.from(mContext);
902
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700903 switch (template.getMatchRule()) {
904 case MATCH_MOBILE_3G_LOWER:
905 case MATCH_MOBILE_4G:
906 case MATCH_MOBILE_ALL:
907 // TODO: offer more granular control over radio states once
908 // 4965893 is available.
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700909 if (tele.getSimState() == SIM_STATE_READY
910 && Objects.equal(tele.getSubscriberId(), template.getSubscriberId())) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700911 setPolicyDataEnable(TYPE_MOBILE, enabled);
912 setPolicyDataEnable(TYPE_WIMAX, enabled);
913 }
914 break;
915 case MATCH_WIFI:
916 setPolicyDataEnable(TYPE_WIFI, enabled);
917 break;
918 case MATCH_ETHERNET:
919 setPolicyDataEnable(TYPE_ETHERNET, enabled);
920 break;
921 default:
922 throw new IllegalArgumentException("unexpected template");
923 }
924 }
925
926 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700927 * Examine all connected {@link NetworkState}, looking for
928 * {@link NetworkPolicy} that need to be enforced. When matches found, set
929 * remaining quota based on usage cycle and historical stats.
930 */
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700931 private void updateNetworkRulesLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700932 if (LOGV) Slog.v(TAG, "updateIfacesLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700933
934 final NetworkState[] states;
935 try {
936 states = mConnManager.getAllNetworkState();
937 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700938 // ignored; service lives in system_server
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700939 return;
940 }
941
942 // first, derive identity for all connected networks, which can be used
943 // to match against templates.
944 final HashMap<NetworkIdentity, String> networks = Maps.newHashMap();
945 for (NetworkState state : states) {
946 // stash identity and iface away for later use
947 if (state.networkInfo.isConnected()) {
948 final String iface = state.linkProperties.getInterfaceName();
949 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
950 networks.put(ident, iface);
951 }
952 }
953
954 // build list of rules and ifaces to enforce them against
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700955 mNetworkRules.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700956 final ArrayList<String> ifaceList = Lists.newArrayList();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700957 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700958
959 // collect all active ifaces that match this template
960 ifaceList.clear();
Jeff Sharkey47eb1022011-08-25 17:48:52 -0700961 for (Map.Entry<NetworkIdentity, String> entry : networks.entrySet()) {
962 final NetworkIdentity ident = entry.getKey();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700963 if (policy.template.matches(ident)) {
Jeff Sharkey47eb1022011-08-25 17:48:52 -0700964 final String iface = entry.getValue();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700965 ifaceList.add(iface);
966 }
967 }
968
969 if (ifaceList.size() > 0) {
970 final String[] ifaces = ifaceList.toArray(new String[ifaceList.size()]);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700971 mNetworkRules.put(policy, ifaces);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700972 }
973 }
974
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700975 long lowestRule = Long.MAX_VALUE;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700976 final HashSet<String> newMeteredIfaces = Sets.newHashSet();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700977
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700978 // apply each policy that we found ifaces for; compute remaining data
979 // based on current cycle and historical stats, and push to kernel.
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800980 final long currentTime = currentTimeMillis();
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700981 for (NetworkPolicy policy : mNetworkRules.keySet()) {
982 final String[] ifaces = mNetworkRules.get(policy);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700983
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700984 final long start;
985 final long totalBytes;
986 if (policy.hasCycle()) {
987 start = computeLastCycleBoundary(currentTime, policy);
988 totalBytes = getTotalBytes(policy.template, start, currentTime);
989 } else {
990 start = Long.MAX_VALUE;
991 totalBytes = 0;
992 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700993
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700994 if (LOGD) {
995 Slog.d(TAG, "applying policy " + policy.toString() + " to ifaces "
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700996 + Arrays.toString(ifaces));
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700997 }
998
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700999 final boolean hasWarning = policy.warningBytes != LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001000 final boolean hasLimit = policy.limitBytes != LIMIT_DISABLED;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001001 if (hasLimit || policy.metered) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001002 final long quotaBytes;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001003 if (!hasLimit) {
1004 // metered network, but no policy limit; we still need to
1005 // restrict apps, so push really high quota.
1006 quotaBytes = Long.MAX_VALUE;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001007 } else if (policy.lastLimitSnooze >= start) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001008 // snoozing past quota, but we still need to restrict apps,
1009 // so push really high quota.
1010 quotaBytes = Long.MAX_VALUE;
1011 } else {
1012 // remaining "quota" bytes are based on total usage in
1013 // current cycle. kernel doesn't like 0-byte rules, so we
1014 // set 1-byte quota and disable the radio later.
1015 quotaBytes = Math.max(1, policy.limitBytes - totalBytes);
1016 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001017
1018 if (ifaces.length > 1) {
1019 // TODO: switch to shared quota once NMS supports
1020 Slog.w(TAG, "shared quota unsupported; generating rule for each iface");
Ashish Sharma50fd36d2011-06-15 19:34:53 -07001021 }
1022
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001023 for (String iface : ifaces) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001024 removeInterfaceQuota(iface);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001025 setInterfaceQuota(iface, quotaBytes);
1026 newMeteredIfaces.add(iface);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001027 }
1028 }
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001029
1030 // keep track of lowest warning or limit of active policies
1031 if (hasWarning && policy.warningBytes < lowestRule) {
1032 lowestRule = policy.warningBytes;
1033 }
1034 if (hasLimit && policy.limitBytes < lowestRule) {
1035 lowestRule = policy.limitBytes;
1036 }
1037 }
1038
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07001039 mHandler.obtainMessage(MSG_ADVISE_PERSIST_THRESHOLD, lowestRule).sendToTarget();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001040
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001041 // remove quota on any trailing interfaces
1042 for (String iface : mMeteredIfaces) {
1043 if (!newMeteredIfaces.contains(iface)) {
1044 removeInterfaceQuota(iface);
1045 }
1046 }
1047 mMeteredIfaces = newMeteredIfaces;
1048
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001049 final String[] meteredIfaces = mMeteredIfaces.toArray(new String[mMeteredIfaces.size()]);
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001050 mHandler.obtainMessage(MSG_METERED_IFACES_CHANGED, meteredIfaces).sendToTarget();
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001051 }
1052
1053 /**
1054 * Once any {@link #mNetworkPolicy} are loaded from disk, ensure that we
1055 * have at least a default mobile policy defined.
1056 */
1057 private void ensureActiveMobilePolicyLocked() {
1058 if (LOGV) Slog.v(TAG, "ensureActiveMobilePolicyLocked()");
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001059 if (mSuppressDefaultPolicy) return;
1060
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001061 final TelephonyManager tele = TelephonyManager.from(mContext);
1062
1063 // avoid creating policy when SIM isn't ready
1064 if (tele.getSimState() != SIM_STATE_READY) return;
1065
1066 final String subscriberId = tele.getSubscriberId();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001067 final NetworkIdentity probeIdent = new NetworkIdentity(
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001068 TYPE_MOBILE, TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001069
1070 // examine to see if any policy is defined for active mobile
1071 boolean mobileDefined = false;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001072 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001073 if (policy.template.matches(probeIdent)) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001074 mobileDefined = true;
1075 }
1076 }
1077
1078 if (!mobileDefined) {
1079 Slog.i(TAG, "no policy for active mobile network; generating default policy");
1080
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001081 // build default mobile policy, and assume usage cycle starts today
1082 final long warningBytes = mContext.getResources().getInteger(
1083 com.android.internal.R.integer.config_networkPolicyDefaultWarning)
1084 * MB_IN_BYTES;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001085
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001086 final Time time = new Time();
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001087 time.setToNow();
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001088
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001089 final int cycleDay = time.monthDay;
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001090 final String cycleTimezone = time.timezone;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001091
Jeff Sharkey4e814c32011-07-14 20:37:37 -07001092 final NetworkTemplate template = buildTemplateMobileAll(subscriberId);
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001093 final NetworkPolicy policy = new NetworkPolicy(template, cycleDay, cycleTimezone,
1094 warningBytes, LIMIT_DISABLED, SNOOZE_NEVER, SNOOZE_NEVER, true, true);
1095 addNetworkPolicyLocked(policy);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001096 }
1097 }
1098
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001099 private void readPolicyLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001100 if (LOGV) Slog.v(TAG, "readPolicyLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001101
1102 // clear any existing policy and read from disk
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001103 mNetworkPolicy.clear();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001104 mAppPolicy.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001105
1106 FileInputStream fis = null;
1107 try {
1108 fis = mPolicyFile.openRead();
1109 final XmlPullParser in = Xml.newPullParser();
1110 in.setInput(fis, null);
1111
1112 int type;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001113 int version = VERSION_INIT;
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001114 while ((type = in.next()) != END_DOCUMENT) {
1115 final String tag = in.getName();
1116 if (type == START_TAG) {
1117 if (TAG_POLICY_LIST.equals(tag)) {
1118 version = readIntAttribute(in, ATTR_VERSION);
Jeff Sharkey46645002011-07-27 21:11:21 -07001119 if (version >= VERSION_ADDED_RESTRICT_BACKGROUND) {
1120 mRestrictBackground = readBooleanAttribute(
1121 in, ATTR_RESTRICT_BACKGROUND);
1122 } else {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001123 mRestrictBackground = false;
Jeff Sharkey46645002011-07-27 21:11:21 -07001124 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001125
1126 } else if (TAG_NETWORK_POLICY.equals(tag)) {
1127 final int networkTemplate = readIntAttribute(in, ATTR_NETWORK_TEMPLATE);
1128 final String subscriberId = in.getAttributeValue(null, ATTR_SUBSCRIBER_ID);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001129 final String networkId;
1130 if (version >= VERSION_ADDED_NETWORK_ID) {
1131 networkId = in.getAttributeValue(null, ATTR_NETWORK_ID);
1132 } else {
1133 networkId = null;
1134 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001135 final int cycleDay = readIntAttribute(in, ATTR_CYCLE_DAY);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001136 final String cycleTimezone;
1137 if (version >= VERSION_ADDED_TIMEZONE) {
1138 cycleTimezone = in.getAttributeValue(null, ATTR_CYCLE_TIMEZONE);
1139 } else {
1140 cycleTimezone = Time.TIMEZONE_UTC;
1141 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001142 final long warningBytes = readLongAttribute(in, ATTR_WARNING_BYTES);
1143 final long limitBytes = readLongAttribute(in, ATTR_LIMIT_BYTES);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001144 final long lastLimitSnooze;
1145 if (version >= VERSION_SPLIT_SNOOZE) {
1146 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_LIMIT_SNOOZE);
1147 } else if (version >= VERSION_ADDED_SNOOZE) {
1148 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_SNOOZE);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001149 } else {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001150 lastLimitSnooze = SNOOZE_NEVER;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001151 }
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001152 final boolean metered;
1153 if (version >= VERSION_ADDED_METERED) {
1154 metered = readBooleanAttribute(in, ATTR_METERED);
1155 } else {
1156 switch (networkTemplate) {
1157 case MATCH_MOBILE_3G_LOWER:
1158 case MATCH_MOBILE_4G:
1159 case MATCH_MOBILE_ALL:
1160 metered = true;
1161 break;
1162 default:
1163 metered = false;
1164 }
1165 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001166 final long lastWarningSnooze;
1167 if (version >= VERSION_SPLIT_SNOOZE) {
1168 lastWarningSnooze = readLongAttribute(in, ATTR_LAST_WARNING_SNOOZE);
1169 } else {
1170 lastWarningSnooze = SNOOZE_NEVER;
1171 }
Jeff Sharkey837f9242012-03-20 16:52:20 -07001172 final boolean inferred;
1173 if (version >= VERSION_ADDED_INFERRED) {
1174 inferred = readBooleanAttribute(in, ATTR_INFERRED);
1175 } else {
1176 inferred = false;
1177 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001178
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001179 final NetworkTemplate template = new NetworkTemplate(
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001180 networkTemplate, subscriberId, networkId);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001181 mNetworkPolicy.put(template, new NetworkPolicy(template, cycleDay,
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001182 cycleTimezone, warningBytes, limitBytes, lastWarningSnooze,
Jeff Sharkey837f9242012-03-20 16:52:20 -07001183 lastLimitSnooze, metered, inferred));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001184
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001185 } else if (TAG_UID_POLICY.equals(tag) && version < VERSION_SWITCH_APP_ID) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001186 final int uid = readIntAttribute(in, ATTR_UID);
1187 final int policy = readIntAttribute(in, ATTR_POLICY);
1188
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001189 final int appId = UserId.getAppId(uid);
1190 if (UserId.isApp(appId)) {
1191 setAppPolicyUnchecked(appId, policy, false);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001192 } else {
1193 Slog.w(TAG, "unable to apply policy to UID " + uid + "; ignoring");
1194 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001195 } else if (TAG_APP_POLICY.equals(tag) && version >= VERSION_SWITCH_APP_ID) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001196 final int appId = readIntAttribute(in, ATTR_APP_ID);
1197 final int policy = readIntAttribute(in, ATTR_POLICY);
1198
1199 if (UserId.isApp(appId)) {
1200 setAppPolicyUnchecked(appId, policy, false);
1201 } else {
1202 Slog.w(TAG, "unable to apply policy to appId " + appId + "; ignoring");
1203 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001204 }
1205 }
1206 }
1207
1208 } catch (FileNotFoundException e) {
1209 // missing policy is okay, probably first boot
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001210 upgradeLegacyBackgroundData();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001211 } catch (IOException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001212 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001213 } catch (XmlPullParserException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001214 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001215 } finally {
1216 IoUtils.closeQuietly(fis);
1217 }
1218 }
1219
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001220 /**
1221 * Upgrade legacy background data flags, notifying listeners of one last
1222 * change to always-true.
1223 */
1224 private void upgradeLegacyBackgroundData() {
1225 mRestrictBackground = Settings.Secure.getInt(
1226 mContext.getContentResolver(), Settings.Secure.BACKGROUND_DATA, 1) != 1;
1227
1228 // kick off one last broadcast if restricted
1229 if (mRestrictBackground) {
1230 final Intent broadcast = new Intent(
1231 ConnectivityManager.ACTION_BACKGROUND_DATA_SETTING_CHANGED);
1232 mContext.sendBroadcast(broadcast);
1233 }
1234 }
1235
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001236 private void writePolicyLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001237 if (LOGV) Slog.v(TAG, "writePolicyLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001238
1239 FileOutputStream fos = null;
1240 try {
1241 fos = mPolicyFile.startWrite();
1242
1243 XmlSerializer out = new FastXmlSerializer();
1244 out.setOutput(fos, "utf-8");
1245 out.startDocument(null, true);
1246
1247 out.startTag(null, TAG_POLICY_LIST);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001248 writeIntAttribute(out, ATTR_VERSION, VERSION_LATEST);
Jeff Sharkey46645002011-07-27 21:11:21 -07001249 writeBooleanAttribute(out, ATTR_RESTRICT_BACKGROUND, mRestrictBackground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001250
1251 // write all known network policies
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001252 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001253 final NetworkTemplate template = policy.template;
1254
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001255 out.startTag(null, TAG_NETWORK_POLICY);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001256 writeIntAttribute(out, ATTR_NETWORK_TEMPLATE, template.getMatchRule());
1257 final String subscriberId = template.getSubscriberId();
1258 if (subscriberId != null) {
1259 out.attribute(null, ATTR_SUBSCRIBER_ID, subscriberId);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001260 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001261 final String networkId = template.getNetworkId();
1262 if (networkId != null) {
1263 out.attribute(null, ATTR_NETWORK_ID, networkId);
1264 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001265 writeIntAttribute(out, ATTR_CYCLE_DAY, policy.cycleDay);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001266 out.attribute(null, ATTR_CYCLE_TIMEZONE, policy.cycleTimezone);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001267 writeLongAttribute(out, ATTR_WARNING_BYTES, policy.warningBytes);
1268 writeLongAttribute(out, ATTR_LIMIT_BYTES, policy.limitBytes);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001269 writeLongAttribute(out, ATTR_LAST_WARNING_SNOOZE, policy.lastWarningSnooze);
1270 writeLongAttribute(out, ATTR_LAST_LIMIT_SNOOZE, policy.lastLimitSnooze);
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001271 writeBooleanAttribute(out, ATTR_METERED, policy.metered);
Jeff Sharkey837f9242012-03-20 16:52:20 -07001272 writeBooleanAttribute(out, ATTR_INFERRED, policy.inferred);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001273 out.endTag(null, TAG_NETWORK_POLICY);
1274 }
1275
1276 // write all known uid policies
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001277 for (int i = 0; i < mAppPolicy.size(); i++) {
1278 final int appId = mAppPolicy.keyAt(i);
1279 final int policy = mAppPolicy.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001280
Jeff Sharkey497e4432011-06-14 17:27:29 -07001281 // skip writing empty policies
1282 if (policy == POLICY_NONE) continue;
1283
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001284 out.startTag(null, TAG_APP_POLICY);
1285 writeIntAttribute(out, ATTR_APP_ID, appId);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001286 writeIntAttribute(out, ATTR_POLICY, policy);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001287 out.endTag(null, TAG_APP_POLICY);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001288 }
1289
1290 out.endTag(null, TAG_POLICY_LIST);
1291 out.endDocument();
1292
1293 mPolicyFile.finishWrite(fos);
1294 } catch (IOException e) {
1295 if (fos != null) {
1296 mPolicyFile.failWrite(fos);
1297 }
1298 }
1299 }
1300
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001301 @Override
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001302 public void setAppPolicy(int appId, int policy) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001303 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001304
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001305 if (!UserId.isApp(appId)) {
1306 throw new IllegalArgumentException("cannot apply policy to appId " + appId);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001307 }
1308
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001309 setAppPolicyUnchecked(appId, policy, true);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001310 }
1311
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001312 private void setAppPolicyUnchecked(int appId, int policy, boolean persist) {
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001313 final int oldPolicy;
Jeff Sharkeya4620792011-05-20 15:29:23 -07001314 synchronized (mRulesLock) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001315 oldPolicy = getAppPolicy(appId);
1316 mAppPolicy.put(appId, policy);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001317
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001318 // uid policy changed, recompute rules and persist policy.
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001319 updateRulesForAppLocked(appId);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001320 if (persist) {
1321 writePolicyLocked();
1322 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001323 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001324 }
1325
1326 @Override
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001327 public int getAppPolicy(int appId) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001328 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1329
Jeff Sharkeya4620792011-05-20 15:29:23 -07001330 synchronized (mRulesLock) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001331 return mAppPolicy.get(appId, POLICY_NONE);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001332 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001333 }
1334
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001335 @Override
Jeff Sharkey854b2b12012-04-13 16:03:40 -07001336 public int[] getAppsWithPolicy(int policy) {
1337 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1338
1339 int[] appIds = new int[0];
1340 synchronized (mRulesLock) {
1341 for (int i = 0; i < mAppPolicy.size(); i++) {
1342 final int appId = mAppPolicy.keyAt(i);
1343 final int appPolicy = mAppPolicy.valueAt(i);
1344 if (appPolicy == policy) {
1345 appIds = appendInt(appIds, appId);
1346 }
1347 }
1348 }
1349 return appIds;
1350 }
1351
1352 @Override
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001353 public void registerListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07001354 // TODO: create permission for observing network policy
1355 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
1356
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001357 mListeners.register(listener);
1358
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001359 // TODO: consider dispatching existing rules to new listeners
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001360 }
1361
1362 @Override
1363 public void unregisterListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07001364 // TODO: create permission for observing network policy
1365 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
1366
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001367 mListeners.unregister(listener);
1368 }
1369
Jeff Sharkey1b861272011-05-22 00:34:52 -07001370 @Override
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001371 public void setNetworkPolicies(NetworkPolicy[] policies) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001372 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1373
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001374 maybeRefreshTrustedTime();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001375 synchronized (mRulesLock) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001376 mNetworkPolicy.clear();
1377 for (NetworkPolicy policy : policies) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001378 mNetworkPolicy.put(policy.template, policy);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001379 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001380
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001381 updateNetworkEnabledLocked();
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001382 updateNetworkRulesLocked();
Jeff Sharkey497e4432011-06-14 17:27:29 -07001383 updateNotificationsLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001384 writePolicyLocked();
1385 }
1386 }
1387
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001388 private void addNetworkPolicyLocked(NetworkPolicy policy) {
1389 mNetworkPolicy.put(policy.template, policy);
1390
1391 updateNetworkEnabledLocked();
1392 updateNetworkRulesLocked();
1393 updateNotificationsLocked();
1394 writePolicyLocked();
1395 }
1396
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001397 @Override
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001398 public NetworkPolicy[] getNetworkPolicies() {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001399 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001400 mContext.enforceCallingOrSelfPermission(READ_PHONE_STATE, TAG);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001401
1402 synchronized (mRulesLock) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001403 return mNetworkPolicy.values().toArray(new NetworkPolicy[mNetworkPolicy.size()]);
1404 }
1405 }
1406
1407 @Override
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001408 public void snoozeLimit(NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001409 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001410 performSnooze(template, TYPE_LIMIT);
1411 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001412
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001413 private void performSnooze(NetworkTemplate template, int type) {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001414 maybeRefreshTrustedTime();
1415 final long currentTime = currentTimeMillis();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001416 synchronized (mRulesLock) {
1417 // find and snooze local policy that matches
1418 final NetworkPolicy policy = mNetworkPolicy.get(template);
1419 if (policy == null) {
1420 throw new IllegalArgumentException("unable to find policy for " + template);
1421 }
1422
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001423 switch (type) {
1424 case TYPE_WARNING:
1425 policy.lastWarningSnooze = currentTime;
1426 break;
1427 case TYPE_LIMIT:
1428 policy.lastLimitSnooze = currentTime;
1429 break;
1430 default:
1431 throw new IllegalArgumentException("unexpected type");
1432 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001433
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001434 updateNetworkEnabledLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001435 updateNetworkRulesLocked();
1436 updateNotificationsLocked();
1437 writePolicyLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001438 }
1439 }
1440
1441 @Override
Jeff Sharkey46645002011-07-27 21:11:21 -07001442 public void setRestrictBackground(boolean restrictBackground) {
1443 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1444
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001445 maybeRefreshTrustedTime();
Jeff Sharkey46645002011-07-27 21:11:21 -07001446 synchronized (mRulesLock) {
1447 mRestrictBackground = restrictBackground;
1448 updateRulesForRestrictBackgroundLocked();
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001449 updateNotificationsLocked();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001450 writePolicyLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -07001451 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001452
1453 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED, restrictBackground ? 1 : 0, 0)
1454 .sendToTarget();
Jeff Sharkey46645002011-07-27 21:11:21 -07001455 }
1456
1457 @Override
1458 public boolean getRestrictBackground() {
1459 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1460
1461 synchronized (mRulesLock) {
1462 return mRestrictBackground;
1463 }
1464 }
1465
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001466 private NetworkPolicy findPolicyForNetworkLocked(NetworkIdentity ident) {
1467 for (NetworkPolicy policy : mNetworkPolicy.values()) {
1468 if (policy.template.matches(ident)) {
1469 return policy;
1470 }
1471 }
1472 return null;
1473 }
1474
1475 @Override
1476 public NetworkQuotaInfo getNetworkQuotaInfo(NetworkState state) {
1477 mContext.enforceCallingOrSelfPermission(ACCESS_NETWORK_STATE, TAG);
1478
1479 // only returns usage summary, so we don't require caller to have
1480 // READ_NETWORK_USAGE_HISTORY.
1481 final long token = Binder.clearCallingIdentity();
1482 try {
1483 return getNetworkQuotaInfoUnchecked(state);
1484 } finally {
1485 Binder.restoreCallingIdentity(token);
1486 }
1487 }
1488
1489 private NetworkQuotaInfo getNetworkQuotaInfoUnchecked(NetworkState state) {
1490 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1491
1492 final NetworkPolicy policy;
1493 synchronized (mRulesLock) {
1494 policy = findPolicyForNetworkLocked(ident);
1495 }
1496
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001497 if (policy == null || !policy.hasCycle()) {
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001498 // missing policy means we can't derive useful quota info
1499 return null;
1500 }
1501
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001502 final long currentTime = currentTimeMillis();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001503
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001504 // find total bytes used under policy
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001505 final long start = computeLastCycleBoundary(currentTime, policy);
1506 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001507 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001508
1509 // report soft and hard limits under policy
1510 final long softLimitBytes = policy.warningBytes != WARNING_DISABLED ? policy.warningBytes
1511 : NetworkQuotaInfo.NO_LIMIT;
1512 final long hardLimitBytes = policy.limitBytes != LIMIT_DISABLED ? policy.limitBytes
1513 : NetworkQuotaInfo.NO_LIMIT;
1514
1515 return new NetworkQuotaInfo(totalBytes, softLimitBytes, hardLimitBytes);
1516 }
1517
Jeff Sharkey46645002011-07-27 21:11:21 -07001518 @Override
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001519 public boolean isNetworkMetered(NetworkState state) {
1520 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1521
Jeff Sharkeyf166f482012-04-30 15:59:21 -07001522 // roaming networks are always considered metered
1523 if (ident.getRoaming()) {
1524 return true;
1525 }
1526
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001527 final NetworkPolicy policy;
1528 synchronized (mRulesLock) {
1529 policy = findPolicyForNetworkLocked(ident);
1530 }
1531
1532 if (policy != null) {
1533 return policy.metered;
1534 } else {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001535 final int type = state.networkInfo.getType();
1536 if (isNetworkTypeMobile(type) || type == TYPE_WIMAX) {
1537 return true;
1538 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001539 return false;
1540 }
1541 }
1542
1543 @Override
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001544 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
Jeff Sharkey75279902011-05-24 18:39:45 -07001545 mContext.enforceCallingOrSelfPermission(DUMP, TAG);
Jeff Sharkey1b861272011-05-22 00:34:52 -07001546
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001547 final IndentingPrintWriter fout = new IndentingPrintWriter(writer, " ");
1548
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001549 final HashSet<String> argSet = new HashSet<String>();
1550 for (String arg : args) {
1551 argSet.add(arg);
1552 }
1553
Jeff Sharkey1b861272011-05-22 00:34:52 -07001554 synchronized (mRulesLock) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001555 if (argSet.contains("--unsnooze")) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001556 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001557 policy.clearSnooze();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001558 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001559
1560 updateNetworkEnabledLocked();
1561 updateNetworkRulesLocked();
1562 updateNotificationsLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001563 writePolicyLocked();
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001564
1565 fout.println("Cleared snooze timestamps");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001566 return;
1567 }
1568
Jeff Sharkey46645002011-07-27 21:11:21 -07001569 fout.print("Restrict background: "); fout.println(mRestrictBackground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001570 fout.println("Network policies:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001571 fout.increaseIndent();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001572 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001573 fout.println(policy.toString());
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001574 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001575 fout.decreaseIndent();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001576
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001577 fout.println("Policy for apps:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001578 fout.increaseIndent();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001579 int size = mAppPolicy.size();
1580 for (int i = 0; i < size; i++) {
1581 final int appId = mAppPolicy.keyAt(i);
1582 final int policy = mAppPolicy.valueAt(i);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001583 fout.print("appId=");
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001584 fout.print(appId);
1585 fout.print(" policy=");
1586 dumpPolicy(fout, policy);
1587 fout.println();
1588 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001589 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001590
1591 final SparseBooleanArray knownUids = new SparseBooleanArray();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001592 collectKeys(mUidForeground, knownUids);
1593 collectKeys(mUidRules, knownUids);
1594
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001595 fout.println("Status for known UIDs:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001596 fout.increaseIndent();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001597 size = knownUids.size();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001598 for (int i = 0; i < size; i++) {
1599 final int uid = knownUids.keyAt(i);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001600 fout.print("UID=");
Jeff Sharkey1b861272011-05-22 00:34:52 -07001601 fout.print(uid);
1602
Jeff Sharkey1b861272011-05-22 00:34:52 -07001603 fout.print(" foreground=");
1604 final int foregroundIndex = mUidPidForeground.indexOfKey(uid);
1605 if (foregroundIndex < 0) {
1606 fout.print("UNKNOWN");
1607 } else {
1608 dumpSparseBooleanArray(fout, mUidPidForeground.valueAt(foregroundIndex));
1609 }
1610
1611 fout.print(" rules=");
1612 final int rulesIndex = mUidRules.indexOfKey(uid);
1613 if (rulesIndex < 0) {
1614 fout.print("UNKNOWN");
1615 } else {
1616 dumpRules(fout, mUidRules.valueAt(rulesIndex));
1617 }
1618
1619 fout.println();
1620 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001621 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001622 }
1623 }
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001624
1625 @Override
1626 public boolean isUidForeground(int uid) {
Jeff Sharkey497e4432011-06-14 17:27:29 -07001627 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1628
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001629 synchronized (mRulesLock) {
1630 // only really in foreground when screen is also on
1631 return mUidForeground.get(uid, false) && mScreenOn;
1632 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001633 }
1634
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001635 /**
1636 * Foreground for PID changed; recompute foreground at UID level. If
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001637 * changed, will trigger {@link #updateRulesForUidLocked(int)}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001638 */
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001639 private void computeUidForegroundLocked(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001640 final SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1641
1642 // current pid is dropping foreground; examine other pids
1643 boolean uidForeground = false;
1644 final int size = pidForeground.size();
1645 for (int i = 0; i < size; i++) {
1646 if (pidForeground.valueAt(i)) {
1647 uidForeground = true;
1648 break;
1649 }
1650 }
1651
1652 final boolean oldUidForeground = mUidForeground.get(uid, false);
1653 if (oldUidForeground != uidForeground) {
1654 // foreground changed, push updated rules
1655 mUidForeground.put(uid, uidForeground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001656 updateRulesForUidLocked(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001657 }
1658 }
1659
Jeff Sharkeya4620792011-05-20 15:29:23 -07001660 private void updateScreenOn() {
1661 synchronized (mRulesLock) {
1662 try {
1663 mScreenOn = mPowerManager.isScreenOn();
1664 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001665 // ignored; service lives in system_server
Jeff Sharkeya4620792011-05-20 15:29:23 -07001666 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001667 updateRulesForScreenLocked();
Jeff Sharkeya4620792011-05-20 15:29:23 -07001668 }
1669 }
1670
1671 /**
1672 * Update rules that might be changed by {@link #mScreenOn} value.
1673 */
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001674 private void updateRulesForScreenLocked() {
Jeff Sharkeya4620792011-05-20 15:29:23 -07001675 // only update rules for anyone with foreground activities
1676 final int size = mUidForeground.size();
1677 for (int i = 0; i < size; i++) {
1678 if (mUidForeground.valueAt(i)) {
1679 final int uid = mUidForeground.keyAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001680 updateRulesForUidLocked(uid);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001681 }
1682 }
1683 }
1684
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001685 /**
Jeff Sharkey46645002011-07-27 21:11:21 -07001686 * Update rules that might be changed by {@link #mRestrictBackground} value.
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001687 */
Jeff Sharkey46645002011-07-27 21:11:21 -07001688 private void updateRulesForRestrictBackgroundLocked() {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001689 // update rules for all installed applications
1690 final PackageManager pm = mContext.getPackageManager();
1691 final List<ApplicationInfo> apps = pm.getInstalledApplications(0);
1692 for (ApplicationInfo app : apps) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001693 final int appId = UserId.getAppId(app.uid);
1694 updateRulesForAppLocked(appId);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001695 }
1696
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001697 // limit data usage for some internal system services
1698 updateRulesForUidLocked(android.os.Process.MEDIA_UID);
1699 updateRulesForUidLocked(android.os.Process.DRM_UID);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001700 }
1701
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001702 private void updateRulesForAppLocked(int appId) {
1703 for (UserInfo user : mContext.getPackageManager().getUsers()) {
1704 final int uid = UserId.getUid(user.id, appId);
1705 updateRulesForUidLocked(uid);
1706 }
1707 }
1708
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001709 private static boolean isUidValidForRules(int uid) {
1710 // allow rules on specific system services, and any apps
1711 if (uid == android.os.Process.MEDIA_UID || uid == android.os.Process.DRM_UID
1712 || UserId.isApp(uid)) {
1713 return true;
1714 }
1715
1716 return false;
1717 }
1718
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001719 private void updateRulesForUidLocked(int uid) {
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001720 if (!isUidValidForRules(uid)) return;
1721
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001722 final int appId = UserId.getAppId(uid);
1723 final int appPolicy = getAppPolicy(appId);
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001724 final boolean uidForeground = isUidForeground(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001725
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001726 // derive active rules based on policy and active state
1727 int uidRules = RULE_ALLOW_ALL;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001728 if (!uidForeground && (appPolicy & POLICY_REJECT_METERED_BACKGROUND) != 0) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001729 // uid in background, and policy says to block metered data
1730 uidRules = RULE_REJECT_METERED;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001731 }
Jeff Sharkey46645002011-07-27 21:11:21 -07001732 if (!uidForeground && mRestrictBackground) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001733 // uid in background, and global background disabled
1734 uidRules = RULE_REJECT_METERED;
1735 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001736
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001737 // TODO: only dispatch when rules actually change
1738
Jeff Sharkey350083e2011-06-29 10:45:16 -07001739 if (uidRules == RULE_ALLOW_ALL) {
1740 mUidRules.delete(uid);
1741 } else {
1742 mUidRules.put(uid, uidRules);
1743 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001744
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001745 final boolean rejectMetered = (uidRules & RULE_REJECT_METERED) != 0;
Ashish Sharma50fd36d2011-06-15 19:34:53 -07001746 setUidNetworkRules(uid, rejectMetered);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001747
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001748 // dispatch changed rule to existing listeners
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001749 mHandler.obtainMessage(MSG_RULES_CHANGED, uid, uidRules).sendToTarget();
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07001750
1751 try {
1752 // adjust stats accounting based on foreground status
1753 mNetworkStats.setUidForeground(uid, uidForeground);
1754 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001755 // ignored; service lives in system_server
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07001756 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001757 }
1758
1759 private Handler.Callback mHandlerCallback = new Handler.Callback() {
Jeff Sharkeybfdd6802012-04-09 10:49:19 -07001760 @Override
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001761 public boolean handleMessage(Message msg) {
1762 switch (msg.what) {
1763 case MSG_RULES_CHANGED: {
1764 final int uid = msg.arg1;
1765 final int uidRules = msg.arg2;
1766 final int length = mListeners.beginBroadcast();
1767 for (int i = 0; i < length; i++) {
1768 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1769 if (listener != null) {
1770 try {
1771 listener.onUidRulesChanged(uid, uidRules);
1772 } catch (RemoteException e) {
1773 }
1774 }
1775 }
1776 mListeners.finishBroadcast();
1777 return true;
1778 }
1779 case MSG_METERED_IFACES_CHANGED: {
1780 final String[] meteredIfaces = (String[]) msg.obj;
1781 final int length = mListeners.beginBroadcast();
1782 for (int i = 0; i < length; i++) {
1783 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1784 if (listener != null) {
1785 try {
1786 listener.onMeteredIfacesChanged(meteredIfaces);
1787 } catch (RemoteException e) {
1788 }
1789 }
1790 }
1791 mListeners.finishBroadcast();
1792 return true;
1793 }
Jeff Sharkey6f7af032011-11-01 18:25:15 -07001794 case MSG_FOREGROUND_ACTIVITIES_CHANGED: {
1795 final int pid = msg.arg1;
1796 final int uid = msg.arg2;
1797 final boolean foregroundActivities = (Boolean) msg.obj;
1798
1799 synchronized (mRulesLock) {
1800 // because a uid can have multiple pids running inside, we need to
1801 // remember all pid states and summarize foreground at uid level.
1802
1803 // record foreground for this specific pid
1804 SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1805 if (pidForeground == null) {
1806 pidForeground = new SparseBooleanArray(2);
1807 mUidPidForeground.put(uid, pidForeground);
1808 }
1809 pidForeground.put(pid, foregroundActivities);
1810 computeUidForegroundLocked(uid);
1811 }
1812 return true;
1813 }
1814 case MSG_PROCESS_DIED: {
1815 final int pid = msg.arg1;
1816 final int uid = msg.arg2;
1817
1818 synchronized (mRulesLock) {
1819 // clear records and recompute, when they exist
1820 final SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1821 if (pidForeground != null) {
1822 pidForeground.delete(pid);
1823 computeUidForegroundLocked(uid);
1824 }
1825 }
1826 return true;
1827 }
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08001828 case MSG_LIMIT_REACHED: {
1829 final String iface = (String) msg.obj;
1830
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001831 maybeRefreshTrustedTime();
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08001832 synchronized (mRulesLock) {
1833 if (mMeteredIfaces.contains(iface)) {
1834 try {
1835 // force stats update to make sure we have
1836 // numbers that caused alert to trigger.
1837 mNetworkStats.forceUpdate();
1838 } catch (RemoteException e) {
1839 // ignored; service lives in system_server
1840 }
1841
1842 updateNetworkEnabledLocked();
1843 updateNotificationsLocked();
1844 }
1845 }
1846 return true;
1847 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001848 case MSG_RESTRICT_BACKGROUND_CHANGED: {
1849 final boolean restrictBackground = msg.arg1 != 0;
1850 final int length = mListeners.beginBroadcast();
1851 for (int i = 0; i < length; i++) {
1852 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1853 if (listener != null) {
1854 try {
1855 listener.onRestrictBackgroundChanged(restrictBackground);
1856 } catch (RemoteException e) {
1857 }
1858 }
1859 }
1860 mListeners.finishBroadcast();
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07001861 return true;
1862 }
1863 case MSG_ADVISE_PERSIST_THRESHOLD: {
1864 final long lowestRule = (Long) msg.obj;
1865 try {
1866 // make sure stats are recorded frequently enough; we aim
1867 // for 2MB threshold for 2GB/month rules.
1868 final long persistThreshold = lowestRule / 1000;
1869 mNetworkStats.advisePersistThreshold(persistThreshold);
1870 } catch (RemoteException e) {
1871 // ignored; service lives in system_server
1872 }
1873 return true;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001874 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001875 default: {
1876 return false;
Jeff Sharkeyaf11d482011-06-13 00:14:31 -07001877 }
1878 }
1879 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001880 };
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001881
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001882 private void setInterfaceQuota(String iface, long quotaBytes) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001883 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001884 mNetworkManager.setInterfaceQuota(iface, quotaBytes);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001885 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001886 Log.wtf(TAG, "problem setting interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001887 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001888 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001889 }
1890 }
1891
1892 private void removeInterfaceQuota(String iface) {
1893 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001894 mNetworkManager.removeInterfaceQuota(iface);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001895 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001896 Log.wtf(TAG, "problem removing interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001897 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001898 // ignored; service lives in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001899 }
1900 }
1901
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001902 private void setUidNetworkRules(int uid, boolean rejectOnQuotaInterfaces) {
1903 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001904 mNetworkManager.setUidNetworkRules(uid, rejectOnQuotaInterfaces);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001905 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001906 Log.wtf(TAG, "problem setting uid rules", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001907 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001908 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001909 }
1910 }
1911
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001912 /**
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08001913 * Control {@link IConnectivityManager#setPolicyDataEnable(int, boolean)}.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001914 */
1915 private void setPolicyDataEnable(int networkType, boolean enabled) {
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08001916 try {
1917 mConnManager.setPolicyDataEnable(networkType, enabled);
1918 } catch (RemoteException e) {
1919 // ignored; service lives in system_server
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001920 }
1921 }
1922
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001923 private long getTotalBytes(NetworkTemplate template, long start, long end) {
1924 try {
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -07001925 return mNetworkStats.getNetworkTotalBytes(template, start, end);
Jeff Sharkey63abc372012-01-11 18:38:16 -08001926 } catch (RuntimeException e) {
1927 Slog.w(TAG, "problem reading network stats: " + e);
1928 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001929 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001930 // ignored; service lives in system_server
1931 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001932 }
1933 }
1934
Jeff Sharkey8c1dc722012-05-04 14:49:37 -07001935 private boolean isBandwidthControlEnabled() {
1936 final long token = Binder.clearCallingIdentity();
1937 try {
1938 return mNetworkManager.isBandwidthControlEnabled();
1939 } catch (RemoteException e) {
1940 // ignored; service lives in system_server
1941 return false;
1942 } finally {
1943 Binder.restoreCallingIdentity(token);
1944 }
1945 }
1946
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001947 /**
1948 * Try refreshing {@link #mTime} when stale.
1949 */
1950 private void maybeRefreshTrustedTime() {
1951 if (mTime.getCacheAge() > TIME_CACHE_MAX_AGE) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001952 mTime.forceRefresh();
1953 }
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001954 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001955
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001956 private long currentTimeMillis() {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001957 return mTime.hasCache() ? mTime.currentTimeMillis() : System.currentTimeMillis();
1958 }
1959
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001960 private static Intent buildAllowBackgroundDataIntent() {
1961 return new Intent(ACTION_ALLOW_BACKGROUND);
1962 }
1963
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001964 private static Intent buildSnoozeWarningIntent(NetworkTemplate template) {
1965 final Intent intent = new Intent(ACTION_SNOOZE_WARNING);
1966 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1967 return intent;
1968 }
1969
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001970 private static Intent buildNetworkOverLimitIntent(NetworkTemplate template) {
1971 final Intent intent = new Intent();
1972 intent.setComponent(new ComponentName(
1973 "com.android.systemui", "com.android.systemui.net.NetworkOverLimitActivity"));
1974 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1975 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1976 return intent;
1977 }
1978
1979 private static Intent buildViewDataUsageIntent(NetworkTemplate template) {
1980 final Intent intent = new Intent();
1981 intent.setComponent(new ComponentName(
1982 "com.android.settings", "com.android.settings.Settings$DataUsageSummaryActivity"));
1983 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1984 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1985 return intent;
1986 }
1987
Jeff Sharkey163e6442011-10-31 16:37:52 -07001988 // @VisibleForTesting
1989 public void addIdleHandler(IdleHandler handler) {
1990 mHandler.getLooper().getQueue().addIdleHandler(handler);
1991 }
1992
Jeff Sharkey1b861272011-05-22 00:34:52 -07001993 private static void collectKeys(SparseIntArray source, SparseBooleanArray target) {
1994 final int size = source.size();
1995 for (int i = 0; i < size; i++) {
1996 target.put(source.keyAt(i), true);
1997 }
1998 }
1999
2000 private static void collectKeys(SparseBooleanArray source, SparseBooleanArray target) {
2001 final int size = source.size();
2002 for (int i = 0; i < size; i++) {
2003 target.put(source.keyAt(i), true);
2004 }
2005 }
2006
2007 private static void dumpSparseBooleanArray(PrintWriter fout, SparseBooleanArray value) {
2008 fout.print("[");
2009 final int size = value.size();
2010 for (int i = 0; i < size; i++) {
2011 fout.print(value.keyAt(i) + "=" + value.valueAt(i));
2012 if (i < size - 1) fout.print(",");
2013 }
2014 fout.print("]");
2015 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002016
Jeff Sharkey46645002011-07-27 21:11:21 -07002017 public static class XmlUtils {
2018 public static int readIntAttribute(XmlPullParser in, String name) throws IOException {
2019 final String value = in.getAttributeValue(null, name);
2020 try {
2021 return Integer.parseInt(value);
2022 } catch (NumberFormatException e) {
2023 throw new ProtocolException("problem parsing " + name + "=" + value + " as int");
2024 }
2025 }
2026
2027 public static void writeIntAttribute(XmlSerializer out, String name, int value)
2028 throws IOException {
2029 out.attribute(null, name, Integer.toString(value));
2030 }
2031
2032 public static long readLongAttribute(XmlPullParser in, String name) throws IOException {
2033 final String value = in.getAttributeValue(null, name);
2034 try {
2035 return Long.parseLong(value);
2036 } catch (NumberFormatException e) {
2037 throw new ProtocolException("problem parsing " + name + "=" + value + " as long");
2038 }
2039 }
2040
2041 public static void writeLongAttribute(XmlSerializer out, String name, long value)
2042 throws IOException {
2043 out.attribute(null, name, Long.toString(value));
2044 }
2045
2046 public static boolean readBooleanAttribute(XmlPullParser in, String name) {
2047 final String value = in.getAttributeValue(null, name);
2048 return Boolean.parseBoolean(value);
2049 }
2050
2051 public static void writeBooleanAttribute(XmlSerializer out, String name, boolean value)
2052 throws IOException {
2053 out.attribute(null, name, Boolean.toString(value));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002054 }
2055 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002056}