blob: 3ba5c0795199b71081fb690cddcacef3513c3de6 [file] [log] [blame]
Peng Xueb4d6282015-12-10 18:02:41 -08001/*
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
17#ifndef ANDROID_SENSOR_EVENT_CONNECTION_H
18#define ANDROID_SENSOR_EVENT_CONNECTION_H
19
20#include <stdint.h>
21#include <sys/types.h>
Brian Stackc225aa12019-04-19 09:30:25 -070022#include <unordered_map>
Peng Xueb4d6282015-12-10 18:02:41 -080023
24#include <utils/Vector.h>
25#include <utils/SortedVector.h>
Peng Xueb4d6282015-12-10 18:02:41 -080026#include <utils/threads.h>
27#include <utils/AndroidThreads.h>
28#include <utils/RefBase.h>
29#include <utils/Looper.h>
30#include <utils/String8.h>
31
32#include <binder/BinderService.h>
33
Mathias Agopian801ea092017-03-06 15:05:04 -080034#include <sensor/Sensor.h>
35#include <sensor/BitTube.h>
36#include <sensor/ISensorServer.h>
37#include <sensor/ISensorEventConnection.h>
Peng Xueb4d6282015-12-10 18:02:41 -080038
39#include "SensorService.h"
40
41namespace android {
42
43class SensorService;
44
45class SensorService::SensorEventConnection:
46 public BnSensorEventConnection, public LooperCallback {
47
48 friend class SensorService;
49
50public:
51 SensorEventConnection(const sp<SensorService>& service, uid_t uid, String8 packageName,
Svet Ganove752a5c2018-01-15 17:14:20 -080052 bool isDataInjectionMode, const String16& opPackageName,
53 bool hasSensorAccess);
Peng Xueb4d6282015-12-10 18:02:41 -080054
55 status_t sendEvents(sensors_event_t const* buffer, size_t count, sensors_event_t* scratch,
Yi Kong8f313e32018-07-17 14:13:29 -070056 wp<const SensorEventConnection> const * mapFlushEventsToConnections = nullptr);
Peng Xueb4d6282015-12-10 18:02:41 -080057 bool hasSensor(int32_t handle) const;
58 bool hasAnySensor() const;
59 bool hasOneShotSensors() const;
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -070060 bool addSensor(
61 int32_t handle, nsecs_t samplingPeriodNs, nsecs_t maxBatchReportLatencyNs, int reservedFlags);
Peng Xueb4d6282015-12-10 18:02:41 -080062 bool removeSensor(int32_t handle);
Arthur Ishiguroad46c782020-03-26 11:24:43 -070063 std::vector<int32_t> getActiveSensorHandles() const;
Peng Xueb4d6282015-12-10 18:02:41 -080064 void setFirstFlushPending(int32_t handle, bool value);
65 void dump(String8& result);
Mike Ma24743862020-01-29 00:36:55 -080066 void dump(util::ProtoOutputStream* proto) const;
Peng Xueb4d6282015-12-10 18:02:41 -080067 bool needsWakeLock();
68 void resetWakeLockRefCount();
69 String8 getPackageName() const;
70
71 uid_t getUid() const { return mUid; }
72
Svet Ganove752a5c2018-01-15 17:14:20 -080073 void setSensorAccess(const bool hasAccess);
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -070074 void updateSensorSubscriptions();
Peng Xueb4d6282015-12-10 18:02:41 -080075private:
76 virtual ~SensorEventConnection();
77 virtual void onFirstRef();
78 virtual sp<BitTube> getSensorChannel() const;
79 virtual status_t enableDisable(int handle, bool enabled, nsecs_t samplingPeriodNs,
80 nsecs_t maxBatchReportLatencyNs, int reservedFlags);
81 virtual status_t setEventRate(int handle, nsecs_t samplingPeriodNs);
82 virtual status_t flush();
Peng Xue36e3472016-11-03 11:57:10 -070083 virtual int32_t configureChannel(int handle, int rateLevel);
Peng Xu8cbefd72017-07-10 16:41:08 -070084 virtual void destroy();
Peng Xue36e3472016-11-03 11:57:10 -070085
Peng Xueb4d6282015-12-10 18:02:41 -080086 // Count the number of flush complete events which are about to be dropped in the buffer.
87 // Increment mPendingFlushEventsToSend in mSensorInfo. These flush complete events will be sent
88 // separately before the next batch of events.
89 void countFlushCompleteEventsLocked(sensors_event_t const* scratch, int numEventsDropped);
90
91 // Check if there are any wake up events in the buffer. If yes, return the index of the first
92 // wake_up sensor event in the buffer else return -1. This wake_up sensor event will have the
93 // flag WAKE_UP_SENSOR_EVENT_NEEDS_ACK set. Exactly one event per packet will have the wake_up
94 // flag set. SOCK_SEQPACKET ensures that either the entire packet is read or dropped.
95 int findWakeUpSensorEventLocked(sensors_event_t const* scratch, int count);
96
97 // Send pending flush_complete events. There may have been flush_complete_events that are
98 // dropped which need to be sent separately before other events. On older HALs (1_0) this method
99 // emulates the behavior of flush().
100 void sendPendingFlushEventsLocked();
101
102 // Writes events from mEventCache to the socket.
103 void writeToSocketFromCache();
104
105 // Compute the approximate cache size from the FIFO sizes of various sensors registered for this
106 // connection. Wake up and non-wake up sensors have separate FIFOs but FIFO may be shared
107 // amongst wake-up sensors and non-wake up sensors.
108 int computeMaxCacheSizeLocked() const;
109
110 // When more sensors register, the maximum cache size desired may change. Compute max cache
111 // size, reallocate memory and copy over events from the older cache.
112 void reAllocateCacheLocked(sensors_event_t const* scratch, int count);
113
Brian Stack93432ad2018-11-27 18:28:48 -0800114 // Add the events to the cache. If the cache would be exceeded, drop events at the beginning of
115 // the cache.
116 void appendEventsToCacheLocked(sensors_event_t const* events, int count);
117
Peng Xueb4d6282015-12-10 18:02:41 -0800118 // LooperCallback method. If there is data to read on this fd, it is an ack from the app that it
119 // has read events from a wake up sensor, decrement mWakeLockRefCount. If this fd is available
120 // for writing send the data from the cache.
121 virtual int handleEvent(int fd, int events, void* data);
122
123 // Increment mPendingFlushEventsToSend for the given sensor handle.
124 void incrementPendingFlushCount(int32_t handle);
125
126 // Add or remove the file descriptor associated with the BitTube to the looper. If mDead is set
127 // to true or there are no more sensors for this connection, the file descriptor is removed if
128 // it has been previously added to the Looper. Depending on the state of the connection FD may
129 // be added to the Looper. The flags to set are determined by the internal state of the
130 // connection. FDs are added to the looper when wake-up sensors are registered (to poll for
131 // acknowledgements) and when write fails on the socket when there are too many error and the
132 // other end hangs up or when this client unregisters for this connection.
133 void updateLooperRegistration(const sp<Looper>& looper); void
134 updateLooperRegistrationLocked(const sp<Looper>& looper);
135
Michael Groover5e1f60b2018-12-04 22:34:29 -0800136 // Returns whether sensor access is available based on both the uid being active and sensor
137 // privacy not being enabled.
138 bool hasSensorAccess();
139
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -0700140 void stopAll();
141 void recoverAll();
142
Brian Stackc225aa12019-04-19 09:30:25 -0700143 // Call noteOp for the sensor if the sensor requires a permission
144 bool noteOpIfRequired(const sensors_event_t& event);
145
Peng Xueb4d6282015-12-10 18:02:41 -0800146 sp<SensorService> const mService;
147 sp<BitTube> mChannel;
148 uid_t mUid;
Arthur Ishiguroa9623502020-04-13 08:04:45 -0700149 mutable std::recursive_mutex mConnectionLock;
Peng Xueb4d6282015-12-10 18:02:41 -0800150 // Number of events from wake up sensors which are still pending and haven't been delivered to
151 // the corresponding application. It is incremented by one unit for each write to the socket.
152 uint32_t mWakeLockRefCount;
153
154 // If this flag is set to true, it means that the file descriptor associated with the BitTube
155 // has been added to the Looper in SensorService. This flag is typically set when this
156 // connection has wake-up sensors associated with it or when write has failed on this connection
157 // and we're storing some events in the cache.
158 bool mHasLooperCallbacks;
159 // If there are any errors associated with the Looper this flag is set to true and
160 // mWakeLockRefCount is reset to zero. needsWakeLock method will always return false, if this
161 // flag is set.
162 bool mDead;
163
164 bool mDataInjectionMode;
165 struct FlushInfo {
166 // The number of flush complete events dropped for this sensor is stored here. They are
167 // sent separately before the next batch of events.
168 int mPendingFlushEventsToSend;
169
170 // Every activate is preceded by a flush. Only after the first flush complete is received,
171 // the events for the sensor are sent on that *connection*.
172 bool mFirstFlushPending;
173
174 FlushInfo() : mPendingFlushEventsToSend(0), mFirstFlushPending(false) {}
175 };
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -0700176
177 struct SensorRequest {
178 nsecs_t samplingPeriodNs;
179 nsecs_t maxBatchReportLatencyNs;
180 int reservedFlags;
181 FlushInfo flushInfo;
182 };
183
Arthur Ishiguroad46c782020-03-26 11:24:43 -0700184 // protected by SensorService::mLock. Key for this map is the sensor handle.
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -0700185 std::unordered_map<int32_t, SensorRequest> mSensorInfo;
186 std::unordered_map<int32_t, SensorRequest> mSensorInfoBackup;
Peng Xueb4d6282015-12-10 18:02:41 -0800187
188 sensors_event_t *mEventCache;
189 int mCacheSize, mMaxCacheSize;
Brian Stackae4053f2018-12-10 14:54:18 -0800190 int64_t mTimeOfLastEventDrop;
191 int mEventsDropped;
Peng Xueb4d6282015-12-10 18:02:41 -0800192 String8 mPackageName;
193 const String16 mOpPackageName;
194#if DEBUG_CONNECTIONS
195 int mEventsReceived, mEventsSent, mEventsSentFromCache;
196 int mTotalAcksNeeded, mTotalAcksReceived;
197#endif
198
Peng Xu8cbefd72017-07-10 16:41:08 -0700199 mutable Mutex mDestroyLock;
200 bool mDestroyed;
Arthur Ishiguro8a7ec572020-03-18 11:02:35 -0700201 std::atomic_bool mHasSensorAccess;
Brian Stackc225aa12019-04-19 09:30:25 -0700202
203 // Store a mapping of sensor handles to required AppOp for a sensor. This map only contains a
204 // valid mapping for sensors that require a permission in order to reduce the lookup time.
205 std::unordered_map<int32_t, int32_t> mHandleToAppOp;
Peng Xueb4d6282015-12-10 18:02:41 -0800206};
207
208} // namepsace android
209
210#endif // ANDROID_SENSOR_EVENT_CONNECTION_H
211