blob: a242e375312350b48e7b7de2b0adf56ca08cf19b [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 }
Jesse Chan8e654492020-05-15 21:44:02 +0800132 }
133
134 _hidl_cb(out);
135
136 return Void();
137}
138
139int Sensors::getHalDeviceVersion() const {
140 if (!mSensorDevice) {
141 return -1;
142 }
143
144 return mSensorDevice->common.version;
145}
146
147Return<Result> Sensors::setOperationMode(OperationMode mode) {
148 if (getHalDeviceVersion() < SENSORS_DEVICE_API_VERSION_1_4
149 || mSensorModule->set_operation_mode == nullptr) {
150 return Result::INVALID_OPERATION;
151 }
152 return ResultFromStatus(mSensorModule->set_operation_mode((uint32_t)mode));
153}
154
155Return<Result> Sensors::activate(
156 int32_t sensor_handle, bool enabled) {
157 return ResultFromStatus(
158 mSensorDevice->activate(
159 reinterpret_cast<sensors_poll_device_t *>(mSensorDevice),
160 sensor_handle,
161 enabled));
162}
163
164Return<void> Sensors::poll(int32_t maxCount, poll_cb _hidl_cb) {
165
166 hidl_vec<Event> out;
167 hidl_vec<SensorInfo> dynamicSensorsAdded;
168
169 std::unique_ptr<sensors_event_t[]> data;
170 int err = android::NO_ERROR;
171
172 { // scope of reentry lock
173
174 // This enforces a single client, meaning that a maximum of one client can call poll().
175 // If this function is re-entred, it means that we are stuck in a state that may prevent
176 // the system from proceeding normally.
177 //
178 // Exit and let the system restart the sensor-hal-implementation hidl service.
179 //
180 // This function must not call _hidl_cb(...) or return until there is no risk of blocking.
181 std::unique_lock<std::mutex> lock(mPollLock, std::try_to_lock);
182 if(!lock.owns_lock()){
183 // cannot get the lock, hidl service will go into deadlock if it is not restarted.
184 // This is guaranteed to not trigger in passthrough mode.
185 LOG(ERROR) <<
186 "ISensors::poll() re-entry. I do not know what to do except killing myself.";
187 ::exit(-1);
188 }
189
190 if (maxCount <= 0) {
191 err = android::BAD_VALUE;
192 } else {
193 int bufferSize = maxCount <= kPollMaxBufferSize ? maxCount : kPollMaxBufferSize;
194 data.reset(new sensors_event_t[bufferSize]);
195 err = mSensorDevice->poll(
196 reinterpret_cast<sensors_poll_device_t *>(mSensorDevice),
197 data.get(), bufferSize);
198 }
199 }
200
201 if (err < 0) {
202 _hidl_cb(ResultFromStatus(err), out, dynamicSensorsAdded);
203 return Void();
204 }
205
206 const size_t count = (size_t)err;
207
208 for (size_t i = 0; i < count; ++i) {
209 if (data[i].type != SENSOR_TYPE_DYNAMIC_SENSOR_META) {
210 continue;
211 }
212
213 const dynamic_sensor_meta_event_t *dyn = &data[i].dynamic_sensor_meta;
214
215 if (!dyn->connected) {
216 continue;
217 }
218
219 CHECK(dyn->sensor != nullptr);
220 CHECK_EQ(dyn->sensor->handle, dyn->handle);
221
222 SensorInfo info;
223 convertFromSensor(*dyn->sensor, &info);
224
225 size_t numDynamicSensors = dynamicSensorsAdded.size();
226 dynamicSensorsAdded.resize(numDynamicSensors + 1);
227 dynamicSensorsAdded[numDynamicSensors] = info;
228 }
229
230 out.resize(count);
231 convertFromSensorEvents(err, data.get(), &out);
232
233 _hidl_cb(Result::OK, out, dynamicSensorsAdded);
234
235 return Void();
236}
237
238Return<Result> Sensors::batch(
239 int32_t sensor_handle,
240 int64_t sampling_period_ns,
241 int64_t max_report_latency_ns) {
242 return ResultFromStatus(
243 mSensorDevice->batch(
244 mSensorDevice,
245 sensor_handle,
246 0, /*flags*/
247 sampling_period_ns,
248 max_report_latency_ns));
249}
250
251Return<Result> Sensors::flush(int32_t sensor_handle) {
252 return ResultFromStatus(mSensorDevice->flush(mSensorDevice, sensor_handle));
253}
254
255Return<Result> Sensors::injectSensorData(const Event& event) {
256 if (getHalDeviceVersion() < SENSORS_DEVICE_API_VERSION_1_4
257 || mSensorDevice->inject_sensor_data == nullptr) {
258 return Result::INVALID_OPERATION;
259 }
260
261 sensors_event_t out;
262 convertToSensorEvent(event, &out);
263
264 return ResultFromStatus(
265 mSensorDevice->inject_sensor_data(mSensorDevice, &out));
266}
267
268Return<void> Sensors::registerDirectChannel(
269 const SharedMemInfo& mem, registerDirectChannel_cb _hidl_cb) {
270 if (mSensorDevice->register_direct_channel == nullptr
271 || mSensorDevice->config_direct_report == nullptr) {
272 // HAL does not support
273 _hidl_cb(Result::INVALID_OPERATION, -1);
274 return Void();
275 }
276
277 sensors_direct_mem_t m;
278 if (!convertFromSharedMemInfo(mem, &m)) {
279 _hidl_cb(Result::BAD_VALUE, -1);
280 return Void();
281 }
282
283 int err = mSensorDevice->register_direct_channel(mSensorDevice, &m, -1);
284
285 if (err < 0) {
286 _hidl_cb(ResultFromStatus(err), -1);
287 } else {
288 int32_t channelHandle = static_cast<int32_t>(err);
289 _hidl_cb(Result::OK, channelHandle);
290 }
291 return Void();
292}
293
294Return<Result> Sensors::unregisterDirectChannel(int32_t channelHandle) {
295 if (mSensorDevice->register_direct_channel == nullptr
296 || mSensorDevice->config_direct_report == nullptr) {
297 // HAL does not support
298 return Result::INVALID_OPERATION;
299 }
300
301 mSensorDevice->register_direct_channel(mSensorDevice, nullptr, channelHandle);
302
303 return Result::OK;
304}
305
306Return<void> Sensors::configDirectReport(
307 int32_t sensorHandle, int32_t channelHandle, RateLevel rate,
308 configDirectReport_cb _hidl_cb) {
309 if (mSensorDevice->register_direct_channel == nullptr
310 || mSensorDevice->config_direct_report == nullptr) {
311 // HAL does not support
312 _hidl_cb(Result::INVALID_OPERATION, -1);
313 return Void();
314 }
315
316 sensors_direct_cfg_t cfg = {
317 .rate_level = convertFromRateLevel(rate)
318 };
319 if (cfg.rate_level < 0) {
320 _hidl_cb(Result::BAD_VALUE, -1);
321 return Void();
322 }
323
324 int err = mSensorDevice->config_direct_report(mSensorDevice,
325 sensorHandle, channelHandle, &cfg);
326
327 if (rate == RateLevel::STOP) {
328 _hidl_cb(ResultFromStatus(err), -1);
329 } else {
330 _hidl_cb(err > 0 ? Result::OK : ResultFromStatus(err), err);
331 }
332 return Void();
333}
334
335// static
336void Sensors::convertFromSensorEvents(
337 size_t count,
338 const sensors_event_t *srcArray,
339 hidl_vec<Event> *dstVec) {
340 for (size_t i = 0; i < count; ++i) {
341 const sensors_event_t &src = srcArray[i];
342 Event *dst = &(*dstVec)[i];
343
344 convertFromSensorEvent(src, dst);
345 }
346}
347
348ISensors *HIDL_FETCH_ISensors(const char * /* hal */) {
349 Sensors *sensors = new Sensors;
350 if (sensors->initCheck() != OK) {
351 delete sensors;
352 sensors = nullptr;
353
354 return nullptr;
355 }
356
357 return sensors;
358}
359
360} // namespace implementation
361} // namespace V1_0
362} // namespace sensors
363} // namespace hardware
364} // namespace android