blob: bd5a516b4e4cb1075c825dbb35ab7d7af3182695 [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;
Amit Mahajan7c5befa2015-07-14 10:26:00 -070025import static android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE;
Jeff Sharkey02e21d62011-07-17 15:53:33 -070026import static android.content.Intent.ACTION_PACKAGE_ADDED;
Jeff Sharkeyb09540f2011-06-19 01:08:12 -070027import static android.content.Intent.ACTION_UID_REMOVED;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -070028import static android.content.Intent.ACTION_USER_ADDED;
29import static android.content.Intent.ACTION_USER_REMOVED;
Jeff Sharkeyb09540f2011-06-19 01:08:12 -070030import static android.content.Intent.EXTRA_UID;
Erik Klinef851d6d2015-04-20 16:03:48 +090031import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
Felipe Leme1b103232016-01-22 09:44:57 -080032import static android.net.ConnectivityManager.RESTRICT_BACKGROUND_STATUS_DISABLED;
33import static android.net.ConnectivityManager.RESTRICT_BACKGROUND_STATUS_ENABLED;
34import static android.net.ConnectivityManager.RESTRICT_BACKGROUND_STATUS_WHITELISTED;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -060035import static android.net.ConnectivityManager.TYPE_MOBILE;
36import static android.net.ConnectivityManager.TYPE_WIMAX;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070037import static android.net.ConnectivityManager.isNetworkTypeMobile;
38import static android.net.NetworkPolicy.CYCLE_NONE;
Jeff Sharkey22c055e2011-06-12 21:13:51 -070039import static android.net.NetworkPolicy.LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070040import static android.net.NetworkPolicy.SNOOZE_NEVER;
Jeff Sharkey497e4432011-06-14 17:27:29 -070041import static android.net.NetworkPolicy.WARNING_DISABLED;
Jeff Sharkey14711eb2011-06-15 10:29:17 -070042import static android.net.NetworkPolicyManager.EXTRA_NETWORK_TEMPLATE;
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070043import static android.net.NetworkPolicyManager.FIREWALL_CHAIN_DOZABLE;
Felipe Leme011b98f2016-02-10 17:28:31 -080044import static android.net.NetworkPolicyManager.FIREWALL_CHAIN_POWERSAVE;
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070045import static android.net.NetworkPolicyManager.FIREWALL_CHAIN_STANDBY;
46import static android.net.NetworkPolicyManager.FIREWALL_RULE_ALLOW;
Jeff Sharkeydc988062015-09-14 10:09:47 -070047import static android.net.NetworkPolicyManager.FIREWALL_RULE_DEFAULT;
Amith Yamasani15e472352015-04-24 19:06:07 -070048import static android.net.NetworkPolicyManager.FIREWALL_RULE_DENY;
Felipe Leme46b451f2016-08-19 08:46:17 -070049import static android.net.NetworkPolicyManager.POLICY_ALLOW_METERED_BACKGROUND;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -070050import static android.net.NetworkPolicyManager.POLICY_NONE;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070051import static android.net.NetworkPolicyManager.POLICY_REJECT_METERED_BACKGROUND;
Felipe Lemed31a97f2016-05-06 14:53:50 -070052import static android.net.NetworkPolicyManager.RULE_ALLOW_ALL;
Felipe Leme70c57c22016-03-29 10:45:13 -070053import static android.net.NetworkPolicyManager.RULE_ALLOW_METERED;
Felipe Leme46c4fc32016-05-04 09:21:43 -070054import static android.net.NetworkPolicyManager.MASK_METERED_NETWORKS;
55import static android.net.NetworkPolicyManager.MASK_ALL_NETWORKS;
56import static android.net.NetworkPolicyManager.RULE_NONE;
Felipe Lemed31a97f2016-05-06 14:53:50 -070057import static android.net.NetworkPolicyManager.RULE_REJECT_ALL;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070058import static android.net.NetworkPolicyManager.RULE_REJECT_METERED;
Felipe Leme70c57c22016-03-29 10:45:13 -070059import static android.net.NetworkPolicyManager.RULE_TEMPORARY_ALLOW_METERED;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -070060import static android.net.NetworkPolicyManager.computeLastCycleBoundary;
Sudheer Shankae359c3d2017-02-22 18:41:29 -080061import static android.net.NetworkPolicyManager.isProcStateAllowedWhileIdleOrPowerSaveMode;
62import static android.net.NetworkPolicyManager.isProcStateAllowedWhileOnRestrictBackground;
Felipe Lemeb146f762016-08-19 09:52:16 -070063import static android.net.NetworkPolicyManager.uidPoliciesToString;
Felipe Leme46c4fc32016-05-04 09:21:43 -070064import static android.net.NetworkPolicyManager.uidRulesToString;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -070065import static android.net.NetworkTemplate.MATCH_MOBILE_3G_LOWER;
66import static android.net.NetworkTemplate.MATCH_MOBILE_4G;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -070067import static android.net.NetworkTemplate.MATCH_MOBILE_ALL;
68import static android.net.NetworkTemplate.MATCH_WIFI;
Jeff Sharkey4e814c32011-07-14 20:37:37 -070069import static android.net.NetworkTemplate.buildTemplateMobileAll;
Jeff Sharkey241dde22012-02-03 14:50:07 -080070import static android.net.TrafficStats.MB_IN_BYTES;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -070071import static android.net.wifi.WifiManager.CHANGE_REASON_ADDED;
72import static android.net.wifi.WifiManager.CHANGE_REASON_REMOVED;
73import static android.net.wifi.WifiManager.CONFIGURED_NETWORKS_CHANGED_ACTION;
74import static android.net.wifi.WifiManager.EXTRA_CHANGE_REASON;
75import static android.net.wifi.WifiManager.EXTRA_NETWORK_INFO;
76import static android.net.wifi.WifiManager.EXTRA_WIFI_CONFIGURATION;
77import static android.net.wifi.WifiManager.EXTRA_WIFI_INFO;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -070078import static android.telephony.CarrierConfigManager.ACTION_CARRIER_CONFIG_CHANGED;
79import static android.telephony.CarrierConfigManager.DATA_CYCLE_USE_PLATFORM_DEFAULT;
80import static android.telephony.CarrierConfigManager.DATA_CYCLE_THRESHOLD_DISABLED;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070081import static android.text.format.DateUtils.DAY_IN_MILLIS;
Felipe Leme03e689d2016-03-02 16:17:38 -080082
Jeff Sharkey854b2b12012-04-13 16:03:40 -070083import static com.android.internal.util.ArrayUtils.appendInt;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070084import static com.android.internal.util.Preconditions.checkNotNull;
Jeff Sharkeyded7b752013-03-22 13:43:41 -070085import static com.android.internal.util.XmlUtils.readBooleanAttribute;
86import static com.android.internal.util.XmlUtils.readIntAttribute;
87import static com.android.internal.util.XmlUtils.readLongAttribute;
88import static com.android.internal.util.XmlUtils.writeBooleanAttribute;
89import static com.android.internal.util.XmlUtils.writeIntAttribute;
90import static com.android.internal.util.XmlUtils.writeLongAttribute;
Jeff Sharkey961e3042011-08-29 16:02:57 -070091import static com.android.server.NetworkManagementService.LIMIT_GLOBAL_ALERT;
Jeff Sharkey497e4432011-06-14 17:27:29 -070092import static com.android.server.net.NetworkStatsService.ACTION_NETWORK_STATS_UPDATED;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -060093
Jeff Sharkey21c9c452011-06-07 12:26:43 -070094import static org.xmlpull.v1.XmlPullParser.END_DOCUMENT;
Felipe Lemeb85a6372016-01-14 16:16:16 -080095import static org.xmlpull.v1.XmlPullParser.END_TAG;
Jeff Sharkey21c9c452011-06-07 12:26:43 -070096import static org.xmlpull.v1.XmlPullParser.START_TAG;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070097
Dianne Hackborn88e98df2015-03-23 13:29:14 -070098import android.Manifest;
Felipe Lemef3e40642016-06-07 17:28:08 -070099import android.annotation.IntDef;
Felipe Lemebc853dd2016-09-08 13:26:55 -0700100import android.annotation.Nullable;
Dianne Hackborn497175b2014-07-01 12:56:08 -0700101import android.app.ActivityManager;
Sudheer Shankae7361852017-03-07 11:51:46 -0800102import android.app.ActivityManagerInternal;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700103import android.app.AppGlobals;
Svet Ganov16a16892015-04-16 10:32:04 -0700104import android.app.AppOpsManager;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700105import android.app.IActivityManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700106import android.app.INotificationManager;
Dianne Hackbornd23e0d62015-05-15 16:36:12 -0700107import android.app.IUidObserver;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700108import android.app.Notification;
109import android.app.PendingIntent;
Amith Yamasani15e472352015-04-24 19:06:07 -0700110import android.app.usage.UsageStatsManagerInternal;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700111import android.content.BroadcastReceiver;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700112import android.content.ComponentName;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700113import android.content.Context;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700114import android.content.Intent;
115import android.content.IntentFilter;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700116import android.content.pm.ApplicationInfo;
Dianne Hackborn88e98df2015-03-23 13:29:14 -0700117import android.content.pm.IPackageManager;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700118import android.content.pm.PackageManager;
Amith Yamasani15e472352015-04-24 19:06:07 -0700119import android.content.pm.PackageManager.NameNotFoundException;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700120import android.content.pm.UserInfo;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700121import android.content.res.Resources;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700122import android.net.ConnectivityManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700123import android.net.IConnectivityManager;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700124import android.net.INetworkManagementEventObserver;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700125import android.net.INetworkPolicyListener;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700126import android.net.INetworkPolicyManager;
Jeff Sharkey75279902011-05-24 18:39:45 -0700127import android.net.INetworkStatsService;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -0700128import android.net.LinkProperties;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700129import android.net.NetworkIdentity;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700130import android.net.NetworkInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700131import android.net.NetworkPolicy;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -0700132import android.net.NetworkQuotaInfo;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700133import android.net.NetworkState;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -0700134import android.net.NetworkTemplate;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700135import android.net.wifi.WifiConfiguration;
136import android.net.wifi.WifiInfo;
137import android.net.wifi.WifiManager;
jackqdyulei455e90a2017-02-09 15:29:16 -0800138import android.os.PowerSaveState;
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -0700139import android.os.Binder;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700140import android.os.Environment;
141import android.os.Handler;
Amith Yamasani450a16b2013-09-18 16:28:50 -0700142import android.os.HandlerThread;
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700143import android.os.IDeviceIdleController;
Ashish Sharma50fd36d2011-06-15 19:34:53 -0700144import android.os.INetworkManagementService;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700145import android.os.Message;
Jeff Sharkey163e6442011-10-31 16:37:52 -0700146import android.os.MessageQueue.IdleHandler;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700147import android.os.PersistableBundle;
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700148import android.os.PowerManager;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700149import android.os.PowerManagerInternal;
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800150import android.os.Process;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700151import android.os.RemoteCallbackList;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700152import android.os.RemoteException;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -0600153import android.os.ResultReceiver;
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700154import android.os.ServiceManager;
Dianne Hackborn354736e2016-08-22 17:00:05 -0700155import android.os.ShellCallback;
Felipe Leme873a83a2016-09-07 11:34:10 -0700156import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700157import android.os.UserHandle;
Amith Yamasani258848d2012-08-10 17:06:33 -0700158import android.os.UserManager;
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700159import android.provider.Settings;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700160import android.telephony.CarrierConfigManager;
Jeff Sharkey32566012014-12-02 18:30:14 -0800161import android.telephony.SubscriptionManager;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700162import android.telephony.TelephonyManager;
Chris Wren8a3d56c2016-08-01 15:52:52 -0400163import android.text.TextUtils;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700164import android.text.format.Formatter;
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700165import android.text.format.Time;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700166import android.util.ArrayMap;
167import android.util.ArraySet;
Dianne Hackborn39606a02012-07-31 17:54:35 -0700168import android.util.AtomicFile;
Jeff Sharkeyb3d59572011-09-07 17:20:27 -0700169import android.util.Log;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700170import android.util.NtpTrustedTime;
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -0700171import android.util.Pair;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700172import android.util.Slog;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700173import android.util.SparseBooleanArray;
174import android.util.SparseIntArray;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700175import android.util.TrustedTime;
176import android.util.Xml;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700177
Jeff Sharkey497e4432011-06-14 17:27:29 -0700178import com.android.internal.R;
Felipe Lemef0823852016-06-08 13:43:08 -0700179import com.android.internal.annotations.GuardedBy;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800180import com.android.internal.annotations.VisibleForTesting;
Chris Wren193ae6b2017-03-31 15:17:11 -0400181import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
Geoffrey Pitschaf759c52017-02-15 09:35:38 -0500182import com.android.internal.notification.SystemNotificationChannels;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700183import com.android.internal.telephony.PhoneConstants;
Jeff Sharkey32566012014-12-02 18:30:14 -0800184import com.android.internal.util.ArrayUtils;
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -0600185import com.android.internal.util.DumpUtils;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700186import com.android.internal.util.FastXmlSerializer;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700187import com.android.internal.util.IndentingPrintWriter;
Jeff Sharkeydc988062015-09-14 10:09:47 -0700188import com.android.server.DeviceIdleController;
189import com.android.server.EventLogTags;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700190import com.android.server.LocalServices;
Makoto Onuki8e777332017-03-28 11:25:47 -0700191import com.android.server.ServiceThread;
Felipe Lemea9505cc2016-02-26 10:28:41 -0800192import com.android.server.SystemConfig;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -0600193
jackqdyulei455e90a2017-02-09 15:29:16 -0800194import com.android.server.power.BatterySaverPolicy.ServiceType;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -0600195import libcore.io.IoUtils;
196
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700197import com.google.android.collect.Lists;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700198
199import org.xmlpull.v1.XmlPullParser;
200import org.xmlpull.v1.XmlPullParserException;
201import org.xmlpull.v1.XmlSerializer;
202
203import java.io.File;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700204import java.io.FileDescriptor;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700205import java.io.FileInputStream;
206import java.io.FileNotFoundException;
207import java.io.FileOutputStream;
208import java.io.IOException;
Jeff Sharkey1b861272011-05-22 00:34:52 -0700209import java.io.PrintWriter;
Felipe Lemef3e40642016-06-07 17:28:08 -0700210import java.lang.annotation.Retention;
211import java.lang.annotation.RetentionPolicy;
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +0100212import java.nio.charset.StandardCharsets;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700213import java.util.ArrayList;
214import java.util.Arrays;
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700215import java.util.List;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700216import java.util.Calendar;
Chris Wren193ae6b2017-03-31 15:17:11 -0400217import java.util.Objects;
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800218import java.util.concurrent.CountDownLatch;
219import java.util.concurrent.TimeUnit;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700220
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700221/**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700222 * Service that maintains low-level network policy rules, using
223 * {@link NetworkStatsService} statistics to drive those rules.
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700224 * <p>
225 * Derives active rules by combining a given policy with other system status,
226 * and delivers to listeners, such as {@link ConnectivityManager}, for
227 * enforcement.
Felipe Lemef0823852016-06-08 13:43:08 -0700228 *
229 * <p>
Sudheer Shankac9d94072017-02-22 22:13:55 +0000230 * This class uses 2-3 locks to synchronize state:
Felipe Lemef0823852016-06-08 13:43:08 -0700231 * <ul>
232 * <li>{@code mUidRulesFirstLock}: used to guard state related to individual UIDs (such as firewall
233 * rules).
234 * <li>{@code mNetworkPoliciesSecondLock}: used to guard state related to network interfaces (such
235 * as network policies).
Sudheer Shankac9d94072017-02-22 22:13:55 +0000236 * <li>{@code allLocks}: not a "real" lock, but an indication (through @GuardedBy) that all locks
237 * must be held.
Felipe Lemef0823852016-06-08 13:43:08 -0700238 * </ul>
239 *
240 * <p>
241 * As such, methods that require synchronization have the following prefixes:
242 * <ul>
243 * <li>{@code UL()}: require the "UID" lock ({@code mUidRulesFirstLock}).
244 * <li>{@code NL()}: require the "Network" lock ({@code mNetworkPoliciesSecondLock}).
Sudheer Shankac9d94072017-02-22 22:13:55 +0000245 * <li>{@code AL()}: require all locks, which must be obtained in order ({@code mUidRulesFirstLock}
246 * first, then {@code mNetworkPoliciesSecondLock}, then {@code mYetAnotherGuardThirdLock}, etc..
Felipe Lemef0823852016-06-08 13:43:08 -0700247 * </ul>
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700248 */
Xiaohui Chen8dca36d2015-06-19 12:44:59 -0700249public class NetworkPolicyManagerService extends INetworkPolicyManager.Stub {
Felipe Lemede4e8e32016-02-02 18:55:22 -0800250 static final String TAG = "NetworkPolicy";
Hugo Benichi5d2f2b52017-04-07 08:53:25 +0900251 private static final boolean LOGD = false;
252 private static final boolean LOGV = false;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700253
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700254 private static final int VERSION_INIT = 1;
255 private static final int VERSION_ADDED_SNOOZE = 2;
Jeff Sharkey46645002011-07-27 21:11:21 -0700256 private static final int VERSION_ADDED_RESTRICT_BACKGROUND = 3;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800257 private static final int VERSION_ADDED_METERED = 4;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800258 private static final int VERSION_SPLIT_SNOOZE = 5;
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800259 private static final int VERSION_ADDED_TIMEZONE = 6;
Jeff Sharkey837f9242012-03-20 16:52:20 -0700260 private static final int VERSION_ADDED_INFERRED = 7;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700261 private static final int VERSION_SWITCH_APP_ID = 8;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700262 private static final int VERSION_ADDED_NETWORK_ID = 9;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700263 private static final int VERSION_SWITCH_UID = 10;
264 private static final int VERSION_LATEST = VERSION_SWITCH_UID;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700265
Sudheer Shankae7361852017-03-07 11:51:46 -0800266 /**
267 * Max items written to {@link #ProcStateSeqHistory}.
268 */
269 @VisibleForTesting
270 public static final int MAX_PROC_STATE_SEQ_HISTORY =
271 ActivityManager.isLowRamDeviceStatic() ? 50 : 200;
272
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800273 @VisibleForTesting
Chris Wren193ae6b2017-03-31 15:17:11 -0400274 public static final int TYPE_WARNING = SystemMessage.NOTE_NET_WARNING;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800275 @VisibleForTesting
Chris Wren193ae6b2017-03-31 15:17:11 -0400276 public static final int TYPE_LIMIT = SystemMessage.NOTE_NET_LIMIT;
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800277 @VisibleForTesting
Chris Wren193ae6b2017-03-31 15:17:11 -0400278 public static final int TYPE_LIMIT_SNOOZED = SystemMessage.NOTE_NET_LIMIT_SNOOZED;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700279
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700280 private static final String TAG_POLICY_LIST = "policy-list";
281 private static final String TAG_NETWORK_POLICY = "network-policy";
282 private static final String TAG_UID_POLICY = "uid-policy";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700283 private static final String TAG_APP_POLICY = "app-policy";
Felipe Lemeb85a6372016-01-14 16:16:16 -0800284 private static final String TAG_WHITELIST = "whitelist";
285 private static final String TAG_RESTRICT_BACKGROUND = "restrict-background";
Felipe Lemea9505cc2016-02-26 10:28:41 -0800286 private static final String TAG_REVOKED_RESTRICT_BACKGROUND = "revoked-restrict-background";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700287
288 private static final String ATTR_VERSION = "version";
Jeff Sharkey46645002011-07-27 21:11:21 -0700289 private static final String ATTR_RESTRICT_BACKGROUND = "restrictBackground";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700290 private static final String ATTR_NETWORK_TEMPLATE = "networkTemplate";
291 private static final String ATTR_SUBSCRIBER_ID = "subscriberId";
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700292 private static final String ATTR_NETWORK_ID = "networkId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700293 private static final String ATTR_CYCLE_DAY = "cycleDay";
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800294 private static final String ATTR_CYCLE_TIMEZONE = "cycleTimezone";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700295 private static final String ATTR_WARNING_BYTES = "warningBytes";
296 private static final String ATTR_LIMIT_BYTES = "limitBytes";
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700297 private static final String ATTR_LAST_SNOOZE = "lastSnooze";
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800298 private static final String ATTR_LAST_WARNING_SNOOZE = "lastWarningSnooze";
299 private static final String ATTR_LAST_LIMIT_SNOOZE = "lastLimitSnooze";
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -0800300 private static final String ATTR_METERED = "metered";
Jeff Sharkey837f9242012-03-20 16:52:20 -0700301 private static final String ATTR_INFERRED = "inferred";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700302 private static final String ATTR_UID = "uid";
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700303 private static final String ATTR_APP_ID = "appId";
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700304 private static final String ATTR_POLICY = "policy";
305
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800306 private static final String ACTION_ALLOW_BACKGROUND =
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800307 "com.android.server.net.action.ALLOW_BACKGROUND";
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -0800308 private static final String ACTION_SNOOZE_WARNING =
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800309 "com.android.server.net.action.SNOOZE_WARNING";
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700310
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700311 private static final long TIME_CACHE_MAX_AGE = DAY_IN_MILLIS;
312
Svetoslav Ganov24c27752016-08-31 18:09:00 -0700313 private static final int MSG_RULES_CHANGED = 1;
Jeff Sharkey6f7af032011-11-01 18:25:15 -0700314 private static final int MSG_METERED_IFACES_CHANGED = 2;
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -0800315 private static final int MSG_LIMIT_REACHED = 5;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -0800316 private static final int MSG_RESTRICT_BACKGROUND_CHANGED = 6;
Jeff Sharkeye19f39b2012-05-24 10:21:16 -0700317 private static final int MSG_ADVISE_PERSIST_THRESHOLD = 7;
Amith Yamasani3646cbd2016-04-13 14:04:53 -0700318 private static final int MSG_UPDATE_INTERFACE_QUOTA = 10;
319 private static final int MSG_REMOVE_INTERFACE_QUOTA = 11;
Felipe Leme0ecfcd12016-09-06 12:49:48 -0700320 private static final int MSG_POLICIES_CHANGED = 13;
Felipe Lemebc853dd2016-09-08 13:26:55 -0700321 private static final int MSG_SET_FIREWALL_RULES = 14;
Felipe Leme03e95e22016-09-09 09:25:31 -0700322 private static final int MSG_RESET_FIREWALL_RULES_BY_UID = 15;
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700323
Makoto Onuki8e777332017-03-28 11:25:47 -0700324 private static final int UID_MSG_STATE_CHANGED = 100;
325 private static final int UID_MSG_GONE = 101;
326
Jeff Sharkey75279902011-05-24 18:39:45 -0700327 private final Context mContext;
328 private final IActivityManager mActivityManager;
Jeff Sharkey75279902011-05-24 18:39:45 -0700329 private final INetworkStatsService mNetworkStats;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700330 private final INetworkManagementService mNetworkManager;
Amith Yamasani15e472352015-04-24 19:06:07 -0700331 private UsageStatsManagerInternal mUsageStats;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700332 private final TrustedTime mTime;
Stuart Scotte3e314d2015-04-20 14:07:45 -0700333 private final UserManager mUserManager;
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700334 private final CarrierConfigManager mCarrierConfigManager;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700335
336 private IConnectivityManager mConnManager;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700337 private INotificationManager mNotifManager;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700338 private PowerManagerInternal mPowerManagerInternal;
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700339 private IDeviceIdleController mDeviceIdleController;
jackqdyulei29c82ab2017-03-10 14:09:16 -0800340 @GuardedBy("mUidRulesFirstLock")
341 private PowerSaveState mRestrictBackgroundPowerState;
342
343 // Store the status of restrict background before turning on battery saver.
344 // Used to restore mRestrictBackground when battery saver is turned off.
345 private boolean mRestrictBackgroundBeforeBsm;
Jeff Sharkeya4620792011-05-20 15:29:23 -0700346
Felipe Lemef0823852016-06-08 13:43:08 -0700347 // See main javadoc for instructions on how to use these locks.
348 final Object mUidRulesFirstLock = new Object();
349 final Object mNetworkPoliciesSecondLock = new Object();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700350
Felipe Lemef0823852016-06-08 13:43:08 -0700351 @GuardedBy("allLocks") volatile boolean mSystemReady;
352
Felipe Lemef0823852016-06-08 13:43:08 -0700353 @GuardedBy("mUidRulesFirstLock") volatile boolean mRestrictBackground;
354 @GuardedBy("mUidRulesFirstLock") volatile boolean mRestrictPower;
355 @GuardedBy("mUidRulesFirstLock") volatile boolean mDeviceIdleMode;
jackqdyulei29c82ab2017-03-10 14:09:16 -0800356 // Store whether user flipped restrict background in battery saver mode
357 @GuardedBy("mUidRulesFirstLock") volatile boolean mRestrictBackgroundChangedInBsm;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700358
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700359 private final boolean mSuppressDefaultPolicy;
360
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700361 /** Defined network policies. */
Jeff Sharkey32566012014-12-02 18:30:14 -0800362 final ArrayMap<NetworkTemplate, NetworkPolicy> mNetworkPolicy = new ArrayMap<>();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700363 /** Currently active network rules for ifaces. */
Jeff Sharkey32566012014-12-02 18:30:14 -0800364 final ArrayMap<NetworkPolicy, String[]> mNetworkRules = new ArrayMap<>();
Jeff Sharkey22c055e2011-06-12 21:13:51 -0700365
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700366 /** Defined UID policies. */
Felipe Lemef0823852016-06-08 13:43:08 -0700367 @GuardedBy("mUidRulesFirstLock") final SparseIntArray mUidPolicy = new SparseIntArray();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700368 /** Currently derived rules for each UID. */
Felipe Lemef0823852016-06-08 13:43:08 -0700369 @GuardedBy("mUidRulesFirstLock") final SparseIntArray mUidRules = new SparseIntArray();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700370
Felipe Lemef0823852016-06-08 13:43:08 -0700371 @GuardedBy("mUidRulesFirstLock")
Jeff Sharkeydc988062015-09-14 10:09:47 -0700372 final SparseIntArray mUidFirewallStandbyRules = new SparseIntArray();
Felipe Lemef0823852016-06-08 13:43:08 -0700373 @GuardedBy("mUidRulesFirstLock")
Jeff Sharkeydc988062015-09-14 10:09:47 -0700374 final SparseIntArray mUidFirewallDozableRules = new SparseIntArray();
Felipe Lemef0823852016-06-08 13:43:08 -0700375 @GuardedBy("mUidRulesFirstLock")
Felipe Leme011b98f2016-02-10 17:28:31 -0800376 final SparseIntArray mUidFirewallPowerSaveRules = new SparseIntArray();
Jeff Sharkeydc988062015-09-14 10:09:47 -0700377
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700378 /** Set of states for the child firewall chains. True if the chain is active. */
Felipe Lemef0823852016-06-08 13:43:08 -0700379 @GuardedBy("mUidRulesFirstLock")
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700380 final SparseBooleanArray mFirewallChainStates = new SparseBooleanArray();
381
Jeff Sharkey32566012014-12-02 18:30:14 -0800382 /**
383 * UIDs that have been white-listed to always be able to have network access
Dianne Hackborn4a503b12015-08-06 22:19:06 -0700384 * in power save mode, except device idle (doze) still applies.
385 * TODO: An int array might be sufficient
386 */
Felipe Lemef0823852016-06-08 13:43:08 -0700387 @GuardedBy("mUidRulesFirstLock")
Dianne Hackborn4a503b12015-08-06 22:19:06 -0700388 private final SparseBooleanArray mPowerSaveWhitelistExceptIdleAppIds = new SparseBooleanArray();
389
390 /**
391 * UIDs that have been white-listed to always be able to have network access
Jeff Sharkey32566012014-12-02 18:30:14 -0800392 * in power save mode.
Amith Yamasaniaf575b92015-05-29 15:35:26 -0700393 * TODO: An int array might be sufficient
Jeff Sharkey32566012014-12-02 18:30:14 -0800394 */
Felipe Lemef0823852016-06-08 13:43:08 -0700395 @GuardedBy("mUidRulesFirstLock")
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700396 private final SparseBooleanArray mPowerSaveWhitelistAppIds = new SparseBooleanArray();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700397
Felipe Lemef0823852016-06-08 13:43:08 -0700398 @GuardedBy("mUidRulesFirstLock")
Amith Yamasaniaf575b92015-05-29 15:35:26 -0700399 private final SparseBooleanArray mPowerSaveTempWhitelistAppIds = new SparseBooleanArray();
400
Felipe Lemeb85a6372016-01-14 16:16:16 -0800401 /**
Felipe Lemea9505cc2016-02-26 10:28:41 -0800402 * UIDs that have been initially white-listed by system to avoid restricted background.
403 */
Felipe Lemef0823852016-06-08 13:43:08 -0700404 @GuardedBy("mUidRulesFirstLock")
Felipe Lemea9505cc2016-02-26 10:28:41 -0800405 private final SparseBooleanArray mDefaultRestrictBackgroundWhitelistUids =
406 new SparseBooleanArray();
407
408 /**
409 * UIDs that have been initially white-listed by system to avoid restricted background,
410 * but later revoked by user.
411 */
Felipe Lemef0823852016-06-08 13:43:08 -0700412 @GuardedBy("mUidRulesFirstLock")
Felipe Lemea9505cc2016-02-26 10:28:41 -0800413 private final SparseBooleanArray mRestrictBackgroundWhitelistRevokedUids =
414 new SparseBooleanArray();
415
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700416 /** Set of ifaces that are metered. */
Felipe Lemef0823852016-06-08 13:43:08 -0700417 @GuardedBy("mNetworkPoliciesSecondLock")
Jeff Sharkey32566012014-12-02 18:30:14 -0800418 private ArraySet<String> mMeteredIfaces = new ArraySet<>();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700419 /** Set of over-limit templates that have been notified. */
Felipe Lemef0823852016-06-08 13:43:08 -0700420 @GuardedBy("mNetworkPoliciesSecondLock")
Jeff Sharkey32566012014-12-02 18:30:14 -0800421 private final ArraySet<NetworkTemplate> mOverLimitNotified = new ArraySet<>();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -0700422
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700423 /** Set of currently active {@link Notification} tags. */
Felipe Lemef0823852016-06-08 13:43:08 -0700424 @GuardedBy("mNetworkPoliciesSecondLock")
Chris Wren193ae6b2017-03-31 15:17:11 -0400425 private final ArraySet<NotificationId> mActiveNotifs = new ArraySet<>();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700426
Dianne Hackbornd23e0d62015-05-15 16:36:12 -0700427 /** Foreground at UID granularity. */
Felipe Lemef0823852016-06-08 13:43:08 -0700428 @GuardedBy("mUidRulesFirstLock")
Jeff Sharkey32566012014-12-02 18:30:14 -0800429 final SparseIntArray mUidState = new SparseIntArray();
Dianne Hackborn497175b2014-07-01 12:56:08 -0700430
Jeff Sharkey32566012014-12-02 18:30:14 -0800431 private final RemoteCallbackList<INetworkPolicyListener>
432 mListeners = new RemoteCallbackList<>();
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700433
Dianne Hackborn497175b2014-07-01 12:56:08 -0700434 final Handler mHandler;
Sudheer Shankaed25ce62017-03-29 20:46:30 -0700435 @VisibleForTesting
436 public final Handler mUidEventHandler;
Makoto Onuki8e777332017-03-28 11:25:47 -0700437
438 private final ServiceThread mUidEventThread;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700439
Felipe Lemef0823852016-06-08 13:43:08 -0700440 @GuardedBy("allLocks")
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700441 private final AtomicFile mPolicyFile;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700442
Svet Ganov16a16892015-04-16 10:32:04 -0700443 private final AppOpsManager mAppOps;
444
Amith Yamasani2a4ac4e2016-02-12 12:43:15 -0800445 private final IPackageManager mIPm;
446
Sudheer Shankae7361852017-03-07 11:51:46 -0800447 private ActivityManagerInternal mActivityManagerInternal;
448
449 /**
450 * This is used for debugging purposes. Whenever the IUidObserver.onUidStateChanged is called,
451 * the uid and procStateSeq will be written to this and will be printed as part of dump.
452 */
453 @VisibleForTesting
454 public ProcStateSeqHistory mObservedHistory
455 = new ProcStateSeqHistory(MAX_PROC_STATE_SEQ_HISTORY);
Felipe Lemeb85a6372016-01-14 16:16:16 -0800456
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700457 // TODO: keep whitelist of system-critical services that should never have
458 // rules enforced, such as system, phone, and radio UIDs.
459
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700460 // TODO: migrate notifications to SystemUI
461
Jeff Sharkey75279902011-05-24 18:39:45 -0700462 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Felipe Leme88f40ad2016-08-10 13:00:32 -0700463 INetworkStatsService networkStats, INetworkManagementService networkManagement) {
464 this(context, activityManager, networkStats, networkManagement,
Felipe Leme3d3308d2016-08-23 17:41:47 -0700465 AppGlobals.getPackageManager(), NtpTrustedTime.getInstance(context), getSystemDir(),
466 false);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700467 }
468
469 private static File getSystemDir() {
470 return new File(Environment.getDataDirectory(), "system");
471 }
472
473 public NetworkPolicyManagerService(Context context, IActivityManager activityManager,
Felipe Leme88f40ad2016-08-10 13:00:32 -0700474 INetworkStatsService networkStats, INetworkManagementService networkManagement,
Felipe Leme3d3308d2016-08-23 17:41:47 -0700475 IPackageManager pm, TrustedTime time, File systemDir, boolean suppressDefaultPolicy) {
Jeff Sharkeya4620792011-05-20 15:29:23 -0700476 mContext = checkNotNull(context, "missing context");
477 mActivityManager = checkNotNull(activityManager, "missing activityManager");
Jeff Sharkey75279902011-05-24 18:39:45 -0700478 mNetworkStats = checkNotNull(networkStats, "missing networkStats");
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700479 mNetworkManager = checkNotNull(networkManagement, "missing networkManagement");
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700480 mDeviceIdleController = IDeviceIdleController.Stub.asInterface(ServiceManager.getService(
Dianne Hackborn1958e5e2015-06-12 18:11:41 -0700481 Context.DEVICE_IDLE_CONTROLLER));
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700482 mTime = checkNotNull(time, "missing TrustedTime");
Stuart Scotte3e314d2015-04-20 14:07:45 -0700483 mUserManager = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700484 mCarrierConfigManager = mContext.getSystemService(CarrierConfigManager.class);
Felipe Leme3d3308d2016-08-23 17:41:47 -0700485 mIPm = pm;
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700486
Amith Yamasani450a16b2013-09-18 16:28:50 -0700487 HandlerThread thread = new HandlerThread(TAG);
488 thread.start();
489 mHandler = new Handler(thread.getLooper(), mHandlerCallback);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700490
Makoto Onuki8e777332017-03-28 11:25:47 -0700491 // We create another thread for the UID events, which are more time-critical.
492 mUidEventThread = new ServiceThread(TAG + ".uid", Process.THREAD_PRIORITY_FOREGROUND,
493 /*allowIo=*/ false);
494 mUidEventThread.start();
495 mUidEventHandler = new Handler(mUidEventThread.getLooper(), mUidEventHandlerCallback);
496
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -0700497 mSuppressDefaultPolicy = suppressDefaultPolicy;
498
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700499 mPolicyFile = new AtomicFile(new File(systemDir, "netpolicy.xml"));
Svet Ganov16a16892015-04-16 10:32:04 -0700500
501 mAppOps = context.getSystemService(AppOpsManager.class);
Felipe Lemeb85a6372016-01-14 16:16:16 -0800502
Felipe Lemed17fda42016-04-29 11:12:45 -0700503 // Expose private service for system components to use.
504 LocalServices.addService(NetworkPolicyManagerInternal.class,
505 new NetworkPolicyManagerInternalImpl());
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700506 }
507
508 public void bindConnectivityManager(IConnectivityManager connManager) {
509 mConnManager = checkNotNull(connManager, "missing IConnectivityManager");
Jeff Sharkeya4620792011-05-20 15:29:23 -0700510 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700511
Jeff Sharkey497e4432011-06-14 17:27:29 -0700512 public void bindNotificationManager(INotificationManager notifManager) {
513 mNotifManager = checkNotNull(notifManager, "missing INotificationManager");
514 }
515
Felipe Lemef0823852016-06-08 13:43:08 -0700516 void updatePowerSaveWhitelistUL() {
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700517 try {
Dianne Hackborn4a503b12015-08-06 22:19:06 -0700518 int[] whitelist = mDeviceIdleController.getAppIdWhitelistExceptIdle();
519 mPowerSaveWhitelistExceptIdleAppIds.clear();
520 if (whitelist != null) {
521 for (int uid : whitelist) {
522 mPowerSaveWhitelistExceptIdleAppIds.put(uid, true);
523 }
524 }
525 whitelist = mDeviceIdleController.getAppIdWhitelist();
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700526 mPowerSaveWhitelistAppIds.clear();
527 if (whitelist != null) {
528 for (int uid : whitelist) {
529 mPowerSaveWhitelistAppIds.put(uid, true);
530 }
531 }
532 } catch (RemoteException e) {
533 }
534 }
535
Felipe Lemea9505cc2016-02-26 10:28:41 -0800536 /**
537 * Whitelists pre-defined apps for restrict background, but only if the user didn't already
538 * revoke the whitelist.
539 *
Felipe Leme46b451f2016-08-19 08:46:17 -0700540 * @return whether any uid has been whitelisted.
Felipe Lemea9505cc2016-02-26 10:28:41 -0800541 */
Felipe Lemef0823852016-06-08 13:43:08 -0700542 boolean addDefaultRestrictBackgroundWhitelistUidsUL() {
Felipe Lemea9505cc2016-02-26 10:28:41 -0800543 final List<UserInfo> users = mUserManager.getUsers();
544 final int numberUsers = users.size();
545
Felipe Lemea110eec2016-04-29 09:58:06 -0700546 boolean changed = false;
547 for (int i = 0; i < numberUsers; i++) {
548 final UserInfo user = users.get(i);
Felipe Lemef0823852016-06-08 13:43:08 -0700549 changed = addDefaultRestrictBackgroundWhitelistUidsUL(user.id) || changed;
Felipe Lemea110eec2016-04-29 09:58:06 -0700550 }
551 return changed;
552 }
553
Felipe Lemef0823852016-06-08 13:43:08 -0700554 private boolean addDefaultRestrictBackgroundWhitelistUidsUL(int userId) {
Felipe Lemea110eec2016-04-29 09:58:06 -0700555 final SystemConfig sysConfig = SystemConfig.getInstance();
556 final PackageManager pm = mContext.getPackageManager();
Felipe Lemea9505cc2016-02-26 10:28:41 -0800557 final ArraySet<String> allowDataUsage = sysConfig.getAllowInDataUsageSave();
558 boolean changed = false;
559 for (int i = 0; i < allowDataUsage.size(); i++) {
560 final String pkg = allowDataUsage.valueAt(i);
561 if (LOGD)
Felipe Lemea110eec2016-04-29 09:58:06 -0700562 Slog.d(TAG, "checking restricted background whitelisting for package " + pkg
563 + " and user " + userId);
Felipe Lemea9505cc2016-02-26 10:28:41 -0800564 final ApplicationInfo app;
565 try {
Felipe Lemea110eec2016-04-29 09:58:06 -0700566 app = pm.getApplicationInfoAsUser(pkg, PackageManager.MATCH_SYSTEM_ONLY, userId);
Felipe Lemea9505cc2016-02-26 10:28:41 -0800567 } catch (PackageManager.NameNotFoundException e) {
Felipe Lemea1252b22016-08-31 08:47:50 -0700568 if (LOGD) Slog.d(TAG, "No ApplicationInfo for package " + pkg);
569 // Ignore it - some apps on allow-in-data-usage-save are optional.
Felipe Lemea9505cc2016-02-26 10:28:41 -0800570 continue;
571 }
572 if (!app.isPrivilegedApp()) {
Felipe Lemea1252b22016-08-31 08:47:50 -0700573 Slog.e(TAG, "addDefaultRestrictBackgroundWhitelistUidsUL(): "
574 + "skipping non-privileged app " + pkg);
Felipe Lemea9505cc2016-02-26 10:28:41 -0800575 continue;
576 }
Felipe Lemea110eec2016-04-29 09:58:06 -0700577 final int uid = UserHandle.getUid(userId, app.uid);
578 mDefaultRestrictBackgroundWhitelistUids.append(uid, true);
579 if (LOGD)
580 Slog.d(TAG, "Adding uid " + uid + " (user " + userId + ") to default restricted "
581 + "background whitelist. Revoked status: "
Felipe Lemea9505cc2016-02-26 10:28:41 -0800582 + mRestrictBackgroundWhitelistRevokedUids.get(uid));
Felipe Lemea110eec2016-04-29 09:58:06 -0700583 if (!mRestrictBackgroundWhitelistRevokedUids.get(uid)) {
Felipe Lemea1252b22016-08-31 08:47:50 -0700584 if (LOGD)
585 Slog.d(TAG, "adding default package " + pkg + " (uid " + uid + " for user "
586 + userId + ") to restrict background whitelist");
Felipe Leme46b451f2016-08-19 08:46:17 -0700587 setUidPolicyUncheckedUL(uid, POLICY_ALLOW_METERED_BACKGROUND, false);
Felipe Lemea110eec2016-04-29 09:58:06 -0700588 changed = true;
Felipe Lemea9505cc2016-02-26 10:28:41 -0800589 }
590 }
591 return changed;
592 }
593
Felipe Lemef0823852016-06-08 13:43:08 -0700594 void updatePowerSaveTempWhitelistUL() {
Amith Yamasaniaf575b92015-05-29 15:35:26 -0700595 try {
Amith Yamasani06f08062015-06-12 13:23:33 -0700596 // Clear the states of the current whitelist
597 final int N = mPowerSaveTempWhitelistAppIds.size();
598 for (int i = 0; i < N; i++) {
599 mPowerSaveTempWhitelistAppIds.setValueAt(i, false);
600 }
601 // Update the states with the new whitelist
Amith Yamasaniaf575b92015-05-29 15:35:26 -0700602 final int[] whitelist = mDeviceIdleController.getAppIdTempWhitelist();
Amith Yamasaniaf575b92015-05-29 15:35:26 -0700603 if (whitelist != null) {
604 for (int uid : whitelist) {
605 mPowerSaveTempWhitelistAppIds.put(uid, true);
606 }
607 }
608 } catch (RemoteException e) {
609 }
610 }
611
Amith Yamasani06f08062015-06-12 13:23:33 -0700612 /**
613 * Remove unnecessary entries in the temp whitelist
614 */
Felipe Lemef0823852016-06-08 13:43:08 -0700615 void purgePowerSaveTempWhitelistUL() {
Amith Yamasani06f08062015-06-12 13:23:33 -0700616 final int N = mPowerSaveTempWhitelistAppIds.size();
617 for (int i = N - 1; i >= 0; i--) {
618 if (mPowerSaveTempWhitelistAppIds.valueAt(i) == false) {
619 mPowerSaveTempWhitelistAppIds.removeAt(i);
620 }
621 }
622 }
623
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800624 private void initService(CountDownLatch initCompleteSignal) {
Felipe Leme873a83a2016-09-07 11:34:10 -0700625 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "systemReady");
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800626 final int oldPriority = Process.getThreadPriority(Process.myTid());
Felipe Leme873a83a2016-09-07 11:34:10 -0700627 try {
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800628 // Boost thread's priority during system server init
629 Process.setThreadPriority(Process.THREAD_PRIORITY_FOREGROUND);
Felipe Leme873a83a2016-09-07 11:34:10 -0700630 if (!isBandwidthControlEnabled()) {
631 Slog.w(TAG, "bandwidth controls disabled, unable to enforce policy");
632 return;
633 }
Jeff Sharkey8c1dc722012-05-04 14:49:37 -0700634
Felipe Leme873a83a2016-09-07 11:34:10 -0700635 mUsageStats = LocalServices.getService(UsageStatsManagerInternal.class);
Amith Yamasani15e472352015-04-24 19:06:07 -0700636
Felipe Leme873a83a2016-09-07 11:34:10 -0700637 synchronized (mUidRulesFirstLock) {
638 synchronized (mNetworkPoliciesSecondLock) {
639 updatePowerSaveWhitelistUL();
640 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
641 mPowerManagerInternal.registerLowPowerModeObserver(
642 new PowerManagerInternal.LowPowerModeListener() {
jackqdyulei455e90a2017-02-09 15:29:16 -0800643 @Override
644 public int getServiceType() {
645 return ServiceType.NETWORK_FIREWALL;
Felipe Leme873a83a2016-09-07 11:34:10 -0700646 }
jackqdyulei455e90a2017-02-09 15:29:16 -0800647
648 @Override
649 public void onLowPowerModeChanged(PowerSaveState result) {
650 final boolean enabled = result.batterySaverEnabled;
jackqdyulei29c82ab2017-03-10 14:09:16 -0800651 if (LOGD) {
652 Slog.d(TAG, "onLowPowerModeChanged(" + enabled + ")");
653 }
jackqdyulei455e90a2017-02-09 15:29:16 -0800654 synchronized (mUidRulesFirstLock) {
655 if (mRestrictPower != enabled) {
656 mRestrictPower = enabled;
657 updateRulesForRestrictPowerUL();
658 }
659 }
660 }
jackqdyulei29c82ab2017-03-10 14:09:16 -0800661 });
jackqdyulei455e90a2017-02-09 15:29:16 -0800662 mRestrictPower = mPowerManagerInternal.getLowPowerState(
663 ServiceType.NETWORK_FIREWALL).batterySaverEnabled;
Felipe Leme873a83a2016-09-07 11:34:10 -0700664
665 mSystemReady = true;
666
667 // read policy from disk
668 readPolicyAL();
669
jackqdyulei29c82ab2017-03-10 14:09:16 -0800670 // Update the restrictBackground if battery saver is turned on
671 mRestrictBackgroundBeforeBsm = mRestrictBackground;
672 mRestrictBackgroundPowerState = mPowerManagerInternal
673 .getLowPowerState(ServiceType.DATA_SAVER);
674 final boolean localRestrictBackground =
675 mRestrictBackgroundPowerState.batterySaverEnabled;
676 if (localRestrictBackground && localRestrictBackground != mRestrictBackground) {
677 mRestrictBackground = localRestrictBackground;
678 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED,
679 mRestrictBackground ? 1 : 0, 0).sendToTarget();
680 }
681 mPowerManagerInternal.registerLowPowerModeObserver(
682 new PowerManagerInternal.LowPowerModeListener() {
683 @Override
684 public int getServiceType() {
685 return ServiceType.DATA_SAVER;
686 }
687
688 @Override
689 public void onLowPowerModeChanged(PowerSaveState result) {
690 synchronized (mUidRulesFirstLock) {
691 updateRestrictBackgroundByLowPowerModeUL(result);
692 }
693 }
694 });
695
Felipe Leme873a83a2016-09-07 11:34:10 -0700696 if (addDefaultRestrictBackgroundWhitelistUidsUL()) {
697 writePolicyAL();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700698 }
Felipe Lemef0823852016-06-08 13:43:08 -0700699
Felipe Leme873a83a2016-09-07 11:34:10 -0700700 setRestrictBackgroundUL(mRestrictBackground);
701 updateRulesForGlobalChangeAL(false);
702 updateNotificationsNL();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700703 }
Felipe Lemea9505cc2016-02-26 10:28:41 -0800704 }
Felipe Leme873a83a2016-09-07 11:34:10 -0700705
Sudheer Shankae7361852017-03-07 11:51:46 -0800706 mActivityManagerInternal = LocalServices.getService(ActivityManagerInternal.class);
Felipe Leme873a83a2016-09-07 11:34:10 -0700707 try {
708 mActivityManager.registerUidObserver(mUidObserver,
Sudheer Shankac9d94072017-02-22 22:13:55 +0000709 ActivityManager.UID_OBSERVER_PROCSTATE|ActivityManager.UID_OBSERVER_GONE,
Dianne Hackborn5614bf52016-11-07 17:26:41 -0800710 ActivityManager.PROCESS_STATE_UNKNOWN, null);
Felipe Leme873a83a2016-09-07 11:34:10 -0700711 mNetworkManager.registerObserver(mAlertObserver);
712 } catch (RemoteException e) {
713 // ignored; both services live in system_server
714 }
715
716 // listen for changes to power save whitelist
717 final IntentFilter whitelistFilter = new IntentFilter(
718 PowerManager.ACTION_POWER_SAVE_WHITELIST_CHANGED);
719 mContext.registerReceiver(mPowerSaveWhitelistReceiver, whitelistFilter, null, mHandler);
720
721 DeviceIdleController.LocalService deviceIdleService
722 = LocalServices.getService(DeviceIdleController.LocalService.class);
723 deviceIdleService.setNetworkPolicyTempWhitelistCallback(mTempPowerSaveChangedCallback);
724
725 // watch for network interfaces to be claimed
726 final IntentFilter connFilter = new IntentFilter(CONNECTIVITY_ACTION);
727 mContext.registerReceiver(mConnReceiver, connFilter, CONNECTIVITY_INTERNAL, mHandler);
728
729 // listen for package changes to update policy
730 final IntentFilter packageFilter = new IntentFilter();
731 packageFilter.addAction(ACTION_PACKAGE_ADDED);
732 packageFilter.addDataScheme("package");
733 mContext.registerReceiver(mPackageReceiver, packageFilter, null, mHandler);
734
735 // listen for UID changes to update policy
736 mContext.registerReceiver(
737 mUidRemovedReceiver, new IntentFilter(ACTION_UID_REMOVED), null, mHandler);
738
739 // listen for user changes to update policy
740 final IntentFilter userFilter = new IntentFilter();
741 userFilter.addAction(ACTION_USER_ADDED);
742 userFilter.addAction(ACTION_USER_REMOVED);
743 mContext.registerReceiver(mUserReceiver, userFilter, null, mHandler);
744
745 // listen for stats update events
746 final IntentFilter statsFilter = new IntentFilter(ACTION_NETWORK_STATS_UPDATED);
747 mContext.registerReceiver(
748 mStatsReceiver, statsFilter, READ_NETWORK_USAGE_HISTORY, mHandler);
749
750 // listen for restrict background changes from notifications
751 final IntentFilter allowFilter = new IntentFilter(ACTION_ALLOW_BACKGROUND);
752 mContext.registerReceiver(mAllowReceiver, allowFilter, MANAGE_NETWORK_POLICY, mHandler);
753
754 // listen for snooze warning from notifications
755 final IntentFilter snoozeWarningFilter = new IntentFilter(ACTION_SNOOZE_WARNING);
756 mContext.registerReceiver(mSnoozeWarningReceiver, snoozeWarningFilter,
757 MANAGE_NETWORK_POLICY, mHandler);
758
759 // listen for configured wifi networks to be removed
760 final IntentFilter wifiConfigFilter =
761 new IntentFilter(CONFIGURED_NETWORKS_CHANGED_ACTION);
762 mContext.registerReceiver(mWifiConfigReceiver, wifiConfigFilter, null, mHandler);
763
764 // listen for wifi state changes to catch metered hint
765 final IntentFilter wifiStateFilter = new IntentFilter(
766 WifiManager.NETWORK_STATE_CHANGED_ACTION);
767 mContext.registerReceiver(mWifiStateReceiver, wifiStateFilter, null, mHandler);
768
Ammar Aijazi6ce48e22017-03-28 15:43:22 -0700769 // listen for carrier config changes to update data cycle information
770 final IntentFilter carrierConfigFilter = new IntentFilter(
771 ACTION_CARRIER_CONFIG_CHANGED);
772 mContext.registerReceiver(mCarrierConfigReceiver, carrierConfigFilter, null, mHandler);
773
Felipe Leme873a83a2016-09-07 11:34:10 -0700774 mUsageStats.addAppIdleStateChangeListener(new AppIdleStateChangeListener());
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800775 // tell systemReady() that the service has been initialized
776 initCompleteSignal.countDown();
Felipe Leme873a83a2016-09-07 11:34:10 -0700777 } finally {
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800778 // Restore the default priority after init is done
779 Process.setThreadPriority(oldPriority);
Felipe Leme873a83a2016-09-07 11:34:10 -0700780 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700781 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700782 }
783
Fyodor Kupolov311b9fa2016-12-02 16:24:35 -0800784 public CountDownLatch networkScoreAndNetworkManagementServiceReady() {
785 final CountDownLatch initCompleteSignal = new CountDownLatch(1);
786 mHandler.post(() -> initService(initCompleteSignal));
787 return initCompleteSignal;
788 }
789
790 public void systemReady(CountDownLatch initCompleteSignal) {
791 // wait for initService to complete
792 try {
793 if (!initCompleteSignal.await(30, TimeUnit.SECONDS)) {
794 throw new IllegalStateException("Service " + TAG +" init timeout");
795 }
796 } catch (InterruptedException e) {
797 Thread.currentThread().interrupt();
798 throw new IllegalStateException("Service " + TAG + " init interrupted", e);
799 }
800 }
801
Sudheer Shankac9d94072017-02-22 22:13:55 +0000802 final private IUidObserver mUidObserver = new IUidObserver.Stub() {
Sudheer Shanka80255802017-03-04 14:48:53 -0800803 @Override public void onUidStateChanged(int uid, int procState,
804 long procStateSeq) throws RemoteException {
Makoto Onuki8e777332017-03-28 11:25:47 -0700805 mUidEventHandler.obtainMessage(UID_MSG_STATE_CHANGED,
806 uid, procState, procStateSeq).sendToTarget();
Dianne Hackborna93c2c12012-05-31 15:29:36 -0700807 }
808
Dianne Hackborne07641d2016-11-09 15:07:23 -0800809 @Override public void onUidGone(int uid, boolean disabled) throws RemoteException {
Makoto Onuki8e777332017-03-28 11:25:47 -0700810 mUidEventHandler.obtainMessage(UID_MSG_GONE, uid, 0).sendToTarget();
Jeff Sharkeya4620792011-05-20 15:29:23 -0700811 }
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700812
813 @Override public void onUidActive(int uid) throws RemoteException {
814 }
815
Dianne Hackborne07641d2016-11-09 15:07:23 -0800816 @Override public void onUidIdle(int uid, boolean disabled) throws RemoteException {
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700817 }
Jeff Sharkeya4620792011-05-20 15:29:23 -0700818 };
819
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700820 final private BroadcastReceiver mPowerSaveWhitelistReceiver = new BroadcastReceiver() {
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700821 @Override
822 public void onReceive(Context context, Intent intent) {
823 // on background handler thread, and POWER_SAVE_WHITELIST_CHANGED is protected
Felipe Lemef0823852016-06-08 13:43:08 -0700824 synchronized (mUidRulesFirstLock) {
825 updatePowerSaveWhitelistUL();
826 updateRulesForRestrictPowerUL();
Felipe Leme09700462016-09-08 09:33:48 -0700827 updateRulesForAppIdleUL();
Dianne Hackborn0b4daca2015-04-27 09:47:32 -0700828 }
829 }
830 };
831
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700832 final private Runnable mTempPowerSaveChangedCallback = new Runnable() {
833 @Override
834 public void run() {
Felipe Lemef0823852016-06-08 13:43:08 -0700835 synchronized (mUidRulesFirstLock) {
836 updatePowerSaveTempWhitelistUL();
837 updateRulesForTempWhitelistChangeUL();
838 purgePowerSaveTempWhitelistUL();
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700839 }
840 }
841 };
842
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700843 final private BroadcastReceiver mPackageReceiver = new BroadcastReceiver() {
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700844 @Override
845 public void onReceive(Context context, Intent intent) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700846 // on background handler thread, and PACKAGE_ADDED is protected
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700847
848 final String action = intent.getAction();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700849 final int uid = intent.getIntExtra(EXTRA_UID, -1);
850 if (uid == -1) return;
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700851
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700852 if (ACTION_PACKAGE_ADDED.equals(action)) {
853 // update rules for UID, since it might be subject to
854 // global background data policy
855 if (LOGV) Slog.v(TAG, "ACTION_PACKAGE_ADDED for uid=" + uid);
Felipe Lemef0823852016-06-08 13:43:08 -0700856 synchronized (mUidRulesFirstLock) {
Felipe Leme03e95e22016-09-09 09:25:31 -0700857 updateRestrictionRulesForUidUL(uid);
Jeff Sharkey02e21d62011-07-17 15:53:33 -0700858 }
Jeff Sharkeyb09540f2011-06-19 01:08:12 -0700859 }
860 }
861 };
862
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700863 final private BroadcastReceiver mUidRemovedReceiver = new BroadcastReceiver() {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700864 @Override
865 public void onReceive(Context context, Intent intent) {
866 // on background handler thread, and UID_REMOVED is protected
867
868 final int uid = intent.getIntExtra(EXTRA_UID, -1);
869 if (uid == -1) return;
870
871 // remove any policy and update rules to clean up
872 if (LOGV) Slog.v(TAG, "ACTION_UID_REMOVED for uid=" + uid);
Felipe Lemef0823852016-06-08 13:43:08 -0700873 synchronized (mUidRulesFirstLock) {
Felipe Leme03e95e22016-09-09 09:25:31 -0700874 onUidDeletedUL(uid);
Felipe Lemef0823852016-06-08 13:43:08 -0700875 synchronized (mNetworkPoliciesSecondLock) {
876 writePolicyAL();
877 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700878 }
879 }
880 };
881
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700882 final private BroadcastReceiver mUserReceiver = new BroadcastReceiver() {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700883 @Override
884 public void onReceive(Context context, Intent intent) {
885 // on background handler thread, and USER_ADDED and USER_REMOVED
886 // broadcasts are protected
887
888 final String action = intent.getAction();
889 final int userId = intent.getIntExtra(Intent.EXTRA_USER_HANDLE, -1);
890 if (userId == -1) return;
891
Amith Yamasani15e472352015-04-24 19:06:07 -0700892 switch (action) {
893 case ACTION_USER_REMOVED:
894 case ACTION_USER_ADDED:
Felipe Lemef0823852016-06-08 13:43:08 -0700895 synchronized (mUidRulesFirstLock) {
Fyodor Kupolova31c5912016-01-22 11:26:09 -0800896 // Remove any persistable state for the given user; both cleaning up after a
Amith Yamasani15e472352015-04-24 19:06:07 -0700897 // USER_REMOVED, and one last sanity check during USER_ADDED
Felipe Lemef0823852016-06-08 13:43:08 -0700898 removeUserStateUL(userId, true);
Felipe Lemea110eec2016-04-29 09:58:06 -0700899 if (action == ACTION_USER_ADDED) {
900 // Add apps that are whitelisted by default.
Felipe Lemef0823852016-06-08 13:43:08 -0700901 addDefaultRestrictBackgroundWhitelistUidsUL(userId);
Felipe Lemea110eec2016-04-29 09:58:06 -0700902 }
903 // Update global restrict for that user
Felipe Lemef0823852016-06-08 13:43:08 -0700904 synchronized (mNetworkPoliciesSecondLock) {
905 updateRulesForGlobalChangeAL(true);
906 }
Amith Yamasani15e472352015-04-24 19:06:07 -0700907 }
908 break;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700909 }
910 }
911 };
912
Jeff Sharkey21c9c452011-06-07 12:26:43 -0700913 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -0700914 * Receiver that watches for {@link INetworkStatsService} updates, which we
915 * use to check against {@link NetworkPolicy#warningBytes}.
916 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700917 final private BroadcastReceiver mStatsReceiver = new BroadcastReceiver() {
Jeff Sharkey497e4432011-06-14 17:27:29 -0700918 @Override
919 public void onReceive(Context context, Intent intent) {
920 // on background handler thread, and verified
921 // READ_NETWORK_USAGE_HISTORY permission above.
922
Jeff Sharkey684c54a2011-11-16 17:46:30 -0800923 maybeRefreshTrustedTime();
Felipe Lemef0823852016-06-08 13:43:08 -0700924 synchronized (mNetworkPoliciesSecondLock) {
925 updateNetworkEnabledNL();
926 updateNotificationsNL();
Jeff Sharkey497e4432011-06-14 17:27:29 -0700927 }
928 }
929 };
930
931 /**
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700932 * Receiver that watches for {@link Notification} control of
933 * {@link #mRestrictBackground}.
934 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700935 final private BroadcastReceiver mAllowReceiver = new BroadcastReceiver() {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -0700936 @Override
937 public void onReceive(Context context, Intent intent) {
938 // on background handler thread, and verified MANAGE_NETWORK_POLICY
939 // permission above.
940
941 setRestrictBackground(false);
942 }
943 };
944
945 /**
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800946 * Receiver that watches for {@link Notification} control of
947 * {@link NetworkPolicy#lastWarningSnooze}.
948 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700949 final private BroadcastReceiver mSnoozeWarningReceiver = new BroadcastReceiver() {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -0800950 @Override
951 public void onReceive(Context context, Intent intent) {
952 // on background handler thread, and verified MANAGE_NETWORK_POLICY
953 // permission above.
954
955 final NetworkTemplate template = intent.getParcelableExtra(EXTRA_NETWORK_TEMPLATE);
956 performSnooze(template, TYPE_WARNING);
957 }
958 };
959
960 /**
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700961 * Receiver that watches for {@link WifiConfiguration} to be changed.
962 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700963 final private BroadcastReceiver mWifiConfigReceiver = new BroadcastReceiver() {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700964 @Override
965 public void onReceive(Context context, Intent intent) {
966 // on background handler thread, and verified CONNECTIVITY_INTERNAL
967 // permission above.
968
969 final int reason = intent.getIntExtra(EXTRA_CHANGE_REASON, CHANGE_REASON_ADDED);
970 if (reason == CHANGE_REASON_REMOVED) {
971 final WifiConfiguration config = intent.getParcelableExtra(
972 EXTRA_WIFI_CONFIGURATION);
Irfan Sheriff00a10a12012-04-27 21:24:17 -0700973 if (config.SSID != null) {
Jeff Sharkey2e4dce02012-12-18 17:06:06 -0800974 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(config.SSID);
Felipe Lemef0823852016-06-08 13:43:08 -0700975 synchronized (mUidRulesFirstLock) {
976 synchronized (mNetworkPoliciesSecondLock) {
977 if (mNetworkPolicy.containsKey(template)) {
978 mNetworkPolicy.remove(template);
979 writePolicyAL();
980 }
Irfan Sheriff00a10a12012-04-27 21:24:17 -0700981 }
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700982 }
983 }
984 }
985 }
986 };
987
988 /**
989 * Receiver that watches {@link WifiInfo} state changes to infer metered
990 * state. Ignores hints when policy is user-defined.
991 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -0700992 final private BroadcastReceiver mWifiStateReceiver = new BroadcastReceiver() {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -0700993 @Override
994 public void onReceive(Context context, Intent intent) {
995 // on background handler thread, and verified CONNECTIVITY_INTERNAL
996 // permission above.
997
998 // ignore when not connected
999 final NetworkInfo netInfo = intent.getParcelableExtra(EXTRA_NETWORK_INFO);
1000 if (!netInfo.isConnected()) return;
1001
1002 final WifiInfo info = intent.getParcelableExtra(EXTRA_WIFI_INFO);
1003 final boolean meteredHint = info.getMeteredHint();
1004
Jeff Sharkey2e4dce02012-12-18 17:06:06 -08001005 final NetworkTemplate template = NetworkTemplate.buildTemplateWifi(info.getSSID());
Hugo Benichi446c9c92017-04-10 09:41:10 +09001006 synchronized (mUidRulesFirstLock) {
1007 synchronized (mNetworkPoliciesSecondLock) {
1008 NetworkPolicy policy = mNetworkPolicy.get(template);
1009 if (policy == null && meteredHint) {
1010 // policy doesn't exist, and AP is hinting that it's
1011 // metered: create an inferred policy.
1012 policy = newWifiPolicy(template, meteredHint);
1013 addNetworkPolicyAL(policy);
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001014
Hugo Benichi446c9c92017-04-10 09:41:10 +09001015 } else if (policy != null && policy.inferred) {
1016 // policy exists, and was inferred: update its current
1017 // metered state.
1018 policy.metered = meteredHint;
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001019
Hugo Benichi446c9c92017-04-10 09:41:10 +09001020 // since this is inferred for each wifi session, just update
1021 // rules without persisting.
1022 updateNetworkRulesNL();
1023 }
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001024 }
1025 }
1026 }
1027 };
1028
Felipe Lemeb1a65ee2016-02-08 10:12:01 -08001029 static NetworkPolicy newWifiPolicy(NetworkTemplate template, boolean metered) {
1030 return new NetworkPolicy(template, CYCLE_NONE, Time.TIMEZONE_UTC,
1031 WARNING_DISABLED, LIMIT_DISABLED, SNOOZE_NEVER, SNOOZE_NEVER,
1032 metered, true);
1033 }
1034
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07001035 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001036 * Observer that watches for {@link INetworkManagementService} alerts.
1037 */
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07001038 final private INetworkManagementEventObserver mAlertObserver
1039 = new BaseNetworkObserver() {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001040 @Override
1041 public void limitReached(String limitName, String iface) {
1042 // only someone like NMS should be calling us
1043 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
1044
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08001045 if (!LIMIT_GLOBAL_ALERT.equals(limitName)) {
1046 mHandler.obtainMessage(MSG_LIMIT_REACHED, iface).sendToTarget();
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001047 }
1048 }
1049 };
1050
1051 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -07001052 * Check {@link NetworkPolicy} against current {@link INetworkStatsService}
1053 * to show visible notifications as needed.
1054 */
Felipe Lemef0823852016-06-08 13:43:08 -07001055 void updateNotificationsNL() {
1056 if (LOGV) Slog.v(TAG, "updateNotificationsNL()");
Jeff Sharkey497e4432011-06-14 17:27:29 -07001057
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001058 // keep track of previously active notifications
Chris Wren193ae6b2017-03-31 15:17:11 -04001059 final ArraySet<NotificationId> beforeNotifs = new ArraySet<NotificationId>(mActiveNotifs);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001060 mActiveNotifs.clear();
Jeff Sharkey497e4432011-06-14 17:27:29 -07001061
1062 // TODO: when switching to kernel notifications, compute next future
1063 // cycle boundary to recompute notifications.
1064
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001065 // examine stats for each active policy
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001066 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001067 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
1068 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001069 // ignore policies that aren't relevant to user
1070 if (!isTemplateRelevant(policy.template)) continue;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001071 if (!policy.hasCycle()) continue;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001072
Jeff Sharkey497e4432011-06-14 17:27:29 -07001073 final long start = computeLastCycleBoundary(currentTime, policy);
1074 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001075 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001076
Jeff Sharkey50e7e512011-10-10 16:50:35 -07001077 if (policy.isOverLimit(totalBytes)) {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001078 if (policy.lastLimitSnooze >= start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001079 enqueueNotification(policy, TYPE_LIMIT_SNOOZED, totalBytes);
1080 } else {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001081 enqueueNotification(policy, TYPE_LIMIT, totalBytes);
Felipe Lemef0823852016-06-08 13:43:08 -07001082 notifyOverLimitNL(policy.template);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001083 }
1084
Jeff Sharkey497e4432011-06-14 17:27:29 -07001085 } else {
Felipe Lemef0823852016-06-08 13:43:08 -07001086 notifyUnderLimitNL(policy.template);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001087
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001088 if (policy.isOverWarning(totalBytes) && policy.lastWarningSnooze < start) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001089 enqueueNotification(policy, TYPE_WARNING, totalBytes);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001090 }
1091 }
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001092 }
1093
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001094 // cancel stale notifications that we didn't renew above
Dianne Hackborn497175b2014-07-01 12:56:08 -07001095 for (int i = beforeNotifs.size()-1; i >= 0; i--) {
Chris Wren193ae6b2017-03-31 15:17:11 -04001096 final NotificationId notificationId = beforeNotifs.valueAt(i);
1097 if (!mActiveNotifs.contains(notificationId)) {
1098 cancelNotification(notificationId);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001099 }
1100 }
1101 }
1102
1103 /**
1104 * Test if given {@link NetworkTemplate} is relevant to user based on
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001105 * current device state, such as when
1106 * {@link TelephonyManager#getSubscriberId()} matches. This is regardless of
1107 * data connection status.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001108 */
1109 private boolean isTemplateRelevant(NetworkTemplate template) {
Jeff Sharkey32566012014-12-02 18:30:14 -08001110 if (template.isMatchRuleMobile()) {
1111 final TelephonyManager tele = TelephonyManager.from(mContext);
1112 final SubscriptionManager sub = SubscriptionManager.from(mContext);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001113
Jeff Sharkey32566012014-12-02 18:30:14 -08001114 // Mobile template is relevant when any active subscriber matches
1115 final int[] subIds = sub.getActiveSubscriptionIdList();
1116 for (int subId : subIds) {
1117 final String subscriberId = tele.getSubscriberId(subId);
1118 final NetworkIdentity probeIdent = new NetworkIdentity(TYPE_MOBILE,
Jack Yu66a6be32016-03-30 11:14:39 -07001119 TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false, true);
Jeff Sharkey32566012014-12-02 18:30:14 -08001120 if (template.matches(probeIdent)) {
1121 return true;
Jeff Sharkey3a66cf32012-03-20 17:00:01 -07001122 }
Jeff Sharkey32566012014-12-02 18:30:14 -08001123 }
1124 return false;
1125 } else {
1126 return true;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001127 }
Jeff Sharkey497e4432011-06-14 17:27:29 -07001128 }
1129
1130 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001131 * Notify that given {@link NetworkTemplate} is over
1132 * {@link NetworkPolicy#limitBytes}, potentially showing dialog to user.
1133 */
Felipe Lemef0823852016-06-08 13:43:08 -07001134 private void notifyOverLimitNL(NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001135 if (!mOverLimitNotified.contains(template)) {
Wei Liu546cb772016-07-21 16:19:01 -07001136 mContext.startActivity(buildNetworkOverLimitIntent(mContext.getResources(), template));
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001137 mOverLimitNotified.add(template);
1138 }
1139 }
1140
Felipe Lemef0823852016-06-08 13:43:08 -07001141 private void notifyUnderLimitNL(NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001142 mOverLimitNotified.remove(template);
1143 }
1144
1145 /**
Jeff Sharkey497e4432011-06-14 17:27:29 -07001146 * Show notification for combined {@link NetworkPolicy} and specific type,
1147 * like {@link #TYPE_LIMIT}. Okay to call multiple times.
1148 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001149 private void enqueueNotification(NetworkPolicy policy, int type, long totalBytes) {
Chris Wren193ae6b2017-03-31 15:17:11 -04001150 final NotificationId notificationId = new NotificationId(policy, type);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001151 final Notification.Builder builder =
1152 new Notification.Builder(mContext, SystemNotificationChannels.NETWORK_STATUS);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001153 builder.setOnlyAlertOnce(true);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001154 builder.setWhen(0L);
Alan Viverette4a357cd2015-03-18 18:37:18 -07001155 builder.setColor(mContext.getColor(
Selim Cinek255dd042014-08-19 22:29:02 +02001156 com.android.internal.R.color.system_notification_accent_color));
Jeff Sharkey497e4432011-06-14 17:27:29 -07001157
1158 final Resources res = mContext.getResources();
Chris Wren8a3d56c2016-08-01 15:52:52 -04001159 CharSequence body = null;
Jeff Sharkey497e4432011-06-14 17:27:29 -07001160 switch (type) {
1161 case TYPE_WARNING: {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001162 final CharSequence title = res.getText(R.string.data_usage_warning_title);
Chris Wren8a3d56c2016-08-01 15:52:52 -04001163 body = res.getString(R.string.data_usage_warning_body);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001164
Jeff Sharkey50e7e512011-10-10 16:50:35 -07001165 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001166 builder.setTicker(title);
1167 builder.setContentTitle(title);
1168 builder.setContentText(body);
Sanket Padawec015e1c2016-08-11 16:34:10 -07001169 builder.setDefaults(Notification.DEFAULT_ALL);
Geoffrey Pitschaf759c52017-02-15 09:35:38 -05001170 builder.setChannel(SystemNotificationChannels.NETWORK_ALERTS);
Jeff Sharkey14711eb2011-06-15 10:29:17 -07001171
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001172 final Intent snoozeIntent = buildSnoozeWarningIntent(policy.template);
1173 builder.setDeleteIntent(PendingIntent.getBroadcast(
1174 mContext, 0, snoozeIntent, PendingIntent.FLAG_UPDATE_CURRENT));
1175
Wei Liu546cb772016-07-21 16:19:01 -07001176 final Intent viewIntent = buildViewDataUsageIntent(res, policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -07001177 builder.setContentIntent(PendingIntent.getActivity(
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001178 mContext, 0, viewIntent, PendingIntent.FLAG_UPDATE_CURRENT));
1179
Jeff Sharkey497e4432011-06-14 17:27:29 -07001180 break;
1181 }
1182 case TYPE_LIMIT: {
Chris Wren8a3d56c2016-08-01 15:52:52 -04001183 body = res.getText(R.string.data_usage_limit_body);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001184
1185 final CharSequence title;
John Spurlockaedebda2014-07-14 14:36:32 -04001186 int icon = R.drawable.stat_notify_disabled_data;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001187 switch (policy.template.getMatchRule()) {
1188 case MATCH_MOBILE_3G_LOWER:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001189 title = res.getText(R.string.data_usage_3g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001190 break;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07001191 case MATCH_MOBILE_4G:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001192 title = res.getText(R.string.data_usage_4g_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001193 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001194 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001195 title = res.getText(R.string.data_usage_mobile_limit_title);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001196 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001197 case MATCH_WIFI:
1198 title = res.getText(R.string.data_usage_wifi_limit_title);
John Spurlockaedebda2014-07-14 14:36:32 -04001199 icon = R.drawable.stat_notify_error;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001200 break;
1201 default:
1202 title = null;
1203 break;
Jeff Sharkey497e4432011-06-14 17:27:29 -07001204 }
1205
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001206 builder.setOngoing(true);
John Spurlockaedebda2014-07-14 14:36:32 -04001207 builder.setSmallIcon(icon);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001208 builder.setTicker(title);
1209 builder.setContentTitle(title);
1210 builder.setContentText(body);
Jeff Sharkey14711eb2011-06-15 10:29:17 -07001211
Wei Liu546cb772016-07-21 16:19:01 -07001212 final Intent intent = buildNetworkOverLimitIntent(res, policy.template);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001213 builder.setContentIntent(PendingIntent.getActivity(
1214 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
1215 break;
1216 }
1217 case TYPE_LIMIT_SNOOZED: {
1218 final long overBytes = totalBytes - policy.limitBytes;
Chris Wren8a3d56c2016-08-01 15:52:52 -04001219 body = res.getString(R.string.data_usage_limit_snoozed_body,
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001220 Formatter.formatFileSize(mContext, overBytes));
1221
1222 final CharSequence title;
1223 switch (policy.template.getMatchRule()) {
1224 case MATCH_MOBILE_3G_LOWER:
1225 title = res.getText(R.string.data_usage_3g_limit_snoozed_title);
1226 break;
1227 case MATCH_MOBILE_4G:
1228 title = res.getText(R.string.data_usage_4g_limit_snoozed_title);
1229 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001230 case MATCH_MOBILE_ALL:
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001231 title = res.getText(R.string.data_usage_mobile_limit_snoozed_title);
1232 break;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001233 case MATCH_WIFI:
1234 title = res.getText(R.string.data_usage_wifi_limit_snoozed_title);
1235 break;
1236 default:
1237 title = null;
1238 break;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001239 }
1240
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001241 builder.setOngoing(true);
Jeff Sharkey50e7e512011-10-10 16:50:35 -07001242 builder.setSmallIcon(R.drawable.stat_notify_error);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001243 builder.setTicker(title);
1244 builder.setContentTitle(title);
1245 builder.setContentText(body);
1246
Wei Liu546cb772016-07-21 16:19:01 -07001247 final Intent intent = buildViewDataUsageIntent(res, policy.template);
Jeff Sharkey14711eb2011-06-15 10:29:17 -07001248 builder.setContentIntent(PendingIntent.getActivity(
1249 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
Jeff Sharkey497e4432011-06-14 17:27:29 -07001250 break;
1251 }
1252 }
1253
1254 // TODO: move to NotificationManager once we can mock it
1255 try {
1256 final String packageName = mContext.getPackageName();
Chris Wren193ae6b2017-03-31 15:17:11 -04001257 if (!TextUtils.isEmpty(body)) {
Chris Wren8a3d56c2016-08-01 15:52:52 -04001258 builder.setStyle(new Notification.BigTextStyle()
1259 .bigText(body));
1260 }
Jeff Sharkey497e4432011-06-14 17:27:29 -07001261 mNotifManager.enqueueNotificationWithTag(
Chris Wren193ae6b2017-03-31 15:17:11 -04001262 packageName, packageName, notificationId.getTag(), notificationId.getId(),
Julia Reynoldsfea6f7b2017-04-19 13:50:12 -04001263 builder.build(), UserHandle.USER_ALL);
Chris Wren193ae6b2017-03-31 15:17:11 -04001264 mActiveNotifs.add(notificationId);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001265 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001266 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -07001267 }
1268 }
1269
Chris Wren193ae6b2017-03-31 15:17:11 -04001270 private void cancelNotification(NotificationId notificationId) {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001271 // TODO: move to NotificationManager once we can mock it
1272 try {
1273 final String packageName = mContext.getPackageName();
1274 mNotifManager.cancelNotificationWithTag(
Chris Wren193ae6b2017-03-31 15:17:11 -04001275 packageName, notificationId.getTag(), notificationId.getId(),
1276 UserHandle.USER_ALL);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001277 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001278 // ignored; service lives in system_server
Jeff Sharkey497e4432011-06-14 17:27:29 -07001279 }
1280 }
1281
1282 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001283 * Receiver that watches for {@link IConnectivityManager} to claim network
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001284 * interfaces. Used to apply {@link NetworkPolicy} to matching networks.
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001285 */
Jeff Sharkeyb09540f2011-06-19 01:08:12 -07001286 private BroadcastReceiver mConnReceiver = new BroadcastReceiver() {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001287 @Override
1288 public void onReceive(Context context, Intent intent) {
1289 // on background handler thread, and verified CONNECTIVITY_INTERNAL
1290 // permission above.
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001291
1292 maybeRefreshTrustedTime();
Hugo Benichi446c9c92017-04-10 09:41:10 +09001293 synchronized (mUidRulesFirstLock) {
1294 synchronized (mNetworkPoliciesSecondLock) {
1295 ensureActiveMobilePolicyAL();
1296 normalizePoliciesNL();
1297 updateNetworkEnabledNL();
1298 updateNetworkRulesNL();
1299 updateNotificationsNL();
1300 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001301 }
1302 }
1303 };
1304
1305 /**
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001306 * Update mobile policies with data cycle information from {@link CarrierConfigManager}
1307 * if necessary.
1308 *
1309 * @param subId that has its associated NetworkPolicy updated if necessary
1310 * @return if any policies were updated
1311 */
1312 private boolean maybeUpdateMobilePolicyCycleNL(int subId) {
1313 if (LOGV) Slog.v(TAG, "maybeUpdateMobilePolicyCycleNL()");
1314 final PersistableBundle config = mCarrierConfigManager.getConfigForSubId(subId);
1315
1316 if (config == null) {
1317 return false;
1318 }
1319
1320 boolean policyUpdated = false;
1321 final String subscriberId = TelephonyManager.from(mContext).getSubscriberId(subId);
1322
1323 // find and update the mobile NetworkPolicy for this subscriber id
1324 final NetworkIdentity probeIdent = new NetworkIdentity(TYPE_MOBILE,
1325 TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false, true);
1326 for (int i = mNetworkPolicy.size() - 1; i >= 0; i--) {
1327 final NetworkTemplate template = mNetworkPolicy.keyAt(i);
1328 if (template.matches(probeIdent)) {
1329 NetworkPolicy policy = mNetworkPolicy.valueAt(i);
1330
1331 // only update the policy if the user didn't change any of the defaults.
1332 if (!policy.inferred) {
1333 // TODO: inferred could be split, so that if a user changes their data limit or
1334 // warning, it doesn't prevent their cycle date from being updated.
1335 if (LOGD) Slog.v(TAG, "Didn't update NetworkPolicy because policy.inferred");
1336 continue;
1337 }
1338
1339 final int cycleDay = getCycleDayFromCarrierConfig(config, policy.cycleDay);
1340 final long warningBytes = getWarningBytesFromCarrierConfig(config,
1341 policy.warningBytes);
1342 final long limitBytes = getLimitBytesFromCarrierConfig(config,
1343 policy.limitBytes);
1344
1345 if (policy.cycleDay == cycleDay &&
1346 policy.warningBytes == warningBytes &&
1347 policy.limitBytes == limitBytes) {
1348 continue;
1349 }
1350
1351 policyUpdated = true;
1352 policy.cycleDay = cycleDay;
1353 policy.warningBytes = warningBytes;
1354 policy.limitBytes = limitBytes;
1355
1356 if (LOGD) {
1357 Slog.d(TAG, "Updated NetworkPolicy " + policy + " which matches subscriber "
1358 + NetworkIdentity.scrubSubscriberId(subscriberId)
1359 + " from CarrierConfigManager");
1360 }
1361 }
1362 }
1363
1364 return policyUpdated;
1365 }
1366
1367 /**
1368 * Returns the cycle day that should be used for a mobile NetworkPolicy.
1369 *
1370 * It attempts to get an appropriate cycle day from the passed in CarrierConfig. If it's unable
1371 * to do so, it returns the fallback value.
1372 *
1373 * @param config The CarrierConfig to read the value from.
1374 * @param fallbackCycleDay to return if the CarrierConfig can't be read.
1375 * @return cycleDay to use in the mobile NetworkPolicy.
1376 */
1377 @VisibleForTesting
1378 public int getCycleDayFromCarrierConfig(@Nullable PersistableBundle config,
1379 int fallbackCycleDay) {
1380 if (config == null) {
1381 return fallbackCycleDay;
1382 }
1383 int cycleDay =
1384 config.getInt(CarrierConfigManager.KEY_MONTHLY_DATA_CYCLE_DAY_INT);
1385 if (cycleDay == DATA_CYCLE_USE_PLATFORM_DEFAULT) {
1386 return fallbackCycleDay;
1387 }
1388 // validate cycleDay value
1389 final Calendar cal = Calendar.getInstance();
1390 if (cycleDay < cal.getMinimum(Calendar.DAY_OF_MONTH) ||
1391 cycleDay > cal.getMaximum(Calendar.DAY_OF_MONTH)) {
1392 Slog.e(TAG, "Invalid date in "
1393 + "CarrierConfigManager.KEY_MONTHLY_DATA_CYCLE_DAY_INT: " + cycleDay);
1394 return fallbackCycleDay;
1395 }
1396 return cycleDay;
1397 }
1398
1399 /**
1400 * Returns the warning bytes that should be used for a mobile NetworkPolicy.
1401 *
1402 * It attempts to get an appropriate value from the passed in CarrierConfig. If it's unable
1403 * to do so, it returns the fallback value.
1404 *
1405 * @param config The CarrierConfig to read the value from.
1406 * @param fallbackWarningBytes to return if the CarrierConfig can't be read.
1407 * @return warningBytes to use in the mobile NetworkPolicy.
1408 */
1409 @VisibleForTesting
1410 public long getWarningBytesFromCarrierConfig(@Nullable PersistableBundle config,
1411 long fallbackWarningBytes) {
1412 if (config == null) {
1413 return fallbackWarningBytes;
1414 }
1415 long warningBytes =
1416 config.getLong(CarrierConfigManager.KEY_DATA_WARNING_THRESHOLD_BYTES_LONG);
1417
1418 if (warningBytes == DATA_CYCLE_THRESHOLD_DISABLED) {
1419 return WARNING_DISABLED;
1420 } else if (warningBytes == DATA_CYCLE_USE_PLATFORM_DEFAULT) {
1421 return getPlatformDefaultWarningBytes();
1422 } else if (warningBytes < 0) {
1423 Slog.e(TAG, "Invalid value in "
1424 + "CarrierConfigManager.KEY_DATA_WARNING_THRESHOLD_BYTES_LONG; expected a "
1425 + "non-negative value but got: " + warningBytes);
1426 return fallbackWarningBytes;
1427 }
1428
1429 return warningBytes;
1430 }
1431
1432 /**
1433 * Returns the limit bytes that should be used for a mobile NetworkPolicy.
1434 *
1435 * It attempts to get an appropriate value from the passed in CarrierConfig. If it's unable
1436 * to do so, it returns the fallback value.
1437 *
1438 * @param config The CarrierConfig to read the value from.
1439 * @param fallbackLimitBytes to return if the CarrierConfig can't be read.
1440 * @return limitBytes to use in the mobile NetworkPolicy.
1441 */
1442 @VisibleForTesting
1443 public long getLimitBytesFromCarrierConfig(@Nullable PersistableBundle config,
1444 long fallbackLimitBytes) {
1445 if (config == null) {
1446 return fallbackLimitBytes;
1447 }
1448 long limitBytes =
1449 config.getLong(CarrierConfigManager.KEY_DATA_LIMIT_THRESHOLD_BYTES_LONG);
1450
1451 if (limitBytes == DATA_CYCLE_THRESHOLD_DISABLED) {
1452 return LIMIT_DISABLED;
1453 } else if (limitBytes == DATA_CYCLE_USE_PLATFORM_DEFAULT) {
1454 return getPlatformDefaultLimitBytes();
1455 } else if (limitBytes < 0) {
1456 Slog.e(TAG, "Invalid value in "
1457 + "CarrierConfigManager.KEY_DATA_LIMIT_THRESHOLD_BYTES_LONG; expected a "
1458 + "non-negative value but got: " + limitBytes);
1459 return fallbackLimitBytes;
1460 }
1461 return limitBytes;
1462 }
1463
1464 /**
1465 * Receiver that watches for {@link CarrierConfigManager} to be changed.
1466 */
1467 private BroadcastReceiver mCarrierConfigReceiver = new BroadcastReceiver() {
1468 @Override
1469 public void onReceive(Context context, Intent intent) {
1470 // No need to do a permission check, because the ACTION_CARRIER_CONFIG_CHANGED
1471 // broadcast is protected and can't be spoofed. Runs on a background handler thread.
1472
1473 if (!intent.hasExtra(PhoneConstants.SUBSCRIPTION_KEY)) {
1474 return;
1475 }
1476 final int subId = intent.getIntExtra(PhoneConstants.SUBSCRIPTION_KEY, -1);
1477 final TelephonyManager tele = TelephonyManager.from(mContext);
1478 final String subscriberId = tele.getSubscriberId(subId);
1479
1480 maybeRefreshTrustedTime();
1481 synchronized (mUidRulesFirstLock) {
1482 synchronized (mNetworkPoliciesSecondLock) {
Hugo Benichi446c9c92017-04-10 09:41:10 +09001483 final boolean added = ensureActiveMobilePolicyAL(subId, subscriberId);
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001484 if (added) return;
1485 final boolean updated = maybeUpdateMobilePolicyCycleNL(subId);
1486 if (!updated) return;
1487 // update network and notification rules, as the data cycle changed and it's
1488 // possible that we should be triggering warnings/limits now
1489 handleNetworkPoliciesUpdateAL(true);
1490 }
1491 }
1492 }
1493 };
1494
1495 /**
1496 * Handles all tasks that need to be run after a new network policy has been set, or an existing
1497 * one has been updated.
1498 *
1499 * @param shouldNormalizePolicies true iff network policies need to be normalized after the
1500 * update.
1501 */
1502 void handleNetworkPoliciesUpdateAL(boolean shouldNormalizePolicies) {
1503 if (shouldNormalizePolicies) {
1504 normalizePoliciesNL();
1505 }
1506 updateNetworkEnabledNL();
1507 updateNetworkRulesNL();
1508 updateNotificationsNL();
1509 writePolicyAL();
1510 }
1511
1512 /**
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001513 * Proactively control network data connections when they exceed
1514 * {@link NetworkPolicy#limitBytes}.
1515 */
Felipe Lemef0823852016-06-08 13:43:08 -07001516 void updateNetworkEnabledNL() {
1517 if (LOGV) Slog.v(TAG, "updateNetworkEnabledNL()");
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001518
1519 // TODO: reset any policy-disabled networks when any policy is removed
1520 // completely, which is currently rare case.
1521
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001522 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001523 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
1524 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001525 // shortcut when policy has no limit
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001526 if (policy.limitBytes == LIMIT_DISABLED || !policy.hasCycle()) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001527 setNetworkTemplateEnabled(policy.template, true);
1528 continue;
1529 }
1530
1531 final long start = computeLastCycleBoundary(currentTime, policy);
1532 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001533 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001534
1535 // disable data connection when over limit and not snoozed
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001536 final boolean overLimitWithoutSnooze = policy.isOverLimit(totalBytes)
1537 && policy.lastLimitSnooze < start;
1538 final boolean networkEnabled = !overLimitWithoutSnooze;
Jeff Sharkey8e9992a2011-08-23 18:37:23 -07001539
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001540 setNetworkTemplateEnabled(policy.template, networkEnabled);
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001541 }
1542 }
1543
1544 /**
Jeff Sharkey32566012014-12-02 18:30:14 -08001545 * Proactively disable networks that match the given
1546 * {@link NetworkTemplate}.
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001547 */
1548 private void setNetworkTemplateEnabled(NetworkTemplate template, boolean enabled) {
Jeff Sharkey32566012014-12-02 18:30:14 -08001549 // TODO: reach into ConnectivityManager to proactively disable bringing
1550 // up this network, since we know that traffic will be blocked.
Jack Yu8781b682016-07-08 14:28:51 -07001551
1552 if (template.getMatchRule() == MATCH_MOBILE_ALL) {
1553 // If mobile data usage hits the limit or if the user resumes the data, we need to
1554 // notify telephony.
1555 final SubscriptionManager sm = SubscriptionManager.from(mContext);
1556 final TelephonyManager tm = TelephonyManager.from(mContext);
1557
1558 final int[] subIds = sm.getActiveSubscriptionIdList();
1559 for (int subId : subIds) {
1560 final String subscriberId = tm.getSubscriberId(subId);
1561 final NetworkIdentity probeIdent = new NetworkIdentity(TYPE_MOBILE,
1562 TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false, true);
1563 // Template is matched when subscriber id matches.
1564 if (template.matches(probeIdent)) {
1565 tm.setPolicyDataEnabled(enabled, subId);
1566 }
1567 }
1568 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001569 }
1570
1571 /**
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001572 * Examine all connected {@link NetworkState}, looking for
1573 * {@link NetworkPolicy} that need to be enforced. When matches found, set
1574 * remaining quota based on usage cycle and historical stats.
1575 */
Felipe Lemef0823852016-06-08 13:43:08 -07001576 void updateNetworkRulesNL() {
1577 if (LOGV) Slog.v(TAG, "updateNetworkRulesNL()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001578
1579 final NetworkState[] states;
1580 try {
1581 states = mConnManager.getAllNetworkState();
1582 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001583 // ignored; service lives in system_server
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001584 return;
1585 }
1586
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001587 // First, generate identities of all connected networks so we can
1588 // quickly compare them against all defined policies below.
1589 final ArrayList<Pair<String, NetworkIdentity>> connIdents = new ArrayList<>(states.length);
Dianne Hackborn497175b2014-07-01 12:56:08 -07001590 final ArraySet<String> connIfaces = new ArraySet<String>(states.length);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001591 for (NetworkState state : states) {
Wei Liub8eaf452016-01-25 10:32:27 -08001592 if (state.networkInfo != null && state.networkInfo.isConnected()) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001593 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001594
1595 final String baseIface = state.linkProperties.getInterfaceName();
Jeff Sharkey9da2f1e2014-08-14 12:55:00 -07001596 if (baseIface != null) {
1597 connIdents.add(Pair.create(baseIface, ident));
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001598 }
1599
1600 // Stacked interfaces are considered to have same identity as
1601 // their parent network.
1602 final List<LinkProperties> stackedLinks = state.linkProperties.getStackedLinks();
1603 for (LinkProperties stackedLink : stackedLinks) {
1604 final String stackedIface = stackedLink.getInterfaceName();
Jeff Sharkey9da2f1e2014-08-14 12:55:00 -07001605 if (stackedIface != null) {
1606 connIdents.add(Pair.create(stackedIface, ident));
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001607 }
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001608 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001609 }
1610 }
1611
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001612 // Apply policies against all connected interfaces found above
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001613 mNetworkRules.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001614 final ArrayList<String> ifaceList = Lists.newArrayList();
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001615 for (int i = mNetworkPolicy.size() - 1; i >= 0; i--) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001616 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001617
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001618 ifaceList.clear();
Jeff Sharkeyeb2c2c72014-08-11 15:22:51 -07001619 for (int j = connIdents.size() - 1; j >= 0; j--) {
1620 final Pair<String, NetworkIdentity> ident = connIdents.get(j);
1621 if (policy.template.matches(ident.second)) {
1622 ifaceList.add(ident.first);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001623 }
1624 }
1625
1626 if (ifaceList.size() > 0) {
1627 final String[] ifaces = ifaceList.toArray(new String[ifaceList.size()]);
Jeff Sharkey02e21d62011-07-17 15:53:33 -07001628 mNetworkRules.put(policy, ifaces);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001629 }
1630 }
1631
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001632 long lowestRule = Long.MAX_VALUE;
Dianne Hackborn497175b2014-07-01 12:56:08 -07001633 final ArraySet<String> newMeteredIfaces = new ArraySet<String>(states.length);
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001634
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001635 // apply each policy that we found ifaces for; compute remaining data
1636 // based on current cycle and historical stats, and push to kernel.
Jeff Sharkey684c54a2011-11-16 17:46:30 -08001637 final long currentTime = currentTimeMillis();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001638 for (int i = mNetworkRules.size()-1; i >= 0; i--) {
1639 final NetworkPolicy policy = mNetworkRules.keyAt(i);
1640 final String[] ifaces = mNetworkRules.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001641
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001642 final long start;
1643 final long totalBytes;
1644 if (policy.hasCycle()) {
1645 start = computeLastCycleBoundary(currentTime, policy);
1646 totalBytes = getTotalBytes(policy.template, start, currentTime);
1647 } else {
1648 start = Long.MAX_VALUE;
1649 totalBytes = 0;
1650 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001651
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001652 if (LOGD) {
Felipe Leme03e689d2016-03-02 16:17:38 -08001653 Slog.d(TAG, "applying policy " + policy + " to ifaces " + Arrays.toString(ifaces));
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001654 }
1655
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001656 final boolean hasWarning = policy.warningBytes != LIMIT_DISABLED;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001657 final boolean hasLimit = policy.limitBytes != LIMIT_DISABLED;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001658 if (hasLimit || policy.metered) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001659 final long quotaBytes;
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001660 if (!hasLimit) {
1661 // metered network, but no policy limit; we still need to
1662 // restrict apps, so push really high quota.
1663 quotaBytes = Long.MAX_VALUE;
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001664 } else if (policy.lastLimitSnooze >= start) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001665 // snoozing past quota, but we still need to restrict apps,
1666 // so push really high quota.
1667 quotaBytes = Long.MAX_VALUE;
1668 } else {
1669 // remaining "quota" bytes are based on total usage in
1670 // current cycle. kernel doesn't like 0-byte rules, so we
1671 // set 1-byte quota and disable the radio later.
1672 quotaBytes = Math.max(1, policy.limitBytes - totalBytes);
1673 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001674
1675 if (ifaces.length > 1) {
1676 // TODO: switch to shared quota once NMS supports
1677 Slog.w(TAG, "shared quota unsupported; generating rule for each iface");
Ashish Sharma50fd36d2011-06-15 19:34:53 -07001678 }
1679
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001680 for (String iface : ifaces) {
Amith Yamasani3646cbd2016-04-13 14:04:53 -07001681 // long quotaBytes split up into two ints to fit in message
1682 mHandler.obtainMessage(MSG_UPDATE_INTERFACE_QUOTA,
1683 (int) (quotaBytes >> 32), (int) (quotaBytes & 0xFFFFFFFF), iface)
1684 .sendToTarget();
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001685 newMeteredIfaces.add(iface);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001686 }
1687 }
Jeff Sharkeyac3fcb12012-05-02 18:11:52 -07001688
1689 // keep track of lowest warning or limit of active policies
1690 if (hasWarning && policy.warningBytes < lowestRule) {
1691 lowestRule = policy.warningBytes;
1692 }
1693 if (hasLimit && policy.limitBytes < lowestRule) {
1694 lowestRule = policy.limitBytes;
1695 }
1696 }
1697
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001698 for (int i = connIfaces.size()-1; i >= 0; i--) {
1699 String iface = connIfaces.valueAt(i);
Amith Yamasani3646cbd2016-04-13 14:04:53 -07001700 // long quotaBytes split up into two ints to fit in message
1701 mHandler.obtainMessage(MSG_UPDATE_INTERFACE_QUOTA,
1702 (int) (Long.MAX_VALUE >> 32), (int) (Long.MAX_VALUE & 0xFFFFFFFF), iface)
1703 .sendToTarget();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07001704 newMeteredIfaces.add(iface);
1705 }
1706
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07001707 mHandler.obtainMessage(MSG_ADVISE_PERSIST_THRESHOLD, lowestRule).sendToTarget();
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001708
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001709 // remove quota on any trailing interfaces
Dianne Hackborn497175b2014-07-01 12:56:08 -07001710 for (int i = mMeteredIfaces.size() - 1; i >= 0; i--) {
1711 final String iface = mMeteredIfaces.valueAt(i);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001712 if (!newMeteredIfaces.contains(iface)) {
Amith Yamasani3646cbd2016-04-13 14:04:53 -07001713 mHandler.obtainMessage(MSG_REMOVE_INTERFACE_QUOTA, iface)
1714 .sendToTarget();
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07001715 }
1716 }
1717 mMeteredIfaces = newMeteredIfaces;
1718
Jeff Sharkeyfdfef572011-06-16 15:07:48 -07001719 final String[] meteredIfaces = mMeteredIfaces.toArray(new String[mMeteredIfaces.size()]);
Jeff Sharkey4414cea2011-06-24 17:05:24 -07001720 mHandler.obtainMessage(MSG_METERED_IFACES_CHANGED, meteredIfaces).sendToTarget();
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001721 }
1722
1723 /**
1724 * Once any {@link #mNetworkPolicy} are loaded from disk, ensure that we
1725 * have at least a default mobile policy defined.
1726 */
Hugo Benichi446c9c92017-04-10 09:41:10 +09001727 private void ensureActiveMobilePolicyAL() {
1728 if (LOGV) Slog.v(TAG, "ensureActiveMobilePolicyAL()");
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07001729 if (mSuppressDefaultPolicy) return;
1730
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001731 final TelephonyManager tele = TelephonyManager.from(mContext);
Jeff Sharkey32566012014-12-02 18:30:14 -08001732 final SubscriptionManager sub = SubscriptionManager.from(mContext);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001733
Jeff Sharkey32566012014-12-02 18:30:14 -08001734 final int[] subIds = sub.getActiveSubscriptionIdList();
1735 for (int subId : subIds) {
1736 final String subscriberId = tele.getSubscriberId(subId);
Hugo Benichi446c9c92017-04-10 09:41:10 +09001737 ensureActiveMobilePolicyAL(subId, subscriberId);
Jeff Sharkey32566012014-12-02 18:30:14 -08001738 }
1739 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001740
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001741 /**
1742 * Once any {@link #mNetworkPolicy} are loaded from disk, ensure that we
1743 * have at least a default mobile policy defined.
1744 *
1745 * @param subId to build a default policy for
1746 * @param subscriberId that we check for an existing policy
1747 * @return true if a mobile network policy was added, or false one already existed.
1748 */
Hugo Benichi446c9c92017-04-10 09:41:10 +09001749 private boolean ensureActiveMobilePolicyAL(int subId, String subscriberId) {
Jeff Sharkey32566012014-12-02 18:30:14 -08001750 // Poke around to see if we already have a policy
1751 final NetworkIdentity probeIdent = new NetworkIdentity(TYPE_MOBILE,
Jack Yu66a6be32016-03-30 11:14:39 -07001752 TelephonyManager.NETWORK_TYPE_UNKNOWN, subscriberId, null, false, true);
Jeff Sharkey32566012014-12-02 18:30:14 -08001753 for (int i = mNetworkPolicy.size() - 1; i >= 0; i--) {
1754 final NetworkTemplate template = mNetworkPolicy.keyAt(i);
1755 if (template.matches(probeIdent)) {
1756 if (LOGD) {
1757 Slog.d(TAG, "Found template " + template + " which matches subscriber "
1758 + NetworkIdentity.scrubSubscriberId(subscriberId));
1759 }
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001760 return false;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001761 }
1762 }
1763
Jeff Sharkey32566012014-12-02 18:30:14 -08001764 Slog.i(TAG, "No policy for subscriber " + NetworkIdentity.scrubSubscriberId(subscriberId)
1765 + "; generating default policy");
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001766 final NetworkPolicy policy = buildDefaultMobilePolicy(subId, subscriberId);
Hugo Benichi446c9c92017-04-10 09:41:10 +09001767 addNetworkPolicyAL(policy);
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001768 return true;
1769 }
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001770
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001771 private long getPlatformDefaultWarningBytes() {
Fan Zhangda71ca02016-09-12 17:36:22 -07001772 final int dataWarningConfig = mContext.getResources().getInteger(
1773 com.android.internal.R.integer.config_networkPolicyDefaultWarning);
Fan Zhangda71ca02016-09-12 17:36:22 -07001774 if (dataWarningConfig == WARNING_DISABLED) {
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001775 return WARNING_DISABLED;
Fan Zhangda71ca02016-09-12 17:36:22 -07001776 } else {
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001777 return dataWarningConfig * MB_IN_BYTES;
Fan Zhangda71ca02016-09-12 17:36:22 -07001778 }
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001779 }
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001780
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001781 private long getPlatformDefaultLimitBytes() {
1782 return LIMIT_DISABLED;
1783 }
1784
1785 @VisibleForTesting
1786 public NetworkPolicy buildDefaultMobilePolicy(int subId, String subscriberId) {
1787 PersistableBundle config = mCarrierConfigManager.getConfigForSubId(subId);
1788
1789 // assume usage cycle starts today
Jeff Sharkey32566012014-12-02 18:30:14 -08001790 final Time time = new Time();
1791 time.setToNow();
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001792
Jeff Sharkey32566012014-12-02 18:30:14 -08001793 final String cycleTimezone = time.timezone;
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001794
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001795 final int cycleDay = getCycleDayFromCarrierConfig(config, time.monthDay);
1796 final long warningBytes = getWarningBytesFromCarrierConfig(config,
1797 getPlatformDefaultWarningBytes());
1798 final long limitBytes = getLimitBytesFromCarrierConfig(config,
1799 getPlatformDefaultLimitBytes());
1800
Jeff Sharkey32566012014-12-02 18:30:14 -08001801 final NetworkTemplate template = buildTemplateMobileAll(subscriberId);
1802 final NetworkPolicy policy = new NetworkPolicy(template, cycleDay, cycleTimezone,
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07001803 warningBytes, limitBytes, SNOOZE_NEVER, SNOOZE_NEVER, true, true);
1804 return policy;
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001805 }
1806
Felipe Lemef0823852016-06-08 13:43:08 -07001807 private void readPolicyAL() {
1808 if (LOGV) Slog.v(TAG, "readPolicyAL()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001809
1810 // clear any existing policy and read from disk
Jeff Sharkey22c055e2011-06-12 21:13:51 -07001811 mNetworkPolicy.clear();
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001812 mUidPolicy.clear();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001813
1814 FileInputStream fis = null;
1815 try {
1816 fis = mPolicyFile.openRead();
1817 final XmlPullParser in = Xml.newPullParser();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01001818 in.setInput(fis, StandardCharsets.UTF_8.name());
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001819
Felipe Leme46b451f2016-08-19 08:46:17 -07001820 // Must save the <restrict-background> tags and convert them to <uid-policy> later,
1821 // to skip UIDs that were explicitly blacklisted.
1822 final SparseBooleanArray whitelistedRestrictBackground = new SparseBooleanArray();
1823
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001824 int type;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001825 int version = VERSION_INIT;
Felipe Lemeb85a6372016-01-14 16:16:16 -08001826 boolean insideWhitelist = false;
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001827 while ((type = in.next()) != END_DOCUMENT) {
1828 final String tag = in.getName();
1829 if (type == START_TAG) {
1830 if (TAG_POLICY_LIST.equals(tag)) {
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06001831 final boolean oldValue = mRestrictBackground;
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001832 version = readIntAttribute(in, ATTR_VERSION);
Jeff Sharkey46645002011-07-27 21:11:21 -07001833 if (version >= VERSION_ADDED_RESTRICT_BACKGROUND) {
1834 mRestrictBackground = readBooleanAttribute(
1835 in, ATTR_RESTRICT_BACKGROUND);
1836 } else {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001837 mRestrictBackground = false;
Jeff Sharkey46645002011-07-27 21:11:21 -07001838 }
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06001839 if (mRestrictBackground != oldValue) {
1840 // Some early services may have read the default value,
1841 // so notify them that it's changed
1842 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED,
1843 mRestrictBackground ? 1 : 0, 0).sendToTarget();
1844 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001845
1846 } else if (TAG_NETWORK_POLICY.equals(tag)) {
1847 final int networkTemplate = readIntAttribute(in, ATTR_NETWORK_TEMPLATE);
1848 final String subscriberId = in.getAttributeValue(null, ATTR_SUBSCRIBER_ID);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07001849 final String networkId;
1850 if (version >= VERSION_ADDED_NETWORK_ID) {
1851 networkId = in.getAttributeValue(null, ATTR_NETWORK_ID);
1852 } else {
1853 networkId = null;
1854 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001855 final int cycleDay = readIntAttribute(in, ATTR_CYCLE_DAY);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08001856 final String cycleTimezone;
1857 if (version >= VERSION_ADDED_TIMEZONE) {
1858 cycleTimezone = in.getAttributeValue(null, ATTR_CYCLE_TIMEZONE);
1859 } else {
1860 cycleTimezone = Time.TIMEZONE_UTC;
1861 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001862 final long warningBytes = readLongAttribute(in, ATTR_WARNING_BYTES);
1863 final long limitBytes = readLongAttribute(in, ATTR_LIMIT_BYTES);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001864 final long lastLimitSnooze;
1865 if (version >= VERSION_SPLIT_SNOOZE) {
1866 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_LIMIT_SNOOZE);
1867 } else if (version >= VERSION_ADDED_SNOOZE) {
1868 lastLimitSnooze = readLongAttribute(in, ATTR_LAST_SNOOZE);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001869 } else {
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001870 lastLimitSnooze = SNOOZE_NEVER;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07001871 }
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08001872 final boolean metered;
1873 if (version >= VERSION_ADDED_METERED) {
1874 metered = readBooleanAttribute(in, ATTR_METERED);
1875 } else {
1876 switch (networkTemplate) {
1877 case MATCH_MOBILE_3G_LOWER:
1878 case MATCH_MOBILE_4G:
1879 case MATCH_MOBILE_ALL:
1880 metered = true;
1881 break;
1882 default:
1883 metered = false;
1884 }
1885 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08001886 final long lastWarningSnooze;
1887 if (version >= VERSION_SPLIT_SNOOZE) {
1888 lastWarningSnooze = readLongAttribute(in, ATTR_LAST_WARNING_SNOOZE);
1889 } else {
1890 lastWarningSnooze = SNOOZE_NEVER;
1891 }
Jeff Sharkey837f9242012-03-20 16:52:20 -07001892 final boolean inferred;
1893 if (version >= VERSION_ADDED_INFERRED) {
1894 inferred = readBooleanAttribute(in, ATTR_INFERRED);
1895 } else {
1896 inferred = false;
1897 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001898
Jeff Sharkey32566012014-12-02 18:30:14 -08001899 final NetworkTemplate template = new NetworkTemplate(networkTemplate,
1900 subscriberId, networkId);
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -06001901 if (template.isPersistable()) {
1902 mNetworkPolicy.put(template, new NetworkPolicy(template, cycleDay,
1903 cycleTimezone, warningBytes, limitBytes, lastWarningSnooze,
1904 lastLimitSnooze, metered, inferred));
1905 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001906
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001907 } else if (TAG_UID_POLICY.equals(tag)) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001908 final int uid = readIntAttribute(in, ATTR_UID);
1909 final int policy = readIntAttribute(in, ATTR_POLICY);
1910
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001911 if (UserHandle.isApp(uid)) {
Felipe Lemef0823852016-06-08 13:43:08 -07001912 setUidPolicyUncheckedUL(uid, policy, false);
Jeff Sharkey497e4432011-06-14 17:27:29 -07001913 } else {
1914 Slog.w(TAG, "unable to apply policy to UID " + uid + "; ignoring");
1915 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001916 } else if (TAG_APP_POLICY.equals(tag)) {
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001917 final int appId = readIntAttribute(in, ATTR_APP_ID);
1918 final int policy = readIntAttribute(in, ATTR_POLICY);
1919
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001920 // TODO: set for other users during upgrade
Xiaohui Chenbe3b0672015-09-02 13:29:22 -07001921 // app policy is deprecated so this is only used in pre system user split.
1922 final int uid = UserHandle.getUid(UserHandle.USER_SYSTEM, appId);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001923 if (UserHandle.isApp(uid)) {
Felipe Lemef0823852016-06-08 13:43:08 -07001924 setUidPolicyUncheckedUL(uid, policy, false);
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001925 } else {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07001926 Slog.w(TAG, "unable to apply policy to UID " + uid + "; ignoring");
Jeff Sharkey8a8b5812012-03-21 18:13:36 -07001927 }
Felipe Lemeb85a6372016-01-14 16:16:16 -08001928 } else if (TAG_WHITELIST.equals(tag)) {
1929 insideWhitelist = true;
1930 } else if (TAG_RESTRICT_BACKGROUND.equals(tag) && insideWhitelist) {
1931 final int uid = readIntAttribute(in, ATTR_UID);
Felipe Leme46b451f2016-08-19 08:46:17 -07001932 whitelistedRestrictBackground.append(uid, true);
Felipe Lemea9505cc2016-02-26 10:28:41 -08001933 } else if (TAG_REVOKED_RESTRICT_BACKGROUND.equals(tag) && insideWhitelist) {
1934 final int uid = readIntAttribute(in, ATTR_UID);
1935 mRestrictBackgroundWhitelistRevokedUids.put(uid, true);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001936 }
Felipe Lemeb85a6372016-01-14 16:16:16 -08001937 } else if (type == END_TAG) {
1938 if (TAG_WHITELIST.equals(tag)) {
1939 insideWhitelist = false;
1940 }
1941
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001942 }
1943 }
1944
Felipe Leme46b451f2016-08-19 08:46:17 -07001945 final int size = whitelistedRestrictBackground.size();
1946 for (int i = 0; i < size; i++) {
1947 final int uid = whitelistedRestrictBackground.keyAt(i);
1948 final int policy = mUidPolicy.get(uid, POLICY_NONE);
1949 if ((policy & POLICY_REJECT_METERED_BACKGROUND) != 0) {
1950 Slog.w(TAG, "ignoring restrict-background-whitelist for " + uid
1951 + " because its policy is " + uidPoliciesToString(policy));
1952 continue;
1953 }
1954 if (UserHandle.isApp(uid)) {
1955 final int newPolicy = policy | POLICY_ALLOW_METERED_BACKGROUND;
1956 if (LOGV)
1957 Log.v(TAG, "new policy for " + uid + ": " + uidPoliciesToString(newPolicy));
1958 setUidPolicyUncheckedUL(uid, newPolicy, false);
1959 } else {
1960 Slog.w(TAG, "unable to update policy on UID " + uid);
1961 }
1962 }
1963
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001964 } catch (FileNotFoundException e) {
1965 // missing policy is okay, probably first boot
Felipe Lemef0823852016-06-08 13:43:08 -07001966 upgradeLegacyBackgroundDataUL();
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001967 } catch (IOException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001968 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001969 } catch (XmlPullParserException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07001970 Log.wtf(TAG, "problem reading network policy", e);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001971 } finally {
1972 IoUtils.closeQuietly(fis);
1973 }
1974 }
1975
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001976 /**
1977 * Upgrade legacy background data flags, notifying listeners of one last
1978 * change to always-true.
1979 */
Felipe Lemef0823852016-06-08 13:43:08 -07001980 private void upgradeLegacyBackgroundDataUL() {
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001981 mRestrictBackground = Settings.Secure.getInt(
1982 mContext.getContentResolver(), Settings.Secure.BACKGROUND_DATA, 1) != 1;
1983
1984 // kick off one last broadcast if restricted
1985 if (mRestrictBackground) {
1986 final Intent broadcast = new Intent(
1987 ConnectivityManager.ACTION_BACKGROUND_DATA_SETTING_CHANGED);
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07001988 mContext.sendBroadcastAsUser(broadcast, UserHandle.ALL);
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07001989 }
1990 }
1991
Felipe Lemef0823852016-06-08 13:43:08 -07001992 void writePolicyAL() {
1993 if (LOGV) Slog.v(TAG, "writePolicyAL()");
Jeff Sharkey21c9c452011-06-07 12:26:43 -07001994
1995 FileOutputStream fos = null;
1996 try {
1997 fos = mPolicyFile.startWrite();
1998
1999 XmlSerializer out = new FastXmlSerializer();
Wojciech Staszkiewicz9e9e2e72015-05-08 14:58:46 +01002000 out.setOutput(fos, StandardCharsets.UTF_8.name());
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002001 out.startDocument(null, true);
2002
2003 out.startTag(null, TAG_POLICY_LIST);
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07002004 writeIntAttribute(out, ATTR_VERSION, VERSION_LATEST);
Jeff Sharkey46645002011-07-27 21:11:21 -07002005 writeBooleanAttribute(out, ATTR_RESTRICT_BACKGROUND, mRestrictBackground);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002006
2007 // write all known network policies
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002008 for (int i = 0; i < mNetworkPolicy.size(); i++) {
2009 final NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07002010 final NetworkTemplate template = policy.template;
Jeff Sharkey7474fe7b2016-03-21 13:12:59 -06002011 if (!template.isPersistable()) continue;
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07002012
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002013 out.startTag(null, TAG_NETWORK_POLICY);
Jeff Sharkey1b5a2a92011-06-18 18:34:16 -07002014 writeIntAttribute(out, ATTR_NETWORK_TEMPLATE, template.getMatchRule());
2015 final String subscriberId = template.getSubscriberId();
2016 if (subscriberId != null) {
2017 out.attribute(null, ATTR_SUBSCRIBER_ID, subscriberId);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002018 }
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07002019 final String networkId = template.getNetworkId();
2020 if (networkId != null) {
2021 out.attribute(null, ATTR_NETWORK_ID, networkId);
2022 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002023 writeIntAttribute(out, ATTR_CYCLE_DAY, policy.cycleDay);
Jeff Sharkey9bf31502012-03-09 17:07:21 -08002024 out.attribute(null, ATTR_CYCLE_TIMEZONE, policy.cycleTimezone);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002025 writeLongAttribute(out, ATTR_WARNING_BYTES, policy.warningBytes);
2026 writeLongAttribute(out, ATTR_LIMIT_BYTES, policy.limitBytes);
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08002027 writeLongAttribute(out, ATTR_LAST_WARNING_SNOOZE, policy.lastWarningSnooze);
2028 writeLongAttribute(out, ATTR_LAST_LIMIT_SNOOZE, policy.lastLimitSnooze);
Jeff Sharkeyf60d0af2011-11-30 15:28:02 -08002029 writeBooleanAttribute(out, ATTR_METERED, policy.metered);
Jeff Sharkey837f9242012-03-20 16:52:20 -07002030 writeBooleanAttribute(out, ATTR_INFERRED, policy.inferred);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002031 out.endTag(null, TAG_NETWORK_POLICY);
2032 }
2033
2034 // write all known uid policies
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002035 for (int i = 0; i < mUidPolicy.size(); i++) {
2036 final int uid = mUidPolicy.keyAt(i);
2037 final int policy = mUidPolicy.valueAt(i);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002038
Jeff Sharkey497e4432011-06-14 17:27:29 -07002039 // skip writing empty policies
2040 if (policy == POLICY_NONE) continue;
2041
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002042 out.startTag(null, TAG_UID_POLICY);
2043 writeIntAttribute(out, ATTR_UID, uid);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002044 writeIntAttribute(out, ATTR_POLICY, policy);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002045 out.endTag(null, TAG_UID_POLICY);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002046 }
2047
2048 out.endTag(null, TAG_POLICY_LIST);
Felipe Lemeb85a6372016-01-14 16:16:16 -08002049
2050 // write all whitelists
2051 out.startTag(null, TAG_WHITELIST);
2052
Felipe Lemea9505cc2016-02-26 10:28:41 -08002053 // revoked restrict background whitelist
Felipe Leme46b451f2016-08-19 08:46:17 -07002054 int size = mRestrictBackgroundWhitelistRevokedUids.size();
Felipe Lemea9505cc2016-02-26 10:28:41 -08002055 for (int i = 0; i < size; i++) {
2056 final int uid = mRestrictBackgroundWhitelistRevokedUids.keyAt(i);
2057 out.startTag(null, TAG_REVOKED_RESTRICT_BACKGROUND);
2058 writeIntAttribute(out, ATTR_UID, uid);
2059 out.endTag(null, TAG_REVOKED_RESTRICT_BACKGROUND);
2060 }
2061
Felipe Lemeb85a6372016-01-14 16:16:16 -08002062 out.endTag(null, TAG_WHITELIST);
2063
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002064 out.endDocument();
2065
2066 mPolicyFile.finishWrite(fos);
2067 } catch (IOException e) {
2068 if (fos != null) {
2069 mPolicyFile.failWrite(fos);
2070 }
2071 }
2072 }
2073
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002074 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002075 public void setUidPolicy(int uid, int policy) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002076 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkeya4620792011-05-20 15:29:23 -07002077
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002078 if (!UserHandle.isApp(uid)) {
2079 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
Jeff Sharkey497e4432011-06-14 17:27:29 -07002080 }
Felipe Lemef0823852016-06-08 13:43:08 -07002081 synchronized (mUidRulesFirstLock) {
Julia Reynolds72f83d62015-07-27 15:10:42 -04002082 final long token = Binder.clearCallingIdentity();
2083 try {
2084 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
2085 if (oldPolicy != policy) {
Felipe Lemef0823852016-06-08 13:43:08 -07002086 setUidPolicyUncheckedUL(uid, oldPolicy, policy, true);
Julia Reynolds72f83d62015-07-27 15:10:42 -04002087 }
2088 } finally {
2089 Binder.restoreCallingIdentity(token);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002090 }
2091 }
Jeff Sharkey497e4432011-06-14 17:27:29 -07002092 }
2093
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002094 @Override
2095 public void addUidPolicy(int uid, int policy) {
2096 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002097
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002098 if (!UserHandle.isApp(uid)) {
2099 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
2100 }
2101
Felipe Lemef0823852016-06-08 13:43:08 -07002102 synchronized (mUidRulesFirstLock) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002103 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
2104 policy |= oldPolicy;
2105 if (oldPolicy != policy) {
Felipe Lemef0823852016-06-08 13:43:08 -07002106 setUidPolicyUncheckedUL(uid, oldPolicy, policy, true);
Jeff Sharkey497e4432011-06-14 17:27:29 -07002107 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002108 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002109 }
2110
2111 @Override
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002112 public void removeUidPolicy(int uid, int policy) {
2113 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2114
2115 if (!UserHandle.isApp(uid)) {
2116 throw new IllegalArgumentException("cannot apply policy to UID " + uid);
2117 }
2118
Felipe Lemef0823852016-06-08 13:43:08 -07002119 synchronized (mUidRulesFirstLock) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002120 final int oldPolicy = mUidPolicy.get(uid, POLICY_NONE);
2121 policy = oldPolicy & ~policy;
2122 if (oldPolicy != policy) {
Felipe Lemef0823852016-06-08 13:43:08 -07002123 setUidPolicyUncheckedUL(uid, oldPolicy, policy, true);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002124 }
2125 }
2126 }
2127
Felipe Lemef0823852016-06-08 13:43:08 -07002128 private void setUidPolicyUncheckedUL(int uid, int oldPolicy, int policy, boolean persist) {
2129 setUidPolicyUncheckedUL(uid, policy, persist);
Felipe Leme923845f2016-03-02 13:42:48 -08002130
Felipe Leme57e3d312016-08-23 14:42:52 -07002131 final boolean notifyApp;
2132 if (!isUidValidForWhitelistRules(uid)) {
2133 notifyApp = false;
2134 } else {
Felipe Leme0ecfcd12016-09-06 12:49:48 -07002135 final boolean wasBlacklisted = oldPolicy == POLICY_REJECT_METERED_BACKGROUND;
2136 final boolean isBlacklisted = policy == POLICY_REJECT_METERED_BACKGROUND;
2137 final boolean wasWhitelisted = oldPolicy == POLICY_ALLOW_METERED_BACKGROUND;
2138 final boolean isWhitelisted = policy == POLICY_ALLOW_METERED_BACKGROUND;
Felipe Leme57e3d312016-08-23 14:42:52 -07002139 final boolean wasBlocked = wasBlacklisted || (mRestrictBackground && !wasWhitelisted);
2140 final boolean isBlocked = isBlacklisted || (mRestrictBackground && !isWhitelisted);
Felipe Leme03f90292016-09-08 18:10:32 -07002141 if ((wasWhitelisted && (!isWhitelisted || isBlacklisted))
2142 && mDefaultRestrictBackgroundWhitelistUids.get(uid)
2143 && !mRestrictBackgroundWhitelistRevokedUids.get(uid)) {
2144 if (LOGD)
2145 Slog.d(TAG, "Adding uid " + uid + " to revoked restrict background whitelist");
2146 mRestrictBackgroundWhitelistRevokedUids.append(uid, true);
2147 }
Felipe Leme57e3d312016-08-23 14:42:52 -07002148 notifyApp = wasBlocked != isBlocked;
2149 }
Felipe Leme0ecfcd12016-09-06 12:49:48 -07002150 mHandler.obtainMessage(MSG_POLICIES_CHANGED, uid, policy, Boolean.valueOf(notifyApp))
2151 .sendToTarget();
Felipe Leme923845f2016-03-02 13:42:48 -08002152 }
2153
Felipe Lemef0823852016-06-08 13:43:08 -07002154 private void setUidPolicyUncheckedUL(int uid, int policy, boolean persist) {
Felipe Leme03f90292016-09-08 18:10:32 -07002155 if (policy == POLICY_NONE) {
2156 mUidPolicy.delete(uid);
2157 } else {
2158 mUidPolicy.put(uid, policy);
2159 }
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002160
2161 // uid policy changed, recompute rules and persist policy.
Sudheer Shankac9d94072017-02-22 22:13:55 +00002162 updateRulesForDataUsageRestrictionsUL(uid);
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002163 if (persist) {
Felipe Lemef0823852016-06-08 13:43:08 -07002164 synchronized (mNetworkPoliciesSecondLock) {
2165 writePolicyAL();
2166 }
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002167 }
2168 }
2169
2170 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002171 public int getUidPolicy(int uid) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002172 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2173
Felipe Lemef0823852016-06-08 13:43:08 -07002174 synchronized (mUidRulesFirstLock) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002175 return mUidPolicy.get(uid, POLICY_NONE);
Jeff Sharkeya4620792011-05-20 15:29:23 -07002176 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002177 }
2178
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002179 @Override
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002180 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -07002181 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2182
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002183 int[] uids = new int[0];
Felipe Lemef0823852016-06-08 13:43:08 -07002184 synchronized (mUidRulesFirstLock) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002185 for (int i = 0; i < mUidPolicy.size(); i++) {
2186 final int uid = mUidPolicy.keyAt(i);
2187 final int uidPolicy = mUidPolicy.valueAt(i);
Felipe Leme6f51a0a2016-08-24 15:11:51 -07002188 if ((policy == POLICY_NONE && uidPolicy == POLICY_NONE) ||
2189 (uidPolicy & policy) != 0) {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002190 uids = appendInt(uids, uid);
Jeff Sharkey854b2b12012-04-13 16:03:40 -07002191 }
2192 }
2193 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002194 return uids;
2195 }
2196
2197 /**
Felipe Lemed17fda42016-04-29 11:12:45 -07002198 * Removes any persistable state associated with given {@link UserHandle}, persisting
2199 * if any changes that are made.
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002200 */
Felipe Lemef0823852016-06-08 13:43:08 -07002201 boolean removeUserStateUL(int userId, boolean writePolicy) {
Felipe Lemed17fda42016-04-29 11:12:45 -07002202
Felipe Lemef0823852016-06-08 13:43:08 -07002203 if (LOGV) Slog.v(TAG, "removeUserStateUL()");
Felipe Lemed17fda42016-04-29 11:12:45 -07002204 boolean changed = false;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002205
Felipe Lemea110eec2016-04-29 09:58:06 -07002206 // Remove entries from revoked default restricted background UID whitelist
2207 for (int i = mRestrictBackgroundWhitelistRevokedUids.size() - 1; i >= 0; i--) {
2208 final int uid = mRestrictBackgroundWhitelistRevokedUids.keyAt(i);
2209 if (UserHandle.getUserId(uid) == userId) {
2210 mRestrictBackgroundWhitelistRevokedUids.removeAt(i);
Felipe Lemed17fda42016-04-29 11:12:45 -07002211 changed = true;
Felipe Lemea110eec2016-04-29 09:58:06 -07002212 }
2213 }
2214
Fyodor Kupolova31c5912016-01-22 11:26:09 -08002215 // Remove associated UID policies
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002216 int[] uids = new int[0];
2217 for (int i = 0; i < mUidPolicy.size(); i++) {
2218 final int uid = mUidPolicy.keyAt(i);
2219 if (UserHandle.getUserId(uid) == userId) {
2220 uids = appendInt(uids, uid);
2221 }
2222 }
2223
2224 if (uids.length > 0) {
2225 for (int uid : uids) {
2226 mUidPolicy.delete(uid);
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002227 }
Felipe Lemed17fda42016-04-29 11:12:45 -07002228 changed = true;
Fyodor Kupolova31c5912016-01-22 11:26:09 -08002229 }
Felipe Lemef0823852016-06-08 13:43:08 -07002230 synchronized (mNetworkPoliciesSecondLock) {
2231 updateRulesForGlobalChangeAL(true);
2232 if (writePolicy && changed) {
2233 writePolicyAL();
2234 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07002235 }
Felipe Lemed17fda42016-04-29 11:12:45 -07002236 return changed;
Jeff Sharkey854b2b12012-04-13 16:03:40 -07002237 }
2238
2239 @Override
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002240 public void registerListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07002241 // TODO: create permission for observing network policy
2242 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002243 mListeners.register(listener);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002244 }
2245
2246 @Override
2247 public void unregisterListener(INetworkPolicyListener listener) {
Jeff Sharkey1a303952011-06-16 13:04:20 -07002248 // TODO: create permission for observing network policy
2249 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002250 mListeners.unregister(listener);
2251 }
2252
Jeff Sharkey1b861272011-05-22 00:34:52 -07002253 @Override
Jeff Sharkey22c055e2011-06-12 21:13:51 -07002254 public void setNetworkPolicies(NetworkPolicy[] policies) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002255 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2256
Felipe Leme6a05eee2016-02-19 14:43:51 -08002257 final long token = Binder.clearCallingIdentity();
2258 try {
2259 maybeRefreshTrustedTime();
Felipe Lemef0823852016-06-08 13:43:08 -07002260 synchronized (mUidRulesFirstLock) {
2261 synchronized (mNetworkPoliciesSecondLock) {
2262 normalizePoliciesNL(policies);
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07002263 handleNetworkPoliciesUpdateAL(false);
Felipe Lemef0823852016-06-08 13:43:08 -07002264 }
Felipe Leme6a05eee2016-02-19 14:43:51 -08002265 }
2266 } finally {
2267 Binder.restoreCallingIdentity(token);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002268 }
2269 }
2270
Hugo Benichi446c9c92017-04-10 09:41:10 +09002271 void addNetworkPolicyAL(NetworkPolicy policy) {
Svet Ganov16a16892015-04-16 10:32:04 -07002272 NetworkPolicy[] policies = getNetworkPolicies(mContext.getOpPackageName());
Jeff Sharkey32566012014-12-02 18:30:14 -08002273 policies = ArrayUtils.appendElement(NetworkPolicy.class, policies, policy);
2274 setNetworkPolicies(policies);
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07002275 }
2276
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002277 @Override
Svet Ganov16a16892015-04-16 10:32:04 -07002278 public NetworkPolicy[] getNetworkPolicies(String callingPackage) {
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002279 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Amit Mahajan7c5befa2015-07-14 10:26:00 -07002280 try {
Amit Mahajana9e72a72015-07-30 16:04:13 -07002281 mContext.enforceCallingOrSelfPermission(READ_PRIVILEGED_PHONE_STATE, TAG);
2282 // SKIP checking run-time OP_READ_PHONE_STATE since caller or self has PRIVILEGED
2283 // permission
Amit Mahajan7c5befa2015-07-14 10:26:00 -07002284 } catch (SecurityException e) {
2285 mContext.enforceCallingOrSelfPermission(READ_PHONE_STATE, TAG);
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002286
Amit Mahajan7c5befa2015-07-14 10:26:00 -07002287 if (mAppOps.noteOp(AppOpsManager.OP_READ_PHONE_STATE, Binder.getCallingUid(),
2288 callingPackage) != AppOpsManager.MODE_ALLOWED) {
2289 return new NetworkPolicy[0];
2290 }
Svet Ganov16a16892015-04-16 10:32:04 -07002291 }
2292
Felipe Lemef0823852016-06-08 13:43:08 -07002293 synchronized (mNetworkPoliciesSecondLock) {
Jeff Sharkey32566012014-12-02 18:30:14 -08002294 final int size = mNetworkPolicy.size();
2295 final NetworkPolicy[] policies = new NetworkPolicy[size];
2296 for (int i = 0; i < size; i++) {
2297 policies[i] = mNetworkPolicy.valueAt(i);
2298 }
2299 return policies;
2300 }
2301 }
2302
Felipe Lemef0823852016-06-08 13:43:08 -07002303 private void normalizePoliciesNL() {
2304 normalizePoliciesNL(getNetworkPolicies(mContext.getOpPackageName()));
Jeff Sharkey32566012014-12-02 18:30:14 -08002305 }
2306
Felipe Lemef0823852016-06-08 13:43:08 -07002307 private void normalizePoliciesNL(NetworkPolicy[] policies) {
Jeff Sharkey32566012014-12-02 18:30:14 -08002308 final TelephonyManager tele = TelephonyManager.from(mContext);
2309 final String[] merged = tele.getMergedSubscriberIds();
2310
2311 mNetworkPolicy.clear();
2312 for (NetworkPolicy policy : policies) {
2313 // When two normalized templates conflict, prefer the most
2314 // restrictive policy
2315 policy.template = NetworkTemplate.normalize(policy.template, merged);
2316 final NetworkPolicy existing = mNetworkPolicy.get(policy.template);
2317 if (existing == null || existing.compareTo(policy) > 0) {
2318 if (existing != null) {
2319 Slog.d(TAG, "Normalization replaced " + existing + " with " + policy);
2320 }
2321 mNetworkPolicy.put(policy.template, policy);
2322 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002323 }
2324 }
2325
2326 @Override
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08002327 public void snoozeLimit(NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002328 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Jeff Sharkey6c0b4f32012-06-12 21:06:30 -07002329
2330 final long token = Binder.clearCallingIdentity();
2331 try {
2332 performSnooze(template, TYPE_LIMIT);
2333 } finally {
2334 Binder.restoreCallingIdentity(token);
2335 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08002336 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002337
Dianne Hackborn497175b2014-07-01 12:56:08 -07002338 void performSnooze(NetworkTemplate template, int type) {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002339 maybeRefreshTrustedTime();
2340 final long currentTime = currentTimeMillis();
Felipe Lemef0823852016-06-08 13:43:08 -07002341 synchronized (mUidRulesFirstLock) {
2342 synchronized (mNetworkPoliciesSecondLock) {
2343 // find and snooze local policy that matches
2344 final NetworkPolicy policy = mNetworkPolicy.get(template);
2345 if (policy == null) {
2346 throw new IllegalArgumentException("unable to find policy for " + template);
2347 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002348
Felipe Lemef0823852016-06-08 13:43:08 -07002349 switch (type) {
2350 case TYPE_WARNING:
2351 policy.lastWarningSnooze = currentTime;
2352 break;
2353 case TYPE_LIMIT:
2354 policy.lastLimitSnooze = currentTime;
2355 break;
2356 default:
2357 throw new IllegalArgumentException("unexpected type");
2358 }
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002359
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07002360 handleNetworkPoliciesUpdateAL(true);
Felipe Lemef0823852016-06-08 13:43:08 -07002361 }
Jeff Sharkey21c9c452011-06-07 12:26:43 -07002362 }
2363 }
2364
2365 @Override
Felipe Leme70c8b9b2016-04-25 14:41:31 -07002366 public void onTetheringChanged(String iface, boolean tethering) {
2367 // No need to enforce permission because setRestrictBackground() will do it.
2368 if (LOGD) Log.d(TAG, "onTetherStateChanged(" + iface + ", " + tethering + ")");
Felipe Lemef0823852016-06-08 13:43:08 -07002369 synchronized (mUidRulesFirstLock) {
Felipe Leme70c8b9b2016-04-25 14:41:31 -07002370 if (mRestrictBackground && tethering) {
2371 Log.d(TAG, "Tethering on (" + iface +"); disable Data Saver");
2372 setRestrictBackground(false);
2373 }
2374 }
2375 }
2376
2377 @Override
Jeff Sharkey46645002011-07-27 21:11:21 -07002378 public void setRestrictBackground(boolean restrictBackground) {
Felipe Leme29e72ea2016-09-08 13:26:55 -07002379 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "setRestrictBackground");
Felipe Leme6a05eee2016-02-19 14:43:51 -08002380 try {
Felipe Leme29e72ea2016-09-08 13:26:55 -07002381 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2382 final long token = Binder.clearCallingIdentity();
2383 try {
2384 maybeRefreshTrustedTime();
2385 synchronized (mUidRulesFirstLock) {
2386 if (restrictBackground == mRestrictBackground) {
2387 // Ideally, UI should never allow this scenario...
2388 Slog.w(TAG, "setRestrictBackground: already " + restrictBackground);
2389 return;
2390 }
2391 setRestrictBackgroundUL(restrictBackground);
Felipe Leme70c57c22016-03-29 10:45:13 -07002392 }
Felipe Leme29e72ea2016-09-08 13:26:55 -07002393
2394 } finally {
2395 Binder.restoreCallingIdentity(token);
Felipe Leme6a05eee2016-02-19 14:43:51 -08002396 }
Jeff Sharkey46645002011-07-27 21:11:21 -07002397
Felipe Leme29e72ea2016-09-08 13:26:55 -07002398 mHandler.obtainMessage(MSG_RESTRICT_BACKGROUND_CHANGED, restrictBackground ? 1 : 0, 0)
2399 .sendToTarget();
Felipe Leme6a05eee2016-02-19 14:43:51 -08002400 } finally {
Felipe Leme29e72ea2016-09-08 13:26:55 -07002401 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Jeff Sharkey46645002011-07-27 21:11:21 -07002402 }
2403 }
2404
Felipe Lemef0823852016-06-08 13:43:08 -07002405 private void setRestrictBackgroundUL(boolean restrictBackground) {
Felipe Leme80f0d0f22016-06-21 13:41:22 -07002406 Slog.d(TAG, "setRestrictBackgroundUL(): " + restrictBackground);
Felipe Leme70c57c22016-03-29 10:45:13 -07002407 final boolean oldRestrictBackground = mRestrictBackground;
2408 mRestrictBackground = restrictBackground;
2409 // Must whitelist foreground apps before turning data saver mode on.
2410 // TODO: there is no need to iterate through all apps here, just those in the foreground,
2411 // so it could call AM to get the UIDs of such apps, and iterate through them instead.
Felipe Leme873a83a2016-09-07 11:34:10 -07002412 updateRulesForRestrictBackgroundUL();
Felipe Leme70c57c22016-03-29 10:45:13 -07002413 try {
2414 if (!mNetworkManager.setDataSaverModeEnabled(mRestrictBackground)) {
2415 Slog.e(TAG, "Could not change Data Saver Mode on NMS to " + mRestrictBackground);
2416 mRestrictBackground = oldRestrictBackground;
2417 // TODO: if it knew the foreground apps (see TODO above), it could call
Felipe Lemef0823852016-06-08 13:43:08 -07002418 // updateRulesForRestrictBackgroundUL() again to restore state.
Felipe Leme70c57c22016-03-29 10:45:13 -07002419 return;
2420 }
2421 } catch (RemoteException e) {
2422 // ignored; service lives in system_server
2423 }
jackqdyulei29c82ab2017-03-10 14:09:16 -08002424
2425 if (mRestrictBackgroundPowerState.globalBatterySaverEnabled) {
2426 mRestrictBackgroundChangedInBsm = true;
2427 }
Felipe Lemef0823852016-06-08 13:43:08 -07002428 synchronized (mNetworkPoliciesSecondLock) {
2429 updateNotificationsNL();
2430 writePolicyAL();
2431 }
Felipe Leme70c57c22016-03-29 10:45:13 -07002432 }
2433
Felipe Lemeb85a6372016-01-14 16:16:16 -08002434 @Override
Felipe Leme1b103232016-01-22 09:44:57 -08002435 public int getRestrictBackgroundByCaller() {
2436 mContext.enforceCallingOrSelfPermission(ACCESS_NETWORK_STATE, TAG);
2437 final int uid = Binder.getCallingUid();
Felipe Leme923845f2016-03-02 13:42:48 -08002438
Felipe Lemef0823852016-06-08 13:43:08 -07002439 synchronized (mUidRulesFirstLock) {
Felipe Leme923845f2016-03-02 13:42:48 -08002440 // Must clear identity because getUidPolicy() is restricted to system.
2441 final long token = Binder.clearCallingIdentity();
2442 final int policy;
2443 try {
2444 policy = getUidPolicy(uid);
2445 } finally {
2446 Binder.restoreCallingIdentity(token);
2447 }
2448 if (policy == POLICY_REJECT_METERED_BACKGROUND) {
2449 // App is blacklisted.
2450 return RESTRICT_BACKGROUND_STATUS_ENABLED;
2451 }
Felipe Leme1b103232016-01-22 09:44:57 -08002452 if (!mRestrictBackground) {
2453 return RESTRICT_BACKGROUND_STATUS_DISABLED;
2454 }
Felipe Leme46b451f2016-08-19 08:46:17 -07002455 return (mUidPolicy.get(uid) & POLICY_ALLOW_METERED_BACKGROUND) != 0
Felipe Leme1b103232016-01-22 09:44:57 -08002456 ? RESTRICT_BACKGROUND_STATUS_WHITELISTED
2457 : RESTRICT_BACKGROUND_STATUS_ENABLED;
2458 }
2459 }
2460
2461 @Override
Jeff Sharkey46645002011-07-27 21:11:21 -07002462 public boolean getRestrictBackground() {
2463 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2464
Felipe Lemef0823852016-06-08 13:43:08 -07002465 synchronized (mUidRulesFirstLock) {
Jeff Sharkey46645002011-07-27 21:11:21 -07002466 return mRestrictBackground;
2467 }
2468 }
2469
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002470 @Override
2471 public void setDeviceIdleMode(boolean enabled) {
2472 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
Felipe Leme873a83a2016-09-07 11:34:10 -07002473 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "setDeviceIdleMode");
2474 try {
2475 synchronized (mUidRulesFirstLock) {
Felipe Lemeea014392016-09-06 13:59:54 -07002476 if (mDeviceIdleMode == enabled) {
2477 return;
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002478 }
Felipe Lemeea014392016-09-06 13:59:54 -07002479 mDeviceIdleMode = enabled;
2480 if (mSystemReady) {
2481 // Device idle change means we need to rebuild rules for all
2482 // known apps, so do a global refresh.
2483 updateRulesForRestrictPowerUL();
2484 }
2485 }
2486 if (enabled) {
2487 EventLogTags.writeDeviceIdleOnPhase("net");
2488 } else {
2489 EventLogTags.writeDeviceIdleOffPhase("net");
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002490 }
Felipe Leme873a83a2016-09-07 11:34:10 -07002491 } finally {
2492 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07002493 }
2494 }
2495
Felipe Lemef0823852016-06-08 13:43:08 -07002496 private NetworkPolicy findPolicyForNetworkNL(NetworkIdentity ident) {
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -07002497 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
2498 NetworkPolicy policy = mNetworkPolicy.valueAt(i);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002499 if (policy.template.matches(ident)) {
2500 return policy;
2501 }
2502 }
2503 return null;
2504 }
2505
2506 @Override
2507 public NetworkQuotaInfo getNetworkQuotaInfo(NetworkState state) {
2508 mContext.enforceCallingOrSelfPermission(ACCESS_NETWORK_STATE, TAG);
2509
2510 // only returns usage summary, so we don't require caller to have
2511 // READ_NETWORK_USAGE_HISTORY.
2512 final long token = Binder.clearCallingIdentity();
2513 try {
2514 return getNetworkQuotaInfoUnchecked(state);
2515 } finally {
2516 Binder.restoreCallingIdentity(token);
2517 }
2518 }
2519
2520 private NetworkQuotaInfo getNetworkQuotaInfoUnchecked(NetworkState state) {
2521 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
2522
2523 final NetworkPolicy policy;
Felipe Lemef0823852016-06-08 13:43:08 -07002524 synchronized (mNetworkPoliciesSecondLock) {
2525 policy = findPolicyForNetworkNL(ident);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002526 }
2527
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07002528 if (policy == null || !policy.hasCycle()) {
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002529 // missing policy means we can't derive useful quota info
2530 return null;
2531 }
2532
Jeff Sharkey684c54a2011-11-16 17:46:30 -08002533 final long currentTime = currentTimeMillis();
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002534
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07002535 // find total bytes used under policy
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002536 final long start = computeLastCycleBoundary(currentTime, policy);
2537 final long end = currentTime;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07002538 final long totalBytes = getTotalBytes(policy.template, start, end);
Jeff Sharkeyf0ceede2011-08-02 17:22:34 -07002539
2540 // report soft and hard limits under policy
2541 final long softLimitBytes = policy.warningBytes != WARNING_DISABLED ? policy.warningBytes
2542 : NetworkQuotaInfo.NO_LIMIT;
2543 final long hardLimitBytes = policy.limitBytes != LIMIT_DISABLED ? policy.limitBytes
2544 : NetworkQuotaInfo.NO_LIMIT;
2545
2546 return new NetworkQuotaInfo(totalBytes, softLimitBytes, hardLimitBytes);
2547 }
2548
Jeff Sharkey46645002011-07-27 21:11:21 -07002549 @Override
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07002550 public boolean isNetworkMetered(NetworkState state) {
Jeff Sharkeyf07c7b92016-04-22 09:50:16 -06002551 if (state.networkInfo == null) {
2552 return false;
2553 }
2554
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07002555 final NetworkIdentity ident = NetworkIdentity.buildNetworkIdentity(mContext, state);
2556
2557 final NetworkPolicy policy;
Felipe Lemef0823852016-06-08 13:43:08 -07002558 synchronized (mNetworkPoliciesSecondLock) {
2559 policy = findPolicyForNetworkNL(ident);
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07002560 }
2561
2562 if (policy != null) {
2563 return policy.metered;
2564 } else {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07002565 final int type = state.networkInfo.getType();
Jack Yub6587ea2016-06-22 11:35:10 -07002566 if ((isNetworkTypeMobile(type) && ident.getMetered()) || type == TYPE_WIMAX) {
Jeff Sharkey9f6e4ba2012-04-19 23:01:08 -07002567 return true;
2568 }
Jeff Sharkey9f7cbf02012-04-12 18:34:54 -07002569 return false;
2570 }
2571 }
2572
2573 @Override
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07002574 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -06002575 if (!DumpUtils.checkDumpPermission(mContext, TAG, writer)) return;
Jeff Sharkey1b861272011-05-22 00:34:52 -07002576
Jeff Sharkey8fc27e82012-04-04 20:40:58 -07002577 final IndentingPrintWriter fout = new IndentingPrintWriter(writer, " ");
2578
Dianne Hackborn497175b2014-07-01 12:56:08 -07002579 final ArraySet<String> argSet = new ArraySet<String>(args.length);
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002580 for (String arg : args) {
2581 argSet.add(arg);
2582 }
2583
Felipe Lemef0823852016-06-08 13:43:08 -07002584 synchronized (mUidRulesFirstLock) {
2585 synchronized (mNetworkPoliciesSecondLock) {
2586 if (argSet.contains("--unsnooze")) {
2587 for (int i = mNetworkPolicy.size()-1; i >= 0; i--) {
2588 mNetworkPolicy.valueAt(i).clearSnooze();
2589 }
2590
Ammar Aijazi6ce48e22017-03-28 15:43:22 -07002591 handleNetworkPoliciesUpdateAL(true);
Felipe Lemef0823852016-06-08 13:43:08 -07002592
2593 fout.println("Cleared snooze timestamps");
2594 return;
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07002595 }
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08002596
Felipe Lemef0823852016-06-08 13:43:08 -07002597 fout.print("System ready: "); fout.println(mSystemReady);
2598 fout.print("Restrict background: "); fout.println(mRestrictBackground);
2599 fout.print("Restrict power: "); fout.println(mRestrictPower);
2600 fout.print("Device idle: "); fout.println(mDeviceIdleMode);
2601 fout.println("Network policies:");
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002602 fout.increaseIndent();
Felipe Lemef0823852016-06-08 13:43:08 -07002603 for (int i = 0; i < mNetworkPolicy.size(); i++) {
2604 fout.println(mNetworkPolicy.valueAt(i).toString());
2605 }
2606 fout.decreaseIndent();
2607
2608 fout.print("Metered ifaces: "); fout.println(String.valueOf(mMeteredIfaces));
2609
2610 fout.println("Policy for UIDs:");
2611 fout.increaseIndent();
2612 int size = mUidPolicy.size();
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002613 for (int i = 0; i < size; i++) {
Felipe Lemef0823852016-06-08 13:43:08 -07002614 final int uid = mUidPolicy.keyAt(i);
2615 final int policy = mUidPolicy.valueAt(i);
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002616 fout.print("UID=");
Felipe Lemef0823852016-06-08 13:43:08 -07002617 fout.print(uid);
2618 fout.print(" policy=");
Felipe Lemeb146f762016-08-19 09:52:16 -07002619 fout.print(uidPoliciesToString(policy));
Felipe Lemef0823852016-06-08 13:43:08 -07002620 fout.println();
2621 }
2622 fout.decreaseIndent();
2623
2624 size = mPowerSaveWhitelistExceptIdleAppIds.size();
2625 if (size > 0) {
2626 fout.println("Power save whitelist (except idle) app ids:");
2627 fout.increaseIndent();
2628 for (int i = 0; i < size; i++) {
2629 fout.print("UID=");
2630 fout.print(mPowerSaveWhitelistExceptIdleAppIds.keyAt(i));
2631 fout.print(": ");
2632 fout.print(mPowerSaveWhitelistExceptIdleAppIds.valueAt(i));
2633 fout.println();
2634 }
2635 fout.decreaseIndent();
2636 }
2637
2638 size = mPowerSaveWhitelistAppIds.size();
2639 if (size > 0) {
2640 fout.println("Power save whitelist app ids:");
2641 fout.increaseIndent();
2642 for (int i = 0; i < size; i++) {
2643 fout.print("UID=");
2644 fout.print(mPowerSaveWhitelistAppIds.keyAt(i));
2645 fout.print(": ");
2646 fout.print(mPowerSaveWhitelistAppIds.valueAt(i));
2647 fout.println();
2648 }
2649 fout.decreaseIndent();
2650 }
2651
Felipe Lemef0823852016-06-08 13:43:08 -07002652 size = mDefaultRestrictBackgroundWhitelistUids.size();
2653 if (size > 0) {
2654 fout.println("Default restrict background whitelist uids:");
2655 fout.increaseIndent();
2656 for (int i = 0; i < size; i++) {
2657 fout.print("UID=");
2658 fout.print(mDefaultRestrictBackgroundWhitelistUids.keyAt(i));
2659 fout.println();
2660 }
2661 fout.decreaseIndent();
2662 }
2663
2664 size = mRestrictBackgroundWhitelistRevokedUids.size();
2665 if (size > 0) {
2666 fout.println("Default restrict background whitelist uids revoked by users:");
2667 fout.increaseIndent();
2668 for (int i = 0; i < size; i++) {
2669 fout.print("UID=");
2670 fout.print(mRestrictBackgroundWhitelistRevokedUids.keyAt(i));
2671 fout.println();
2672 }
2673 fout.decreaseIndent();
2674 }
2675
2676 final SparseBooleanArray knownUids = new SparseBooleanArray();
2677 collectKeys(mUidState, knownUids);
2678 collectKeys(mUidRules, knownUids);
2679
2680 fout.println("Status for all known UIDs:");
2681 fout.increaseIndent();
2682 size = knownUids.size();
2683 for (int i = 0; i < size; i++) {
2684 final int uid = knownUids.keyAt(i);
2685 fout.print("UID=");
2686 fout.print(uid);
2687
2688 final int state = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
2689 fout.print(" state=");
2690 fout.print(state);
2691 if (state <= ActivityManager.PROCESS_STATE_TOP) {
2692 fout.print(" (fg)");
2693 } else {
2694 fout.print(state <= ActivityManager.PROCESS_STATE_FOREGROUND_SERVICE
2695 ? " (fg svc)" : " (bg)");
2696 }
2697
2698 final int uidRules = mUidRules.get(uid, RULE_NONE);
2699 fout.print(" rules=");
2700 fout.print(uidRulesToString(uidRules));
2701 fout.println();
2702 }
2703 fout.decreaseIndent();
2704
2705 fout.println("Status for just UIDs with rules:");
2706 fout.increaseIndent();
2707 size = mUidRules.size();
2708 for (int i = 0; i < size; i++) {
2709 final int uid = mUidRules.keyAt(i);
2710 fout.print("UID=");
2711 fout.print(uid);
2712 final int uidRules = mUidRules.get(uid, RULE_NONE);
2713 fout.print(" rules=");
2714 fout.print(uidRulesToString(uidRules));
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002715 fout.println();
2716 }
2717 fout.decreaseIndent();
Sudheer Shankae7361852017-03-07 11:51:46 -08002718
2719 fout.println("Observed uid state changes:");
2720 fout.increaseIndent();
2721 mObservedHistory.dumpUL(fout);
2722 fout.decreaseIndent();
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002723 }
Jeff Sharkey1b861272011-05-22 00:34:52 -07002724 }
2725 }
Jeff Sharkey9599cc52011-05-22 14:59:31 -07002726
2727 @Override
Felipe Leme50a235e2016-01-15 18:37:06 -08002728 public void onShellCommand(FileDescriptor in, FileDescriptor out, FileDescriptor err,
Dianne Hackborn354736e2016-08-22 17:00:05 -07002729 String[] args, ShellCallback callback, ResultReceiver resultReceiver) {
Felipe Lemeb1a65ee2016-02-08 10:12:01 -08002730 (new NetworkPolicyManagerShellCommand(mContext, this)).exec(
Dianne Hackborn354736e2016-08-22 17:00:05 -07002731 this, in, out, err, args, callback, resultReceiver);
Felipe Leme50a235e2016-01-15 18:37:06 -08002732 }
2733
2734 @Override
Jeff Sharkey9599cc52011-05-22 14:59:31 -07002735 public boolean isUidForeground(int uid) {
Jeff Sharkey497e4432011-06-14 17:27:29 -07002736 mContext.enforceCallingOrSelfPermission(MANAGE_NETWORK_POLICY, TAG);
2737
Felipe Lemef0823852016-06-08 13:43:08 -07002738 synchronized (mUidRulesFirstLock) {
2739 return isUidForegroundUL(uid);
Jeff Sharkey9599cc52011-05-22 14:59:31 -07002740 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07002741 }
2742
Felipe Lemef0823852016-06-08 13:43:08 -07002743 private boolean isUidForegroundUL(int uid) {
2744 return isUidStateForegroundUL(
Felipe Lemef28983d2016-03-25 12:18:23 -07002745 mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY));
2746 }
2747
Felipe Lemef0823852016-06-08 13:43:08 -07002748 private boolean isUidForegroundOnRestrictBackgroundUL(int uid) {
Felipe Lemeef89c902016-03-30 15:11:31 -07002749 final int procState = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
Sudheer Shankac9d94072017-02-22 22:13:55 +00002750 return isProcStateAllowedWhileOnRestrictBackground(procState);
Felipe Lemeef89c902016-03-30 15:11:31 -07002751 }
2752
Felipe Lemef0823852016-06-08 13:43:08 -07002753 private boolean isUidForegroundOnRestrictPowerUL(int uid) {
Felipe Leme781ba142016-05-09 16:24:48 -07002754 final int procState = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
2755 return isProcStateAllowedWhileIdleOrPowerSaveMode(procState);
2756 }
2757
Felipe Lemef0823852016-06-08 13:43:08 -07002758 private boolean isUidStateForegroundUL(int state) {
Dianne Hackborn497175b2014-07-01 12:56:08 -07002759 // only really in foreground when screen is also on
Felipe Leme88f40ad2016-08-10 13:00:32 -07002760 return state <= ActivityManager.PROCESS_STATE_TOP;
Dianne Hackborn497175b2014-07-01 12:56:08 -07002761 }
2762
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002763 /**
Dianne Hackbornd23e0d62015-05-15 16:36:12 -07002764 * Process state of UID changed; if needed, will trigger
Felipe Lemef0823852016-06-08 13:43:08 -07002765 * {@link #updateRulesForDataUsageRestrictionsUL(int)} and
2766 * {@link #updateRulesForPowerRestrictionsUL(int)}
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002767 */
Sudheer Shankac9d94072017-02-22 22:13:55 +00002768 private void updateUidStateUL(int uid, int uidState) {
Felipe Leme873a83a2016-09-07 11:34:10 -07002769 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateUidStateUL");
2770 try {
2771 final int oldUidState = mUidState.get(uid, ActivityManager.PROCESS_STATE_CACHED_EMPTY);
2772 if (oldUidState != uidState) {
2773 // state changed, push updated rules
2774 mUidState.put(uid, uidState);
Sudheer Shankac9d94072017-02-22 22:13:55 +00002775 updateRestrictBackgroundRulesOnUidStatusChangedUL(uid, oldUidState, uidState);
2776 if (isProcStateAllowedWhileIdleOrPowerSaveMode(oldUidState)
2777 != isProcStateAllowedWhileIdleOrPowerSaveMode(uidState) ) {
2778 if (isUidIdle(uid)) {
2779 updateRuleForAppIdleUL(uid);
Felipe Leme873a83a2016-09-07 11:34:10 -07002780 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00002781 if (mDeviceIdleMode) {
2782 updateRuleForDeviceIdleUL(uid);
Felipe Leme873a83a2016-09-07 11:34:10 -07002783 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00002784 if (mRestrictPower) {
2785 updateRuleForRestrictPowerUL(uid);
Felipe Leme873a83a2016-09-07 11:34:10 -07002786 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00002787 updateRulesForPowerRestrictionsUL(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07002788 }
Felipe Leme873a83a2016-09-07 11:34:10 -07002789 updateNetworkStats(uid, isUidStateForegroundUL(uidState));
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002790 }
Felipe Leme873a83a2016-09-07 11:34:10 -07002791 } finally {
2792 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Dianne Hackbornd23e0d62015-05-15 16:36:12 -07002793 }
2794 }
2795
Felipe Lemef0823852016-06-08 13:43:08 -07002796 private void removeUidStateUL(int uid) {
Dianne Hackbornd23e0d62015-05-15 16:36:12 -07002797 final int index = mUidState.indexOfKey(uid);
2798 if (index >= 0) {
2799 final int oldUidState = mUidState.valueAt(index);
2800 mUidState.removeAt(index);
2801 if (oldUidState != ActivityManager.PROCESS_STATE_CACHED_EMPTY) {
Felipe Lemef0823852016-06-08 13:43:08 -07002802 updateRestrictBackgroundRulesOnUidStatusChangedUL(uid, oldUidState,
Sudheer Shankac9d94072017-02-22 22:13:55 +00002803 ActivityManager.PROCESS_STATE_CACHED_EMPTY);
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002804 if (mDeviceIdleMode) {
Felipe Lemef0823852016-06-08 13:43:08 -07002805 updateRuleForDeviceIdleUL(uid);
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002806 }
Felipe Leme011b98f2016-02-10 17:28:31 -08002807 if (mRestrictPower) {
Felipe Lemef0823852016-06-08 13:43:08 -07002808 updateRuleForRestrictPowerUL(uid);
Felipe Leme011b98f2016-02-10 17:28:31 -08002809 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00002810 updateRulesForPowerRestrictionsUL(uid);
Felipe Lemef28983d2016-03-25 12:18:23 -07002811 updateNetworkStats(uid, false);
Dianne Hackborn497175b2014-07-01 12:56:08 -07002812 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07002813 }
2814 }
2815
Felipe Lemef28983d2016-03-25 12:18:23 -07002816 // adjust stats accounting based on foreground status
2817 private void updateNetworkStats(int uid, boolean uidForeground) {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07002818 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
2819 Trace.traceBegin(Trace.TRACE_TAG_NETWORK,
2820 "updateNetworkStats: " + uid + "/" + (uidForeground ? "F" : "B"));
2821 }
Felipe Lemef28983d2016-03-25 12:18:23 -07002822 try {
2823 mNetworkStats.setUidForeground(uid, uidForeground);
2824 } catch (RemoteException e) {
2825 // ignored; service lives in system_server
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07002826 } finally {
2827 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Felipe Lemef28983d2016-03-25 12:18:23 -07002828 }
2829 }
2830
Sudheer Shankac9d94072017-02-22 22:13:55 +00002831 private void updateRestrictBackgroundRulesOnUidStatusChangedUL(int uid, int oldUidState,
2832 int newUidState) {
Felipe Lemeef89c902016-03-30 15:11:31 -07002833 final boolean oldForeground =
Sudheer Shankac9d94072017-02-22 22:13:55 +00002834 isProcStateAllowedWhileOnRestrictBackground(oldUidState);
Felipe Lemeef89c902016-03-30 15:11:31 -07002835 final boolean newForeground =
Sudheer Shankac9d94072017-02-22 22:13:55 +00002836 isProcStateAllowedWhileOnRestrictBackground(newUidState);
Dianne Hackbornd23e0d62015-05-15 16:36:12 -07002837 if (oldForeground != newForeground) {
Sudheer Shankac9d94072017-02-22 22:13:55 +00002838 updateRulesForDataUsageRestrictionsUL(uid);
Dianne Hackbornd23e0d62015-05-15 16:36:12 -07002839 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00002840 }
2841
Felipe Lemef0823852016-06-08 13:43:08 -07002842 void updateRulesForPowerSaveUL() {
Felipe Leme873a83a2016-09-07 11:34:10 -07002843 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForPowerSaveUL");
2844 try {
2845 updateRulesForWhitelistedPowerSaveUL(mRestrictPower, FIREWALL_CHAIN_POWERSAVE,
2846 mUidFirewallPowerSaveRules);
2847 } finally {
2848 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
2849 }
Felipe Leme011b98f2016-02-10 17:28:31 -08002850 }
2851
Felipe Lemef0823852016-06-08 13:43:08 -07002852 void updateRuleForRestrictPowerUL(int uid) {
2853 updateRulesForWhitelistedPowerSaveUL(uid, mRestrictPower, FIREWALL_CHAIN_POWERSAVE);
Felipe Leme011b98f2016-02-10 17:28:31 -08002854 }
2855
Felipe Lemef0823852016-06-08 13:43:08 -07002856 void updateRulesForDeviceIdleUL() {
Felipe Leme873a83a2016-09-07 11:34:10 -07002857 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForDeviceIdleUL");
2858 try {
2859 updateRulesForWhitelistedPowerSaveUL(mDeviceIdleMode, FIREWALL_CHAIN_DOZABLE,
2860 mUidFirewallDozableRules);
2861 } finally {
2862 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
2863 }
Felipe Leme011b98f2016-02-10 17:28:31 -08002864 }
2865
Felipe Lemef0823852016-06-08 13:43:08 -07002866 void updateRuleForDeviceIdleUL(int uid) {
2867 updateRulesForWhitelistedPowerSaveUL(uid, mDeviceIdleMode, FIREWALL_CHAIN_DOZABLE);
Felipe Leme011b98f2016-02-10 17:28:31 -08002868 }
2869
Felipe Lemef28983d2016-03-25 12:18:23 -07002870 // NOTE: since both fw_dozable and fw_powersave uses the same map
2871 // (mPowerSaveTempWhitelistAppIds) for whitelisting, we can reuse their logic in this method.
Felipe Lemef0823852016-06-08 13:43:08 -07002872 private void updateRulesForWhitelistedPowerSaveUL(boolean enabled, int chain,
Felipe Leme011b98f2016-02-10 17:28:31 -08002873 SparseIntArray rules) {
2874 if (enabled) {
2875 // Sync the whitelists before enabling the chain. We don't care about the rules if
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07002876 // we are disabling the chain.
Felipe Leme011b98f2016-02-10 17:28:31 -08002877 final SparseIntArray uidRules = rules;
Jeff Sharkeydc988062015-09-14 10:09:47 -07002878 uidRules.clear();
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07002879 final List<UserInfo> users = mUserManager.getUsers();
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002880 for (int ui = users.size() - 1; ui >= 0; ui--) {
2881 UserInfo user = users.get(ui);
Sudheer Shanka54a92fd2017-04-26 10:43:23 -07002882 updateRulesForWhitelistedAppIds(uidRules, mPowerSaveTempWhitelistAppIds, user.id);
2883 updateRulesForWhitelistedAppIds(uidRules, mPowerSaveWhitelistAppIds, user.id);
2884 if (chain == FIREWALL_CHAIN_POWERSAVE) {
2885 updateRulesForWhitelistedAppIds(uidRules,
2886 mPowerSaveWhitelistExceptIdleAppIds, user.id);
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07002887 }
2888 }
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002889 for (int i = mUidState.size() - 1; i >= 0; i--) {
Felipe Leme011b98f2016-02-10 17:28:31 -08002890 if (isProcStateAllowedWhileIdleOrPowerSaveMode(mUidState.valueAt(i))) {
Dianne Hackbornfd854ee2015-07-13 18:00:37 -07002891 uidRules.put(mUidState.keyAt(i), FIREWALL_RULE_ALLOW);
2892 }
2893 }
Felipe Lemebc853dd2016-09-08 13:26:55 -07002894 setUidFirewallRulesAsync(chain, uidRules, CHAIN_TOGGLE_ENABLE);
2895 } else {
2896 setUidFirewallRulesAsync(chain, null, CHAIN_TOGGLE_DISABLE);
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07002897 }
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07002898 }
2899
Sudheer Shanka54a92fd2017-04-26 10:43:23 -07002900 private void updateRulesForWhitelistedAppIds(final SparseIntArray uidRules,
2901 final SparseBooleanArray whitelistedAppIds, int userId) {
2902 for (int i = whitelistedAppIds.size() - 1; i >= 0; --i) {
2903 if (whitelistedAppIds.valueAt(i)) {
2904 final int appId = whitelistedAppIds.keyAt(i);
2905 final int uid = UserHandle.getUid(userId, appId);
2906 uidRules.put(uid, FIREWALL_RULE_ALLOW);
2907 }
2908 }
2909 }
2910
2911 /**
2912 * @param deviceIdleMode if true then we don't consider
2913 * {@link #mPowerSaveWhitelistExceptIdleAppIds} for checking if the {@param uid} is
2914 * whitelisted.
2915 */
2916 private boolean isWhitelistedBatterySaverUL(int uid, boolean deviceIdleMode) {
Felipe Leme46c4fc32016-05-04 09:21:43 -07002917 final int appId = UserHandle.getAppId(uid);
Sudheer Shanka54a92fd2017-04-26 10:43:23 -07002918 boolean isWhitelisted = mPowerSaveTempWhitelistAppIds.get(appId)
2919 || mPowerSaveWhitelistAppIds.get(appId);
2920 if (!deviceIdleMode) {
2921 isWhitelisted = isWhitelisted || mPowerSaveWhitelistExceptIdleAppIds.get(appId);
2922 }
2923 return isWhitelisted;
Felipe Leme46c4fc32016-05-04 09:21:43 -07002924 }
2925
Felipe Lemef28983d2016-03-25 12:18:23 -07002926 // NOTE: since both fw_dozable and fw_powersave uses the same map
2927 // (mPowerSaveTempWhitelistAppIds) for whitelisting, we can reuse their logic in this method.
Felipe Lemef0823852016-06-08 13:43:08 -07002928 private void updateRulesForWhitelistedPowerSaveUL(int uid, boolean enabled, int chain) {
Felipe Leme011b98f2016-02-10 17:28:31 -08002929 if (enabled) {
Sudheer Shanka54a92fd2017-04-26 10:43:23 -07002930 final boolean isWhitelisted = isWhitelistedBatterySaverUL(uid,
2931 chain == FIREWALL_CHAIN_DOZABLE);
2932 if (isWhitelisted || isUidForegroundOnRestrictPowerUL(uid)) {
Felipe Leme011b98f2016-02-10 17:28:31 -08002933 setUidFirewallRule(chain, uid, FIREWALL_RULE_ALLOW);
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002934 } else {
Felipe Leme011b98f2016-02-10 17:28:31 -08002935 setUidFirewallRule(chain, uid, FIREWALL_RULE_DEFAULT);
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002936 }
2937 }
2938 }
2939
Felipe Lemef0823852016-06-08 13:43:08 -07002940 void updateRulesForAppIdleUL() {
Felipe Leme873a83a2016-09-07 11:34:10 -07002941 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForAppIdleUL");
2942 try {
2943 final SparseIntArray uidRules = mUidFirewallStandbyRules;
2944 uidRules.clear();
Jeff Sharkeydc988062015-09-14 10:09:47 -07002945
Felipe Leme873a83a2016-09-07 11:34:10 -07002946 // Fully update the app idle firewall chain.
2947 final List<UserInfo> users = mUserManager.getUsers();
2948 for (int ui = users.size() - 1; ui >= 0; ui--) {
2949 UserInfo user = users.get(ui);
2950 int[] idleUids = mUsageStats.getIdleUidsForUser(user.id);
2951 for (int uid : idleUids) {
2952 if (!mPowerSaveTempWhitelistAppIds.get(UserHandle.getAppId(uid), false)) {
2953 // quick check: if this uid doesn't have INTERNET permission, it
2954 // doesn't have network access anyway, so it is a waste to mess
2955 // with it here.
2956 if (hasInternetPermissions(uid)) {
2957 uidRules.put(uid, FIREWALL_RULE_DENY);
2958 }
Soi, Yoshinaria065da12015-12-22 12:02:18 +09002959 }
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002960 }
2961 }
Jeff Sharkeydc988062015-09-14 10:09:47 -07002962
Felipe Lemebc853dd2016-09-08 13:26:55 -07002963 setUidFirewallRulesAsync(FIREWALL_CHAIN_STANDBY, uidRules, CHAIN_TOGGLE_NONE);
Felipe Leme873a83a2016-09-07 11:34:10 -07002964 } finally {
2965 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
2966 }
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002967 }
2968
Felipe Lemef0823852016-06-08 13:43:08 -07002969 void updateRuleForAppIdleUL(int uid) {
Felipe Leme70c57c22016-03-29 10:45:13 -07002970 if (!isUidValidForBlacklistRules(uid)) return;
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002971
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07002972 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
2973 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRuleForAppIdleUL: " + uid );
2974 }
2975 try {
2976 int appId = UserHandle.getAppId(uid);
2977 if (!mPowerSaveTempWhitelistAppIds.get(appId) && isUidIdle(uid)
2978 && !isUidForegroundOnRestrictPowerUL(uid)) {
2979 setUidFirewallRule(FIREWALL_CHAIN_STANDBY, uid, FIREWALL_RULE_DENY);
2980 } else {
2981 setUidFirewallRule(FIREWALL_CHAIN_STANDBY, uid, FIREWALL_RULE_DEFAULT);
2982 }
2983 } finally {
2984 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Dianne Hackborn4a503b12015-08-06 22:19:06 -07002985 }
2986 }
2987
Amith Yamasani0938f2f2016-09-16 12:46:31 -07002988 /**
2989 * Toggle the firewall standby chain and inform listeners if the uid rules have effectively
2990 * changed.
2991 */
Felipe Lemef0823852016-06-08 13:43:08 -07002992 void updateRulesForAppIdleParoleUL() {
Amith Yamasani0938f2f2016-09-16 12:46:31 -07002993 boolean paroled = mUsageStats.isAppIdleParoleOn();
2994 boolean enableChain = !paroled;
Felipe Lemef0823852016-06-08 13:43:08 -07002995 enableFirewallChainUL(FIREWALL_CHAIN_STANDBY, enableChain);
Amith Yamasani0938f2f2016-09-16 12:46:31 -07002996
2997 int ruleCount = mUidFirewallStandbyRules.size();
2998 for (int i = 0; i < ruleCount; i++) {
2999 int uid = mUidFirewallStandbyRules.keyAt(i);
3000 int oldRules = mUidRules.get(uid);
3001 if (enableChain) {
3002 // Chain wasn't enabled before and the other power-related
3003 // chains are whitelists, so we can clear the
3004 // MASK_ALL_NETWORKS part of the rules and re-inform listeners if
3005 // the effective rules result in blocking network access.
3006 oldRules &= MASK_METERED_NETWORKS;
3007 } else {
3008 // Skip if it had no restrictions to begin with
3009 if ((oldRules & MASK_ALL_NETWORKS) == 0) continue;
3010 }
Sudheer Shanka3af02942017-04-12 14:29:14 -07003011 final int newUidRules = updateRulesForPowerRestrictionsUL(uid, oldRules, paroled);
3012 if (newUidRules == RULE_NONE) {
3013 mUidRules.delete(uid);
3014 } else {
3015 mUidRules.put(uid, newUidRules);
3016 }
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003017 }
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003018 }
3019
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003020 /**
Dianne Hackborn8ad2af72015-03-17 17:00:24 -07003021 * Update rules that might be changed by {@link #mRestrictBackground},
3022 * {@link #mRestrictPower}, or {@link #mDeviceIdleMode} value.
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003023 */
Felipe Lemef0823852016-06-08 13:43:08 -07003024 private void updateRulesForGlobalChangeAL(boolean restrictedNetworksChanged) {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003025 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
3026 Trace.traceBegin(Trace.TRACE_TAG_NETWORK,
3027 "updateRulesForGlobalChangeAL: " + (restrictedNetworksChanged ? "R" : "-"));
3028 }
Felipe Leme873a83a2016-09-07 11:34:10 -07003029 try {
Felipe Leme09700462016-09-08 09:33:48 -07003030 updateRulesForAppIdleUL();
Felipe Leme873a83a2016-09-07 11:34:10 -07003031 updateRulesForRestrictPowerUL();
3032 updateRulesForRestrictBackgroundUL();
Felipe Leme03e689d2016-03-02 16:17:38 -08003033
Felipe Leme873a83a2016-09-07 11:34:10 -07003034 // If the set of restricted networks may have changed, re-evaluate those.
3035 if (restrictedNetworksChanged) {
3036 normalizePoliciesNL();
3037 updateNetworkRulesNL();
3038 }
3039 } finally {
3040 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Felipe Leme76010a32016-03-17 13:03:11 -07003041 }
3042 }
3043
Felipe Leme09700462016-09-08 09:33:48 -07003044 // TODO: rename / document to make it clear these are global (not app-specific) rules
Felipe Lemef0823852016-06-08 13:43:08 -07003045 private void updateRulesForRestrictPowerUL() {
Felipe Leme873a83a2016-09-07 11:34:10 -07003046 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForRestrictPowerUL");
3047 try {
3048 updateRulesForDeviceIdleUL();
Felipe Leme873a83a2016-09-07 11:34:10 -07003049 updateRulesForPowerSaveUL();
3050 updateRulesForAllAppsUL(TYPE_RESTRICT_POWER);
3051 } finally {
3052 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3053 }
Felipe Lemef3e40642016-06-07 17:28:08 -07003054 }
3055
Felipe Lemef0823852016-06-08 13:43:08 -07003056 private void updateRulesForRestrictBackgroundUL() {
Felipe Leme873a83a2016-09-07 11:34:10 -07003057 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForRestrictBackgroundUL");
3058 try {
3059 updateRulesForAllAppsUL(TYPE_RESTRICT_BACKGROUND);
3060 } finally {
3061 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3062 }
Felipe Lemef3e40642016-06-07 17:28:08 -07003063 }
3064
3065 private static final int TYPE_RESTRICT_BACKGROUND = 1;
3066 private static final int TYPE_RESTRICT_POWER = 2;
3067 @Retention(RetentionPolicy.SOURCE)
3068 @IntDef(flag = false, value = {
3069 TYPE_RESTRICT_BACKGROUND,
3070 TYPE_RESTRICT_POWER,
3071 })
3072 public @interface RestrictType {
3073 }
3074
3075 // TODO: refactor / consolidate all those updateXyz methods, there are way too many of them...
Felipe Lemef0823852016-06-08 13:43:08 -07003076 private void updateRulesForAllAppsUL(@RestrictType int type) {
Felipe Leme873a83a2016-09-07 11:34:10 -07003077 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
3078 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "updateRulesForRestrictPowerUL-" + type);
3079 }
3080 try {
Felipe Leme873a83a2016-09-07 11:34:10 -07003081 // update rules for all installed applications
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003082
3083 final PackageManager pm = mContext.getPackageManager();
3084 final List<UserInfo> users;
3085 final List<ApplicationInfo> apps;
3086
3087 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "list-users");
3088 try {
3089 users = mUserManager.getUsers();
3090 } finally {
3091 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3092 }
3093 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "list-uids");
3094 try {
3095 apps = pm.getInstalledApplications(
3096 PackageManager.MATCH_ANY_USER | PackageManager.MATCH_DISABLED_COMPONENTS
3097 | PackageManager.MATCH_DIRECT_BOOT_AWARE
3098 | PackageManager.MATCH_DIRECT_BOOT_UNAWARE);
3099 } finally {
3100 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3101 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07003102
Felipe Leme873a83a2016-09-07 11:34:10 -07003103 final int usersSize = users.size();
3104 final int appsSize = apps.size();
3105 for (int i = 0; i < usersSize; i++) {
3106 final UserInfo user = users.get(i);
3107 for (int j = 0; j < appsSize; j++) {
3108 final ApplicationInfo app = apps.get(j);
3109 final int uid = UserHandle.getUid(user.id, app.uid);
3110 switch (type) {
3111 case TYPE_RESTRICT_BACKGROUND:
Sudheer Shankac9d94072017-02-22 22:13:55 +00003112 updateRulesForDataUsageRestrictionsUL(uid);
Felipe Leme873a83a2016-09-07 11:34:10 -07003113 break;
3114 case TYPE_RESTRICT_POWER:
Sudheer Shankac9d94072017-02-22 22:13:55 +00003115 updateRulesForPowerRestrictionsUL(uid);
Felipe Leme873a83a2016-09-07 11:34:10 -07003116 break;
3117 default:
3118 Slog.w(TAG, "Invalid type for updateRulesForAllApps: " + type);
3119 }
Felipe Lemef3e40642016-06-07 17:28:08 -07003120 }
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -07003121 }
Felipe Leme873a83a2016-09-07 11:34:10 -07003122 } finally {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003123 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003124 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003125 }
3126
Felipe Lemef0823852016-06-08 13:43:08 -07003127 private void updateRulesForTempWhitelistChangeUL() {
Amith Yamasaniaf575b92015-05-29 15:35:26 -07003128 final List<UserInfo> users = mUserManager.getUsers();
Felipe Leme03e689d2016-03-02 16:17:38 -08003129 for (int i = 0; i < users.size(); i++) {
3130 final UserInfo user = users.get(i);
Rakesh Iyer4f3fc212016-03-03 20:16:41 -08003131 for (int j = mPowerSaveTempWhitelistAppIds.size() - 1; j >= 0; j--) {
Felipe Leme03e689d2016-03-02 16:17:38 -08003132 int appId = mPowerSaveTempWhitelistAppIds.keyAt(j);
Amith Yamasaniaf575b92015-05-29 15:35:26 -07003133 int uid = UserHandle.getUid(user.id, appId);
Felipe Leme781ba142016-05-09 16:24:48 -07003134 // Update external firewall rules.
Felipe Lemef0823852016-06-08 13:43:08 -07003135 updateRuleForAppIdleUL(uid);
3136 updateRuleForDeviceIdleUL(uid);
3137 updateRuleForRestrictPowerUL(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003138 // Update internal rules.
Sudheer Shankac9d94072017-02-22 22:13:55 +00003139 updateRulesForPowerRestrictionsUL(uid);
Amith Yamasaniaf575b92015-05-29 15:35:26 -07003140 }
3141 }
3142 }
3143
Felipe Leme70c57c22016-03-29 10:45:13 -07003144 // TODO: the MEDIA / DRM restriction might not be needed anymore, in which case both
3145 // methods below could be merged into a isUidValidForRules() method.
3146 private boolean isUidValidForBlacklistRules(int uid) {
3147 // allow rules on specific system services, and any apps
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07003148 if (uid == android.os.Process.MEDIA_UID || uid == android.os.Process.DRM_UID
Felipe Leme70c57c22016-03-29 10:45:13 -07003149 || (UserHandle.isApp(uid) && hasInternetPermissions(uid))) {
Jeff Sharkey5294a2f2012-04-24 17:07:22 -07003150 return true;
3151 }
3152
3153 return false;
3154 }
3155
Felipe Leme70c57c22016-03-29 10:45:13 -07003156 private boolean isUidValidForWhitelistRules(int uid) {
3157 return UserHandle.isApp(uid) && hasInternetPermissions(uid);
3158 }
3159
Amith Yamasani15e472352015-04-24 19:06:07 -07003160 private boolean isUidIdle(int uid) {
3161 final String[] packages = mContext.getPackageManager().getPackagesForUid(uid);
3162 final int userId = UserHandle.getUserId(uid);
3163
songjinshi0655edd2016-05-18 19:55:32 +08003164 if (packages != null) {
Jeff Sharkey377ded0f2016-01-10 13:15:41 -07003165 for (String packageName : packages) {
3166 if (!mUsageStats.isAppIdle(packageName, uid, userId)) {
3167 return false;
3168 }
Amith Yamasani15e472352015-04-24 19:06:07 -07003169 }
3170 }
3171 return true;
3172 }
3173
3174 /**
Felipe Leme47585ba2016-02-09 16:56:32 -08003175 * Checks if an uid has INTERNET permissions.
3176 * <p>
3177 * Useful for the cases where the lack of network access can simplify the rules.
Amith Yamasani15e472352015-04-24 19:06:07 -07003178 */
Felipe Leme47585ba2016-02-09 16:56:32 -08003179 private boolean hasInternetPermissions(int uid) {
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003180 try {
Amith Yamasani2a4ac4e2016-02-12 12:43:15 -08003181 if (mIPm.checkUidPermission(Manifest.permission.INTERNET, uid)
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003182 != PackageManager.PERMISSION_GRANTED) {
Felipe Leme47585ba2016-02-09 16:56:32 -08003183 return false;
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003184 }
3185 } catch (RemoteException e) {
3186 }
Felipe Leme47585ba2016-02-09 16:56:32 -08003187 return true;
3188 }
3189
3190 /**
Felipe Leme03e95e22016-09-09 09:25:31 -07003191 * Clears all state - internal and external - associated with an UID.
3192 */
3193 private void onUidDeletedUL(int uid) {
3194 // First cleanup in-memory state synchronously...
3195 mUidRules.delete(uid);
3196 mUidPolicy.delete(uid);
3197 mUidFirewallStandbyRules.delete(uid);
3198 mUidFirewallDozableRules.delete(uid);
3199 mUidFirewallPowerSaveRules.delete(uid);
3200 mPowerSaveWhitelistExceptIdleAppIds.delete(uid);
3201 mPowerSaveWhitelistAppIds.delete(uid);
3202 mPowerSaveTempWhitelistAppIds.delete(uid);
3203
3204 // ...then update iptables asynchronously.
3205 mHandler.obtainMessage(MSG_RESET_FIREWALL_RULES_BY_UID, uid, 0).sendToTarget();
3206 }
3207
3208 /**
Felipe Lemef28983d2016-03-25 12:18:23 -07003209 * Applies network rules to bandwidth and firewall controllers based on uid policy.
Felipe Leme76010a32016-03-17 13:03:11 -07003210 *
Felipe Leme781ba142016-05-09 16:24:48 -07003211 * <p>There are currently 4 types of restriction rules:
Felipe Lemef28983d2016-03-25 12:18:23 -07003212 * <ul>
Felipe Leme781ba142016-05-09 16:24:48 -07003213 * <li>Doze mode
3214 * <li>App idle mode
Felipe Lemef28983d2016-03-25 12:18:23 -07003215 * <li>Battery Saver Mode (also referred as power save).
Felipe Leme46c4fc32016-05-04 09:21:43 -07003216 * <li>Data Saver Mode (The Feature Formerly Known As 'Restrict Background Data').
Felipe Lemef28983d2016-03-25 12:18:23 -07003217 * </ul>
Felipe Leme781ba142016-05-09 16:24:48 -07003218 *
3219 * <p>This method changes both the external firewall rules and the internal state.
Felipe Leme47585ba2016-02-09 16:56:32 -08003220 */
Felipe Leme03e95e22016-09-09 09:25:31 -07003221 private void updateRestrictionRulesForUidUL(int uid) {
Felipe Leme781ba142016-05-09 16:24:48 -07003222 // Methods below only changes the firewall rules for the power-related modes.
Felipe Lemef0823852016-06-08 13:43:08 -07003223 updateRuleForDeviceIdleUL(uid);
3224 updateRuleForAppIdleUL(uid);
3225 updateRuleForRestrictPowerUL(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003226
3227 // Update internal state for power-related modes.
Sudheer Shankac9d94072017-02-22 22:13:55 +00003228 updateRulesForPowerRestrictionsUL(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003229
3230 // Update firewall and internal rules for Data Saver Mode.
Sudheer Shankac9d94072017-02-22 22:13:55 +00003231 updateRulesForDataUsageRestrictionsUL(uid);
Felipe Lemef28983d2016-03-25 12:18:23 -07003232 }
3233
Felipe Leme70c57c22016-03-29 10:45:13 -07003234 /**
3235 * Applies network rules to bandwidth controllers based on process state and user-defined
3236 * restrictions (blacklist / whitelist).
3237 *
3238 * <p>
3239 * {@code netd} defines 3 firewall chains that govern whether an app has access to metered
3240 * networks:
3241 * <ul>
3242 * <li>@{code bw_penalty_box}: UIDs added to this chain do not have access (blacklist).
3243 * <li>@{code bw_happy_box}: UIDs added to this chain have access (whitelist), unless they're
3244 * also blacklisted.
3245 * <li>@{code bw_data_saver}: when enabled (through {@link #setRestrictBackground(boolean)}),
3246 * no UIDs other those whitelisted will have access.
3247 * <ul>
3248 *
3249 * <p>The @{code bw_penalty_box} and @{code bw_happy_box} are primarily managed through the
3250 * {@link #setUidPolicy(int, int)} and {@link #addRestrictBackgroundWhitelistedUid(int)} /
3251 * {@link #removeRestrictBackgroundWhitelistedUid(int)} methods (for blacklist and whitelist
3252 * respectively): these methods set the proper internal state (blacklist / whitelist), then call
Felipe Lemef0823852016-06-08 13:43:08 -07003253 * this ({@link #updateRulesForDataUsageRestrictionsUL(int)}) to propagate the rules to
Felipe Leme70c57c22016-03-29 10:45:13 -07003254 * {@link INetworkManagementService}, but this method should also be called in events (like
3255 * Data Saver Mode flips or UID state changes) that might affect the foreground app, since the
3256 * following rules should also be applied:
3257 *
3258 * <ul>
3259 * <li>When Data Saver mode is on, the foreground app should be temporarily added to
3260 * {@code bw_happy_box} before the @{code bw_data_saver} chain is enabled.
3261 * <li>If the foreground app is blacklisted by the user, it should be temporarily removed from
3262 * {@code bw_penalty_box}.
3263 * <li>When the app leaves foreground state, the temporary changes above should be reverted.
3264 * </ul>
3265 *
3266 * <p>For optimization, the rules are only applied on user apps that have internet access
3267 * permission, since there is no need to change the {@code iptables} rule if the app does not
3268 * have permission to use the internet.
3269 *
3270 * <p>The {@link #mUidRules} map is used to define the transtion of states of an UID.
Felipe Lemed31a97f2016-05-06 14:53:50 -07003271 *
Felipe Leme70c57c22016-03-29 10:45:13 -07003272 */
Sudheer Shankac9d94072017-02-22 22:13:55 +00003273 private void updateRulesForDataUsageRestrictionsUL(int uid) {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003274 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
3275 Trace.traceBegin(Trace.TRACE_TAG_NETWORK,
3276 "updateRulesForDataUsageRestrictionsUL: " + uid);
3277 }
3278 try {
3279 updateRulesForDataUsageRestrictionsULInner(uid);
3280 } finally {
3281 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3282 }
3283 }
3284
3285 private void updateRulesForDataUsageRestrictionsULInner(int uid) {
Felipe Leme03e95e22016-09-09 09:25:31 -07003286 if (!isUidValidForWhitelistRules(uid)) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003287 if (LOGD) Slog.d(TAG, "no need to update restrict data rules for uid " + uid);
Sudheer Shankac9d94072017-02-22 22:13:55 +00003288 return;
Felipe Leme70c57c22016-03-29 10:45:13 -07003289 }
Dianne Hackborn88e98df2015-03-23 13:29:14 -07003290
Dianne Hackborn497175b2014-07-01 12:56:08 -07003291 final int uidPolicy = mUidPolicy.get(uid, POLICY_NONE);
Felipe Leme46c4fc32016-05-04 09:21:43 -07003292 final int oldUidRules = mUidRules.get(uid, RULE_NONE);
Felipe Lemef0823852016-06-08 13:43:08 -07003293 final boolean isForeground = isUidForegroundOnRestrictBackgroundUL(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07003294
Felipe Leme781ba142016-05-09 16:24:48 -07003295 final boolean isBlacklisted = (uidPolicy & POLICY_REJECT_METERED_BACKGROUND) != 0;
Felipe Leme46b451f2016-08-19 08:46:17 -07003296 final boolean isWhitelisted = (uidPolicy & POLICY_ALLOW_METERED_BACKGROUND) != 0;
Felipe Leme781ba142016-05-09 16:24:48 -07003297 final int oldRule = oldUidRules & MASK_METERED_NETWORKS;
3298 int newRule = RULE_NONE;
Felipe Leme76010a32016-03-17 13:03:11 -07003299
Felipe Leme70c57c22016-03-29 10:45:13 -07003300 // First step: define the new rule based on user restrictions and foreground state.
3301 if (isForeground) {
Felipe Leme781ba142016-05-09 16:24:48 -07003302 if (isBlacklisted || (mRestrictBackground && !isWhitelisted)) {
3303 newRule = RULE_TEMPORARY_ALLOW_METERED;
3304 } else if (isWhitelisted) {
3305 newRule = RULE_ALLOW_METERED;
Felipe Lemed31a97f2016-05-06 14:53:50 -07003306 }
3307 } else {
Felipe Leme781ba142016-05-09 16:24:48 -07003308 if (isBlacklisted) {
3309 newRule = RULE_REJECT_METERED;
3310 } else if (mRestrictBackground && isWhitelisted) {
3311 newRule = RULE_ALLOW_METERED;
Felipe Lemed31a97f2016-05-06 14:53:50 -07003312 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003313 }
Felipe Leme781ba142016-05-09 16:24:48 -07003314 final int newUidRules = newRule | (oldUidRules & MASK_ALL_NETWORKS);
Felipe Leme46c4fc32016-05-04 09:21:43 -07003315
Felipe Lemef28983d2016-03-25 12:18:23 -07003316 if (LOGV) {
Felipe Lemef0823852016-06-08 13:43:08 -07003317 Log.v(TAG, "updateRuleForRestrictBackgroundUL(" + uid + ")"
Felipe Leme781ba142016-05-09 16:24:48 -07003318 + ": isForeground=" +isForeground
3319 + ", isBlacklisted=" + isBlacklisted
3320 + ", isWhitelisted=" + isWhitelisted
3321 + ", oldRule=" + uidRulesToString(oldRule)
3322 + ", newRule=" + uidRulesToString(newRule)
3323 + ", newUidRules=" + uidRulesToString(newUidRules)
3324 + ", oldUidRules=" + uidRulesToString(oldUidRules));
Felipe Lemef28983d2016-03-25 12:18:23 -07003325 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07003326
Felipe Leme46c4fc32016-05-04 09:21:43 -07003327 if (newUidRules == RULE_NONE) {
Jeff Sharkey350083e2011-06-29 10:45:16 -07003328 mUidRules.delete(uid);
3329 } else {
Felipe Leme46c4fc32016-05-04 09:21:43 -07003330 mUidRules.put(uid, newUidRules);
Jeff Sharkey350083e2011-06-29 10:45:16 -07003331 }
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -07003332
Felipe Leme70c57c22016-03-29 10:45:13 -07003333 // Second step: apply bw changes based on change of state.
Felipe Leme781ba142016-05-09 16:24:48 -07003334 if (newRule != oldRule) {
Felipe Leme781ba142016-05-09 16:24:48 -07003335 if ((newRule & RULE_TEMPORARY_ALLOW_METERED) != 0) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003336 // Temporarily whitelist foreground app, removing from blacklist if necessary
3337 // (since bw_penalty_box prevails over bw_happy_box).
3338
3339 setMeteredNetworkWhitelist(uid, true);
3340 // TODO: if statement below is used to avoid an unnecessary call to netd / iptables,
3341 // but ideally it should be just:
3342 // setMeteredNetworkBlacklist(uid, isBlacklisted);
Felipe Leme781ba142016-05-09 16:24:48 -07003343 if (isBlacklisted) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003344 setMeteredNetworkBlacklist(uid, false);
3345 }
Felipe Leme781ba142016-05-09 16:24:48 -07003346 } else if ((oldRule & RULE_TEMPORARY_ALLOW_METERED) != 0) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003347 // Remove temporary whitelist from app that is not on foreground anymore.
3348
3349 // TODO: if statements below are used to avoid unnecessary calls to netd / iptables,
3350 // but ideally they should be just:
3351 // setMeteredNetworkWhitelist(uid, isWhitelisted);
3352 // setMeteredNetworkBlacklist(uid, isBlacklisted);
Felipe Leme781ba142016-05-09 16:24:48 -07003353 if (!isWhitelisted) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003354 setMeteredNetworkWhitelist(uid, false);
3355 }
Felipe Leme781ba142016-05-09 16:24:48 -07003356 if (isBlacklisted) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003357 setMeteredNetworkBlacklist(uid, true);
3358 }
Felipe Leme781ba142016-05-09 16:24:48 -07003359 } else if ((newRule & RULE_REJECT_METERED) != 0
3360 || (oldRule & RULE_REJECT_METERED) != 0) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003361 // Flip state because app was explicitly added or removed to blacklist.
Felipe Leme781ba142016-05-09 16:24:48 -07003362 setMeteredNetworkBlacklist(uid, isBlacklisted);
3363 if ((oldRule & RULE_REJECT_METERED) != 0 && isWhitelisted) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003364 // Since blacklist prevails over whitelist, we need to handle the special case
3365 // where app is whitelisted and blacklisted at the same time (although such
3366 // scenario should be blocked by the UI), then blacklist is removed.
Felipe Leme781ba142016-05-09 16:24:48 -07003367 setMeteredNetworkWhitelist(uid, isWhitelisted);
Felipe Leme70c57c22016-03-29 10:45:13 -07003368 }
Felipe Leme781ba142016-05-09 16:24:48 -07003369 } else if ((newRule & RULE_ALLOW_METERED) != 0
3370 || (oldRule & RULE_ALLOW_METERED) != 0) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003371 // Flip state because app was explicitly added or removed to whitelist.
Felipe Leme781ba142016-05-09 16:24:48 -07003372 setMeteredNetworkWhitelist(uid, isWhitelisted);
Felipe Leme70c57c22016-03-29 10:45:13 -07003373 } else {
Felipe Leme781ba142016-05-09 16:24:48 -07003374 // All scenarios should have been covered above.
Felipe Leme46c4fc32016-05-04 09:21:43 -07003375 Log.wtf(TAG, "Unexpected change of metered UID state for " + uid
3376 + ": foreground=" + isForeground
Felipe Leme781ba142016-05-09 16:24:48 -07003377 + ", whitelisted=" + isWhitelisted
3378 + ", blacklisted=" + isBlacklisted
Felipe Lemed31a97f2016-05-06 14:53:50 -07003379 + ", newRule=" + uidRulesToString(newUidRules)
3380 + ", oldRule=" + uidRulesToString(oldUidRules));
Felipe Leme70c57c22016-03-29 10:45:13 -07003381 }
Felipe Leme781ba142016-05-09 16:24:48 -07003382
Sudheer Shankac9d94072017-02-22 22:13:55 +00003383 // Dispatch changed rule to existing listeners.
3384 mHandler.obtainMessage(MSG_RULES_CHANGED, uid, newUidRules).sendToTarget();
Felipe Leme781ba142016-05-09 16:24:48 -07003385 }
3386 }
3387
3388 /**
3389 * Updates the power-related part of the {@link #mUidRules} for a given map, and notify external
3390 * listeners in case of change.
3391 * <p>
3392 * There are 3 power-related rules that affects whether an app has background access on
3393 * non-metered networks, and when the condition applies and the UID is not whitelisted for power
3394 * restriction, it's added to the equivalent firewall chain:
3395 * <ul>
3396 * <li>App is idle: {@code fw_standby} firewall chain.
3397 * <li>Device is idle: {@code fw_dozable} firewall chain.
3398 * <li>Battery Saver Mode is on: {@code fw_powersave} firewall chain.
3399 * </ul>
3400 * <p>
3401 * This method updates the power-related part of the {@link #mUidRules} for a given uid based on
3402 * these modes, the UID process state (foreground or not), and the UIDwhitelist state.
3403 * <p>
3404 * <strong>NOTE: </strong>This method does not update the firewall rules on {@code netd}.
3405 */
Sudheer Shankac9d94072017-02-22 22:13:55 +00003406 private void updateRulesForPowerRestrictionsUL(int uid) {
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003407 final int oldUidRules = mUidRules.get(uid, RULE_NONE);
3408
Sudheer Shankac9d94072017-02-22 22:13:55 +00003409 final int newUidRules = updateRulesForPowerRestrictionsUL(uid, oldUidRules, false);
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003410
Sudheer Shankac9d94072017-02-22 22:13:55 +00003411 if (newUidRules == RULE_NONE) {
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003412 mUidRules.delete(uid);
3413 } else {
Sudheer Shankac9d94072017-02-22 22:13:55 +00003414 mUidRules.put(uid, newUidRules);
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003415 }
3416 }
3417
3418 /**
3419 * Similar to above but ignores idle state if app standby is currently disabled by parole.
3420 *
3421 * @param uid the uid of the app to update rules for
3422 * @param oldUidRules the current rules for the uid, in order to determine if there's a change
3423 * @param paroled whether to ignore idle state of apps and only look at other restrictions.
3424 *
Sudheer Shankac9d94072017-02-22 22:13:55 +00003425 * @return the new computed rules for the uid
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003426 */
Sudheer Shankac9d94072017-02-22 22:13:55 +00003427 private int updateRulesForPowerRestrictionsUL(int uid, int oldUidRules, boolean paroled) {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003428 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
3429 Trace.traceBegin(Trace.TRACE_TAG_NETWORK,
3430 "updateRulesForPowerRestrictionsUL: " + uid + "/" + oldUidRules + "/"
3431 + (paroled ? "P" : "-"));
3432 }
3433 try {
3434 return updateRulesForPowerRestrictionsULInner(uid, oldUidRules, paroled);
3435 } finally {
3436 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3437 }
3438 }
3439
3440 private int updateRulesForPowerRestrictionsULInner(int uid, int oldUidRules, boolean paroled) {
Felipe Leme781ba142016-05-09 16:24:48 -07003441 if (!isUidValidForBlacklistRules(uid)) {
3442 if (LOGD) Slog.d(TAG, "no need to update restrict power rules for uid " + uid);
Sudheer Shankac9d94072017-02-22 22:13:55 +00003443 return RULE_NONE;
Felipe Lemed31a97f2016-05-06 14:53:50 -07003444 }
Felipe Lemef28983d2016-03-25 12:18:23 -07003445
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003446 final boolean isIdle = !paroled && isUidIdle(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003447 final boolean restrictMode = isIdle || mRestrictPower || mDeviceIdleMode;
Felipe Lemef0823852016-06-08 13:43:08 -07003448 final boolean isForeground = isUidForegroundOnRestrictPowerUL(uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003449
Sudheer Shanka54a92fd2017-04-26 10:43:23 -07003450 final boolean isWhitelisted = isWhitelistedBatterySaverUL(uid, mDeviceIdleMode);
Felipe Leme781ba142016-05-09 16:24:48 -07003451 final int oldRule = oldUidRules & MASK_ALL_NETWORKS;
3452 int newRule = RULE_NONE;
3453
3454 // First step: define the new rule based on user restrictions and foreground state.
3455
3456 // NOTE: if statements below could be inlined, but it's easier to understand the logic
3457 // by considering the foreground and non-foreground states.
3458 if (isForeground) {
3459 if (restrictMode) {
3460 newRule = RULE_ALLOW_ALL;
3461 }
3462 } else if (restrictMode) {
3463 newRule = isWhitelisted ? RULE_ALLOW_ALL : RULE_REJECT_ALL;
3464 }
3465
3466 final int newUidRules = (oldUidRules & MASK_METERED_NETWORKS) | newRule;
3467
3468 if (LOGV) {
Felipe Leme88f40ad2016-08-10 13:00:32 -07003469 Log.v(TAG, "updateRulesForPowerRestrictionsUL(" + uid + ")"
Felipe Leme781ba142016-05-09 16:24:48 -07003470 + ", isIdle: " + isIdle
3471 + ", mRestrictPower: " + mRestrictPower
3472 + ", mDeviceIdleMode: " + mDeviceIdleMode
3473 + ", isForeground=" + isForeground
3474 + ", isWhitelisted=" + isWhitelisted
3475 + ", oldRule=" + uidRulesToString(oldRule)
3476 + ", newRule=" + uidRulesToString(newRule)
3477 + ", newUidRules=" + uidRulesToString(newUidRules)
3478 + ", oldUidRules=" + uidRulesToString(oldUidRules));
3479 }
3480
Felipe Leme781ba142016-05-09 16:24:48 -07003481 // Second step: notify listeners if state changed.
3482 if (newRule != oldRule) {
3483 if (newRule == RULE_NONE || (newRule & RULE_ALLOW_ALL) != 0) {
Felipe Lemed31a97f2016-05-06 14:53:50 -07003484 if (LOGV) Log.v(TAG, "Allowing non-metered access for UID " + uid);
Felipe Leme781ba142016-05-09 16:24:48 -07003485 } else if ((newRule & RULE_REJECT_ALL) != 0) {
Felipe Lemed31a97f2016-05-06 14:53:50 -07003486 if (LOGV) Log.v(TAG, "Rejecting non-metered access for UID " + uid);
3487 } else {
3488 // All scenarios should have been covered above
3489 Log.wtf(TAG, "Unexpected change of non-metered UID state for " + uid
3490 + ": foreground=" + isForeground
Felipe Leme781ba142016-05-09 16:24:48 -07003491 + ", whitelisted=" + isWhitelisted
Felipe Lemed31a97f2016-05-06 14:53:50 -07003492 + ", newRule=" + uidRulesToString(newUidRules)
3493 + ", oldRule=" + uidRulesToString(oldUidRules));
3494 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00003495 mHandler.obtainMessage(MSG_RULES_CHANGED, uid, newUidRules).sendToTarget();
Amith Yamasani15e472352015-04-24 19:06:07 -07003496 }
Amith Yamasani0938f2f2016-09-16 12:46:31 -07003497
Sudheer Shankac9d94072017-02-22 22:13:55 +00003498 return newUidRules;
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003499 }
3500
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07003501 private class AppIdleStateChangeListener
3502 extends UsageStatsManagerInternal.AppIdleStateChangeListener {
3503
3504 @Override
3505 public void onAppIdleStateChanged(String packageName, int userId, boolean idle) {
3506 try {
Jeff Sharkeyc5967e92016-01-07 18:50:29 -07003507 final int uid = mContext.getPackageManager().getPackageUidAsUser(packageName,
3508 PackageManager.MATCH_UNINSTALLED_PACKAGES, userId);
Felipe Leme781ba142016-05-09 16:24:48 -07003509 if (LOGV) Log.v(TAG, "onAppIdleStateChanged(): uid=" + uid + ", idle=" + idle);
Felipe Lemef0823852016-06-08 13:43:08 -07003510 synchronized (mUidRulesFirstLock) {
3511 updateRuleForAppIdleUL(uid);
Sudheer Shankac9d94072017-02-22 22:13:55 +00003512 updateRulesForPowerRestrictionsUL(uid);
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07003513 }
3514 } catch (NameNotFoundException nnfe) {
Amith Yamasani15e472352015-04-24 19:06:07 -07003515 }
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07003516 }
3517
3518 @Override
3519 public void onParoleStateChanged(boolean isParoleOn) {
Felipe Lemef0823852016-06-08 13:43:08 -07003520 synchronized (mUidRulesFirstLock) {
3521 updateRulesForAppIdleParoleUL();
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07003522 }
Amith Yamasani15e472352015-04-24 19:06:07 -07003523 }
3524 }
3525
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06003526 private void dispatchUidRulesChanged(INetworkPolicyListener listener, int uid, int uidRules) {
3527 if (listener != null) {
3528 try {
3529 listener.onUidRulesChanged(uid, uidRules);
3530 } catch (RemoteException ignored) {
3531 }
3532 }
3533 }
3534
3535 private void dispatchMeteredIfacesChanged(INetworkPolicyListener listener,
3536 String[] meteredIfaces) {
3537 if (listener != null) {
3538 try {
3539 listener.onMeteredIfacesChanged(meteredIfaces);
3540 } catch (RemoteException ignored) {
3541 }
3542 }
3543 }
3544
3545 private void dispatchRestrictBackgroundChanged(INetworkPolicyListener listener,
3546 boolean restrictBackground) {
3547 if (listener != null) {
3548 try {
3549 listener.onRestrictBackgroundChanged(restrictBackground);
3550 } catch (RemoteException ignored) {
3551 }
3552 }
3553 }
3554
Felipe Leme0ecfcd12016-09-06 12:49:48 -07003555 private void dispatchUidPoliciesChanged(INetworkPolicyListener listener, int uid,
3556 int uidPolicies) {
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06003557 if (listener != null) {
3558 try {
Felipe Leme0ecfcd12016-09-06 12:49:48 -07003559 listener.onUidPoliciesChanged(uid, uidPolicies);
Felipe Leme99d5d3d2016-05-16 13:30:57 -07003560 } catch (RemoteException ignored) {
3561 }
3562 }
3563 }
3564
Makoto Onuki8e777332017-03-28 11:25:47 -07003565 private final Handler.Callback mHandlerCallback = new Handler.Callback() {
Jeff Sharkeybfdd6802012-04-09 10:49:19 -07003566 @Override
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003567 public boolean handleMessage(Message msg) {
3568 switch (msg.what) {
3569 case MSG_RULES_CHANGED: {
3570 final int uid = msg.arg1;
3571 final int uidRules = msg.arg2;
Sudheer Shankac9d94072017-02-22 22:13:55 +00003572 final int length = mListeners.beginBroadcast();
3573 for (int i = 0; i < length; i++) {
3574 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
3575 dispatchUidRulesChanged(listener, uid, uidRules);
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003576 }
Sudheer Shankac9d94072017-02-22 22:13:55 +00003577 mListeners.finishBroadcast();
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003578 return true;
3579 }
3580 case MSG_METERED_IFACES_CHANGED: {
3581 final String[] meteredIfaces = (String[]) msg.obj;
3582 final int length = mListeners.beginBroadcast();
3583 for (int i = 0; i < length; i++) {
3584 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06003585 dispatchMeteredIfacesChanged(listener, meteredIfaces);
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003586 }
3587 mListeners.finishBroadcast();
3588 return true;
3589 }
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08003590 case MSG_LIMIT_REACHED: {
3591 final String iface = (String) msg.obj;
3592
Jeff Sharkey684c54a2011-11-16 17:46:30 -08003593 maybeRefreshTrustedTime();
Felipe Lemef0823852016-06-08 13:43:08 -07003594 synchronized (mNetworkPoliciesSecondLock) {
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08003595 if (mMeteredIfaces.contains(iface)) {
3596 try {
3597 // force stats update to make sure we have
3598 // numbers that caused alert to trigger.
3599 mNetworkStats.forceUpdate();
3600 } catch (RemoteException e) {
3601 // ignored; service lives in system_server
3602 }
3603
Felipe Lemef0823852016-06-08 13:43:08 -07003604 updateNetworkEnabledNL();
3605 updateNotificationsNL();
Jeff Sharkey7e25b0e2011-11-08 15:43:12 -08003606 }
3607 }
3608 return true;
3609 }
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08003610 case MSG_RESTRICT_BACKGROUND_CHANGED: {
3611 final boolean restrictBackground = msg.arg1 != 0;
3612 final int length = mListeners.beginBroadcast();
3613 for (int i = 0; i < length; i++) {
3614 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06003615 dispatchRestrictBackgroundChanged(listener, restrictBackground);
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08003616 }
3617 mListeners.finishBroadcast();
Felipe Leme9778f762016-01-27 14:46:39 -08003618 final Intent intent =
3619 new Intent(ConnectivityManager.ACTION_RESTRICT_BACKGROUND_CHANGED);
3620 intent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3621 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
3622 return true;
3623 }
Felipe Leme0ecfcd12016-09-06 12:49:48 -07003624 case MSG_POLICIES_CHANGED: {
Felipe Leme9778f762016-01-27 14:46:39 -08003625 final int uid = msg.arg1;
Felipe Leme0ecfcd12016-09-06 12:49:48 -07003626 final int policy = msg.arg2;
Felipe Leme57e3d312016-08-23 14:42:52 -07003627 final Boolean notifyApp = (Boolean) msg.obj;
Jeff Sharkey1b6519b2016-04-28 15:33:18 -06003628 // First notify internal listeners...
Felipe Leme57e3d312016-08-23 14:42:52 -07003629 final int length = mListeners.beginBroadcast();
3630 for (int i = 0; i < length; i++) {
3631 final INetworkPolicyListener listener = mListeners.getBroadcastItem(i);
Felipe Leme0ecfcd12016-09-06 12:49:48 -07003632 dispatchUidPoliciesChanged(listener, uid, policy);
Felipe Leme99d5d3d2016-05-16 13:30:57 -07003633 }
3634 mListeners.finishBroadcast();
Felipe Leme57e3d312016-08-23 14:42:52 -07003635 // ...then apps listening to ACTION_RESTRICT_BACKGROUND_CHANGED
3636 if (notifyApp.booleanValue()) {
3637 broadcastRestrictBackgroundChanged(uid, notifyApp);
3638 }
Felipe Leme99d5d3d2016-05-16 13:30:57 -07003639 return true;
3640 }
Jeff Sharkeye19f39b2012-05-24 10:21:16 -07003641 case MSG_ADVISE_PERSIST_THRESHOLD: {
3642 final long lowestRule = (Long) msg.obj;
3643 try {
3644 // make sure stats are recorded frequently enough; we aim
3645 // for 2MB threshold for 2GB/month rules.
3646 final long persistThreshold = lowestRule / 1000;
3647 mNetworkStats.advisePersistThreshold(persistThreshold);
3648 } catch (RemoteException e) {
3649 // ignored; service lives in system_server
3650 }
3651 return true;
Jeff Sharkey1f8ea2d2012-02-07 12:05:43 -08003652 }
Amith Yamasani3646cbd2016-04-13 14:04:53 -07003653 case MSG_UPDATE_INTERFACE_QUOTA: {
3654 removeInterfaceQuota((String) msg.obj);
3655 // int params need to be stitched back into a long
3656 setInterfaceQuota((String) msg.obj,
3657 ((long) msg.arg1 << 32) | (msg.arg2 & 0xFFFFFFFFL));
3658 return true;
3659 }
3660 case MSG_REMOVE_INTERFACE_QUOTA: {
3661 removeInterfaceQuota((String) msg.obj);
3662 return true;
3663 }
Felipe Lemebc853dd2016-09-08 13:26:55 -07003664 case MSG_SET_FIREWALL_RULES: {
3665 final int chain = msg.arg1;
3666 final int toggle = msg.arg2;
3667 final SparseIntArray uidRules = (SparseIntArray) msg.obj;
3668 if (uidRules != null) {
3669 setUidFirewallRules(chain, uidRules);
3670 }
3671 if (toggle != CHAIN_TOGGLE_NONE) {
3672 enableFirewallChainUL(chain, toggle == CHAIN_TOGGLE_ENABLE);
3673 }
3674 return true;
3675 }
Felipe Leme03e95e22016-09-09 09:25:31 -07003676 case MSG_RESET_FIREWALL_RULES_BY_UID: {
3677 resetUidFirewallRules(msg.arg1);
3678 return true;
3679 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003680 default: {
3681 return false;
Jeff Sharkeyaf11d482011-06-13 00:14:31 -07003682 }
3683 }
3684 }
Makoto Onuki8e777332017-03-28 11:25:47 -07003685 };
3686
3687 private final Handler.Callback mUidEventHandlerCallback = new Handler.Callback() {
3688 @Override
3689 public boolean handleMessage(Message msg) {
3690 switch (msg.what) {
3691 case UID_MSG_STATE_CHANGED: {
3692 final int uid = msg.arg1;
3693 final int procState = msg.arg2;
3694 final long procStateSeq = (Long) msg.obj;
3695
3696 handleUidChanged(uid, procState, procStateSeq);
3697 return true;
3698 }
3699 case UID_MSG_GONE: {
3700 final int uid = msg.arg1;
3701 handleUidGone(uid);
3702 return true;
3703 }
3704 default: {
3705 return false;
3706 }
3707 }
3708 }
Felipe Leme57e3d312016-08-23 14:42:52 -07003709
Jeff Sharkey4414cea2011-06-24 17:05:24 -07003710 };
Jeff Sharkey22c055e2011-06-12 21:13:51 -07003711
Makoto Onuki8e777332017-03-28 11:25:47 -07003712 void handleUidChanged(int uid, int procState, long procStateSeq) {
3713 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "onUidStateChanged");
3714 try {
3715 synchronized (mUidRulesFirstLock) {
3716 // We received a uid state change callback, add it to the history so that it
3717 // will be useful for debugging.
3718 mObservedHistory.addProcStateSeqUL(uid, procStateSeq);
3719 // Now update the network policy rules as per the updated uid state.
3720 updateUidStateUL(uid, procState);
3721 // Updating the network rules is done, so notify AMS about this.
3722 mActivityManagerInternal.notifyNetworkPolicyRulesUpdated(uid, procStateSeq);
3723 }
3724 } finally {
3725 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3726 }
3727 }
3728
3729 void handleUidGone(int uid) {
3730 Trace.traceBegin(Trace.TRACE_TAG_NETWORK, "onUidGone");
3731 try {
3732 synchronized (mUidRulesFirstLock) {
3733 removeUidStateUL(uid);
3734 }
3735 } finally {
3736 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
3737 }
3738 }
3739
Felipe Leme57e3d312016-08-23 14:42:52 -07003740 private void broadcastRestrictBackgroundChanged(int uid, Boolean changed) {
3741 final PackageManager pm = mContext.getPackageManager();
3742 final String[] packages = pm.getPackagesForUid(uid);
3743 if (packages != null) {
3744 final int userId = UserHandle.getUserId(uid);
3745 for (String packageName : packages) {
3746 final Intent intent =
3747 new Intent(ConnectivityManager.ACTION_RESTRICT_BACKGROUND_CHANGED);
3748 intent.setPackage(packageName);
3749 intent.setFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
3750 mContext.sendBroadcastAsUser(intent, UserHandle.of(userId));
3751 }
3752 }
3753 }
3754
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003755 private void setInterfaceQuota(String iface, long quotaBytes) {
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003756 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003757 mNetworkManager.setInterfaceQuota(iface, quotaBytes);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003758 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003759 Log.wtf(TAG, "problem setting interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003760 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003761 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003762 }
3763 }
3764
3765 private void removeInterfaceQuota(String iface) {
3766 try {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003767 mNetworkManager.removeInterfaceQuota(iface);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003768 } catch (IllegalStateException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003769 Log.wtf(TAG, "problem removing interface quota", e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003770 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003771 // ignored; service lives in system_server
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003772 }
3773 }
3774
Felipe Leme70c57c22016-03-29 10:45:13 -07003775 private void setMeteredNetworkBlacklist(int uid, boolean enable) {
3776 if (LOGV) Slog.v(TAG, "setMeteredNetworkBlacklist " + uid + ": " + enable);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003777 try {
Felipe Leme70c57c22016-03-29 10:45:13 -07003778 mNetworkManager.setUidMeteredNetworkBlacklist(uid, enable);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003779 } catch (IllegalStateException e) {
Felipe Leme70c57c22016-03-29 10:45:13 -07003780 Log.wtf(TAG, "problem setting blacklist (" + enable + ") rules for " + uid, e);
3781 } catch (RemoteException e) {
3782 // ignored; service lives in system_server
3783 }
3784 }
3785
3786 private void setMeteredNetworkWhitelist(int uid, boolean enable) {
3787 if (LOGV) Slog.v(TAG, "setMeteredNetworkWhitelist " + uid + ": " + enable);
3788 try {
3789 mNetworkManager.setUidMeteredNetworkWhitelist(uid, enable);
3790 } catch (IllegalStateException e) {
3791 Log.wtf(TAG, "problem setting whitelist (" + enable + ") rules for " + uid, e);
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003792 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003793 // ignored; service lives in system_server
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -07003794 }
3795 }
3796
Felipe Lemebc853dd2016-09-08 13:26:55 -07003797 private static final int CHAIN_TOGGLE_NONE = 0;
3798 private static final int CHAIN_TOGGLE_ENABLE = 1;
3799 private static final int CHAIN_TOGGLE_DISABLE = 2;
3800 @Retention(RetentionPolicy.SOURCE)
3801 @IntDef(flag = false, value = {
3802 CHAIN_TOGGLE_NONE,
3803 CHAIN_TOGGLE_ENABLE,
3804 CHAIN_TOGGLE_DISABLE
3805 })
3806 public @interface ChainToggleType {
3807 }
3808
3809 /**
3810 * Calls {@link #setUidFirewallRules(int, SparseIntArray)} and
3811 * {@link #enableFirewallChainUL(int, boolean)} asynchronously.
3812 *
3813 * @param chain firewall chain.
3814 * @param uidRules new UID rules; if {@code null}, only toggles chain state.
3815 * @param toggle whether the chain should be enabled, disabled, or not changed.
3816 */
3817 private void setUidFirewallRulesAsync(int chain, @Nullable SparseIntArray uidRules,
3818 @ChainToggleType int toggle) {
3819 mHandler.obtainMessage(MSG_SET_FIREWALL_RULES, chain, toggle, uidRules).sendToTarget();
3820 }
3821
Amith Yamasani15e472352015-04-24 19:06:07 -07003822 /**
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003823 * Set uid rules on a particular firewall chain. This is going to synchronize the rules given
3824 * here to netd. It will clean up dead rules and make sure the target chain only contains rules
3825 * specified here.
Amith Yamasani15e472352015-04-24 19:06:07 -07003826 */
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003827 private void setUidFirewallRules(int chain, SparseIntArray uidRules) {
Amith Yamasani15e472352015-04-24 19:06:07 -07003828 try {
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003829 int size = uidRules.size();
3830 int[] uids = new int[size];
3831 int[] rules = new int[size];
3832 for(int index = size - 1; index >= 0; --index) {
3833 uids[index] = uidRules.keyAt(index);
3834 rules[index] = uidRules.valueAt(index);
3835 }
3836 mNetworkManager.setFirewallUidRules(chain, uids, rules);
Amith Yamasani15e472352015-04-24 19:06:07 -07003837 } catch (IllegalStateException e) {
3838 Log.wtf(TAG, "problem setting firewall uid rules", e);
3839 } catch (RemoteException e) {
3840 // ignored; service lives in system_server
3841 }
3842 }
3843
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003844 /**
3845 * Add or remove a uid to the firewall blacklist for all network ifaces.
3846 */
Dianne Hackborn4a503b12015-08-06 22:19:06 -07003847 private void setUidFirewallRule(int chain, int uid, int rule) {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003848 if (Trace.isTagEnabled(Trace.TRACE_TAG_NETWORK)) {
3849 Trace.traceBegin(Trace.TRACE_TAG_NETWORK,
3850 "setUidFirewallRule: " + chain + "/" + uid + "/" + rule);
Jeff Sharkeydc988062015-09-14 10:09:47 -07003851 }
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003852 try {
Makoto Onuki0e6e3bd2017-03-20 14:53:00 -07003853 if (chain == FIREWALL_CHAIN_DOZABLE) {
3854 mUidFirewallDozableRules.put(uid, rule);
3855 } else if (chain == FIREWALL_CHAIN_STANDBY) {
3856 mUidFirewallStandbyRules.put(uid, rule);
3857 } else if (chain == FIREWALL_CHAIN_POWERSAVE) {
3858 mUidFirewallPowerSaveRules.put(uid, rule);
3859 }
3860
3861 try {
3862 mNetworkManager.setFirewallUidRule(chain, uid, rule);
3863 } catch (IllegalStateException e) {
3864 Log.wtf(TAG, "problem setting firewall uid rules", e);
3865 } catch (RemoteException e) {
3866 // ignored; service lives in system_server
3867 }
3868 } finally {
3869 Trace.traceEnd(Trace.TRACE_TAG_NETWORK);
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003870 }
3871 }
3872
3873 /**
3874 * Add or remove a uid to the firewall blacklist for all network ifaces.
3875 */
Felipe Lemef0823852016-06-08 13:43:08 -07003876 private void enableFirewallChainUL(int chain, boolean enable) {
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003877 if (mFirewallChainStates.indexOfKey(chain) >= 0 &&
3878 mFirewallChainStates.get(chain) == enable) {
3879 // All is the same, nothing to do.
3880 return;
3881 }
Xiaohui Chen8dca36d2015-06-19 12:44:59 -07003882 mFirewallChainStates.put(chain, enable);
Xiaohui Chenb41c9f72015-06-17 15:55:37 -07003883 try {
3884 mNetworkManager.setFirewallChainEnabled(chain, enable);
3885 } catch (IllegalStateException e) {
3886 Log.wtf(TAG, "problem enable firewall chain", e);
3887 } catch (RemoteException e) {
3888 // ignored; service lives in system_server
3889 }
3890 }
3891
Felipe Leme03e95e22016-09-09 09:25:31 -07003892 /**
3893 * Resets all firewall rules associated with an UID.
3894 */
3895 private void resetUidFirewallRules(int uid) {
3896 try {
3897 mNetworkManager.setFirewallUidRule(FIREWALL_CHAIN_DOZABLE, uid, FIREWALL_RULE_DEFAULT);
3898 mNetworkManager.setFirewallUidRule(FIREWALL_CHAIN_STANDBY, uid, FIREWALL_RULE_DEFAULT);
3899 mNetworkManager
3900 .setFirewallUidRule(FIREWALL_CHAIN_POWERSAVE, uid, FIREWALL_RULE_DEFAULT);
3901 mNetworkManager.setUidMeteredNetworkWhitelist(uid, false);
3902 mNetworkManager.setUidMeteredNetworkBlacklist(uid, false);
3903 } catch (IllegalStateException e) {
3904 Log.wtf(TAG, "problem resetting firewall uid rules for " + uid, e);
3905 } catch (RemoteException e) {
3906 // ignored; service lives in system_server
3907 }
3908 }
3909
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003910 private long getTotalBytes(NetworkTemplate template, long start, long end) {
3911 try {
Jeff Sharkeyb52e3e52012-04-06 11:12:08 -07003912 return mNetworkStats.getNetworkTotalBytes(template, start, end);
Jeff Sharkey63abc372012-01-11 18:38:16 -08003913 } catch (RuntimeException e) {
3914 Slog.w(TAG, "problem reading network stats: " + e);
3915 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003916 } catch (RemoteException e) {
Jeff Sharkeyb3d59572011-09-07 17:20:27 -07003917 // ignored; service lives in system_server
3918 return 0;
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003919 }
3920 }
3921
Jeff Sharkey8c1dc722012-05-04 14:49:37 -07003922 private boolean isBandwidthControlEnabled() {
3923 final long token = Binder.clearCallingIdentity();
3924 try {
3925 return mNetworkManager.isBandwidthControlEnabled();
3926 } catch (RemoteException e) {
3927 // ignored; service lives in system_server
3928 return false;
3929 } finally {
3930 Binder.restoreCallingIdentity(token);
3931 }
3932 }
3933
Jeff Sharkey684c54a2011-11-16 17:46:30 -08003934 /**
3935 * Try refreshing {@link #mTime} when stale.
3936 */
Dianne Hackborn497175b2014-07-01 12:56:08 -07003937 void maybeRefreshTrustedTime() {
Jeff Sharkey684c54a2011-11-16 17:46:30 -08003938 if (mTime.getCacheAge() > TIME_CACHE_MAX_AGE) {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003939 mTime.forceRefresh();
3940 }
Jeff Sharkey684c54a2011-11-16 17:46:30 -08003941 }
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003942
Jeff Sharkey684c54a2011-11-16 17:46:30 -08003943 private long currentTimeMillis() {
Jeff Sharkey8e28b7d2011-08-19 02:24:24 -07003944 return mTime.hasCache() ? mTime.currentTimeMillis() : System.currentTimeMillis();
3945 }
3946
Jeff Sharkey3a844fc2011-08-16 14:37:57 -07003947 private static Intent buildAllowBackgroundDataIntent() {
3948 return new Intent(ACTION_ALLOW_BACKGROUND);
3949 }
3950
Jeff Sharkey0e2e5f82012-02-02 16:02:51 -08003951 private static Intent buildSnoozeWarningIntent(NetworkTemplate template) {
3952 final Intent intent = new Intent(ACTION_SNOOZE_WARNING);
3953 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
3954 return intent;
3955 }
3956
Wei Liu546cb772016-07-21 16:19:01 -07003957 private static Intent buildNetworkOverLimitIntent(Resources res, NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003958 final Intent intent = new Intent();
Wei Liu546cb772016-07-21 16:19:01 -07003959 intent.setComponent(ComponentName.unflattenFromString(
3960 res.getString(R.string.config_networkOverLimitComponent)));
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003961 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3962 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
3963 return intent;
3964 }
3965
Wei Liu546cb772016-07-21 16:19:01 -07003966 private static Intent buildViewDataUsageIntent(Resources res, NetworkTemplate template) {
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003967 final Intent intent = new Intent();
Wei Liu546cb772016-07-21 16:19:01 -07003968 intent.setComponent(ComponentName.unflattenFromString(
3969 res.getString(R.string.config_dataUsageSummaryComponent)));
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -07003970 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
3971 intent.putExtra(EXTRA_NETWORK_TEMPLATE, template);
3972 return intent;
3973 }
3974
Jeff Sharkey8b2c3a142012-11-12 11:45:05 -08003975 @VisibleForTesting
Jeff Sharkey163e6442011-10-31 16:37:52 -07003976 public void addIdleHandler(IdleHandler handler) {
3977 mHandler.getLooper().getQueue().addIdleHandler(handler);
3978 }
3979
jackqdyulei29c82ab2017-03-10 14:09:16 -08003980 @VisibleForTesting
3981 public void updateRestrictBackgroundByLowPowerModeUL(final PowerSaveState result) {
3982 mRestrictBackgroundPowerState = result;
3983
3984 boolean restrictBackground = result.batterySaverEnabled;
3985 boolean shouldInvokeRestrictBackground;
3986 // store the temporary mRestrictBackgroundChangedInBsm and update it at last
3987 boolean localRestrictBgChangedInBsm = mRestrictBackgroundChangedInBsm;
3988
3989 if (result.globalBatterySaverEnabled) {
3990 // Try to turn on restrictBackground if (1) it is off and (2) batter saver need to
3991 // turn it on.
3992 shouldInvokeRestrictBackground = !mRestrictBackground && result.batterySaverEnabled;
3993 mRestrictBackgroundBeforeBsm = mRestrictBackground;
3994 localRestrictBgChangedInBsm = false;
3995 } else {
3996 // Try to restore the restrictBackground if it doesn't change in bsm
3997 shouldInvokeRestrictBackground = !mRestrictBackgroundChangedInBsm;
3998 restrictBackground = mRestrictBackgroundBeforeBsm;
3999 }
4000
4001 if (shouldInvokeRestrictBackground) {
4002 setRestrictBackground(restrictBackground);
4003 }
4004
4005 // Change it at last so setRestrictBackground() won't affect this variable
4006 mRestrictBackgroundChangedInBsm = localRestrictBgChangedInBsm;
4007 }
4008
Jeff Sharkey1b861272011-05-22 00:34:52 -07004009 private static void collectKeys(SparseIntArray source, SparseBooleanArray target) {
4010 final int size = source.size();
4011 for (int i = 0; i < size; i++) {
4012 target.put(source.keyAt(i), true);
4013 }
4014 }
4015
Stuart Scottf1fb3972015-04-02 18:00:02 -07004016 @Override
4017 public void factoryReset(String subscriber) {
4018 mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
4019
Stuart Scotte3e314d2015-04-20 14:07:45 -07004020 if (mUserManager.hasUserRestriction(UserManager.DISALLOW_NETWORK_RESET)) {
4021 return;
4022 }
4023
Stuart Scottf1fb3972015-04-02 18:00:02 -07004024 // Turn mobile data limit off
Stuart Scott9a9a1d92015-04-20 11:33:06 -07004025 NetworkPolicy[] policies = getNetworkPolicies(mContext.getOpPackageName());
Stuart Scottf1fb3972015-04-02 18:00:02 -07004026 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriber);
4027 for (NetworkPolicy policy : policies) {
4028 if (policy.template.equals(template)) {
4029 policy.limitBytes = NetworkPolicy.LIMIT_DISABLED;
4030 policy.inferred = false;
4031 policy.clearSnooze();
4032 }
4033 }
4034 setNetworkPolicies(policies);
4035
4036 // Turn restrict background data off
4037 setRestrictBackground(false);
4038
Stuart Scotte3e314d2015-04-20 14:07:45 -07004039 if (!mUserManager.hasUserRestriction(UserManager.DISALLOW_APPS_CONTROL)) {
4040 // Remove app's "restrict background data" flag
4041 for (int uid : getUidsWithPolicy(POLICY_REJECT_METERED_BACKGROUND)) {
4042 setUidPolicy(uid, POLICY_NONE);
4043 }
Stuart Scottf1fb3972015-04-02 18:00:02 -07004044 }
4045 }
Felipe Lemeb85a6372016-01-14 16:16:16 -08004046
Felipe Lemed17fda42016-04-29 11:12:45 -07004047 private class NetworkPolicyManagerInternalImpl extends NetworkPolicyManagerInternal {
4048
4049 @Override
4050 public void resetUserState(int userId) {
Felipe Lemef0823852016-06-08 13:43:08 -07004051 synchronized (mUidRulesFirstLock) {
4052 boolean changed = removeUserStateUL(userId, false);
4053 changed = addDefaultRestrictBackgroundWhitelistUidsUL(userId) || changed;
Felipe Lemed17fda42016-04-29 11:12:45 -07004054 if (changed) {
Felipe Lemef0823852016-06-08 13:43:08 -07004055 synchronized (mNetworkPoliciesSecondLock) {
4056 writePolicyAL();
4057 }
Felipe Lemed17fda42016-04-29 11:12:45 -07004058 }
4059 }
4060 }
Hugo Benichi938ab4f2017-02-11 17:04:43 +09004061
4062 /**
4063 * @return true if the given uid is restricted from doing networking on metered networks.
4064 */
4065 @Override
4066 public boolean isUidRestrictedOnMeteredNetworks(int uid) {
4067 final int uidRules;
4068 final boolean isBackgroundRestricted;
4069 synchronized (mUidRulesFirstLock) {
4070 uidRules = mUidRules.get(uid, RULE_ALLOW_ALL);
4071 isBackgroundRestricted = mRestrictBackground;
4072 }
4073 return isBackgroundRestricted
4074 && !hasRule(uidRules, RULE_ALLOW_METERED)
4075 && !hasRule(uidRules, RULE_TEMPORARY_ALLOW_METERED);
4076 }
4077
4078 /**
4079 * @return true if networking is blocked on the given interface for the given uid according
4080 * to current networking policies.
4081 */
4082 @Override
4083 public boolean isUidNetworkingBlocked(int uid, String ifname) {
4084 final int uidRules;
4085 final boolean isBackgroundRestricted;
4086 final boolean isNetworkMetered;
4087 synchronized (mUidRulesFirstLock) {
4088 uidRules = mUidRules.get(uid, RULE_NONE);
4089 isBackgroundRestricted = mRestrictBackground;
4090 synchronized (mNetworkPoliciesSecondLock) {
4091 isNetworkMetered = mMeteredIfaces.contains(ifname);
4092 }
4093 }
4094 if (hasRule(uidRules, RULE_REJECT_ALL)) {
4095 if (LOGV) logUidStatus(uid, "blocked by power restrictions");
4096 return true;
4097 }
4098 if (!isNetworkMetered) {
4099 if (LOGV) logUidStatus(uid, "allowed on unmetered network");
4100 return false;
4101 }
4102 if (hasRule(uidRules, RULE_REJECT_METERED)) {
4103 if (LOGV) logUidStatus(uid, "blacklisted on metered network");
4104 return true;
4105 }
4106 if (hasRule(uidRules, RULE_ALLOW_METERED)) {
4107 if (LOGV) logUidStatus(uid, "whitelisted on metered network");
4108 return false;
4109 }
4110 if (hasRule(uidRules, RULE_TEMPORARY_ALLOW_METERED)) {
4111 if (LOGV) logUidStatus(uid, "temporary whitelisted on metered network");
4112 return false;
4113 }
4114 if (isBackgroundRestricted) {
4115 if (LOGV) logUidStatus(uid, "blocked when background is restricted");
4116 return true;
4117 }
4118 if (LOGV) logUidStatus(uid, "allowed by default");
4119 return false;
4120 }
4121 }
4122
4123 private static boolean hasRule(int uidRules, int rule) {
4124 return (uidRules & rule) != 0;
4125 }
4126
4127 private static void logUidStatus(int uid, String descr) {
4128 Slog.d(TAG, String.format("uid %d is %s", uid, descr));
Felipe Lemed17fda42016-04-29 11:12:45 -07004129 }
Sudheer Shankae7361852017-03-07 11:51:46 -08004130
4131 /**
4132 * This class is used for storing and dumping the last {@link #MAX_PROC_STATE_SEQ_HISTORY}
4133 * (uid, procStateSeq) pairs.
4134 */
4135 @VisibleForTesting
4136 public static final class ProcStateSeqHistory {
4137 private static final int INVALID_UID = -1;
4138
4139 /**
4140 * Denotes maximum number of items this history can hold.
4141 */
4142 private final int mMaxCapacity;
4143 /**
4144 * Used for storing the uid information.
4145 */
4146 private final int[] mUids;
4147 /**
4148 * Used for storing the sequence numbers associated with {@link #mUids}.
4149 */
4150 private final long[] mProcStateSeqs;
4151 /**
4152 * Points to the next available slot for writing (uid, procStateSeq) pair.
4153 */
4154 private int mHistoryNext;
4155
4156 public ProcStateSeqHistory(int maxCapacity) {
4157 mMaxCapacity = maxCapacity;
4158 mUids = new int[mMaxCapacity];
4159 Arrays.fill(mUids, INVALID_UID);
4160 mProcStateSeqs = new long[mMaxCapacity];
4161 }
4162
4163 @GuardedBy("mUidRulesFirstLock")
4164 public void addProcStateSeqUL(int uid, long procStateSeq) {
4165 mUids[mHistoryNext] = uid;
4166 mProcStateSeqs[mHistoryNext] = procStateSeq;
4167 mHistoryNext = increaseNext(mHistoryNext, 1);
4168 }
4169
4170 @GuardedBy("mUidRulesFirstLock")
4171 public void dumpUL(IndentingPrintWriter fout) {
4172 if (mUids[0] == INVALID_UID) {
4173 fout.println("NONE");
4174 return;
4175 }
4176 int index = mHistoryNext;
4177 do {
4178 index = increaseNext(index, -1);
4179 if (mUids[index] == INVALID_UID) {
4180 break;
4181 }
4182 fout.println(getString(mUids[index], mProcStateSeqs[index]));
4183 } while (index != mHistoryNext);
4184 }
4185
4186 public static String getString(int uid, long procStateSeq) {
4187 return "UID=" + uid + " procStateSeq=" + procStateSeq;
4188 }
4189
4190 private int increaseNext(int next, int increment) {
4191 next += increment;
4192 if (next >= mMaxCapacity) {
4193 next = 0;
4194 } else if (next < 0) {
4195 next = mMaxCapacity - 1;
4196 }
4197 return next;
4198 }
4199 }
Chris Wren193ae6b2017-03-31 15:17:11 -04004200
4201 private class NotificationId {
4202 private final String mTag;
4203 private final int mId;
4204
4205 NotificationId(NetworkPolicy policy, int type) {
4206 mTag = buildNotificationTag(policy, type);
4207 mId = type;
4208 }
4209
4210 @Override
4211 public boolean equals(Object o) {
4212 if (this == o) return true;
4213 if (!(o instanceof NotificationId)) return false;
4214 NotificationId that = (NotificationId) o;
4215 return Objects.equals(mTag, that.mTag);
4216 }
4217
4218 @Override
4219 public int hashCode() {
4220 return Objects.hash(mTag);
4221 }
4222
4223 /**
4224 * Build unique tag that identifies an active {@link NetworkPolicy}
4225 * notification of a specific type, like {@link #TYPE_LIMIT}.
4226 */
4227 private String buildNotificationTag(NetworkPolicy policy, int type) {
4228 return TAG + ":" + policy.template.hashCode() + ":" + type;
4229 }
4230
4231 public String getTag() {
4232 return mTag;
4233 }
4234
4235 public int getId() {
4236 return mId;
4237 }
4238 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -07004239}