blob: acad61cfa9435e2204a9ec6651776cbcf538af5a [file] [log] [blame]
Mathias Agopianfc328812010-07-14 23:41:37 -07001/*
2 * Copyright (C) 2010 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
Mathias Agopian33015422011-05-27 18:18:13 -070017#include <cutils/properties.h>
18
Svetoslavb412f6e2015-04-29 16:50:41 -070019#include <binder/AppOpsManager.h>
Mathias Agopianfc328812010-07-14 23:41:37 -070020#include <binder/BinderService.h>
Mathias Agopian451beee2010-07-19 15:03:55 -070021#include <binder/IServiceManager.h>
Mathias Agopian1cb13462011-06-27 16:05:52 -070022#include <binder/PermissionCache.h>
Mathias Agopianfc328812010-07-14 23:41:37 -070023
Mathias Agopian907103b2012-04-02 18:38:02 -070024#include <gui/SensorEventQueue.h>
Mathias Agopianfc328812010-07-14 23:41:37 -070025
26#include <hardware/sensors.h>
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -070027#include <hardware_legacy/power.h>
Mathias Agopianfc328812010-07-14 23:41:37 -070028
Mathias Agopian787ac1b2012-09-18 18:49:18 -070029#include "BatteryService.h"
Mathias Agopian984826c2011-05-17 22:54:42 -070030#include "CorrectedGyroSensor.h"
Mathias Agopianf001c922010-11-11 17:58:51 -080031#include "GravitySensor.h"
32#include "LinearAccelerationSensor.h"
Mathias Agopian984826c2011-05-17 22:54:42 -070033#include "OrientationSensor.h"
Mathias Agopianf001c922010-11-11 17:58:51 -080034#include "RotationVectorSensor.h"
Mathias Agopian984826c2011-05-17 22:54:42 -070035#include "SensorFusion.h"
Peng Xueb4d6282015-12-10 18:02:41 -080036
Mathias Agopian984826c2011-05-17 22:54:42 -070037#include "SensorService.h"
Peng Xueb4d6282015-12-10 18:02:41 -080038#include "SensorEventConnection.h"
39#include "SensorEventAckReceiver.h"
40#include "SensorRecord.h"
41#include "SensorRegistrationInfo.h"
42#include "MostRecentEventLogger.h"
43
44#include <inttypes.h>
45#include <math.h>
46#include <stdint.h>
47#include <sys/types.h>
48#include <sys/socket.h>
Mathias Agopianfc328812010-07-14 23:41:37 -070049
50namespace android {
51// ---------------------------------------------------------------------------
52
Mathias Agopian33015422011-05-27 18:18:13 -070053/*
54 * Notes:
55 *
56 * - what about a gyro-corrected magnetic-field sensor?
Mathias Agopian33015422011-05-27 18:18:13 -070057 * - run mag sensor from time to time to force calibration
58 * - gravity sensor length is wrong (=> drift in linear-acc sensor)
59 *
60 */
61
Aravind Akella8ef3c892015-07-10 11:24:28 -070062const char* SensorService::WAKE_LOCK_NAME = "SensorService_wakelock";
Aravind Akellaa9e6cc32015-04-16 18:57:31 -070063// Permissions.
Aravind Akellaa9e6cc32015-04-16 18:57:31 -070064static const String16 sDump("android.permission.DUMP");
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -070065
Mathias Agopianfc328812010-07-14 23:41:37 -070066SensorService::SensorService()
Aravind Akella8a969552014-09-28 17:52:41 -070067 : mInitCheck(NO_INIT), mSocketBufferSize(SOCKET_BUFFER_SIZE_NON_BATCHED),
68 mWakeLockAcquired(false)
Mathias Agopianfc328812010-07-14 23:41:37 -070069{
70}
71
72void SensorService::onFirstRef()
73{
Steve Blocka5512372011-12-20 16:23:08 +000074 ALOGD("nuSensorService starting...");
Mathias Agopianf001c922010-11-11 17:58:51 -080075 SensorDevice& dev(SensorDevice::getInstance());
Mathias Agopianfc328812010-07-14 23:41:37 -070076
Mathias Agopianf001c922010-11-11 17:58:51 -080077 if (dev.initCheck() == NO_ERROR) {
Mathias Agopianf001c922010-11-11 17:58:51 -080078 sensor_t const* list;
Mathias Agopian7b2b32f2011-07-14 16:39:46 -070079 ssize_t count = dev.getSensorList(&list);
80 if (count > 0) {
81 ssize_t orientationIndex = -1;
Aravind Akellaf5047892015-07-20 17:29:33 -070082 bool hasGyro = false, hasAccel = false, hasMag = false;
Mathias Agopian7b2b32f2011-07-14 16:39:46 -070083 uint32_t virtualSensorsNeeds =
84 (1<<SENSOR_TYPE_GRAVITY) |
85 (1<<SENSOR_TYPE_LINEAR_ACCELERATION) |
Peng Xuf66684a2015-07-23 11:41:53 -070086 (1<<SENSOR_TYPE_ROTATION_VECTOR) |
87 (1<<SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR) |
88 (1<<SENSOR_TYPE_GAME_ROTATION_VECTOR);
Mathias Agopian7b2b32f2011-07-14 16:39:46 -070089
90 mLastEventSeen.setCapacity(count);
91 for (ssize_t i=0 ; i<count ; i++) {
Peng Xuf66684a2015-07-23 11:41:53 -070092 bool useThisSensor=true;
93
Mathias Agopian7b2b32f2011-07-14 16:39:46 -070094 switch (list[i].type) {
Aravind Akellaf5047892015-07-20 17:29:33 -070095 case SENSOR_TYPE_ACCELEROMETER:
96 hasAccel = true;
97 break;
98 case SENSOR_TYPE_MAGNETIC_FIELD:
99 hasMag = true;
100 break;
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700101 case SENSOR_TYPE_ORIENTATION:
102 orientationIndex = i;
103 break;
104 case SENSOR_TYPE_GYROSCOPE:
Mathias Agopian03193062013-05-10 19:32:39 -0700105 case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700106 hasGyro = true;
107 break;
108 case SENSOR_TYPE_GRAVITY:
109 case SENSOR_TYPE_LINEAR_ACCELERATION:
110 case SENSOR_TYPE_ROTATION_VECTOR:
Peng Xuf66684a2015-07-23 11:41:53 -0700111 case SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR:
112 case SENSOR_TYPE_GAME_ROTATION_VECTOR:
113 if (IGNORE_HARDWARE_FUSION) {
114 useThisSensor = false;
115 } else {
116 virtualSensorsNeeds &= ~(1<<list[i].type);
117 }
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700118 break;
119 }
Peng Xuf66684a2015-07-23 11:41:53 -0700120 if (useThisSensor) {
121 registerSensor( new HardwareSensor(list[i]) );
122 }
Mathias Agopian50df2952010-07-19 19:09:10 -0700123 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700124
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700125 // it's safe to instantiate the SensorFusion object here
126 // (it wants to be instantiated after h/w sensors have been
127 // registered)
Andreas Gamped4036b62015-07-28 13:49:04 -0700128 SensorFusion::getInstance();
Mathias Agopian984826c2011-05-17 22:54:42 -0700129
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700130 // build the sensor list returned to users
131 mUserSensorList = mSensorList;
Mathias Agopian33264862012-06-28 19:46:54 -0700132
Aravind Akellaf5047892015-07-20 17:29:33 -0700133 if (hasGyro && hasAccel && hasMag) {
Mathias Agopian03193062013-05-10 19:32:39 -0700134 // Add Android virtual sensors if they're not already
135 // available in the HAL
Peng Xuf66684a2015-07-23 11:41:53 -0700136 Sensor aSensor;
Mathias Agopian03193062013-05-10 19:32:39 -0700137
138 aSensor = registerVirtualSensor( new RotationVectorSensor() );
139 if (virtualSensorsNeeds & (1<<SENSOR_TYPE_ROTATION_VECTOR)) {
140 mUserSensorList.add(aSensor);
141 }
142
Mathias Agopian03193062013-05-10 19:32:39 -0700143 aSensor = registerVirtualSensor( new OrientationSensor() );
144 if (virtualSensorsNeeds & (1<<SENSOR_TYPE_ROTATION_VECTOR)) {
145 // if we are doing our own rotation-vector, also add
146 // the orientation sensor and remove the HAL provided one.
147 mUserSensorList.replaceAt(aSensor, orientationIndex);
148 }
149
Peng Xuf66684a2015-07-23 11:41:53 -0700150 aSensor = registerVirtualSensor(
151 new LinearAccelerationSensor(list, count) );
152 if (virtualSensorsNeeds &
153 (1<<SENSOR_TYPE_LINEAR_ACCELERATION)) {
154 mUserSensorList.add(aSensor);
155 }
156
Mathias Agopian33264862012-06-28 19:46:54 -0700157 // virtual debugging sensors are not added to mUserSensorList
Mathias Agopian03193062013-05-10 19:32:39 -0700158 registerVirtualSensor( new CorrectedGyroSensor(list, count) );
Mathias Agopian33264862012-06-28 19:46:54 -0700159 registerVirtualSensor( new GyroDriftSensor() );
160 }
161
Peng Xuf66684a2015-07-23 11:41:53 -0700162 if (hasAccel && hasGyro) {
163 Sensor aSensor;
164
165 aSensor = registerVirtualSensor(
166 new GravitySensor(list, count) );
167 if (virtualSensorsNeeds & (1<<SENSOR_TYPE_GRAVITY)) {
168 mUserSensorList.add(aSensor);
169 }
170
171 aSensor = registerVirtualSensor(
172 new GameRotationVectorSensor() );
173 if (virtualSensorsNeeds &
174 (1<<SENSOR_TYPE_GAME_ROTATION_VECTOR)) {
175 mUserSensorList.add(aSensor);
176 }
177 }
178
179 if (hasAccel && hasMag) {
180 Sensor aSensor;
181
182 aSensor = registerVirtualSensor(
183 new GeoMagRotationVectorSensor() );
184 if (virtualSensorsNeeds &
185 (1<<SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR)) {
186 mUserSensorList.add(aSensor);
187 }
188 }
189
Mathias Agopian33264862012-06-28 19:46:54 -0700190 // debugging sensor list
Mathias Agopian03193062013-05-10 19:32:39 -0700191 mUserSensorListDebug = mSensorList;
Mathias Agopian33264862012-06-28 19:46:54 -0700192
Aravind Akella5466c3d2014-08-22 16:11:10 -0700193 // Check if the device really supports batching by looking at the FIFO event
194 // counts for each sensor.
195 bool batchingSupported = false;
Svetoslavb412f6e2015-04-29 16:50:41 -0700196 for (size_t i = 0; i < mSensorList.size(); ++i) {
Aravind Akella5466c3d2014-08-22 16:11:10 -0700197 if (mSensorList[i].getFifoMaxEventCount() > 0) {
198 batchingSupported = true;
199 break;
200 }
201 }
202
203 if (batchingSupported) {
204 // Increase socket buffer size to a max of 100 KB for batching capabilities.
205 mSocketBufferSize = MAX_SOCKET_BUFFER_SIZE_BATCHED;
206 } else {
207 mSocketBufferSize = SOCKET_BUFFER_SIZE_NON_BATCHED;
208 }
209
210 // Compare the socketBufferSize value against the system limits and limit
211 // it to maxSystemSocketBufferSize if necessary.
Aravind Akella4c8b9512013-09-05 17:03:38 -0700212 FILE *fp = fopen("/proc/sys/net/core/wmem_max", "r");
213 char line[128];
214 if (fp != NULL && fgets(line, sizeof(line), fp) != NULL) {
215 line[sizeof(line) - 1] = '\0';
Aravind Akella5466c3d2014-08-22 16:11:10 -0700216 size_t maxSystemSocketBufferSize;
217 sscanf(line, "%zu", &maxSystemSocketBufferSize);
218 if (mSocketBufferSize > maxSystemSocketBufferSize) {
219 mSocketBufferSize = maxSystemSocketBufferSize;
Aravind Akella4c8b9512013-09-05 17:03:38 -0700220 }
221 }
Aravind Akella4c8b9512013-09-05 17:03:38 -0700222 if (fp) {
223 fclose(fp);
224 }
225
Aravind Akella9a844cf2014-02-11 18:58:52 -0800226 mWakeLockAcquired = false;
Aravind Akella56ae4262014-07-10 16:01:10 -0700227 mLooper = new Looper(false);
Aravind Akella8493b792014-09-08 15:45:47 -0700228 const size_t minBufferSize = SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT;
229 mSensorEventBuffer = new sensors_event_t[minBufferSize];
230 mSensorEventScratch = new sensors_event_t[minBufferSize];
231 mMapFlushEventsToConnections = new SensorEventConnection const * [minBufferSize];
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700232 mCurrentOperatingMode = NORMAL;
Aravind Akella7830ef32014-10-07 14:13:12 -0700233
Aravind Akella18d6d512015-06-18 14:18:28 -0700234 mNextSensorRegIndex = 0;
235 for (int i = 0; i < SENSOR_REGISTRATIONS_BUF_SIZE; ++i) {
236 mLastNSensorRegistrations.push();
237 }
238
239 mInitCheck = NO_ERROR;
Aravind Akellab4373ac2014-10-29 17:55:20 -0700240 mAckReceiver = new SensorEventAckReceiver(this);
241 mAckReceiver->run("SensorEventAckReceiver", PRIORITY_URGENT_DISPLAY);
Aravind Akella7830ef32014-10-07 14:13:12 -0700242 run("SensorService", PRIORITY_URGENT_DISPLAY);
Mathias Agopian7b2b32f2011-07-14 16:39:46 -0700243 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700244 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700245}
246
Mathias Agopian03193062013-05-10 19:32:39 -0700247Sensor SensorService::registerSensor(SensorInterface* s)
Mathias Agopianf001c922010-11-11 17:58:51 -0800248{
249 sensors_event_t event;
250 memset(&event, 0, sizeof(event));
251
252 const Sensor sensor(s->getSensor());
253 // add to the sensor list (returned to clients)
254 mSensorList.add(sensor);
255 // add to our handle->SensorInterface mapping
256 mSensorMap.add(sensor.getHandle(), s);
257 // create an entry in the mLastEventSeen array
Aravind Akella444f2672015-05-07 12:40:52 -0700258 mLastEventSeen.add(sensor.getHandle(), NULL);
Mathias Agopian03193062013-05-10 19:32:39 -0700259
260 return sensor;
Mathias Agopianf001c922010-11-11 17:58:51 -0800261}
262
Mathias Agopian03193062013-05-10 19:32:39 -0700263Sensor SensorService::registerVirtualSensor(SensorInterface* s)
Mathias Agopianf001c922010-11-11 17:58:51 -0800264{
Mathias Agopian03193062013-05-10 19:32:39 -0700265 Sensor sensor = registerSensor(s);
Mathias Agopianf001c922010-11-11 17:58:51 -0800266 mVirtualSensorList.add( s );
Mathias Agopian03193062013-05-10 19:32:39 -0700267 return sensor;
Mathias Agopianf001c922010-11-11 17:58:51 -0800268}
269
Mathias Agopianfc328812010-07-14 23:41:37 -0700270SensorService::~SensorService()
271{
Mathias Agopianf001c922010-11-11 17:58:51 -0800272 for (size_t i=0 ; i<mSensorMap.size() ; i++)
273 delete mSensorMap.valueAt(i);
Mathias Agopianfc328812010-07-14 23:41:37 -0700274}
275
Aravind Akella4949c502015-02-11 15:54:35 -0800276status_t SensorService::dump(int fd, const Vector<String16>& args)
Mathias Agopianfc328812010-07-14 23:41:37 -0700277{
Mathias Agopianfc328812010-07-14 23:41:37 -0700278 String8 result;
Mathias Agopian1cb13462011-06-27 16:05:52 -0700279 if (!PermissionCache::checkCallingPermission(sDump)) {
Peng Xueb4d6282015-12-10 18:02:41 -0800280 result.appendFormat("Permission Denial: can't dump SensorService from pid=%d, uid=%d\n",
Mathias Agopianfc328812010-07-14 23:41:37 -0700281 IPCThreadState::self()->getCallingPid(),
282 IPCThreadState::self()->getCallingUid());
Aravind Akella444f2672015-05-07 12:40:52 -0700283 } else {
Aravind Akella841a5922015-06-29 12:37:48 -0700284 if (args.size() > 2) {
Aravind Akella4949c502015-02-11 15:54:35 -0800285 return INVALID_OPERATION;
286 }
287 Mutex::Autolock _l(mLock);
288 SensorDevice& dev(SensorDevice::getInstance());
Aravind Akella841a5922015-06-29 12:37:48 -0700289 if (args.size() == 2 && args[0] == String16("restrict")) {
Aravind Akella444f2672015-05-07 12:40:52 -0700290 // If already in restricted mode. Ignore.
291 if (mCurrentOperatingMode == RESTRICTED) {
292 return status_t(NO_ERROR);
293 }
294 // If in any mode other than normal, ignore.
295 if (mCurrentOperatingMode != NORMAL) {
296 return INVALID_OPERATION;
297 }
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700298 mCurrentOperatingMode = RESTRICTED;
Aravind Akella4949c502015-02-11 15:54:35 -0800299 dev.disableAllSensors();
300 // Clear all pending flush connections for all active sensors. If one of the active
301 // connections has called flush() and the underlying sensor has been disabled before a
302 // flush complete event is returned, we need to remove the connection from this queue.
303 for (size_t i=0 ; i< mActiveSensors.size(); ++i) {
304 mActiveSensors.valueAt(i)->clearAllPendingFlushConnections();
305 }
Aravind Akella841a5922015-06-29 12:37:48 -0700306 mWhiteListedPackage.setTo(String8(args[1]));
Aravind Akella444f2672015-05-07 12:40:52 -0700307 return status_t(NO_ERROR);
308 } else if (args.size() == 1 && args[0] == String16("enable")) {
309 // If currently in restricted mode, reset back to NORMAL mode else ignore.
310 if (mCurrentOperatingMode == RESTRICTED) {
311 mCurrentOperatingMode = NORMAL;
312 dev.enableAllSensors();
313 }
Aravind Akella841a5922015-06-29 12:37:48 -0700314 if (mCurrentOperatingMode == DATA_INJECTION) {
315 resetToNormalModeLocked();
316 }
317 mWhiteListedPackage.clear();
Aravind Akella444f2672015-05-07 12:40:52 -0700318 return status_t(NO_ERROR);
Aravind Akella841a5922015-06-29 12:37:48 -0700319 } else if (args.size() == 2 && args[0] == String16("data_injection")) {
320 if (mCurrentOperatingMode == NORMAL) {
321 dev.disableAllSensors();
322 status_t err = dev.setMode(DATA_INJECTION);
323 if (err == NO_ERROR) {
324 mCurrentOperatingMode = DATA_INJECTION;
325 } else {
326 // Re-enable sensors.
327 dev.enableAllSensors();
328 }
329 mWhiteListedPackage.setTo(String8(args[1]));
330 return NO_ERROR;
331 } else if (mCurrentOperatingMode == DATA_INJECTION) {
332 // Already in DATA_INJECTION mode. Treat this as a no_op.
333 return NO_ERROR;
334 } else {
335 // Transition to data injection mode supported only from NORMAL mode.
336 return INVALID_OPERATION;
337 }
Aravind Akellaee155ca2015-06-24 08:31:32 -0700338 } else if (mSensorList.size() == 0) {
339 result.append("No Sensors on the device\n");
Aravind Akella444f2672015-05-07 12:40:52 -0700340 } else {
341 // Default dump the sensor list and debugging information.
342 result.append("Sensor List:\n");
343 for (size_t i=0 ; i<mSensorList.size() ; i++) {
344 const Sensor& s(mSensorList[i]);
345 result.appendFormat(
346 "%-15s| %-10s| version=%d |%-20s| 0x%08x | \"%s\" | type=%d |",
347 s.getName().string(),
348 s.getVendor().string(),
349 s.getVersion(),
350 s.getStringType().string(),
351 s.getHandle(),
352 s.getRequiredPermission().string(),
353 s.getType());
Mathias Agopian3560fb22010-07-22 21:24:39 -0700354
Aravind Akella444f2672015-05-07 12:40:52 -0700355 const int reportingMode = s.getReportingMode();
356 if (reportingMode == AREPORTING_MODE_CONTINUOUS) {
357 result.append(" continuous | ");
358 } else if (reportingMode == AREPORTING_MODE_ON_CHANGE) {
359 result.append(" on-change | ");
360 } else if (reportingMode == AREPORTING_MODE_ONE_SHOT) {
361 result.append(" one-shot | ");
362 } else {
363 result.append(" special-trigger | ");
364 }
365
366 if (s.getMaxDelay() > 0) {
367 result.appendFormat("minRate=%.2fHz | ", 1e6f / s.getMaxDelay());
368 } else {
369 result.appendFormat("maxDelay=%dus |", s.getMaxDelay());
370 }
371
372 if (s.getMinDelay() > 0) {
373 result.appendFormat("maxRate=%.2fHz | ", 1e6f / s.getMinDelay());
374 } else {
375 result.appendFormat("minDelay=%dus |", s.getMinDelay());
376 }
377
378 if (s.getFifoMaxEventCount() > 0) {
379 result.appendFormat("FifoMax=%d events | ",
380 s.getFifoMaxEventCount());
381 } else {
382 result.append("no batching | ");
383 }
384
385 if (s.isWakeUpSensor()) {
386 result.appendFormat("wakeUp | ");
387 } else {
388 result.appendFormat("non-wakeUp | ");
389 }
390
Aravind Akella18d6d512015-06-18 14:18:28 -0700391 int bufIndex = mLastEventSeen.indexOfKey(s.getHandle());
392 if (bufIndex >= 0) {
Peng Xueb4d6282015-12-10 18:02:41 -0800393 const MostRecentEventLogger* buf = mLastEventSeen.valueAt(bufIndex);
Aravind Akella18d6d512015-06-18 14:18:28 -0700394 if (buf != NULL && s.getRequiredPermission().isEmpty()) {
395 buf->printBuffer(result);
396 } else {
397 result.append("last=<> \n");
398 }
Aravind Akella444f2672015-05-07 12:40:52 -0700399 }
400 result.append("\n");
401 }
402 SensorFusion::getInstance().dump(result);
403 SensorDevice::getInstance().dump(result);
404
405 result.append("Active sensors:\n");
406 for (size_t i=0 ; i<mActiveSensors.size() ; i++) {
407 int handle = mActiveSensors.keyAt(i);
408 result.appendFormat("%s (handle=0x%08x, connections=%zu)\n",
409 getSensorName(handle).string(),
410 handle,
411 mActiveSensors.valueAt(i)->getNumConnections());
Aravind Akella6c2664a2014-08-13 12:24:50 -0700412 }
413
Andreas Gamped4036b62015-07-28 13:49:04 -0700414 result.appendFormat("Socket Buffer size = %zd events\n",
Aravind Akella444f2672015-05-07 12:40:52 -0700415 mSocketBufferSize/sizeof(sensors_event_t));
Aravind Akella18d6d512015-06-18 14:18:28 -0700416 result.appendFormat("WakeLock Status: %s \n", mWakeLockAcquired ? "acquired" :
417 "not held");
Aravind Akella444f2672015-05-07 12:40:52 -0700418 result.appendFormat("Mode :");
419 switch(mCurrentOperatingMode) {
420 case NORMAL:
421 result.appendFormat(" NORMAL\n");
422 break;
423 case RESTRICTED:
Aravind Akella841a5922015-06-29 12:37:48 -0700424 result.appendFormat(" RESTRICTED : %s\n", mWhiteListedPackage.string());
Aravind Akella444f2672015-05-07 12:40:52 -0700425 break;
426 case DATA_INJECTION:
Aravind Akella841a5922015-06-29 12:37:48 -0700427 result.appendFormat(" DATA_INJECTION : %s\n", mWhiteListedPackage.string());
Mathias Agopianba02cd22013-07-03 16:20:57 -0700428 }
Aravind Akella444f2672015-05-07 12:40:52 -0700429 result.appendFormat("%zd active connections\n", mActiveConnections.size());
Aravind Akella0e025c52014-06-03 19:19:57 -0700430
Aravind Akella444f2672015-05-07 12:40:52 -0700431 for (size_t i=0 ; i < mActiveConnections.size() ; i++) {
432 sp<SensorEventConnection> connection(mActiveConnections[i].promote());
433 if (connection != 0) {
434 result.appendFormat("Connection Number: %zu \n", i);
435 connection->dump(result);
436 }
Aravind Akella4c8b9512013-09-05 17:03:38 -0700437 }
Aravind Akella18d6d512015-06-18 14:18:28 -0700438
439 result.appendFormat("Previous Registrations:\n");
440 // Log in the reverse chronological order.
441 int currentIndex = (mNextSensorRegIndex - 1 + SENSOR_REGISTRATIONS_BUF_SIZE) %
442 SENSOR_REGISTRATIONS_BUF_SIZE;
443 const int startIndex = currentIndex;
444 do {
445 const SensorRegistrationInfo& reg_info = mLastNSensorRegistrations[currentIndex];
446 if (SensorRegistrationInfo::isSentinel(reg_info)) {
447 // Ignore sentinel, proceed to next item.
448 currentIndex = (currentIndex - 1 + SENSOR_REGISTRATIONS_BUF_SIZE) %
449 SENSOR_REGISTRATIONS_BUF_SIZE;
450 continue;
451 }
452 if (reg_info.mActivated) {
453 result.appendFormat("%02d:%02d:%02d activated package=%s handle=0x%08x "
454 "samplingRate=%dus maxReportLatency=%dus\n",
455 reg_info.mHour, reg_info.mMin, reg_info.mSec,
456 reg_info.mPackageName.string(), reg_info.mSensorHandle,
457 reg_info.mSamplingRateUs, reg_info.mMaxReportLatencyUs);
458 } else {
459 result.appendFormat("%02d:%02d:%02d de-activated package=%s handle=0x%08x\n",
460 reg_info.mHour, reg_info.mMin, reg_info.mSec,
461 reg_info.mPackageName.string(), reg_info.mSensorHandle);
462 }
463 currentIndex = (currentIndex - 1 + SENSOR_REGISTRATIONS_BUF_SIZE) %
464 SENSOR_REGISTRATIONS_BUF_SIZE;
465 } while(startIndex != currentIndex);
Aravind Akella4c8b9512013-09-05 17:03:38 -0700466 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700467 }
468 write(fd, result.string(), result.size());
469 return NO_ERROR;
470}
471
Aravind Akella9a844cf2014-02-11 18:58:52 -0800472void SensorService::cleanupAutoDisabledSensorLocked(const sp<SensorEventConnection>& connection,
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700473 sensors_event_t const* buffer, const int count) {
474 for (int i=0 ; i<count ; i++) {
475 int handle = buffer[i].sensor;
Aravind Akella8493b792014-09-08 15:45:47 -0700476 if (buffer[i].type == SENSOR_TYPE_META_DATA) {
477 handle = buffer[i].meta_data.sensor;
478 }
Aravind Akella0e025c52014-06-03 19:19:57 -0700479 if (connection->hasSensor(handle)) {
480 SensorInterface* sensor = mSensorMap.valueFor(handle);
481 // If this buffer has an event from a one_shot sensor and this connection is registered
482 // for this particular one_shot sensor, try cleaning up the connection.
483 if (sensor != NULL &&
484 sensor->getSensor().getReportingMode() == AREPORTING_MODE_ONE_SHOT) {
485 sensor->autoDisable(connection.get(), handle);
Aravind Akella9a844cf2014-02-11 18:58:52 -0800486 cleanupWithoutDisableLocked(connection, handle);
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700487 }
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700488
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700489 }
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700490 }
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700491}
492
Mathias Agopianfc328812010-07-14 23:41:37 -0700493bool SensorService::threadLoop()
494{
Steve Blocka5512372011-12-20 16:23:08 +0000495 ALOGD("nuSensorService thread starting...");
Mathias Agopianfc328812010-07-14 23:41:37 -0700496
Peng Xueb4d6282015-12-10 18:02:41 -0800497 // each virtual sensor could generate an event per "real" event, that's why we need to size
498 // numEventMax much smaller than MAX_RECEIVE_BUFFER_EVENT_COUNT. in practice, this is too
499 // aggressive, but guaranteed to be enough.
Mathias Agopian90ed3e82013-09-09 23:36:25 -0700500 const size_t minBufferSize = SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT;
501 const size_t numEventMax = minBufferSize / (1 + mVirtualSensorList.size());
502
Mathias Agopianf001c922010-11-11 17:58:51 -0800503 SensorDevice& device(SensorDevice::getInstance());
504 const size_t vcount = mVirtualSensorList.size();
Mathias Agopianfc328812010-07-14 23:41:37 -0700505
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700506 const int halVersion = device.getHalDeviceVersion();
Mathias Agopianfc328812010-07-14 23:41:37 -0700507 do {
Aravind Akella8493b792014-09-08 15:45:47 -0700508 ssize_t count = device.poll(mSensorEventBuffer, numEventMax);
509 if (count < 0) {
Steve Blockf5a12302012-01-06 19:20:56 +0000510 ALOGE("sensor poll failed (%s)", strerror(-count));
Mathias Agopianfc328812010-07-14 23:41:37 -0700511 break;
512 }
Aravind Akella56ae4262014-07-10 16:01:10 -0700513
514 // Reset sensors_event_t.flags to zero for all events in the buffer.
515 for (int i = 0; i < count; i++) {
Aravind Akella8493b792014-09-08 15:45:47 -0700516 mSensorEventBuffer[i].flags = 0;
Aravind Akella56ae4262014-07-10 16:01:10 -0700517 }
Aravind Akellae148bc22014-09-24 22:12:58 -0700518
Peng Xueb4d6282015-12-10 18:02:41 -0800519 // Make a copy of the connection vector as some connections may be removed during the course
520 // of this loop (especially when one-shot sensor events are present in the sensor_event
521 // buffer). Promote all connections to StrongPointers before the lock is acquired. If the
522 // destructor of the sp gets called when the lock is acquired, it may result in a deadlock
523 // as ~SensorEventConnection() needs to acquire mLock again for cleanup. So copy all the
524 // strongPointers to a vector before the lock is acquired.
Aravind Akellae148bc22014-09-24 22:12:58 -0700525 SortedVector< sp<SensorEventConnection> > activeConnections;
Aravind Akellab4373ac2014-10-29 17:55:20 -0700526 populateActiveConnections(&activeConnections);
Peng Xueb4d6282015-12-10 18:02:41 -0800527
Aravind Akella9a844cf2014-02-11 18:58:52 -0800528 Mutex::Autolock _l(mLock);
529 // Poll has returned. Hold a wakelock if one of the events is from a wake up sensor. The
530 // rest of this loop is under a critical section protected by mLock. Acquiring a wakeLock,
531 // sending events to clients (incrementing SensorEventConnection::mWakeLockRefCount) should
532 // not be interleaved with decrementing SensorEventConnection::mWakeLockRefCount and
533 // releasing the wakelock.
534 bool bufferHasWakeUpEvent = false;
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700535 for (int i = 0; i < count; i++) {
Aravind Akella8493b792014-09-08 15:45:47 -0700536 if (isWakeUpSensorEvent(mSensorEventBuffer[i])) {
Aravind Akella9a844cf2014-02-11 18:58:52 -0800537 bufferHasWakeUpEvent = true;
538 break;
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700539 }
540 }
541
Aravind Akella9a844cf2014-02-11 18:58:52 -0800542 if (bufferHasWakeUpEvent && !mWakeLockAcquired) {
Aravind Akellab4373ac2014-10-29 17:55:20 -0700543 setWakeLockAcquiredLocked(true);
Aravind Akella9a844cf2014-02-11 18:58:52 -0800544 }
Aravind Akella8493b792014-09-08 15:45:47 -0700545 recordLastValueLocked(mSensorEventBuffer, count);
Mathias Agopian94e8f682010-11-10 17:50:28 -0800546
Mathias Agopianf001c922010-11-11 17:58:51 -0800547 // handle virtual sensors
548 if (count && vcount) {
Aravind Akella8493b792014-09-08 15:45:47 -0700549 sensors_event_t const * const event = mSensorEventBuffer;
Aravind Akella9a844cf2014-02-11 18:58:52 -0800550 const size_t activeVirtualSensorCount = mActiveVirtualSensors.size();
Mathias Agopianf001c922010-11-11 17:58:51 -0800551 if (activeVirtualSensorCount) {
552 size_t k = 0;
Mathias Agopian984826c2011-05-17 22:54:42 -0700553 SensorFusion& fusion(SensorFusion::getInstance());
554 if (fusion.isEnabled()) {
555 for (size_t i=0 ; i<size_t(count) ; i++) {
556 fusion.process(event[i]);
557 }
558 }
Mathias Agopiand1920ff2012-05-29 19:46:14 -0700559 for (size_t i=0 ; i<size_t(count) && k<minBufferSize ; i++) {
Mathias Agopianf001c922010-11-11 17:58:51 -0800560 for (size_t j=0 ; j<activeVirtualSensorCount ; j++) {
Mathias Agopiand1920ff2012-05-29 19:46:14 -0700561 if (count + k >= minBufferSize) {
562 ALOGE("buffer too small to hold all events: "
Mark Salyzyndb458612014-06-10 14:50:02 -0700563 "count=%zd, k=%zu, size=%zu",
Mathias Agopiand1920ff2012-05-29 19:46:14 -0700564 count, k, minBufferSize);
565 break;
566 }
Mathias Agopianf001c922010-11-11 17:58:51 -0800567 sensors_event_t out;
Aravind Akella9a844cf2014-02-11 18:58:52 -0800568 SensorInterface* si = mActiveVirtualSensors.valueAt(j);
Mathias Agopiand1920ff2012-05-29 19:46:14 -0700569 if (si->process(&out, event[i])) {
Aravind Akella8493b792014-09-08 15:45:47 -0700570 mSensorEventBuffer[count + k] = out;
Mathias Agopianf001c922010-11-11 17:58:51 -0800571 k++;
572 }
573 }
574 }
575 if (k) {
576 // record the last synthesized values
Aravind Akella8493b792014-09-08 15:45:47 -0700577 recordLastValueLocked(&mSensorEventBuffer[count], k);
Mathias Agopianf001c922010-11-11 17:58:51 -0800578 count += k;
579 // sort the buffer by time-stamps
Aravind Akella8493b792014-09-08 15:45:47 -0700580 sortEventBuffer(mSensorEventBuffer, count);
Mathias Agopianfc328812010-07-14 23:41:37 -0700581 }
582 }
583 }
584
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700585 // handle backward compatibility for RotationVector sensor
586 if (halVersion < SENSORS_DEVICE_API_VERSION_1_0) {
587 for (int i = 0; i < count; i++) {
Aravind Akella8493b792014-09-08 15:45:47 -0700588 if (mSensorEventBuffer[i].type == SENSOR_TYPE_ROTATION_VECTOR) {
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700589 // All the 4 components of the quaternion should be available
590 // No heading accuracy. Set it to -1
Aravind Akella8493b792014-09-08 15:45:47 -0700591 mSensorEventBuffer[i].data[4] = -1;
592 }
593 }
594 }
595
Peng Xueb4d6282015-12-10 18:02:41 -0800596 // Map flush_complete_events in the buffer to SensorEventConnections which called flush on
597 // the hardware sensor. mapFlushEventsToConnections[i] will be the SensorEventConnection
598 // mapped to the corresponding flush_complete_event in mSensorEventBuffer[i] if such a
599 // mapping exists (NULL otherwise).
Aravind Akella8493b792014-09-08 15:45:47 -0700600 for (int i = 0; i < count; ++i) {
601 mMapFlushEventsToConnections[i] = NULL;
602 if (mSensorEventBuffer[i].type == SENSOR_TYPE_META_DATA) {
603 const int sensor_handle = mSensorEventBuffer[i].meta_data.sensor;
604 SensorRecord* rec = mActiveSensors.valueFor(sensor_handle);
605 if (rec != NULL) {
606 mMapFlushEventsToConnections[i] = rec->getFirstPendingFlushConnection();
607 rec->removeFirstPendingFlushConnection();
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700608 }
609 }
610 }
611
Aravind Akella9a844cf2014-02-11 18:58:52 -0800612 // Send our events to clients. Check the state of wake lock for each client and release the
613 // lock if none of the clients need it.
614 bool needsWakeLock = false;
Aravind Akella8493b792014-09-08 15:45:47 -0700615 size_t numConnections = activeConnections.size();
616 for (size_t i=0 ; i < numConnections; ++i) {
Aravind Akellae148bc22014-09-24 22:12:58 -0700617 if (activeConnections[i] != 0) {
618 activeConnections[i]->sendEvents(mSensorEventBuffer, count, mSensorEventScratch,
Aravind Akella8493b792014-09-08 15:45:47 -0700619 mMapFlushEventsToConnections);
Aravind Akellae148bc22014-09-24 22:12:58 -0700620 needsWakeLock |= activeConnections[i]->needsWakeLock();
Aravind Akella8493b792014-09-08 15:45:47 -0700621 // If the connection has one-shot sensors, it may be cleaned up after first trigger.
622 // Early check for one-shot sensors.
Aravind Akellae148bc22014-09-24 22:12:58 -0700623 if (activeConnections[i]->hasOneShotSensors()) {
624 cleanupAutoDisabledSensorLocked(activeConnections[i], mSensorEventBuffer,
625 count);
Aravind Akella8493b792014-09-08 15:45:47 -0700626 }
Mathias Agopianf001c922010-11-11 17:58:51 -0800627 }
628 }
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700629
Aravind Akella9a844cf2014-02-11 18:58:52 -0800630 if (mWakeLockAcquired && !needsWakeLock) {
Aravind Akellab4373ac2014-10-29 17:55:20 -0700631 setWakeLockAcquiredLocked(false);
Aravind Akella9a844cf2014-02-11 18:58:52 -0800632 }
Aravind Akella8493b792014-09-08 15:45:47 -0700633 } while (!Thread::exitPending());
Mathias Agopianfc328812010-07-14 23:41:37 -0700634
Steve Block3c20fbe2012-01-05 23:22:43 +0000635 ALOGW("Exiting SensorService::threadLoop => aborting...");
Mathias Agopian1a623012011-11-09 17:50:15 -0800636 abort();
Mathias Agopianfc328812010-07-14 23:41:37 -0700637 return false;
638}
639
Aravind Akella56ae4262014-07-10 16:01:10 -0700640sp<Looper> SensorService::getLooper() const {
641 return mLooper;
642}
643
Aravind Akellab4373ac2014-10-29 17:55:20 -0700644void SensorService::resetAllWakeLockRefCounts() {
645 SortedVector< sp<SensorEventConnection> > activeConnections;
646 populateActiveConnections(&activeConnections);
647 {
648 Mutex::Autolock _l(mLock);
649 for (size_t i=0 ; i < activeConnections.size(); ++i) {
650 if (activeConnections[i] != 0) {
651 activeConnections[i]->resetWakeLockRefCount();
652 }
653 }
654 setWakeLockAcquiredLocked(false);
655 }
656}
657
658void SensorService::setWakeLockAcquiredLocked(bool acquire) {
659 if (acquire) {
660 if (!mWakeLockAcquired) {
661 acquire_wake_lock(PARTIAL_WAKE_LOCK, WAKE_LOCK_NAME);
662 mWakeLockAcquired = true;
663 }
664 mLooper->wake();
665 } else {
666 if (mWakeLockAcquired) {
667 release_wake_lock(WAKE_LOCK_NAME);
668 mWakeLockAcquired = false;
669 }
670 }
671}
672
Aravind Akellab4373ac2014-10-29 17:55:20 -0700673bool SensorService::isWakeLockAcquired() {
674 Mutex::Autolock _l(mLock);
675 return mWakeLockAcquired;
676}
677
Aravind Akella56ae4262014-07-10 16:01:10 -0700678bool SensorService::SensorEventAckReceiver::threadLoop() {
679 ALOGD("new thread SensorEventAckReceiver");
Aravind Akellab4373ac2014-10-29 17:55:20 -0700680 sp<Looper> looper = mService->getLooper();
Aravind Akella56ae4262014-07-10 16:01:10 -0700681 do {
Aravind Akellab4373ac2014-10-29 17:55:20 -0700682 bool wakeLockAcquired = mService->isWakeLockAcquired();
683 int timeout = -1;
684 if (wakeLockAcquired) timeout = 5000;
685 int ret = looper->pollOnce(timeout);
686 if (ret == ALOOPER_POLL_TIMEOUT) {
687 mService->resetAllWakeLockRefCounts();
688 }
Aravind Akella56ae4262014-07-10 16:01:10 -0700689 } while(!Thread::exitPending());
690 return false;
691}
692
Aravind Akella9a844cf2014-02-11 18:58:52 -0800693void SensorService::recordLastValueLocked(
Aravind Akella4b847042014-03-03 19:02:46 -0800694 const sensors_event_t* buffer, size_t count) {
Aravind Akella4b847042014-03-03 19:02:46 -0800695 for (size_t i = 0; i < count; i++) {
Aravind Akella444f2672015-05-07 12:40:52 -0700696 if (buffer[i].type != SENSOR_TYPE_META_DATA) {
Peng Xueb4d6282015-12-10 18:02:41 -0800697 MostRecentEventLogger* &circular_buf = mLastEventSeen.editValueFor(buffer[i].sensor);
Aravind Akella444f2672015-05-07 12:40:52 -0700698 if (circular_buf == NULL) {
Peng Xueb4d6282015-12-10 18:02:41 -0800699 circular_buf = new MostRecentEventLogger(buffer[i].type);
Aravind Akella4b847042014-03-03 19:02:46 -0800700 }
Aravind Akella444f2672015-05-07 12:40:52 -0700701 circular_buf->addEvent(buffer[i]);
Mathias Agopian94e8f682010-11-10 17:50:28 -0800702 }
703 }
Mathias Agopian94e8f682010-11-10 17:50:28 -0800704}
705
Mathias Agopianf001c922010-11-11 17:58:51 -0800706void SensorService::sortEventBuffer(sensors_event_t* buffer, size_t count)
707{
708 struct compar {
709 static int cmp(void const* lhs, void const* rhs) {
710 sensors_event_t const* l = static_cast<sensors_event_t const*>(lhs);
711 sensors_event_t const* r = static_cast<sensors_event_t const*>(rhs);
Mathias Agopiana5c106a2012-04-19 18:18:24 -0700712 return l->timestamp - r->timestamp;
Mathias Agopianf001c922010-11-11 17:58:51 -0800713 }
714 };
715 qsort(buffer, count, sizeof(sensors_event_t), compar::cmp);
716}
717
Mathias Agopian5d270722010-07-19 15:20:39 -0700718String8 SensorService::getSensorName(int handle) const {
Mathias Agopian010e4222011-06-08 20:06:50 -0700719 size_t count = mUserSensorList.size();
Mathias Agopian5d270722010-07-19 15:20:39 -0700720 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian010e4222011-06-08 20:06:50 -0700721 const Sensor& sensor(mUserSensorList[i]);
Mathias Agopian5d270722010-07-19 15:20:39 -0700722 if (sensor.getHandle() == handle) {
723 return sensor.getName();
724 }
725 }
726 String8 result("unknown");
727 return result;
728}
729
Aravind Akellab4099e72013-10-15 15:43:10 -0700730bool SensorService::isVirtualSensor(int handle) const {
731 SensorInterface* sensor = mSensorMap.valueFor(handle);
732 return sensor->isVirtual();
733}
734
Aravind Akella9a844cf2014-02-11 18:58:52 -0800735bool SensorService::isWakeUpSensorEvent(const sensors_event_t& event) const {
Sean Wan7869e222014-07-14 17:07:33 -0700736 int handle = event.sensor;
737 if (event.type == SENSOR_TYPE_META_DATA) {
738 handle = event.meta_data.sensor;
739 }
740 SensorInterface* sensor = mSensorMap.valueFor(handle);
741 return sensor != NULL && sensor->getSensor().isWakeUpSensor();
Aravind Akella9a844cf2014-02-11 18:58:52 -0800742}
743
Aravind Akella6c2664a2014-08-13 12:24:50 -0700744SensorService::SensorRecord * SensorService::getSensorRecord(int handle) {
745 return mActiveSensors.valueFor(handle);
746}
747
Svetoslavb412f6e2015-04-29 16:50:41 -0700748Vector<Sensor> SensorService::getSensorList(const String16& opPackageName)
Mathias Agopianfc328812010-07-14 23:41:37 -0700749{
Mathias Agopian33264862012-06-28 19:46:54 -0700750 char value[PROPERTY_VALUE_MAX];
751 property_get("debug.sensors", value, "0");
Aravind Akella70018042014-04-07 22:52:37 +0000752 const Vector<Sensor>& initialSensorList = (atoi(value)) ?
753 mUserSensorListDebug : mUserSensorList;
754 Vector<Sensor> accessibleSensorList;
755 for (size_t i = 0; i < initialSensorList.size(); i++) {
756 Sensor sensor = initialSensorList[i];
Svetoslavb412f6e2015-04-29 16:50:41 -0700757 if (canAccessSensor(sensor, "getSensorList", opPackageName)) {
Aravind Akella70018042014-04-07 22:52:37 +0000758 accessibleSensorList.add(sensor);
759 } else {
Svetoslavb412f6e2015-04-29 16:50:41 -0700760 ALOGI("Skipped sensor %s because it requires permission %s and app op %d",
Bernhard Rosenkränzer5f619932014-11-17 21:06:20 +0100761 sensor.getName().string(),
Svetoslavb412f6e2015-04-29 16:50:41 -0700762 sensor.getRequiredPermission().string(),
763 sensor.getRequiredAppOp());
Aravind Akella70018042014-04-07 22:52:37 +0000764 }
Mathias Agopian33264862012-06-28 19:46:54 -0700765 }
Aravind Akella70018042014-04-07 22:52:37 +0000766 return accessibleSensorList;
Mathias Agopianfc328812010-07-14 23:41:37 -0700767}
768
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700769sp<ISensorEventConnection> SensorService::createSensorEventConnection(const String8& packageName,
Svetoslavb412f6e2015-04-29 16:50:41 -0700770 int requestedMode, const String16& opPackageName) {
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700771 // Only 2 modes supported for a SensorEventConnection ... NORMAL and DATA_INJECTION.
772 if (requestedMode != NORMAL && requestedMode != DATA_INJECTION) {
773 return NULL;
774 }
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700775
776 Mutex::Autolock _l(mLock);
Aravind Akella841a5922015-06-29 12:37:48 -0700777 // To create a client in DATA_INJECTION mode to inject data, SensorService should already be
778 // operating in DI mode.
779 if (requestedMode == DATA_INJECTION) {
780 if (mCurrentOperatingMode != DATA_INJECTION) return NULL;
781 if (!isWhiteListedPackage(packageName)) return NULL;
782 }
783
Mathias Agopian5307d172012-09-18 17:02:43 -0700784 uid_t uid = IPCThreadState::self()->getCallingUid();
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700785 sp<SensorEventConnection> result(new SensorEventConnection(this, uid, packageName,
Svetoslavb412f6e2015-04-29 16:50:41 -0700786 requestedMode == DATA_INJECTION, opPackageName));
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700787 if (requestedMode == DATA_INJECTION) {
788 if (mActiveConnections.indexOf(result) < 0) {
789 mActiveConnections.add(result);
790 }
791 // Add the associated file descriptor to the Looper for polling whenever there is data to
792 // be injected.
793 result->updateLooperRegistration(mLooper);
794 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700795 return result;
796}
797
Aravind Akella841a5922015-06-29 12:37:48 -0700798int SensorService::isDataInjectionEnabled() {
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700799 Mutex::Autolock _l(mLock);
Aravind Akella841a5922015-06-29 12:37:48 -0700800 return (mCurrentOperatingMode == DATA_INJECTION);
Aravind Akellaa9e6cc32015-04-16 18:57:31 -0700801}
802
803status_t SensorService::resetToNormalMode() {
804 Mutex::Autolock _l(mLock);
805 return resetToNormalModeLocked();
806}
807
808status_t SensorService::resetToNormalModeLocked() {
809 SensorDevice& dev(SensorDevice::getInstance());
810 dev.enableAllSensors();
811 status_t err = dev.setMode(NORMAL);
812 mCurrentOperatingMode = NORMAL;
813 return err;
814}
815
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800816void SensorService::cleanupConnection(SensorEventConnection* c)
Mathias Agopianfc328812010-07-14 23:41:37 -0700817{
818 Mutex::Autolock _l(mLock);
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800819 const wp<SensorEventConnection> connection(c);
Mathias Agopian7c1c5312010-07-21 15:59:50 -0700820 size_t size = mActiveSensors.size();
Mark Salyzyndb458612014-06-10 14:50:02 -0700821 ALOGD_IF(DEBUG_CONNECTIONS, "%zu active sensors", size);
Mathias Agopian7c1c5312010-07-21 15:59:50 -0700822 for (size_t i=0 ; i<size ; ) {
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800823 int handle = mActiveSensors.keyAt(i);
824 if (c->hasSensor(handle)) {
Mark Salyzyndb458612014-06-10 14:50:02 -0700825 ALOGD_IF(DEBUG_CONNECTIONS, "%zu: disabling handle=0x%08x", i, handle);
Mathias Agopianf001c922010-11-11 17:58:51 -0800826 SensorInterface* sensor = mSensorMap.valueFor( handle );
Steve Blockf5a12302012-01-06 19:20:56 +0000827 ALOGE_IF(!sensor, "mSensorMap[handle=0x%08x] is null!", handle);
Mathias Agopianf001c922010-11-11 17:58:51 -0800828 if (sensor) {
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800829 sensor->activate(c, false);
Mathias Agopianf001c922010-11-11 17:58:51 -0800830 }
Aravind Akella8a969552014-09-28 17:52:41 -0700831 c->removeSensor(handle);
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800832 }
833 SensorRecord* rec = mActiveSensors.valueAt(i);
Mark Salyzyndb458612014-06-10 14:50:02 -0700834 ALOGE_IF(!rec, "mActiveSensors[%zu] is null (handle=0x%08x)!", i, handle);
Steve Blocka5512372011-12-20 16:23:08 +0000835 ALOGD_IF(DEBUG_CONNECTIONS,
Mark Salyzyndb458612014-06-10 14:50:02 -0700836 "removing connection %p for sensor[%zu].handle=0x%08x",
Mathias Agopiana1b7db92011-05-27 16:23:58 -0700837 c, i, handle);
838
Mathias Agopiandb5b4bc2011-02-03 14:52:47 -0800839 if (rec && rec->removeConnection(connection)) {
Steve Blocka5512372011-12-20 16:23:08 +0000840 ALOGD_IF(DEBUG_CONNECTIONS, "... and it was the last connection");
Mathias Agopian7c1c5312010-07-21 15:59:50 -0700841 mActiveSensors.removeItemsAt(i, 1);
Mathias Agopianf001c922010-11-11 17:58:51 -0800842 mActiveVirtualSensors.removeItem(handle);
Mathias Agopian7c1c5312010-07-21 15:59:50 -0700843 delete rec;
844 size--;
845 } else {
846 i++;
Mathias Agopianfc328812010-07-14 23:41:37 -0700847 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700848 }
Aravind Akella8a969552014-09-28 17:52:41 -0700849 c->updateLooperRegistration(mLooper);
Mathias Agopian7c1c5312010-07-21 15:59:50 -0700850 mActiveConnections.remove(connection);
Mathias Agopian787ac1b2012-09-18 18:49:18 -0700851 BatteryService::cleanup(c->getUid());
Aravind Akella9a844cf2014-02-11 18:58:52 -0800852 if (c->needsWakeLock()) {
853 checkWakeLockStateLocked();
854 }
Mathias Agopianfc328812010-07-14 23:41:37 -0700855}
856
Aravind Akella70018042014-04-07 22:52:37 +0000857Sensor SensorService::getSensorFromHandle(int handle) const {
858 return mSensorMap.valueFor(handle)->getSensor();
859}
860
Mathias Agopianfc328812010-07-14 23:41:37 -0700861status_t SensorService::enable(const sp<SensorEventConnection>& connection,
Svetoslavb412f6e2015-04-29 16:50:41 -0700862 int handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags,
863 const String16& opPackageName)
Mathias Agopianfc328812010-07-14 23:41:37 -0700864{
Mathias Agopian50df2952010-07-19 19:09:10 -0700865 if (mInitCheck != NO_ERROR)
866 return mInitCheck;
867
Mathias Agopianf001c922010-11-11 17:58:51 -0800868 SensorInterface* sensor = mSensorMap.valueFor(handle);
Mathias Agopianac9a96d2013-07-12 02:01:16 -0700869 if (sensor == NULL) {
870 return BAD_VALUE;
871 }
Aravind Akella70018042014-04-07 22:52:37 +0000872
Svetoslavb412f6e2015-04-29 16:50:41 -0700873 if (!canAccessSensor(sensor->getSensor(), "Tried enabling", opPackageName)) {
Aravind Akella70018042014-04-07 22:52:37 +0000874 return BAD_VALUE;
875 }
876
Mathias Agopianac9a96d2013-07-12 02:01:16 -0700877 Mutex::Autolock _l(mLock);
Aravind Akella841a5922015-06-29 12:37:48 -0700878 if ((mCurrentOperatingMode == RESTRICTED || mCurrentOperatingMode == DATA_INJECTION)
879 && !isWhiteListedPackage(connection->getPackageName())) {
Aravind Akella4949c502015-02-11 15:54:35 -0800880 return INVALID_OPERATION;
881 }
882
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700883 SensorRecord* rec = mActiveSensors.valueFor(handle);
884 if (rec == 0) {
885 rec = new SensorRecord(connection);
886 mActiveSensors.add(handle, rec);
887 if (sensor->isVirtual()) {
888 mActiveVirtualSensors.add(handle, sensor);
889 }
890 } else {
891 if (rec->addConnection(connection)) {
Aravind Akella9a844cf2014-02-11 18:58:52 -0800892 // this sensor is already activated, but we are adding a connection that uses it.
893 // Immediately send down the last known value of the requested sensor if it's not a
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700894 // "continuous" sensor.
Aravind Akella0e025c52014-06-03 19:19:57 -0700895 if (sensor->getSensor().getReportingMode() == AREPORTING_MODE_ON_CHANGE) {
Aravind Akella9a844cf2014-02-11 18:58:52 -0800896 // NOTE: The wake_up flag of this event may get set to
897 // WAKE_UP_SENSOR_EVENT_NEEDS_ACK if this is a wake_up event.
Peng Xueb4d6282015-12-10 18:02:41 -0800898 MostRecentEventLogger *circular_buf = mLastEventSeen.valueFor(handle);
Aravind Akella444f2672015-05-07 12:40:52 -0700899 if (circular_buf) {
900 sensors_event_t event;
901 memset(&event, 0, sizeof(event));
902 // It is unlikely that this buffer is empty as the sensor is already active.
903 // One possible corner case may be two applications activating an on-change
904 // sensor at the same time.
905 if(circular_buf->populateLastEvent(&event)) {
906 event.sensor = handle;
907 if (event.version == sizeof(sensors_event_t)) {
908 if (isWakeUpSensorEvent(event) && !mWakeLockAcquired) {
909 setWakeLockAcquiredLocked(true);
910 }
911 connection->sendEvents(&event, 1, NULL);
912 if (!connection->needsWakeLock() && mWakeLockAcquired) {
913 checkWakeLockStateLocked();
914 }
915 }
Aravind Akella9a844cf2014-02-11 18:58:52 -0800916 }
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700917 }
918 }
919 }
920 }
921
922 if (connection->addSensor(handle)) {
923 BatteryService::enableSensor(connection->getUid(), handle);
924 // the sensor was added (which means it wasn't already there)
925 // so, see if this connection becomes active
926 if (mActiveConnections.indexOf(connection) < 0) {
927 mActiveConnections.add(connection);
928 }
929 } else {
930 ALOGW("sensor %08x already enabled in connection %p (ignoring)",
931 handle, connection.get());
932 }
933
Aravind Akella724d91d2013-06-27 12:04:23 -0700934 nsecs_t minDelayNs = sensor->getSensor().getMinDelayNs();
935 if (samplingPeriodNs < minDelayNs) {
936 samplingPeriodNs = minDelayNs;
937 }
938
Aravind Akella6c2664a2014-08-13 12:24:50 -0700939 ALOGD_IF(DEBUG_CONNECTIONS, "Calling batch handle==%d flags=%d"
940 "rate=%" PRId64 " timeout== %" PRId64"",
Aravind Akella724d91d2013-06-27 12:04:23 -0700941 handle, reservedFlags, samplingPeriodNs, maxBatchReportLatencyNs);
942
Aravind Akella4949c502015-02-11 15:54:35 -0800943 status_t err = sensor->batch(connection.get(), handle, 0, samplingPeriodNs,
Aravind Akella724d91d2013-06-27 12:04:23 -0700944 maxBatchReportLatencyNs);
Aravind Akella6c2664a2014-08-13 12:24:50 -0700945
Peng Xu20483c42015-10-26 15:14:43 -0700946 // Call flush() before calling activate() on the sensor. Wait for a first
947 // flush complete event before sending events on this connection. Ignore
948 // one-shot sensors which don't support flush(). Ignore on-change sensors
949 // to maintain the on-change logic (any on-change events except the initial
950 // one should be trigger by a change in value). Also if this sensor isn't
951 // already active, don't call flush().
952 if (err == NO_ERROR &&
953 sensor->getSensor().getReportingMode() != AREPORTING_MODE_ONE_SHOT &&
954 sensor->getSensor().getReportingMode() != AREPORTING_MODE_ON_CHANGE &&
Aravind Akella5466c3d2014-08-22 16:11:10 -0700955 rec->getNumConnections() > 1) {
956 connection->setFirstFlushPending(handle, true);
Aravind Akella4c8b9512013-09-05 17:03:38 -0700957 status_t err_flush = sensor->flush(connection.get(), handle);
Aravind Akella5466c3d2014-08-22 16:11:10 -0700958 // Flush may return error if the underlying h/w sensor uses an older HAL.
Aravind Akella6c2664a2014-08-13 12:24:50 -0700959 if (err_flush == NO_ERROR) {
Aravind Akella6c2664a2014-08-13 12:24:50 -0700960 rec->addPendingFlushConnection(connection.get());
Aravind Akella5466c3d2014-08-22 16:11:10 -0700961 } else {
962 connection->setFirstFlushPending(handle, false);
Aravind Akella4c8b9512013-09-05 17:03:38 -0700963 }
964 }
Aravind Akella724d91d2013-06-27 12:04:23 -0700965
966 if (err == NO_ERROR) {
967 ALOGD_IF(DEBUG_CONNECTIONS, "Calling activate on %d", handle);
968 err = sensor->activate(connection.get(), true);
969 }
970
Aravind Akella8a969552014-09-28 17:52:41 -0700971 if (err == NO_ERROR) {
972 connection->updateLooperRegistration(mLooper);
Aravind Akella18d6d512015-06-18 14:18:28 -0700973 SensorRegistrationInfo &reg_info =
974 mLastNSensorRegistrations.editItemAt(mNextSensorRegIndex);
975 reg_info.mSensorHandle = handle;
976 reg_info.mSamplingRateUs = samplingPeriodNs/1000;
977 reg_info.mMaxReportLatencyUs = maxBatchReportLatencyNs/1000;
978 reg_info.mActivated = true;
979 reg_info.mPackageName = connection->getPackageName();
980 time_t rawtime = time(NULL);
981 struct tm * timeinfo = localtime(&rawtime);
982 reg_info.mHour = timeinfo->tm_hour;
983 reg_info.mMin = timeinfo->tm_min;
984 reg_info.mSec = timeinfo->tm_sec;
985 mNextSensorRegIndex = (mNextSensorRegIndex + 1) % SENSOR_REGISTRATIONS_BUF_SIZE;
Aravind Akella56ae4262014-07-10 16:01:10 -0700986 }
987
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -0700988 if (err != NO_ERROR) {
Aravind Akella724d91d2013-06-27 12:04:23 -0700989 // batch/activate has failed, reset our state.
Mathias Agopianac9a96d2013-07-12 02:01:16 -0700990 cleanupWithoutDisableLocked(connection, handle);
Mathias Agopianfc328812010-07-14 23:41:37 -0700991 }
992 return err;
993}
994
995status_t SensorService::disable(const sp<SensorEventConnection>& connection,
996 int handle)
997{
Mathias Agopian50df2952010-07-19 19:09:10 -0700998 if (mInitCheck != NO_ERROR)
999 return mInitCheck;
1000
Mathias Agopianac9a96d2013-07-12 02:01:16 -07001001 Mutex::Autolock _l(mLock);
1002 status_t err = cleanupWithoutDisableLocked(connection, handle);
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -07001003 if (err == NO_ERROR) {
1004 SensorInterface* sensor = mSensorMap.valueFor(handle);
1005 err = sensor ? sensor->activate(connection.get(), false) : status_t(BAD_VALUE);
Aravind Akella18d6d512015-06-18 14:18:28 -07001006
1007 }
1008 if (err == NO_ERROR) {
1009 SensorRegistrationInfo &reg_info =
1010 mLastNSensorRegistrations.editItemAt(mNextSensorRegIndex);
1011 reg_info.mActivated = false;
1012 reg_info.mPackageName= connection->getPackageName();
1013 reg_info.mSensorHandle = handle;
1014 time_t rawtime = time(NULL);
1015 struct tm * timeinfo = localtime(&rawtime);
1016 reg_info.mHour = timeinfo->tm_hour;
1017 reg_info.mMin = timeinfo->tm_min;
1018 reg_info.mSec = timeinfo->tm_sec;
1019 mNextSensorRegIndex = (mNextSensorRegIndex + 1) % SENSOR_REGISTRATIONS_BUF_SIZE;
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -07001020 }
1021 return err;
1022}
1023
Mathias Agopianac9a96d2013-07-12 02:01:16 -07001024status_t SensorService::cleanupWithoutDisable(
1025 const sp<SensorEventConnection>& connection, int handle) {
Mathias Agopianfc328812010-07-14 23:41:37 -07001026 Mutex::Autolock _l(mLock);
Mathias Agopianac9a96d2013-07-12 02:01:16 -07001027 return cleanupWithoutDisableLocked(connection, handle);
1028}
1029
1030status_t SensorService::cleanupWithoutDisableLocked(
1031 const sp<SensorEventConnection>& connection, int handle) {
Mathias Agopianfc328812010-07-14 23:41:37 -07001032 SensorRecord* rec = mActiveSensors.valueFor(handle);
Mathias Agopianfc328812010-07-14 23:41:37 -07001033 if (rec) {
1034 // see if this connection becomes inactive
Mathias Agopian787ac1b2012-09-18 18:49:18 -07001035 if (connection->removeSensor(handle)) {
1036 BatteryService::disableSensor(connection->getUid(), handle);
1037 }
Mathias Agopianfc328812010-07-14 23:41:37 -07001038 if (connection->hasAnySensor() == false) {
Aravind Akella8a969552014-09-28 17:52:41 -07001039 connection->updateLooperRegistration(mLooper);
Mathias Agopianfc328812010-07-14 23:41:37 -07001040 mActiveConnections.remove(connection);
1041 }
1042 // see if this sensor becomes inactive
1043 if (rec->removeConnection(connection)) {
1044 mActiveSensors.removeItem(handle);
Mathias Agopianf001c922010-11-11 17:58:51 -08001045 mActiveVirtualSensors.removeItem(handle);
Mathias Agopianfc328812010-07-14 23:41:37 -07001046 delete rec;
Mathias Agopianfc328812010-07-14 23:41:37 -07001047 }
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -07001048 return NO_ERROR;
Mathias Agopian7c1c5312010-07-21 15:59:50 -07001049 }
Jaikumar Ganesh4342fdf2013-04-08 16:43:12 -07001050 return BAD_VALUE;
Mathias Agopianfc328812010-07-14 23:41:37 -07001051}
1052
Mathias Agopian7c1c5312010-07-21 15:59:50 -07001053status_t SensorService::setEventRate(const sp<SensorEventConnection>& connection,
Svetoslavb412f6e2015-04-29 16:50:41 -07001054 int handle, nsecs_t ns, const String16& opPackageName)
Mathias Agopianfc328812010-07-14 23:41:37 -07001055{
Mathias Agopian50df2952010-07-19 19:09:10 -07001056 if (mInitCheck != NO_ERROR)
1057 return mInitCheck;
1058
Mathias Agopianae09d652011-11-01 17:37:49 -07001059 SensorInterface* sensor = mSensorMap.valueFor(handle);
1060 if (!sensor)
1061 return BAD_VALUE;
1062
Svetoslavb412f6e2015-04-29 16:50:41 -07001063 if (!canAccessSensor(sensor->getSensor(), "Tried configuring", opPackageName)) {
Aravind Akella70018042014-04-07 22:52:37 +00001064 return BAD_VALUE;
1065 }
1066
Mathias Agopian1cd70002010-07-21 15:59:50 -07001067 if (ns < 0)
1068 return BAD_VALUE;
1069
Mathias Agopian62569ec2011-11-07 21:21:47 -08001070 nsecs_t minDelayNs = sensor->getSensor().getMinDelayNs();
1071 if (ns < minDelayNs) {
1072 ns = minDelayNs;
Mathias Agopianae09d652011-11-01 17:37:49 -07001073 }
1074
Mathias Agopianf001c922010-11-11 17:58:51 -08001075 return sensor->setDelay(connection.get(), handle, ns);
Mathias Agopianfc328812010-07-14 23:41:37 -07001076}
1077
Svetoslavb412f6e2015-04-29 16:50:41 -07001078status_t SensorService::flushSensor(const sp<SensorEventConnection>& connection,
1079 const String16& opPackageName) {
Aravind Akella70018042014-04-07 22:52:37 +00001080 if (mInitCheck != NO_ERROR) return mInitCheck;
Aravind Akella9e3adfc2014-09-03 15:48:05 -07001081 SensorDevice& dev(SensorDevice::getInstance());
1082 const int halVersion = dev.getHalDeviceVersion();
1083 status_t err(NO_ERROR);
1084 Mutex::Autolock _l(mLock);
1085 // Loop through all sensors for this connection and call flush on each of them.
1086 for (size_t i = 0; i < connection->mSensorInfo.size(); ++i) {
1087 const int handle = connection->mSensorInfo.keyAt(i);
1088 SensorInterface* sensor = mSensorMap.valueFor(handle);
1089 if (sensor->getSensor().getReportingMode() == AREPORTING_MODE_ONE_SHOT) {
1090 ALOGE("flush called on a one-shot sensor");
1091 err = INVALID_OPERATION;
1092 continue;
1093 }
Aravind Akella8493b792014-09-08 15:45:47 -07001094 if (halVersion <= SENSORS_DEVICE_API_VERSION_1_0 || isVirtualSensor(handle)) {
Aravind Akella9e3adfc2014-09-03 15:48:05 -07001095 // For older devices just increment pending flush count which will send a trivial
1096 // flush complete event.
Aravind Akella8a969552014-09-28 17:52:41 -07001097 connection->incrementPendingFlushCount(handle);
Aravind Akella9e3adfc2014-09-03 15:48:05 -07001098 } else {
Svetoslavb412f6e2015-04-29 16:50:41 -07001099 if (!canAccessSensor(sensor->getSensor(), "Tried flushing", opPackageName)) {
1100 err = INVALID_OPERATION;
1101 continue;
1102 }
Aravind Akella9e3adfc2014-09-03 15:48:05 -07001103 status_t err_flush = sensor->flush(connection.get(), handle);
1104 if (err_flush == NO_ERROR) {
1105 SensorRecord* rec = mActiveSensors.valueFor(handle);
1106 if (rec != NULL) rec->addPendingFlushConnection(connection);
1107 }
1108 err = (err_flush != NO_ERROR) ? err_flush : err;
1109 }
Aravind Akella70018042014-04-07 22:52:37 +00001110 }
Aravind Akella9e3adfc2014-09-03 15:48:05 -07001111 return err;
Aravind Akella724d91d2013-06-27 12:04:23 -07001112}
Aravind Akella70018042014-04-07 22:52:37 +00001113
Svetoslavb412f6e2015-04-29 16:50:41 -07001114bool SensorService::canAccessSensor(const Sensor& sensor, const char* operation,
1115 const String16& opPackageName) {
1116 const String8& requiredPermission = sensor.getRequiredPermission();
Aravind Akella70018042014-04-07 22:52:37 +00001117
Svetoslavb412f6e2015-04-29 16:50:41 -07001118 if (requiredPermission.length() <= 0) {
Aravind Akella70018042014-04-07 22:52:37 +00001119 return true;
Svetoslavb412f6e2015-04-29 16:50:41 -07001120 }
1121
1122 bool hasPermission = false;
1123
1124 // Runtime permissions can't use the cache as they may change.
1125 if (sensor.isRequiredPermissionRuntime()) {
1126 hasPermission = checkPermission(String16(requiredPermission),
1127 IPCThreadState::self()->getCallingPid(), IPCThreadState::self()->getCallingUid());
Aravind Akella70018042014-04-07 22:52:37 +00001128 } else {
Svetoslavb412f6e2015-04-29 16:50:41 -07001129 hasPermission = PermissionCache::checkCallingPermission(String16(requiredPermission));
1130 }
1131
1132 if (!hasPermission) {
1133 ALOGE("%s a sensor (%s) without holding its required permission: %s",
1134 operation, sensor.getName().string(), sensor.getRequiredPermission().string());
Aravind Akella70018042014-04-07 22:52:37 +00001135 return false;
1136 }
Svetoslavb412f6e2015-04-29 16:50:41 -07001137
1138 const int32_t opCode = sensor.getRequiredAppOp();
1139 if (opCode >= 0) {
1140 AppOpsManager appOps;
1141 if (appOps.noteOp(opCode, IPCThreadState::self()->getCallingUid(), opPackageName)
1142 != AppOpsManager::MODE_ALLOWED) {
Andreas Gamped4036b62015-07-28 13:49:04 -07001143 ALOGE("%s a sensor (%s) without enabled required app op: %d",
Svetoslavb412f6e2015-04-29 16:50:41 -07001144 operation, sensor.getName().string(), opCode);
1145 return false;
1146 }
1147 }
1148
1149 return true;
Aravind Akella70018042014-04-07 22:52:37 +00001150}
1151
Aravind Akella9a844cf2014-02-11 18:58:52 -08001152void SensorService::checkWakeLockState() {
1153 Mutex::Autolock _l(mLock);
1154 checkWakeLockStateLocked();
1155}
1156
1157void SensorService::checkWakeLockStateLocked() {
1158 if (!mWakeLockAcquired) {
1159 return;
1160 }
1161 bool releaseLock = true;
1162 for (size_t i=0 ; i<mActiveConnections.size() ; i++) {
1163 sp<SensorEventConnection> connection(mActiveConnections[i].promote());
1164 if (connection != 0) {
1165 if (connection->needsWakeLock()) {
1166 releaseLock = false;
1167 break;
1168 }
1169 }
1170 }
1171 if (releaseLock) {
Aravind Akellab4373ac2014-10-29 17:55:20 -07001172 setWakeLockAcquiredLocked(false);
1173 }
1174}
1175
1176void SensorService::sendEventsFromCache(const sp<SensorEventConnection>& connection) {
1177 Mutex::Autolock _l(mLock);
1178 connection->writeToSocketFromCache();
1179 if (connection->needsWakeLock()) {
1180 setWakeLockAcquiredLocked(true);
1181 }
1182}
1183
1184void SensorService::populateActiveConnections(
1185 SortedVector< sp<SensorEventConnection> >* activeConnections) {
1186 Mutex::Autolock _l(mLock);
1187 for (size_t i=0 ; i < mActiveConnections.size(); ++i) {
1188 sp<SensorEventConnection> connection(mActiveConnections[i].promote());
1189 if (connection != 0) {
1190 activeConnections->add(connection);
1191 }
Aravind Akella9a844cf2014-02-11 18:58:52 -08001192 }
1193}
Aravind Akella6c2664a2014-08-13 12:24:50 -07001194
Aravind Akella4949c502015-02-11 15:54:35 -08001195bool SensorService::isWhiteListedPackage(const String8& packageName) {
Aravind Akella841a5922015-06-29 12:37:48 -07001196 return (packageName.contains(mWhiteListedPackage.string()));
Aravind Akella4949c502015-02-11 15:54:35 -08001197}
1198
Aravind Akella444f2672015-05-07 12:40:52 -07001199int SensorService::getNumEventsForSensorType(int sensor_event_type) {
1200 switch (sensor_event_type) {
1201 case SENSOR_TYPE_ROTATION_VECTOR:
1202 case SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR:
1203 return 5;
1204
1205 case SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED:
1206 case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
1207 return 6;
1208
1209 case SENSOR_TYPE_GAME_ROTATION_VECTOR:
1210 return 4;
1211
1212 case SENSOR_TYPE_SIGNIFICANT_MOTION:
1213 case SENSOR_TYPE_STEP_DETECTOR:
1214 case SENSOR_TYPE_STEP_COUNTER:
1215 return 1;
1216
1217 default:
1218 return 3;
1219 }
1220}
1221
Mathias Agopianfc328812010-07-14 23:41:37 -07001222}; // namespace android
1223