blob: a1cd153c47d58b33c18808550c936a77ae54b8e9 [file] [log] [blame]
Jesse Chan8e654492020-05-15 21:44:02 +08001/*
2 * Copyright (C) 2016 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#include "Sensors.h"
Jesse Chan3e3dfb22020-05-15 21:48:07 +080018#include <sensors/convert.h>
Jesse Chan8e654492020-05-15 21:44:02 +080019#include "multihal.h"
20
21#include <android-base/logging.h>
22
23#include <sys/stat.h>
24
25namespace android {
26namespace hardware {
27namespace sensors {
28namespace V1_0 {
29namespace implementation {
30
31/*
32 * If a multi-hal configuration file exists in the proper location,
33 * return true indicating we need to use multi-hal functionality.
34 */
35static bool UseMultiHal() {
36 const std::string& name = MULTI_HAL_CONFIG_FILE_PATH;
37 struct stat buffer;
38 return (stat (name.c_str(), &buffer) == 0);
39}
40
41static Result ResultFromStatus(status_t err) {
42 switch (err) {
43 case OK:
44 return Result::OK;
45 case PERMISSION_DENIED:
46 return Result::PERMISSION_DENIED;
47 case NO_MEMORY:
48 return Result::NO_MEMORY;
49 case BAD_VALUE:
50 return Result::BAD_VALUE;
51 default:
52 return Result::INVALID_OPERATION;
53 }
54}
55
56Sensors::Sensors()
57 : mInitCheck(NO_INIT),
58 mSensorModule(nullptr),
59 mSensorDevice(nullptr) {
60 status_t err = OK;
61 if (UseMultiHal()) {
62 mSensorModule = ::get_multi_hal_module_info();
63 } else {
64 err = hw_get_module(
65 SENSORS_HARDWARE_MODULE_ID,
66 (hw_module_t const **)&mSensorModule);
67 }
68 if (mSensorModule == NULL) {
69 err = UNKNOWN_ERROR;
70 }
71
72 if (err != OK) {
73 LOG(ERROR) << "Couldn't load "
74 << SENSORS_HARDWARE_MODULE_ID
75 << " module ("
76 << strerror(-err)
77 << ")";
78
79 mInitCheck = err;
80 return;
81 }
82
83 err = sensors_open_1(&mSensorModule->common, &mSensorDevice);
84
85 if (err != OK) {
86 LOG(ERROR) << "Couldn't open device for module "
87 << SENSORS_HARDWARE_MODULE_ID
88 << " ("
89 << strerror(-err)
90 << ")";
91
92 mInitCheck = err;
93 return;
94 }
95
96 // Require all the old HAL APIs to be present except for injection, which
97 // is considered optional.
98 CHECK_GE(getHalDeviceVersion(), SENSORS_DEVICE_API_VERSION_1_3);
99
100 if (getHalDeviceVersion() == SENSORS_DEVICE_API_VERSION_1_4) {
101 if (mSensorDevice->inject_sensor_data == nullptr) {
102 LOG(ERROR) << "HAL specifies version 1.4, but does not implement inject_sensor_data()";
103 }
104 if (mSensorModule->set_operation_mode == nullptr) {
105 LOG(ERROR) << "HAL specifies version 1.4, but does not implement set_operation_mode()";
106 }
107 }
108
109 mInitCheck = OK;
110}
111
112status_t Sensors::initCheck() const {
113 return mInitCheck;
114}
115
116Return<void> Sensors::getSensorsList(getSensorsList_cb _hidl_cb) {
117 sensor_t const *list;
118 size_t count = mSensorModule->get_sensors_list(mSensorModule, &list);
119
120 hidl_vec<SensorInfo> out;
121 out.resize(count);
122
123 for (size_t i = 0; i < count; ++i) {
124 const sensor_t *src = &list[i];
125 SensorInfo *dst = &out[i];
126
127 convertFromSensor(*src, dst);
Willi Ye834dfaa2019-09-08 18:23:04 +0200128
129 if (dst->requiredPermission == "com.samsung.permission.SSENSOR") {
130 dst->requiredPermission = "";
131 }
Willi Ye80c90e92019-09-08 18:23:04 +0200132
133 if (dst->typeAsString == "com.samsung.sensor.physical_proximity") {
134 LOG(INFO) << "Fixing com.samsung.sensor.physical_proximity";
135 dst->type = SensorType::PROXIMITY;
136 dst->typeAsString = SENSOR_STRING_TYPE_PROXIMITY;
137 }
Jesse Chan8e654492020-05-15 21:44:02 +0800138 }
139
140 _hidl_cb(out);
141
142 return Void();
143}
144
145int Sensors::getHalDeviceVersion() const {
146 if (!mSensorDevice) {
147 return -1;
148 }
149
150 return mSensorDevice->common.version;
151}
152
153Return<Result> Sensors::setOperationMode(OperationMode mode) {
154 if (getHalDeviceVersion() < SENSORS_DEVICE_API_VERSION_1_4
155 || mSensorModule->set_operation_mode == nullptr) {
156 return Result::INVALID_OPERATION;
157 }
158 return ResultFromStatus(mSensorModule->set_operation_mode((uint32_t)mode));
159}
160
161Return<Result> Sensors::activate(
162 int32_t sensor_handle, bool enabled) {
163 return ResultFromStatus(
164 mSensorDevice->activate(
165 reinterpret_cast<sensors_poll_device_t *>(mSensorDevice),
166 sensor_handle,
167 enabled));
168}
169
170Return<void> Sensors::poll(int32_t maxCount, poll_cb _hidl_cb) {
171
172 hidl_vec<Event> out;
173 hidl_vec<SensorInfo> dynamicSensorsAdded;
174
175 std::unique_ptr<sensors_event_t[]> data;
176 int err = android::NO_ERROR;
177
178 { // scope of reentry lock
179
180 // This enforces a single client, meaning that a maximum of one client can call poll().
181 // If this function is re-entred, it means that we are stuck in a state that may prevent
182 // the system from proceeding normally.
183 //
184 // Exit and let the system restart the sensor-hal-implementation hidl service.
185 //
186 // This function must not call _hidl_cb(...) or return until there is no risk of blocking.
187 std::unique_lock<std::mutex> lock(mPollLock, std::try_to_lock);
188 if(!lock.owns_lock()){
189 // cannot get the lock, hidl service will go into deadlock if it is not restarted.
190 // This is guaranteed to not trigger in passthrough mode.
191 LOG(ERROR) <<
192 "ISensors::poll() re-entry. I do not know what to do except killing myself.";
193 ::exit(-1);
194 }
195
196 if (maxCount <= 0) {
197 err = android::BAD_VALUE;
198 } else {
199 int bufferSize = maxCount <= kPollMaxBufferSize ? maxCount : kPollMaxBufferSize;
200 data.reset(new sensors_event_t[bufferSize]);
201 err = mSensorDevice->poll(
202 reinterpret_cast<sensors_poll_device_t *>(mSensorDevice),
203 data.get(), bufferSize);
204 }
205 }
206
207 if (err < 0) {
208 _hidl_cb(ResultFromStatus(err), out, dynamicSensorsAdded);
209 return Void();
210 }
211
212 const size_t count = (size_t)err;
213
214 for (size_t i = 0; i < count; ++i) {
215 if (data[i].type != SENSOR_TYPE_DYNAMIC_SENSOR_META) {
216 continue;
217 }
218
219 const dynamic_sensor_meta_event_t *dyn = &data[i].dynamic_sensor_meta;
220
221 if (!dyn->connected) {
222 continue;
223 }
224
225 CHECK(dyn->sensor != nullptr);
226 CHECK_EQ(dyn->sensor->handle, dyn->handle);
227
228 SensorInfo info;
229 convertFromSensor(*dyn->sensor, &info);
230
231 size_t numDynamicSensors = dynamicSensorsAdded.size();
232 dynamicSensorsAdded.resize(numDynamicSensors + 1);
233 dynamicSensorsAdded[numDynamicSensors] = info;
234 }
235
236 out.resize(count);
237 convertFromSensorEvents(err, data.get(), &out);
238
239 _hidl_cb(Result::OK, out, dynamicSensorsAdded);
240
241 return Void();
242}
243
244Return<Result> Sensors::batch(
245 int32_t sensor_handle,
246 int64_t sampling_period_ns,
247 int64_t max_report_latency_ns) {
248 return ResultFromStatus(
249 mSensorDevice->batch(
250 mSensorDevice,
251 sensor_handle,
252 0, /*flags*/
253 sampling_period_ns,
254 max_report_latency_ns));
255}
256
257Return<Result> Sensors::flush(int32_t sensor_handle) {
258 return ResultFromStatus(mSensorDevice->flush(mSensorDevice, sensor_handle));
259}
260
261Return<Result> Sensors::injectSensorData(const Event& event) {
262 if (getHalDeviceVersion() < SENSORS_DEVICE_API_VERSION_1_4
263 || mSensorDevice->inject_sensor_data == nullptr) {
264 return Result::INVALID_OPERATION;
265 }
266
267 sensors_event_t out;
268 convertToSensorEvent(event, &out);
269
270 return ResultFromStatus(
271 mSensorDevice->inject_sensor_data(mSensorDevice, &out));
272}
273
274Return<void> Sensors::registerDirectChannel(
275 const SharedMemInfo& mem, registerDirectChannel_cb _hidl_cb) {
276 if (mSensorDevice->register_direct_channel == nullptr
277 || mSensorDevice->config_direct_report == nullptr) {
278 // HAL does not support
279 _hidl_cb(Result::INVALID_OPERATION, -1);
280 return Void();
281 }
282
283 sensors_direct_mem_t m;
284 if (!convertFromSharedMemInfo(mem, &m)) {
285 _hidl_cb(Result::BAD_VALUE, -1);
286 return Void();
287 }
288
289 int err = mSensorDevice->register_direct_channel(mSensorDevice, &m, -1);
290
291 if (err < 0) {
292 _hidl_cb(ResultFromStatus(err), -1);
293 } else {
294 int32_t channelHandle = static_cast<int32_t>(err);
295 _hidl_cb(Result::OK, channelHandle);
296 }
297 return Void();
298}
299
300Return<Result> Sensors::unregisterDirectChannel(int32_t channelHandle) {
301 if (mSensorDevice->register_direct_channel == nullptr
302 || mSensorDevice->config_direct_report == nullptr) {
303 // HAL does not support
304 return Result::INVALID_OPERATION;
305 }
306
307 mSensorDevice->register_direct_channel(mSensorDevice, nullptr, channelHandle);
308
309 return Result::OK;
310}
311
312Return<void> Sensors::configDirectReport(
313 int32_t sensorHandle, int32_t channelHandle, RateLevel rate,
314 configDirectReport_cb _hidl_cb) {
315 if (mSensorDevice->register_direct_channel == nullptr
316 || mSensorDevice->config_direct_report == nullptr) {
317 // HAL does not support
318 _hidl_cb(Result::INVALID_OPERATION, -1);
319 return Void();
320 }
321
322 sensors_direct_cfg_t cfg = {
323 .rate_level = convertFromRateLevel(rate)
324 };
325 if (cfg.rate_level < 0) {
326 _hidl_cb(Result::BAD_VALUE, -1);
327 return Void();
328 }
329
330 int err = mSensorDevice->config_direct_report(mSensorDevice,
331 sensorHandle, channelHandle, &cfg);
332
333 if (rate == RateLevel::STOP) {
334 _hidl_cb(ResultFromStatus(err), -1);
335 } else {
336 _hidl_cb(err > 0 ? Result::OK : ResultFromStatus(err), err);
337 }
338 return Void();
339}
340
341// static
342void Sensors::convertFromSensorEvents(
343 size_t count,
344 const sensors_event_t *srcArray,
345 hidl_vec<Event> *dstVec) {
346 for (size_t i = 0; i < count; ++i) {
347 const sensors_event_t &src = srcArray[i];
348 Event *dst = &(*dstVec)[i];
349
350 convertFromSensorEvent(src, dst);
351 }
352}
353
354ISensors *HIDL_FETCH_ISensors(const char * /* hal */) {
355 Sensors *sensors = new Sensors;
356 if (sensors->initCheck() != OK) {
357 delete sensors;
358 sensors = nullptr;
359
360 return nullptr;
361 }
362
363 return sensors;
364}
365
366} // namespace implementation
367} // namespace V1_0
368} // namespace sensors
369} // namespace hardware
370} // namespace android