blob: 41d568f686932779c29bdc8128bd4f52d648a825 [file] [log] [blame]
Yorke Lee33501632014-03-17 19:24:12 -07001/*
2 * Copyright (C) 2014 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.telecomm;
18
19import android.app.Activity;
20import android.app.ActivityManagerNative;
21import android.app.AlertDialog;
22import android.app.AppOpsManager;
23import android.app.Dialog;
24import android.content.BroadcastReceiver;
25import android.content.Context;
26import android.content.DialogInterface;
27import android.content.Intent;
28import android.content.res.Configuration;
29import android.content.res.Resources;
30import android.database.Cursor;
31import android.net.Uri;
32import android.os.Binder;
33import android.os.Bundle;
34import android.os.Handler;
35import android.os.Message;
36import android.os.RemoteException;
37import android.os.SystemProperties;
38import android.os.UserHandle;
39import android.provider.ContactsContract;
40import android.telecomm.GatewayInfo;
41import android.telecomm.TelecommConstants;
42import android.telephony.PhoneNumberUtils;
43import android.telephony.TelephonyManager;
44import android.text.TextUtils;
45import android.view.View;
46import android.widget.ProgressBar;
47
48/**
49 * OutgoingCallIntentBroadcaster receives CALL and CALL_PRIVILEGED Intents, and broadcasts the
50 * ACTION_NEW_OUTGOING_CALL intent. ACTION_NEW_OUTGOING_CALL is an ordered broadcast intent which
51 * contains the phone number being dialed. Applications can use this intent to (1) see which numbers
52 * are being dialed, (2) redirect a call (change the number being dialed), or (3) prevent a call
53 * from being placed.
54 *
55 * After the other applications have had a chance to see the ACTION_NEW_OUTGOING_CALL intent, it
56 * finally reaches the {@link NewOutgoingCallBroadcastIntentReceiver}.
57 *
58 * Calls where no number is present (like for a CDMA "empty flash" or a nonexistent voicemail
59 * number) are exempt from being broadcast.
60 *
61 * Calls to emergency numbers are still broadcast for informative purposes. The call is placed
62 * prior to sending ACTION_NEW_OUTGOING_CALL and cannot be redirected nor prevented.
63 */
64class NewOutgoingCallIntentBroadcaster {
65 /** Required permission for any app that wants to consume ACTION_NEW_OUTGOING_CALL. */
66 private static final String PERMISSION = android.Manifest.permission.PROCESS_OUTGOING_CALLS;
67
68 private static final String EXTRA_ACTUAL_NUMBER_TO_DIAL =
69 "android.telecomm.extra.ACTUAL_NUMBER_TO_DIAL";
70
71 /**
72 * Legacy string constants used to retrieve gateway provider extras from intents. These still
73 * need to be copied from the source call intent to the destination intent in order to
74 * support third party gateway providers that are still using old string constants in
75 * Telephony.
76 */
77 public static final String EXTRA_GATEWAY_PROVIDER_PACKAGE =
78 "com.android.phone.extra.GATEWAY_PROVIDER_PACKAGE";
79 public static final String EXTRA_GATEWAY_URI = "com.android.phone.extra.GATEWAY_URI";
80
Yorke Leeb9d4b362014-03-24 17:46:03 -070081 private static final String SCHEME_TEL = "tel";
82 private static final String SCHEME_SIP = "sip";
83
Yorke Lee33501632014-03-17 19:24:12 -070084 private final CallsManager mCallsManager;
85 private final ContactInfo mContactInfo;
86 private final Intent mIntent;
87
88 NewOutgoingCallIntentBroadcaster(CallsManager callsManager, ContactInfo contactInfo,
89 Intent intent) {
90 mCallsManager = callsManager;
91 mContactInfo = contactInfo;
92 mIntent = intent;
93 }
94
95 /**
96 * Processes the result of the outgoing call broadcast intent, and performs callbacks to
97 * the OutgoingCallIntentBroadcasterListener as necessary.
98 */
99 private class NewOutgoingCallBroadcastIntentReceiver extends BroadcastReceiver {
100
101 @Override
102 public void onReceive(Context context, Intent intent) {
Sailesh Nepalb3308752014-04-07 14:12:47 -0700103 Log.v(this, "onReceive: %s", intent);
Yorke Lee33501632014-03-17 19:24:12 -0700104
105 // Once the NEW_OUTGOING_CALL broadcast is finished, the resultData is used as the
106 // actual number to call. (If null, no call will be placed.)
107 String resultHandle = getResultData();
108 Log.v(this, "- got number from resultData: %s", Log.pii(resultHandle));
109
110 if (resultHandle == null) {
111 Log.v(this, "Call cancelled (null number), returning...");
112 return;
113 } else if (PhoneNumberUtils.isPotentialLocalEmergencyNumber(resultHandle, context)) {
114 Log.w(this, "Cannot modify outgoing call to emergency number %s.", resultHandle);
115 return;
116 }
117
Yorke Leeb9d4b362014-03-24 17:46:03 -0700118 Uri resultHandleUri = Uri.fromParts(
119 PhoneNumberUtils.isUriNumber(resultHandle) ? SCHEME_SIP : SCHEME_TEL,
120 resultHandle,
121 null);
Yorke Lee33501632014-03-17 19:24:12 -0700122
123 Uri originalUri = mIntent.getData();
124
125 if (originalUri.getSchemeSpecificPart().equals(resultHandle)) {
126 Log.v(this, "Call handle unmodified after new outgoing call intent broadcast.");
127 } else {
128 Log.v(this, "Retrieved modified handle after outgoing call intent broadcast: "
129 + "Original: %s, Modified: %s",
130 Log.pii(originalUri),
131 Log.pii(resultHandleUri));
132 }
133
134 GatewayInfo gatewayInfo = getGateWayInfoFromIntent(intent, resultHandleUri);
135 mCallsManager.placeOutgoingCall(resultHandleUri, mContactInfo, gatewayInfo);
136 }
137 }
138
139 /**
140 * Processes the supplied intent and starts the outgoing call broadcast process relevant to the
141 * intent.
142 *
143 * This method will handle three kinds of actions:
144 *
145 * - CALL (intent launched by all third party dialers)
146 * - CALL_PRIVILEGED (intent launched by system apps e.g. system Dialer, voice Dialer)
147 * - CALL_EMERGENCY (intent launched by lock screen emergency dialer)
148 */
149 void processIntent() {
150 Log.v(this, "Processing call intent in OutgoingCallIntentBroadcaster.");
151
152 final Context context = TelecommApp.getInstance();
153 Intent intent = mIntent;
154
155 String handle = PhoneNumberUtils.getNumberFromIntent(intent, context);
156
157 if (TextUtils.isEmpty(handle)) {
158 Log.w(this, "Empty handle obtained from the call intent.");
159 return;
160 }
161
Santos Cordonb58f4532014-05-29 11:59:06 -0700162 boolean isUriNumber = PhoneNumberUtils.isUriNumber(handle);
163
164 if (!isUriNumber) {
Yorke Lee33501632014-03-17 19:24:12 -0700165 handle = PhoneNumberUtils.convertKeypadLettersToDigits(handle);
166 handle = PhoneNumberUtils.stripSeparators(handle);
167 }
168
169 final boolean isPotentialEmergencyNumber = isPotentialEmergencyNumber(context, handle);
170 Log.v(this, "isPotentialEmergencyNumber = %s", isPotentialEmergencyNumber);
171
172 rewriteCallIntentAction(intent, isPotentialEmergencyNumber);
173 // True for certain types of numbers that are not intended to be intercepted or modified
174 // by third parties (e.g. emergency numbers).
175 boolean callImmediately = false;
176
177 String action = intent.getAction();
178 if (Intent.ACTION_CALL.equals(action)) {
179 if (isPotentialEmergencyNumber) {
180 Log.w(this, "Cannot call potential emergency number %s with CALL Intent %s.",
181 handle, intent);
182 launchSystemDialer(context, intent.getData());
183 }
184 callImmediately = false;
185 } else if (Intent.ACTION_CALL_EMERGENCY.equals(action)) {
186 if (!isPotentialEmergencyNumber) {
187 Log.w(this, "Cannot call non-potential-emergency number %s with EMERGENCY_CALL "
188 + "Intent %s.", handle, intent);
189 return;
190 }
191 callImmediately = true;
192 } else {
193 Log.w(this, "Unhandled Intent %s. Ignoring and not placing call.", intent);
194 return;
195 }
196
197 if (callImmediately) {
198 Log.i(this, "Placing call immediately instead of waiting for "
199 + " OutgoingCallBroadcastReceiver: %s", intent);
Santos Cordonb58f4532014-05-29 11:59:06 -0700200 String scheme = isUriNumber ? SCHEME_SIP : SCHEME_TEL;
201 mCallsManager.placeOutgoingCall(
202 Uri.fromParts(scheme, handle, null), mContactInfo, null);
Yorke Lee33501632014-03-17 19:24:12 -0700203
204 // Don't return but instead continue and send the ACTION_NEW_OUTGOING_CALL broadcast
205 // so that third parties can still inspect (but not intercept) the outgoing call. When
206 // the broadcast finally reaches the OutgoingCallBroadcastReceiver, we'll know not to
207 // initiate the call again because of the presence of the EXTRA_ALREADY_CALLED extra.
208 }
209
210 broadcastIntent(intent, handle, context, !callImmediately);
211 }
212
213 /**
214 * Sends a new outgoing call ordered broadcast so that third party apps can cancel the
215 * placement of the call or redirect it to a different number.
216 *
217 * @param originalCallIntent The original call intent.
218 * @param handle Call handle that was stored in the original call intent.
219 * @param context Valid context to send the ordered broadcast using.
220 * @param receiverRequired Whether or not the result from the ordered broadcast should be
221 * processed using a {@link NewOutgoingCallIntentBroadcaster}.
222 */
223 private void broadcastIntent(
224 Intent originalCallIntent,
225 String handle,
226 Context context,
227 boolean receiverRequired) {
228 Intent broadcastIntent = new Intent(Intent.ACTION_NEW_OUTGOING_CALL);
229 if (handle != null) {
230 broadcastIntent.putExtra(Intent.EXTRA_PHONE_NUMBER, handle);
231 }
232
233 // Force receivers of this broadcast intent to run at foreground priority because we
234 // want to finish processing the broadcast intent as soon as possible.
235 broadcastIntent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
236 Log.v(this, "Broadcasting intent: %s.", broadcastIntent);
237
238 checkAndCopyGatewayProviderExtras(originalCallIntent, broadcastIntent);
239
240 context.sendOrderedBroadcastAsUser(
241 broadcastIntent,
242 UserHandle.OWNER,
243 PERMISSION,
244 receiverRequired ? new NewOutgoingCallBroadcastIntentReceiver() : null,
245 null, // scheduler
246 Activity.RESULT_OK, // initialCode
247 handle, // initialData: initial value for the result data (number to be modified)
248 null); // initialExtras
249 }
250
251 /**
252 * Copy all the expected extras set when a 3rd party gateway provider is to be used, from the
253 * source intent to the destination one.
254 *
255 * @param src Intent which may contain the provider's extras.
256 * @param dst Intent where a copy of the extras will be added if applicable.
257 */
258 public void checkAndCopyGatewayProviderExtras(Intent src, Intent dst) {
259 if (hasGatewayProviderExtras(src)) {
260 dst.putExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE,
261 src.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE));
262 dst.putExtra(EXTRA_GATEWAY_URI,
263 src.getStringExtra(EXTRA_GATEWAY_URI));
264 Log.d(this, "Found and copied gateway provider extras to broadcast intent.");
265 return;
266 }
267
268 Log.d(this, "No gateway provider extras found in call intent.");
269 }
270
271 /**
272 * Check if valid gateway provider information is stored as extras in the intent
273 *
274 * @param intent to check for
275 * @return true if the intent has all the gateway information extras needed.
276 */
277 private boolean hasGatewayProviderExtras(Intent intent) {
278 if (intent == null) {
279 return false;
280 }
281 final String name = intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE);
282 final String uriString = intent.getStringExtra(EXTRA_GATEWAY_URI);
283
284 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(uriString);
285 }
286
287 private static Uri getGatewayUriFromString(String gatewayUriString) {
288 return TextUtils.isEmpty(gatewayUriString) ? null : Uri.parse(gatewayUriString);
289 }
290
291 /**
292 * Extracts gateway provider information from a provided intent..
293 *
294 * @param intent to extract gateway provider information from.
295 * @param trueHandle The actual call handle that the user is trying to dial
296 * @return GatewayInfo object containing extracted gateway provider information as well as
297 * the actual handle the user is trying to dial.
298 */
299 public static GatewayInfo getGateWayInfoFromIntent(Intent intent, Uri trueHandle) {
300 if (intent == null) {
301 return null;
302 }
303
304 // Check if gateway extras are present.
305 String gatewayPackageName = intent.getStringExtra(EXTRA_GATEWAY_PROVIDER_PACKAGE);
306 Uri gatewayUri = getGatewayUriFromString(intent.getStringExtra(EXTRA_GATEWAY_URI));
307 if (!TextUtils.isEmpty(gatewayPackageName) && gatewayUri != null) {
308 return new GatewayInfo(gatewayPackageName, gatewayUri, trueHandle);
309 }
310
311 return null;
312 }
313
314 private void launchSystemDialer(Context context, Uri handle) {
315 Intent systemDialerIntent = new Intent();
316 final Resources resources = context.getResources();
317 systemDialerIntent.setClassName(
318 resources.getString(R.string.ui_default_package),
319 resources.getString(R.string.dialer_default_class));
320 systemDialerIntent.setAction(Intent.ACTION_DIAL);
321 systemDialerIntent.setData(handle);
322 systemDialerIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
323 Log.v(this, "calling startActivity for default dialer: %s", systemDialerIntent);
324 context.startActivity(systemDialerIntent);
325 }
326
327 /**
328 * Check whether or not this is an emergency number, in order to enforce the restriction
329 * that only the CALL_PRIVILEGED and CALL_EMERGENCY intents are allowed to make emergency
330 * calls.
331 *
332 * To prevent malicious 3rd party apps from making emergency calls by passing in an
333 * "invalid" number like "9111234" (that isn't technically an emergency number but might
334 * still result in an emergency call with some networks), we use
335 * isPotentialLocalEmergencyNumber instead of isLocalEmergencyNumber.
336 *
337 * @param context Valid context
338 * @param handle Handle to inspect in order to determine whether or not an emergency number
339 * is potentially being dialed
340 * @return True if the handle is potentially an emergency number.
341 */
342 private boolean isPotentialEmergencyNumber(Context context, String handle) {
343 Log.v(this, "Checking restrictions for number : %s", Log.pii(handle));
344 return (handle != null) && PhoneNumberUtils.isPotentialLocalEmergencyNumber(handle,context);
345 }
346
347 /**
348 * Given a call intent and whether or not the number to dial is an emergency number, rewrite
349 * the call intent action to an appropriate one.
350 *
351 * @param intent Intent to rewrite the action for
352 * @param isPotentialEmergencyNumber Whether or not the handle is potentially an emergency
353 * number.
354 */
355 private void rewriteCallIntentAction(Intent intent, boolean isPotentialEmergencyNumber) {
356 if (CallActivity.class.getName().equals(intent.getComponent().getClassName())) {
357 // If we were launched directly from the CallActivity, not one of its more privileged
358 // aliases, then make sure that only the non-privileged actions are allowed.
359 if (!Intent.ACTION_CALL.equals(intent.getAction())) {
360 Log.w(this, "Attempt to deliver non-CALL action; forcing to CALL");
361 intent.setAction(Intent.ACTION_CALL);
362 }
363 }
364
365 String action = intent.getAction();
366
367 /* Change CALL_PRIVILEGED into CALL or CALL_EMERGENCY as needed. */
368 if (Intent.ACTION_CALL_PRIVILEGED.equals(action)) {
369 if (isPotentialEmergencyNumber) {
370 Log.i(this, "ACTION_CALL_PRIVILEGED is used while the number is a potential"
371 + " emergency number. Using ACTION_CALL_EMERGENCY as an action instead.");
372 action = Intent.ACTION_CALL_EMERGENCY;
373 } else {
374 action = Intent.ACTION_CALL;
375 }
376 Log.v(this, " - updating action from CALL_PRIVILEGED to %s", action);
377 intent.setAction(action);
378 }
379 }
380}