blob: e464a4a3149707be0fe505586302ac5aa8439e67 [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 -070021import static android.text.format.Time.MONTH_DAY;
22
Jeff Sharkeyeedcb952011-05-17 14:55:15 -070023import android.content.Context;
Jeff Sharkey14711eb2011-06-15 10:29:17 -070024import android.content.Intent;
Jeff Sharkey4414cea2011-06-24 17:05:24 -070025import android.content.pm.PackageManager;
26import android.content.pm.PackageManager.NameNotFoundException;
27import android.content.pm.Signature;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070028import android.os.RemoteException;
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -070029import android.os.UserHandle;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -070030import android.text.format.Time;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070031
Jeff Sharkey4414cea2011-06-24 17:05:24 -070032import com.google.android.collect.Sets;
33
Jeff Sharkey1b861272011-05-22 00:34:52 -070034import java.io.PrintWriter;
Jeff Sharkey4414cea2011-06-24 17:05:24 -070035import java.util.HashSet;
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
Amith Yamasani15e472352015-04-24 19:06:07 -070052 /* RULE_* are not masks and they must be exclusive */
Jeff Sharkeydc988062015-09-14 10:09:47 -070053 public static final int RULE_UNKNOWN = -1;
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -070054 /** All network traffic should be allowed. */
Jeff Sharkeydc988062015-09-14 10:09:47 -070055 public static final int RULE_ALLOW_ALL = 0;
Jeff Sharkeyfdfef572011-06-16 15:07:48 -070056 /** Reject traffic on metered networks. */
Jeff Sharkeydc988062015-09-14 10:09:47 -070057 public static final int RULE_REJECT_METERED = 1;
Amith Yamasani15e472352015-04-24 19:06:07 -070058 /** Reject traffic on all networks. */
Jeff Sharkeydc988062015-09-14 10:09:47 -070059 public static final int RULE_REJECT_ALL = 2;
Felipe Leme70c57c22016-03-29 10:45:13 -070060 /** Allow traffic on metered networks. */
61 public static final int RULE_ALLOW_METERED = 3;
62 /** Temporarily allow traffic on metered networks because app is on foreground. */
63 public static final int RULE_TEMPORARY_ALLOW_METERED = 4;
Amith Yamasani15e472352015-04-24 19:06:07 -070064
65 public static final int FIREWALL_RULE_DEFAULT = 0;
66 public static final int FIREWALL_RULE_ALLOW = 1;
67 public static final int FIREWALL_RULE_DENY = 2;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070068
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070069 public static final int FIREWALL_TYPE_WHITELIST = 0;
70 public static final int FIREWALL_TYPE_BLACKLIST = 1;
71
72 public static final int FIREWALL_CHAIN_NONE = 0;
73 public static final int FIREWALL_CHAIN_DOZABLE = 1;
74 public static final int FIREWALL_CHAIN_STANDBY = 2;
Felipe Leme011b98f2016-02-10 17:28:31 -080075 public static final int FIREWALL_CHAIN_POWERSAVE = 3;
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070076
77 public static final String FIREWALL_CHAIN_NAME_NONE = "none";
78 public static final String FIREWALL_CHAIN_NAME_DOZABLE = "dozable";
79 public static final String FIREWALL_CHAIN_NAME_STANDBY = "standby";
Felipe Leme011b98f2016-02-10 17:28:31 -080080 public static final String FIREWALL_CHAIN_NAME_POWERSAVE = "powersave";
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070081
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -070082 private static final boolean ALLOW_PLATFORM_APP_POLICY = true;
83
Jeff Sharkey14711eb2011-06-15 10:29:17 -070084 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070085 * {@link Intent} extra that indicates which {@link NetworkTemplate} rule it
86 * applies to.
Jeff Sharkey14711eb2011-06-15 10:29:17 -070087 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070088 public static final String EXTRA_NETWORK_TEMPLATE = "android.net.NETWORK_TEMPLATE";
Jeff Sharkey14711eb2011-06-15 10:29:17 -070089
Svet Ganov16a16892015-04-16 10:32:04 -070090 private final Context mContext;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070091 private INetworkPolicyManager mService;
92
Svet Ganov16a16892015-04-16 10:32:04 -070093 public NetworkPolicyManager(Context context, INetworkPolicyManager service) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070094 if (service == null) {
95 throw new IllegalArgumentException("missing INetworkPolicyManager");
96 }
Svet Ganov16a16892015-04-16 10:32:04 -070097 mContext = context;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070098 mService = service;
99 }
100
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700101 public static NetworkPolicyManager from(Context context) {
Jeff Sharkeyeedcb952011-05-17 14:55:15 -0700102 return (NetworkPolicyManager) context.getSystemService(Context.NETWORK_POLICY_SERVICE);
103 }
104
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700105 /**
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700106 * Set policy flags for specific UID.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700107 *
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700108 * @param policy {@link #POLICY_NONE} or combination of flags like
Amith Yamasani15e472352015-04-24 19:06:07 -0700109 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700110 */
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700111 public void setUidPolicy(int uid, int policy) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700112 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700113 mService.setUidPolicy(uid, policy);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700114 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700115 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700116 }
117 }
118
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700119 /**
120 * Add policy flags for specific UID. The given policy bits will be set for
121 * the uid. Policy flags may be either
122 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
123 */
124 public void addUidPolicy(int uid, int policy) {
125 try {
126 mService.addUidPolicy(uid, policy);
127 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700128 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700129 }
130 }
131
132 /**
133 * Clear/remove policy flags for specific UID. The given policy bits will be set for
134 * the uid. Policy flags may be either
135 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
136 */
137 public void removeUidPolicy(int uid, int policy) {
138 try {
139 mService.removeUidPolicy(uid, policy);
140 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700141 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700142 }
143 }
144
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700145 public int getUidPolicy(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700146 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700147 return mService.getUidPolicy(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700148 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700149 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700150 }
151 }
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700152
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700153 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700154 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700155 return mService.getUidsWithPolicy(policy);
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700156 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700157 throw e.rethrowFromSystemServer();
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700158 }
159 }
160
Jeff Sharkey1a303952011-06-16 13:04:20 -0700161 public void registerListener(INetworkPolicyListener listener) {
162 try {
163 mService.registerListener(listener);
164 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700165 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700166 }
167 }
168
169 public void unregisterListener(INetworkPolicyListener listener) {
170 try {
171 mService.unregisterListener(listener);
172 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700173 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700174 }
175 }
176
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700177 public void setNetworkPolicies(NetworkPolicy[] policies) {
178 try {
179 mService.setNetworkPolicies(policies);
180 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700181 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700182 }
183 }
184
185 public NetworkPolicy[] getNetworkPolicies() {
186 try {
Svet Ganov16a16892015-04-16 10:32:04 -0700187 return mService.getNetworkPolicies(mContext.getOpPackageName());
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700188 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700189 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700190 }
191 }
192
193 public void setRestrictBackground(boolean restrictBackground) {
194 try {
195 mService.setRestrictBackground(restrictBackground);
196 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700197 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700198 }
199 }
200
201 public boolean getRestrictBackground() {
202 try {
203 return mService.getRestrictBackground();
204 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700205 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700206 }
207 }
208
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700209 /**
Stuart Scott984dc852015-03-30 13:17:11 -0700210 * Resets network policy settings back to factory defaults.
211 *
212 * @hide
213 */
214 public void factoryReset(String subscriber) {
Stuart Scottf1fb3972015-04-02 18:00:02 -0700215 try {
216 mService.factoryReset(subscriber);
217 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700218 throw e.rethrowFromSystemServer();
Stuart Scott984dc852015-03-30 13:17:11 -0700219 }
220 }
221
222 /**
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700223 * Compute the last cycle boundary for the given {@link NetworkPolicy}. For
224 * example, if cycle day is 20th, and today is June 15th, it will return May
225 * 20th. When cycle day doesn't exist in current month, it snaps to the 1st
226 * of following month.
227 *
228 * @hide
229 */
230 public static long computeLastCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700231 if (policy.cycleDay == CYCLE_NONE) {
232 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
233 }
234
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800235 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700236 now.set(currentTime);
237
238 // first, find cycle boundary for current month
239 final Time cycle = new Time(now);
240 cycle.hour = cycle.minute = cycle.second = 0;
241 snapToCycleDay(cycle, policy.cycleDay);
242
243 if (Time.compare(cycle, now) >= 0) {
244 // cycle boundary is beyond now, use last cycle boundary; start by
245 // pushing ourselves squarely into last month.
246 final Time lastMonth = new Time(now);
247 lastMonth.hour = lastMonth.minute = lastMonth.second = 0;
248 lastMonth.monthDay = 1;
249 lastMonth.month -= 1;
250 lastMonth.normalize(true);
251
252 cycle.set(lastMonth);
253 snapToCycleDay(cycle, policy.cycleDay);
254 }
255
256 return cycle.toMillis(true);
257 }
258
259 /** {@hide} */
260 public static long computeNextCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700261 if (policy.cycleDay == CYCLE_NONE) {
262 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
263 }
264
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800265 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700266 now.set(currentTime);
267
268 // first, find cycle boundary for current month
269 final Time cycle = new Time(now);
270 cycle.hour = cycle.minute = cycle.second = 0;
271 snapToCycleDay(cycle, policy.cycleDay);
272
273 if (Time.compare(cycle, now) <= 0) {
274 // cycle boundary is before now, use next cycle boundary; start by
275 // pushing ourselves squarely into next month.
276 final Time nextMonth = new Time(now);
277 nextMonth.hour = nextMonth.minute = nextMonth.second = 0;
278 nextMonth.monthDay = 1;
279 nextMonth.month += 1;
280 nextMonth.normalize(true);
281
282 cycle.set(nextMonth);
283 snapToCycleDay(cycle, policy.cycleDay);
284 }
285
286 return cycle.toMillis(true);
287 }
288
289 /**
290 * Snap to the cycle day for the current month given; when cycle day doesn't
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800291 * exist, it snaps to last second of current month.
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700292 *
293 * @hide
294 */
295 public static void snapToCycleDay(Time time, int cycleDay) {
296 if (cycleDay > time.getActualMaximum(MONTH_DAY)) {
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700297 // cycle day isn't valid this month; snap to last second of month
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700298 time.month += 1;
299 time.monthDay = 1;
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700300 time.second = -1;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700301 } else {
302 time.monthDay = cycleDay;
303 }
304 time.normalize(true);
305 }
306
Jeff Sharkey497e4432011-06-14 17:27:29 -0700307 /**
308 * Check if given UID can have a {@link #setUidPolicy(int, int)} defined,
309 * usually to protect critical system services.
310 */
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700311 @Deprecated
Jeff Sharkey497e4432011-06-14 17:27:29 -0700312 public static boolean isUidValidForPolicy(Context context, int uid) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700313 // first, quick-reject non-applications
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700314 if (!UserHandle.isApp(uid)) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700315 return false;
316 }
317
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700318 if (!ALLOW_PLATFORM_APP_POLICY) {
319 final PackageManager pm = context.getPackageManager();
320 final HashSet<Signature> systemSignature;
321 try {
322 systemSignature = Sets.newHashSet(
323 pm.getPackageInfo("android", GET_SIGNATURES).signatures);
324 } catch (NameNotFoundException e) {
325 throw new RuntimeException("problem finding system signature", e);
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700326 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700327
328 try {
329 // reject apps signed with platform cert
330 for (String packageName : pm.getPackagesForUid(uid)) {
331 final HashSet<Signature> packageSignature = Sets.newHashSet(
332 pm.getPackageInfo(packageName, GET_SIGNATURES).signatures);
333 if (packageSignature.containsAll(systemSignature)) {
334 return false;
335 }
336 }
337 } catch (NameNotFoundException e) {
338 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700339 }
340
341 // nothing found above; we can apply policy to UID
342 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700343 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700344}