blob: e0b49603ac4fd69721d0ae1e4dfa7ec944e29ee1 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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;
18
Svet Ganovadc1cf42015-06-15 16:36:24 -070019import android.content.pm.PackageManagerInternal;
destradaaea8a8a62014-06-23 18:19:03 -070020import com.android.internal.content.PackageMonitor;
21import com.android.internal.location.ProviderProperties;
22import com.android.internal.location.ProviderRequest;
23import com.android.internal.os.BackgroundThread;
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -070024import com.android.internal.util.ArrayUtils;
destradaaa4fa3b52014-07-09 10:46:39 -070025import com.android.server.location.ActivityRecognitionProxy;
destradaaea8a8a62014-06-23 18:19:03 -070026import com.android.server.location.FlpHardwareProvider;
27import com.android.server.location.FusedProxy;
28import com.android.server.location.GeocoderProxy;
29import com.android.server.location.GeofenceManager;
30import com.android.server.location.GeofenceProxy;
Lifu Tang818aa2c2016-02-01 01:52:00 -080031import com.android.server.location.GnssLocationProvider;
32import com.android.server.location.GnssMeasurementsProvider;
33import com.android.server.location.GnssNavigationMessageProvider;
destradaaea8a8a62014-06-23 18:19:03 -070034import com.android.server.location.LocationBlacklist;
35import com.android.server.location.LocationFudger;
36import com.android.server.location.LocationProviderInterface;
37import com.android.server.location.LocationProviderProxy;
38import com.android.server.location.LocationRequestStatistics;
39import com.android.server.location.LocationRequestStatistics.PackageProviderKey;
40import com.android.server.location.LocationRequestStatistics.PackageStatistics;
41import com.android.server.location.MockProvider;
42import com.android.server.location.PassiveProvider;
43
Dianne Hackborna06de0f2012-12-11 16:34:47 -080044import android.app.AppOpsManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.app.PendingIntent;
Victoria Lease38389b62012-09-30 11:44:22 -070046import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.content.ContentResolver;
48import android.content.Context;
49import android.content.Intent;
Victoria Lease38389b62012-09-30 11:44:22 -070050import android.content.IntentFilter;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070051import android.content.pm.ApplicationInfo;
Jeff Hamiltonfbadb692012-10-05 14:21:58 -050052import android.content.pm.PackageInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.content.pm.PackageManager;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070054import android.content.pm.PackageManager.NameNotFoundException;
Jeff Hamiltonfbadb692012-10-05 14:21:58 -050055import android.content.pm.ResolveInfo;
56import android.content.pm.Signature;
Mike Lockwood628fd6d2010-01-25 22:46:13 -050057import android.content.res.Resources;
Brian Muramatsubb95cb92012-08-29 10:43:21 -070058import android.database.ContentObserver;
destradaaa4fa3b52014-07-09 10:46:39 -070059import android.hardware.location.ActivityRecognitionHardware;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060import android.location.Address;
Mike Lockwood03ca2162010-04-01 08:10:09 -070061import android.location.Criteria;
Mike Lockwood34901402010-01-04 12:14:21 -050062import android.location.GeocoderParams;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070063import android.location.Geofence;
Lifu Tang818aa2c2016-02-01 01:52:00 -080064import android.location.IGnssMeasurementsListener;
Lifu Tang30f95a72016-01-07 23:20:38 -080065import android.location.IGnssStatusListener;
66import android.location.IGnssStatusProvider;
Wei Liu5241a4c2015-05-11 14:00:36 -070067import android.location.IGpsGeofenceHardware;
Lifu Tang818aa2c2016-02-01 01:52:00 -080068import android.location.IGnssNavigationMessageListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069import android.location.ILocationListener;
70import android.location.ILocationManager;
Danke Xie22d1f9f2009-08-18 18:28:45 -040071import android.location.INetInitiatedListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072import android.location.Location;
73import android.location.LocationManager;
74import android.location.LocationProvider;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070075import android.location.LocationRequest;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import android.os.Binder;
77import android.os.Bundle;
78import android.os.Handler;
79import android.os.IBinder;
Mike Lockwood3d12b512009-04-21 23:25:35 -070080import android.os.Looper;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081import android.os.Message;
82import android.os.PowerManager;
Mike Lockwoode932f7f2009-04-06 10:51:26 -070083import android.os.Process;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084import android.os.RemoteException;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070085import android.os.SystemClock;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070086import android.os.UserHandle;
Amith Yamasanib27528d2014-06-05 15:02:10 -070087import android.os.UserManager;
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -070088import android.os.WorkSource;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080091import android.util.Slog;
Amith Yamasanib27528d2014-06-05 15:02:10 -070092
Mike Lockwood43e33f22010-03-26 10:41:48 -040093import java.io.FileDescriptor;
94import java.io.PrintWriter;
95import java.util.ArrayList;
Nick Pelly6fa9ad42012-07-16 12:18:23 -070096import java.util.Arrays;
Mike Lockwood43e33f22010-03-26 10:41:48 -040097import java.util.HashMap;
98import java.util.HashSet;
99import java.util.List;
100import java.util.Map;
Mike Lockwood43e33f22010-03-26 10:41:48 -0400101import java.util.Set;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102
103/**
104 * The service class that manages LocationProviders and issues location
105 * updates and alerts.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 */
Victoria Lease5cd731a2012-12-19 15:04:21 -0800107public class LocationManagerService extends ILocationManager.Stub {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 private static final String TAG = "LocationManagerService";
JP Abgrallf79811e72013-02-01 18:45:05 -0800109 public static final boolean D = Log.isLoggable(TAG, Log.DEBUG);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700110
111 private static final String WAKELOCK_KEY = TAG;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112
Victoria Lease37425c32012-10-16 16:08:48 -0700113 // Location resolution level: no location data whatsoever
114 private static final int RESOLUTION_LEVEL_NONE = 0;
115 // Location resolution level: coarse location data only
116 private static final int RESOLUTION_LEVEL_COARSE = 1;
117 // Location resolution level: fine location data
118 private static final int RESOLUTION_LEVEL_FINE = 2;
119
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 private static final String ACCESS_MOCK_LOCATION =
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700121 android.Manifest.permission.ACCESS_MOCK_LOCATION;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 private static final String ACCESS_LOCATION_EXTRA_COMMANDS =
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700123 android.Manifest.permission.ACCESS_LOCATION_EXTRA_COMMANDS;
Mike Lockwood275555c2009-05-01 11:30:34 -0400124 private static final String INSTALL_LOCATION_PROVIDER =
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700125 android.Manifest.permission.INSTALL_LOCATION_PROVIDER;
126
127 private static final String NETWORK_LOCATION_SERVICE_ACTION =
Stan Chesnutt39062dd2013-07-22 14:33:30 -0700128 "com.android.location.service.v3.NetworkLocationProvider";
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700129 private static final String FUSED_LOCATION_SERVICE_ACTION =
130 "com.android.location.service.FusedLocationProvider";
131
132 private static final int MSG_LOCATION_CHANGED = 1;
133
David Christie1b9b7b12013-04-15 15:31:11 -0700134 private static final long NANOS_PER_MILLI = 1000000L;
135
David Christie0b837452013-07-29 16:02:13 -0700136 // The maximum interval a location request can have and still be considered "high power".
137 private static final long HIGH_POWER_INTERVAL_MS = 5 * 60 * 1000;
138
Nick Pellyf1be6862012-05-15 10:53:42 -0700139 // Location Providers may sometimes deliver location updates
140 // slightly faster that requested - provide grace period so
141 // we don't unnecessarily filter events that are otherwise on
142 // time
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700143 private static final int MAX_PROVIDER_SCHEDULING_JITTER_MS = 100;
Nick Pellyf1be6862012-05-15 10:53:42 -0700144
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700145 private static final LocationRequest DEFAULT_LOCATION_REQUEST = new LocationRequest();
146
147 private final Context mContext;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800148 private final AppOpsManager mAppOps;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700149
150 // used internally for synchronization
151 private final Object mLock = new Object();
152
Victoria Lease5cd731a2012-12-19 15:04:21 -0800153 // --- fields below are final after systemReady() ---
Nick Pelly74fa7ea2012-08-13 19:36:38 -0700154 private LocationFudger mLocationFudger;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700155 private GeofenceManager mGeofenceManager;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700156 private PackageManager mPackageManager;
Victoria Lease0aa28602013-05-29 15:28:26 -0700157 private PowerManager mPowerManager;
Amith Yamasanib27528d2014-06-05 15:02:10 -0700158 private UserManager mUserManager;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700159 private GeocoderProxy mGeocodeProvider;
Lifu Tang30f95a72016-01-07 23:20:38 -0800160 private IGnssStatusProvider mGnssStatusProvider;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700161 private INetInitiatedListener mNetInitiatedListener;
162 private LocationWorkerHandler mLocationHandler;
Nick Pelly4035f5a2012-08-17 14:43:49 -0700163 private PassiveProvider mPassiveProvider; // track passive provider for special cases
164 private LocationBlacklist mBlacklist;
Lifu Tang818aa2c2016-02-01 01:52:00 -0800165 private GnssMeasurementsProvider mGnssMeasurementsProvider;
166 private GnssNavigationMessageProvider mGnssNavigationMessageProvider;
Wei Liu5241a4c2015-05-11 14:00:36 -0700167 private IGpsGeofenceHardware mGpsGeofenceProxy;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700168
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700169 // --- fields below are protected by mLock ---
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 // Set of providers that are explicitly enabled
171 private final Set<String> mEnabledProviders = new HashSet<String>();
172
173 // Set of providers that are explicitly disabled
174 private final Set<String> mDisabledProviders = new HashSet<String>();
175
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700176 // Mock (test) providers
177 private final HashMap<String, MockProvider> mMockProviders =
178 new HashMap<String, MockProvider>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700180 // all receivers
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400181 private final HashMap<Object, Receiver> mReceivers = new HashMap<Object, Receiver>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700183 // currently installed providers (with mocks replacing real providers)
Mike Lockwoodd03ff942010-02-09 08:46:14 -0500184 private final ArrayList<LocationProviderInterface> mProviders =
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700185 new ArrayList<LocationProviderInterface>();
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400186
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700187 // real providers, saved here when mocked out
188 private final HashMap<String, LocationProviderInterface> mRealProviders =
189 new HashMap<String, LocationProviderInterface>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700191 // mapping from provider name to provider
192 private final HashMap<String, LocationProviderInterface> mProvidersByName =
193 new HashMap<String, LocationProviderInterface>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700195 // mapping from provider name to all its UpdateRecords
196 private final HashMap<String, ArrayList<UpdateRecord>> mRecordsByProvider =
197 new HashMap<String, ArrayList<UpdateRecord>>();
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -0700198
David Christie2ff96af2014-01-30 16:09:37 -0800199 private final LocationRequestStatistics mRequestStatistics = new LocationRequestStatistics();
200
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700201 // mapping from provider name to last known location
202 private final HashMap<String, Location> mLastLocation = new HashMap<String, Location>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203
David Christie1b9b7b12013-04-15 15:31:11 -0700204 // same as mLastLocation, but is not updated faster than LocationFudger.FASTEST_INTERVAL_MS.
205 // locations stored here are not fudged for coarse permissions.
206 private final HashMap<String, Location> mLastLocationCoarseInterval =
207 new HashMap<String, Location>();
208
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700209 // all providers that operate over proxy, for authorizing incoming location
210 private final ArrayList<LocationProviderProxy> mProxyProviders =
211 new ArrayList<LocationProviderProxy>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212
Victoria Lease38389b62012-09-30 11:44:22 -0700213 // current active user on the device - other users are denied location data
Xiaohui Chena4490622015-09-22 15:29:31 -0700214 private int mCurrentUserId = UserHandle.USER_SYSTEM;
215 private int[] mCurrentUserProfiles = new int[] { UserHandle.USER_SYSTEM };
Victoria Lease38389b62012-09-30 11:44:22 -0700216
Lifu Tang9363b942016-02-16 18:07:00 -0800217 private GnssLocationProvider.GnssSystemInfoProvider mGnssSystemInfoProvider;
Lifu Tang82f893d2016-01-21 18:15:33 -0800218
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700219 public LocationManagerService(Context context) {
220 super();
221 mContext = context;
Dianne Hackborna06de0f2012-12-11 16:34:47 -0800222 mAppOps = (AppOpsManager)context.getSystemService(Context.APP_OPS_SERVICE);
The Android Open Source Project4df24232009-03-05 14:34:35 -0800223
Svet Ganovadc1cf42015-06-15 16:36:24 -0700224 // Let the package manager query which are the default location
225 // providers as they get certain permissions granted by default.
226 PackageManagerInternal packageManagerInternal = LocalServices.getService(
227 PackageManagerInternal.class);
228 packageManagerInternal.setLocationPackagesProvider(
229 new PackageManagerInternal.PackagesProvider() {
230 @Override
231 public String[] getPackages(int userId) {
232 return mContext.getResources().getStringArray(
233 com.android.internal.R.array.config_locationProviderPackageNames);
234 }
235 });
236
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700237 if (D) Log.d(TAG, "Constructed");
238
239 // most startup is deferred until systemReady()
240 }
241
Svetoslav Ganova0027152013-06-25 14:59:53 -0700242 public void systemRunning() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700243 synchronized (mLock) {
Victoria Lease5cd731a2012-12-19 15:04:21 -0800244 if (D) Log.d(TAG, "systemReady()");
Brian Muramatsubb95cb92012-08-29 10:43:21 -0700245
Victoria Lease5cd731a2012-12-19 15:04:21 -0800246 // fetch package manager
247 mPackageManager = mContext.getPackageManager();
248
Victoria Lease0aa28602013-05-29 15:28:26 -0700249 // fetch power manager
250 mPowerManager = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
Victoria Lease5cd731a2012-12-19 15:04:21 -0800251
252 // prepare worker thread
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700253 mLocationHandler = new LocationWorkerHandler(BackgroundThread.get().getLooper());
Victoria Lease5cd731a2012-12-19 15:04:21 -0800254
255 // prepare mLocationHandler's dependents
256 mLocationFudger = new LocationFudger(mContext, mLocationHandler);
257 mBlacklist = new LocationBlacklist(mContext, mLocationHandler);
258 mBlacklist.init();
259 mGeofenceManager = new GeofenceManager(mContext, mBlacklist);
260
Dianne Hackbornc2293022013-02-06 23:14:49 -0800261 // Monitor for app ops mode changes.
Dianne Hackborn9bb0ee92013-09-22 12:31:38 -0700262 AppOpsManager.OnOpChangedListener callback
263 = new AppOpsManager.OnOpChangedInternalListener() {
264 public void onOpChanged(int op, String packageName) {
Dianne Hackbornc2293022013-02-06 23:14:49 -0800265 synchronized (mLock) {
Dianne Hackborn1304f4a2013-07-09 18:17:27 -0700266 for (Receiver receiver : mReceivers.values()) {
267 receiver.updateMonitoring(true);
268 }
Dianne Hackbornc2293022013-02-06 23:14:49 -0800269 applyAllProviderRequirementsLocked();
270 }
271 }
272 };
273 mAppOps.startWatchingMode(AppOpsManager.OP_COARSE_LOCATION, null, callback);
274
David Christieb870dbf2015-06-22 12:42:53 -0700275 PackageManager.OnPermissionsChangedListener permissionListener
276 = new PackageManager.OnPermissionsChangedListener() {
277 @Override
278 public void onPermissionsChanged(final int uid) {
279 synchronized (mLock) {
280 applyAllProviderRequirementsLocked();
281 }
282 }
283 };
284 mPackageManager.addOnPermissionsChangeListener(permissionListener);
285
Amith Yamasanib27528d2014-06-05 15:02:10 -0700286 mUserManager = (UserManager) mContext.getSystemService(Context.USER_SERVICE);
287 updateUserProfiles(mCurrentUserId);
288
Victoria Lease5cd731a2012-12-19 15:04:21 -0800289 // prepare providers
290 loadProvidersLocked();
291 updateProvidersLocked();
292 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700293
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700294 // listen for settings changes
Brian Muramatsubb95cb92012-08-29 10:43:21 -0700295 mContext.getContentResolver().registerContentObserver(
Laurent Tu75defb62012-11-01 16:21:52 -0700296 Settings.Secure.getUriFor(Settings.Secure.LOCATION_PROVIDERS_ALLOWED), true,
Brian Muramatsubb95cb92012-08-29 10:43:21 -0700297 new ContentObserver(mLocationHandler) {
Victoria Lease5cd731a2012-12-19 15:04:21 -0800298 @Override
299 public void onChange(boolean selfChange) {
300 synchronized (mLock) {
301 updateProvidersLocked();
302 }
303 }
304 }, UserHandle.USER_ALL);
305 mPackageMonitor.register(mContext, mLocationHandler.getLooper(), true);
Brian Muramatsubb95cb92012-08-29 10:43:21 -0700306
Victoria Lease38389b62012-09-30 11:44:22 -0700307 // listen for user change
308 IntentFilter intentFilter = new IntentFilter();
309 intentFilter.addAction(Intent.ACTION_USER_SWITCHED);
Amith Yamasanib27528d2014-06-05 15:02:10 -0700310 intentFilter.addAction(Intent.ACTION_MANAGED_PROFILE_ADDED);
311 intentFilter.addAction(Intent.ACTION_MANAGED_PROFILE_REMOVED);
destradaab9026982015-08-27 17:34:54 -0700312 intentFilter.addAction(Intent.ACTION_SHUTDOWN);
Victoria Lease38389b62012-09-30 11:44:22 -0700313
314 mContext.registerReceiverAsUser(new BroadcastReceiver() {
315 @Override
316 public void onReceive(Context context, Intent intent) {
317 String action = intent.getAction();
318 if (Intent.ACTION_USER_SWITCHED.equals(action)) {
319 switchUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0));
Amith Yamasanib27528d2014-06-05 15:02:10 -0700320 } else if (Intent.ACTION_MANAGED_PROFILE_ADDED.equals(action)
321 || Intent.ACTION_MANAGED_PROFILE_REMOVED.equals(action)) {
322 updateUserProfiles(mCurrentUserId);
destradaab9026982015-08-27 17:34:54 -0700323 } else if (Intent.ACTION_SHUTDOWN.equals(action)) {
324 shutdownComponents();
Victoria Lease38389b62012-09-30 11:44:22 -0700325 }
326 }
Victoria Lease5cd731a2012-12-19 15:04:21 -0800327 }, UserHandle.ALL, intentFilter, null, mLocationHandler);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700328 }
329
Amith Yamasanib27528d2014-06-05 15:02:10 -0700330 /**
destradaab9026982015-08-27 17:34:54 -0700331 * Provides a way for components held by the {@link LocationManagerService} to clean-up
332 * gracefully on system's shutdown.
333 *
334 * NOTES:
335 * 1) Only provides a chance to clean-up on an opt-in basis. This guarantees back-compat
336 * support for components that do not wish to handle such event.
337 */
338 private void shutdownComponents() {
339 if(D) Log.d(TAG, "Shutting down components...");
340
341 LocationProviderInterface gpsProvider = mProvidersByName.get(LocationManager.GPS_PROVIDER);
342 if (gpsProvider != null && gpsProvider.isEnabled()) {
343 gpsProvider.disable();
344 }
345
destradaa2e385072015-10-14 16:45:58 -0700346 // it is needed to check if FLP HW provider is supported before accessing the instance, this
347 // avoids an exception to be thrown by the singleton factory method
348 if (FlpHardwareProvider.isSupported()) {
349 FlpHardwareProvider flpHardwareProvider = FlpHardwareProvider.getInstance(mContext);
destradaab9026982015-08-27 17:34:54 -0700350 flpHardwareProvider.cleanup();
351 }
352 }
353
354 /**
Amith Yamasanib27528d2014-06-05 15:02:10 -0700355 * Makes a list of userids that are related to the current user. This is
356 * relevant when using managed profiles. Otherwise the list only contains
357 * the current user.
358 *
359 * @param currentUserId the current user, who might have an alter-ego.
360 */
361 void updateUserProfiles(int currentUserId) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700362 int[] profileIds = mUserManager.getProfileIdsWithDisabled(currentUserId);
Amith Yamasanib27528d2014-06-05 15:02:10 -0700363 synchronized (mLock) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700364 mCurrentUserProfiles = profileIds;
Amith Yamasanib27528d2014-06-05 15:02:10 -0700365 }
366 }
367
368 /**
369 * Checks if the specified userId matches any of the current foreground
370 * users stored in mCurrentUserProfiles.
371 */
372 private boolean isCurrentProfile(int userId) {
373 synchronized (mLock) {
Fyodor Kupolov7f98aa42016-04-07 14:56:25 -0700374 return ArrayUtils.contains(mCurrentUserProfiles, userId);
Amith Yamasanib27528d2014-06-05 15:02:10 -0700375 }
376 }
377
Jeff Hamiltonfbadb692012-10-05 14:21:58 -0500378 private void ensureFallbackFusedProviderPresentLocked(ArrayList<String> pkgs) {
379 PackageManager pm = mContext.getPackageManager();
380 String systemPackageName = mContext.getPackageName();
381 ArrayList<HashSet<Signature>> sigSets = ServiceWatcher.getSignatureSets(mContext, pkgs);
382
383 List<ResolveInfo> rInfos = pm.queryIntentServicesAsUser(
384 new Intent(FUSED_LOCATION_SERVICE_ACTION),
385 PackageManager.GET_META_DATA, mCurrentUserId);
386 for (ResolveInfo rInfo : rInfos) {
387 String packageName = rInfo.serviceInfo.packageName;
388
389 // Check that the signature is in the list of supported sigs. If it's not in
390 // this list the standard provider binding logic won't bind to it.
391 try {
392 PackageInfo pInfo;
393 pInfo = pm.getPackageInfo(packageName, PackageManager.GET_SIGNATURES);
394 if (!ServiceWatcher.isSignatureMatch(pInfo.signatures, sigSets)) {
395 Log.w(TAG, packageName + " resolves service " + FUSED_LOCATION_SERVICE_ACTION +
396 ", but has wrong signature, ignoring");
397 continue;
398 }
399 } catch (NameNotFoundException e) {
400 Log.e(TAG, "missing package: " + packageName);
401 continue;
402 }
403
404 // Get the version info
405 if (rInfo.serviceInfo.metaData == null) {
406 Log.w(TAG, "Found fused provider without metadata: " + packageName);
407 continue;
408 }
409
410 int version = rInfo.serviceInfo.metaData.getInt(
411 ServiceWatcher.EXTRA_SERVICE_VERSION, -1);
412 if (version == 0) {
413 // This should be the fallback fused location provider.
414
415 // Make sure it's in the system partition.
416 if ((rInfo.serviceInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) == 0) {
417 if (D) Log.d(TAG, "Fallback candidate not in /system: " + packageName);
418 continue;
419 }
420
421 // Check that the fallback is signed the same as the OS
422 // as a proxy for coreApp="true"
423 if (pm.checkSignatures(systemPackageName, packageName)
424 != PackageManager.SIGNATURE_MATCH) {
425 if (D) Log.d(TAG, "Fallback candidate not signed the same as system: "
426 + packageName);
427 continue;
428 }
429
430 // Found a valid fallback.
431 if (D) Log.d(TAG, "Found fallback provider: " + packageName);
432 return;
433 } else {
434 if (D) Log.d(TAG, "Fallback candidate not version 0: " + packageName);
435 }
436 }
437
438 throw new IllegalStateException("Unable to find a fused location provider that is in the "
439 + "system partition with version 0 and signed with the platform certificate. "
440 + "Such a package is needed to provide a default fused location provider in the "
441 + "event that no other fused location provider has been installed or is currently "
442 + "available. For example, coreOnly boot mode when decrypting the data "
443 + "partition. The fallback must also be marked coreApp=\"true\" in the manifest");
444 }
445
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700446 private void loadProvidersLocked() {
Victoria Lease5c24fd02012-10-01 11:00:50 -0700447 // create a passive location provider, which is always enabled
448 PassiveProvider passiveProvider = new PassiveProvider(this);
449 addProviderLocked(passiveProvider);
450 mEnabledProviders.add(passiveProvider.getName());
451 mPassiveProvider = passiveProvider;
452
Lifu Tang30f95a72016-01-07 23:20:38 -0800453 if (GnssLocationProvider.isSupported()) {
Wei Liu5241a4c2015-05-11 14:00:36 -0700454 // Create a gps location provider
Lifu Tang30f95a72016-01-07 23:20:38 -0800455 GnssLocationProvider gnssProvider = new GnssLocationProvider(mContext, this,
Wei Liu5241a4c2015-05-11 14:00:36 -0700456 mLocationHandler.getLooper());
Lifu Tang9363b942016-02-16 18:07:00 -0800457 mGnssSystemInfoProvider = gnssProvider.getGnssSystemInfoProvider();
Lifu Tang30f95a72016-01-07 23:20:38 -0800458 mGnssStatusProvider = gnssProvider.getGnssStatusProvider();
459 mNetInitiatedListener = gnssProvider.getNetInitiatedListener();
460 addProviderLocked(gnssProvider);
461 mRealProviders.put(LocationManager.GPS_PROVIDER, gnssProvider);
Lifu Tang818aa2c2016-02-01 01:52:00 -0800462 mGnssMeasurementsProvider = gnssProvider.getGnssMeasurementsProvider();
463 mGnssNavigationMessageProvider = gnssProvider.getGnssNavigationMessageProvider();
Lifu Tang30f95a72016-01-07 23:20:38 -0800464 mGpsGeofenceProxy = gnssProvider.getGpsGeofenceProxy();
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700465 }
466
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700467 /*
468 Load package name(s) containing location provider support.
469 These packages can contain services implementing location providers:
470 Geocoder Provider, Network Location Provider, and
471 Fused Location Provider. They will each be searched for
472 service components implementing these providers.
473 The location framework also has support for installation
474 of new location providers at run-time. The new package does not
475 have to be explicitly listed here, however it must have a signature
476 that matches the signature of at least one package on this list.
477 */
478 Resources resources = mContext.getResources();
479 ArrayList<String> providerPackageNames = new ArrayList<String>();
Jeff Hamiltonfbadb692012-10-05 14:21:58 -0500480 String[] pkgs = resources.getStringArray(
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700481 com.android.internal.R.array.config_locationProviderPackageNames);
Jeff Hamiltonfbadb692012-10-05 14:21:58 -0500482 if (D) Log.d(TAG, "certificates for location providers pulled from: " +
483 Arrays.toString(pkgs));
484 if (pkgs != null) providerPackageNames.addAll(Arrays.asList(pkgs));
485
486 ensureFallbackFusedProviderPresentLocked(providerPackageNames);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700487
488 // bind to network provider
489 LocationProviderProxy networkProvider = LocationProviderProxy.createAndBind(
490 mContext,
491 LocationManager.NETWORK_PROVIDER,
492 NETWORK_LOCATION_SERVICE_ACTION,
Zhentao Sunc5fc9982013-04-17 17:47:53 -0700493 com.android.internal.R.bool.config_enableNetworkLocationOverlay,
494 com.android.internal.R.string.config_networkLocationProviderPackageName,
495 com.android.internal.R.array.config_locationProviderPackageNames,
496 mLocationHandler);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700497 if (networkProvider != null) {
498 mRealProviders.put(LocationManager.NETWORK_PROVIDER, networkProvider);
499 mProxyProviders.add(networkProvider);
500 addProviderLocked(networkProvider);
501 } else {
502 Slog.w(TAG, "no network location provider found");
503 }
504
505 // bind to fused provider
506 LocationProviderProxy fusedLocationProvider = LocationProviderProxy.createAndBind(
507 mContext,
508 LocationManager.FUSED_PROVIDER,
509 FUSED_LOCATION_SERVICE_ACTION,
Zhentao Sunc5fc9982013-04-17 17:47:53 -0700510 com.android.internal.R.bool.config_enableFusedLocationOverlay,
511 com.android.internal.R.string.config_fusedLocationProviderPackageName,
512 com.android.internal.R.array.config_locationProviderPackageNames,
513 mLocationHandler);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700514 if (fusedLocationProvider != null) {
515 addProviderLocked(fusedLocationProvider);
516 mProxyProviders.add(fusedLocationProvider);
517 mEnabledProviders.add(fusedLocationProvider.getName());
Kenny Rootc3575182012-10-09 12:44:40 -0700518 mRealProviders.put(LocationManager.FUSED_PROVIDER, fusedLocationProvider);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700519 } else {
520 Slog.e(TAG, "no fused location provider found",
521 new IllegalStateException("Location service needs a fused location provider"));
522 }
523
524 // bind to geocoder provider
Zhentao Sunc5fc9982013-04-17 17:47:53 -0700525 mGeocodeProvider = GeocoderProxy.createAndBind(mContext,
526 com.android.internal.R.bool.config_enableGeocoderOverlay,
527 com.android.internal.R.string.config_geocoderProviderPackageName,
528 com.android.internal.R.array.config_locationProviderPackageNames,
Victoria Lease03cdd3d2013-02-01 15:15:54 -0800529 mLocationHandler);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700530 if (mGeocodeProvider == null) {
531 Slog.e(TAG, "no geocoder provider found");
532 }
Jaikumar Ganesh8ce470d2013-04-03 12:22:18 -0700533
destradaaa4fa3b52014-07-09 10:46:39 -0700534 // bind to fused hardware provider if supported
destradaabeea4422014-07-30 18:17:21 -0700535 // in devices without support, requesting an instance of FlpHardwareProvider will raise an
536 // exception, so make sure we only do that when supported
537 FlpHardwareProvider flpHardwareProvider;
destradaa5ce66d82014-05-28 18:24:08 -0700538 if (FlpHardwareProvider.isSupported()) {
destradaabeea4422014-07-30 18:17:21 -0700539 flpHardwareProvider = FlpHardwareProvider.getInstance(mContext);
destradaaf9a274c2014-07-25 15:11:56 -0700540 FusedProxy fusedProxy = FusedProxy.createAndBind(
541 mContext,
542 mLocationHandler,
543 flpHardwareProvider.getLocationHardware(),
544 com.android.internal.R.bool.config_enableHardwareFlpOverlay,
545 com.android.internal.R.string.config_hardwareFlpPackageName,
546 com.android.internal.R.array.config_locationProviderPackageNames);
547 if (fusedProxy == null) {
destradaa6b4893a2016-05-03 15:33:43 -0700548 Slog.d(TAG, "Unable to bind FusedProxy.");
destradaaf9a274c2014-07-25 15:11:56 -0700549 }
destradaacfbdcd22014-04-30 11:29:11 -0700550 } else {
destradaabeea4422014-07-30 18:17:21 -0700551 flpHardwareProvider = null;
destradaa6b4893a2016-05-03 15:33:43 -0700552 Slog.d(TAG, "FLP HAL not supported");
destradaaf9a274c2014-07-25 15:11:56 -0700553 }
554
555 // bind to geofence provider
556 GeofenceProxy provider = GeofenceProxy.createAndBind(
557 mContext,com.android.internal.R.bool.config_enableGeofenceOverlay,
558 com.android.internal.R.string.config_geofenceProviderPackageName,
559 com.android.internal.R.array.config_locationProviderPackageNames,
560 mLocationHandler,
Wei Liu5241a4c2015-05-11 14:00:36 -0700561 mGpsGeofenceProxy,
destradaabeea4422014-07-30 18:17:21 -0700562 flpHardwareProvider != null ? flpHardwareProvider.getGeofenceHardware() : null);
destradaaf9a274c2014-07-25 15:11:56 -0700563 if (provider == null) {
destradaa6b4893a2016-05-03 15:33:43 -0700564 Slog.d(TAG, "Unable to bind FLP Geofence proxy.");
destradaa0682809a2013-08-12 18:50:30 -0700565 }
Ji-Hwan Lee26bdb8f2014-04-21 20:48:19 +0900566
destradaa6e2fe752015-06-23 17:25:53 -0700567 // bind to hardware activity recognition
568 boolean activityRecognitionHardwareIsSupported = ActivityRecognitionHardware.isSupported();
569 ActivityRecognitionHardware activityRecognitionHardware = null;
570 if (activityRecognitionHardwareIsSupported) {
571 activityRecognitionHardware = ActivityRecognitionHardware.getInstance(mContext);
destradaaa4fa3b52014-07-09 10:46:39 -0700572 } else {
destradaa6b4893a2016-05-03 15:33:43 -0700573 Slog.d(TAG, "Hardware Activity-Recognition not supported.");
destradaaa4fa3b52014-07-09 10:46:39 -0700574 }
destradaa6e2fe752015-06-23 17:25:53 -0700575 ActivityRecognitionProxy proxy = ActivityRecognitionProxy.createAndBind(
576 mContext,
577 mLocationHandler,
578 activityRecognitionHardwareIsSupported,
579 activityRecognitionHardware,
580 com.android.internal.R.bool.config_enableActivityRecognitionHardwareOverlay,
581 com.android.internal.R.string.config_activityRecognitionHardwarePackageName,
582 com.android.internal.R.array.config_locationProviderPackageNames);
583 if (proxy == null) {
destradaa6b4893a2016-05-03 15:33:43 -0700584 Slog.d(TAG, "Unable to bind ActivityRecognitionProxy.");
destradaa6e2fe752015-06-23 17:25:53 -0700585 }
destradaaa4fa3b52014-07-09 10:46:39 -0700586
Ji-Hwan Lee26bdb8f2014-04-21 20:48:19 +0900587 String[] testProviderStrings = resources.getStringArray(
588 com.android.internal.R.array.config_testLocationProviders);
589 for (String testProviderString : testProviderStrings) {
590 String fragments[] = testProviderString.split(",");
591 String name = fragments[0].trim();
592 if (mProvidersByName.get(name) != null) {
593 throw new IllegalArgumentException("Provider \"" + name + "\" already exists");
594 }
595 ProviderProperties properties = new ProviderProperties(
596 Boolean.parseBoolean(fragments[1]) /* requiresNetwork */,
597 Boolean.parseBoolean(fragments[2]) /* requiresSatellite */,
598 Boolean.parseBoolean(fragments[3]) /* requiresCell */,
599 Boolean.parseBoolean(fragments[4]) /* hasMonetaryCost */,
600 Boolean.parseBoolean(fragments[5]) /* supportsAltitude */,
601 Boolean.parseBoolean(fragments[6]) /* supportsSpeed */,
602 Boolean.parseBoolean(fragments[7]) /* supportsBearing */,
603 Integer.parseInt(fragments[8]) /* powerRequirement */,
604 Integer.parseInt(fragments[9]) /* accuracy */);
605 addTestProviderLocked(name, properties);
606 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700607 }
Mike Lockwood9637d472009-04-02 21:41:57 -0700608
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800609 /**
Victoria Lease38389b62012-09-30 11:44:22 -0700610 * Called when the device's active user changes.
611 * @param userId the new active user's UserId
612 */
613 private void switchUser(int userId) {
Jianzheng Zhoud5c69462013-10-10 14:02:09 +0800614 if (mCurrentUserId == userId) {
615 return;
616 }
Victoria Lease83762d22012-10-03 13:51:17 -0700617 mBlacklist.switchUser(userId);
Victoria Lease03cdd3d2013-02-01 15:15:54 -0800618 mLocationHandler.removeMessages(MSG_LOCATION_CHANGED);
Victoria Lease38389b62012-09-30 11:44:22 -0700619 synchronized (mLock) {
Victoria Leaseb711d572012-10-02 13:14:11 -0700620 mLastLocation.clear();
David Christie1b9b7b12013-04-15 15:31:11 -0700621 mLastLocationCoarseInterval.clear();
Victoria Leaseb711d572012-10-02 13:14:11 -0700622 for (LocationProviderInterface p : mProviders) {
Amith Yamasanib27528d2014-06-05 15:02:10 -0700623 updateProviderListenersLocked(p.getName(), false);
Victoria Leaseb711d572012-10-02 13:14:11 -0700624 }
Victoria Lease38389b62012-09-30 11:44:22 -0700625 mCurrentUserId = userId;
Amith Yamasanib27528d2014-06-05 15:02:10 -0700626 updateUserProfiles(userId);
Victoria Leaseb711d572012-10-02 13:14:11 -0700627 updateProvidersLocked();
Victoria Lease38389b62012-09-30 11:44:22 -0700628 }
629 }
630
631 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 * A wrapper class holding either an ILocationListener or a PendingIntent to receive
633 * location updates.
634 */
Mike Lockwood48f17512009-04-23 09:12:08 -0700635 private final class Receiver implements IBinder.DeathRecipient, PendingIntent.OnFinished {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700636 final int mUid; // uid of receiver
637 final int mPid; // pid of receiver
638 final String mPackageName; // package name of receiver
Victoria Lease37425c32012-10-16 16:08:48 -0700639 final int mAllowedResolutionLevel; // resolution level allowed to receiver
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700640
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 final ILocationListener mListener;
642 final PendingIntent mPendingIntent;
David Christie82edc9b2013-07-19 11:31:42 -0700643 final WorkSource mWorkSource; // WorkSource for battery blame, or null to assign to caller.
David Christie40e57822013-07-30 11:36:48 -0700644 final boolean mHideFromAppOps; // True if AppOps should not monitor this receiver.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 final Object mKey;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700646
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400647 final HashMap<String,UpdateRecord> mUpdateRecords = new HashMap<String,UpdateRecord>();
Nick Pellyf1be6862012-05-15 10:53:42 -0700648
David Christie0b837452013-07-29 16:02:13 -0700649 // True if app ops has started monitoring this receiver for locations.
Dianne Hackborn1304f4a2013-07-09 18:17:27 -0700650 boolean mOpMonitoring;
David Christie0b837452013-07-29 16:02:13 -0700651 // True if app ops has started monitoring this receiver for high power (gps) locations.
652 boolean mOpHighPowerMonitoring;
Mike Lockwood48f17512009-04-23 09:12:08 -0700653 int mPendingBroadcasts;
Victoria Lease0aa28602013-05-29 15:28:26 -0700654 PowerManager.WakeLock mWakeLock;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800655
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700656 Receiver(ILocationListener listener, PendingIntent intent, int pid, int uid,
David Christie40e57822013-07-30 11:36:48 -0700657 String packageName, WorkSource workSource, boolean hideFromAppOps) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800658 mListener = listener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800659 mPendingIntent = intent;
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700660 if (listener != null) {
661 mKey = listener.asBinder();
662 } else {
663 mKey = intent;
664 }
Victoria Lease37425c32012-10-16 16:08:48 -0700665 mAllowedResolutionLevel = getAllowedResolutionLevel(pid, uid);
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700666 mUid = uid;
667 mPid = pid;
668 mPackageName = packageName;
David Christie82edc9b2013-07-19 11:31:42 -0700669 if (workSource != null && workSource.size() <= 0) {
670 workSource = null;
671 }
672 mWorkSource = workSource;
David Christie40e57822013-07-30 11:36:48 -0700673 mHideFromAppOps = hideFromAppOps;
Victoria Lease0aa28602013-05-29 15:28:26 -0700674
Dianne Hackborn1304f4a2013-07-09 18:17:27 -0700675 updateMonitoring(true);
676
Victoria Lease0aa28602013-05-29 15:28:26 -0700677 // construct/configure wakelock
678 mWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, WAKELOCK_KEY);
David Christie82edc9b2013-07-19 11:31:42 -0700679 if (workSource == null) {
680 workSource = new WorkSource(mUid, mPackageName);
681 }
682 mWakeLock.setWorkSource(workSource);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800683 }
684
685 @Override
686 public boolean equals(Object otherObj) {
687 if (otherObj instanceof Receiver) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700688 return mKey.equals(((Receiver)otherObj).mKey);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800689 }
690 return false;
691 }
692
693 @Override
694 public int hashCode() {
695 return mKey.hashCode();
696 }
Mike Lockwood3681f262009-05-12 10:52:03 -0400697
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698 @Override
699 public String toString() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700700 StringBuilder s = new StringBuilder();
701 s.append("Reciever[");
702 s.append(Integer.toHexString(System.identityHashCode(this)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800703 if (mListener != null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700704 s.append(" listener");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705 } else {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700706 s.append(" intent");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700708 for (String p : mUpdateRecords.keySet()) {
709 s.append(" ").append(mUpdateRecords.get(p).toString());
710 }
711 s.append("]");
712 return s.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800713 }
714
David Christie15b31912013-08-13 15:54:32 -0700715 /**
716 * Update AppOp monitoring for this receiver.
717 *
718 * @param allow If true receiver is currently active, if false it's been removed.
719 */
Dianne Hackborn1304f4a2013-07-09 18:17:27 -0700720 public void updateMonitoring(boolean allow) {
David Christie40e57822013-07-30 11:36:48 -0700721 if (mHideFromAppOps) {
722 return;
723 }
724
David Christie15b31912013-08-13 15:54:32 -0700725 boolean requestingLocation = false;
726 boolean requestingHighPowerLocation = false;
727 if (allow) {
728 // See if receiver has any enabled update records. Also note if any update records
729 // are high power (has a high power provider with an interval under a threshold).
730 for (UpdateRecord updateRecord : mUpdateRecords.values()) {
731 if (isAllowedByCurrentUserSettingsLocked(updateRecord.mProvider)) {
732 requestingLocation = true;
733 LocationProviderInterface locationProvider
David Christie2ff96af2014-01-30 16:09:37 -0800734 = mProvidersByName.get(updateRecord.mProvider);
David Christie15b31912013-08-13 15:54:32 -0700735 ProviderProperties properties = locationProvider != null
736 ? locationProvider.getProperties() : null;
737 if (properties != null
738 && properties.mPowerRequirement == Criteria.POWER_HIGH
739 && updateRecord.mRequest.getInterval() < HIGH_POWER_INTERVAL_MS) {
740 requestingHighPowerLocation = true;
741 break;
742 }
743 }
744 }
745 }
746
David Christie0b837452013-07-29 16:02:13 -0700747 // First update monitoring of any location request (including high power).
David Christie15b31912013-08-13 15:54:32 -0700748 mOpMonitoring = updateMonitoring(
749 requestingLocation,
750 mOpMonitoring,
David Christie0b837452013-07-29 16:02:13 -0700751 AppOpsManager.OP_MONITOR_LOCATION);
752
753 // Now update monitoring of high power requests only.
David Christiec750c1f2013-08-08 12:56:57 -0700754 boolean wasHighPowerMonitoring = mOpHighPowerMonitoring;
David Christie15b31912013-08-13 15:54:32 -0700755 mOpHighPowerMonitoring = updateMonitoring(
756 requestingHighPowerLocation,
757 mOpHighPowerMonitoring,
David Christie0b837452013-07-29 16:02:13 -0700758 AppOpsManager.OP_MONITOR_HIGH_POWER_LOCATION);
David Christiec750c1f2013-08-08 12:56:57 -0700759 if (mOpHighPowerMonitoring != wasHighPowerMonitoring) {
David Christie15b31912013-08-13 15:54:32 -0700760 // Send an intent to notify that a high power request has been added/removed.
David Christiec750c1f2013-08-08 12:56:57 -0700761 Intent intent = new Intent(LocationManager.HIGH_POWER_REQUEST_CHANGE_ACTION);
762 mContext.sendBroadcastAsUser(intent, UserHandle.ALL);
763 }
David Christie0b837452013-07-29 16:02:13 -0700764 }
765
766 /**
767 * Update AppOps monitoring for a single location request and op type.
768 *
769 * @param allowMonitoring True if monitoring is allowed for this request/op.
770 * @param currentlyMonitoring True if AppOps is currently monitoring this request/op.
771 * @param op AppOps code for the op to update.
772 * @return True if monitoring is on for this request/op after updating.
773 */
774 private boolean updateMonitoring(boolean allowMonitoring, boolean currentlyMonitoring,
775 int op) {
776 if (!currentlyMonitoring) {
777 if (allowMonitoring) {
778 return mAppOps.startOpNoThrow(op, mUid, mPackageName)
779 == AppOpsManager.MODE_ALLOWED;
780 }
781 } else {
782 if (!allowMonitoring || mAppOps.checkOpNoThrow(op, mUid, mPackageName)
783 != AppOpsManager.MODE_ALLOWED) {
784 mAppOps.finishOp(op, mUid, mPackageName);
785 return false;
786 }
787 }
788
789 return currentlyMonitoring;
Dianne Hackborn1304f4a2013-07-09 18:17:27 -0700790 }
791
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800792 public boolean isListener() {
793 return mListener != null;
794 }
795
796 public boolean isPendingIntent() {
797 return mPendingIntent != null;
798 }
799
800 public ILocationListener getListener() {
801 if (mListener != null) {
802 return mListener;
803 }
804 throw new IllegalStateException("Request for non-existent listener");
805 }
806
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) {
808 if (mListener != null) {
809 try {
Mike Lockwood48f17512009-04-23 09:12:08 -0700810 synchronized (this) {
811 // synchronize to ensure incrementPendingBroadcastsLocked()
812 // is called before decrementPendingBroadcasts()
813 mListener.onStatusChanged(provider, status, extras);
Nick Pellye0fd6932012-07-11 10:26:13 -0700814 // call this after broadcasting so we do not increment
815 // if we throw an exeption.
816 incrementPendingBroadcastsLocked();
Mike Lockwood48f17512009-04-23 09:12:08 -0700817 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800818 } catch (RemoteException e) {
819 return false;
820 }
821 } else {
822 Intent statusChanged = new Intent();
Victoria Lease61ecb022012-11-13 15:12:51 -0800823 statusChanged.putExtras(new Bundle(extras));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800824 statusChanged.putExtra(LocationManager.KEY_STATUS_CHANGED, status);
825 try {
Mike Lockwood48f17512009-04-23 09:12:08 -0700826 synchronized (this) {
827 // synchronize to ensure incrementPendingBroadcastsLocked()
828 // is called before decrementPendingBroadcasts()
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700829 mPendingIntent.send(mContext, 0, statusChanged, this, mLocationHandler,
Victoria Lease37425c32012-10-16 16:08:48 -0700830 getResolutionPermission(mAllowedResolutionLevel));
Mike Lockwood48f17512009-04-23 09:12:08 -0700831 // call this after broadcasting so we do not increment
832 // if we throw an exeption.
833 incrementPendingBroadcastsLocked();
834 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 } catch (PendingIntent.CanceledException e) {
836 return false;
837 }
838 }
839 return true;
840 }
841
842 public boolean callLocationChangedLocked(Location location) {
843 if (mListener != null) {
844 try {
Mike Lockwood48f17512009-04-23 09:12:08 -0700845 synchronized (this) {
846 // synchronize to ensure incrementPendingBroadcastsLocked()
847 // is called before decrementPendingBroadcasts()
Dianne Hackborn6c5406a2012-11-29 16:18:01 -0800848 mListener.onLocationChanged(new Location(location));
Nick Pellye0fd6932012-07-11 10:26:13 -0700849 // call this after broadcasting so we do not increment
850 // if we throw an exeption.
851 incrementPendingBroadcastsLocked();
Mike Lockwood48f17512009-04-23 09:12:08 -0700852 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800853 } catch (RemoteException e) {
854 return false;
855 }
856 } else {
857 Intent locationChanged = new Intent();
Victoria Lease61ecb022012-11-13 15:12:51 -0800858 locationChanged.putExtra(LocationManager.KEY_LOCATION_CHANGED, new Location(location));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800859 try {
Mike Lockwood48f17512009-04-23 09:12:08 -0700860 synchronized (this) {
861 // synchronize to ensure incrementPendingBroadcastsLocked()
862 // is called before decrementPendingBroadcasts()
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700863 mPendingIntent.send(mContext, 0, locationChanged, this, mLocationHandler,
Victoria Lease37425c32012-10-16 16:08:48 -0700864 getResolutionPermission(mAllowedResolutionLevel));
Mike Lockwood48f17512009-04-23 09:12:08 -0700865 // call this after broadcasting so we do not increment
866 // if we throw an exeption.
867 incrementPendingBroadcastsLocked();
868 }
869 } catch (PendingIntent.CanceledException e) {
870 return false;
871 }
872 }
873 return true;
874 }
875
876 public boolean callProviderEnabledLocked(String provider, boolean enabled) {
David Christie15b31912013-08-13 15:54:32 -0700877 // First update AppOp monitoring.
878 // An app may get/lose location access as providers are enabled/disabled.
879 updateMonitoring(true);
880
Mike Lockwood48f17512009-04-23 09:12:08 -0700881 if (mListener != null) {
882 try {
883 synchronized (this) {
884 // synchronize to ensure incrementPendingBroadcastsLocked()
885 // is called before decrementPendingBroadcasts()
886 if (enabled) {
887 mListener.onProviderEnabled(provider);
888 } else {
889 mListener.onProviderDisabled(provider);
890 }
Nick Pellye0fd6932012-07-11 10:26:13 -0700891 // call this after broadcasting so we do not increment
892 // if we throw an exeption.
893 incrementPendingBroadcastsLocked();
Mike Lockwood48f17512009-04-23 09:12:08 -0700894 }
895 } catch (RemoteException e) {
896 return false;
897 }
898 } else {
899 Intent providerIntent = new Intent();
900 providerIntent.putExtra(LocationManager.KEY_PROVIDER_ENABLED, enabled);
901 try {
902 synchronized (this) {
903 // synchronize to ensure incrementPendingBroadcastsLocked()
904 // is called before decrementPendingBroadcasts()
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700905 mPendingIntent.send(mContext, 0, providerIntent, this, mLocationHandler,
Victoria Lease37425c32012-10-16 16:08:48 -0700906 getResolutionPermission(mAllowedResolutionLevel));
Mike Lockwood48f17512009-04-23 09:12:08 -0700907 // call this after broadcasting so we do not increment
908 // if we throw an exeption.
909 incrementPendingBroadcastsLocked();
910 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800911 } catch (PendingIntent.CanceledException e) {
912 return false;
913 }
914 }
915 return true;
916 }
917
Nick Pellyf1be6862012-05-15 10:53:42 -0700918 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800919 public void binderDied() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700920 if (D) Log.d(TAG, "Location listener died");
921
Mike Lockwood2f82c4e2009-04-17 08:24:10 -0400922 synchronized (mLock) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 removeUpdatesLocked(this);
924 }
Mike Lockwood48f17512009-04-23 09:12:08 -0700925 synchronized (this) {
Victoria Lease0aa28602013-05-29 15:28:26 -0700926 clearPendingBroadcastsLocked();
Mike Lockwood48f17512009-04-23 09:12:08 -0700927 }
928 }
929
Nick Pellye0fd6932012-07-11 10:26:13 -0700930 @Override
Mike Lockwood48f17512009-04-23 09:12:08 -0700931 public void onSendFinished(PendingIntent pendingIntent, Intent intent,
932 int resultCode, String resultData, Bundle resultExtras) {
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400933 synchronized (this) {
934 decrementPendingBroadcastsLocked();
Mike Lockwood48f17512009-04-23 09:12:08 -0700935 }
936 }
937
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400938 // this must be called while synchronized by caller in a synchronized block
939 // containing the sending of the broadcaset
940 private void incrementPendingBroadcastsLocked() {
941 if (mPendingBroadcasts++ == 0) {
Victoria Lease0aa28602013-05-29 15:28:26 -0700942 mWakeLock.acquire();
Mike Lockwood0528b9b2009-05-07 10:12:54 -0400943 }
944 }
945
946 private void decrementPendingBroadcastsLocked() {
947 if (--mPendingBroadcasts == 0) {
Victoria Lease0aa28602013-05-29 15:28:26 -0700948 if (mWakeLock.isHeld()) {
949 mWakeLock.release();
950 }
951 }
952 }
953
954 public void clearPendingBroadcastsLocked() {
955 if (mPendingBroadcasts > 0) {
956 mPendingBroadcasts = 0;
957 if (mWakeLock.isHeld()) {
958 mWakeLock.release();
959 }
Mike Lockwood48f17512009-04-23 09:12:08 -0700960 }
961 }
962 }
963
Nick Pellye0fd6932012-07-11 10:26:13 -0700964 @Override
Mike Lockwood48f17512009-04-23 09:12:08 -0700965 public void locationCallbackFinished(ILocationListener listener) {
Dianne Hackbornf5fdca92013-06-05 14:53:33 -0700966 //Do not use getReceiverLocked here as that will add the ILocationListener to
Joshua Bartel080b61b2009-10-05 12:44:46 -0400967 //the receiver list if it is not found. If it is not found then the
968 //LocationListener was removed when it had a pending broadcast and should
969 //not be added back.
Dianne Hackbornf5fdca92013-06-05 14:53:33 -0700970 synchronized (mLock) {
971 IBinder binder = listener.asBinder();
972 Receiver receiver = mReceivers.get(binder);
973 if (receiver != null) {
974 synchronized (receiver) {
975 // so wakelock calls will succeed
976 long identity = Binder.clearCallingIdentity();
977 receiver.decrementPendingBroadcastsLocked();
978 Binder.restoreCallingIdentity(identity);
David Christie2ff96af2014-01-30 16:09:37 -0800979 }
Dianne Hackbornf5fdca92013-06-05 14:53:33 -0700980 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981 }
982 }
983
Lifu Tang82f893d2016-01-21 18:15:33 -0800984 /**
Lifu Tang9363b942016-02-16 18:07:00 -0800985 * Returns the system information of the GNSS hardware.
Lifu Tang82f893d2016-01-21 18:15:33 -0800986 */
987 @Override
Lifu Tang9363b942016-02-16 18:07:00 -0800988 public int getGnssYearOfHardware() {
Lifu Tang818aa2c2016-02-01 01:52:00 -0800989 if (mGnssNavigationMessageProvider != null) {
Lifu Tang9363b942016-02-16 18:07:00 -0800990 return mGnssSystemInfoProvider.getGnssYearOfHardware();
Lifu Tang82f893d2016-01-21 18:15:33 -0800991 } else {
992 return 0;
993 }
994 }
995
Nick Pelly6fa9ad42012-07-16 12:18:23 -0700996 private void addProviderLocked(LocationProviderInterface provider) {
Mike Lockwood15e3d0f2009-05-01 07:53:28 -0400997 mProviders.add(provider);
998 mProvidersByName.put(provider.getName(), provider);
999 }
1000
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001001 private void removeProviderLocked(LocationProviderInterface provider) {
1002 provider.disable();
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001003 mProviders.remove(provider);
1004 mProvidersByName.remove(provider.getName());
1005 }
1006
Victoria Lease03cdd3d2013-02-01 15:15:54 -08001007 /**
Victoria Lease09eeaec2013-02-05 11:34:13 -08001008 * Returns "true" if access to the specified location provider is allowed by the current
1009 * user's settings. Access to all location providers is forbidden to non-location-provider
1010 * processes belonging to background users.
Victoria Lease03cdd3d2013-02-01 15:15:54 -08001011 *
1012 * @param provider the name of the location provider
Victoria Lease03cdd3d2013-02-01 15:15:54 -08001013 * @return
1014 */
Victoria Lease09eeaec2013-02-05 11:34:13 -08001015 private boolean isAllowedByCurrentUserSettingsLocked(String provider) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001016 if (mEnabledProviders.contains(provider)) {
1017 return true;
1018 }
1019 if (mDisabledProviders.contains(provider)) {
1020 return false;
1021 }
1022 // Use system settings
1023 ContentResolver resolver = mContext.getContentResolver();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001024
Victoria Leaseb711d572012-10-02 13:14:11 -07001025 return Settings.Secure.isLocationProviderEnabledForUser(resolver, provider, mCurrentUserId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001026 }
1027
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001028 /**
Victoria Lease09eeaec2013-02-05 11:34:13 -08001029 * Returns "true" if access to the specified location provider is allowed by the specified
1030 * user's settings. Access to all location providers is forbidden to non-location-provider
1031 * processes belonging to background users.
1032 *
1033 * @param provider the name of the location provider
1034 * @param uid the requestor's UID
1035 * @return
1036 */
1037 private boolean isAllowedByUserSettingsLocked(String provider, int uid) {
Amith Yamasanib27528d2014-06-05 15:02:10 -07001038 if (!isCurrentProfile(UserHandle.getUserId(uid)) && !isUidALocationProvider(uid)) {
Victoria Lease09eeaec2013-02-05 11:34:13 -08001039 return false;
1040 }
1041 return isAllowedByCurrentUserSettingsLocked(provider);
1042 }
1043
1044 /**
Victoria Lease37425c32012-10-16 16:08:48 -07001045 * Returns the permission string associated with the specified resolution level.
1046 *
1047 * @param resolutionLevel the resolution level
1048 * @return the permission string
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001049 */
Victoria Lease37425c32012-10-16 16:08:48 -07001050 private String getResolutionPermission(int resolutionLevel) {
1051 switch (resolutionLevel) {
1052 case RESOLUTION_LEVEL_FINE:
1053 return android.Manifest.permission.ACCESS_FINE_LOCATION;
1054 case RESOLUTION_LEVEL_COARSE:
1055 return android.Manifest.permission.ACCESS_COARSE_LOCATION;
1056 default:
1057 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001058 }
Victoria Leaseda479c52012-10-15 15:24:16 -07001059 }
Dianne Hackborn6c418d52011-06-29 14:05:33 -07001060
Victoria Leaseda479c52012-10-15 15:24:16 -07001061 /**
Victoria Lease37425c32012-10-16 16:08:48 -07001062 * Returns the resolution level allowed to the given PID/UID pair.
1063 *
1064 * @param pid the PID
1065 * @param uid the UID
1066 * @return resolution level allowed to the pid/uid pair
Victoria Leaseda479c52012-10-15 15:24:16 -07001067 */
Victoria Lease37425c32012-10-16 16:08:48 -07001068 private int getAllowedResolutionLevel(int pid, int uid) {
1069 if (mContext.checkPermission(android.Manifest.permission.ACCESS_FINE_LOCATION,
1070 pid, uid) == PackageManager.PERMISSION_GRANTED) {
1071 return RESOLUTION_LEVEL_FINE;
1072 } else if (mContext.checkPermission(android.Manifest.permission.ACCESS_COARSE_LOCATION,
1073 pid, uid) == PackageManager.PERMISSION_GRANTED) {
1074 return RESOLUTION_LEVEL_COARSE;
1075 } else {
1076 return RESOLUTION_LEVEL_NONE;
Victoria Leaseda479c52012-10-15 15:24:16 -07001077 }
Victoria Lease4fab68b2012-09-13 13:20:59 -07001078 }
1079
1080 /**
Victoria Lease37425c32012-10-16 16:08:48 -07001081 * Returns the resolution level allowed to the caller
1082 *
1083 * @return resolution level allowed to caller
Victoria Lease4fab68b2012-09-13 13:20:59 -07001084 */
Victoria Lease37425c32012-10-16 16:08:48 -07001085 private int getCallerAllowedResolutionLevel() {
1086 return getAllowedResolutionLevel(Binder.getCallingPid(), Binder.getCallingUid());
1087 }
1088
1089 /**
1090 * Throw SecurityException if specified resolution level is insufficient to use geofences.
1091 *
1092 * @param allowedResolutionLevel resolution level allowed to caller
1093 */
1094 private void checkResolutionLevelIsSufficientForGeofenceUse(int allowedResolutionLevel) {
1095 if (allowedResolutionLevel < RESOLUTION_LEVEL_FINE) {
Victoria Lease4fab68b2012-09-13 13:20:59 -07001096 throw new SecurityException("Geofence usage requires ACCESS_FINE_LOCATION permission");
1097 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098 }
1099
Victoria Lease37425c32012-10-16 16:08:48 -07001100 /**
1101 * Return the minimum resolution level required to use the specified location provider.
1102 *
1103 * @param provider the name of the location provider
1104 * @return minimum resolution level required for provider
1105 */
1106 private int getMinimumResolutionLevelForProviderUse(String provider) {
Victoria Lease8dbb6342012-09-21 16:55:53 -07001107 if (LocationManager.GPS_PROVIDER.equals(provider) ||
1108 LocationManager.PASSIVE_PROVIDER.equals(provider)) {
1109 // gps and passive providers require FINE permission
Victoria Lease37425c32012-10-16 16:08:48 -07001110 return RESOLUTION_LEVEL_FINE;
Victoria Lease8dbb6342012-09-21 16:55:53 -07001111 } else if (LocationManager.NETWORK_PROVIDER.equals(provider) ||
1112 LocationManager.FUSED_PROVIDER.equals(provider)) {
1113 // network and fused providers are ok with COARSE or FINE
Victoria Lease37425c32012-10-16 16:08:48 -07001114 return RESOLUTION_LEVEL_COARSE;
Laurent Tu941221c2012-10-04 14:21:52 -07001115 } else {
1116 // mock providers
1117 LocationProviderInterface lp = mMockProviders.get(provider);
1118 if (lp != null) {
1119 ProviderProperties properties = lp.getProperties();
1120 if (properties != null) {
1121 if (properties.mRequiresSatellite) {
1122 // provider requiring satellites require FINE permission
Victoria Lease37425c32012-10-16 16:08:48 -07001123 return RESOLUTION_LEVEL_FINE;
Laurent Tu941221c2012-10-04 14:21:52 -07001124 } else if (properties.mRequiresNetwork || properties.mRequiresCell) {
1125 // provider requiring network and or cell require COARSE or FINE
Victoria Lease37425c32012-10-16 16:08:48 -07001126 return RESOLUTION_LEVEL_COARSE;
Laurent Tu941221c2012-10-04 14:21:52 -07001127 }
1128 }
1129 }
Victoria Lease8dbb6342012-09-21 16:55:53 -07001130 }
Victoria Lease37425c32012-10-16 16:08:48 -07001131 return RESOLUTION_LEVEL_FINE; // if in doubt, require FINE
Victoria Leaseda479c52012-10-15 15:24:16 -07001132 }
1133
Victoria Lease37425c32012-10-16 16:08:48 -07001134 /**
1135 * Throw SecurityException if specified resolution level is insufficient to use the named
1136 * location provider.
1137 *
1138 * @param allowedResolutionLevel resolution level allowed to caller
1139 * @param providerName the name of the location provider
1140 */
1141 private void checkResolutionLevelIsSufficientForProviderUse(int allowedResolutionLevel,
1142 String providerName) {
1143 int requiredResolutionLevel = getMinimumResolutionLevelForProviderUse(providerName);
1144 if (allowedResolutionLevel < requiredResolutionLevel) {
1145 switch (requiredResolutionLevel) {
1146 case RESOLUTION_LEVEL_FINE:
1147 throw new SecurityException("\"" + providerName + "\" location provider " +
1148 "requires ACCESS_FINE_LOCATION permission.");
1149 case RESOLUTION_LEVEL_COARSE:
1150 throw new SecurityException("\"" + providerName + "\" location provider " +
1151 "requires ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission.");
1152 default:
1153 throw new SecurityException("Insufficient permission for \"" + providerName +
1154 "\" location provider.");
Victoria Leaseda479c52012-10-15 15:24:16 -07001155 }
1156 }
Victoria Lease8dbb6342012-09-21 16:55:53 -07001157 }
1158
David Christie82edc9b2013-07-19 11:31:42 -07001159 /**
1160 * Throw SecurityException if WorkSource use is not allowed (i.e. can't blame other packages
1161 * for battery).
1162 */
David Christie40e57822013-07-30 11:36:48 -07001163 private void checkDeviceStatsAllowed() {
David Christie82edc9b2013-07-19 11:31:42 -07001164 mContext.enforceCallingOrSelfPermission(
1165 android.Manifest.permission.UPDATE_DEVICE_STATS, null);
1166 }
1167
David Christie40e57822013-07-30 11:36:48 -07001168 private void checkUpdateAppOpsAllowed() {
1169 mContext.enforceCallingOrSelfPermission(
1170 android.Manifest.permission.UPDATE_APP_OPS_STATS, null);
1171 }
1172
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001173 public static int resolutionLevelToOp(int allowedResolutionLevel) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08001174 if (allowedResolutionLevel != RESOLUTION_LEVEL_NONE) {
1175 if (allowedResolutionLevel == RESOLUTION_LEVEL_COARSE) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001176 return AppOpsManager.OP_COARSE_LOCATION;
Dianne Hackborn35654b62013-01-14 17:38:02 -08001177 } else {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001178 return AppOpsManager.OP_FINE_LOCATION;
Dianne Hackborn35654b62013-01-14 17:38:02 -08001179 }
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001180 }
1181 return -1;
1182 }
1183
David Christieb870dbf2015-06-22 12:42:53 -07001184 boolean reportLocationAccessNoThrow(
1185 int pid, int uid, String packageName, int allowedResolutionLevel) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001186 int op = resolutionLevelToOp(allowedResolutionLevel);
1187 if (op >= 0) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08001188 if (mAppOps.noteOpNoThrow(op, uid, packageName) != AppOpsManager.MODE_ALLOWED) {
1189 return false;
1190 }
1191 }
David Christieb870dbf2015-06-22 12:42:53 -07001192
1193 if (getAllowedResolutionLevel(pid, uid) < allowedResolutionLevel) {
1194 return false;
1195 }
1196
Dianne Hackborn35654b62013-01-14 17:38:02 -08001197 return true;
1198 }
1199
David Christieb870dbf2015-06-22 12:42:53 -07001200 boolean checkLocationAccess(int pid, int uid, String packageName, int allowedResolutionLevel) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001201 int op = resolutionLevelToOp(allowedResolutionLevel);
1202 if (op >= 0) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08001203 if (mAppOps.checkOp(op, uid, packageName) != AppOpsManager.MODE_ALLOWED) {
1204 return false;
1205 }
1206 }
David Christieb870dbf2015-06-22 12:42:53 -07001207
1208 if (getAllowedResolutionLevel(pid, uid) < allowedResolutionLevel) {
1209 return false;
1210 }
1211
Dianne Hackborn35654b62013-01-14 17:38:02 -08001212 return true;
1213 }
1214
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001215 /**
1216 * Returns all providers by name, including passive, but excluding
Laurent Tu0d21e212012-10-02 15:33:48 -07001217 * fused, also including ones that are not permitted to
1218 * be accessed by the calling activity or are currently disabled.
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001219 */
Nick Pellye0fd6932012-07-11 10:26:13 -07001220 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001221 public List<String> getAllProviders() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001222 ArrayList<String> out;
1223 synchronized (mLock) {
1224 out = new ArrayList<String>(mProviders.size());
1225 for (LocationProviderInterface provider : mProviders) {
1226 String name = provider.getName();
1227 if (LocationManager.FUSED_PROVIDER.equals(name)) {
Mike Lockwood03ca2162010-04-01 08:10:09 -07001228 continue;
1229 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 out.add(name);
1231 }
1232 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001233
1234 if (D) Log.d(TAG, "getAllProviders()=" + out);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001235 return out;
1236 }
1237
Mike Lockwood03ca2162010-04-01 08:10:09 -07001238 /**
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001239 * Return all providers by name, that match criteria and are optionally
1240 * enabled.
1241 * Can return passive provider, but never returns fused provider.
Mike Lockwood03ca2162010-04-01 08:10:09 -07001242 */
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001243 @Override
1244 public List<String> getProviders(Criteria criteria, boolean enabledOnly) {
Victoria Lease37425c32012-10-16 16:08:48 -07001245 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001246 ArrayList<String> out;
Victoria Lease03cdd3d2013-02-01 15:15:54 -08001247 int uid = Binder.getCallingUid();;
Victoria Lease269518e2012-10-29 08:25:39 -07001248 long identity = Binder.clearCallingIdentity();
Victoria Leaseb711d572012-10-02 13:14:11 -07001249 try {
1250 synchronized (mLock) {
1251 out = new ArrayList<String>(mProviders.size());
1252 for (LocationProviderInterface provider : mProviders) {
1253 String name = provider.getName();
1254 if (LocationManager.FUSED_PROVIDER.equals(name)) {
Victoria Lease8dbb6342012-09-21 16:55:53 -07001255 continue;
1256 }
Victoria Lease37425c32012-10-16 16:08:48 -07001257 if (allowedResolutionLevel >= getMinimumResolutionLevelForProviderUse(name)) {
Victoria Lease09eeaec2013-02-05 11:34:13 -08001258 if (enabledOnly && !isAllowedByUserSettingsLocked(name, uid)) {
Victoria Leaseb711d572012-10-02 13:14:11 -07001259 continue;
1260 }
1261 if (criteria != null && !LocationProvider.propertiesMeetCriteria(
1262 name, provider.getProperties(), criteria)) {
1263 continue;
1264 }
1265 out.add(name);
Victoria Lease8dbb6342012-09-21 16:55:53 -07001266 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001267 }
Mike Lockwood03ca2162010-04-01 08:10:09 -07001268 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001269 } finally {
1270 Binder.restoreCallingIdentity(identity);
Mike Lockwood03ca2162010-04-01 08:10:09 -07001271 }
1272
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001273 if (D) Log.d(TAG, "getProviders()=" + out);
1274 return out;
Mike Lockwood03ca2162010-04-01 08:10:09 -07001275 }
1276
1277 /**
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001278 * Return the name of the best provider given a Criteria object.
1279 * This method has been deprecated from the public API,
Victoria Lease8dbb6342012-09-21 16:55:53 -07001280 * and the whole LocationProvider (including #meetsCriteria)
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001281 * has been deprecated as well. So this method now uses
1282 * some simplified logic.
Mike Lockwood03ca2162010-04-01 08:10:09 -07001283 */
Nick Pellye0fd6932012-07-11 10:26:13 -07001284 @Override
Mike Lockwood03ca2162010-04-01 08:10:09 -07001285 public String getBestProvider(Criteria criteria, boolean enabledOnly) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001286 String result = null;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001287
1288 List<String> providers = getProviders(criteria, enabledOnly);
Victoria Lease8dbb6342012-09-21 16:55:53 -07001289 if (!providers.isEmpty()) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001290 result = pickBest(providers);
1291 if (D) Log.d(TAG, "getBestProvider(" + criteria + ", " + enabledOnly + ")=" + result);
1292 return result;
1293 }
1294 providers = getProviders(null, enabledOnly);
Victoria Lease8dbb6342012-09-21 16:55:53 -07001295 if (!providers.isEmpty()) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001296 result = pickBest(providers);
1297 if (D) Log.d(TAG, "getBestProvider(" + criteria + ", " + enabledOnly + ")=" + result);
1298 return result;
Mike Lockwood03ca2162010-04-01 08:10:09 -07001299 }
1300
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001301 if (D) Log.d(TAG, "getBestProvider(" + criteria + ", " + enabledOnly + ")=" + result);
Mike Lockwood03ca2162010-04-01 08:10:09 -07001302 return null;
1303 }
1304
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001305 private String pickBest(List<String> providers) {
Victoria Lease1925e292012-09-24 17:00:18 -07001306 if (providers.contains(LocationManager.GPS_PROVIDER)) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001307 return LocationManager.GPS_PROVIDER;
Victoria Lease1925e292012-09-24 17:00:18 -07001308 } else if (providers.contains(LocationManager.NETWORK_PROVIDER)) {
1309 return LocationManager.NETWORK_PROVIDER;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001310 } else {
1311 return providers.get(0);
1312 }
1313 }
1314
Nick Pellye0fd6932012-07-11 10:26:13 -07001315 @Override
Mike Lockwood03ca2162010-04-01 08:10:09 -07001316 public boolean providerMeetsCriteria(String provider, Criteria criteria) {
1317 LocationProviderInterface p = mProvidersByName.get(provider);
1318 if (p == null) {
1319 throw new IllegalArgumentException("provider=" + provider);
1320 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001321
1322 boolean result = LocationProvider.propertiesMeetCriteria(
1323 p.getName(), p.getProperties(), criteria);
1324 if (D) Log.d(TAG, "providerMeetsCriteria(" + provider + ", " + criteria + ")=" + result);
1325 return result;
Mike Lockwood03ca2162010-04-01 08:10:09 -07001326 }
1327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001328 private void updateProvidersLocked() {
Brad Fitzpatrick0c5a0402010-08-27 14:01:23 -07001329 boolean changesMade = false;
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001330 for (int i = mProviders.size() - 1; i >= 0; i--) {
Mike Lockwoodd03ff942010-02-09 08:46:14 -05001331 LocationProviderInterface p = mProviders.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001332 boolean isEnabled = p.isEnabled();
1333 String name = p.getName();
Victoria Lease09eeaec2013-02-05 11:34:13 -08001334 boolean shouldBeEnabled = isAllowedByCurrentUserSettingsLocked(name);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001335 if (isEnabled && !shouldBeEnabled) {
Amith Yamasanib27528d2014-06-05 15:02:10 -07001336 updateProviderListenersLocked(name, false);
David Christieb084fef2013-12-18 14:33:57 -08001337 // If any provider has been disabled, clear all last locations for all providers.
1338 // This is to be on the safe side in case a provider has location derived from
1339 // this disabled provider.
1340 mLastLocation.clear();
1341 mLastLocationCoarseInterval.clear();
Brad Fitzpatrick0c5a0402010-08-27 14:01:23 -07001342 changesMade = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001343 } else if (!isEnabled && shouldBeEnabled) {
Amith Yamasanib27528d2014-06-05 15:02:10 -07001344 updateProviderListenersLocked(name, true);
Brad Fitzpatrick0c5a0402010-08-27 14:01:23 -07001345 changesMade = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001346 }
Brad Fitzpatrick0c5a0402010-08-27 14:01:23 -07001347 }
1348 if (changesMade) {
Dianne Hackborn5ac72a22012-08-29 18:32:08 -07001349 mContext.sendBroadcastAsUser(new Intent(LocationManager.PROVIDERS_CHANGED_ACTION),
1350 UserHandle.ALL);
Tom O'Neill40a86c22013-09-03 18:05:13 -07001351 mContext.sendBroadcastAsUser(new Intent(LocationManager.MODE_CHANGED_ACTION),
1352 UserHandle.ALL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001353 }
1354 }
1355
Amith Yamasanib27528d2014-06-05 15:02:10 -07001356 private void updateProviderListenersLocked(String provider, boolean enabled) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001357 int listeners = 0;
1358
Mike Lockwoodd03ff942010-02-09 08:46:14 -05001359 LocationProviderInterface p = mProvidersByName.get(provider);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001360 if (p == null) return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001361
1362 ArrayList<Receiver> deadReceivers = null;
Nick Pellye0fd6932012-07-11 10:26:13 -07001363
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001364 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider);
1365 if (records != null) {
1366 final int N = records.size();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001367 for (int i = 0; i < N; i++) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001368 UpdateRecord record = records.get(i);
Amith Yamasanib27528d2014-06-05 15:02:10 -07001369 if (isCurrentProfile(UserHandle.getUserId(record.mReceiver.mUid))) {
Victoria Leaseb711d572012-10-02 13:14:11 -07001370 // Sends a notification message to the receiver
1371 if (!record.mReceiver.callProviderEnabledLocked(provider, enabled)) {
1372 if (deadReceivers == null) {
1373 deadReceivers = new ArrayList<Receiver>();
1374 }
1375 deadReceivers.add(record.mReceiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001376 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001377 listeners++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001378 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001379 }
1380 }
1381
1382 if (deadReceivers != null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001383 for (int i = deadReceivers.size() - 1; i >= 0; i--) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001384 removeUpdatesLocked(deadReceivers.get(i));
1385 }
1386 }
Nick Pellye0fd6932012-07-11 10:26:13 -07001387
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001388 if (enabled) {
1389 p.enable();
1390 if (listeners > 0) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001391 applyRequirementsLocked(provider);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001392 }
1393 } else {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001394 p.disable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001395 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001396 }
1397
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001398 private void applyRequirementsLocked(String provider) {
1399 LocationProviderInterface p = mProvidersByName.get(provider);
1400 if (p == null) return;
1401
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001402 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001403 WorkSource worksource = new WorkSource();
1404 ProviderRequest providerRequest = new ProviderRequest();
1405
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001406 if (records != null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001407 for (UpdateRecord record : records) {
Amith Yamasanib27528d2014-06-05 15:02:10 -07001408 if (isCurrentProfile(UserHandle.getUserId(record.mReceiver.mUid))) {
David Christieb870dbf2015-06-22 12:42:53 -07001409 if (checkLocationAccess(
1410 record.mReceiver.mPid,
1411 record.mReceiver.mUid,
1412 record.mReceiver.mPackageName,
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001413 record.mReceiver.mAllowedResolutionLevel)) {
1414 LocationRequest locationRequest = record.mRequest;
1415 providerRequest.locationRequests.add(locationRequest);
1416 if (locationRequest.getInterval() < providerRequest.interval) {
1417 providerRequest.reportLocation = true;
1418 providerRequest.interval = locationRequest.getInterval();
1419 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001420 }
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -07001421 }
1422 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001423
1424 if (providerRequest.reportLocation) {
1425 // calculate who to blame for power
1426 // This is somewhat arbitrary. We pick a threshold interval
1427 // that is slightly higher that the minimum interval, and
1428 // spread the blame across all applications with a request
1429 // under that threshold.
1430 long thresholdInterval = (providerRequest.interval + 1000) * 3 / 2;
1431 for (UpdateRecord record : records) {
Amith Yamasanib27528d2014-06-05 15:02:10 -07001432 if (isCurrentProfile(UserHandle.getUserId(record.mReceiver.mUid))) {
Victoria Leaseb711d572012-10-02 13:14:11 -07001433 LocationRequest locationRequest = record.mRequest;
1434 if (locationRequest.getInterval() <= thresholdInterval) {
David Christiee55c9682013-08-22 10:10:34 -07001435 if (record.mReceiver.mWorkSource != null
1436 && record.mReceiver.mWorkSource.size() > 0
1437 && record.mReceiver.mWorkSource.getName(0) != null) {
David Christie82edc9b2013-07-19 11:31:42 -07001438 // Assign blame to another work source.
David Christiee55c9682013-08-22 10:10:34 -07001439 // Can only assign blame if the WorkSource contains names.
David Christie82edc9b2013-07-19 11:31:42 -07001440 worksource.add(record.mReceiver.mWorkSource);
1441 } else {
1442 // Assign blame to caller.
1443 worksource.add(
1444 record.mReceiver.mUid,
1445 record.mReceiver.mPackageName);
1446 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001447 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001448 }
Dianne Hackborn7e9f4eb2010-09-10 18:43:00 -07001449 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 }
1451 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001452
1453 if (D) Log.d(TAG, "provider request: " + provider + " " + providerRequest);
1454 p.setRequest(providerRequest, worksource);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 }
1456
1457 private class UpdateRecord {
1458 final String mProvider;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001459 final LocationRequest mRequest;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001460 final Receiver mReceiver;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001461 Location mLastFixBroadcast;
1462 long mLastStatusBroadcast;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001463
1464 /**
1465 * Note: must be constructed with lock held.
1466 */
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001467 UpdateRecord(String provider, LocationRequest request, Receiver receiver) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001468 mProvider = provider;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001469 mRequest = request;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001470 mReceiver = receiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001471
1472 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider);
1473 if (records == null) {
1474 records = new ArrayList<UpdateRecord>();
1475 mRecordsByProvider.put(provider, records);
1476 }
1477 if (!records.contains(this)) {
1478 records.add(this);
1479 }
David Christie2ff96af2014-01-30 16:09:37 -08001480
1481 // Update statistics for historical location requests by package/provider
1482 mRequestStatistics.startRequesting(
1483 mReceiver.mPackageName, provider, request.getInterval());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001484 }
1485
1486 /**
David Christie2ff96af2014-01-30 16:09:37 -08001487 * Method to be called when a record will no longer be used.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001488 */
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001489 void disposeLocked(boolean removeReceiver) {
David Christie2ff96af2014-01-30 16:09:37 -08001490 mRequestStatistics.stopRequesting(mReceiver.mPackageName, mProvider);
1491
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001492 // remove from mRecordsByProvider
1493 ArrayList<UpdateRecord> globalRecords = mRecordsByProvider.get(this.mProvider);
1494 if (globalRecords != null) {
1495 globalRecords.remove(this);
1496 }
1497
1498 if (!removeReceiver) return; // the caller will handle the rest
1499
1500 // remove from Receiver#mUpdateRecords
1501 HashMap<String, UpdateRecord> receiverRecords = mReceiver.mUpdateRecords;
1502 if (receiverRecords != null) {
1503 receiverRecords.remove(this.mProvider);
1504
1505 // and also remove the Receiver if it has no more update records
1506 if (removeReceiver && receiverRecords.size() == 0) {
1507 removeUpdatesLocked(mReceiver);
1508 }
Mike Lockwood3a76fd62009-09-01 07:26:56 -04001509 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001510 }
1511
1512 @Override
1513 public String toString() {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001514 StringBuilder s = new StringBuilder();
1515 s.append("UpdateRecord[");
1516 s.append(mProvider);
1517 s.append(' ').append(mReceiver.mPackageName).append('(');
1518 s.append(mReceiver.mUid).append(')');
1519 s.append(' ').append(mRequest);
1520 s.append(']');
1521 return s.toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001522 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001523 }
1524
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001525 private Receiver getReceiverLocked(ILocationListener listener, int pid, int uid,
David Christie40e57822013-07-30 11:36:48 -07001526 String packageName, WorkSource workSource, boolean hideFromAppOps) {
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001527 IBinder binder = listener.asBinder();
1528 Receiver receiver = mReceivers.get(binder);
1529 if (receiver == null) {
David Christie40e57822013-07-30 11:36:48 -07001530 receiver = new Receiver(listener, null, pid, uid, packageName, workSource,
1531 hideFromAppOps);
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001532 try {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001533 receiver.getListener().asBinder().linkToDeath(receiver, 0);
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001534 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08001535 Slog.e(TAG, "linkToDeath failed:", e);
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001536 return null;
1537 }
Wen Jingcb3ab222014-03-27 13:42:59 +08001538 mReceivers.put(binder, receiver);
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001539 }
1540 return receiver;
1541 }
1542
David Christie82edc9b2013-07-19 11:31:42 -07001543 private Receiver getReceiverLocked(PendingIntent intent, int pid, int uid, String packageName,
David Christie40e57822013-07-30 11:36:48 -07001544 WorkSource workSource, boolean hideFromAppOps) {
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001545 Receiver receiver = mReceivers.get(intent);
1546 if (receiver == null) {
David Christie40e57822013-07-30 11:36:48 -07001547 receiver = new Receiver(null, intent, pid, uid, packageName, workSource,
1548 hideFromAppOps);
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001549 mReceivers.put(intent, receiver);
1550 }
1551 return receiver;
1552 }
1553
Victoria Lease37425c32012-10-16 16:08:48 -07001554 /**
1555 * Creates a LocationRequest based upon the supplied LocationRequest that to meets resolution
1556 * and consistency requirements.
1557 *
1558 * @param request the LocationRequest from which to create a sanitized version
Victoria Lease37425c32012-10-16 16:08:48 -07001559 * @return a version of request that meets the given resolution and consistency requirements
1560 * @hide
1561 */
1562 private LocationRequest createSanitizedRequest(LocationRequest request, int resolutionLevel) {
1563 LocationRequest sanitizedRequest = new LocationRequest(request);
1564 if (resolutionLevel < RESOLUTION_LEVEL_FINE) {
1565 switch (sanitizedRequest.getQuality()) {
Victoria Lease09016ab2012-09-16 12:33:15 -07001566 case LocationRequest.ACCURACY_FINE:
Victoria Lease37425c32012-10-16 16:08:48 -07001567 sanitizedRequest.setQuality(LocationRequest.ACCURACY_BLOCK);
Victoria Lease09016ab2012-09-16 12:33:15 -07001568 break;
1569 case LocationRequest.POWER_HIGH:
Victoria Lease37425c32012-10-16 16:08:48 -07001570 sanitizedRequest.setQuality(LocationRequest.POWER_LOW);
Victoria Lease09016ab2012-09-16 12:33:15 -07001571 break;
1572 }
1573 // throttle
Victoria Lease37425c32012-10-16 16:08:48 -07001574 if (sanitizedRequest.getInterval() < LocationFudger.FASTEST_INTERVAL_MS) {
1575 sanitizedRequest.setInterval(LocationFudger.FASTEST_INTERVAL_MS);
Victoria Lease09016ab2012-09-16 12:33:15 -07001576 }
Victoria Lease37425c32012-10-16 16:08:48 -07001577 if (sanitizedRequest.getFastestInterval() < LocationFudger.FASTEST_INTERVAL_MS) {
1578 sanitizedRequest.setFastestInterval(LocationFudger.FASTEST_INTERVAL_MS);
Victoria Lease09016ab2012-09-16 12:33:15 -07001579 }
Nick Pelly74fa7ea2012-08-13 19:36:38 -07001580 }
Nick Pelly4e31c4f2012-08-13 19:35:39 -07001581 // make getFastestInterval() the minimum of interval and fastest interval
Victoria Lease37425c32012-10-16 16:08:48 -07001582 if (sanitizedRequest.getFastestInterval() > sanitizedRequest.getInterval()) {
Nick Pelly4e31c4f2012-08-13 19:35:39 -07001583 request.setFastestInterval(request.getInterval());
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001584 }
Victoria Lease37425c32012-10-16 16:08:48 -07001585 return sanitizedRequest;
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001586 }
1587
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001588 private void checkPackageName(String packageName) {
Nick Pellye0fd6932012-07-11 10:26:13 -07001589 if (packageName == null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001590 throw new SecurityException("invalid package name: " + packageName);
Nick Pellye0fd6932012-07-11 10:26:13 -07001591 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001592 int uid = Binder.getCallingUid();
Nick Pellye0fd6932012-07-11 10:26:13 -07001593 String[] packages = mPackageManager.getPackagesForUid(uid);
1594 if (packages == null) {
1595 throw new SecurityException("invalid UID " + uid);
1596 }
1597 for (String pkg : packages) {
1598 if (packageName.equals(pkg)) return;
1599 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001600 throw new SecurityException("invalid package name: " + packageName);
Nick Pellye0fd6932012-07-11 10:26:13 -07001601 }
1602
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001603 private void checkPendingIntent(PendingIntent intent) {
1604 if (intent == null) {
1605 throw new IllegalArgumentException("invalid pending intent: " + intent);
Dianne Hackborn6c418d52011-06-29 14:05:33 -07001606 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001607 }
1608
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001609 private Receiver checkListenerOrIntentLocked(ILocationListener listener, PendingIntent intent,
David Christie40e57822013-07-30 11:36:48 -07001610 int pid, int uid, String packageName, WorkSource workSource, boolean hideFromAppOps) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001611 if (intent == null && listener == null) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001612 throw new IllegalArgumentException("need either listener or intent");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001613 } else if (intent != null && listener != null) {
1614 throw new IllegalArgumentException("cannot register both listener and intent");
1615 } else if (intent != null) {
1616 checkPendingIntent(intent);
David Christie40e57822013-07-30 11:36:48 -07001617 return getReceiverLocked(intent, pid, uid, packageName, workSource, hideFromAppOps);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001618 } else {
David Christie40e57822013-07-30 11:36:48 -07001619 return getReceiverLocked(listener, pid, uid, packageName, workSource, hideFromAppOps);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001620 }
Dianne Hackborn6c418d52011-06-29 14:05:33 -07001621 }
1622
Nick Pellye0fd6932012-07-11 10:26:13 -07001623 @Override
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001624 public void requestLocationUpdates(LocationRequest request, ILocationListener listener,
1625 PendingIntent intent, String packageName) {
1626 if (request == null) request = DEFAULT_LOCATION_REQUEST;
1627 checkPackageName(packageName);
Victoria Lease37425c32012-10-16 16:08:48 -07001628 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
1629 checkResolutionLevelIsSufficientForProviderUse(allowedResolutionLevel,
1630 request.getProvider());
David Christie82edc9b2013-07-19 11:31:42 -07001631 WorkSource workSource = request.getWorkSource();
1632 if (workSource != null && workSource.size() > 0) {
David Christie40e57822013-07-30 11:36:48 -07001633 checkDeviceStatsAllowed();
1634 }
1635 boolean hideFromAppOps = request.getHideFromAppOps();
1636 if (hideFromAppOps) {
1637 checkUpdateAppOpsAllowed();
David Christie82edc9b2013-07-19 11:31:42 -07001638 }
Victoria Lease37425c32012-10-16 16:08:48 -07001639 LocationRequest sanitizedRequest = createSanitizedRequest(request, allowedResolutionLevel);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001640
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001641 final int pid = Binder.getCallingPid();
1642 final int uid = Binder.getCallingUid();
Nick Pelly2b7a0d02012-08-17 15:09:44 -07001643 // providers may use public location API's, need to clear identity
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 long identity = Binder.clearCallingIdentity();
1645 try {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001646 // We don't check for MODE_IGNORED here; we will do that when we go to deliver
1647 // a location.
David Christieb870dbf2015-06-22 12:42:53 -07001648 checkLocationAccess(pid, uid, packageName, allowedResolutionLevel);
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001649
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001650 synchronized (mLock) {
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001651 Receiver recevier = checkListenerOrIntentLocked(listener, intent, pid, uid,
David Christie40e57822013-07-30 11:36:48 -07001652 packageName, workSource, hideFromAppOps);
Victoria Lease37425c32012-10-16 16:08:48 -07001653 requestLocationUpdatesLocked(sanitizedRequest, recevier, pid, uid, packageName);
Mike Lockwood2d4d1bf2010-10-18 17:06:26 -04001654 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001655 } finally {
1656 Binder.restoreCallingIdentity(identity);
1657 }
1658 }
1659
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001660 private void requestLocationUpdatesLocked(LocationRequest request, Receiver receiver,
1661 int pid, int uid, String packageName) {
1662 // Figure out the provider. Either its explicitly request (legacy use cases), or
1663 // use the fused provider
1664 if (request == null) request = DEFAULT_LOCATION_REQUEST;
1665 String name = request.getProvider();
Victoria Lease09016ab2012-09-16 12:33:15 -07001666 if (name == null) {
1667 throw new IllegalArgumentException("provider name must not be null");
1668 }
Zhentao Sunc5fc9982013-04-17 17:47:53 -07001669
1670 if (D) Log.d(TAG, "request " + Integer.toHexString(System.identityHashCode(receiver))
1671 + " " + name + " " + request + " from " + packageName + "(" + uid + ")");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001672 LocationProviderInterface provider = mProvidersByName.get(name);
1673 if (provider == null) {
Victoria Leaseb30f3832013-10-13 12:15:40 -07001674 throw new IllegalArgumentException("provider doesn't exist: " + name);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001675 }
1676
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001677 UpdateRecord record = new UpdateRecord(name, request, receiver);
1678 UpdateRecord oldRecord = receiver.mUpdateRecords.put(name, record);
1679 if (oldRecord != null) {
1680 oldRecord.disposeLocked(false);
1681 }
1682
Victoria Lease09eeaec2013-02-05 11:34:13 -08001683 boolean isProviderEnabled = isAllowedByUserSettingsLocked(name, uid);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001684 if (isProviderEnabled) {
1685 applyRequirementsLocked(name);
1686 } else {
1687 // Notify the listener that updates are currently disabled
1688 receiver.callProviderEnabledLocked(name, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001689 }
David Christie0b837452013-07-29 16:02:13 -07001690 // Update the monitoring here just in case multiple location requests were added to the
1691 // same receiver (this request may be high power and the initial might not have been).
1692 receiver.updateMonitoring(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001693 }
1694
Nick Pellye0fd6932012-07-11 10:26:13 -07001695 @Override
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001696 public void removeUpdates(ILocationListener listener, PendingIntent intent,
1697 String packageName) {
1698 checkPackageName(packageName);
Victoria Lease37425c32012-10-16 16:08:48 -07001699
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001700 final int pid = Binder.getCallingPid();
1701 final int uid = Binder.getCallingUid();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001702
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001703 synchronized (mLock) {
David Christie82edc9b2013-07-19 11:31:42 -07001704 WorkSource workSource = null;
David Christie40e57822013-07-30 11:36:48 -07001705 boolean hideFromAppOps = false;
1706 Receiver receiver = checkListenerOrIntentLocked(listener, intent, pid, uid,
1707 packageName, workSource, hideFromAppOps);
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001708
1709 // providers may use public location API's, need to clear identity
1710 long identity = Binder.clearCallingIdentity();
1711 try {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001712 removeUpdatesLocked(receiver);
Dianne Hackbornf5fdca92013-06-05 14:53:33 -07001713 } finally {
1714 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001715 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001716 }
1717 }
1718
1719 private void removeUpdatesLocked(Receiver receiver) {
Dianne Hackborn7ff30112012-11-08 11:12:09 -08001720 if (D) Log.i(TAG, "remove " + Integer.toHexString(System.identityHashCode(receiver)));
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001721
1722 if (mReceivers.remove(receiver.mKey) != null && receiver.isListener()) {
1723 receiver.getListener().asBinder().unlinkToDeath(receiver, 0);
1724 synchronized (receiver) {
Victoria Lease0aa28602013-05-29 15:28:26 -07001725 receiver.clearPendingBroadcastsLocked();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001726 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001727 }
1728
Dianne Hackborn1304f4a2013-07-09 18:17:27 -07001729 receiver.updateMonitoring(false);
1730
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001731 // Record which providers were associated with this listener
1732 HashSet<String> providers = new HashSet<String>();
1733 HashMap<String, UpdateRecord> oldRecords = receiver.mUpdateRecords;
1734 if (oldRecords != null) {
1735 // Call dispose() on the obsolete update records.
1736 for (UpdateRecord record : oldRecords.values()) {
David Christie2ff96af2014-01-30 16:09:37 -08001737 // Update statistics for historical location requests by package/provider
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001738 record.disposeLocked(false);
1739 }
1740 // Accumulate providers
1741 providers.addAll(oldRecords.keySet());
1742 }
1743
1744 // update provider
1745 for (String provider : providers) {
1746 // If provider is already disabled, don't need to do anything
Victoria Lease09eeaec2013-02-05 11:34:13 -08001747 if (!isAllowedByCurrentUserSettingsLocked(provider)) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001748 continue;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001749 }
1750
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001751 applyRequirementsLocked(provider);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001752 }
1753 }
1754
Dianne Hackbornc2293022013-02-06 23:14:49 -08001755 private void applyAllProviderRequirementsLocked() {
1756 for (LocationProviderInterface p : mProviders) {
1757 // If provider is already disabled, don't need to do anything
Dianne Hackborn64d41d72013-02-07 00:33:31 -08001758 if (!isAllowedByCurrentUserSettingsLocked(p.getName())) {
Dianne Hackbornc2293022013-02-06 23:14:49 -08001759 continue;
1760 }
1761
1762 applyRequirementsLocked(p.getName());
1763 }
1764 }
1765
Nick Pellye0fd6932012-07-11 10:26:13 -07001766 @Override
Nick Pelly4035f5a2012-08-17 14:43:49 -07001767 public Location getLastLocation(LocationRequest request, String packageName) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001768 if (D) Log.d(TAG, "getLastLocation: " + request);
1769 if (request == null) request = DEFAULT_LOCATION_REQUEST;
Victoria Lease37425c32012-10-16 16:08:48 -07001770 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
Nick Pelly4035f5a2012-08-17 14:43:49 -07001771 checkPackageName(packageName);
Victoria Lease37425c32012-10-16 16:08:48 -07001772 checkResolutionLevelIsSufficientForProviderUse(allowedResolutionLevel,
1773 request.getProvider());
1774 // no need to sanitize this request, as only the provider name is used
Nick Pelly4035f5a2012-08-17 14:43:49 -07001775
David Christieb870dbf2015-06-22 12:42:53 -07001776 final int pid = Binder.getCallingPid();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001777 final int uid = Binder.getCallingUid();
1778 final long identity = Binder.clearCallingIdentity();
Victoria Leaseb711d572012-10-02 13:14:11 -07001779 try {
1780 if (mBlacklist.isBlacklisted(packageName)) {
1781 if (D) Log.d(TAG, "not returning last loc for blacklisted app: " +
1782 packageName);
Victoria Lease09016ab2012-09-16 12:33:15 -07001783 return null;
1784 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001785
David Christieb870dbf2015-06-22 12:42:53 -07001786 if (!reportLocationAccessNoThrow(pid, uid, packageName, allowedResolutionLevel)) {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001787 if (D) Log.d(TAG, "not returning last loc for no op app: " +
1788 packageName);
1789 return null;
1790 }
1791
Victoria Leaseb711d572012-10-02 13:14:11 -07001792 synchronized (mLock) {
1793 // Figure out the provider. Either its explicitly request (deprecated API's),
1794 // or use the fused provider
1795 String name = request.getProvider();
1796 if (name == null) name = LocationManager.FUSED_PROVIDER;
1797 LocationProviderInterface provider = mProvidersByName.get(name);
1798 if (provider == null) return null;
1799
Victoria Lease09eeaec2013-02-05 11:34:13 -08001800 if (!isAllowedByUserSettingsLocked(name, uid)) return null;
Victoria Leaseb711d572012-10-02 13:14:11 -07001801
David Christie1b9b7b12013-04-15 15:31:11 -07001802 Location location;
1803 if (allowedResolutionLevel < RESOLUTION_LEVEL_FINE) {
1804 // Make sure that an app with coarse permissions can't get frequent location
1805 // updates by calling LocationManager.getLastKnownLocation repeatedly.
1806 location = mLastLocationCoarseInterval.get(name);
1807 } else {
1808 location = mLastLocation.get(name);
1809 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001810 if (location == null) {
1811 return null;
1812 }
Victoria Lease37425c32012-10-16 16:08:48 -07001813 if (allowedResolutionLevel < RESOLUTION_LEVEL_FINE) {
Victoria Leaseb711d572012-10-02 13:14:11 -07001814 Location noGPSLocation = location.getExtraLocation(Location.EXTRA_NO_GPS_LOCATION);
1815 if (noGPSLocation != null) {
Dianne Hackborn6c5406a2012-11-29 16:18:01 -08001816 return new Location(mLocationFudger.getOrCreate(noGPSLocation));
Victoria Leaseb711d572012-10-02 13:14:11 -07001817 }
Victoria Lease37425c32012-10-16 16:08:48 -07001818 } else {
Dianne Hackborn6c5406a2012-11-29 16:18:01 -08001819 return new Location(location);
Victoria Lease09016ab2012-09-16 12:33:15 -07001820 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001821 }
Victoria Leaseb711d572012-10-02 13:14:11 -07001822 return null;
1823 } finally {
1824 Binder.restoreCallingIdentity(identity);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001825 }
1826 }
1827
1828 @Override
1829 public void requestGeofence(LocationRequest request, Geofence geofence, PendingIntent intent,
1830 String packageName) {
1831 if (request == null) request = DEFAULT_LOCATION_REQUEST;
Victoria Lease37425c32012-10-16 16:08:48 -07001832 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
1833 checkResolutionLevelIsSufficientForGeofenceUse(allowedResolutionLevel);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001834 checkPendingIntent(intent);
1835 checkPackageName(packageName);
Victoria Lease37425c32012-10-16 16:08:48 -07001836 checkResolutionLevelIsSufficientForProviderUse(allowedResolutionLevel,
1837 request.getProvider());
1838 LocationRequest sanitizedRequest = createSanitizedRequest(request, allowedResolutionLevel);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001839
Victoria Lease37425c32012-10-16 16:08:48 -07001840 if (D) Log.d(TAG, "requestGeofence: " + sanitizedRequest + " " + geofence + " " + intent);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001841
Nick Pelly2b7a0d02012-08-17 15:09:44 -07001842 // geo-fence manager uses the public location API, need to clear identity
1843 int uid = Binder.getCallingUid();
Xiaohui Chena4490622015-09-22 15:29:31 -07001844 // TODO: http://b/23822629
1845 if (UserHandle.getUserId(uid) != UserHandle.USER_SYSTEM) {
Victoria Lease56e675b2012-11-05 19:25:06 -08001846 // temporary measure until geofences work for secondary users
1847 Log.w(TAG, "proximity alerts are currently available only to the primary user");
1848 return;
1849 }
Nick Pelly2b7a0d02012-08-17 15:09:44 -07001850 long identity = Binder.clearCallingIdentity();
1851 try {
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08001852 mGeofenceManager.addFence(sanitizedRequest, geofence, intent, allowedResolutionLevel,
1853 uid, packageName);
Nick Pelly2b7a0d02012-08-17 15:09:44 -07001854 } finally {
1855 Binder.restoreCallingIdentity(identity);
1856 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001857 }
1858
1859 @Override
1860 public void removeGeofence(Geofence geofence, PendingIntent intent, String packageName) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001861 checkPendingIntent(intent);
1862 checkPackageName(packageName);
1863
1864 if (D) Log.d(TAG, "removeGeofence: " + geofence + " " + intent);
1865
Nick Pelly2b7a0d02012-08-17 15:09:44 -07001866 // geo-fence manager uses the public location API, need to clear identity
1867 long identity = Binder.clearCallingIdentity();
1868 try {
1869 mGeofenceManager.removeFence(geofence, intent);
1870 } finally {
1871 Binder.restoreCallingIdentity(identity);
1872 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001873 }
1874
1875
1876 @Override
Lifu Tang30f95a72016-01-07 23:20:38 -08001877 public boolean registerGnssStatusCallback(IGnssStatusListener callback, String packageName) {
Dianne Hackborn35654b62013-01-14 17:38:02 -08001878 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
1879 checkResolutionLevelIsSufficientForProviderUse(allowedResolutionLevel,
Victoria Lease37425c32012-10-16 16:08:48 -07001880 LocationManager.GPS_PROVIDER);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001881
David Christieb870dbf2015-06-22 12:42:53 -07001882 final int pid = Binder.getCallingPid();
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001883 final int uid = Binder.getCallingUid();
1884 final long ident = Binder.clearCallingIdentity();
1885 try {
David Christieb870dbf2015-06-22 12:42:53 -07001886 if (!checkLocationAccess(pid, uid, packageName, allowedResolutionLevel)) {
Dianne Hackborna06de0f2012-12-11 16:34:47 -08001887 return false;
1888 }
1889 } finally {
1890 Binder.restoreCallingIdentity(ident);
1891 }
1892
Lifu Tang30f95a72016-01-07 23:20:38 -08001893 if (mGnssStatusProvider == null) {
Takayuki Hoshib254ab6a2014-10-23 16:46:02 +09001894 return false;
1895 }
1896
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001897 try {
Lifu Tang30f95a72016-01-07 23:20:38 -08001898 mGnssStatusProvider.registerGnssStatusCallback(callback);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001899 } catch (RemoteException e) {
Lifu Tang30f95a72016-01-07 23:20:38 -08001900 Slog.e(TAG, "mGpsStatusProvider.registerGnssStatusCallback failed", e);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001901 return false;
1902 }
1903 return true;
1904 }
1905
Nick Pellye0fd6932012-07-11 10:26:13 -07001906 @Override
Lifu Tang30f95a72016-01-07 23:20:38 -08001907 public void unregisterGnssStatusCallback(IGnssStatusListener callback) {
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001908 synchronized (mLock) {
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001909 try {
Lifu Tang30f95a72016-01-07 23:20:38 -08001910 mGnssStatusProvider.unregisterGnssStatusCallback(callback);
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001911 } catch (Exception e) {
Lifu Tang30f95a72016-01-07 23:20:38 -08001912 Slog.e(TAG, "mGpsStatusProvider.unregisterGnssStatusCallback failed", e);
Mike Lockwood15e3d0f2009-05-01 07:53:28 -04001913 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001914 }
1915 }
1916
Nick Pellye0fd6932012-07-11 10:26:13 -07001917 @Override
Lifu Tang818aa2c2016-02-01 01:52:00 -08001918 public boolean addGnssMeasurementsListener(
1919 IGnssMeasurementsListener listener,
destradaaea8a8a62014-06-23 18:19:03 -07001920 String packageName) {
1921 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
1922 checkResolutionLevelIsSufficientForProviderUse(
1923 allowedResolutionLevel,
1924 LocationManager.GPS_PROVIDER);
1925
David Christieb870dbf2015-06-22 12:42:53 -07001926 int pid = Binder.getCallingPid();
destradaaea8a8a62014-06-23 18:19:03 -07001927 int uid = Binder.getCallingUid();
1928 long identity = Binder.clearCallingIdentity();
1929 boolean hasLocationAccess;
1930 try {
David Christieb870dbf2015-06-22 12:42:53 -07001931 hasLocationAccess = checkLocationAccess(pid, uid, packageName, allowedResolutionLevel);
destradaaea8a8a62014-06-23 18:19:03 -07001932 } finally {
1933 Binder.restoreCallingIdentity(identity);
1934 }
1935
Lifu Tang818aa2c2016-02-01 01:52:00 -08001936 if (!hasLocationAccess || mGnssMeasurementsProvider == null) {
destradaaea8a8a62014-06-23 18:19:03 -07001937 return false;
1938 }
Lifu Tang818aa2c2016-02-01 01:52:00 -08001939 return mGnssMeasurementsProvider.addListener(listener);
destradaaea8a8a62014-06-23 18:19:03 -07001940 }
1941
1942 @Override
Lifu Tang818aa2c2016-02-01 01:52:00 -08001943 public void removeGnssMeasurementsListener(IGnssMeasurementsListener listener) {
1944 if (mGnssMeasurementsProvider != null) {
1945 mGnssMeasurementsProvider.removeListener(listener);
Wei Liu5241a4c2015-05-11 14:00:36 -07001946 }
destradaaea8a8a62014-06-23 18:19:03 -07001947 }
1948
1949 @Override
Lifu Tang818aa2c2016-02-01 01:52:00 -08001950 public boolean addGnssNavigationMessageListener(
1951 IGnssNavigationMessageListener listener,
destradaa4b3e3932014-07-21 18:01:47 -07001952 String packageName) {
1953 int allowedResolutionLevel = getCallerAllowedResolutionLevel();
1954 checkResolutionLevelIsSufficientForProviderUse(
1955 allowedResolutionLevel,
1956 LocationManager.GPS_PROVIDER);
1957
David Christieb870dbf2015-06-22 12:42:53 -07001958 int pid = Binder.getCallingPid();
destradaa4b3e3932014-07-21 18:01:47 -07001959 int uid = Binder.getCallingUid();
1960 long identity = Binder.clearCallingIdentity();
1961 boolean hasLocationAccess;
1962 try {
David Christieb870dbf2015-06-22 12:42:53 -07001963 hasLocationAccess = checkLocationAccess(pid, uid, packageName, allowedResolutionLevel);
destradaa4b3e3932014-07-21 18:01:47 -07001964 } finally {
1965 Binder.restoreCallingIdentity(identity);
1966 }
1967
Lifu Tang818aa2c2016-02-01 01:52:00 -08001968 if (!hasLocationAccess || mGnssNavigationMessageProvider == null) {
destradaa4b3e3932014-07-21 18:01:47 -07001969 return false;
1970 }
Lifu Tang818aa2c2016-02-01 01:52:00 -08001971 return mGnssNavigationMessageProvider.addListener(listener);
destradaa4b3e3932014-07-21 18:01:47 -07001972 }
1973
1974 @Override
Lifu Tang818aa2c2016-02-01 01:52:00 -08001975 public void removeGnssNavigationMessageListener(IGnssNavigationMessageListener listener) {
1976 if (mGnssNavigationMessageProvider != null) {
1977 mGnssNavigationMessageProvider.removeListener(listener);
Wei Liu5241a4c2015-05-11 14:00:36 -07001978 }
destradaa4b3e3932014-07-21 18:01:47 -07001979 }
1980
1981 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001982 public boolean sendExtraCommand(String provider, String command, Bundle extras) {
Mike Lockwoodc6cc8362009-08-17 13:16:08 -04001983 if (provider == null) {
1984 // throw NullPointerException to remain compatible with previous implementation
1985 throw new NullPointerException();
1986 }
Victoria Lease37425c32012-10-16 16:08:48 -07001987 checkResolutionLevelIsSufficientForProviderUse(getCallerAllowedResolutionLevel(),
1988 provider);
Mike Lockwoodc6cc8362009-08-17 13:16:08 -04001989
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001990 // and check for ACCESS_LOCATION_EXTRA_COMMANDS
Mike Lockwoodb7e99222009-07-07 13:18:21 -04001991 if ((mContext.checkCallingOrSelfPermission(ACCESS_LOCATION_EXTRA_COMMANDS)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001992 != PackageManager.PERMISSION_GRANTED)) {
1993 throw new SecurityException("Requires ACCESS_LOCATION_EXTRA_COMMANDS permission");
1994 }
1995
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04001996 synchronized (mLock) {
Mike Lockwoodd03ff942010-02-09 08:46:14 -05001997 LocationProviderInterface p = mProvidersByName.get(provider);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07001998 if (p == null) return false;
Nick Pellye0fd6932012-07-11 10:26:13 -07001999
Mike Lockwoodd03ff942010-02-09 08:46:14 -05002000 return p.sendExtraCommand(command, extras);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002001 }
2002 }
2003
Nick Pellye0fd6932012-07-11 10:26:13 -07002004 @Override
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002005 public boolean sendNiResponse(int notifId, int userResponse) {
Mike Lockwood18ad9f62009-08-27 14:01:23 -07002006 if (Binder.getCallingUid() != Process.myUid()) {
2007 throw new SecurityException(
2008 "calling sendNiResponse from outside of the system is not allowed");
2009 }
Danke Xie22d1f9f2009-08-18 18:28:45 -04002010 try {
2011 return mNetInitiatedListener.sendNiResponse(notifId, userResponse);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002012 } catch (RemoteException e) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002013 Slog.e(TAG, "RemoteException in LocationManagerService.sendNiResponse");
Danke Xie22d1f9f2009-08-18 18:28:45 -04002014 return false;
2015 }
2016 }
2017
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002018 /**
Mike Lockwood628fd6d2010-01-25 22:46:13 -05002019 * @return null if the provider does not exist
Alexey Tarasovf2db9fb2009-09-01 02:37:07 +11002020 * @throws SecurityException if the provider is not allowed to be
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002021 * accessed by the caller
2022 */
Nick Pellye0fd6932012-07-11 10:26:13 -07002023 @Override
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002024 public ProviderProperties getProviderProperties(String provider) {
Laurent Tub7f9d252012-10-16 14:25:00 -07002025 if (mProvidersByName.get(provider) == null) {
David Christie2ff96af2014-01-30 16:09:37 -08002026 return null;
Laurent Tub7f9d252012-10-16 14:25:00 -07002027 }
2028
Victoria Lease37425c32012-10-16 16:08:48 -07002029 checkResolutionLevelIsSufficientForProviderUse(getCallerAllowedResolutionLevel(),
2030 provider);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002031
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002032 LocationProviderInterface p;
2033 synchronized (mLock) {
2034 p = mProvidersByName.get(provider);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002035 }
2036
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002037 if (p == null) return null;
2038 return p.getProperties();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002039 }
2040
Jason Monkb71218a2015-06-17 14:44:39 -04002041 /**
2042 * @return null if the provider does not exist
2043 * @throws SecurityException if the provider is not allowed to be
2044 * accessed by the caller
2045 */
2046 @Override
2047 public String getNetworkProviderPackage() {
2048 LocationProviderInterface p;
2049 synchronized (mLock) {
2050 if (mProvidersByName.get(LocationManager.NETWORK_PROVIDER) == null) {
2051 return null;
2052 }
2053 p = mProvidersByName.get(LocationManager.NETWORK_PROVIDER);
2054 }
2055
2056 if (p instanceof LocationProviderProxy) {
2057 return ((LocationProviderProxy) p).getConnectedPackageName();
2058 }
2059 return null;
2060 }
2061
Nick Pellye0fd6932012-07-11 10:26:13 -07002062 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002063 public boolean isProviderEnabled(String provider) {
Tom O'Neilld5759432013-09-11 11:03:03 -07002064 // Fused provider is accessed indirectly via criteria rather than the provider-based APIs,
2065 // so we discourage its use
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002066 if (LocationManager.FUSED_PROVIDER.equals(provider)) return false;
2067
Victoria Lease09eeaec2013-02-05 11:34:13 -08002068 int uid = Binder.getCallingUid();
Victoria Lease269518e2012-10-29 08:25:39 -07002069 long identity = Binder.clearCallingIdentity();
Victoria Leaseb711d572012-10-02 13:14:11 -07002070 try {
2071 synchronized (mLock) {
2072 LocationProviderInterface p = mProvidersByName.get(provider);
2073 if (p == null) return false;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002074
Victoria Lease09eeaec2013-02-05 11:34:13 -08002075 return isAllowedByUserSettingsLocked(provider, uid);
Victoria Leaseb711d572012-10-02 13:14:11 -07002076 }
2077 } finally {
2078 Binder.restoreCallingIdentity(identity);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002079 }
2080 }
2081
Victoria Lease03cdd3d2013-02-01 15:15:54 -08002082 /**
2083 * Returns "true" if the UID belongs to a bound location provider.
2084 *
2085 * @param uid the uid
2086 * @return true if uid belongs to a bound location provider
2087 */
2088 private boolean isUidALocationProvider(int uid) {
2089 if (uid == Process.SYSTEM_UID) {
2090 return true;
2091 }
2092 if (mGeocodeProvider != null) {
David Christie1f141c12014-05-14 15:11:15 -07002093 if (doesUidHavePackage(uid, mGeocodeProvider.getConnectedPackageName())) return true;
Victoria Lease03cdd3d2013-02-01 15:15:54 -08002094 }
2095 for (LocationProviderProxy proxy : mProxyProviders) {
David Christie1f141c12014-05-14 15:11:15 -07002096 if (doesUidHavePackage(uid, proxy.getConnectedPackageName())) return true;
Victoria Lease03cdd3d2013-02-01 15:15:54 -08002097 }
2098 return false;
2099 }
2100
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002101 private void checkCallerIsProvider() {
2102 if (mContext.checkCallingOrSelfPermission(INSTALL_LOCATION_PROVIDER)
2103 == PackageManager.PERMISSION_GRANTED) {
2104 return;
2105 }
2106
2107 // Previously we only used the INSTALL_LOCATION_PROVIDER
2108 // check. But that is system or signature
2109 // protection level which is not flexible enough for
2110 // providers installed oustide the system image. So
2111 // also allow providers with a UID matching the
2112 // currently bound package name
2113
Victoria Lease03cdd3d2013-02-01 15:15:54 -08002114 if (isUidALocationProvider(Binder.getCallingUid())) {
2115 return;
2116 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002117
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002118 throw new SecurityException("need INSTALL_LOCATION_PROVIDER permission, " +
2119 "or UID of a currently bound location provider");
2120 }
2121
David Christie1f141c12014-05-14 15:11:15 -07002122 /**
2123 * Returns true if the given package belongs to the given uid.
2124 */
2125 private boolean doesUidHavePackage(int uid, String packageName) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002126 if (packageName == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002127 return false;
2128 }
David Christie1f141c12014-05-14 15:11:15 -07002129 String[] packageNames = mPackageManager.getPackagesForUid(uid);
2130 if (packageNames == null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002131 return false;
2132 }
David Christie1f141c12014-05-14 15:11:15 -07002133 for (String name : packageNames) {
2134 if (packageName.equals(name)) {
2135 return true;
2136 }
2137 }
2138 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002139 }
2140
Nick Pellye0fd6932012-07-11 10:26:13 -07002141 @Override
Mike Lockwooda4903f22010-02-17 06:42:23 -05002142 public void reportLocation(Location location, boolean passive) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002143 checkCallerIsProvider();
Mike Lockwood275555c2009-05-01 11:30:34 -04002144
Nick Pelly2eeeec22012-07-18 13:13:37 -07002145 if (!location.isComplete()) {
2146 Log.w(TAG, "Dropping incomplete location: " + location);
2147 return;
2148 }
2149
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002150 mLocationHandler.removeMessages(MSG_LOCATION_CHANGED, location);
2151 Message m = Message.obtain(mLocationHandler, MSG_LOCATION_CHANGED, location);
Mike Lockwooda4903f22010-02-17 06:42:23 -05002152 m.arg1 = (passive ? 1 : 0);
Mike Lockwood4e50b782009-04-03 08:24:43 -07002153 mLocationHandler.sendMessageAtFrontOfQueue(m);
2154 }
2155
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002156
Laurent Tu75defb62012-11-01 16:21:52 -07002157 private static boolean shouldBroadcastSafe(
2158 Location loc, Location lastLoc, UpdateRecord record, long now) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002159 // Always broadcast the first update
2160 if (lastLoc == null) {
2161 return true;
2162 }
2163
Nick Pellyf1be6862012-05-15 10:53:42 -07002164 // Check whether sufficient time has passed
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002165 long minTime = record.mRequest.getFastestInterval();
David Christie1b9b7b12013-04-15 15:31:11 -07002166 long delta = (loc.getElapsedRealtimeNanos() - lastLoc.getElapsedRealtimeNanos())
2167 / NANOS_PER_MILLI;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002168 if (delta < minTime - MAX_PROVIDER_SCHEDULING_JITTER_MS) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002169 return false;
2170 }
2171
2172 // Check whether sufficient distance has been traveled
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002173 double minDistance = record.mRequest.getSmallestDisplacement();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002174 if (minDistance > 0.0) {
2175 if (loc.distanceTo(lastLoc) <= minDistance) {
2176 return false;
2177 }
2178 }
2179
Laurent Tu75defb62012-11-01 16:21:52 -07002180 // Check whether sufficient number of udpates is left
2181 if (record.mRequest.getNumUpdates() <= 0) {
2182 return false;
2183 }
2184
2185 // Check whether the expiry date has passed
2186 if (record.mRequest.getExpireAt() < now) {
2187 return false;
2188 }
2189
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002190 return true;
2191 }
2192
Mike Lockwooda4903f22010-02-17 06:42:23 -05002193 private void handleLocationChangedLocked(Location location, boolean passive) {
Nick Pelly4e31c4f2012-08-13 19:35:39 -07002194 if (D) Log.d(TAG, "incoming location: " + location);
2195
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002196 long now = SystemClock.elapsedRealtime();
Mike Lockwooda4903f22010-02-17 06:42:23 -05002197 String provider = (passive ? LocationManager.PASSIVE_PROVIDER : location.getProvider());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002198
Laurent Tu60ec50a2012-10-04 17:00:10 -07002199 // Skip if the provider is unknown.
Mike Lockwoodd03ff942010-02-09 08:46:14 -05002200 LocationProviderInterface p = mProvidersByName.get(provider);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002201 if (p == null) return;
2202
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002203 // Update last known locations
Victoria Lease09016ab2012-09-16 12:33:15 -07002204 Location noGPSLocation = location.getExtraLocation(Location.EXTRA_NO_GPS_LOCATION);
2205 Location lastNoGPSLocation = null;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002206 Location lastLocation = mLastLocation.get(provider);
Mike Lockwood4e50b782009-04-03 08:24:43 -07002207 if (lastLocation == null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002208 lastLocation = new Location(provider);
2209 mLastLocation.put(provider, lastLocation);
Victoria Lease09016ab2012-09-16 12:33:15 -07002210 } else {
2211 lastNoGPSLocation = lastLocation.getExtraLocation(Location.EXTRA_NO_GPS_LOCATION);
2212 if (noGPSLocation == null && lastNoGPSLocation != null) {
2213 // New location has no no-GPS location: adopt last no-GPS location. This is set
2214 // directly into location because we do not want to notify COARSE clients.
2215 location.setExtraLocation(Location.EXTRA_NO_GPS_LOCATION, lastNoGPSLocation);
2216 }
Mike Lockwood4e50b782009-04-03 08:24:43 -07002217 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002218 lastLocation.set(location);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002219
David Christie1b9b7b12013-04-15 15:31:11 -07002220 // Update last known coarse interval location if enough time has passed.
2221 Location lastLocationCoarseInterval = mLastLocationCoarseInterval.get(provider);
2222 if (lastLocationCoarseInterval == null) {
2223 lastLocationCoarseInterval = new Location(location);
2224 mLastLocationCoarseInterval.put(provider, lastLocationCoarseInterval);
2225 }
2226 long timeDiffNanos = location.getElapsedRealtimeNanos()
2227 - lastLocationCoarseInterval.getElapsedRealtimeNanos();
2228 if (timeDiffNanos > LocationFudger.FASTEST_INTERVAL_MS * NANOS_PER_MILLI) {
2229 lastLocationCoarseInterval.set(location);
2230 }
2231 // Don't ever return a coarse location that is more recent than the allowed update
2232 // interval (i.e. don't allow an app to keep registering and unregistering for
2233 // location updates to overcome the minimum interval).
2234 noGPSLocation =
2235 lastLocationCoarseInterval.getExtraLocation(Location.EXTRA_NO_GPS_LOCATION);
2236
Laurent Tu60ec50a2012-10-04 17:00:10 -07002237 // Skip if there are no UpdateRecords for this provider.
2238 ArrayList<UpdateRecord> records = mRecordsByProvider.get(provider);
2239 if (records == null || records.size() == 0) return;
2240
Victoria Lease09016ab2012-09-16 12:33:15 -07002241 // Fetch coarse location
2242 Location coarseLocation = null;
David Christie1b9b7b12013-04-15 15:31:11 -07002243 if (noGPSLocation != null) {
Victoria Lease09016ab2012-09-16 12:33:15 -07002244 coarseLocation = mLocationFudger.getOrCreate(noGPSLocation);
2245 }
2246
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002247 // Fetch latest status update time
2248 long newStatusUpdateTime = p.getStatusUpdateTime();
2249
David Christie2ff96af2014-01-30 16:09:37 -08002250 // Get latest status
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002251 Bundle extras = new Bundle();
2252 int status = p.getStatus(extras);
2253
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002254 ArrayList<Receiver> deadReceivers = null;
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002255 ArrayList<UpdateRecord> deadUpdateRecords = null;
Nick Pellye0fd6932012-07-11 10:26:13 -07002256
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002257 // Broadcast location or status to all listeners
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002258 for (UpdateRecord r : records) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002259 Receiver receiver = r.mReceiver;
Mike Lockwood03ca2162010-04-01 08:10:09 -07002260 boolean receiverDead = false;
Nick Pelly4035f5a2012-08-17 14:43:49 -07002261
Victoria Lease269518e2012-10-29 08:25:39 -07002262 int receiverUserId = UserHandle.getUserId(receiver.mUid);
Amith Yamasanib27528d2014-06-05 15:02:10 -07002263 if (!isCurrentProfile(receiverUserId) && !isUidALocationProvider(receiver.mUid)) {
Victoria Leaseb711d572012-10-02 13:14:11 -07002264 if (D) {
Victoria Lease269518e2012-10-29 08:25:39 -07002265 Log.d(TAG, "skipping loc update for background user " + receiverUserId +
Victoria Leaseb711d572012-10-02 13:14:11 -07002266 " (current user: " + mCurrentUserId + ", app: " +
2267 receiver.mPackageName + ")");
2268 }
2269 continue;
2270 }
2271
Nick Pelly4035f5a2012-08-17 14:43:49 -07002272 if (mBlacklist.isBlacklisted(receiver.mPackageName)) {
2273 if (D) Log.d(TAG, "skipping loc update for blacklisted app: " +
2274 receiver.mPackageName);
2275 continue;
2276 }
2277
David Christieb870dbf2015-06-22 12:42:53 -07002278 if (!reportLocationAccessNoThrow(receiver.mPid, receiver.mUid, receiver.mPackageName,
Dianne Hackborn5e45ee62013-01-24 19:13:44 -08002279 receiver.mAllowedResolutionLevel)) {
2280 if (D) Log.d(TAG, "skipping loc update for no op app: " +
2281 receiver.mPackageName);
2282 continue;
2283 }
2284
Victoria Lease09016ab2012-09-16 12:33:15 -07002285 Location notifyLocation = null;
Victoria Lease37425c32012-10-16 16:08:48 -07002286 if (receiver.mAllowedResolutionLevel < RESOLUTION_LEVEL_FINE) {
2287 notifyLocation = coarseLocation; // use coarse location
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002288 } else {
Victoria Lease37425c32012-10-16 16:08:48 -07002289 notifyLocation = lastLocation; // use fine location
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002290 }
Victoria Lease09016ab2012-09-16 12:33:15 -07002291 if (notifyLocation != null) {
2292 Location lastLoc = r.mLastFixBroadcast;
Laurent Tu75defb62012-11-01 16:21:52 -07002293 if ((lastLoc == null) || shouldBroadcastSafe(notifyLocation, lastLoc, r, now)) {
Victoria Lease09016ab2012-09-16 12:33:15 -07002294 if (lastLoc == null) {
2295 lastLoc = new Location(notifyLocation);
2296 r.mLastFixBroadcast = lastLoc;
2297 } else {
2298 lastLoc.set(notifyLocation);
2299 }
2300 if (!receiver.callLocationChangedLocked(notifyLocation)) {
2301 Slog.w(TAG, "RemoteException calling onLocationChanged on " + receiver);
2302 receiverDead = true;
2303 }
Laurent Tu75defb62012-11-01 16:21:52 -07002304 r.mRequest.decrementNumUpdates();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002305 }
2306 }
2307
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002308 long prevStatusUpdateTime = r.mLastStatusBroadcast;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002309 if ((newStatusUpdateTime > prevStatusUpdateTime) &&
Victoria Lease09016ab2012-09-16 12:33:15 -07002310 (prevStatusUpdateTime != 0 || status != LocationProvider.AVAILABLE)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002311
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002312 r.mLastStatusBroadcast = newStatusUpdateTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002313 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
Mike Lockwood03ca2162010-04-01 08:10:09 -07002314 receiverDead = true;
Joe Onorato8a9b2202010-02-26 18:56:32 -08002315 Slog.w(TAG, "RemoteException calling onStatusChanged on " + receiver);
Mike Lockwood03ca2162010-04-01 08:10:09 -07002316 }
2317 }
2318
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002319 // track expired records
Laurent Tu75defb62012-11-01 16:21:52 -07002320 if (r.mRequest.getNumUpdates() <= 0 || r.mRequest.getExpireAt() < now) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002321 if (deadUpdateRecords == null) {
2322 deadUpdateRecords = new ArrayList<UpdateRecord>();
2323 }
2324 deadUpdateRecords.add(r);
2325 }
2326 // track dead receivers
2327 if (receiverDead) {
Mike Lockwood03ca2162010-04-01 08:10:09 -07002328 if (deadReceivers == null) {
2329 deadReceivers = new ArrayList<Receiver>();
2330 }
2331 if (!deadReceivers.contains(receiver)) {
2332 deadReceivers.add(receiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002333 }
2334 }
2335 }
Nick Pellye0fd6932012-07-11 10:26:13 -07002336
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002337 // remove dead records and receivers outside the loop
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002338 if (deadReceivers != null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002339 for (Receiver receiver : deadReceivers) {
2340 removeUpdatesLocked(receiver);
2341 }
2342 }
2343 if (deadUpdateRecords != null) {
2344 for (UpdateRecord r : deadUpdateRecords) {
2345 r.disposeLocked(true);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002346 }
Victoria Lease8b38b292012-12-04 15:04:43 -08002347 applyRequirementsLocked(provider);
2348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002349 }
2350
2351 private class LocationWorkerHandler extends Handler {
Victoria Lease5cd731a2012-12-19 15:04:21 -08002352 public LocationWorkerHandler(Looper looper) {
2353 super(looper, null, true);
2354 }
2355
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002356 @Override
2357 public void handleMessage(Message msg) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002358 switch (msg.what) {
2359 case MSG_LOCATION_CHANGED:
2360 handleLocationChanged((Location) msg.obj, msg.arg1 == 1);
2361 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002362 }
2363 }
2364 }
2365
Victoria Lease54ca7ae2013-01-08 09:39:50 -08002366 private boolean isMockProvider(String provider) {
2367 synchronized (mLock) {
2368 return mMockProviders.containsKey(provider);
2369 }
2370 }
2371
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002372 private void handleLocationChanged(Location location, boolean passive) {
Victoria Lease54ca7ae2013-01-08 09:39:50 -08002373 // create a working copy of the incoming Location so that the service can modify it without
2374 // disturbing the caller's copy
2375 Location myLocation = new Location(location);
2376 String provider = myLocation.getProvider();
2377
2378 // set "isFromMockProvider" bit if location came from a mock provider. we do not clear this
2379 // bit if location did not come from a mock provider because passive/fused providers can
2380 // forward locations from mock providers, and should not grant them legitimacy in doing so.
2381 if (!myLocation.isFromMockProvider() && isMockProvider(provider)) {
2382 myLocation.setIsFromMockProvider(true);
2383 }
Jeff Sharkey5e613312012-01-30 11:16:20 -08002384
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002385 synchronized (mLock) {
Victoria Lease09eeaec2013-02-05 11:34:13 -08002386 if (isAllowedByCurrentUserSettingsLocked(provider)) {
2387 if (!passive) {
2388 // notify passive provider of the new location
2389 mPassiveProvider.updateLocation(myLocation);
2390 }
Victoria Lease54ca7ae2013-01-08 09:39:50 -08002391 handleLocationChangedLocked(myLocation, passive);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002392 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002393 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002394 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002395
Mike Lockwoode97ae402010-09-29 15:23:46 -04002396 private final PackageMonitor mPackageMonitor = new PackageMonitor() {
2397 @Override
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002398 public void onPackageDisappeared(String packageName, int reason) {
2399 // remove all receivers associated with this package name
2400 synchronized (mLock) {
2401 ArrayList<Receiver> deadReceivers = null;
2402
2403 for (Receiver receiver : mReceivers.values()) {
2404 if (receiver.mPackageName.equals(packageName)) {
2405 if (deadReceivers == null) {
2406 deadReceivers = new ArrayList<Receiver>();
2407 }
2408 deadReceivers.add(receiver);
2409 }
2410 }
2411
2412 // perform removal outside of mReceivers loop
2413 if (deadReceivers != null) {
2414 for (Receiver receiver : deadReceivers) {
2415 removeUpdatesLocked(receiver);
2416 }
2417 }
2418 }
Nick Pellye0fd6932012-07-11 10:26:13 -07002419 }
Mike Lockwoode97ae402010-09-29 15:23:46 -04002420 };
2421
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002422 // Geocoder
2423
Nick Pellye0fd6932012-07-11 10:26:13 -07002424 @Override
Mike Lockwoode15735a2010-09-20 17:48:47 -04002425 public boolean geocoderIsPresent() {
Mark Vandevoorde01ac80b2010-05-21 15:43:26 -07002426 return mGeocodeProvider != null;
2427 }
2428
Nick Pellye0fd6932012-07-11 10:26:13 -07002429 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002430 public String getFromLocation(double latitude, double longitude, int maxResults,
Mike Lockwood34901402010-01-04 12:14:21 -05002431 GeocoderParams params, List<Address> addrs) {
Mike Lockwooda55c3212009-04-15 11:10:11 -04002432 if (mGeocodeProvider != null) {
Mike Lockwood628fd6d2010-01-25 22:46:13 -05002433 return mGeocodeProvider.getFromLocation(latitude, longitude, maxResults,
2434 params, addrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002435 }
Mike Lockwooda55c3212009-04-15 11:10:11 -04002436 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002437 }
2438
Mike Lockwooda55c3212009-04-15 11:10:11 -04002439
Nick Pellye0fd6932012-07-11 10:26:13 -07002440 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002441 public String getFromLocationName(String locationName,
Mike Lockwooda55c3212009-04-15 11:10:11 -04002442 double lowerLeftLatitude, double lowerLeftLongitude,
2443 double upperRightLatitude, double upperRightLongitude, int maxResults,
Mike Lockwood34901402010-01-04 12:14:21 -05002444 GeocoderParams params, List<Address> addrs) {
Mike Lockwooda55c3212009-04-15 11:10:11 -04002445
2446 if (mGeocodeProvider != null) {
Mike Lockwood628fd6d2010-01-25 22:46:13 -05002447 return mGeocodeProvider.getFromLocationName(locationName, lowerLeftLatitude,
2448 lowerLeftLongitude, upperRightLatitude, upperRightLongitude,
2449 maxResults, params, addrs);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002450 }
Mike Lockwooda55c3212009-04-15 11:10:11 -04002451 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002452 }
2453
2454 // Mock Providers
2455
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002456 private boolean canCallerAccessMockLocation(String opPackageName) {
2457 return mAppOps.noteOp(AppOpsManager.OP_MOCK_LOCATION, Binder.getCallingUid(),
2458 opPackageName) == AppOpsManager.MODE_ALLOWED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002459 }
2460
Nick Pellye0fd6932012-07-11 10:26:13 -07002461 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002462 public void addTestProvider(String name, ProviderProperties properties, String opPackageName) {
2463 if (!canCallerAccessMockLocation(opPackageName)) {
2464 return;
2465 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002466
Mike Lockwooda4903f22010-02-17 06:42:23 -05002467 if (LocationManager.PASSIVE_PROVIDER.equals(name)) {
2468 throw new IllegalArgumentException("Cannot mock the passive location provider");
2469 }
2470
Mike Lockwood86328a92009-10-23 08:38:25 -04002471 long identity = Binder.clearCallingIdentity();
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002472 synchronized (mLock) {
Mike Lockwood7566c1d2009-08-25 10:05:18 -07002473 // remove the real provider if we are replacing GPS or network provider
2474 if (LocationManager.GPS_PROVIDER.equals(name)
Nick Pelly1332b532012-08-21 16:25:47 -07002475 || LocationManager.NETWORK_PROVIDER.equals(name)
2476 || LocationManager.FUSED_PROVIDER.equals(name)) {
Mike Lockwoodd03ff942010-02-09 08:46:14 -05002477 LocationProviderInterface p = mProvidersByName.get(name);
2478 if (p != null) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002479 removeProviderLocked(p);
Mike Lockwood7566c1d2009-08-25 10:05:18 -07002480 }
2481 }
Ji-Hwan Lee26bdb8f2014-04-21 20:48:19 +09002482 addTestProviderLocked(name, properties);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002483 updateProvidersLocked();
2484 }
Mike Lockwood86328a92009-10-23 08:38:25 -04002485 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002486 }
2487
Ji-Hwan Lee26bdb8f2014-04-21 20:48:19 +09002488 private void addTestProviderLocked(String name, ProviderProperties properties) {
2489 if (mProvidersByName.get(name) != null) {
2490 throw new IllegalArgumentException("Provider \"" + name + "\" already exists");
2491 }
2492 MockProvider provider = new MockProvider(name, this, properties);
2493 addProviderLocked(provider);
2494 mMockProviders.put(name, provider);
2495 mLastLocation.put(name, null);
2496 mLastLocationCoarseInterval.put(name, null);
2497 }
2498
Nick Pellye0fd6932012-07-11 10:26:13 -07002499 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002500 public void removeTestProvider(String provider, String opPackageName) {
2501 if (!canCallerAccessMockLocation(opPackageName)) {
2502 return;
2503 }
2504
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002505 synchronized (mLock) {
Tom O'Neill07ee5d12014-03-03 17:48:35 -08002506
2507 // These methods can't be called after removing the test provider, so first make sure
Tom O'Neillfe6d3c52014-03-04 08:26:17 -08002508 // we don't leave anything dangling.
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002509 clearTestProviderEnabled(provider, opPackageName);
2510 clearTestProviderLocation(provider, opPackageName);
2511 clearTestProviderStatus(provider, opPackageName);
Tom O'Neill07ee5d12014-03-03 17:48:35 -08002512
You Kima6d0b6f2012-10-28 03:58:44 +09002513 MockProvider mockProvider = mMockProviders.remove(provider);
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002514 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002515 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2516 }
Mike Lockwood86328a92009-10-23 08:38:25 -04002517 long identity = Binder.clearCallingIdentity();
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002518 removeProviderLocked(mProvidersByName.get(provider));
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002519
2520 // reinstate real provider if available
2521 LocationProviderInterface realProvider = mRealProviders.get(provider);
2522 if (realProvider != null) {
2523 addProviderLocked(realProvider);
Mike Lockwood7566c1d2009-08-25 10:05:18 -07002524 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002525 mLastLocation.put(provider, null);
David Christie1b9b7b12013-04-15 15:31:11 -07002526 mLastLocationCoarseInterval.put(provider, null);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002527 updateProvidersLocked();
Mike Lockwood86328a92009-10-23 08:38:25 -04002528 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002529 }
2530 }
2531
Nick Pellye0fd6932012-07-11 10:26:13 -07002532 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002533 public void setTestProviderLocation(String provider, Location loc, String opPackageName) {
2534 if (!canCallerAccessMockLocation(opPackageName)) {
2535 return;
2536 }
2537
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002538 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002539 MockProvider mockProvider = mMockProviders.get(provider);
2540 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002541 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2542 }
Mike Lockwood95427cd2009-05-07 13:27:54 -04002543 // clear calling identity so INSTALL_LOCATION_PROVIDER permission is not required
2544 long identity = Binder.clearCallingIdentity();
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002545 mockProvider.setLocation(loc);
Mike Lockwood95427cd2009-05-07 13:27:54 -04002546 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002547 }
2548 }
2549
Nick Pellye0fd6932012-07-11 10:26:13 -07002550 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002551 public void clearTestProviderLocation(String provider, String opPackageName) {
2552 if (!canCallerAccessMockLocation(opPackageName)) {
2553 return;
2554 }
2555
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002556 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002557 MockProvider mockProvider = mMockProviders.get(provider);
2558 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002559 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2560 }
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002561 mockProvider.clearLocation();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002562 }
2563 }
2564
Nick Pellye0fd6932012-07-11 10:26:13 -07002565 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002566 public void setTestProviderEnabled(String provider, boolean enabled, String opPackageName) {
2567 if (!canCallerAccessMockLocation(opPackageName)) {
2568 return;
2569 }
2570
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002571 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002572 MockProvider mockProvider = mMockProviders.get(provider);
2573 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002574 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2575 }
Mike Lockwood86328a92009-10-23 08:38:25 -04002576 long identity = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002577 if (enabled) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002578 mockProvider.enable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002579 mEnabledProviders.add(provider);
2580 mDisabledProviders.remove(provider);
2581 } else {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002582 mockProvider.disable();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002583 mEnabledProviders.remove(provider);
2584 mDisabledProviders.add(provider);
2585 }
2586 updateProvidersLocked();
Mike Lockwood86328a92009-10-23 08:38:25 -04002587 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002588 }
2589 }
2590
Nick Pellye0fd6932012-07-11 10:26:13 -07002591 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002592 public void clearTestProviderEnabled(String provider, String opPackageName) {
2593 if (!canCallerAccessMockLocation(opPackageName)) {
2594 return;
2595 }
2596
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002597 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002598 MockProvider mockProvider = mMockProviders.get(provider);
2599 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002600 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2601 }
Mike Lockwood86328a92009-10-23 08:38:25 -04002602 long identity = Binder.clearCallingIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002603 mEnabledProviders.remove(provider);
2604 mDisabledProviders.remove(provider);
2605 updateProvidersLocked();
Mike Lockwood86328a92009-10-23 08:38:25 -04002606 Binder.restoreCallingIdentity(identity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002607 }
2608 }
2609
Nick Pellye0fd6932012-07-11 10:26:13 -07002610 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002611 public void setTestProviderStatus(String provider, int status, Bundle extras, long updateTime,
2612 String opPackageName) {
2613 if (!canCallerAccessMockLocation(opPackageName)) {
2614 return;
2615 }
2616
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002617 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002618 MockProvider mockProvider = mMockProviders.get(provider);
2619 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002620 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2621 }
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002622 mockProvider.setStatus(status, extras, updateTime);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002623 }
2624 }
2625
Nick Pellye0fd6932012-07-11 10:26:13 -07002626 @Override
Svet Ganovf7e9cf42015-05-13 10:40:31 -07002627 public void clearTestProviderStatus(String provider, String opPackageName) {
2628 if (!canCallerAccessMockLocation(opPackageName)) {
2629 return;
2630 }
2631
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002632 synchronized (mLock) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002633 MockProvider mockProvider = mMockProviders.get(provider);
2634 if (mockProvider == null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002635 throw new IllegalArgumentException("Provider \"" + provider + "\" unknown");
2636 }
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002637 mockProvider.clearStatus();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002638 }
2639 }
2640
2641 private void log(String log) {
2642 if (Log.isLoggable(TAG, Log.VERBOSE)) {
Joe Onorato8a9b2202010-02-26 18:56:32 -08002643 Slog.d(TAG, log);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002644 }
2645 }
Nick Pellye0fd6932012-07-11 10:26:13 -07002646
2647 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002648 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
2649 if (mContext.checkCallingOrSelfPermission(android.Manifest.permission.DUMP)
2650 != PackageManager.PERMISSION_GRANTED) {
Mike Lockwood0528b9b2009-05-07 10:12:54 -04002651 pw.println("Permission Denial: can't dump LocationManagerService from from pid="
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002652 + Binder.getCallingPid()
2653 + ", uid=" + Binder.getCallingUid());
2654 return;
2655 }
Nick Pellye0fd6932012-07-11 10:26:13 -07002656
Mike Lockwood2f82c4e2009-04-17 08:24:10 -04002657 synchronized (mLock) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002658 pw.println("Current Location Manager state:");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002659 pw.println(" Location Listeners:");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002660 for (Receiver receiver : mReceivers.values()) {
2661 pw.println(" " + receiver);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002662 }
David Christie2ff96af2014-01-30 16:09:37 -08002663 pw.println(" Active Records by Provider:");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002664 for (Map.Entry<String, ArrayList<UpdateRecord>> entry : mRecordsByProvider.entrySet()) {
2665 pw.println(" " + entry.getKey() + ":");
2666 for (UpdateRecord record : entry.getValue()) {
2667 pw.println(" " + record);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002668 }
2669 }
David Christie2ff96af2014-01-30 16:09:37 -08002670 pw.println(" Historical Records by Provider:");
2671 for (Map.Entry<PackageProviderKey, PackageStatistics> entry
2672 : mRequestStatistics.statistics.entrySet()) {
2673 PackageProviderKey key = entry.getKey();
2674 PackageStatistics stats = entry.getValue();
2675 pw.println(" " + key.packageName + ": " + key.providerName + ": " + stats);
2676 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002677 pw.println(" Last Known Locations:");
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002678 for (Map.Entry<String, Location> entry : mLastLocation.entrySet()) {
2679 String provider = entry.getKey();
2680 Location location = entry.getValue();
2681 pw.println(" " + provider + ": " + location);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002682 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002683
David Christie1b9b7b12013-04-15 15:31:11 -07002684 pw.println(" Last Known Locations Coarse Intervals:");
2685 for (Map.Entry<String, Location> entry : mLastLocationCoarseInterval.entrySet()) {
2686 String provider = entry.getKey();
2687 Location location = entry.getValue();
2688 pw.println(" " + provider + ": " + location);
2689 }
2690
Nick Pellye0fd6932012-07-11 10:26:13 -07002691 mGeofenceManager.dump(pw);
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002692
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002693 if (mEnabledProviders.size() > 0) {
2694 pw.println(" Enabled Providers:");
2695 for (String i : mEnabledProviders) {
2696 pw.println(" " + i);
2697 }
Nick Pellye0fd6932012-07-11 10:26:13 -07002698
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002699 }
2700 if (mDisabledProviders.size() > 0) {
2701 pw.println(" Disabled Providers:");
2702 for (String i : mDisabledProviders) {
2703 pw.println(" " + i);
2704 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002705 }
Nick Pelly4035f5a2012-08-17 14:43:49 -07002706 pw.append(" ");
2707 mBlacklist.dump(pw);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002708 if (mMockProviders.size() > 0) {
2709 pw.println(" Mock Providers:");
2710 for (Map.Entry<String, MockProvider> i : mMockProviders.entrySet()) {
Mike Lockwood7ec434e2009-03-27 07:46:48 -07002711 i.getValue().dump(pw, " ");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002712 }
2713 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002714
Nick Pelly74fa7ea2012-08-13 19:36:38 -07002715 pw.append(" fudger: ");
2716 mLocationFudger.dump(fd, pw, args);
2717
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002718 if (args.length > 0 && "short".equals(args[0])) {
2719 return;
2720 }
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -06002721 for (LocationProviderInterface provider: mProviders) {
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002722 pw.print(provider.getName() + " Internal State");
2723 if (provider instanceof LocationProviderProxy) {
2724 LocationProviderProxy proxy = (LocationProviderProxy) provider;
2725 pw.print(" (" + proxy.getConnectedPackageName() + ")");
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -06002726 }
Nick Pelly6fa9ad42012-07-16 12:18:23 -07002727 pw.println(":");
2728 provider.dump(fd, pw, args);
Fred Fettinger3c8fbdf2010-01-04 15:38:13 -06002729 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002730 }
2731 }
2732}