blob: ad2bb926a432204335e7407a7d7eadaa76e192ad [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;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -070027import static android.content.Intent.ACTION_USER_ADDED;
28import static android.content.Intent.ACTION_USER_REMOVED;
Jeff Sharkeyb09540f2011-06-19 01:08:12 -070029import static android.content.Intent.EXTRA_UID;
Jeff Sharkey961e3042011-08-29 16:02:57 -070030import static android.net.ConnectivityManager.CONNECTIVITY_ACTION_IMMEDIATE;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070031import static android.net.ConnectivityManager.TYPE_ETHERNET;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070032import static android.net.ConnectivityManager.TYPE_MOBILE;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070033import static android.net.ConnectivityManager.TYPE_WIFI;
34import static android.net.ConnectivityManager.TYPE_WIMAX;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070035import static android.net.ConnectivityManager.isNetworkTypeMobile;
36import static android.net.NetworkPolicy.CYCLE_NONE;
Jeff Sharkey22c055e2011-06-12 21:13:51 -070037import static android.net.NetworkPolicy.LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070038import static android.net.NetworkPolicy.SNOOZE_NEVER;
Jeff Sharkey497e4432011-06-14 17:27:29 -070039import static android.net.NetworkPolicy.WARNING_DISABLED;
Jeff Sharkey14711eb2011-06-15 10:29:17 -070040import static android.net.NetworkPolicyManager.EXTRA_NETWORK_TEMPLATE;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -070041import static android.net.NetworkPolicyManager.POLICY_ALLOW_BACKGROUND_BATTERY_SAVE;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -070042import static android.net.NetworkPolicyManager.POLICY_NONE;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070043import static android.net.NetworkPolicyManager.POLICY_REJECT_METERED_BACKGROUND;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070044import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070045import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -070046import static android.net.NetworkPolicyManager.computeLastCycleBoundary;
Jeff Sharkey1b861272011-05-22 00:34:52 -070047import static android.net.NetworkPolicyManager.dumpPolicy;
48import static android.net.NetworkPolicyManager.dumpRules;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070049import static android.net.NetworkTemplate.MATCH_ETHERNET;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070050import static android.net.NetworkTemplate.MATCH_MOBILE_3G_LOWER;
51import static android.net.NetworkTemplate.MATCH_MOBILE_4G;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070052import static android.net.NetworkTemplate.MATCH_MOBILE_ALL;
53import static android.net.NetworkTemplate.MATCH_WIFI;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070054import static android.net.NetworkTemplate.buildTemplateMobileAll;
Jeff Sharkey241dde22012-02-03 14:50:07 -080055import static android.net.TrafficStats.MB_IN_BYTES;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070056import static android.net.wifi.WifiManager.CHANGE_REASON_ADDED;
57import static android.net.wifi.WifiManager.CHANGE_REASON_REMOVED;
58import static android.net.wifi.WifiManager.CONFIGURED_NETWORKS_CHANGED_ACTION;
59import static android.net.wifi.WifiManager.EXTRA_CHANGE_REASON;
60import static android.net.wifi.WifiManager.EXTRA_NETWORK_INFO;
61import static android.net.wifi.WifiManager.EXTRA_WIFI_CONFIGURATION;
62import static android.net.wifi.WifiManager.EXTRA_WIFI_INFO;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070063import static android.telephony.TelephonyManager.SIM_STATE_READY;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070064import static android.text.format.DateUtils.DAY_IN_MILLIS;
Jeff Sharkey854b2b12012-04-13 16:03:40 -070065import static com.android.internal.util.ArrayUtils.appendInt;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070066import static com.android.internal.util.Preconditions.checkNotNull;
Jeff Sharkeyded7b752013-03-22 13:43:41 -070067import static com.android.internal.util.XmlUtils.readBooleanAttribute;
68import static com.android.internal.util.XmlUtils.readIntAttribute;
69import static com.android.internal.util.XmlUtils.readLongAttribute;
70import static com.android.internal.util.XmlUtils.writeBooleanAttribute;
71import static com.android.internal.util.XmlUtils.writeIntAttribute;
72import static com.android.internal.util.XmlUtils.writeLongAttribute;
Jeff Sharkey961e3042011-08-29 16:02:57 -070073import static com.android.server.NetworkManagementService.LIMIT_GLOBAL_ALERT;
Jeff Sharkey497e4432011-06-14 17:27:29 -070074import static com.android.server.net.NetworkStatsService.ACTION_NETWORK_STATS_UPDATED;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070075import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
76import static org.xmlpull.v1.XmlPullParser.START_TAG;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070077
Dianne Hackborn497175b2014-07-01 12:56:08 -070078import android.app.ActivityManager;
Jeff Sharkeya4620792011-05-20 15:29:23 -070079import android.app.IActivityManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -070080import android.app.INotificationManager;
Jeff Sharkeya4620792011-05-20 15:29:23 -070081import android.app.IProcessObserver;
Jeff Sharkey497e4432011-06-14 17:27:29 -070082import android.app.Notification;
83import android.app.PendingIntent;
Jeff Sharkeya4620792011-05-20 15:29:23 -070084import android.content.BroadcastReceiver;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070085import android.content.ComponentName;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070086import android.content.Context;
Jeff Sharkeya4620792011-05-20 15:29:23 -070087import android.content.Intent;
88import android.content.IntentFilter;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -070089import android.content.pm.ApplicationInfo;
90import android.content.pm.PackageManager;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -070091import android.content.pm.UserInfo;
Jeff Sharkey497e4432011-06-14 17:27:29 -070092import android.content.res.Resources;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070093import android.net.ConnectivityManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070094import android.net.IConnectivityManager;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070095import android.net.INetworkManagementEventObserver;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070096import android.net.INetworkPolicyListener;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070097import android.net.INetworkPolicyManager;
Jeff Sharkey75279902011-05-24 18:39:45 -070098import android.net.INetworkStatsService;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -070099import android.net.LinkProperties;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700100import android.net.NetworkIdentity;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700101import android.net.NetworkInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700102import android.net.NetworkPolicy;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -0700103import android.net.NetworkQuotaInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700104import android.net.NetworkState;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700105import android.net.NetworkTemplate;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700106import android.net.wifi.WifiConfiguration;
107import android.net.wifi.WifiInfo;
108import android.net.wifi.WifiManager;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -0700109import android.os.Binder;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700110import android.os.Environment;
111import android.os.Handler;
Amith Yamasani450a16b2013-09-18 16:28:50 -0700112import android.os.HandlerThread;
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700113import android.os.INetworkManagementService;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700114import android.os.IPowerManager;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700115import android.os.Message;
Jeff Sharkey163e6442011-10-31 16:37:52 -0700116import android.os.MessageQueue.IdleHandler;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700117import android.os.PowerManagerInternal;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700118import android.os.RemoteCallbackList;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700119import android.os.RemoteException;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700120import android.os.UserHandle;
Amith Yamasani258848d2012-08-10 17:06:33 -0700121import android.os.UserManager;
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700122import android.provider.Settings;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700123import android.telephony.TelephonyManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700124import android.text.format.Formatter;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700125import android.text.format.Time;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700126import android.util.ArrayMap;
127import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -0700128import android.util.AtomicFile;
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700129import android.util.Log;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700130import android.util.NtpTrustedTime;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -0700131import android.util.Pair;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700132import android.util.Slog;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700133import android.util.SparseArray;
134import android.util.SparseBooleanArray;
135import android.util.SparseIntArray;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700136import android.util.TrustedTime;
137import android.util.Xml;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700138
Jeff Sharkey497e4432011-06-14 17:27:29 -0700139import com.android.internal.R;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800140import com.android.internal.annotations.VisibleForTesting;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700141import com.android.internal.util.FastXmlSerializer;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700142import com.android.internal.util.IndentingPrintWriter;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700143import com.android.server.LocalServices;
144import com.android.server.SystemConfig;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700145import com.google.android.collect.Lists;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700146
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -0700147import libcore.io.IoUtils;
148
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700149import org.xmlpull.v1.XmlPullParser;
150import org.xmlpull.v1.XmlPullParserException;
151import org.xmlpull.v1.XmlSerializer;
152
153import java.io.File;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700154import java.io.FileDescriptor;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700155import java.io.FileInputStream;
156import java.io.FileNotFoundException;
157import java.io.FileOutputStream;
158import java.io.IOException;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700159import java.io.PrintWriter;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700160import java.util.ArrayList;
161import java.util.Arrays;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700162import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -0800163import java.util.Objects;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700164
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700165/**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700166 * Service that maintains low-level network policy rules, using
167 * {@link NetworkStatsService} statistics to drive those rules.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700168 * <p>
169 * Derives active rules by combining a given policy with other system status,
170 * and delivers to listeners, such as {@link ConnectivityManager}, for
171 * enforcement.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700172 */
173public class NetworkPolicyManagerService extends INetworkPolicyManager.Stub {
174 private static final String TAG = "NetworkPolicy";
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -0700175 private static final boolean LOGD = false;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700176 private static final boolean LOGV = false;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700177
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700178 private static final int VERSION_INIT = 1;
179 private static final int VERSION_ADDED_SNOOZE = 2;
Jeff Sharkey46645002011-07-27 21:11:21 -0700180 private static final int VERSION_ADDED_RESTRICT_BACKGROUND = 3;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800181 private static final int VERSION_ADDED_METERED = 4;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800182 private static final int VERSION_SPLIT_SNOOZE = 5;
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800183 private static final int VERSION_ADDED_TIMEZONE = 6;
Jeff Sharkey837f9242012-03-20 16:52:20 -0700184 private static final int VERSION_ADDED_INFERRED = 7;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700185 private static final int VERSION_SWITCH_APP_ID = 8;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700186 private static final int VERSION_ADDED_NETWORK_ID = 9;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700187 private static final int VERSION_SWITCH_UID = 10;
188 private static final int VERSION_LATEST = VERSION_SWITCH_UID;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700189
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800190 @VisibleForTesting
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700191 public static final int TYPE_WARNING = 0x1;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800192 @VisibleForTesting
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700193 public static final int TYPE_LIMIT = 0x2;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800194 @VisibleForTesting
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700195 public static final int TYPE_LIMIT_SNOOZED = 0x3;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700196
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700197 private static final String TAG_POLICY_LIST = "policy-list";
198 private static final String TAG_NETWORK_POLICY = "network-policy";
199 private static final String TAG_UID_POLICY = "uid-policy";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700200 private static final String TAG_APP_POLICY = "app-policy";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700201
202 private static final String ATTR_VERSION = "version";
Jeff Sharkey46645002011-07-27 21:11:21 -0700203 private static final String ATTR_RESTRICT_BACKGROUND = "restrictBackground";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700204 private static final String ATTR_NETWORK_TEMPLATE = "networkTemplate";
205 private static final String ATTR_SUBSCRIBER_ID = "subscriberId";
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700206 private static final String ATTR_NETWORK_ID = "networkId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700207 private static final String ATTR_CYCLE_DAY = "cycleDay";
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800208 private static final String ATTR_CYCLE_TIMEZONE = "cycleTimezone";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700209 private static final String ATTR_WARNING_BYTES = "warningBytes";
210 private static final String ATTR_LIMIT_BYTES = "limitBytes";
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700211 private static final String ATTR_LAST_SNOOZE = "lastSnooze";
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800212 private static final String ATTR_LAST_WARNING_SNOOZE = "lastWarningSnooze";
213 private static final String ATTR_LAST_LIMIT_SNOOZE = "lastLimitSnooze";
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800214 private static final String ATTR_METERED = "metered";
Jeff Sharkey837f9242012-03-20 16:52:20 -0700215 private static final String ATTR_INFERRED = "inferred";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700216 private static final String ATTR_UID = "uid";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700217 private static final String ATTR_APP_ID = "appId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700218 private static final String ATTR_POLICY = "policy";
219
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700220 private static final String TAG_ALLOW_BACKGROUND = TAG + ":allowBackground";
221
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800222 private static final String ACTION_ALLOW_BACKGROUND =
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800223 "com.android.server.net.action.ALLOW_BACKGROUND";
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800224 private static final String ACTION_SNOOZE_WARNING =
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800225 "com.android.server.net.action.SNOOZE_WARNING";
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700226
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700227 private static final long TIME_CACHE_MAX_AGE = DAY_IN_MILLIS;
228
Jeff Sharkey6f7af032011-11-01 18:25:15 -0700229 private static final int MSG_RULES_CHANGED = 1;
230 private static final int MSG_METERED_IFACES_CHANGED = 2;
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -0800231 private static final int MSG_LIMIT_REACHED = 5;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -0800232 private static final int MSG_RESTRICT_BACKGROUND_CHANGED = 6;
Jeff Sharkeye19f39b2012-05-24 10:21:16 -0700233 private static final int MSG_ADVISE_PERSIST_THRESHOLD = 7;
Jeff Sharkey0abe5562012-06-19 13:32:22 -0700234 private static final int MSG_SCREEN_ON_CHANGED = 8;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700235
Jeff Sharkey75279902011-05-24 18:39:45 -0700236 private final Context mContext;
237 private final IActivityManager mActivityManager;
238 private final IPowerManager mPowerManager;
239 private final INetworkStatsService mNetworkStats;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700240 private final INetworkManagementService mNetworkManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700241 private final TrustedTime mTime;
242
243 private IConnectivityManager mConnManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700244 private INotificationManager mNotifManager;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700245 private PowerManagerInternal mPowerManagerInternal;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700246
Dianne Hackborn497175b2014-07-01 12:56:08 -0700247 final Object mRulesLock = new Object();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700248
Dianne Hackborn497175b2014-07-01 12:56:08 -0700249 volatile boolean mScreenOn;
250 volatile boolean mRestrictBackground;
251 volatile boolean mRestrictPower;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700252
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700253 private final boolean mSuppressDefaultPolicy;
254
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700255 /** Defined network policies. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700256 final ArrayMap<NetworkTemplate, NetworkPolicy> mNetworkPolicy = new ArrayMap<
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700257 NetworkTemplate, NetworkPolicy>();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700258 /** Currently active network rules for ifaces. */
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700259 private final ArrayMap<NetworkPolicy, String[]> mNetworkRules = new ArrayMap<
260 NetworkPolicy, String[]>();
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700261
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700262 /** Defined UID policies. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700263 final SparseIntArray mUidPolicy = new SparseIntArray();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700264 /** Currently derived rules for each UID. */
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700265 private final SparseIntArray mUidRules = new SparseIntArray();
266
267 /** UIDs that have been white-listed to always be able to have network access in
268 * power save mode. */
269 private final SparseBooleanArray mPowerSaveWhitelistAppIds = new SparseBooleanArray();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700270
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700271 /** Set of ifaces that are metered. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700272 private ArraySet<String> mMeteredIfaces = new ArraySet<String>();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700273 /** Set of over-limit templates that have been notified. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700274 private final ArraySet<NetworkTemplate> mOverLimitNotified = new ArraySet<NetworkTemplate>();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700275
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700276 /** Set of currently active {@link Notification} tags. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700277 private final ArraySet<String> mActiveNotifs = new ArraySet<String>();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700278
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700279 /** Foreground at both UID and PID granularity. */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700280 private final SparseIntArray mUidState = new SparseIntArray();
281 final SparseArray<SparseIntArray> mUidPidState = new SparseArray<SparseIntArray>();
282
283 /** The current maximum process state that we are considering to be foreground. */
284 private int mCurForegroundState = ActivityManager.PROCESS_STATE_TOP;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700285
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700286 private final RemoteCallbackList<INetworkPolicyListener> mListeners = new RemoteCallbackList<
287 INetworkPolicyListener>();
288
Dianne Hackborn497175b2014-07-01 12:56:08 -0700289 final Handler mHandler;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700290
291 private final AtomicFile mPolicyFile;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700292
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700293 // TODO: keep whitelist of system-critical services that should never have
294 // rules enforced, such as system, phone, and radio UIDs.
295
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700296 // TODO: migrate notifications to SystemUI
297
Jeff Sharkey75279902011-05-24 18:39:45 -0700298 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700299 IPowerManager powerManager, INetworkStatsService networkStats,
300 INetworkManagementService networkManagement) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700301 this(context, activityManager, powerManager, networkStats, networkManagement,
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700302 NtpTrustedTime.getInstance(context), getSystemDir(), false);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700303 }
304
305 private static File getSystemDir() {
306 return new File(Environment.getDataDirectory(), "system");
307 }
308
309 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700310 IPowerManager powerManager, INetworkStatsService networkStats,
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700311 INetworkManagementService networkManagement, TrustedTime time, File systemDir,
312 boolean suppressDefaultPolicy) {
Jeff Sharkeya4620792011-05-20 15:29:23 -0700313 mContext = checkNotNull(context, "missing context");
314 mActivityManager = checkNotNull(activityManager, "missing activityManager");
315 mPowerManager = checkNotNull(powerManager, "missing powerManager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700316 mNetworkStats = checkNotNull(networkStats, "missing networkStats");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700317 mNetworkManager = checkNotNull(networkManagement, "missing networkManagement");
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700318 mTime = checkNotNull(time, "missing TrustedTime");
319
Amith Yamasani450a16b2013-09-18 16:28:50 -0700320 HandlerThread thread = new HandlerThread(TAG);
321 thread.start();
322 mHandler = new Handler(thread.getLooper(), mHandlerCallback);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700323
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700324 mSuppressDefaultPolicy = suppressDefaultPolicy;
325
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700326 mPolicyFile = new AtomicFile(new File(systemDir, "netpolicy.xml"));
327 }
328
329 public void bindConnectivityManager(IConnectivityManager connManager) {
330 mConnManager = checkNotNull(connManager, "missing IConnectivityManager");
Jeff Sharkeya4620792011-05-20 15:29:23 -0700331 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700332
Jeff Sharkey497e4432011-06-14 17:27:29 -0700333 public void bindNotificationManager(INotificationManager notifManager) {
334 mNotifManager = checkNotNull(notifManager, "missing INotificationManager");
335 }
336
Jeff Sharkeya4620792011-05-20 15:29:23 -0700337 public void systemReady() {
Jeff Sharkey8c1dc722012-05-04 14:49:37 -0700338 if (!isBandwidthControlEnabled()) {
339 Slog.w(TAG, "bandwidth controls disabled, unable to enforce policy");
340 return;
341 }
342
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700343 final PackageManager pm = mContext.getPackageManager();
344
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700345 synchronized (mRulesLock) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700346 SystemConfig sysConfig = SystemConfig.getInstance();
347 ArraySet<String> allowPower = sysConfig.getAllowInPowerSave();
348 for (int i=0; i<allowPower.size(); i++) {
349 String pkg = allowPower.valueAt(i);
350 try {
351 ApplicationInfo ai = pm.getApplicationInfo(pkg, 0);
352 if ((ai.flags&ApplicationInfo.FLAG_SYSTEM) != 0) {
353 mPowerSaveWhitelistAppIds.put(UserHandle.getAppId(ai.uid), true);
354 }
355 } catch (PackageManager.NameNotFoundException e) {
356 }
357 }
358
359 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
360 mPowerManagerInternal.registerLowPowerModeObserver(
361 new PowerManagerInternal.LowPowerModeListener() {
362 @Override
363 public void onLowPowerModeChanged(boolean enabled) {
364 synchronized (mRulesLock) {
365 if (mRestrictPower != enabled) {
366 mRestrictPower = enabled;
367 updateRulesForGlobalChangeLocked(true);
368 }
369 }
370 }
371 });
372 mRestrictPower = mPowerManagerInternal.getLowPowerModeEnabled();
373
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700374 // read policy from disk
375 readPolicyLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -0700376
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700377 if (mRestrictBackground || mRestrictPower) {
378 updateRulesForGlobalChangeLocked(true);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700379 updateNotificationsLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -0700380 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700381 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700382
Jeff Sharkeya4620792011-05-20 15:29:23 -0700383 updateScreenOn();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700384
Jeff Sharkeya4620792011-05-20 15:29:23 -0700385 try {
386 mActivityManager.registerProcessObserver(mProcessObserver);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700387 mNetworkManager.registerObserver(mAlertObserver);
388 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700389 // ignored; both services live in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700390 }
391
Jeff Sharkeya4620792011-05-20 15:29:23 -0700392 // TODO: traverse existing processes to know foreground state, or have
393 // activitymanager dispatch current state when new observer attached.
394
395 final IntentFilter screenFilter = new IntentFilter();
396 screenFilter.addAction(Intent.ACTION_SCREEN_ON);
397 screenFilter.addAction(Intent.ACTION_SCREEN_OFF);
Jeff Sharkey0abe5562012-06-19 13:32:22 -0700398 mContext.registerReceiver(mScreenReceiver, screenFilter);
Jeff Sharkeya4620792011-05-20 15:29:23 -0700399
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700400 // watch for network interfaces to be claimed
Jeff Sharkey961e3042011-08-29 16:02:57 -0700401 final IntentFilter connFilter = new IntentFilter(CONNECTIVITY_ACTION_IMMEDIATE);
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700402 mContext.registerReceiver(mConnReceiver, connFilter, CONNECTIVITY_INTERNAL, mHandler);
403
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700404 // listen for package changes to update policy
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700405 final IntentFilter packageFilter = new IntentFilter();
406 packageFilter.addAction(ACTION_PACKAGE_ADDED);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700407 packageFilter.addDataScheme("package");
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700408 mContext.registerReceiver(mPackageReceiver, packageFilter, null, mHandler);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700409
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700410 // listen for UID changes to update policy
411 mContext.registerReceiver(
412 mUidRemovedReceiver, new IntentFilter(ACTION_UID_REMOVED), null, mHandler);
413
414 // listen for user changes to update policy
415 final IntentFilter userFilter = new IntentFilter();
416 userFilter.addAction(ACTION_USER_ADDED);
417 userFilter.addAction(ACTION_USER_REMOVED);
418 mContext.registerReceiver(mUserReceiver, userFilter, null, mHandler);
419
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700420 // listen for stats update events
Jeff Sharkey497e4432011-06-14 17:27:29 -0700421 final IntentFilter statsFilter = new IntentFilter(ACTION_NETWORK_STATS_UPDATED);
422 mContext.registerReceiver(
423 mStatsReceiver, statsFilter, READ_NETWORK_USAGE_HISTORY, mHandler);
424
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700425 // listen for restrict background changes from notifications
426 final IntentFilter allowFilter = new IntentFilter(ACTION_ALLOW_BACKGROUND);
427 mContext.registerReceiver(mAllowReceiver, allowFilter, MANAGE_NETWORK_POLICY, mHandler);
428
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800429 // listen for snooze warning from notifications
430 final IntentFilter snoozeWarningFilter = new IntentFilter(ACTION_SNOOZE_WARNING);
431 mContext.registerReceiver(mSnoozeWarningReceiver, snoozeWarningFilter,
432 MANAGE_NETWORK_POLICY, mHandler);
433
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700434 // listen for configured wifi networks to be removed
435 final IntentFilter wifiConfigFilter = new IntentFilter(CONFIGURED_NETWORKS_CHANGED_ACTION);
436 mContext.registerReceiver(
437 mWifiConfigReceiver, wifiConfigFilter, CONNECTIVITY_INTERNAL, mHandler);
438
439 // listen for wifi state changes to catch metered hint
440 final IntentFilter wifiStateFilter = new IntentFilter(
441 WifiManager.NETWORK_STATE_CHANGED_ACTION);
442 mContext.registerReceiver(
443 mWifiStateReceiver, wifiStateFilter, CONNECTIVITY_INTERNAL, mHandler);
444
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700445 }
446
Jeff Sharkeya4620792011-05-20 15:29:23 -0700447 private IProcessObserver mProcessObserver = new IProcessObserver.Stub() {
448 @Override
449 public void onForegroundActivitiesChanged(int pid, int uid, boolean foregroundActivities) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700450 }
Jeff Sharkeya4620792011-05-20 15:29:23 -0700451
452 @Override
Dianne Hackborn684bf342014-04-29 17:56:57 -0700453 public void onProcessStateChanged(int pid, int uid, int procState) {
Dianne Hackborn497175b2014-07-01 12:56:08 -0700454 synchronized (mRulesLock) {
455 // because a uid can have multiple pids running inside, we need to
456 // remember all pid states and summarize foreground at uid level.
457
458 // record foreground for this specific pid
459 SparseIntArray pidState = mUidPidState.get(uid);
460 if (pidState == null) {
461 pidState = new SparseIntArray(2);
462 mUidPidState.put(uid, pidState);
463 }
464 pidState.put(pid, procState);
465 computeUidStateLocked(uid);
466 }
Dianne Hackborna93c2c12012-05-31 15:29:36 -0700467 }
468
469 @Override
Jeff Sharkeya4620792011-05-20 15:29:23 -0700470 public void onProcessDied(int pid, int uid) {
Dianne Hackborn497175b2014-07-01 12:56:08 -0700471 synchronized (mRulesLock) {
472 // clear records and recompute, when they exist
473 final SparseIntArray pidState = mUidPidState.get(uid);
474 if (pidState != null) {
475 pidState.delete(pid);
476 if (pidState.size() <= 0) {
477 mUidPidState.remove(uid);
478 }
479 computeUidStateLocked(uid);
480 }
481 }
Jeff Sharkeya4620792011-05-20 15:29:23 -0700482 }
483 };
484
485 private BroadcastReceiver mScreenReceiver = new BroadcastReceiver() {
486 @Override
487 public void onReceive(Context context, Intent intent) {
Jeff Sharkey29afa142012-12-04 17:21:21 -0800488 // screen-related broadcasts are protected by system, no need
489 // for permissions check.
490 mHandler.obtainMessage(MSG_SCREEN_ON_CHANGED).sendToTarget();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700491 }
492 };
493
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700494 private BroadcastReceiver mPackageReceiver = new BroadcastReceiver() {
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700495 @Override
496 public void onReceive(Context context, Intent intent) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700497 // on background handler thread, and PACKAGE_ADDED is protected
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700498
499 final String action = intent.getAction();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700500 final int uid = intent.getIntExtra(EXTRA_UID, -1);
501 if (uid == -1) return;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700502
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700503 if (ACTION_PACKAGE_ADDED.equals(action)) {
504 // update rules for UID, since it might be subject to
505 // global background data policy
506 if (LOGV) Slog.v(TAG, "ACTION_PACKAGE_ADDED for uid=" + uid);
507 synchronized (mRulesLock) {
508 updateRulesForUidLocked(uid);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700509 }
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700510 }
511 }
512 };
513
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700514 private BroadcastReceiver mUidRemovedReceiver = new BroadcastReceiver() {
515 @Override
516 public void onReceive(Context context, Intent intent) {
517 // on background handler thread, and UID_REMOVED is protected
518
519 final int uid = intent.getIntExtra(EXTRA_UID, -1);
520 if (uid == -1) return;
521
522 // remove any policy and update rules to clean up
523 if (LOGV) Slog.v(TAG, "ACTION_UID_REMOVED for uid=" + uid);
524 synchronized (mRulesLock) {
525 mUidPolicy.delete(uid);
526 updateRulesForUidLocked(uid);
527 writePolicyLocked();
528 }
529 }
530 };
531
532 private BroadcastReceiver mUserReceiver = new BroadcastReceiver() {
533 @Override
534 public void onReceive(Context context, Intent intent) {
535 // on background handler thread, and USER_ADDED and USER_REMOVED
536 // broadcasts are protected
537
538 final String action = intent.getAction();
539 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
540 if (userId == -1) return;
541
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700542 synchronized (mRulesLock) {
Dianne Hackborn497175b2014-07-01 12:56:08 -0700543 // Remove any policies for given user; both cleaning up after a
544 // USER_REMOVED, and one last sanity check during USER_ADDED
545 removePoliciesForUserLocked(userId);
546 // Update global restrict for new user
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700547 updateRulesForGlobalChangeLocked(true);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700548 }
549 }
550 };
551
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700552 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700553 * Receiver that watches for {@link INetworkStatsService} updates, which we
554 * use to check against {@link NetworkPolicy#warningBytes}.
555 */
556 private BroadcastReceiver mStatsReceiver = new BroadcastReceiver() {
557 @Override
558 public void onReceive(Context context, Intent intent) {
559 // on background handler thread, and verified
560 // READ_NETWORK_USAGE_HISTORY permission above.
561
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800562 maybeRefreshTrustedTime();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700563 synchronized (mRulesLock) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700564 updateNetworkEnabledLocked();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700565 updateNotificationsLocked();
566 }
567 }
568 };
569
570 /**
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700571 * Receiver that watches for {@link Notification} control of
572 * {@link #mRestrictBackground}.
573 */
574 private BroadcastReceiver mAllowReceiver = new BroadcastReceiver() {
575 @Override
576 public void onReceive(Context context, Intent intent) {
577 // on background handler thread, and verified MANAGE_NETWORK_POLICY
578 // permission above.
579
580 setRestrictBackground(false);
581 }
582 };
583
584 /**
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800585 * Receiver that watches for {@link Notification} control of
586 * {@link NetworkPolicy#lastWarningSnooze}.
587 */
588 private BroadcastReceiver mSnoozeWarningReceiver = new BroadcastReceiver() {
589 @Override
590 public void onReceive(Context context, Intent intent) {
591 // on background handler thread, and verified MANAGE_NETWORK_POLICY
592 // permission above.
593
594 final NetworkTemplate template = intent.getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
595 performSnooze(template, TYPE_WARNING);
596 }
597 };
598
599 /**
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700600 * Receiver that watches for {@link WifiConfiguration} to be changed.
601 */
602 private BroadcastReceiver mWifiConfigReceiver = new BroadcastReceiver() {
603 @Override
604 public void onReceive(Context context, Intent intent) {
605 // on background handler thread, and verified CONNECTIVITY_INTERNAL
606 // permission above.
607
608 final int reason = intent.getIntExtra(EXTRA_CHANGE_REASON, CHANGE_REASON_ADDED);
609 if (reason == CHANGE_REASON_REMOVED) {
610 final WifiConfiguration config = intent.getParcelableExtra(
611 EXTRA_WIFI_CONFIGURATION);
Irfan Sheriff00a10a12012-04-27 21:24:17 -0700612 if (config.SSID != null) {
Jeff Sharkey2e4dce02012-12-18 17:06:06 -0800613 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(config.SSID);
Irfan Sheriff00a10a12012-04-27 21:24:17 -0700614 synchronized (mRulesLock) {
615 if (mNetworkPolicy.containsKey(template)) {
616 mNetworkPolicy.remove(template);
617 writePolicyLocked();
618 }
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700619 }
620 }
621 }
622 }
623 };
624
625 /**
626 * Receiver that watches {@link WifiInfo} state changes to infer metered
627 * state. Ignores hints when policy is user-defined.
628 */
629 private BroadcastReceiver mWifiStateReceiver = new BroadcastReceiver() {
630 @Override
631 public void onReceive(Context context, Intent intent) {
632 // on background handler thread, and verified CONNECTIVITY_INTERNAL
633 // permission above.
634
635 // ignore when not connected
636 final NetworkInfo netInfo = intent.getParcelableExtra(EXTRA_NETWORK_INFO);
637 if (!netInfo.isConnected()) return;
638
639 final WifiInfo info = intent.getParcelableExtra(EXTRA_WIFI_INFO);
640 final boolean meteredHint = info.getMeteredHint();
641
Jeff Sharkey2e4dce02012-12-18 17:06:06 -0800642 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(info.getSSID());
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700643 synchronized (mRulesLock) {
644 NetworkPolicy policy = mNetworkPolicy.get(template);
645 if (policy == null && meteredHint) {
646 // policy doesn't exist, and AP is hinting that it's
647 // metered: create an inferred policy.
648 policy = new NetworkPolicy(template, CYCLE_NONE, Time.TIMEZONE_UTC,
649 WARNING_DISABLED, LIMIT_DISABLED, SNOOZE_NEVER, SNOOZE_NEVER,
650 meteredHint, true);
651 addNetworkPolicyLocked(policy);
652
653 } else if (policy != null && policy.inferred) {
654 // policy exists, and was inferred: update its current
655 // metered state.
656 policy.metered = meteredHint;
657
658 // since this is inferred for each wifi session, just update
659 // rules without persisting.
660 updateNetworkRulesLocked();
661 }
662 }
663 }
664 };
665
666 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700667 * Observer that watches for {@link INetworkManagementService} alerts.
668 */
Jeff Sharkey216c1812012-08-05 14:29:23 -0700669 private INetworkManagementEventObserver mAlertObserver = new BaseNetworkObserver() {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700670 @Override
671 public void limitReached(String limitName, String iface) {
672 // only someone like NMS should be calling us
673 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
674
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -0800675 if (!LIMIT_GLOBAL_ALERT.equals(limitName)) {
676 mHandler.obtainMessage(MSG_LIMIT_REACHED, iface).sendToTarget();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700677 }
678 }
679 };
680
681 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700682 * Check {@link NetworkPolicy} against current {@link INetworkStatsService}
683 * to show visible notifications as needed.
684 */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700685 void updateNotificationsLocked() {
Jeff Sharkey497e4432011-06-14 17:27:29 -0700686 if (LOGV) Slog.v(TAG, "updateNotificationsLocked()");
687
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700688 // keep track of previously active notifications
Dianne Hackborn497175b2014-07-01 12:56:08 -0700689 final ArraySet<String> beforeNotifs = new ArraySet<String>(mActiveNotifs);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700690 mActiveNotifs.clear();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700691
692 // TODO: when switching to kernel notifications, compute next future
693 // cycle boundary to recompute notifications.
694
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700695 // examine stats for each active policy
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800696 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700697 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
698 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700699 // ignore policies that aren't relevant to user
700 if (!isTemplateRelevant(policy.template)) continue;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700701 if (!policy.hasCycle()) continue;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700702
Jeff Sharkey497e4432011-06-14 17:27:29 -0700703 final long start = computeLastCycleBoundary(currentTime, policy);
704 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700705 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700706
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700707 if (policy.isOverLimit(totalBytes)) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800708 if (policy.lastLimitSnooze >= start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700709 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes);
710 } else {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700711 enqueueNotification(policy, TYPE_LIMIT, totalBytes);
712 notifyOverLimitLocked(policy.template);
713 }
714
Jeff Sharkey497e4432011-06-14 17:27:29 -0700715 } else {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700716 notifyUnderLimitLocked(policy.template);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700717
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800718 if (policy.isOverWarning(totalBytes) && policy.lastWarningSnooze < start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700719 enqueueNotification(policy, TYPE_WARNING, totalBytes);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700720 }
721 }
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700722 }
723
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700724 // ongoing notification when restricting background data
725 if (mRestrictBackground) {
726 enqueueRestrictedNotification(TAG_ALLOW_BACKGROUND);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700727 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700728
729 // cancel stale notifications that we didn't renew above
Dianne Hackborn497175b2014-07-01 12:56:08 -0700730 for (int i = beforeNotifs.size()-1; i >= 0; i--) {
731 final String tag = beforeNotifs.valueAt(i);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700732 if (!mActiveNotifs.contains(tag)) {
733 cancelNotification(tag);
734 }
735 }
736 }
737
738 /**
739 * Test if given {@link NetworkTemplate} is relevant to user based on
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700740 * current device state, such as when
741 * {@link TelephonyManager#getSubscriberId()} matches. This is regardless of
742 * data connection status.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700743 */
744 private boolean isTemplateRelevant(NetworkTemplate template) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700745 final TelephonyManager tele = TelephonyManager.from(mContext);
746
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700747 switch (template.getMatchRule()) {
748 case MATCH_MOBILE_3G_LOWER:
749 case MATCH_MOBILE_4G:
750 case MATCH_MOBILE_ALL:
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700751 // mobile templates are relevant when SIM is ready and
752 // subscriberId matches.
753 if (tele.getSimState() == SIM_STATE_READY) {
Kenny Roote6585b32013-12-13 12:00:26 -0800754 return Objects.equals(tele.getSubscriberId(), template.getSubscriberId());
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700755 } else {
Jeff Sharkey3a66cf32012-03-20 17:00:01 -0700756 return false;
757 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700758 }
759 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700760 }
761
762 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700763 * Notify that given {@link NetworkTemplate} is over
764 * {@link NetworkPolicy#limitBytes}, potentially showing dialog to user.
765 */
766 private void notifyOverLimitLocked(NetworkTemplate template) {
767 if (!mOverLimitNotified.contains(template)) {
768 mContext.startActivity(buildNetworkOverLimitIntent(template));
769 mOverLimitNotified.add(template);
770 }
771 }
772
773 private void notifyUnderLimitLocked(NetworkTemplate template) {
774 mOverLimitNotified.remove(template);
775 }
776
777 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700778 * Build unique tag that identifies an active {@link NetworkPolicy}
779 * notification of a specific type, like {@link #TYPE_LIMIT}.
780 */
781 private String buildNotificationTag(NetworkPolicy policy, int type) {
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700782 return TAG + ":" + policy.template.hashCode() + ":" + type;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700783 }
784
785 /**
786 * Show notification for combined {@link NetworkPolicy} and specific type,
787 * like {@link #TYPE_LIMIT}. Okay to call multiple times.
788 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700789 private void enqueueNotification(NetworkPolicy policy, int type, long totalBytes) {
Jeff Sharkey497e4432011-06-14 17:27:29 -0700790 final String tag = buildNotificationTag(policy, type);
791 final Notification.Builder builder = new Notification.Builder(mContext);
792 builder.setOnlyAlertOnce(true);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800793 builder.setWhen(0L);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700794
795 final Resources res = mContext.getResources();
796 switch (type) {
797 case TYPE_WARNING: {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700798 final CharSequence title = res.getText(R.string.data_usage_warning_title);
Jeff Sharkey8ca953d2011-09-14 19:56:11 -0700799 final CharSequence body = res.getString(R.string.data_usage_warning_body);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700800
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700801 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700802 builder.setTicker(title);
803 builder.setContentTitle(title);
804 builder.setContentText(body);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700805
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800806 final Intent snoozeIntent = buildSnoozeWarningIntent(policy.template);
807 builder.setDeleteIntent(PendingIntent.getBroadcast(
808 mContext, 0, snoozeIntent, PendingIntent.FLAG_UPDATE_CURRENT));
809
810 final Intent viewIntent = buildViewDataUsageIntent(policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700811 builder.setContentIntent(PendingIntent.getActivity(
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800812 mContext, 0, viewIntent, PendingIntent.FLAG_UPDATE_CURRENT));
813
Jeff Sharkey497e4432011-06-14 17:27:29 -0700814 break;
815 }
816 case TYPE_LIMIT: {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700817 final CharSequence body = res.getText(R.string.data_usage_limit_body);
818
819 final CharSequence title;
John Spurlockaedebda2014-07-14 14:36:32 -0400820 int icon = R.drawable.stat_notify_disabled_data;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700821 switch (policy.template.getMatchRule()) {
822 case MATCH_MOBILE_3G_LOWER:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700823 title = res.getText(R.string.data_usage_3g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700824 break;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700825 case MATCH_MOBILE_4G:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700826 title = res.getText(R.string.data_usage_4g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700827 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700828 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700829 title = res.getText(R.string.data_usage_mobile_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700830 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700831 case MATCH_WIFI:
832 title = res.getText(R.string.data_usage_wifi_limit_title);
John Spurlockaedebda2014-07-14 14:36:32 -0400833 icon = R.drawable.stat_notify_error;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700834 break;
835 default:
836 title = null;
837 break;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700838 }
839
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800840 builder.setOngoing(true);
John Spurlockaedebda2014-07-14 14:36:32 -0400841 builder.setSmallIcon(icon);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700842 builder.setTicker(title);
843 builder.setContentTitle(title);
844 builder.setContentText(body);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700845
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700846 final Intent intent = buildNetworkOverLimitIntent(policy.template);
847 builder.setContentIntent(PendingIntent.getActivity(
848 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
849 break;
850 }
851 case TYPE_LIMIT_SNOOZED: {
852 final long overBytes = totalBytes - policy.limitBytes;
853 final CharSequence body = res.getString(R.string.data_usage_limit_snoozed_body,
854 Formatter.formatFileSize(mContext, overBytes));
855
856 final CharSequence title;
857 switch (policy.template.getMatchRule()) {
858 case MATCH_MOBILE_3G_LOWER:
859 title = res.getText(R.string.data_usage_3g_limit_snoozed_title);
860 break;
861 case MATCH_MOBILE_4G:
862 title = res.getText(R.string.data_usage_4g_limit_snoozed_title);
863 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700864 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700865 title = res.getText(R.string.data_usage_mobile_limit_snoozed_title);
866 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700867 case MATCH_WIFI:
868 title = res.getText(R.string.data_usage_wifi_limit_snoozed_title);
869 break;
870 default:
871 title = null;
872 break;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700873 }
874
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800875 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700876 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700877 builder.setTicker(title);
878 builder.setContentTitle(title);
879 builder.setContentText(body);
880
881 final Intent intent = buildViewDataUsageIntent(policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700882 builder.setContentIntent(PendingIntent.getActivity(
883 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
Jeff Sharkey497e4432011-06-14 17:27:29 -0700884 break;
885 }
886 }
887
888 // TODO: move to NotificationManager once we can mock it
Dianne Hackborn41203752012-08-31 14:05:51 -0700889 // XXX what to do about multi-user?
Jeff Sharkey497e4432011-06-14 17:27:29 -0700890 try {
891 final String packageName = mContext.getPackageName();
892 final int[] idReceived = new int[1];
893 mNotifManager.enqueueNotificationWithTag(
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800894 packageName, packageName, tag, 0x0, builder.getNotification(), idReceived,
Dianne Hackborn41203752012-08-31 14:05:51 -0700895 UserHandle.USER_OWNER);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700896 mActiveNotifs.add(tag);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700897 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700898 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -0700899 }
900 }
901
902 /**
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700903 * Show ongoing notification to reflect that {@link #mRestrictBackground}
904 * has been enabled.
Jeff Sharkey497e4432011-06-14 17:27:29 -0700905 */
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700906 private void enqueueRestrictedNotification(String tag) {
907 final Resources res = mContext.getResources();
908 final Notification.Builder builder = new Notification.Builder(mContext);
909
910 final CharSequence title = res.getText(R.string.data_usage_restricted_title);
911 final CharSequence body = res.getString(R.string.data_usage_restricted_body);
912
913 builder.setOnlyAlertOnce(true);
914 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -0700915 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700916 builder.setTicker(title);
917 builder.setContentTitle(title);
918 builder.setContentText(body);
919
920 final Intent intent = buildAllowBackgroundDataIntent();
921 builder.setContentIntent(
922 PendingIntent.getBroadcast(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
Jeff Sharkey497e4432011-06-14 17:27:29 -0700923
924 // TODO: move to NotificationManager once we can mock it
Dianne Hackborn41203752012-08-31 14:05:51 -0700925 // XXX what to do about multi-user?
Jeff Sharkey497e4432011-06-14 17:27:29 -0700926 try {
927 final String packageName = mContext.getPackageName();
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700928 final int[] idReceived = new int[1];
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800929 mNotifManager.enqueueNotificationWithTag(packageName, packageName, tag,
Dianne Hackborn41203752012-08-31 14:05:51 -0700930 0x0, builder.getNotification(), idReceived, UserHandle.USER_OWNER);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700931 mActiveNotifs.add(tag);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700932 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700933 // ignored; service lives in system_server
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700934 }
935 }
936
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700937 private void cancelNotification(String tag) {
938 // TODO: move to NotificationManager once we can mock it
Dianne Hackborn41203752012-08-31 14:05:51 -0700939 // XXX what to do about multi-user?
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700940 try {
941 final String packageName = mContext.getPackageName();
942 mNotifManager.cancelNotificationWithTag(
Dianne Hackborn41203752012-08-31 14:05:51 -0700943 packageName, tag, 0x0, UserHandle.USER_OWNER);
Jeff Sharkey497e4432011-06-14 17:27:29 -0700944 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700945 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -0700946 }
947 }
948
949 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700950 * Receiver that watches for {@link IConnectivityManager} to claim network
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700951 * interfaces. Used to apply {@link NetworkPolicy} to matching networks.
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700952 */
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700953 private BroadcastReceiver mConnReceiver = new BroadcastReceiver() {
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700954 @Override
955 public void onReceive(Context context, Intent intent) {
956 // on background handler thread, and verified CONNECTIVITY_INTERNAL
957 // permission above.
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800958
959 maybeRefreshTrustedTime();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700960 synchronized (mRulesLock) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700961 ensureActiveMobilePolicyLocked();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700962 updateNetworkEnabledLocked();
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700963 updateNetworkRulesLocked();
964 updateNotificationsLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700965 }
966 }
967 };
968
969 /**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700970 * Proactively control network data connections when they exceed
971 * {@link NetworkPolicy#limitBytes}.
972 */
Dianne Hackborn497175b2014-07-01 12:56:08 -0700973 void updateNetworkEnabledLocked() {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700974 if (LOGV) Slog.v(TAG, "updateNetworkEnabledLocked()");
975
976 // TODO: reset any policy-disabled networks when any policy is removed
977 // completely, which is currently rare case.
978
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800979 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700980 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
981 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700982 // shortcut when policy has no limit
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700983 if (policy.limitBytes == LIMIT_DISABLED || !policy.hasCycle()) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700984 setNetworkTemplateEnabled(policy.template, true);
985 continue;
986 }
987
988 final long start = computeLastCycleBoundary(currentTime, policy);
989 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700990 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700991
992 // disable data connection when over limit and not snoozed
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800993 final boolean overLimitWithoutSnooze = policy.isOverLimit(totalBytes)
994 && policy.lastLimitSnooze < start;
995 final boolean networkEnabled = !overLimitWithoutSnooze;
Jeff Sharkey8e9992a2011-08-23 18:37:23 -0700996
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800997 setNetworkTemplateEnabled(policy.template, networkEnabled);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700998 }
999 }
1000
1001 /**
1002 * Control {@link IConnectivityManager#setPolicyDataEnable(int, boolean)}
1003 * for the given {@link NetworkTemplate}.
1004 */
1005 private void setNetworkTemplateEnabled(NetworkTemplate template, boolean enabled) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001006 final TelephonyManager tele = TelephonyManager.from(mContext);
1007
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001008 switch (template.getMatchRule()) {
1009 case MATCH_MOBILE_3G_LOWER:
1010 case MATCH_MOBILE_4G:
1011 case MATCH_MOBILE_ALL:
1012 // TODO: offer more granular control over radio states once
1013 // 4965893 is available.
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001014 if (tele.getSimState() == SIM_STATE_READY
Kenny Roote6585b32013-12-13 12:00:26 -08001015 && Objects.equals(tele.getSubscriberId(), template.getSubscriberId())) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001016 setPolicyDataEnable(TYPE_MOBILE, enabled);
1017 setPolicyDataEnable(TYPE_WIMAX, enabled);
1018 }
1019 break;
1020 case MATCH_WIFI:
1021 setPolicyDataEnable(TYPE_WIFI, enabled);
1022 break;
1023 case MATCH_ETHERNET:
1024 setPolicyDataEnable(TYPE_ETHERNET, enabled);
1025 break;
1026 default:
1027 throw new IllegalArgumentException("unexpected template");
1028 }
1029 }
1030
1031 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001032 * Examine all connected {@link NetworkState}, looking for
1033 * {@link NetworkPolicy} that need to be enforced. When matches found, set
1034 * remaining quota based on usage cycle and historical stats.
1035 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07001036 void updateNetworkRulesLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001037 if (LOGV) Slog.v(TAG, "updateIfacesLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001038
1039 final NetworkState[] states;
1040 try {
1041 states = mConnManager.getAllNetworkState();
1042 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001043 // ignored; service lives in system_server
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001044 return;
1045 }
1046
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001047 // If we are in restrict power mode, we want to treat all interfaces
1048 // as metered, to restrict access to the network by uid. However, we
1049 // will not have a bandwidth limit. Also only do this if restrict
1050 // background data use is *not* enabled, since that takes precendence
1051 // use over those networks can have a cost associated with it).
1052 final boolean powerSave = mRestrictPower && !mRestrictBackground;
1053
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001054 // First, generate identities of all connected networks so we can
1055 // quickly compare them against all defined policies below.
1056 final ArrayList<Pair<String, NetworkIdentity>> connIdents = new ArrayList<>(states.length);
Dianne Hackborn497175b2014-07-01 12:56:08 -07001057 final ArraySet<String> connIfaces = new ArraySet<String>(states.length);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001058 for (NetworkState state : states) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001059 if (state.networkInfo.isConnected()) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001060 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001061
1062 final String baseIface = state.linkProperties.getInterfaceName();
1063 connIdents.add(Pair.create(baseIface, ident));
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001064 if (powerSave) {
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001065 connIfaces.add(baseIface);
1066 }
1067
1068 // Stacked interfaces are considered to have same identity as
1069 // their parent network.
1070 final List<LinkProperties> stackedLinks = state.linkProperties.getStackedLinks();
1071 for (LinkProperties stackedLink : stackedLinks) {
1072 final String stackedIface = stackedLink.getInterfaceName();
1073 connIdents.add(Pair.create(stackedIface, ident));
1074 if (powerSave) {
1075 connIfaces.add(stackedIface);
1076 }
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001077 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001078 }
1079 }
1080
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001081 // Apply policies against all connected interfaces found above
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001082 mNetworkRules.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001083 final ArrayList<String> ifaceList = Lists.newArrayList();
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001084 for (int i = mNetworkPolicy.size() - 1; i >= 0; i--) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001085 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001086
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001087 ifaceList.clear();
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001088 for (int j = connIdents.size() - 1; j >= 0; j--) {
1089 final Pair<String, NetworkIdentity> ident = connIdents.get(j);
1090 if (policy.template.matches(ident.second)) {
1091 ifaceList.add(ident.first);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001092 }
1093 }
1094
1095 if (ifaceList.size() > 0) {
1096 final String[] ifaces = ifaceList.toArray(new String[ifaceList.size()]);
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001097 mNetworkRules.put(policy, ifaces);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001098 }
1099 }
1100
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001101 long lowestRule = Long.MAX_VALUE;
Dianne Hackborn497175b2014-07-01 12:56:08 -07001102 final ArraySet<String> newMeteredIfaces = new ArraySet<String>(states.length);
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001103
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001104 // apply each policy that we found ifaces for; compute remaining data
1105 // based on current cycle and historical stats, and push to kernel.
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001106 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001107 for (int i = mNetworkRules.size()-1; i >= 0; i--) {
1108 final NetworkPolicy policy = mNetworkRules.keyAt(i);
1109 final String[] ifaces = mNetworkRules.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001110
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001111 final long start;
1112 final long totalBytes;
1113 if (policy.hasCycle()) {
1114 start = computeLastCycleBoundary(currentTime, policy);
1115 totalBytes = getTotalBytes(policy.template, start, currentTime);
1116 } else {
1117 start = Long.MAX_VALUE;
1118 totalBytes = 0;
1119 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001120
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001121 if (LOGD) {
1122 Slog.d(TAG, "applying policy " + policy.toString() + " to ifaces "
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001123 + Arrays.toString(ifaces));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001124 }
1125
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001126 final boolean hasWarning = policy.warningBytes != LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001127 final boolean hasLimit = policy.limitBytes != LIMIT_DISABLED;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001128 if (hasLimit || policy.metered) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001129 final long quotaBytes;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001130 if (!hasLimit) {
1131 // metered network, but no policy limit; we still need to
1132 // restrict apps, so push really high quota.
1133 quotaBytes = Long.MAX_VALUE;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001134 } else if (policy.lastLimitSnooze >= start) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001135 // snoozing past quota, but we still need to restrict apps,
1136 // so push really high quota.
1137 quotaBytes = Long.MAX_VALUE;
1138 } else {
1139 // remaining "quota" bytes are based on total usage in
1140 // current cycle. kernel doesn't like 0-byte rules, so we
1141 // set 1-byte quota and disable the radio later.
1142 quotaBytes = Math.max(1, policy.limitBytes - totalBytes);
1143 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001144
1145 if (ifaces.length > 1) {
1146 // TODO: switch to shared quota once NMS supports
1147 Slog.w(TAG, "shared quota unsupported; generating rule for each iface");
Ashish Sharma50fd36d2011-06-15 19:34:53 -07001148 }
1149
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001150 for (String iface : ifaces) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001151 removeInterfaceQuota(iface);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001152 setInterfaceQuota(iface, quotaBytes);
1153 newMeteredIfaces.add(iface);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001154 if (powerSave) {
1155 connIfaces.remove(iface);
1156 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001157 }
1158 }
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001159
1160 // keep track of lowest warning or limit of active policies
1161 if (hasWarning && policy.warningBytes < lowestRule) {
1162 lowestRule = policy.warningBytes;
1163 }
1164 if (hasLimit && policy.limitBytes < lowestRule) {
1165 lowestRule = policy.limitBytes;
1166 }
1167 }
1168
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001169 for (int i = connIfaces.size()-1; i >= 0; i--) {
1170 String iface = connIfaces.valueAt(i);
1171 removeInterfaceQuota(iface);
1172 setInterfaceQuota(iface, Long.MAX_VALUE);
1173 newMeteredIfaces.add(iface);
1174 }
1175
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07001176 mHandler.obtainMessage(MSG_ADVISE_PERSIST_THRESHOLD, lowestRule).sendToTarget();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001177
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001178 // remove quota on any trailing interfaces
Dianne Hackborn497175b2014-07-01 12:56:08 -07001179 for (int i = mMeteredIfaces.size() - 1; i >= 0; i--) {
1180 final String iface = mMeteredIfaces.valueAt(i);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001181 if (!newMeteredIfaces.contains(iface)) {
1182 removeInterfaceQuota(iface);
1183 }
1184 }
1185 mMeteredIfaces = newMeteredIfaces;
1186
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001187 final String[] meteredIfaces = mMeteredIfaces.toArray(new String[mMeteredIfaces.size()]);
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001188 mHandler.obtainMessage(MSG_METERED_IFACES_CHANGED, meteredIfaces).sendToTarget();
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001189 }
1190
1191 /**
1192 * Once any {@link #mNetworkPolicy} are loaded from disk, ensure that we
1193 * have at least a default mobile policy defined.
1194 */
1195 private void ensureActiveMobilePolicyLocked() {
1196 if (LOGV) Slog.v(TAG, "ensureActiveMobilePolicyLocked()");
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001197 if (mSuppressDefaultPolicy) return;
1198
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001199 final TelephonyManager tele = TelephonyManager.from(mContext);
1200
1201 // avoid creating policy when SIM isn't ready
1202 if (tele.getSimState() != SIM_STATE_READY) return;
1203
1204 final String subscriberId = tele.getSubscriberId();
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001205 final NetworkIdentity probeIdent = new NetworkIdentity(
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001206 TYPE_MOBILE, TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001207
1208 // examine to see if any policy is defined for active mobile
1209 boolean mobileDefined = false;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001210 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
1211 if (mNetworkPolicy.valueAt(i).template.matches(probeIdent)) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001212 mobileDefined = true;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001213 break;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001214 }
1215 }
1216
1217 if (!mobileDefined) {
1218 Slog.i(TAG, "no policy for active mobile network; generating default policy");
1219
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001220 // build default mobile policy, and assume usage cycle starts today
1221 final long warningBytes = mContext.getResources().getInteger(
1222 com.android.internal.R.integer.config_networkPolicyDefaultWarning)
1223 * MB_IN_BYTES;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001224
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001225 final Time time = new Time();
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001226 time.setToNow();
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001227
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001228 final int cycleDay = time.monthDay;
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001229 final String cycleTimezone = time.timezone;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001230
Jeff Sharkey4e814c32011-07-14 20:37:37 -07001231 final NetworkTemplate template = buildTemplateMobileAll(subscriberId);
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001232 final NetworkPolicy policy = new NetworkPolicy(template, cycleDay, cycleTimezone,
1233 warningBytes, LIMIT_DISABLED, SNOOZE_NEVER, SNOOZE_NEVER, true, true);
1234 addNetworkPolicyLocked(policy);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001235 }
1236 }
1237
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001238 private void readPolicyLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001239 if (LOGV) Slog.v(TAG, "readPolicyLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001240
1241 // clear any existing policy and read from disk
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001242 mNetworkPolicy.clear();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001243 mUidPolicy.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001244
1245 FileInputStream fis = null;
1246 try {
1247 fis = mPolicyFile.openRead();
1248 final XmlPullParser in = Xml.newPullParser();
1249 in.setInput(fis, null);
1250
1251 int type;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001252 int version = VERSION_INIT;
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001253 while ((type = in.next()) != END_DOCUMENT) {
1254 final String tag = in.getName();
1255 if (type == START_TAG) {
1256 if (TAG_POLICY_LIST.equals(tag)) {
1257 version = readIntAttribute(in, ATTR_VERSION);
Jeff Sharkey46645002011-07-27 21:11:21 -07001258 if (version >= VERSION_ADDED_RESTRICT_BACKGROUND) {
1259 mRestrictBackground = readBooleanAttribute(
1260 in, ATTR_RESTRICT_BACKGROUND);
1261 } else {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001262 mRestrictBackground = false;
Jeff Sharkey46645002011-07-27 21:11:21 -07001263 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001264
1265 } else if (TAG_NETWORK_POLICY.equals(tag)) {
1266 final int networkTemplate = readIntAttribute(in, ATTR_NETWORK_TEMPLATE);
1267 final String subscriberId = in.getAttributeValue(null, ATTR_SUBSCRIBER_ID);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001268 final String networkId;
1269 if (version >= VERSION_ADDED_NETWORK_ID) {
1270 networkId = in.getAttributeValue(null, ATTR_NETWORK_ID);
1271 } else {
1272 networkId = null;
1273 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001274 final int cycleDay = readIntAttribute(in, ATTR_CYCLE_DAY);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001275 final String cycleTimezone;
1276 if (version >= VERSION_ADDED_TIMEZONE) {
1277 cycleTimezone = in.getAttributeValue(null, ATTR_CYCLE_TIMEZONE);
1278 } else {
1279 cycleTimezone = Time.TIMEZONE_UTC;
1280 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001281 final long warningBytes = readLongAttribute(in, ATTR_WARNING_BYTES);
1282 final long limitBytes = readLongAttribute(in, ATTR_LIMIT_BYTES);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001283 final long lastLimitSnooze;
1284 if (version >= VERSION_SPLIT_SNOOZE) {
1285 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_LIMIT_SNOOZE);
1286 } else if (version >= VERSION_ADDED_SNOOZE) {
1287 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_SNOOZE);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001288 } else {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001289 lastLimitSnooze = SNOOZE_NEVER;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001290 }
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001291 final boolean metered;
1292 if (version >= VERSION_ADDED_METERED) {
1293 metered = readBooleanAttribute(in, ATTR_METERED);
1294 } else {
1295 switch (networkTemplate) {
1296 case MATCH_MOBILE_3G_LOWER:
1297 case MATCH_MOBILE_4G:
1298 case MATCH_MOBILE_ALL:
1299 metered = true;
1300 break;
1301 default:
1302 metered = false;
1303 }
1304 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001305 final long lastWarningSnooze;
1306 if (version >= VERSION_SPLIT_SNOOZE) {
1307 lastWarningSnooze = readLongAttribute(in, ATTR_LAST_WARNING_SNOOZE);
1308 } else {
1309 lastWarningSnooze = SNOOZE_NEVER;
1310 }
Jeff Sharkey837f9242012-03-20 16:52:20 -07001311 final boolean inferred;
1312 if (version >= VERSION_ADDED_INFERRED) {
1313 inferred = readBooleanAttribute(in, ATTR_INFERRED);
1314 } else {
1315 inferred = false;
1316 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001317
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001318 final NetworkTemplate template = new NetworkTemplate(
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001319 networkTemplate, subscriberId, networkId);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001320 mNetworkPolicy.put(template, new NetworkPolicy(template, cycleDay,
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001321 cycleTimezone, warningBytes, limitBytes, lastWarningSnooze,
Jeff Sharkey837f9242012-03-20 16:52:20 -07001322 lastLimitSnooze, metered, inferred));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001323
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001324 } else if (TAG_UID_POLICY.equals(tag)) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001325 final int uid = readIntAttribute(in, ATTR_UID);
1326 final int policy = readIntAttribute(in, ATTR_POLICY);
1327
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001328 if (UserHandle.isApp(uid)) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001329 setUidPolicyUncheckedLocked(uid, policy, false);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001330 } else {
1331 Slog.w(TAG, "unable to apply policy to UID " + uid + "; ignoring");
1332 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001333 } else if (TAG_APP_POLICY.equals(tag)) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001334 final int appId = readIntAttribute(in, ATTR_APP_ID);
1335 final int policy = readIntAttribute(in, ATTR_POLICY);
1336
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001337 // TODO: set for other users during upgrade
1338 final int uid = UserHandle.getUid(UserHandle.USER_OWNER, appId);
1339 if (UserHandle.isApp(uid)) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001340 setUidPolicyUncheckedLocked(uid, policy, false);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001341 } else {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001342 Slog.w(TAG, "unable to apply policy to UID " + uid + "; ignoring");
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001343 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001344 }
1345 }
1346 }
1347
1348 } catch (FileNotFoundException e) {
1349 // missing policy is okay, probably first boot
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001350 upgradeLegacyBackgroundData();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001351 } catch (IOException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001352 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001353 } catch (XmlPullParserException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001354 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001355 } finally {
1356 IoUtils.closeQuietly(fis);
1357 }
1358 }
1359
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001360 /**
1361 * Upgrade legacy background data flags, notifying listeners of one last
1362 * change to always-true.
1363 */
1364 private void upgradeLegacyBackgroundData() {
1365 mRestrictBackground = Settings.Secure.getInt(
1366 mContext.getContentResolver(), Settings.Secure.BACKGROUND_DATA, 1) != 1;
1367
1368 // kick off one last broadcast if restricted
1369 if (mRestrictBackground) {
1370 final Intent broadcast = new Intent(
1371 ConnectivityManager.ACTION_BACKGROUND_DATA_SETTING_CHANGED);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07001372 mContext.sendBroadcastAsUser(broadcast, UserHandle.ALL);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001373 }
1374 }
1375
Dianne Hackborn497175b2014-07-01 12:56:08 -07001376 void writePolicyLocked() {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001377 if (LOGV) Slog.v(TAG, "writePolicyLocked()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001378
1379 FileOutputStream fos = null;
1380 try {
1381 fos = mPolicyFile.startWrite();
1382
1383 XmlSerializer out = new FastXmlSerializer();
1384 out.setOutput(fos, "utf-8");
1385 out.startDocument(null, true);
1386
1387 out.startTag(null, TAG_POLICY_LIST);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001388 writeIntAttribute(out, ATTR_VERSION, VERSION_LATEST);
Jeff Sharkey46645002011-07-27 21:11:21 -07001389 writeBooleanAttribute(out, ATTR_RESTRICT_BACKGROUND, mRestrictBackground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001390
1391 // write all known network policies
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001392 for (int i = 0; i < mNetworkPolicy.size(); i++) {
1393 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001394 final NetworkTemplate template = policy.template;
1395
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001396 out.startTag(null, TAG_NETWORK_POLICY);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001397 writeIntAttribute(out, ATTR_NETWORK_TEMPLATE, template.getMatchRule());
1398 final String subscriberId = template.getSubscriberId();
1399 if (subscriberId != null) {
1400 out.attribute(null, ATTR_SUBSCRIBER_ID, subscriberId);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001401 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001402 final String networkId = template.getNetworkId();
1403 if (networkId != null) {
1404 out.attribute(null, ATTR_NETWORK_ID, networkId);
1405 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001406 writeIntAttribute(out, ATTR_CYCLE_DAY, policy.cycleDay);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001407 out.attribute(null, ATTR_CYCLE_TIMEZONE, policy.cycleTimezone);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001408 writeLongAttribute(out, ATTR_WARNING_BYTES, policy.warningBytes);
1409 writeLongAttribute(out, ATTR_LIMIT_BYTES, policy.limitBytes);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001410 writeLongAttribute(out, ATTR_LAST_WARNING_SNOOZE, policy.lastWarningSnooze);
1411 writeLongAttribute(out, ATTR_LAST_LIMIT_SNOOZE, policy.lastLimitSnooze);
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001412 writeBooleanAttribute(out, ATTR_METERED, policy.metered);
Jeff Sharkey837f9242012-03-20 16:52:20 -07001413 writeBooleanAttribute(out, ATTR_INFERRED, policy.inferred);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001414 out.endTag(null, TAG_NETWORK_POLICY);
1415 }
1416
1417 // write all known uid policies
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001418 for (int i = 0; i < mUidPolicy.size(); i++) {
1419 final int uid = mUidPolicy.keyAt(i);
1420 final int policy = mUidPolicy.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001421
Jeff Sharkey497e4432011-06-14 17:27:29 -07001422 // skip writing empty policies
1423 if (policy == POLICY_NONE) continue;
1424
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001425 out.startTag(null, TAG_UID_POLICY);
1426 writeIntAttribute(out, ATTR_UID, uid);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001427 writeIntAttribute(out, ATTR_POLICY, policy);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001428 out.endTag(null, TAG_UID_POLICY);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001429 }
1430
1431 out.endTag(null, TAG_POLICY_LIST);
1432 out.endDocument();
1433
1434 mPolicyFile.finishWrite(fos);
1435 } catch (IOException e) {
1436 if (fos != null) {
1437 mPolicyFile.failWrite(fos);
1438 }
1439 }
1440 }
1441
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001442 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001443 public void setUidPolicy(int uid, int policy) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001444 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001445
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001446 if (!UserHandle.isApp(uid)) {
1447 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001448 }
1449
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001450 synchronized (mRulesLock) {
1451 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
1452 if (oldPolicy != policy) {
1453 setUidPolicyUncheckedLocked(uid, policy, true);
1454 }
1455 }
Jeff Sharkey497e4432011-06-14 17:27:29 -07001456 }
1457
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001458 @Override
1459 public void addUidPolicy(int uid, int policy) {
1460 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001461
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001462 if (!UserHandle.isApp(uid)) {
1463 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
1464 }
1465
1466 synchronized (mRulesLock) {
1467 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
1468 policy |= oldPolicy;
1469 if (oldPolicy != policy) {
1470 setUidPolicyUncheckedLocked(uid, policy, true);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001471 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001472 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001473 }
1474
1475 @Override
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001476 public void removeUidPolicy(int uid, int policy) {
1477 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1478
1479 if (!UserHandle.isApp(uid)) {
1480 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
1481 }
1482
1483 synchronized (mRulesLock) {
1484 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
1485 policy = oldPolicy & ~policy;
1486 if (oldPolicy != policy) {
1487 setUidPolicyUncheckedLocked(uid, policy, true);
1488 }
1489 }
1490 }
1491
1492 private void setUidPolicyUncheckedLocked(int uid, int policy, boolean persist) {
1493 mUidPolicy.put(uid, policy);
1494
1495 // uid policy changed, recompute rules and persist policy.
1496 updateRulesForUidLocked(uid);
1497 if (persist) {
1498 writePolicyLocked();
1499 }
1500 }
1501
1502 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001503 public int getUidPolicy(int uid) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001504 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1505
Jeff Sharkeya4620792011-05-20 15:29:23 -07001506 synchronized (mRulesLock) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001507 return mUidPolicy.get(uid, POLICY_NONE);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001508 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001509 }
1510
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001511 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001512 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -07001513 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1514
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001515 int[] uids = new int[0];
Jeff Sharkey854b2b12012-04-13 16:03:40 -07001516 synchronized (mRulesLock) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001517 for (int i = 0; i < mUidPolicy.size(); i++) {
1518 final int uid = mUidPolicy.keyAt(i);
1519 final int uidPolicy = mUidPolicy.valueAt(i);
1520 if (uidPolicy == policy) {
1521 uids = appendInt(uids, uid);
Jeff Sharkey854b2b12012-04-13 16:03:40 -07001522 }
1523 }
1524 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001525 return uids;
1526 }
1527
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001528 @Override
1529 public int[] getPowerSaveAppIdWhitelist() {
1530 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1531
1532 synchronized (mRulesLock) {
1533 int size = mPowerSaveWhitelistAppIds.size();
1534 int[] appids = new int[size];
1535 for (int i = 0; i < size; i++) {
1536 appids[i] = mPowerSaveWhitelistAppIds.keyAt(i);
1537 }
1538 return appids;
1539 }
1540 }
1541
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001542 /**
1543 * Remove any policies associated with given {@link UserHandle}, persisting
1544 * if any changes are made.
1545 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07001546 void removePoliciesForUserLocked(int userId) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001547 if (LOGV) Slog.v(TAG, "removePoliciesForUserLocked()");
1548
1549 int[] uids = new int[0];
1550 for (int i = 0; i < mUidPolicy.size(); i++) {
1551 final int uid = mUidPolicy.keyAt(i);
1552 if (UserHandle.getUserId(uid) == userId) {
1553 uids = appendInt(uids, uid);
1554 }
1555 }
1556
1557 if (uids.length > 0) {
1558 for (int uid : uids) {
1559 mUidPolicy.delete(uid);
1560 updateRulesForUidLocked(uid);
1561 }
1562 writePolicyLocked();
1563 }
Jeff Sharkey854b2b12012-04-13 16:03:40 -07001564 }
1565
1566 @Override
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001567 public void registerListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07001568 // TODO: create permission for observing network policy
1569 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
1570
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001571 mListeners.register(listener);
1572
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001573 // TODO: consider dispatching existing rules to new listeners
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001574 }
1575
1576 @Override
1577 public void unregisterListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07001578 // TODO: create permission for observing network policy
1579 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
1580
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001581 mListeners.unregister(listener);
1582 }
1583
Jeff Sharkey1b861272011-05-22 00:34:52 -07001584 @Override
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001585 public void setNetworkPolicies(NetworkPolicy[] policies) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001586 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1587
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001588 maybeRefreshTrustedTime();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001589 synchronized (mRulesLock) {
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001590 mNetworkPolicy.clear();
1591 for (NetworkPolicy policy : policies) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001592 mNetworkPolicy.put(policy.template, policy);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001593 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001594
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001595 updateNetworkEnabledLocked();
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001596 updateNetworkRulesLocked();
Jeff Sharkey497e4432011-06-14 17:27:29 -07001597 updateNotificationsLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001598 writePolicyLocked();
1599 }
1600 }
1601
Dianne Hackborn497175b2014-07-01 12:56:08 -07001602 void addNetworkPolicyLocked(NetworkPolicy policy) {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001603 mNetworkPolicy.put(policy.template, policy);
1604
1605 updateNetworkEnabledLocked();
1606 updateNetworkRulesLocked();
1607 updateNotificationsLocked();
1608 writePolicyLocked();
1609 }
1610
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001611 @Override
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001612 public NetworkPolicy[] getNetworkPolicies() {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001613 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001614 mContext.enforceCallingOrSelfPermission(READ_PHONE_STATE, TAG);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001615
1616 synchronized (mRulesLock) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001617 return mNetworkPolicy.values().toArray(new NetworkPolicy[mNetworkPolicy.size()]);
1618 }
1619 }
1620
1621 @Override
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001622 public void snoozeLimit(NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001623 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkey6c0b4f32012-06-12 21:06:30 -07001624
1625 final long token = Binder.clearCallingIdentity();
1626 try {
1627 performSnooze(template, TYPE_LIMIT);
1628 } finally {
1629 Binder.restoreCallingIdentity(token);
1630 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001631 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001632
Dianne Hackborn497175b2014-07-01 12:56:08 -07001633 void performSnooze(NetworkTemplate template, int type) {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001634 maybeRefreshTrustedTime();
1635 final long currentTime = currentTimeMillis();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001636 synchronized (mRulesLock) {
1637 // find and snooze local policy that matches
1638 final NetworkPolicy policy = mNetworkPolicy.get(template);
1639 if (policy == null) {
1640 throw new IllegalArgumentException("unable to find policy for " + template);
1641 }
1642
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001643 switch (type) {
1644 case TYPE_WARNING:
1645 policy.lastWarningSnooze = currentTime;
1646 break;
1647 case TYPE_LIMIT:
1648 policy.lastLimitSnooze = currentTime;
1649 break;
1650 default:
1651 throw new IllegalArgumentException("unexpected type");
1652 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001653
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001654 updateNetworkEnabledLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001655 updateNetworkRulesLocked();
1656 updateNotificationsLocked();
1657 writePolicyLocked();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001658 }
1659 }
1660
1661 @Override
Jeff Sharkey46645002011-07-27 21:11:21 -07001662 public void setRestrictBackground(boolean restrictBackground) {
1663 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1664
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001665 maybeRefreshTrustedTime();
Jeff Sharkey46645002011-07-27 21:11:21 -07001666 synchronized (mRulesLock) {
1667 mRestrictBackground = restrictBackground;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001668 updateRulesForGlobalChangeLocked(false);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001669 updateNotificationsLocked();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001670 writePolicyLocked();
Jeff Sharkey46645002011-07-27 21:11:21 -07001671 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08001672
1673 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED, restrictBackground ? 1 : 0, 0)
1674 .sendToTarget();
Jeff Sharkey46645002011-07-27 21:11:21 -07001675 }
1676
1677 @Override
1678 public boolean getRestrictBackground() {
1679 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1680
1681 synchronized (mRulesLock) {
1682 return mRestrictBackground;
1683 }
1684 }
1685
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001686 private NetworkPolicy findPolicyForNetworkLocked(NetworkIdentity ident) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001687 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
1688 NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001689 if (policy.template.matches(ident)) {
1690 return policy;
1691 }
1692 }
1693 return null;
1694 }
1695
1696 @Override
1697 public NetworkQuotaInfo getNetworkQuotaInfo(NetworkState state) {
1698 mContext.enforceCallingOrSelfPermission(ACCESS_NETWORK_STATE, TAG);
1699
1700 // only returns usage summary, so we don't require caller to have
1701 // READ_NETWORK_USAGE_HISTORY.
1702 final long token = Binder.clearCallingIdentity();
1703 try {
1704 return getNetworkQuotaInfoUnchecked(state);
1705 } finally {
1706 Binder.restoreCallingIdentity(token);
1707 }
1708 }
1709
1710 private NetworkQuotaInfo getNetworkQuotaInfoUnchecked(NetworkState state) {
1711 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1712
1713 final NetworkPolicy policy;
1714 synchronized (mRulesLock) {
1715 policy = findPolicyForNetworkLocked(ident);
1716 }
1717
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001718 if (policy == null || !policy.hasCycle()) {
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001719 // missing policy means we can't derive useful quota info
1720 return null;
1721 }
1722
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001723 final long currentTime = currentTimeMillis();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001724
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001725 // find total bytes used under policy
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001726 final long start = computeLastCycleBoundary(currentTime, policy);
1727 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001728 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07001729
1730 // report soft and hard limits under policy
1731 final long softLimitBytes = policy.warningBytes != WARNING_DISABLED ? policy.warningBytes
1732 : NetworkQuotaInfo.NO_LIMIT;
1733 final long hardLimitBytes = policy.limitBytes != LIMIT_DISABLED ? policy.limitBytes
1734 : NetworkQuotaInfo.NO_LIMIT;
1735
1736 return new NetworkQuotaInfo(totalBytes, softLimitBytes, hardLimitBytes);
1737 }
1738
Jeff Sharkey46645002011-07-27 21:11:21 -07001739 @Override
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001740 public boolean isNetworkMetered(NetworkState state) {
1741 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
1742
Jeff Sharkeyf166f482012-04-30 15:59:21 -07001743 // roaming networks are always considered metered
1744 if (ident.getRoaming()) {
1745 return true;
1746 }
1747
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001748 final NetworkPolicy policy;
1749 synchronized (mRulesLock) {
1750 policy = findPolicyForNetworkLocked(ident);
1751 }
1752
1753 if (policy != null) {
1754 return policy.metered;
1755 } else {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001756 final int type = state.networkInfo.getType();
1757 if (isNetworkTypeMobile(type) || type == TYPE_WIMAX) {
1758 return true;
1759 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07001760 return false;
1761 }
1762 }
1763
1764 @Override
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001765 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
Jeff Sharkey75279902011-05-24 18:39:45 -07001766 mContext.enforceCallingOrSelfPermission(DUMP, TAG);
Jeff Sharkey1b861272011-05-22 00:34:52 -07001767
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001768 final IndentingPrintWriter fout = new IndentingPrintWriter(writer, " ");
1769
Dianne Hackborn497175b2014-07-01 12:56:08 -07001770 final ArraySet<String> argSet = new ArraySet<String>(args.length);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001771 for (String arg : args) {
1772 argSet.add(arg);
1773 }
1774
Jeff Sharkey1b861272011-05-22 00:34:52 -07001775 synchronized (mRulesLock) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001776 if (argSet.contains("--unsnooze")) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001777 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
1778 mNetworkPolicy.valueAt(i).clearSnooze();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001779 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001780
1781 updateNetworkEnabledLocked();
1782 updateNetworkRulesLocked();
1783 updateNotificationsLocked();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001784 writePolicyLocked();
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001785
1786 fout.println("Cleared snooze timestamps");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001787 return;
1788 }
1789
Jeff Sharkey46645002011-07-27 21:11:21 -07001790 fout.print("Restrict background: "); fout.println(mRestrictBackground);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001791 fout.print("Restrict power: "); fout.println(mRestrictPower);
Dianne Hackborn497175b2014-07-01 12:56:08 -07001792 fout.print("Current foreground state: "); fout.println(mCurForegroundState);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001793 fout.println("Network policies:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001794 fout.increaseIndent();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001795 for (int i = 0; i < mNetworkPolicy.size(); i++) {
1796 fout.println(mNetworkPolicy.valueAt(i).toString());
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001797 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001798 fout.decreaseIndent();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001799
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001800 fout.print("Metered ifaces: "); fout.println(String.valueOf(mMeteredIfaces));
1801
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001802 fout.println("Policy for UIDs:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001803 fout.increaseIndent();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001804 int size = mUidPolicy.size();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001805 for (int i = 0; i < size; i++) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001806 final int uid = mUidPolicy.keyAt(i);
1807 final int policy = mUidPolicy.valueAt(i);
1808 fout.print("UID=");
1809 fout.print(uid);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001810 fout.print(" policy=");
1811 dumpPolicy(fout, policy);
1812 fout.println();
1813 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001814 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001815
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001816 size = mPowerSaveWhitelistAppIds.size();
1817 if (size > 0) {
1818 fout.println("Power save whitelist app ids:");
1819 fout.increaseIndent();
1820 for (int i = 0; i < size; i++) {
1821 fout.print("UID=");
1822 fout.print(mPowerSaveWhitelistAppIds.keyAt(i));
1823 fout.print(": ");
1824 fout.print(mPowerSaveWhitelistAppIds.valueAt(i));
1825 fout.println();
1826 }
1827 fout.decreaseIndent();
1828 }
1829
Jeff Sharkey1b861272011-05-22 00:34:52 -07001830 final SparseBooleanArray knownUids = new SparseBooleanArray();
Dianne Hackborn497175b2014-07-01 12:56:08 -07001831 collectKeys(mUidState, knownUids);
Jeff Sharkey1b861272011-05-22 00:34:52 -07001832 collectKeys(mUidRules, knownUids);
1833
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001834 fout.println("Status for known UIDs:");
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001835 fout.increaseIndent();
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001836 size = knownUids.size();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001837 for (int i = 0; i < size; i++) {
1838 final int uid = knownUids.keyAt(i);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001839 fout.print("UID=");
Jeff Sharkey1b861272011-05-22 00:34:52 -07001840 fout.print(uid);
1841
Dianne Hackborn497175b2014-07-01 12:56:08 -07001842 int state = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
1843 fout.print(" state=");
1844 fout.print(state);
1845 fout.print(state <= mCurForegroundState ? " (fg)" : " (bg)");
1846
1847 fout.print(" pids=");
1848 final int foregroundIndex = mUidPidState.indexOfKey(uid);
Jeff Sharkey1b861272011-05-22 00:34:52 -07001849 if (foregroundIndex < 0) {
1850 fout.print("UNKNOWN");
1851 } else {
Dianne Hackborn497175b2014-07-01 12:56:08 -07001852 dumpSparseIntArray(fout, mUidPidState.valueAt(foregroundIndex));
Jeff Sharkey1b861272011-05-22 00:34:52 -07001853 }
1854
1855 fout.print(" rules=");
1856 final int rulesIndex = mUidRules.indexOfKey(uid);
1857 if (rulesIndex < 0) {
1858 fout.print("UNKNOWN");
1859 } else {
1860 dumpRules(fout, mUidRules.valueAt(rulesIndex));
1861 }
1862
1863 fout.println();
1864 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001865 fout.decreaseIndent();
Jeff Sharkey1b861272011-05-22 00:34:52 -07001866 }
1867 }
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001868
1869 @Override
1870 public boolean isUidForeground(int uid) {
Jeff Sharkey497e4432011-06-14 17:27:29 -07001871 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
1872
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001873 synchronized (mRulesLock) {
Dianne Hackborn497175b2014-07-01 12:56:08 -07001874 return isUidForegroundLocked(uid);
Jeff Sharkey9599cc52011-05-22 14:59:31 -07001875 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001876 }
1877
Dianne Hackborn497175b2014-07-01 12:56:08 -07001878 boolean isUidForegroundLocked(int uid) {
1879 // only really in foreground when screen is also on
1880 return mScreenOn && mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY)
1881 <= mCurForegroundState;
1882 }
1883
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001884 /**
Dianne Hackborn497175b2014-07-01 12:56:08 -07001885 * Process state of PID changed; recompute state at UID level. If
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001886 * changed, will trigger {@link #updateRulesForUidLocked(int)}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001887 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07001888 void computeUidStateLocked(int uid) {
1889 final SparseIntArray pidState = mUidPidState.get(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001890
1891 // current pid is dropping foreground; examine other pids
Dianne Hackborn497175b2014-07-01 12:56:08 -07001892 int uidState = ActivityManager.PROCESS_STATE_CACHED_EMPTY;
1893 if (pidState != null) {
1894 final int size = pidState.size();
1895 for (int i = 0; i < size; i++) {
1896 final int state = pidState.valueAt(i);
1897 if (state < uidState) {
1898 uidState = state;
1899 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001900 }
1901 }
1902
Dianne Hackborn497175b2014-07-01 12:56:08 -07001903 final int oldUidState = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
1904 if (oldUidState != uidState) {
1905 // state changed, push updated rules
1906 mUidState.put(uid, uidState);
1907 final boolean oldForeground = oldUidState <= mCurForegroundState;
1908 final boolean newForeground = uidState <= mCurForegroundState;
1909 if (oldForeground != newForeground) {
1910 updateRulesForUidLocked(uid);
1911 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001912 }
1913 }
1914
Jeff Sharkeya4620792011-05-20 15:29:23 -07001915 private void updateScreenOn() {
1916 synchronized (mRulesLock) {
1917 try {
Jeff Brown037c33e2014-04-09 00:31:55 -07001918 mScreenOn = mPowerManager.isInteractive();
Jeff Sharkeya4620792011-05-20 15:29:23 -07001919 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001920 // ignored; service lives in system_server
Jeff Sharkeya4620792011-05-20 15:29:23 -07001921 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001922 updateRulesForScreenLocked();
Jeff Sharkeya4620792011-05-20 15:29:23 -07001923 }
1924 }
1925
1926 /**
1927 * Update rules that might be changed by {@link #mScreenOn} value.
1928 */
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001929 private void updateRulesForScreenLocked() {
Jeff Sharkeya4620792011-05-20 15:29:23 -07001930 // only update rules for anyone with foreground activities
Dianne Hackborn497175b2014-07-01 12:56:08 -07001931 final int size = mUidState.size();
Jeff Sharkeya4620792011-05-20 15:29:23 -07001932 for (int i = 0; i < size; i++) {
Dianne Hackborn497175b2014-07-01 12:56:08 -07001933 if (mUidState.valueAt(i) <= mCurForegroundState) {
1934 final int uid = mUidState.keyAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001935 updateRulesForUidLocked(uid);
Jeff Sharkeya4620792011-05-20 15:29:23 -07001936 }
1937 }
1938 }
1939
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001940 /**
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001941 * Update rules that might be changed by {@link #mRestrictBackground}
1942 * or {@link #mRestrictPower} value.
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001943 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07001944 void updateRulesForGlobalChangeLocked(boolean restrictedNetworksChanged) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001945 final PackageManager pm = mContext.getPackageManager();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001946 final UserManager um = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
1947
Dianne Hackborn497175b2014-07-01 12:56:08 -07001948 // If we are in restrict power mode, we allow all important apps
1949 // to have data access. Otherwise, we restrict data access to only
1950 // the top apps.
1951 mCurForegroundState = (!mRestrictBackground && mRestrictPower)
1952 ? ActivityManager.PROCESS_STATE_IMPORTANT_FOREGROUND
1953 : ActivityManager.PROCESS_STATE_TOP;
1954
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001955 // update rules for all installed applications
1956 final List<UserInfo> users = um.getUsers();
1957 final List<ApplicationInfo> apps = pm.getInstalledApplications(
1958 PackageManager.GET_UNINSTALLED_PACKAGES | PackageManager.GET_DISABLED_COMPONENTS);
1959
1960 for (UserInfo user : users) {
1961 for (ApplicationInfo app : apps) {
1962 final int uid = UserHandle.getUid(user.id, app.uid);
1963 updateRulesForUidLocked(uid);
1964 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001965 }
1966
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001967 // limit data usage for some internal system services
1968 updateRulesForUidLocked(android.os.Process.MEDIA_UID);
1969 updateRulesForUidLocked(android.os.Process.DRM_UID);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001970
1971 // If the set of restricted networks may have changed, re-evaluate those.
1972 if (restrictedNetworksChanged) {
1973 updateNetworkRulesLocked();
1974 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001975 }
1976
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001977 private static boolean isUidValidForRules(int uid) {
1978 // allow rules on specific system services, and any apps
1979 if (uid == android.os.Process.MEDIA_UID || uid == android.os.Process.DRM_UID
Dianne Hackbornf02b60a2012-08-16 10:48:27 -07001980 || UserHandle.isApp(uid)) {
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001981 return true;
1982 }
1983
1984 return false;
1985 }
1986
Dianne Hackborn497175b2014-07-01 12:56:08 -07001987 void updateRulesForUidLocked(int uid) {
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07001988 if (!isUidValidForRules(uid)) return;
1989
Dianne Hackborn497175b2014-07-01 12:56:08 -07001990 final int uidPolicy = mUidPolicy.get(uid, POLICY_NONE);
1991 final boolean uidForeground = isUidForegroundLocked(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07001992
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07001993 // derive active rules based on policy and active state
1994 int uidRules = RULE_ALLOW_ALL;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001995 if (!uidForeground && (uidPolicy & POLICY_REJECT_METERED_BACKGROUND) != 0) {
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001996 // uid in background, and policy says to block metered data
1997 uidRules = RULE_REJECT_METERED;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001998 } else if (mRestrictBackground) {
1999 if (!uidForeground) {
2000 // uid in background, and global background disabled
2001 uidRules = RULE_REJECT_METERED;
2002 }
2003 } else if (mRestrictPower) {
2004 final boolean whitelisted = mPowerSaveWhitelistAppIds.get(UserHandle.getAppId(uid));
2005 if (!whitelisted && !uidForeground
2006 && (uidPolicy & POLICY_ALLOW_BACKGROUND_BATTERY_SAVE) == 0) {
2007 // uid is in background, restrict power use mode is on (so we want to
2008 // restrict all background network access), and this uid is not on the
2009 // white list of those allowed background access.
2010 uidRules = RULE_REJECT_METERED;
2011 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002012 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002013
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002014 // TODO: only dispatch when rules actually change
2015
Jeff Sharkey350083e2011-06-29 10:45:16 -07002016 if (uidRules == RULE_ALLOW_ALL) {
2017 mUidRules.delete(uid);
2018 } else {
2019 mUidRules.put(uid, uidRules);
2020 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002021
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07002022 final boolean rejectMetered = (uidRules & RULE_REJECT_METERED) != 0;
Ashish Sharma50fd36d2011-06-15 19:34:53 -07002023 setUidNetworkRules(uid, rejectMetered);
Jeff Sharkey497e4432011-06-14 17:27:29 -07002024
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002025 // dispatch changed rule to existing listeners
Jeff Sharkey4414cea2011-06-24 17:05:24 -07002026 mHandler.obtainMessage(MSG_RULES_CHANGED, uid, uidRules).sendToTarget();
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07002027
2028 try {
2029 // adjust stats accounting based on foreground status
2030 mNetworkStats.setUidForeground(uid, uidForeground);
2031 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002032 // ignored; service lives in system_server
Jeff Sharkeyb5d55e32011-08-10 17:53:27 -07002033 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07002034 }
2035
2036 private Handler.Callback mHandlerCallback = new Handler.Callback() {
Jeff Sharkeybfdd6802012-04-09 10:49:19 -07002037 @Override
Jeff Sharkey4414cea2011-06-24 17:05:24 -07002038 public boolean handleMessage(Message msg) {
2039 switch (msg.what) {
2040 case MSG_RULES_CHANGED: {
2041 final int uid = msg.arg1;
2042 final int uidRules = msg.arg2;
2043 final int length = mListeners.beginBroadcast();
2044 for (int i = 0; i < length; i++) {
2045 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
2046 if (listener != null) {
2047 try {
2048 listener.onUidRulesChanged(uid, uidRules);
2049 } catch (RemoteException e) {
2050 }
2051 }
2052 }
2053 mListeners.finishBroadcast();
2054 return true;
2055 }
2056 case MSG_METERED_IFACES_CHANGED: {
2057 final String[] meteredIfaces = (String[]) msg.obj;
2058 final int length = mListeners.beginBroadcast();
2059 for (int i = 0; i < length; i++) {
2060 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
2061 if (listener != null) {
2062 try {
2063 listener.onMeteredIfacesChanged(meteredIfaces);
2064 } catch (RemoteException e) {
2065 }
2066 }
2067 }
2068 mListeners.finishBroadcast();
2069 return true;
2070 }
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08002071 case MSG_LIMIT_REACHED: {
2072 final String iface = (String) msg.obj;
2073
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002074 maybeRefreshTrustedTime();
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08002075 synchronized (mRulesLock) {
2076 if (mMeteredIfaces.contains(iface)) {
2077 try {
2078 // force stats update to make sure we have
2079 // numbers that caused alert to trigger.
2080 mNetworkStats.forceUpdate();
2081 } catch (RemoteException e) {
2082 // ignored; service lives in system_server
2083 }
2084
2085 updateNetworkEnabledLocked();
2086 updateNotificationsLocked();
2087 }
2088 }
2089 return true;
2090 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08002091 case MSG_RESTRICT_BACKGROUND_CHANGED: {
2092 final boolean restrictBackground = msg.arg1 != 0;
2093 final int length = mListeners.beginBroadcast();
2094 for (int i = 0; i < length; i++) {
2095 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
2096 if (listener != null) {
2097 try {
2098 listener.onRestrictBackgroundChanged(restrictBackground);
2099 } catch (RemoteException e) {
2100 }
2101 }
2102 }
2103 mListeners.finishBroadcast();
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07002104 return true;
2105 }
2106 case MSG_ADVISE_PERSIST_THRESHOLD: {
2107 final long lowestRule = (Long) msg.obj;
2108 try {
2109 // make sure stats are recorded frequently enough; we aim
2110 // for 2MB threshold for 2GB/month rules.
2111 final long persistThreshold = lowestRule / 1000;
2112 mNetworkStats.advisePersistThreshold(persistThreshold);
2113 } catch (RemoteException e) {
2114 // ignored; service lives in system_server
2115 }
2116 return true;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08002117 }
Jeff Sharkey0abe5562012-06-19 13:32:22 -07002118 case MSG_SCREEN_ON_CHANGED: {
2119 updateScreenOn();
2120 return true;
2121 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07002122 default: {
2123 return false;
Jeff Sharkeyaf11d482011-06-13 00:14:31 -07002124 }
2125 }
2126 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07002127 };
Jeff Sharkey22c055e2011-06-12 21:13:51 -07002128
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002129 private void setInterfaceQuota(String iface, long quotaBytes) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002130 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002131 mNetworkManager.setInterfaceQuota(iface, quotaBytes);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002132 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002133 Log.wtf(TAG, "problem setting interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002134 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002135 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002136 }
2137 }
2138
2139 private void removeInterfaceQuota(String iface) {
2140 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002141 mNetworkManager.removeInterfaceQuota(iface);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002142 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002143 Log.wtf(TAG, "problem removing interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002144 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002145 // ignored; service lives in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002146 }
2147 }
2148
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002149 private void setUidNetworkRules(int uid, boolean rejectOnQuotaInterfaces) {
2150 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002151 mNetworkManager.setUidNetworkRules(uid, rejectOnQuotaInterfaces);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002152 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002153 Log.wtf(TAG, "problem setting uid rules", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002154 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002155 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07002156 }
2157 }
2158
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002159 /**
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08002160 * Control {@link IConnectivityManager#setPolicyDataEnable(int, boolean)}.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002161 */
2162 private void setPolicyDataEnable(int networkType, boolean enabled) {
Jeff Sharkey3f3115b2011-11-08 16:30:37 -08002163 try {
2164 mConnManager.setPolicyDataEnable(networkType, enabled);
2165 } catch (RemoteException e) {
2166 // ignored; service lives in system_server
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002167 }
2168 }
2169
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002170 private long getTotalBytes(NetworkTemplate template, long start, long end) {
2171 try {
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -07002172 return mNetworkStats.getNetworkTotalBytes(template, start, end);
Jeff Sharkey63abc372012-01-11 18:38:16 -08002173 } catch (RuntimeException e) {
2174 Slog.w(TAG, "problem reading network stats: " + e);
2175 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002176 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002177 // ignored; service lives in system_server
2178 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002179 }
2180 }
2181
Jeff Sharkey8c1dc722012-05-04 14:49:37 -07002182 private boolean isBandwidthControlEnabled() {
2183 final long token = Binder.clearCallingIdentity();
2184 try {
2185 return mNetworkManager.isBandwidthControlEnabled();
2186 } catch (RemoteException e) {
2187 // ignored; service lives in system_server
2188 return false;
2189 } finally {
2190 Binder.restoreCallingIdentity(token);
2191 }
2192 }
2193
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002194 /**
2195 * Try refreshing {@link #mTime} when stale.
2196 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07002197 void maybeRefreshTrustedTime() {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002198 if (mTime.getCacheAge() > TIME_CACHE_MAX_AGE) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002199 mTime.forceRefresh();
2200 }
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002201 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002202
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002203 private long currentTimeMillis() {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002204 return mTime.hasCache() ? mTime.currentTimeMillis() : System.currentTimeMillis();
2205 }
2206
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07002207 private static Intent buildAllowBackgroundDataIntent() {
2208 return new Intent(ACTION_ALLOW_BACKGROUND);
2209 }
2210
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08002211 private static Intent buildSnoozeWarningIntent(NetworkTemplate template) {
2212 final Intent intent = new Intent(ACTION_SNOOZE_WARNING);
2213 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
2214 return intent;
2215 }
2216
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002217 private static Intent buildNetworkOverLimitIntent(NetworkTemplate template) {
2218 final Intent intent = new Intent();
2219 intent.setComponent(new ComponentName(
2220 "com.android.systemui", "com.android.systemui.net.NetworkOverLimitActivity"));
2221 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2222 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
2223 return intent;
2224 }
2225
2226 private static Intent buildViewDataUsageIntent(NetworkTemplate template) {
2227 final Intent intent = new Intent();
2228 intent.setComponent(new ComponentName(
2229 "com.android.settings", "com.android.settings.Settings$DataUsageSummaryActivity"));
2230 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2231 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
2232 return intent;
2233 }
2234
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -08002235 @VisibleForTesting
Jeff Sharkey163e6442011-10-31 16:37:52 -07002236 public void addIdleHandler(IdleHandler handler) {
2237 mHandler.getLooper().getQueue().addIdleHandler(handler);
2238 }
2239
Jeff Sharkey1b861272011-05-22 00:34:52 -07002240 private static void collectKeys(SparseIntArray source, SparseBooleanArray target) {
2241 final int size = source.size();
2242 for (int i = 0; i < size; i++) {
2243 target.put(source.keyAt(i), true);
2244 }
2245 }
2246
Dianne Hackborn497175b2014-07-01 12:56:08 -07002247 private static void dumpSparseIntArray(PrintWriter fout, SparseIntArray value) {
Jeff Sharkey1b861272011-05-22 00:34:52 -07002248 fout.print("[");
2249 final int size = value.size();
2250 for (int i = 0; i < size; i++) {
2251 fout.print(value.keyAt(i) + "=" + value.valueAt(i));
2252 if (i < size - 1) fout.print(",");
2253 }
2254 fout.print("]");
2255 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002256}