blob: 11b861aef5aa3898843f2d193ebb20965389aee3 [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 android.net;
18
Jeff Sharkey4414cea2011-06-24 17:05:24 -070019import static android.content.pm.PackageManager.GET_SIGNATURES;
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070020import static android.net.NetworkPolicy.CYCLE_NONE;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -070021
Jeff Sharkeyeedcb952011-05-17 14:55:15 -070022import android.content.Context;
Jeff Sharkey14711eb2011-06-15 10:29:17 -070023import android.content.Intent;
Jeff Sharkey4414cea2011-06-24 17:05:24 -070024import android.content.pm.PackageManager;
25import android.content.pm.PackageManager.NameNotFoundException;
26import android.content.pm.Signature;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070027import android.os.RemoteException;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -070028import android.os.UserHandle;
Felipe Leme46c4fc32016-05-04 09:21:43 -070029import android.util.DebugUtils;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070030
Jeff Sharkey4414cea2011-06-24 17:05:24 -070031import com.google.android.collect.Sets;
32
Jeff Sharkeyf2bead52016-07-06 17:11:48 -060033import java.util.Calendar;
Jeff Sharkey4414cea2011-06-24 17:05:24 -070034import java.util.HashSet;
Jeff Sharkeyf2bead52016-07-06 17:11:48 -060035import java.util.TimeZone;
Jeff Sharkey1b861272011-05-22 00:34:52 -070036
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070037/**
38 * Manager for creating and modifying network policy rules.
39 *
40 * {@hide}
41 */
42public class NetworkPolicyManager {
43
Amith Yamasani15e472352015-04-24 19:06:07 -070044 /* POLICY_* are masks and can be ORed */
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070045 /** No specific network policy, use system default. */
46 public static final int POLICY_NONE = 0x0;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070047 /** Reject network usage on metered networks when application in background. */
48 public static final int POLICY_REJECT_METERED_BACKGROUND = 0x1;
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -070049 /** Allow network use (metered or not) in the background in battery save mode. */
50 public static final int POLICY_ALLOW_BACKGROUND_BATTERY_SAVE = 0x2;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070051
Felipe Leme46c4fc32016-05-04 09:21:43 -070052 /*
53 * Rules defining whether an uid has access to a network given its type (metered / non-metered).
54 *
55 * These rules are bits and can be used in bitmask operations; in particular:
56 * - rule & RULE_MASK_METERED: returns the metered-networks status.
57 * - rule & RULE_MASK_ALL: returns the all-networks status.
58 *
59 * The RULE_xxx_ALL rules applies to all networks (metered or non-metered), but on
60 * metered networks, the RULE_xxx_METERED rules should be checked first. For example,
61 * if the device is on Battery Saver Mode and Data Saver Mode simulatenously, and a uid
62 * is whitelisted for the former but not the latter, its status would be
63 * RULE_REJECT_METERED | RULE_ALLOW_ALL, meaning it could have access to non-metered
64 * networks but not to metered networks.
65 *
66 * See network-policy-restrictions.md for more info.
67 */
68 /** No specific rule was set */
69 public static final int RULE_NONE = 0;
Felipe Leme70c57c22016-03-29 10:45:13 -070070 /** Allow traffic on metered networks. */
Felipe Leme46c4fc32016-05-04 09:21:43 -070071 public static final int RULE_ALLOW_METERED = 1 << 0;
Felipe Leme70c57c22016-03-29 10:45:13 -070072 /** Temporarily allow traffic on metered networks because app is on foreground. */
Felipe Leme46c4fc32016-05-04 09:21:43 -070073 public static final int RULE_TEMPORARY_ALLOW_METERED = 1 << 1;
74 /** Reject traffic on metered networks. */
75 public static final int RULE_REJECT_METERED = 1 << 2;
76 /** Network traffic should be allowed on all networks (metered or non-metered), although
77 * metered-network restrictions could still apply. */
78 public static final int RULE_ALLOW_ALL = 1 << 5;
79 /** Reject traffic on all networks. */
80 public static final int RULE_REJECT_ALL = 1 << 6;
81 /** Mask used to get the {@code RULE_xxx_METERED} rules */
82 public static final int MASK_METERED_NETWORKS = 0b00001111;
83 /** Mask used to get the {@code RULE_xxx_ALL} rules */
84 public static final int MASK_ALL_NETWORKS = 0b11110000;
Amith Yamasani15e472352015-04-24 19:06:07 -070085
86 public static final int FIREWALL_RULE_DEFAULT = 0;
87 public static final int FIREWALL_RULE_ALLOW = 1;
88 public static final int FIREWALL_RULE_DENY = 2;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070089
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070090 public static final int FIREWALL_TYPE_WHITELIST = 0;
91 public static final int FIREWALL_TYPE_BLACKLIST = 1;
92
93 public static final int FIREWALL_CHAIN_NONE = 0;
94 public static final int FIREWALL_CHAIN_DOZABLE = 1;
95 public static final int FIREWALL_CHAIN_STANDBY = 2;
Felipe Leme011b98f2016-02-10 17:28:31 -080096 public static final int FIREWALL_CHAIN_POWERSAVE = 3;
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070097
98 public static final String FIREWALL_CHAIN_NAME_NONE = "none";
99 public static final String FIREWALL_CHAIN_NAME_DOZABLE = "dozable";
100 public static final String FIREWALL_CHAIN_NAME_STANDBY = "standby";
Felipe Leme011b98f2016-02-10 17:28:31 -0800101 public static final String FIREWALL_CHAIN_NAME_POWERSAVE = "powersave";
Xiaohui Chenb41c9f72015-06-17 15:55:37 -0700102
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700103 private static final boolean ALLOW_PLATFORM_APP_POLICY = true;
104
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700105 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700106 * {@link Intent} extra that indicates which {@link NetworkTemplate} rule it
107 * applies to.
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700108 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -0700109 public static final String EXTRA_NETWORK_TEMPLATE = "android.net.NETWORK_TEMPLATE";
Jeff Sharkey14711eb2011-06-15 10:29:17 -0700110
Svet Ganov16a16892015-04-16 10:32:04 -0700111 private final Context mContext;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700112 private INetworkPolicyManager mService;
113
Svet Ganov16a16892015-04-16 10:32:04 -0700114 public NetworkPolicyManager(Context context, INetworkPolicyManager service) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700115 if (service == null) {
116 throw new IllegalArgumentException("missing INetworkPolicyManager");
117 }
Svet Ganov16a16892015-04-16 10:32:04 -0700118 mContext = context;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700119 mService = service;
120 }
121
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700122 public static NetworkPolicyManager from(Context context) {
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700123 return (NetworkPolicyManager) context.getSystemService(Context.NETWORK_POLICY_SERVICE);
124 }
125
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700126 /**
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700127 * Set policy flags for specific UID.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700128 *
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700129 * @param policy {@link #POLICY_NONE} or combination of flags like
Amith Yamasani15e472352015-04-24 19:06:07 -0700130 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700131 */
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700132 public void setUidPolicy(int uid, int policy) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700133 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700134 mService.setUidPolicy(uid, policy);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700135 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700136 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700137 }
138 }
139
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700140 /**
141 * Add policy flags for specific UID. The given policy bits will be set for
142 * the uid. Policy flags may be either
143 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
144 */
145 public void addUidPolicy(int uid, int policy) {
146 try {
147 mService.addUidPolicy(uid, policy);
148 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700149 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700150 }
151 }
152
153 /**
154 * Clear/remove policy flags for specific UID. The given policy bits will be set for
155 * the uid. Policy flags may be either
156 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
157 */
158 public void removeUidPolicy(int uid, int policy) {
159 try {
160 mService.removeUidPolicy(uid, policy);
161 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700162 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700163 }
164 }
165
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700166 public int getUidPolicy(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700167 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700168 return mService.getUidPolicy(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700169 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700170 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700171 }
172 }
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700173
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700174 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700175 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700176 return mService.getUidsWithPolicy(policy);
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700177 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700178 throw e.rethrowFromSystemServer();
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700179 }
180 }
181
Jeff Sharkey1a303952011-06-16 13:04:20 -0700182 public void registerListener(INetworkPolicyListener listener) {
183 try {
184 mService.registerListener(listener);
185 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700186 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700187 }
188 }
189
190 public void unregisterListener(INetworkPolicyListener listener) {
191 try {
192 mService.unregisterListener(listener);
193 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700194 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700195 }
196 }
197
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700198 public void setNetworkPolicies(NetworkPolicy[] policies) {
199 try {
200 mService.setNetworkPolicies(policies);
201 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700202 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700203 }
204 }
205
206 public NetworkPolicy[] getNetworkPolicies() {
207 try {
Svet Ganov16a16892015-04-16 10:32:04 -0700208 return mService.getNetworkPolicies(mContext.getOpPackageName());
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700209 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700210 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700211 }
212 }
213
214 public void setRestrictBackground(boolean restrictBackground) {
215 try {
216 mService.setRestrictBackground(restrictBackground);
217 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700218 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700219 }
220 }
221
222 public boolean getRestrictBackground() {
223 try {
224 return mService.getRestrictBackground();
225 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700226 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700227 }
228 }
229
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700230 /**
Stuart Scott984dc852015-03-30 13:17:11 -0700231 * Resets network policy settings back to factory defaults.
232 *
233 * @hide
234 */
235 public void factoryReset(String subscriber) {
Stuart Scottf1fb3972015-04-02 18:00:02 -0700236 try {
237 mService.factoryReset(subscriber);
238 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700239 throw e.rethrowFromSystemServer();
Stuart Scott984dc852015-03-30 13:17:11 -0700240 }
241 }
242
243 /**
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700244 * Compute the last cycle boundary for the given {@link NetworkPolicy}. For
245 * example, if cycle day is 20th, and today is June 15th, it will return May
246 * 20th. When cycle day doesn't exist in current month, it snaps to the 1st
247 * of following month.
248 *
249 * @hide
250 */
251 public static long computeLastCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700252 if (policy.cycleDay == CYCLE_NONE) {
253 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
254 }
255
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600256 final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone(policy.cycleTimezone));
257 cal.setTimeInMillis(currentTime);
258 snapToCycleDay(cal, policy.cycleDay);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700259
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600260 if (cal.getTimeInMillis() >= currentTime) {
261 // Cycle boundary is beyond now, use last cycle boundary
262 cal.set(Calendar.DAY_OF_MONTH, 1);
263 cal.add(Calendar.MONTH, -1);
264 snapToCycleDay(cal, policy.cycleDay);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700265 }
266
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600267 return cal.getTimeInMillis();
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700268 }
269
270 /** {@hide} */
271 public static long computeNextCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700272 if (policy.cycleDay == CYCLE_NONE) {
273 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
274 }
275
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600276 final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone(policy.cycleTimezone));
277 cal.setTimeInMillis(currentTime);
278 snapToCycleDay(cal, policy.cycleDay);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700279
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600280 if (cal.getTimeInMillis() <= currentTime) {
281 // Cycle boundary is before now, use next cycle boundary
282 cal.set(Calendar.DAY_OF_MONTH, 1);
283 cal.add(Calendar.MONTH, 1);
284 snapToCycleDay(cal, policy.cycleDay);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700285 }
286
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600287 return cal.getTimeInMillis();
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700288 }
289
290 /**
291 * Snap to the cycle day for the current month given; when cycle day doesn't
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800292 * exist, it snaps to last second of current month.
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700293 *
294 * @hide
295 */
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600296 public static void snapToCycleDay(Calendar cal, int cycleDay) {
297 cal.set(Calendar.HOUR_OF_DAY, 0);
298 cal.set(Calendar.MINUTE, 0);
299 cal.set(Calendar.SECOND, 0);
300 if (cycleDay > cal.getActualMaximum(Calendar.DAY_OF_MONTH)) {
301 cal.set(Calendar.DAY_OF_MONTH, 1);
302 cal.add(Calendar.MONTH, 1);
303 cal.add(Calendar.SECOND, -1);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700304 } else {
Jeff Sharkeyf2bead52016-07-06 17:11:48 -0600305 cal.set(Calendar.DAY_OF_MONTH, cycleDay);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700306 }
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700307 }
308
Jeff Sharkey497e4432011-06-14 17:27:29 -0700309 /**
310 * Check if given UID can have a {@link #setUidPolicy(int, int)} defined,
311 * usually to protect critical system services.
312 */
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700313 @Deprecated
Jeff Sharkey497e4432011-06-14 17:27:29 -0700314 public static boolean isUidValidForPolicy(Context context, int uid) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700315 // first, quick-reject non-applications
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700316 if (!UserHandle.isApp(uid)) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700317 return false;
318 }
319
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700320 if (!ALLOW_PLATFORM_APP_POLICY) {
321 final PackageManager pm = context.getPackageManager();
322 final HashSet<Signature> systemSignature;
323 try {
324 systemSignature = Sets.newHashSet(
325 pm.getPackageInfo("android", GET_SIGNATURES).signatures);
326 } catch (NameNotFoundException e) {
327 throw new RuntimeException("problem finding system signature", e);
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700328 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700329
330 try {
331 // reject apps signed with platform cert
332 for (String packageName : pm.getPackagesForUid(uid)) {
333 final HashSet<Signature> packageSignature = Sets.newHashSet(
334 pm.getPackageInfo(packageName, GET_SIGNATURES).signatures);
335 if (packageSignature.containsAll(systemSignature)) {
336 return false;
337 }
338 }
339 } catch (NameNotFoundException e) {
340 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700341 }
342
343 // nothing found above; we can apply policy to UID
344 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700345 }
Felipe Leme46c4fc32016-05-04 09:21:43 -0700346
347 /*
348 * @hide
349 */
350 public static String uidRulesToString(int uidRules) {
351 final StringBuilder string = new StringBuilder().append(uidRules).append(" (");
352 if (uidRules == RULE_NONE) {
353 string.append("NONE");
354 } else {
355 string.append(DebugUtils.flagsToString(NetworkPolicyManager.class, "RULE_", uidRules));
356 }
357 string.append(")");
358 return string.toString();
359 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700360}