blob: d4e9cbcd74a0cba242234f9c75ab1d5df686ad5a [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 Sharkey6c0b4f32012-06-12 21:06:30 -07001410
1411 final long token = Binder.clearCallingIdentity();
1412 try {
1413 performSnooze(template, TYPE_LIMIT);
1414 } finally {
1415 Binder.restoreCallingIdentity(token);
1416 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001417 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001418
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001419 private void performSnooze(NetworkTemplate template, int type) {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001420 maybeRefreshTrustedTime();
1421 final long currentTime = currentTimeMillis();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001422 synchronized (mRulesLock) {
1423 // find and snooze local policy that matches
1424 final NetworkPolicy policy = mNetworkPolicy.get(template);
1425 if (policy == null) {
1426 throw new IllegalArgumentException("unable to find policy for " + template);
1427 }
1428
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001429 switch (type) {
1430 case TYPE_WARNING:
1431 policy.lastWarningSnooze = currentTime;
1432 break;
1433 case TYPE_LIMIT:
1434 policy.lastLimitSnooze = currentTime;
1435 break;
1436 default:
1437 throw new IllegalArgumentException("unexpected type");
1438 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001439
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001440 updateNetworkEnabledLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001441 updateNetworkRulesLocked();
1442 updateNotificationsLocked();
1443 writePolicyLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001444 }
1445 }
1446
1447 @Override
Jeff Sharkey46645002011-07-27 21:11:21 -07001448 public void setRestrictBackground(boolean restrictBackground) {
1449 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1450
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001451 maybeRefreshTrustedTime();
Jeff Sharkey46645002011-07-27 21:11:21 -07001452 synchronized (mRulesLock) {
1453 mRestrictBackground = restrictBackground;
1454 updateRulesForRestrictBackgroundLocked();
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001455 updateNotificationsLocked();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001456 writePolicyLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -07001457 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001458
1459 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED, restrictBackground ? 1 : 0, 0)
1460 .sendToTarget();
Jeff Sharkey46645002011-07-27 21:11:21 -07001461 }
1462
1463 @Override
1464 public boolean getRestrictBackground() {
1465 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1466
1467 synchronized (mRulesLock) {
1468 return mRestrictBackground;
1469 }
1470 }
1471
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001472 private NetworkPolicy findPolicyForNetworkLocked(NetworkIdentity ident) {
1473 for (NetworkPolicy policy : mNetworkPolicy.values()) {
1474 if (policy.template.matches(ident)) {
1475 return policy;
1476 }
1477 }
1478 return null;
1479 }
1480
1481 @Override
1482 public NetworkQuotaInfo getNetworkQuotaInfo(NetworkState state) {
1483 mContext.enforceCallingOrSelfPermission(ACCESS_NETWORK_STATE, TAG);
1484
1485 // only returns usage summary, so we don't require caller to have
1486 // READ_NETWORK_USAGE_HISTORY.
1487 final long token = Binder.clearCallingIdentity();
1488 try {
1489 return getNetworkQuotaInfoUnchecked(state);
1490 } finally {
1491 Binder.restoreCallingIdentity(token);
1492 }
1493 }
1494
1495 private NetworkQuotaInfo getNetworkQuotaInfoUnchecked(NetworkState state) {
1496 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1497
1498 final NetworkPolicy policy;
1499 synchronized (mRulesLock) {
1500 policy = findPolicyForNetworkLocked(ident);
1501 }
1502
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001503 if (policy == null || !policy.hasCycle()) {
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001504 // missing policy means we can't derive useful quota info
1505 return null;
1506 }
1507
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001508 final long currentTime = currentTimeMillis();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001509
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001510 // find total bytes used under policy
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001511 final long start = computeLastCycleBoundary(currentTime, policy);
1512 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001513 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001514
1515 // report soft and hard limits under policy
1516 final long softLimitBytes = policy.warningBytes != WARNING_DISABLED ? policy.warningBytes
1517 : NetworkQuotaInfo.NO_LIMIT;
1518 final long hardLimitBytes = policy.limitBytes != LIMIT_DISABLED ? policy.limitBytes
1519 : NetworkQuotaInfo.NO_LIMIT;
1520
1521 return new NetworkQuotaInfo(totalBytes, softLimitBytes, hardLimitBytes);
1522 }
1523
Jeff Sharkey46645002011-07-27 21:11:21 -07001524 @Override
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001525 public boolean isNetworkMetered(NetworkState state) {
1526 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1527
Jeff Sharkeyf166f482012-04-30 15:59:21 -07001528 // roaming networks are always considered metered
1529 if (ident.getRoaming()) {
1530 return true;
1531 }
1532
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001533 final NetworkPolicy policy;
1534 synchronized (mRulesLock) {
1535 policy = findPolicyForNetworkLocked(ident);
1536 }
1537
1538 if (policy != null) {
1539 return policy.metered;
1540 } else {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001541 final int type = state.networkInfo.getType();
1542 if (isNetworkTypeMobile(type) || type == TYPE_WIMAX) {
1543 return true;
1544 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001545 return false;
1546 }
1547 }
1548
1549 @Override
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001550 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
Jeff Sharkey75279902011-05-24 18:39:45 -07001551 mContext.enforceCallingOrSelfPermission(DUMP, TAG);
Jeff Sharkey1b861272011-05-22 00:34:52 -07001552
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001553 final IndentingPrintWriter fout = new IndentingPrintWriter(writer, " ");
1554
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001555 final HashSet<String> argSet = new HashSet<String>();
1556 for (String arg : args) {
1557 argSet.add(arg);
1558 }
1559
Jeff Sharkey1b861272011-05-22 00:34:52 -07001560 synchronized (mRulesLock) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001561 if (argSet.contains("--unsnooze")) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001562 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001563 policy.clearSnooze();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001564 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001565
1566 updateNetworkEnabledLocked();
1567 updateNetworkRulesLocked();
1568 updateNotificationsLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001569 writePolicyLocked();
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001570
1571 fout.println("Cleared snooze timestamps");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001572 return;
1573 }
1574
Jeff Sharkey46645002011-07-27 21:11:21 -07001575 fout.print("Restrict background: "); fout.println(mRestrictBackground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001576 fout.println("Network policies:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001577 fout.increaseIndent();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001578 for (NetworkPolicy policy : mNetworkPolicy.values()) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001579 fout.println(policy.toString());
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001580 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001581 fout.decreaseIndent();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001582
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001583 fout.println("Policy for apps:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001584 fout.increaseIndent();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001585 int size = mAppPolicy.size();
1586 for (int i = 0; i < size; i++) {
1587 final int appId = mAppPolicy.keyAt(i);
1588 final int policy = mAppPolicy.valueAt(i);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001589 fout.print("appId=");
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001590 fout.print(appId);
1591 fout.print(" policy=");
1592 dumpPolicy(fout, policy);
1593 fout.println();
1594 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001595 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001596
1597 final SparseBooleanArray knownUids = new SparseBooleanArray();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001598 collectKeys(mUidForeground, knownUids);
1599 collectKeys(mUidRules, knownUids);
1600
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001601 fout.println("Status for known UIDs:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001602 fout.increaseIndent();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001603 size = knownUids.size();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001604 for (int i = 0; i < size; i++) {
1605 final int uid = knownUids.keyAt(i);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001606 fout.print("UID=");
Jeff Sharkey1b861272011-05-22 00:34:52 -07001607 fout.print(uid);
1608
Jeff Sharkey1b861272011-05-22 00:34:52 -07001609 fout.print(" foreground=");
1610 final int foregroundIndex = mUidPidForeground.indexOfKey(uid);
1611 if (foregroundIndex < 0) {
1612 fout.print("UNKNOWN");
1613 } else {
1614 dumpSparseBooleanArray(fout, mUidPidForeground.valueAt(foregroundIndex));
1615 }
1616
1617 fout.print(" rules=");
1618 final int rulesIndex = mUidRules.indexOfKey(uid);
1619 if (rulesIndex < 0) {
1620 fout.print("UNKNOWN");
1621 } else {
1622 dumpRules(fout, mUidRules.valueAt(rulesIndex));
1623 }
1624
1625 fout.println();
1626 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001627 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001628 }
1629 }
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001630
1631 @Override
1632 public boolean isUidForeground(int uid) {
Jeff Sharkey497e4432011-06-14 17:27:29 -07001633 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1634
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001635 synchronized (mRulesLock) {
1636 // only really in foreground when screen is also on
1637 return mUidForeground.get(uid, false) && mScreenOn;
1638 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001639 }
1640
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001641 /**
1642 * Foreground for PID changed; recompute foreground at UID level. If
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001643 * changed, will trigger {@link #updateRulesForUidLocked(int)}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001644 */
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001645 private void computeUidForegroundLocked(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001646 final SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1647
1648 // current pid is dropping foreground; examine other pids
1649 boolean uidForeground = false;
1650 final int size = pidForeground.size();
1651 for (int i = 0; i < size; i++) {
1652 if (pidForeground.valueAt(i)) {
1653 uidForeground = true;
1654 break;
1655 }
1656 }
1657
1658 final boolean oldUidForeground = mUidForeground.get(uid, false);
1659 if (oldUidForeground != uidForeground) {
1660 // foreground changed, push updated rules
1661 mUidForeground.put(uid, uidForeground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001662 updateRulesForUidLocked(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001663 }
1664 }
1665
Jeff Sharkeya4620792011-05-20 15:29:23 -07001666 private void updateScreenOn() {
1667 synchronized (mRulesLock) {
1668 try {
1669 mScreenOn = mPowerManager.isScreenOn();
1670 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001671 // ignored; service lives in system_server
Jeff Sharkeya4620792011-05-20 15:29:23 -07001672 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001673 updateRulesForScreenLocked();
Jeff Sharkeya4620792011-05-20 15:29:23 -07001674 }
1675 }
1676
1677 /**
1678 * Update rules that might be changed by {@link #mScreenOn} value.
1679 */
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001680 private void updateRulesForScreenLocked() {
Jeff Sharkeya4620792011-05-20 15:29:23 -07001681 // only update rules for anyone with foreground activities
1682 final int size = mUidForeground.size();
1683 for (int i = 0; i < size; i++) {
1684 if (mUidForeground.valueAt(i)) {
1685 final int uid = mUidForeground.keyAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001686 updateRulesForUidLocked(uid);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001687 }
1688 }
1689 }
1690
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001691 /**
Jeff Sharkey46645002011-07-27 21:11:21 -07001692 * Update rules that might be changed by {@link #mRestrictBackground} value.
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001693 */
Jeff Sharkey46645002011-07-27 21:11:21 -07001694 private void updateRulesForRestrictBackgroundLocked() {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001695 // update rules for all installed applications
1696 final PackageManager pm = mContext.getPackageManager();
1697 final List<ApplicationInfo> apps = pm.getInstalledApplications(0);
1698 for (ApplicationInfo app : apps) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001699 final int appId = UserId.getAppId(app.uid);
1700 updateRulesForAppLocked(appId);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001701 }
1702
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001703 // limit data usage for some internal system services
1704 updateRulesForUidLocked(android.os.Process.MEDIA_UID);
1705 updateRulesForUidLocked(android.os.Process.DRM_UID);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001706 }
1707
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001708 private void updateRulesForAppLocked(int appId) {
1709 for (UserInfo user : mContext.getPackageManager().getUsers()) {
1710 final int uid = UserId.getUid(user.id, appId);
1711 updateRulesForUidLocked(uid);
1712 }
1713 }
1714
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001715 private static boolean isUidValidForRules(int uid) {
1716 // allow rules on specific system services, and any apps
1717 if (uid == android.os.Process.MEDIA_UID || uid == android.os.Process.DRM_UID
1718 || UserId.isApp(uid)) {
1719 return true;
1720 }
1721
1722 return false;
1723 }
1724
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001725 private void updateRulesForUidLocked(int uid) {
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001726 if (!isUidValidForRules(uid)) return;
1727
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001728 final int appId = UserId.getAppId(uid);
1729 final int appPolicy = getAppPolicy(appId);
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001730 final boolean uidForeground = isUidForeground(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001731
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001732 // derive active rules based on policy and active state
1733 int uidRules = RULE_ALLOW_ALL;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001734 if (!uidForeground && (appPolicy & POLICY_REJECT_METERED_BACKGROUND) != 0) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001735 // uid in background, and policy says to block metered data
1736 uidRules = RULE_REJECT_METERED;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001737 }
Jeff Sharkey46645002011-07-27 21:11:21 -07001738 if (!uidForeground && mRestrictBackground) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001739 // uid in background, and global background disabled
1740 uidRules = RULE_REJECT_METERED;
1741 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001742
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001743 // TODO: only dispatch when rules actually change
1744
Jeff Sharkey350083e2011-06-29 10:45:16 -07001745 if (uidRules == RULE_ALLOW_ALL) {
1746 mUidRules.delete(uid);
1747 } else {
1748 mUidRules.put(uid, uidRules);
1749 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001750
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001751 final boolean rejectMetered = (uidRules & RULE_REJECT_METERED) != 0;
Ashish Sharma50fd36d2011-06-15 19:34:53 -07001752 setUidNetworkRules(uid, rejectMetered);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001753
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001754 // dispatch changed rule to existing listeners
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001755 mHandler.obtainMessage(MSG_RULES_CHANGED, uid, uidRules).sendToTarget();
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07001756
1757 try {
1758 // adjust stats accounting based on foreground status
1759 mNetworkStats.setUidForeground(uid, uidForeground);
1760 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001761 // ignored; service lives in system_server
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07001762 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001763 }
1764
1765 private Handler.Callback mHandlerCallback = new Handler.Callback() {
Jeff Sharkeybfdd6802012-04-09 10:49:19 -07001766 @Override
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001767 public boolean handleMessage(Message msg) {
1768 switch (msg.what) {
1769 case MSG_RULES_CHANGED: {
1770 final int uid = msg.arg1;
1771 final int uidRules = msg.arg2;
1772 final int length = mListeners.beginBroadcast();
1773 for (int i = 0; i < length; i++) {
1774 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1775 if (listener != null) {
1776 try {
1777 listener.onUidRulesChanged(uid, uidRules);
1778 } catch (RemoteException e) {
1779 }
1780 }
1781 }
1782 mListeners.finishBroadcast();
1783 return true;
1784 }
1785 case MSG_METERED_IFACES_CHANGED: {
1786 final String[] meteredIfaces = (String[]) msg.obj;
1787 final int length = mListeners.beginBroadcast();
1788 for (int i = 0; i < length; i++) {
1789 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1790 if (listener != null) {
1791 try {
1792 listener.onMeteredIfacesChanged(meteredIfaces);
1793 } catch (RemoteException e) {
1794 }
1795 }
1796 }
1797 mListeners.finishBroadcast();
1798 return true;
1799 }
Jeff Sharkey6f7af032011-11-01 18:25:15 -07001800 case MSG_FOREGROUND_ACTIVITIES_CHANGED: {
1801 final int pid = msg.arg1;
1802 final int uid = msg.arg2;
1803 final boolean foregroundActivities = (Boolean) msg.obj;
1804
1805 synchronized (mRulesLock) {
1806 // because a uid can have multiple pids running inside, we need to
1807 // remember all pid states and summarize foreground at uid level.
1808
1809 // record foreground for this specific pid
1810 SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1811 if (pidForeground == null) {
1812 pidForeground = new SparseBooleanArray(2);
1813 mUidPidForeground.put(uid, pidForeground);
1814 }
1815 pidForeground.put(pid, foregroundActivities);
1816 computeUidForegroundLocked(uid);
1817 }
1818 return true;
1819 }
1820 case MSG_PROCESS_DIED: {
1821 final int pid = msg.arg1;
1822 final int uid = msg.arg2;
1823
1824 synchronized (mRulesLock) {
1825 // clear records and recompute, when they exist
1826 final SparseBooleanArray pidForeground = mUidPidForeground.get(uid);
1827 if (pidForeground != null) {
1828 pidForeground.delete(pid);
1829 computeUidForegroundLocked(uid);
1830 }
1831 }
1832 return true;
1833 }
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08001834 case MSG_LIMIT_REACHED: {
1835 final String iface = (String) msg.obj;
1836
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001837 maybeRefreshTrustedTime();
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08001838 synchronized (mRulesLock) {
1839 if (mMeteredIfaces.contains(iface)) {
1840 try {
1841 // force stats update to make sure we have
1842 // numbers that caused alert to trigger.
1843 mNetworkStats.forceUpdate();
1844 } catch (RemoteException e) {
1845 // ignored; service lives in system_server
1846 }
1847
1848 updateNetworkEnabledLocked();
1849 updateNotificationsLocked();
1850 }
1851 }
1852 return true;
1853 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001854 case MSG_RESTRICT_BACKGROUND_CHANGED: {
1855 final boolean restrictBackground = msg.arg1 != 0;
1856 final int length = mListeners.beginBroadcast();
1857 for (int i = 0; i < length; i++) {
1858 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
1859 if (listener != null) {
1860 try {
1861 listener.onRestrictBackgroundChanged(restrictBackground);
1862 } catch (RemoteException e) {
1863 }
1864 }
1865 }
1866 mListeners.finishBroadcast();
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07001867 return true;
1868 }
1869 case MSG_ADVISE_PERSIST_THRESHOLD: {
1870 final long lowestRule = (Long) msg.obj;
1871 try {
1872 // make sure stats are recorded frequently enough; we aim
1873 // for 2MB threshold for 2GB/month rules.
1874 final long persistThreshold = lowestRule / 1000;
1875 mNetworkStats.advisePersistThreshold(persistThreshold);
1876 } catch (RemoteException e) {
1877 // ignored; service lives in system_server
1878 }
1879 return true;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001880 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001881 default: {
1882 return false;
Jeff Sharkeyaf11d482011-06-13 00:14:31 -07001883 }
1884 }
1885 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001886 };
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001887
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001888 private void setInterfaceQuota(String iface, long quotaBytes) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001889 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001890 mNetworkManager.setInterfaceQuota(iface, quotaBytes);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001891 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001892 Log.wtf(TAG, "problem setting interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001893 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001894 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001895 }
1896 }
1897
1898 private void removeInterfaceQuota(String iface) {
1899 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001900 mNetworkManager.removeInterfaceQuota(iface);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001901 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001902 Log.wtf(TAG, "problem removing interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001903 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001904 // ignored; service lives in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001905 }
1906 }
1907
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001908 private void setUidNetworkRules(int uid, boolean rejectOnQuotaInterfaces) {
1909 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001910 mNetworkManager.setUidNetworkRules(uid, rejectOnQuotaInterfaces);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001911 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001912 Log.wtf(TAG, "problem setting uid rules", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001913 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001914 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001915 }
1916 }
1917
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001918 /**
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08001919 * Control {@link IConnectivityManager#setPolicyDataEnable(int, boolean)}.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001920 */
1921 private void setPolicyDataEnable(int networkType, boolean enabled) {
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08001922 try {
1923 mConnManager.setPolicyDataEnable(networkType, enabled);
1924 } catch (RemoteException e) {
1925 // ignored; service lives in system_server
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001926 }
1927 }
1928
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001929 private long getTotalBytes(NetworkTemplate template, long start, long end) {
1930 try {
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -07001931 return mNetworkStats.getNetworkTotalBytes(template, start, end);
Jeff Sharkey63abc372012-01-11 18:38:16 -08001932 } catch (RuntimeException e) {
1933 Slog.w(TAG, "problem reading network stats: " + e);
1934 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001935 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001936 // ignored; service lives in system_server
1937 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001938 }
1939 }
1940
Jeff Sharkey8c1dc722012-05-04 14:49:37 -07001941 private boolean isBandwidthControlEnabled() {
1942 final long token = Binder.clearCallingIdentity();
1943 try {
1944 return mNetworkManager.isBandwidthControlEnabled();
1945 } catch (RemoteException e) {
1946 // ignored; service lives in system_server
1947 return false;
1948 } finally {
1949 Binder.restoreCallingIdentity(token);
1950 }
1951 }
1952
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001953 /**
1954 * Try refreshing {@link #mTime} when stale.
1955 */
1956 private void maybeRefreshTrustedTime() {
1957 if (mTime.getCacheAge() > TIME_CACHE_MAX_AGE) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001958 mTime.forceRefresh();
1959 }
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001960 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001961
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001962 private long currentTimeMillis() {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001963 return mTime.hasCache() ? mTime.currentTimeMillis() : System.currentTimeMillis();
1964 }
1965
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001966 private static Intent buildAllowBackgroundDataIntent() {
1967 return new Intent(ACTION_ALLOW_BACKGROUND);
1968 }
1969
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001970 private static Intent buildSnoozeWarningIntent(NetworkTemplate template) {
1971 final Intent intent = new Intent(ACTION_SNOOZE_WARNING);
1972 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1973 return intent;
1974 }
1975
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001976 private static Intent buildNetworkOverLimitIntent(NetworkTemplate template) {
1977 final Intent intent = new Intent();
1978 intent.setComponent(new ComponentName(
1979 "com.android.systemui", "com.android.systemui.net.NetworkOverLimitActivity"));
1980 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1981 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1982 return intent;
1983 }
1984
1985 private static Intent buildViewDataUsageIntent(NetworkTemplate template) {
1986 final Intent intent = new Intent();
1987 intent.setComponent(new ComponentName(
1988 "com.android.settings", "com.android.settings.Settings$DataUsageSummaryActivity"));
1989 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
1990 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
1991 return intent;
1992 }
1993
Jeff Sharkey163e6442011-10-31 16:37:52 -07001994 // @VisibleForTesting
1995 public void addIdleHandler(IdleHandler handler) {
1996 mHandler.getLooper().getQueue().addIdleHandler(handler);
1997 }
1998
Jeff Sharkey1b861272011-05-22 00:34:52 -07001999 private static void collectKeys(SparseIntArray source, SparseBooleanArray target) {
2000 final int size = source.size();
2001 for (int i = 0; i < size; i++) {
2002 target.put(source.keyAt(i), true);
2003 }
2004 }
2005
2006 private static void collectKeys(SparseBooleanArray source, SparseBooleanArray target) {
2007 final int size = source.size();
2008 for (int i = 0; i < size; i++) {
2009 target.put(source.keyAt(i), true);
2010 }
2011 }
2012
2013 private static void dumpSparseBooleanArray(PrintWriter fout, SparseBooleanArray value) {
2014 fout.print("[");
2015 final int size = value.size();
2016 for (int i = 0; i < size; i++) {
2017 fout.print(value.keyAt(i) + "=" + value.valueAt(i));
2018 if (i < size - 1) fout.print(",");
2019 }
2020 fout.print("]");
2021 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002022
Jeff Sharkey46645002011-07-27 21:11:21 -07002023 public static class XmlUtils {
2024 public static int readIntAttribute(XmlPullParser in, String name) throws IOException {
2025 final String value = in.getAttributeValue(null, name);
2026 try {
2027 return Integer.parseInt(value);
2028 } catch (NumberFormatException e) {
2029 throw new ProtocolException("problem parsing " + name + "=" + value + " as int");
2030 }
2031 }
2032
2033 public static void writeIntAttribute(XmlSerializer out, String name, int value)
2034 throws IOException {
2035 out.attribute(null, name, Integer.toString(value));
2036 }
2037
2038 public static long readLongAttribute(XmlPullParser in, String name) throws IOException {
2039 final String value = in.getAttributeValue(null, name);
2040 try {
2041 return Long.parseLong(value);
2042 } catch (NumberFormatException e) {
2043 throw new ProtocolException("problem parsing " + name + "=" + value + " as long");
2044 }
2045 }
2046
2047 public static void writeLongAttribute(XmlSerializer out, String name, long value)
2048 throws IOException {
2049 out.attribute(null, name, Long.toString(value));
2050 }
2051
2052 public static boolean readBooleanAttribute(XmlPullParser in, String name) {
2053 final String value = in.getAttributeValue(null, name);
2054 return Boolean.parseBoolean(value);
2055 }
2056
2057 public static void writeBooleanAttribute(XmlSerializer out, String name, boolean value)
2058 throws IOException {
2059 out.attribute(null, name, Boolean.toString(value));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002060 }
2061 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002062}