blob: 94de93329294842b8b0847a0c347d9631f520ded [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;
Amith Yamasani15e472352015-04-24 19:06:07 -070060
61 public static final int FIREWALL_RULE_DEFAULT = 0;
62 public static final int FIREWALL_RULE_ALLOW = 1;
63 public static final int FIREWALL_RULE_DENY = 2;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070064
Xiaohui Chenb41c9f72015-06-17 15:55:37 -070065 public static final int FIREWALL_TYPE_WHITELIST = 0;
66 public static final int FIREWALL_TYPE_BLACKLIST = 1;
67
68 public static final int FIREWALL_CHAIN_NONE = 0;
69 public static final int FIREWALL_CHAIN_DOZABLE = 1;
70 public static final int FIREWALL_CHAIN_STANDBY = 2;
71
72 public static final String FIREWALL_CHAIN_NAME_NONE = "none";
73 public static final String FIREWALL_CHAIN_NAME_DOZABLE = "dozable";
74 public static final String FIREWALL_CHAIN_NAME_STANDBY = "standby";
75
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -070076 private static final boolean ALLOW_PLATFORM_APP_POLICY = true;
77
Jeff Sharkey14711eb2011-06-15 10:29:17 -070078 /**
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070079 * {@link Intent} extra that indicates which {@link NetworkTemplate} rule it
80 * applies to.
Jeff Sharkey14711eb2011-06-15 10:29:17 -070081 */
Jeff Sharkey41ff7ec2011-07-25 15:21:22 -070082 public static final String EXTRA_NETWORK_TEMPLATE = "android.net.NETWORK_TEMPLATE";
Jeff Sharkey14711eb2011-06-15 10:29:17 -070083
Svet Ganov16a16892015-04-16 10:32:04 -070084 private final Context mContext;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070085 private INetworkPolicyManager mService;
86
Svet Ganov16a16892015-04-16 10:32:04 -070087 public NetworkPolicyManager(Context context, INetworkPolicyManager service) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070088 if (service == null) {
89 throw new IllegalArgumentException("missing INetworkPolicyManager");
90 }
Svet Ganov16a16892015-04-16 10:32:04 -070091 mContext = context;
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070092 mService = service;
93 }
94
Jeff Sharkey8fc27e82012-04-04 20:40:58 -070095 public static NetworkPolicyManager from(Context context) {
Jeff Sharkeyeedcb952011-05-17 14:55:15 -070096 return (NetworkPolicyManager) context.getSystemService(Context.NETWORK_POLICY_SERVICE);
97 }
98
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -070099 /**
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700100 * Set policy flags for specific UID.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700101 *
Jeff Sharkeyc006f1a2011-05-19 17:12:49 -0700102 * @param policy {@link #POLICY_NONE} or combination of flags like
Amith Yamasani15e472352015-04-24 19:06:07 -0700103 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700104 */
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700105 public void setUidPolicy(int uid, int policy) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700106 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700107 mService.setUidPolicy(uid, policy);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700108 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700109 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700110 }
111 }
112
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700113 /**
114 * Add policy flags for specific UID. The given policy bits will be set for
115 * the uid. Policy flags may be either
116 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
117 */
118 public void addUidPolicy(int uid, int policy) {
119 try {
120 mService.addUidPolicy(uid, policy);
121 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700122 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700123 }
124 }
125
126 /**
127 * Clear/remove policy flags for specific UID. The given policy bits will be set for
128 * the uid. Policy flags may be either
129 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
130 */
131 public void removeUidPolicy(int uid, int policy) {
132 try {
133 mService.removeUidPolicy(uid, policy);
134 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700135 throw e.rethrowFromSystemServer();
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700136 }
137 }
138
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700139 public int getUidPolicy(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700140 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700141 return mService.getUidPolicy(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700142 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700143 throw e.rethrowFromSystemServer();
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700144 }
145 }
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700146
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700147 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700148 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700149 return mService.getUidsWithPolicy(policy);
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700150 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700151 throw e.rethrowFromSystemServer();
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700152 }
153 }
154
Jeff Sharkey1a303952011-06-16 13:04:20 -0700155 public void registerListener(INetworkPolicyListener listener) {
156 try {
157 mService.registerListener(listener);
158 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700159 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700160 }
161 }
162
163 public void unregisterListener(INetworkPolicyListener listener) {
164 try {
165 mService.unregisterListener(listener);
166 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700167 throw e.rethrowFromSystemServer();
Jeff Sharkey1a303952011-06-16 13:04:20 -0700168 }
169 }
170
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700171 public void setNetworkPolicies(NetworkPolicy[] policies) {
172 try {
173 mService.setNetworkPolicies(policies);
174 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700175 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700176 }
177 }
178
179 public NetworkPolicy[] getNetworkPolicies() {
180 try {
Svet Ganov16a16892015-04-16 10:32:04 -0700181 return mService.getNetworkPolicies(mContext.getOpPackageName());
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700182 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700183 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700184 }
185 }
186
187 public void setRestrictBackground(boolean restrictBackground) {
188 try {
189 mService.setRestrictBackground(restrictBackground);
190 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700191 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700192 }
193 }
194
195 public boolean getRestrictBackground() {
196 try {
197 return mService.getRestrictBackground();
198 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700199 throw e.rethrowFromSystemServer();
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700200 }
201 }
202
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700203 /**
Stuart Scott984dc852015-03-30 13:17:11 -0700204 * Resets network policy settings back to factory defaults.
205 *
206 * @hide
207 */
208 public void factoryReset(String subscriber) {
Stuart Scottf1fb3972015-04-02 18:00:02 -0700209 try {
210 mService.factoryReset(subscriber);
211 } catch (RemoteException e) {
Jeff Sharkeyf8880562016-02-26 13:03:01 -0700212 throw e.rethrowFromSystemServer();
Stuart Scott984dc852015-03-30 13:17:11 -0700213 }
214 }
215
216 /**
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700217 * Compute the last cycle boundary for the given {@link NetworkPolicy}. For
218 * example, if cycle day is 20th, and today is June 15th, it will return May
219 * 20th. When cycle day doesn't exist in current month, it snaps to the 1st
220 * of following month.
221 *
222 * @hide
223 */
224 public static long computeLastCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700225 if (policy.cycleDay == CYCLE_NONE) {
226 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
227 }
228
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800229 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700230 now.set(currentTime);
231
232 // first, find cycle boundary for current month
233 final Time cycle = new Time(now);
234 cycle.hour = cycle.minute = cycle.second = 0;
235 snapToCycleDay(cycle, policy.cycleDay);
236
237 if (Time.compare(cycle, now) >= 0) {
238 // cycle boundary is beyond now, use last cycle boundary; start by
239 // pushing ourselves squarely into last month.
240 final Time lastMonth = new Time(now);
241 lastMonth.hour = lastMonth.minute = lastMonth.second = 0;
242 lastMonth.monthDay = 1;
243 lastMonth.month -= 1;
244 lastMonth.normalize(true);
245
246 cycle.set(lastMonth);
247 snapToCycleDay(cycle, policy.cycleDay);
248 }
249
250 return cycle.toMillis(true);
251 }
252
253 /** {@hide} */
254 public static long computeNextCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700255 if (policy.cycleDay == CYCLE_NONE) {
256 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
257 }
258
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800259 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700260 now.set(currentTime);
261
262 // first, find cycle boundary for current month
263 final Time cycle = new Time(now);
264 cycle.hour = cycle.minute = cycle.second = 0;
265 snapToCycleDay(cycle, policy.cycleDay);
266
267 if (Time.compare(cycle, now) <= 0) {
268 // cycle boundary is before now, use next cycle boundary; start by
269 // pushing ourselves squarely into next month.
270 final Time nextMonth = new Time(now);
271 nextMonth.hour = nextMonth.minute = nextMonth.second = 0;
272 nextMonth.monthDay = 1;
273 nextMonth.month += 1;
274 nextMonth.normalize(true);
275
276 cycle.set(nextMonth);
277 snapToCycleDay(cycle, policy.cycleDay);
278 }
279
280 return cycle.toMillis(true);
281 }
282
283 /**
284 * Snap to the cycle day for the current month given; when cycle day doesn't
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800285 * exist, it snaps to last second of current month.
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700286 *
287 * @hide
288 */
289 public static void snapToCycleDay(Time time, int cycleDay) {
290 if (cycleDay > time.getActualMaximum(MONTH_DAY)) {
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700291 // cycle day isn't valid this month; snap to last second of month
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700292 time.month += 1;
293 time.monthDay = 1;
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700294 time.second = -1;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700295 } else {
296 time.monthDay = cycleDay;
297 }
298 time.normalize(true);
299 }
300
Jeff Sharkey497e4432011-06-14 17:27:29 -0700301 /**
302 * Check if given UID can have a {@link #setUidPolicy(int, int)} defined,
303 * usually to protect critical system services.
304 */
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700305 @Deprecated
Jeff Sharkey497e4432011-06-14 17:27:29 -0700306 public static boolean isUidValidForPolicy(Context context, int uid) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700307 // first, quick-reject non-applications
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700308 if (!UserHandle.isApp(uid)) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700309 return false;
310 }
311
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700312 if (!ALLOW_PLATFORM_APP_POLICY) {
313 final PackageManager pm = context.getPackageManager();
314 final HashSet<Signature> systemSignature;
315 try {
316 systemSignature = Sets.newHashSet(
317 pm.getPackageInfo("android", GET_SIGNATURES).signatures);
318 } catch (NameNotFoundException e) {
319 throw new RuntimeException("problem finding system signature", e);
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700320 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700321
322 try {
323 // reject apps signed with platform cert
324 for (String packageName : pm.getPackagesForUid(uid)) {
325 final HashSet<Signature> packageSignature = Sets.newHashSet(
326 pm.getPackageInfo(packageName, GET_SIGNATURES).signatures);
327 if (packageSignature.containsAll(systemSignature)) {
328 return false;
329 }
330 }
331 } catch (NameNotFoundException e) {
332 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700333 }
334
335 // nothing found above; we can apply policy to UID
336 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700337 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700338}