OSDN Git Service

DO NOT MERGE ANYWHERE Restart failed system calls interrupted with errno of EINTR
[android-x86/system-bt.git] / btif / co / bta_hh_co.c
index d7458b1..92a471a 100644 (file)
 #include <string.h>
 #include <stdint.h>
 #include <errno.h>
+#include <unistd.h>
 #include <linux/uhid.h>
+#include <unistd.h>
+#include "osi/include/osi.h"
 #include "btif_hh.h"
 #include "bta_api.h"
 #include "bta_hh_api.h"
@@ -41,22 +44,36 @@ const char *dev_path = "/dev/uhid";
 static tBTA_HH_RPT_CACHE_ENTRY sReportCache[BTA_HH_NV_LOAD_MAX];
 #endif
 
+void uhid_set_non_blocking(int fd)
+{
+    int opts = fcntl(fd, F_GETFL);
+    if (opts < 0)
+        APPL_TRACE_ERROR("%s() Getting flags failed (%s)", __func__, strerror(errno));
+
+    opts |= O_NONBLOCK;
+
+    if (fcntl(fd, F_SETFL, opts) < 0)
+        APPL_TRACE_EVENT("%s() Setting non-blocking flag failed (%s)", __func__, strerror(errno));
+}
+
 /*Internal function to perform UHID write and error checking*/
 static int uhid_write(int fd, const struct uhid_event *ev)
 {
     ssize_t ret;
-    ret = write(fd, ev, sizeof(*ev));
+
+    OSI_NO_INTR(ret = write(fd, ev, sizeof(*ev)));
     if (ret < 0){
         int rtn = -errno;
-        APPL_TRACE_ERROR("%s: Cannot write to uhid:%s", __FUNCTION__, strerror(errno));
+        APPL_TRACE_ERROR("%s: Cannot write to uhid:%s",
+                         __FUNCTION__, strerror(errno));
         return rtn;
-    } else if (ret != sizeof(*ev)) {
-        APPL_TRACE_ERROR("%s: Wrong size written to uhid: %ld != %lu",
-                                                    __FUNCTION__, ret, sizeof(*ev));
+    } else if (ret != (ssize_t)sizeof(*ev)) {
+        APPL_TRACE_ERROR("%s: Wrong size written to uhid: %zd != %zu",
+                         __FUNCTION__, ret, sizeof(*ev));
         return -EFAULT;
-    } else {
-        return 0;
     }
+
+    return 0;
 }
 
 /* Internal function to parse the events received from UHID driver*/
