blob: 0074119623298ebb1713692b1ec390362dc6f4ed [file] [log] [blame]
Ben Gruver4efe9402013-04-02 21:18:41 -07001/*
2 * Copyright (C) 2013 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.firewall;
18
Ben Gruverdd72c9e2013-08-06 12:34:17 -070019import android.app.AppGlobals;
Ben Gruverf5323fe2013-07-31 15:09:51 -070020import android.content.ComponentName;
Ben Gruver4efe9402013-04-02 21:18:41 -070021import android.content.Intent;
22import android.content.pm.ApplicationInfo;
Ben Gruverdd72c9e2013-08-06 12:34:17 -070023import android.content.pm.IPackageManager;
Ben Gruver4efe9402013-04-02 21:18:41 -070024import android.os.Process;
Ben Gruverdd72c9e2013-08-06 12:34:17 -070025import android.os.RemoteException;
26import android.util.Slog;
Ben Gruver4efe9402013-04-02 21:18:41 -070027import org.xmlpull.v1.XmlPullParser;
28import org.xmlpull.v1.XmlPullParserException;
29
30import java.io.IOException;
31
32class SenderFilter {
33 private static final String ATTR_TYPE = "type";
34
35 private static final String VAL_SIGNATURE = "signature";
36 private static final String VAL_SYSTEM = "system";
37 private static final String VAL_SYSTEM_OR_SIGNATURE = "system|signature";
38 private static final String VAL_USER_ID = "userId";
39
Ben Gruverdd72c9e2013-08-06 12:34:17 -070040 static boolean isPrivilegedApp(int callerUid, int callerPid) {
41 if (callerUid == Process.SYSTEM_UID || callerUid == 0 ||
42 callerPid == Process.myPid() || callerPid == 0) {
Ben Gruver4efe9402013-04-02 21:18:41 -070043 return true;
44 }
Ben Gruverdd72c9e2013-08-06 12:34:17 -070045
46 IPackageManager pm = AppGlobals.getPackageManager();
47 try {
Alex Klyubinb9f8a522015-02-03 11:12:59 -080048 return (pm.getPrivateFlagsForUid(callerUid) & ApplicationInfo.PRIVATE_FLAG_PRIVILEGED)
49 != 0;
Ben Gruverdd72c9e2013-08-06 12:34:17 -070050 } catch (RemoteException ex) {
51 Slog.e(IntentFirewall.TAG, "Remote exception while retrieving uid flags",
52 ex);
Ben Gruver4efe9402013-04-02 21:18:41 -070053 }
Ben Gruverdd72c9e2013-08-06 12:34:17 -070054
55 return false;
Ben Gruver4efe9402013-04-02 21:18:41 -070056 }
57
58 public static final FilterFactory FACTORY = new FilterFactory("sender") {
59 @Override
60 public Filter newFilter(XmlPullParser parser) throws IOException, XmlPullParserException {
61 String typeString = parser.getAttributeValue(null, ATTR_TYPE);
62 if (typeString == null) {
63 throw new XmlPullParserException("type attribute must be specified for <sender>",
64 parser, null);
65 }
66 if (typeString.equals(VAL_SYSTEM)) {
67 return SYSTEM;
68 } else if (typeString.equals(VAL_SIGNATURE)) {
69 return SIGNATURE;
70 } else if (typeString.equals(VAL_SYSTEM_OR_SIGNATURE)) {
71 return SYSTEM_OR_SIGNATURE;
72 } else if (typeString.equals(VAL_USER_ID)) {
73 return USER_ID;
74 }
75 throw new XmlPullParserException(
76 "Invalid type attribute for <sender>: " + typeString, parser, null);
77 }
78 };
79
80 private static final Filter SIGNATURE = new Filter() {
81 @Override
Ben Gruverf5323fe2013-07-31 15:09:51 -070082 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent,
Ben Gruver49660c72013-08-06 19:54:08 -070083 int callerUid, int callerPid, String resolvedType, int receivingUid) {
84 return ifw.signaturesMatch(callerUid, receivingUid);
Ben Gruver4efe9402013-04-02 21:18:41 -070085 }
86 };
87
88 private static final Filter SYSTEM = new Filter() {
89 @Override
Ben Gruverf5323fe2013-07-31 15:09:51 -070090 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent,
Ben Gruver49660c72013-08-06 19:54:08 -070091 int callerUid, int callerPid, String resolvedType, int receivingUid) {
Ben Gruverdd72c9e2013-08-06 12:34:17 -070092 return isPrivilegedApp(callerUid, callerPid);
Ben Gruver4efe9402013-04-02 21:18:41 -070093 }
94 };
95
96 private static final Filter SYSTEM_OR_SIGNATURE = new Filter() {
97 @Override
Ben Gruverf5323fe2013-07-31 15:09:51 -070098 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent,
Ben Gruver49660c72013-08-06 19:54:08 -070099 int callerUid, int callerPid, String resolvedType, int receivingUid) {
Ben Gruverdd72c9e2013-08-06 12:34:17 -0700100 return isPrivilegedApp(callerUid, callerPid) ||
Ben Gruver49660c72013-08-06 19:54:08 -0700101 ifw.signaturesMatch(callerUid, receivingUid);
Ben Gruver4efe9402013-04-02 21:18:41 -0700102 }
103 };
104
105 private static final Filter USER_ID = new Filter() {
106 @Override
Ben Gruverf5323fe2013-07-31 15:09:51 -0700107 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent,
Ben Gruver49660c72013-08-06 19:54:08 -0700108 int callerUid, int callerPid, String resolvedType, int receivingUid) {
Ben Gruver4efe9402013-04-02 21:18:41 -0700109 // This checks whether the caller is either the system process, or has the same user id
110 // I.e. the same app, or an app that uses the same shared user id.
111 // This is the same set of applications that would be able to access the component if
112 // it wasn't exported.
Ben Gruver49660c72013-08-06 19:54:08 -0700113 return ifw.checkComponentPermission(null, callerPid, callerUid, receivingUid, false);
Ben Gruver4efe9402013-04-02 21:18:41 -0700114 }
115 };
116}