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