@@ -76,38 +93,55 @@ static int uhid_event(btif_hh_device_t *p_dev)
                                                  strerror(errno));
         return -EFAULT;
     } else if (ret < 0) {
-        APPL_TRACE_ERROR("%s:Cannot read uhid-cdev: %s", __FUNCTION__,
+        APPL_TRACE_ERROR("%s: Cannot read uhid-cdev: %s", __FUNCTION__,
                                                 strerror(errno));
         return -errno;
-    } else if (ret != sizeof(ev)) {
-        APPL_TRACE_ERROR("%s:Invalid size read from uhid-dev: %ld != %lu",
-                            __FUNCTION__, ret, sizeof(ev));
-        return -EFAULT;
+    } else if ((ev.type == UHID_OUTPUT) || (ev.type==UHID_OUTPUT_EV)) {
+        // Only these two types havae payload,
+        // ensure we read full event descriptor
+        if (ret < (ssize_t)sizeof(ev)) {
+            APPL_TRACE_ERROR("%s: Invalid size read from uhid-dev: %ld != %lu",
+                         __FUNCTION__, ret, sizeof(ev.type));
+            return -EFAULT;
+        }
     }
 
     switch (ev.type) {
     case UHID_START:
         APPL_TRACE_DEBUG("UHID_START from uhid-dev\n");
+        p_dev->ready_for_data = TRUE;
         break;
     case UHID_STOP:
         APPL_TRACE_DEBUG("UHID_STOP from uhid-dev\n");
+        p_dev->ready_for_data = FALSE;
         break;
     case UHID_OPEN:
         APPL_TRACE_DEBUG("UHID_OPEN from uhid-dev\n");
         break;
     case UHID_CLOSE:
         APPL_TRACE_DEBUG("UHID_CLOSE from uhid-dev\n");
+        p_dev->ready_for_data = FALSE;
         break;
     case UHID_OUTPUT:
+        if (ret < (ssize_t)(sizeof(ev.type) + sizeof(ev.u.output))) {
+            APPL_TRACE_ERROR("%s: Invalid size read from uhid-dev: %zd < %zu",
+                             __FUNCTION__, ret,
+                             sizeof(ev.type) + sizeof(ev.u.output));
+            return -EFAULT;
+        }
+
         APPL_TRACE_DEBUG("UHID_OUTPUT: Report type = %d, report_size = %d"
                             ,ev.u.output.rtype, ev.u.output.size);
         //Send SET_REPORT with feature report if the report type in output event is FEATURE
         if(ev.u.output.rtype == UHID_FEATURE_REPORT)
-            btif_hh_setreport(p_dev,BTHH_FEATURE_REPORT,ev.u.output.size,ev.u.output.data);
+            btif_hh_setreport(p_dev, BTHH_FEATURE_REPORT,
+                              ev.u.output.size, ev.u.output.data);
         else if(ev.u.output.rtype == UHID_OUTPUT_REPORT)
-            btif_hh_setreport(p_dev,BTHH_OUTPUT_REPORT,ev.u.output.size,ev.u.output.data);
+            btif_hh_setreport(p_dev, BTHH_OUTPUT_REPORT,
+                              ev.u.output.size, ev.u.output.data);
         else
-            btif_hh_setreport(p_dev,BTHH_INPUT_REPORT,ev.u.output.size,ev.u.output.data);
+            btif_hh_setreport(p_dev, BTHH_INPUT_REPORT,
+                              ev.u.output.size, ev.u.output.data);
            break;
     case UHID_OUTPUT_EV:
         APPL_TRACE_DEBUG("UHID_OUTPUT_EV from uhid-dev\n");
@@ -162,16 +196,19 @@ static inline pthread_t create_thread(void *(*start_routine)(void *), void * arg
 *******************************************************************************/
 static void *btif_hh_poll_event_thread(void *arg)
 {
-
     btif_hh_device_t *p_dev = arg;
     APPL_TRACE_DEBUG("%s: Thread created fd = %d", __FUNCTION__, p_dev->fd);
     struct pollfd pfds[1];
-    int ret;
+
     pfds[0].fd = p_dev->fd;
     pfds[0].events = POLLIN;
 
+    // Set the uhid fd as non-blocking to ensure we never block the BTU thread
+    uhid_set_non_blocking(p_dev->fd);
+
     while(p_dev->hh_keep_polling){
-        ret = poll(pfds, 1, 50);
+        int ret;
+        OSI_NO_INTR(ret = poll(pfds, 1, 50));
         if (ret < 0) {
             APPL_TRACE_ERROR("%s: Cannot poll for fds: %s\n", __FUNCTION__, strerror(errno));
             break;
@@ -205,21 +242,25 @@ void bta_hh_co_destroy(int fd)
     memset(&ev, 0, sizeof(ev));
     ev.type = UHID_DESTROY;
     uhid_write(fd, &ev);
+    APPL_TRACE_DEBUG("%s: Closing fd=%d", __func__, fd);
     close(fd);
 }
 
 int bta_hh_co_write(int fd, UINT8* rpt, UINT16 len)
 {
-    APPL_TRACE_DEBUG("bta_hh_co_data: UHID write");
+    APPL_TRACE_DEBUG("%s: UHID write %d", __func__, len);
+
     struct uhid_event ev;
     memset(&ev, 0, sizeof(ev));
     ev.type = UHID_INPUT;
     ev.u.input.size = len;
     if(len > sizeof(ev.u.input.data)){
-        APPL_TRACE_WARNING("%s:report size greater than allowed size",__FUNCTION__);
+        APPL_TRACE_WARNING("%s: Report size greater than allowed size",
+                           __FUNCTION__);
         return -1;
     }
     memcpy(ev.u.input.data, rpt, len);
+
     return uhid_write(fd, &ev);
 
 }
@@ -241,13 +282,15 @@ void bta_hh_co_open(UINT8 dev_handle, UINT8 sub_class, tBTA_HH_ATTR_MASK attr_ma
     btif_hh_device_t *p_dev = NULL;
 
     if (dev_handle == BTA_HH_INVALID_HANDLE) {
-        APPL_TRACE_WARNING("%s: Oops, dev_handle (%d) is invalid...", __FUNCTION__, dev_handle);
+        APPL_TRACE_WARNING("%s: Oops, dev_handle (%d) is invalid...",
+                           __FUNCTION__, dev_handle);
         return;
     }
 
     for (i = 0; i < BTIF_HH_MAX_HID; i++) {
         p_dev = &btif_hh_cb.devices[i];
-        if (p_dev->dev_status != BTHH_CONN_STATE_UNKNOWN && p_dev->dev_handle == dev_handle) {
+        if (p_dev->dev_status != BTHH_CONN_STATE_UNKNOWN &&
+            p_dev->dev_handle == dev_handle) {
             // We found a device with the same handle. Must be a device reconnected.
             APPL_TRACE_WARNING("%s: Found an existing device with the same handle "
                                                                 "dev_status = %d",__FUNCTION__,
@@ -263,9 +306,11 @@ void bta_hh_co_open(UINT8 dev_handle, UINT8 sub_class, tBTA_HH_ATTR_MASK attr_ma
                 if (p_dev->fd < 0){
                     APPL_TRACE_ERROR("%s: Error: failed to open uhid, err:%s",
                                                                     __FUNCTION__,strerror(errno));
+                    return;
                 }else
                     APPL_TRACE_DEBUG("%s: uhid fd = %d", __FUNCTION__, p_dev->fd);
             }
+
             p_dev->hh_keep_polling = 1;
             p_dev->hh_poll_thread_id = create_thread(btif_hh_poll_event_thread, p_dev);
             break;
@@ -290,6 +335,7 @@ void bta_hh_co_open(UINT8 dev_handle, UINT8 sub_class, tBTA_HH_ATTR_MASK attr_ma
                 if (p_dev->fd < 0){
                     APPL_TRACE_ERROR("%s: Error: failed to open uhid, err:%s",
                                                                     __FUNCTION__,strerror(errno));
+                    return;
                 }else{
                     APPL_TRACE_DEBUG("%s: uhid fd = %d", __FUNCTION__, p_dev->fd);
                     p_dev->hh_keep_polling = 1;
@@ -380,11 +426,13 @@ void bta_hh_co_data(UINT8 dev_handle, UINT8 *p_rpt, UINT16 len, tBTA_HH_PROTO_MO
         APPL_TRACE_WARNING("%s: Error: unknown HID device handle %d", __FUNCTION__, dev_handle);
         return;
     }
-    // Send the HID report to the kernel.
-    if (p_dev->fd >= 0) {
+
+    // Send the HID data to the kernel.
+    if ((p_dev->fd >= 0) && p_dev->ready_for_data) {
         bta_hh_co_write(p_dev->fd, p_rpt, len);
     }else {
-        APPL_TRACE_WARNING("%s: Error: fd = %d, len = %d", __FUNCTION__, p_dev->fd, len);
+        APPL_TRACE_WARNING("%s: Error: fd = %d, ready %d, len = %d", __FUNCTION__, p_dev->fd, 
+                            p_dev->ready_for_data, len);
     }
 }
 
@@ -420,7 +468,7 @@ void bta_hh_co_send_hid_info(btif_hh_device_t *p_dev, char *dev_name, UINT16 ven
                                                                     vendor_id, product_id,
                                                                     version, ctry_code);
 
-//Create and send hid descriptor to kernel
+    //Create and send hid descriptor to kernel
     memset(&ev, 0, sizeof(ev));
     ev.type = UHID_CREATE;
     strncpy((char*)ev.u.create.name, dev_name, sizeof(ev.u.create.name) - 1);
@@ -438,7 +486,7 @@ void bta_hh_co_send_hid_info(btif_hh_device_t *p_dev, char *dev_name, UINT16 ven
     ev.u.create.country = ctry_code;
     result = uhid_write(p_dev->fd, &ev);
 
-    APPL_TRACE_WARNING("%s: fd = %d, dscp_len = %d, result = %d", __FUNCTION__,
+    APPL_TRACE_WARNING("%s: wrote descriptor to fd = %d, dscp_len = %d, result = %d", __FUNCTION__,
                                                                     p_dev->fd, dscp_len, result);
 
     if (result) {
@@ -471,8 +519,6 @@ void bta_hh_le_co_rpt_info(BD_ADDR remote_bda, tBTA_HH_RPT_CACHE_ENTRY *p_entry,
 {
     UNUSED(app_id);
 
-    unsigned len = 0;
-    unsigned type = 0;
     unsigned idx = 0;
 
     bdstr_t bdstr;
@@ -480,18 +526,18 @@ void bta_hh_le_co_rpt_info(BD_ADDR remote_bda, tBTA_HH_RPT_CACHE_ENTRY *p_entry,
         remote_bda[0], remote_bda[1], remote_bda[2],
         remote_bda[3], remote_bda[4], remote_bda[5]);
 
-    btif_config_get("Remote", bdstr, "HidReport", NULL, (int*)&len, (int*)&type);
+    size_t len = btif_config_get_bin_length(bdstr, "HidReport");
     if (len >= sizeof(tBTA_HH_RPT_CACHE_ENTRY) && len <= sizeof(sReportCache))
     {
-        btif_config_get("Remote", bdstr, "HidReport", (char*)sReportCache, (int*)&len, (int*)&type);
+        btif_config_get_bin(bdstr, "HidReport", (uint8_t *)sReportCache, &len);
         idx = len / sizeof(tBTA_HH_RPT_CACHE_ENTRY);
     }
 
     if (idx < BTA_HH_NV_LOAD_MAX)
     {
         memcpy(&sReportCache[idx++], p_entry, sizeof(tBTA_HH_RPT_CACHE_ENTRY));
-        btif_config_set("Remote", bdstr, "HidReport", (const char*)sReportCache,
-            idx * sizeof(tBTA_HH_RPT_CACHE_ENTRY), BTIF_CFG_TYPE_BIN);
+        btif_config_set_bin(bdstr, "HidReport", (const uint8_t *)sReportCache,
+            idx * sizeof(tBTA_HH_RPT_CACHE_ENTRY));
         BTIF_TRACE_DEBUG("%s() - Saving report; dev=%s, idx=%d", __FUNCTION__, bdstr, idx);
     }
 }
@@ -517,8 +563,6 @@ tBTA_HH_RPT_CACHE_ENTRY * bta_hh_le_co_cache_load (BD_ADDR remote_bda,
 {
     UNUSED(app_id);
 
-    unsigned len = 0;
-    unsigned type = 0;
     unsigned idx = 0;
 
     bdstr_t bdstr;
@@ -526,13 +570,13 @@ tBTA_HH_RPT_CACHE_ENTRY * bta_hh_le_co_cache_load (BD_ADDR remote_bda,
         remote_bda[0], remote_bda[1], remote_bda[2],
         remote_bda[3], remote_bda[4], remote_bda[5]);
 
-    btif_config_get("Remote", bdstr, "HidReport", NULL, (int*)&len, (int*)&type);
+    size_t len = btif_config_get_bin_length(bdstr, "HidReport");
     if (!p_num_rpt && len < sizeof(tBTA_HH_RPT_CACHE_ENTRY))
         return NULL;
 
     if (len > sizeof(sReportCache))
         len = sizeof(sReportCache);
-    btif_config_get("Remote", bdstr, "HidReport", (char*)sReportCache, (int*)&len, (int*)&type);
+    btif_config_get_bin(bdstr, "HidReport", (uint8_t *)sReportCache, &len);
     *p_num_rpt = len / sizeof(tBTA_HH_RPT_CACHE_ENTRY);
 
     BTIF_TRACE_DEBUG("%s() - Loaded %d reports; dev=%s", __FUNCTION__, *p_num_rpt, bdstr);
@@ -559,7 +603,7 @@ void bta_hh_le_co_reset_rpt_cache (BD_ADDR remote_bda, UINT8 app_id)
     sprintf(bdstr, "%02x:%02x:%02x:%02x:%02x:%02x",
         remote_bda[0], remote_bda[1], remote_bda[2],
         remote_bda[3], remote_bda[4], remote_bda[5]);
-    btif_config_remove("Remote", bdstr, "HidReport");
+    btif_config_remove(bdstr, "HidReport");
 
     BTIF_TRACE_DEBUG("%s() - Reset cache for bda %s", __FUNCTION__, bdstr);
 }