Loading services/sensorservice/SensorEventConnection.cpp +35 −95 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ * limitations under the License. */ #include <cinttypes> #include <sys/socket.h> #include <utils/threads.h> Loading Loading @@ -70,17 +69,17 @@ void SensorService::SensorEventConnection::onFirstRef() { } bool SensorService::SensorEventConnection::needsWakeLock() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); return !mDead && mWakeLockRefCount > 0; } void SensorService::SensorEventConnection::resetWakeLockRefCount() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); mWakeLockRefCount = 0; } void SensorService::SensorEventConnection::dump(String8& result) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); result.appendFormat("\tOperating Mode: "); if (!mService->isWhiteListedPackage(getPackageName())) { result.append("RESTRICTED\n"); Loading @@ -93,7 +92,7 @@ void SensorService::SensorEventConnection::dump(String8& result) { "max cache size %d\n", mPackageName.string(), mWakeLockRefCount, mUid, mCacheSize, mMaxCacheSize); for (auto& it : mSensorInfo) { const FlushInfo& flushInfo = it.second.flushInfo; const FlushInfo& flushInfo = it.second; result.appendFormat("\t %s 0x%08x | status: %s | pending flush events %d \n", mService->getSensorName(it.first).string(), it.first, Loading Loading @@ -122,7 +121,7 @@ void SensorService::SensorEventConnection::dump(String8& result) { */ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) const { using namespace service::SensorEventConnectionProto; std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (!mService->isWhiteListedPackage(getPackageName())) { proto->write(OPERATING_MODE, OP_MODE_RESTRICTED); Loading @@ -137,7 +136,7 @@ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) proto->write(CACHE_SIZE, int32_t(mCacheSize)); proto->write(MAX_CACHE_SIZE, int32_t(mMaxCacheSize)); for (auto& it : mSensorInfo) { const FlushInfo& flushInfo = it.second.flushInfo; const FlushInfo& flushInfo = it.second; const uint64_t token = proto->start(FLUSH_INFOS); proto->write(FlushInfoProto::SENSOR_NAME, std::string(mService->getSensorName(it.first))); Loading @@ -158,33 +157,28 @@ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) #endif } bool SensorService::SensorEventConnection::addSensor( int32_t handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); bool SensorService::SensorEventConnection::addSensor(int32_t handle) { Mutex::Autolock _l(mConnectionLock); sp<SensorInterface> si = mService->getSensorInterfaceFromHandle(handle); if (si == nullptr || !canAccessSensor(si->getSensor(), "Tried adding", mOpPackageName) || mSensorInfo.count(handle) > 0) { return false; } SensorRequest request = { .samplingPeriodNs = samplingPeriodNs, .maxBatchReportLatencyNs = maxBatchReportLatencyNs, .reservedFlags = reservedFlags }; mSensorInfo[handle] = request; mSensorInfo[handle] = FlushInfo(); return true; } bool SensorService::SensorEventConnection::removeSensor(int32_t handle) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.erase(handle) > 0; Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.erase(handle) >= 0) { return true; } return false; } std::vector<int32_t> SensorService::SensorEventConnection::getActiveSensorHandles() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); std::vector<int32_t> list; for (auto& it : mSensorInfo) { list.push_back(it.first); Loading @@ -193,17 +187,17 @@ std::vector<int32_t> SensorService::SensorEventConnection::getActiveSensorHandle } bool SensorService::SensorEventConnection::hasSensor(int32_t handle) const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.count(handle) + mSensorInfoBackup.count(handle) > 0; Mutex::Autolock _l(mConnectionLock); return mSensorInfo.count(handle) > 0; } bool SensorService::SensorEventConnection::hasAnySensor() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.size() + mSensorInfoBackup.size() ? true : false; Mutex::Autolock _l(mConnectionLock); return mSensorInfo.size() ? true : false; } bool SensorService::SensorEventConnection::hasOneShotSensors() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); for (auto &it : mSensorInfo) { const int handle = it.first; sp<SensorInterface> si = mService->getSensorInterfaceFromHandle(handle); Loading @@ -220,15 +214,15 @@ String8 SensorService::SensorEventConnection::getPackageName() const { void SensorService::SensorEventConnection::setFirstFlushPending(int32_t handle, bool value) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.count(handle) > 0) { FlushInfo& flushInfo = mSensorInfo[handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[handle]; flushInfo.mFirstFlushPending = value; } } void SensorService::SensorEventConnection::updateLooperRegistration(const sp<Looper>& looper) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); updateLooperRegistrationLocked(looper); } Loading Loading @@ -279,9 +273,9 @@ void SensorService::SensorEventConnection::updateLooperRegistrationLocked( } void SensorService::SensorEventConnection::incrementPendingFlushCount(int32_t handle) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.count(handle) > 0) { FlushInfo& flushInfo = mSensorInfo[handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[handle]; flushInfo.mPendingFlushEventsToSend++; } } Loading @@ -295,7 +289,7 @@ status_t SensorService::SensorEventConnection::sendEvents( std::unique_ptr<sensors_event_t[]> sanitizedBuffer; int count = 0; std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (scratch) { size_t i=0; while (i<numEvents) { Loading @@ -316,7 +310,7 @@ status_t SensorService::SensorEventConnection::sendEvents( continue; } FlushInfo& flushInfo = mSensorInfo[sensor_handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[sensor_handle]; // Check if there is a pending flush_complete event for this sensor on this connection. if (buffer[i].type == SENSOR_TYPE_META_DATA && flushInfo.mFirstFlushPending == true && mapFlushEventsToConnections[i] == this) { Loading Loading @@ -437,55 +431,9 @@ status_t SensorService::SensorEventConnection::sendEvents( return size < 0 ? status_t(size) : status_t(NO_ERROR); } void SensorService::SensorEventConnection::updateSensorSubscriptions() { if (!hasSensorAccess()) { stopAll(); } else { recoverAll(); } } void SensorService::SensorEventConnection::setSensorAccess(const bool hasAccess) { if (mHasSensorAccess != hasAccess) { Mutex::Autolock _l(mConnectionLock); mHasSensorAccess = hasAccess; updateSensorSubscriptions(); } } void SensorService::SensorEventConnection::stopAll() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); if (!mSensorInfo.empty()) { mSensorInfoBackup = mSensorInfo; mSensorInfo.clear(); for (auto& it : mSensorInfoBackup) { int32_t handle = it.first; status_t err = mService->disable(this, handle); if (err != NO_ERROR) { ALOGE("Error disabling sensor %d", handle); } } } } void SensorService::SensorEventConnection::recoverAll() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); for (auto& it : mSensorInfoBackup) { int32_t handle = it.first; SensorRequest &request = it.second; status_t err = mService->enable( this, handle, request.samplingPeriodNs, request.maxBatchReportLatencyNs, request.reservedFlags, mOpPackageName); if (err != NO_ERROR) { ALOGE("Error recovering sensor %d", handle); } } mSensorInfoBackup.clear(); } bool SensorService::SensorEventConnection::hasSensorAccess() { Loading Loading @@ -587,7 +535,7 @@ void SensorService::SensorEventConnection::sendPendingFlushEventsLocked() { continue; } FlushInfo& flushInfo = it.second.flushInfo; FlushInfo& flushInfo = it.second; while (flushInfo.mPendingFlushEventsToSend > 0) { flushCompleteEvent.meta_data.sensor = handle; bool wakeUpSensor = si->getSensor().isWakeUpSensor(); Loading @@ -612,7 +560,7 @@ void SensorService::SensorEventConnection::writeToSocketFromCache() { // half the size of the socket buffer allocated in BitTube whichever is smaller. const int maxWriteSize = helpers::min(SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT/2, int(mService->mSocketBufferSize/(sizeof(sensors_event_t)*2))); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); // Send pending flush complete events (if any) sendPendingFlushEventsLocked(); for (int numEventsSent = 0; numEventsSent < mCacheSize;) { Loading Loading @@ -679,7 +627,7 @@ void SensorService::SensorEventConnection::countFlushCompleteEventsLocked( continue; } FlushInfo& flushInfo = mSensorInfo[scratch[j].meta_data.sensor].flushInfo; FlushInfo& flushInfo = mSensorInfo[scratch[j].meta_data.sensor]; flushInfo.mPendingFlushEventsToSend++; ALOGD_IF(DEBUG_CONNECTIONS, "increment pendingFlushCount %d", flushInfo.mPendingFlushEventsToSend); Loading Loading @@ -715,21 +663,13 @@ status_t SensorService::SensorEventConnection::enableDisable( } else { err = mService->disable(this, handle); } return err; } status_t SensorService::SensorEventConnection::setEventRate( int handle, nsecs_t samplingPeriodNs) { status_t err = mService->setEventRate(this, handle, samplingPeriodNs, mOpPackageName); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); if (err == NO_ERROR && mSensorInfo.count(handle) > 0) { mSensorInfo[handle].samplingPeriodNs = samplingPeriodNs; } return err; return mService->setEventRate(this, handle, samplingPeriodNs, mOpPackageName); } status_t SensorService::SensorEventConnection::flush() { Loading @@ -750,7 +690,7 @@ int SensorService::SensorEventConnection::handleEvent(int fd, int events, void* // and remove the fd from Looper. Call checkWakeLockState to know if SensorService // can release the wake-lock. ALOGD_IF(DEBUG_CONNECTIONS, "%p Looper error %d", this, fd); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); mDead = true; mWakeLockRefCount = 0; updateLooperRegistrationLocked(mService->getLooper()); Loading @@ -769,7 +709,7 @@ int SensorService::SensorEventConnection::handleEvent(int fd, int events, void* unsigned char buf[sizeof(sensors_event_t)]; ssize_t numBytesRead = ::recv(fd, buf, sizeof(buf), MSG_DONTWAIT); { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (numBytesRead == sizeof(sensors_event_t)) { if (!mDataInjectionMode) { ALOGE("Data injected in normal mode, dropping event" Loading services/sensorservice/SensorEventConnection.h +5 −18 Original line number Diff line number Diff line Loading @@ -57,8 +57,7 @@ public: bool hasSensor(int32_t handle) const; bool hasAnySensor() const; bool hasOneShotSensors() const; bool addSensor( int32_t handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags); bool addSensor(int32_t handle); bool removeSensor(int32_t handle); std::vector<int32_t> getActiveSensorHandles() const; void setFirstFlushPending(int32_t handle, bool value); Loading @@ -71,7 +70,7 @@ public: uid_t getUid() const { return mUid; } void setSensorAccess(const bool hasAccess); void updateSensorSubscriptions(); private: virtual ~SensorEventConnection(); virtual void onFirstRef(); Loading Loading @@ -137,16 +136,13 @@ private: // privacy not being enabled. bool hasSensorAccess(); void stopAll(); void recoverAll(); // Call noteOp for the sensor if the sensor requires a permission bool noteOpIfRequired(const sensors_event_t& event); sp<SensorService> const mService; sp<BitTube> mChannel; uid_t mUid; mutable std::recursive_mutex mConnectionLock; mutable Mutex mConnectionLock; // Number of events from wake up sensors which are still pending and haven't been delivered to // the corresponding application. It is incremented by one unit for each write to the socket. uint32_t mWakeLockRefCount; Loading @@ -173,17 +169,8 @@ private: FlushInfo() : mPendingFlushEventsToSend(0), mFirstFlushPending(false) {} }; struct SensorRequest { nsecs_t samplingPeriodNs; nsecs_t maxBatchReportLatencyNs; int reservedFlags; FlushInfo flushInfo; }; // protected by SensorService::mLock. Key for this map is the sensor handle. std::unordered_map<int32_t, SensorRequest> mSensorInfo; std::unordered_map<int32_t, SensorRequest> mSensorInfoBackup; std::unordered_map<int32_t, FlushInfo> mSensorInfo; sensors_event_t *mEventCache; int mCacheSize, mMaxCacheSize; Loading @@ -198,7 +185,7 @@ private: mutable Mutex mDestroyLock; bool mDestroyed; std::atomic_bool mHasSensorAccess; bool mHasSensorAccess; // Store a mapping of sensor handles to required AppOp for a sensor. This map only contains a // valid mapping for sensors that require a permission in order to reduce the lookup time. Loading services/sensorservice/SensorService.cpp +2 −11 Original line number Diff line number Diff line Loading @@ -301,10 +301,7 @@ void SensorService::onFirstRef() { void SensorService::setSensorAccess(uid_t uid, bool hasAccess) { ConnectionSafeAutolock connLock = mConnectionHolder.lock(mLock); const auto& connections = connLock.getActiveConnections(); mLock.unlock(); for (const sp<SensorEventConnection>& conn : connections) { for (const sp<SensorEventConnection>& conn : connLock.getActiveConnections()) { if (conn->getUid() == uid) { conn->setSensorAccess(hasAccess); } Loading Loading @@ -641,9 +638,6 @@ void SensorService::disableAllSensors() { void SensorService::disableAllSensorsLocked(ConnectionSafeAutolock* connLock) { SensorDevice& dev(SensorDevice::getInstance()); for (const sp<SensorEventConnection>& connection : connLock->getActiveConnections()) { connection->updateSensorSubscriptions(); } for (const sp<SensorDirectConnection>& connection : connLock->getDirectConnections()) { connection->stopAll(true /* backupRecord */); } Loading Loading @@ -672,9 +666,6 @@ void SensorService::enableAllSensorsLocked(ConnectionSafeAutolock* connLock) { } SensorDevice& dev(SensorDevice::getInstance()); dev.enableAllSensors(); for (const sp<SensorEventConnection>& connection : connLock->getActiveConnections()) { connection->updateSensorSubscriptions(); } for (const sp<SensorDirectConnection>& connection : connLock->getDirectConnections()) { connection->recoverAll(); } Loading Loading @@ -1598,7 +1589,7 @@ status_t SensorService::enable(const sp<SensorEventConnection>& connection, } } if (connection->addSensor(handle, samplingPeriodNs, maxBatchReportLatencyNs, reservedFlags)) { if (connection->addSensor(handle)) { BatteryService::enableSensor(connection->getUid(), handle); // the sensor was added (which means it wasn't already there) // so, see if this connection becomes active Loading Loading
services/sensorservice/SensorEventConnection.cpp +35 −95 Original line number Diff line number Diff line Loading @@ -14,7 +14,6 @@ * limitations under the License. */ #include <cinttypes> #include <sys/socket.h> #include <utils/threads.h> Loading Loading @@ -70,17 +69,17 @@ void SensorService::SensorEventConnection::onFirstRef() { } bool SensorService::SensorEventConnection::needsWakeLock() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); return !mDead && mWakeLockRefCount > 0; } void SensorService::SensorEventConnection::resetWakeLockRefCount() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); mWakeLockRefCount = 0; } void SensorService::SensorEventConnection::dump(String8& result) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); result.appendFormat("\tOperating Mode: "); if (!mService->isWhiteListedPackage(getPackageName())) { result.append("RESTRICTED\n"); Loading @@ -93,7 +92,7 @@ void SensorService::SensorEventConnection::dump(String8& result) { "max cache size %d\n", mPackageName.string(), mWakeLockRefCount, mUid, mCacheSize, mMaxCacheSize); for (auto& it : mSensorInfo) { const FlushInfo& flushInfo = it.second.flushInfo; const FlushInfo& flushInfo = it.second; result.appendFormat("\t %s 0x%08x | status: %s | pending flush events %d \n", mService->getSensorName(it.first).string(), it.first, Loading Loading @@ -122,7 +121,7 @@ void SensorService::SensorEventConnection::dump(String8& result) { */ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) const { using namespace service::SensorEventConnectionProto; std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (!mService->isWhiteListedPackage(getPackageName())) { proto->write(OPERATING_MODE, OP_MODE_RESTRICTED); Loading @@ -137,7 +136,7 @@ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) proto->write(CACHE_SIZE, int32_t(mCacheSize)); proto->write(MAX_CACHE_SIZE, int32_t(mMaxCacheSize)); for (auto& it : mSensorInfo) { const FlushInfo& flushInfo = it.second.flushInfo; const FlushInfo& flushInfo = it.second; const uint64_t token = proto->start(FLUSH_INFOS); proto->write(FlushInfoProto::SENSOR_NAME, std::string(mService->getSensorName(it.first))); Loading @@ -158,33 +157,28 @@ void SensorService::SensorEventConnection::dump(util::ProtoOutputStream* proto) #endif } bool SensorService::SensorEventConnection::addSensor( int32_t handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); bool SensorService::SensorEventConnection::addSensor(int32_t handle) { Mutex::Autolock _l(mConnectionLock); sp<SensorInterface> si = mService->getSensorInterfaceFromHandle(handle); if (si == nullptr || !canAccessSensor(si->getSensor(), "Tried adding", mOpPackageName) || mSensorInfo.count(handle) > 0) { return false; } SensorRequest request = { .samplingPeriodNs = samplingPeriodNs, .maxBatchReportLatencyNs = maxBatchReportLatencyNs, .reservedFlags = reservedFlags }; mSensorInfo[handle] = request; mSensorInfo[handle] = FlushInfo(); return true; } bool SensorService::SensorEventConnection::removeSensor(int32_t handle) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.erase(handle) > 0; Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.erase(handle) >= 0) { return true; } return false; } std::vector<int32_t> SensorService::SensorEventConnection::getActiveSensorHandles() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); std::vector<int32_t> list; for (auto& it : mSensorInfo) { list.push_back(it.first); Loading @@ -193,17 +187,17 @@ std::vector<int32_t> SensorService::SensorEventConnection::getActiveSensorHandle } bool SensorService::SensorEventConnection::hasSensor(int32_t handle) const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.count(handle) + mSensorInfoBackup.count(handle) > 0; Mutex::Autolock _l(mConnectionLock); return mSensorInfo.count(handle) > 0; } bool SensorService::SensorEventConnection::hasAnySensor() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); return mSensorInfo.size() + mSensorInfoBackup.size() ? true : false; Mutex::Autolock _l(mConnectionLock); return mSensorInfo.size() ? true : false; } bool SensorService::SensorEventConnection::hasOneShotSensors() const { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); for (auto &it : mSensorInfo) { const int handle = it.first; sp<SensorInterface> si = mService->getSensorInterfaceFromHandle(handle); Loading @@ -220,15 +214,15 @@ String8 SensorService::SensorEventConnection::getPackageName() const { void SensorService::SensorEventConnection::setFirstFlushPending(int32_t handle, bool value) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.count(handle) > 0) { FlushInfo& flushInfo = mSensorInfo[handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[handle]; flushInfo.mFirstFlushPending = value; } } void SensorService::SensorEventConnection::updateLooperRegistration(const sp<Looper>& looper) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); updateLooperRegistrationLocked(looper); } Loading Loading @@ -279,9 +273,9 @@ void SensorService::SensorEventConnection::updateLooperRegistrationLocked( } void SensorService::SensorEventConnection::incrementPendingFlushCount(int32_t handle) { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (mSensorInfo.count(handle) > 0) { FlushInfo& flushInfo = mSensorInfo[handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[handle]; flushInfo.mPendingFlushEventsToSend++; } } Loading @@ -295,7 +289,7 @@ status_t SensorService::SensorEventConnection::sendEvents( std::unique_ptr<sensors_event_t[]> sanitizedBuffer; int count = 0; std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (scratch) { size_t i=0; while (i<numEvents) { Loading @@ -316,7 +310,7 @@ status_t SensorService::SensorEventConnection::sendEvents( continue; } FlushInfo& flushInfo = mSensorInfo[sensor_handle].flushInfo; FlushInfo& flushInfo = mSensorInfo[sensor_handle]; // Check if there is a pending flush_complete event for this sensor on this connection. if (buffer[i].type == SENSOR_TYPE_META_DATA && flushInfo.mFirstFlushPending == true && mapFlushEventsToConnections[i] == this) { Loading Loading @@ -437,55 +431,9 @@ status_t SensorService::SensorEventConnection::sendEvents( return size < 0 ? status_t(size) : status_t(NO_ERROR); } void SensorService::SensorEventConnection::updateSensorSubscriptions() { if (!hasSensorAccess()) { stopAll(); } else { recoverAll(); } } void SensorService::SensorEventConnection::setSensorAccess(const bool hasAccess) { if (mHasSensorAccess != hasAccess) { Mutex::Autolock _l(mConnectionLock); mHasSensorAccess = hasAccess; updateSensorSubscriptions(); } } void SensorService::SensorEventConnection::stopAll() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); if (!mSensorInfo.empty()) { mSensorInfoBackup = mSensorInfo; mSensorInfo.clear(); for (auto& it : mSensorInfoBackup) { int32_t handle = it.first; status_t err = mService->disable(this, handle); if (err != NO_ERROR) { ALOGE("Error disabling sensor %d", handle); } } } } void SensorService::SensorEventConnection::recoverAll() { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); for (auto& it : mSensorInfoBackup) { int32_t handle = it.first; SensorRequest &request = it.second; status_t err = mService->enable( this, handle, request.samplingPeriodNs, request.maxBatchReportLatencyNs, request.reservedFlags, mOpPackageName); if (err != NO_ERROR) { ALOGE("Error recovering sensor %d", handle); } } mSensorInfoBackup.clear(); } bool SensorService::SensorEventConnection::hasSensorAccess() { Loading Loading @@ -587,7 +535,7 @@ void SensorService::SensorEventConnection::sendPendingFlushEventsLocked() { continue; } FlushInfo& flushInfo = it.second.flushInfo; FlushInfo& flushInfo = it.second; while (flushInfo.mPendingFlushEventsToSend > 0) { flushCompleteEvent.meta_data.sensor = handle; bool wakeUpSensor = si->getSensor().isWakeUpSensor(); Loading @@ -612,7 +560,7 @@ void SensorService::SensorEventConnection::writeToSocketFromCache() { // half the size of the socket buffer allocated in BitTube whichever is smaller. const int maxWriteSize = helpers::min(SensorEventQueue::MAX_RECEIVE_BUFFER_EVENT_COUNT/2, int(mService->mSocketBufferSize/(sizeof(sensors_event_t)*2))); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); // Send pending flush complete events (if any) sendPendingFlushEventsLocked(); for (int numEventsSent = 0; numEventsSent < mCacheSize;) { Loading Loading @@ -679,7 +627,7 @@ void SensorService::SensorEventConnection::countFlushCompleteEventsLocked( continue; } FlushInfo& flushInfo = mSensorInfo[scratch[j].meta_data.sensor].flushInfo; FlushInfo& flushInfo = mSensorInfo[scratch[j].meta_data.sensor]; flushInfo.mPendingFlushEventsToSend++; ALOGD_IF(DEBUG_CONNECTIONS, "increment pendingFlushCount %d", flushInfo.mPendingFlushEventsToSend); Loading Loading @@ -715,21 +663,13 @@ status_t SensorService::SensorEventConnection::enableDisable( } else { err = mService->disable(this, handle); } return err; } status_t SensorService::SensorEventConnection::setEventRate( int handle, nsecs_t samplingPeriodNs) { status_t err = mService->setEventRate(this, handle, samplingPeriodNs, mOpPackageName); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); if (err == NO_ERROR && mSensorInfo.count(handle) > 0) { mSensorInfo[handle].samplingPeriodNs = samplingPeriodNs; } return err; return mService->setEventRate(this, handle, samplingPeriodNs, mOpPackageName); } status_t SensorService::SensorEventConnection::flush() { Loading @@ -750,7 +690,7 @@ int SensorService::SensorEventConnection::handleEvent(int fd, int events, void* // and remove the fd from Looper. Call checkWakeLockState to know if SensorService // can release the wake-lock. ALOGD_IF(DEBUG_CONNECTIONS, "%p Looper error %d", this, fd); std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); mDead = true; mWakeLockRefCount = 0; updateLooperRegistrationLocked(mService->getLooper()); Loading @@ -769,7 +709,7 @@ int SensorService::SensorEventConnection::handleEvent(int fd, int events, void* unsigned char buf[sizeof(sensors_event_t)]; ssize_t numBytesRead = ::recv(fd, buf, sizeof(buf), MSG_DONTWAIT); { std::lock_guard<std::recursive_mutex> _l(mConnectionLock); Mutex::Autolock _l(mConnectionLock); if (numBytesRead == sizeof(sensors_event_t)) { if (!mDataInjectionMode) { ALOGE("Data injected in normal mode, dropping event" Loading
services/sensorservice/SensorEventConnection.h +5 −18 Original line number Diff line number Diff line Loading @@ -57,8 +57,7 @@ public: bool hasSensor(int32_t handle) const; bool hasAnySensor() const; bool hasOneShotSensors() const; bool addSensor( int32_t handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags); bool addSensor(int32_t handle); bool removeSensor(int32_t handle); std::vector<int32_t> getActiveSensorHandles() const; void setFirstFlushPending(int32_t handle, bool value); Loading @@ -71,7 +70,7 @@ public: uid_t getUid() const { return mUid; } void setSensorAccess(const bool hasAccess); void updateSensorSubscriptions(); private: virtual ~SensorEventConnection(); virtual void onFirstRef(); Loading Loading @@ -137,16 +136,13 @@ private: // privacy not being enabled. bool hasSensorAccess(); void stopAll(); void recoverAll(); // Call noteOp for the sensor if the sensor requires a permission bool noteOpIfRequired(const sensors_event_t& event); sp<SensorService> const mService; sp<BitTube> mChannel; uid_t mUid; mutable std::recursive_mutex mConnectionLock; mutable Mutex mConnectionLock; // Number of events from wake up sensors which are still pending and haven't been delivered to // the corresponding application. It is incremented by one unit for each write to the socket. uint32_t mWakeLockRefCount; Loading @@ -173,17 +169,8 @@ private: FlushInfo() : mPendingFlushEventsToSend(0), mFirstFlushPending(false) {} }; struct SensorRequest { nsecs_t samplingPeriodNs; nsecs_t maxBatchReportLatencyNs; int reservedFlags; FlushInfo flushInfo; }; // protected by SensorService::mLock. Key for this map is the sensor handle. std::unordered_map<int32_t, SensorRequest> mSensorInfo; std::unordered_map<int32_t, SensorRequest> mSensorInfoBackup; std::unordered_map<int32_t, FlushInfo> mSensorInfo; sensors_event_t *mEventCache; int mCacheSize, mMaxCacheSize; Loading @@ -198,7 +185,7 @@ private: mutable Mutex mDestroyLock; bool mDestroyed; std::atomic_bool mHasSensorAccess; bool mHasSensorAccess; // Store a mapping of sensor handles to required AppOp for a sensor. This map only contains a // valid mapping for sensors that require a permission in order to reduce the lookup time. Loading
services/sensorservice/SensorService.cpp +2 −11 Original line number Diff line number Diff line Loading @@ -301,10 +301,7 @@ void SensorService::onFirstRef() { void SensorService::setSensorAccess(uid_t uid, bool hasAccess) { ConnectionSafeAutolock connLock = mConnectionHolder.lock(mLock); const auto& connections = connLock.getActiveConnections(); mLock.unlock(); for (const sp<SensorEventConnection>& conn : connections) { for (const sp<SensorEventConnection>& conn : connLock.getActiveConnections()) { if (conn->getUid() == uid) { conn->setSensorAccess(hasAccess); } Loading Loading @@ -641,9 +638,6 @@ void SensorService::disableAllSensors() { void SensorService::disableAllSensorsLocked(ConnectionSafeAutolock* connLock) { SensorDevice& dev(SensorDevice::getInstance()); for (const sp<SensorEventConnection>& connection : connLock->getActiveConnections()) { connection->updateSensorSubscriptions(); } for (const sp<SensorDirectConnection>& connection : connLock->getDirectConnections()) { connection->stopAll(true /* backupRecord */); } Loading Loading @@ -672,9 +666,6 @@ void SensorService::enableAllSensorsLocked(ConnectionSafeAutolock* connLock) { } SensorDevice& dev(SensorDevice::getInstance()); dev.enableAllSensors(); for (const sp<SensorEventConnection>& connection : connLock->getActiveConnections()) { connection->updateSensorSubscriptions(); } for (const sp<SensorDirectConnection>& connection : connLock->getDirectConnections()) { connection->recoverAll(); } Loading Loading @@ -1598,7 +1589,7 @@ status_t SensorService::enable(const sp<SensorEventConnection>& connection, } } if (connection->addSensor(handle, samplingPeriodNs, maxBatchReportLatencyNs, reservedFlags)) { if (connection->addSensor(handle)) { BatteryService::enableSensor(connection->getUid(), handle); // the sensor was added (which means it wasn't already there) // so, see if this connection becomes active Loading