blob: a83e7224031020df849622a158f95c13a78a8442 [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) {
109 }
110 }
111
Dianne Hackbornbe7c50e2014-06-30 14:43:28 -0700112 /**
113 * Add policy flags for specific UID. The given policy bits will be set for
114 * the uid. Policy flags may be either
115 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
116 */
117 public void addUidPolicy(int uid, int policy) {
118 try {
119 mService.addUidPolicy(uid, policy);
120 } catch (RemoteException e) {
121 }
122 }
123
124 /**
125 * Clear/remove policy flags for specific UID. The given policy bits will be set for
126 * the uid. Policy flags may be either
127 * {@link #POLICY_REJECT_METERED_BACKGROUND} or {@link #POLICY_ALLOW_BACKGROUND_BATTERY_SAVE}.
128 */
129 public void removeUidPolicy(int uid, int policy) {
130 try {
131 mService.removeUidPolicy(uid, policy);
132 } catch (RemoteException e) {
133 }
134 }
135
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700136 public int getUidPolicy(int uid) {
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700137 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700138 return mService.getUidPolicy(uid);
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700139 } catch (RemoteException e) {
140 return POLICY_NONE;
141 }
142 }
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700143
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700144 public int[] getUidsWithPolicy(int policy) {
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700145 try {
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700146 return mService.getUidsWithPolicy(policy);
Jeff Sharkey854b2b12012-04-13 16:03:40 -0700147 } catch (RemoteException e) {
148 return new int[0];
149 }
150 }
151
Jeff Sharkey1a303952011-06-16 13:04:20 -0700152 public void registerListener(INetworkPolicyListener listener) {
153 try {
154 mService.registerListener(listener);
155 } catch (RemoteException e) {
156 }
157 }
158
159 public void unregisterListener(INetworkPolicyListener listener) {
160 try {
161 mService.unregisterListener(listener);
162 } catch (RemoteException e) {
163 }
164 }
165
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700166 public void setNetworkPolicies(NetworkPolicy[] policies) {
167 try {
168 mService.setNetworkPolicies(policies);
169 } catch (RemoteException e) {
170 }
171 }
172
173 public NetworkPolicy[] getNetworkPolicies() {
174 try {
Svet Ganov16a16892015-04-16 10:32:04 -0700175 return mService.getNetworkPolicies(mContext.getOpPackageName());
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700176 } catch (RemoteException e) {
177 return null;
178 }
179 }
180
181 public void setRestrictBackground(boolean restrictBackground) {
182 try {
183 mService.setRestrictBackground(restrictBackground);
184 } catch (RemoteException e) {
185 }
186 }
187
188 public boolean getRestrictBackground() {
189 try {
190 return mService.getRestrictBackground();
191 } catch (RemoteException e) {
192 return false;
193 }
194 }
195
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700196 /**
Stuart Scott984dc852015-03-30 13:17:11 -0700197 * Resets network policy settings back to factory defaults.
198 *
199 * @hide
200 */
201 public void factoryReset(String subscriber) {
Stuart Scottf1fb3972015-04-02 18:00:02 -0700202 try {
203 mService.factoryReset(subscriber);
204 } catch (RemoteException e) {
Stuart Scott984dc852015-03-30 13:17:11 -0700205 }
206 }
207
208 /**
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700209 * Compute the last cycle boundary for the given {@link NetworkPolicy}. For
210 * example, if cycle day is 20th, and today is June 15th, it will return May
211 * 20th. When cycle day doesn't exist in current month, it snaps to the 1st
212 * of following month.
213 *
214 * @hide
215 */
216 public static long computeLastCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700217 if (policy.cycleDay == CYCLE_NONE) {
218 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
219 }
220
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800221 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700222 now.set(currentTime);
223
224 // first, find cycle boundary for current month
225 final Time cycle = new Time(now);
226 cycle.hour = cycle.minute = cycle.second = 0;
227 snapToCycleDay(cycle, policy.cycleDay);
228
229 if (Time.compare(cycle, now) >= 0) {
230 // cycle boundary is beyond now, use last cycle boundary; start by
231 // pushing ourselves squarely into last month.
232 final Time lastMonth = new Time(now);
233 lastMonth.hour = lastMonth.minute = lastMonth.second = 0;
234 lastMonth.monthDay = 1;
235 lastMonth.month -= 1;
236 lastMonth.normalize(true);
237
238 cycle.set(lastMonth);
239 snapToCycleDay(cycle, policy.cycleDay);
240 }
241
242 return cycle.toMillis(true);
243 }
244
245 /** {@hide} */
246 public static long computeNextCycleBoundary(long currentTime, NetworkPolicy policy) {
Jeff Sharkey8fc27e82012-04-04 20:40:58 -0700247 if (policy.cycleDay == CYCLE_NONE) {
248 throw new IllegalArgumentException("Unable to compute boundary without cycleDay");
249 }
250
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800251 final Time now = new Time(policy.cycleTimezone);
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700252 now.set(currentTime);
253
254 // first, find cycle boundary for current month
255 final Time cycle = new Time(now);
256 cycle.hour = cycle.minute = cycle.second = 0;
257 snapToCycleDay(cycle, policy.cycleDay);
258
259 if (Time.compare(cycle, now) <= 0) {
260 // cycle boundary is before now, use next cycle boundary; start by
261 // pushing ourselves squarely into next month.
262 final Time nextMonth = new Time(now);
263 nextMonth.hour = nextMonth.minute = nextMonth.second = 0;
264 nextMonth.monthDay = 1;
265 nextMonth.month += 1;
266 nextMonth.normalize(true);
267
268 cycle.set(nextMonth);
269 snapToCycleDay(cycle, policy.cycleDay);
270 }
271
272 return cycle.toMillis(true);
273 }
274
275 /**
276 * Snap to the cycle day for the current month given; when cycle day doesn't
Jeff Sharkey9bf31502012-03-09 17:07:21 -0800277 * exist, it snaps to last second of current month.
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700278 *
279 * @hide
280 */
281 public static void snapToCycleDay(Time time, int cycleDay) {
282 if (cycleDay > time.getActualMaximum(MONTH_DAY)) {
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700283 // cycle day isn't valid this month; snap to last second of month
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700284 time.month += 1;
285 time.monthDay = 1;
Jeff Sharkeyaf82ea22011-08-04 15:38:48 -0700286 time.second = -1;
Jeff Sharkeycd2ca402011-06-10 15:14:07 -0700287 } else {
288 time.monthDay = cycleDay;
289 }
290 time.normalize(true);
291 }
292
Jeff Sharkey497e4432011-06-14 17:27:29 -0700293 /**
294 * Check if given UID can have a {@link #setUidPolicy(int, int)} defined,
295 * usually to protect critical system services.
296 */
Jeff Sharkey8a8b5812012-03-21 18:13:36 -0700297 @Deprecated
Jeff Sharkey497e4432011-06-14 17:27:29 -0700298 public static boolean isUidValidForPolicy(Context context, int uid) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700299 // first, quick-reject non-applications
Jeff Sharkeyd0c6ccb2012-09-14 16:26:37 -0700300 if (!UserHandle.isApp(uid)) {
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700301 return false;
302 }
303
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700304 if (!ALLOW_PLATFORM_APP_POLICY) {
305 final PackageManager pm = context.getPackageManager();
306 final HashSet<Signature> systemSignature;
307 try {
308 systemSignature = Sets.newHashSet(
309 pm.getPackageInfo("android", GET_SIGNATURES).signatures);
310 } catch (NameNotFoundException e) {
311 throw new RuntimeException("problem finding system signature", e);
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700312 }
Jeff Sharkeyb3f19ca2011-06-29 23:54:13 -0700313
314 try {
315 // reject apps signed with platform cert
316 for (String packageName : pm.getPackagesForUid(uid)) {
317 final HashSet<Signature> packageSignature = Sets.newHashSet(
318 pm.getPackageInfo(packageName, GET_SIGNATURES).signatures);
319 if (packageSignature.containsAll(systemSignature)) {
320 return false;
321 }
322 }
323 } catch (NameNotFoundException e) {
324 }
Jeff Sharkey4414cea2011-06-24 17:05:24 -0700325 }
326
327 // nothing found above; we can apply policy to UID
328 return true;
Jeff Sharkey497e4432011-06-14 17:27:29 -0700329 }
Jeff Sharkeyd5cdd592011-05-03 20:27:17 -0700330}