Merge "[Bluetooth][OTP-Server] Handle object browsing" into tizen
[platform/core/connectivity/bluetooth-frwk.git] / bt-api / bt-hid-device.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 <gio/gio.h>
18 #include <gio/gunixfdlist.h>
19 #include <sys/socket.h>
20
21 #include "bluetooth-api.h"
22 #include "bt-internal-types.h"
23 #include "bluetooth-hid-api.h"
24 #include "bt-common.h"
25 #include "bt-request-sender.h"
26 #include "bt-event-handler.h"
27
28 #define HID_UUID                "00001124-0000-1000-8000-00805f9b34fb"
29 #define HID_DEVICE_UUID "00001124-0000-1000-8000-00805f9b43bf"
30 #define REPORTID_MOUSE  1
31 #define BT_HID_BUFFER_LEN 100
32
33 /* HIDP header masks */
34 #define BT_HID_HEADER_TRANS_MASK                        0xf0
35 #define BT_HID_HEADER_PARAM_MASK                        0x0f
36
37 /* HIDP transaction types */
38 #define BT_HID_TRANS_HANDSHAKE                  0x00
39 #define BT_HID_TRANS_HID_CONTROL                        0x10
40 #define BT_HID_TRANS_GET_REPORT                 0x40
41 #define BT_HID_TRANS_SET_REPORT                 0x50
42 #define BT_HID_TRANS_GET_PROTOCOL                       0x60
43 #define BT_HID_TRANS_SET_PROTOCOL                       0x70
44 #define BT_HID_TRANS_GET_IDLE                   0x80
45 #define BT_HID_TRANS_SET_IDLE                   0x90
46 #define BT_HID_TRANS_DATA                               0xa0
47 #define BT_HID_TRANS_DATC                               0xb0
48
49 #define BT_HID_DATA_RTYPE_INPUT                 0x01
50 #define BT_HID_DATA_RTYPE_OUTPUT                        0x02
51
52 #define BT_HID_HSHK_SUCCESSFUL  0x00
53 #define BT_HID_HSHK_NOT_READY   0x01
54 #define BT_HID_HSHK_ERR_INVALID_REPORT_ID       0x02
55 #define BT_HID_HSHK_ERR_UNSUPPORTED_REQUEST     0x03
56 #define BT_HID_HSHK_ERR_INVALID_PARAMETER       0x04
57 #define BT_HID_HSHK_ERR_UNKNOWN 0x0E
58 #define BT_HID_HSHK_ERR_FATAL   0x0F
59
60 typedef struct {
61         guint object_id;
62         gchar *path;
63         int id;
64         char *uuid;
65         GSList *device_list;
66 } hid_info_t;
67
68 typedef struct {
69         int ctrl_fd;
70         int intr_fd;
71         GIOChannel *ctrl_data_io;
72         GIOChannel *intr_data_io;
73         guint ctrl_data_id;
74         guint intr_data_id;
75         char *address;
76         guint disconnect_idle_id;
77 } hid_connected_device_info_t;
78
79 struct reports {
80         guint8 type;
81         guint8 rep_data[20];
82 } __attribute__((__packed__));
83
84 static hid_info_t *hid_info = NULL;
85
86 /* Variable for privilege, only for write API,
87   before we should reduce time to bt-service dbus calling
88   -1 : Don't have a permission to access API
89   0 : Initial value, not yet check
90   1 : Have a permission to access API
91 */
92 static int privilege_token_send_mouse = 0;
93 static int privilege_token_send_key = 0;
94 static int privilege_token_reply = 0;
95
96 static gboolean __hid_disconnect(hid_connected_device_info_t *info);
97
98 int _bt_hid_device_get_fd(const char *address, int *ctrl, int *intr)
99 {
100
101         int ret = BLUETOOTH_ERROR_NONE;
102         char *adapter_path;
103         GVariant *result = NULL;
104         GError *err = NULL;
105         GDBusConnection *conn;
106         GDBusProxy *server_proxy;
107         int index1 = 0;
108         int index2 = 0;
109         GUnixFDList *out_fd_list = NULL;
110         conn = _bt_gdbus_get_system_gconn();
111         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
112
113         adapter_path = _bt_get_device_object_path((char *)address);
114         retv_if(adapter_path == NULL, BLUETOOTH_ERROR_INTERNAL);
115         BT_INFO_C("Device : %s", adapter_path);
116         server_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
117                         NULL, BT_BLUEZ_NAME,
118                         adapter_path, "org.bluez.Input1",  NULL, NULL);
119         g_free(adapter_path);
120
121         if (server_proxy == NULL) {
122                 BT_ERR("Failed to get the network server proxy\n");
123                 return BLUETOOTH_ERROR_INTERNAL;
124         }
125
126         result = g_dbus_proxy_call_with_unix_fd_list_sync(server_proxy, "GetFD",
127                                  NULL,
128                                  G_DBUS_CALL_FLAGS_NONE,
129                                  -1,
130                                  NULL,
131                                  &out_fd_list,
132                                  NULL,
133                                  &err);
134         if (result == NULL) {
135                 if (err != NULL) {
136                         g_dbus_error_strip_remote_error(err);
137                         BT_ERR("INPUT server register Error: %s\n", err->message);
138                         if (g_strcmp0(err->message, "Already Exists") == 0)
139                                 ret = BLUETOOTH_ERROR_ALREADY_INITIALIZED;
140                         else
141                                 ret = BLUETOOTH_ERROR_INTERNAL;
142
143                         g_error_free(err);
144                 }
145         } else {
146                 g_variant_get(result, "(hh)", &index1, &index2);
147                 int fd1 = g_unix_fd_list_get(out_fd_list, index1, NULL);
148                 int fd2 = g_unix_fd_list_get(out_fd_list, index2, NULL);
149
150                 *ctrl = fd1;
151                 *intr = fd2;
152                 g_object_unref(out_fd_list);
153                 g_variant_unref(result);
154         }
155         g_object_unref(server_proxy);
156         return ret;
157 }
158
159 static hid_connected_device_info_t *__find_hid_info_with_address(const char *remote_addr)
160 {
161         GSList *l;
162
163         for (l = hid_info->device_list; l != NULL; l = l->next) {
164                 hid_connected_device_info_t *info = l->data;
165                 if (g_strcmp0((const char *)info->address, (const char *)remote_addr) == 0)
166                         return info;
167         }
168         return NULL;
169 }
170
171 static void __hid_connected_cb(hid_connected_device_info_t *info,
172                         int result)
173 {
174         bluetooth_hid_request_t conn_info;
175         bt_event_info_t *event_info = NULL;
176
177         event_info = _bt_event_get_cb_data(BT_HID_DEVICE_EVENT);
178         if (event_info == NULL)
179                 return;
180
181         memset(&conn_info, 0x00, sizeof(bluetooth_hid_request_t));
182         if (info->intr_fd != -1 && info->ctrl_fd == -1)
183                 conn_info.socket_fd = info->intr_fd;
184         else
185                 conn_info.socket_fd = info->ctrl_fd;
186         _bt_convert_addr_string_to_type(conn_info.device_addr.addr, info->address);
187
188         if (result == BLUETOOTH_ERROR_NONE)
189                 BT_INFO_C("Connected [HID Device]");
190
191         _bt_common_event_cb(BLUETOOTH_HID_DEVICE_CONNECTED,
192                         result, &conn_info,
193                         event_info->cb, event_info->user_data);
194 }
195
196 static void __hid_connect_response_cb(GDBusProxy *proxy, GAsyncResult *res,
197                         gpointer user_data)
198
199 {
200         int result;
201         GError *error = NULL;
202         GVariant *ret = NULL;
203         hid_connected_device_info_t info;
204         const char *path;
205
206         BT_DBG("+");
207
208         ret = g_dbus_proxy_call_finish(proxy, res, &error);
209         if (ret == NULL) {
210                 g_dbus_error_strip_remote_error(error);
211                 BT_ERR("Error : %s \n", error->message);
212
213                 if (g_strcmp0(error->message, "In Progress") == 0)
214                         result = BLUETOOTH_ERROR_DEVICE_BUSY;
215                 else
216                         result = BLUETOOTH_ERROR_INTERNAL;
217
218                 info.ctrl_fd = -1;
219                 info.intr_fd = -1;
220
221                 info.address = g_malloc0(BT_ADDRESS_STRING_SIZE);
222
223                 path = g_dbus_proxy_get_object_path(proxy);
224                 _bt_convert_device_path_to_address(path, info.address);
225
226                 __hid_connected_cb(&info, result);
227
228                 g_free(info.address);
229
230                 g_error_free(error);
231         } else {
232                 g_variant_unref(ret);
233         }
234
235         if (proxy)
236                 g_object_unref(proxy);
237
238         BT_DBG("-");
239 }
240
241 static gboolean __hid_disconnect(hid_connected_device_info_t *info)
242 {
243         bluetooth_hid_request_t disconn_info;
244         int fd = info->ctrl_fd;
245         bt_event_info_t *event_info;
246
247         BT_INFO_C("Disconnected [HID Device]");
248         hid_info->device_list = g_slist_remove(hid_info->device_list, info);
249         if (info->ctrl_data_id > 0) {
250                 g_source_remove(info->ctrl_data_id);
251                 info->ctrl_data_id = 0;
252         }
253         if (info->intr_data_id > 0) {
254                 g_source_remove(info->intr_data_id);
255                 info->intr_data_id = 0;
256         }
257
258         if (info->ctrl_data_io) {
259                 g_io_channel_shutdown(info->ctrl_data_io, TRUE, NULL);
260                 g_io_channel_unref(info->ctrl_data_io);
261                 info->ctrl_data_io = NULL;
262         }
263         if (info->intr_data_io) {
264                 g_io_channel_shutdown(info->intr_data_io, TRUE, NULL);
265                 g_io_channel_unref(info->intr_data_io);
266                 info->intr_data_io = NULL;
267         }
268         if (info->intr_fd >= 0) {
269                 close(info->ctrl_fd);
270                 close(info->intr_fd);
271                 info->intr_fd = -1;
272                 info->ctrl_fd = -1;
273         }
274         info->disconnect_idle_id = 0;
275         event_info = _bt_event_get_cb_data(BT_HID_DEVICE_EVENT);
276         if (event_info == NULL)
277                 return FALSE;
278
279         memset(&disconn_info, 0x00, sizeof(bluetooth_hid_request_t));
280         disconn_info.socket_fd = fd;
281         _bt_convert_addr_string_to_type(disconn_info.device_addr.addr , info->address);
282         _bt_common_event_cb(BLUETOOTH_HID_DEVICE_DISCONNECTED,
283                         BLUETOOTH_ERROR_NONE, &disconn_info,
284                         event_info->cb, event_info->user_data);
285         if (info->address)
286                 g_free(info->address);
287         g_free(info);
288         info = NULL;
289         BT_DBG("-");
290         return FALSE;
291 }
292
293 void __free_hid_info(hid_info_t *info)
294 {
295         BT_DBG("");
296
297         _bt_unregister_gdbus(info->object_id);
298
299         while (info->device_list) {
300                 hid_connected_device_info_t *dev_info = NULL;
301                 dev_info = (hid_connected_device_info_t *)info->device_list->data;
302
303                 if (dev_info->disconnect_idle_id > 0) {
304                         BT_INFO("Disconnect idle still not process remove source");
305                         g_source_remove(dev_info->disconnect_idle_id);
306                         dev_info->disconnect_idle_id = 0;
307                 }
308                 __hid_disconnect(dev_info);
309         }
310
311         g_free(info->path);
312         g_free(info->uuid);
313         g_free(info);
314 }
315
316 static gboolean __is_error_by_disconnect(GError *err)
317 {
318         return !g_strcmp0(err->message, "Connection reset by peer") ||
319                         !g_strcmp0(err->message, "Connection timed out") ||
320                         !g_strcmp0(err->message, "Software caused connection abort");
321 }
322
323 static gboolean __received_cb(GIOChannel *chan, GIOCondition cond,
324                                                                 gpointer data)
325 {
326         hid_connected_device_info_t *info = data;
327         GIOStatus status = G_IO_STATUS_NORMAL;
328         char buffer[BT_RFCOMM_BUFFER_LEN];
329         gsize len = 0;
330         GError *err = NULL;
331         guint8  header, type, param;
332         bt_event_info_t *event_info;
333         retv_if(info == NULL, FALSE);
334
335         if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR)) {
336                 BT_ERR_C("HID  disconnected: %d", info->ctrl_fd);
337                         if (info->disconnect_idle_id > 0) {
338                                 BT_INFO("Disconnect idle still not process remove source");
339                                 g_source_remove(info->disconnect_idle_id);
340                                 info->disconnect_idle_id = 0;
341                         }
342                 __hid_disconnect(info);
343                 return FALSE;
344         }
345
346         status = g_io_channel_read_chars(chan, buffer, BT_RFCOMM_BUFFER_LEN,
347                         &len, &err);
348         if (status == G_IO_STATUS_NORMAL) {
349                 BT_INFO("Parsing Data");
350                 bluetooth_hid_received_data_t data = {0};
351                 header = buffer[0];
352                 type = header & BT_HID_HEADER_TRANS_MASK;
353                 param = header & BT_HID_HEADER_PARAM_MASK;
354                 BT_INFO("type %d , param %d", type, param);
355                 BT_INFO("Data Reveived from %s" , info->address);
356
357                 event_info = _bt_event_get_cb_data(BT_HID_DEVICE_EVENT);
358                 if (event_info == NULL)
359                         return FALSE;
360
361                 data.address = g_strdup(info->address);
362                 switch (type) {
363                 case BT_HID_TRANS_HANDSHAKE:
364                         BT_INFO("TRANS HANDSHAKE");
365                         data.type = HTYPE_TRANS_HANDSHAKE;
366                         data.buffer_size = len;
367                         data.buffer = (char *) malloc(sizeof(char) * len);
368                         if (data.buffer)
369                                 memcpy(data.buffer, buffer, len);
370                 break;
371
372                 case BT_HID_TRANS_HID_CONTROL:
373                         BT_INFO("HID CONTROL");
374                         data.type = HTYPE_TRANS_HID_CONTROL;
375                         data.buffer_size = len;
376                         data.buffer = (char *) malloc(sizeof(char) * len);
377                         if (data.buffer)
378                                 memcpy(data.buffer, buffer, len);
379                 break;
380
381                 case BT_HID_TRANS_DATA:
382                         BT_INFO("TRANS DATA");
383                         data.type = HTYPE_TRANS_DATA;
384                         if (param & BT_HID_DATA_RTYPE_INPUT) {
385                                 BT_INFO("Input Report");
386                                 data.param = PTYPE_DATA_RTYPE_INPUT;
387                                 data.buffer_size = len;
388                                 data.buffer = (char *) malloc(sizeof(char) * len);
389                                 if (data.buffer)
390                                         memcpy(data.buffer, buffer, len);
391                         } else {
392                                 BT_INFO("Out Report");
393                                 data.param = PTYPE_DATA_RTYPE_OUTPUT;
394                                 data.buffer_size = len;
395                                 data.buffer = (char *) malloc(sizeof(char) * len);
396                                 if (data.buffer)
397                                         memcpy(data.buffer, buffer, len);
398                         }
399                 break;
400
401                 case BT_HID_TRANS_GET_REPORT: {
402                         BT_INFO("Get Report");
403                         data.type = HTYPE_TRANS_GET_REPORT;
404                         if (param & BT_HID_DATA_RTYPE_INPUT) {
405                                 BT_INFO("Input Report");
406                                 data.param = PTYPE_DATA_RTYPE_INPUT;
407                         } else {
408                                 BT_INFO("Output Report");
409                                 data.param = PTYPE_DATA_RTYPE_OUTPUT;
410                         }
411                         data.buffer_size = len;
412                         data.buffer = (char *) malloc(sizeof(char) * len);
413                         if (data.buffer)
414                                 memcpy(data.buffer, buffer, len);
415                         break;
416                 }
417
418                 case BT_HID_TRANS_SET_REPORT: {
419                         BT_INFO("Set Report");
420                         data.type = HTYPE_TRANS_SET_REPORT;
421                         if (param & BT_HID_DATA_RTYPE_INPUT) {
422                                 BT_INFO("Input Report");
423                                 data.param = PTYPE_DATA_RTYPE_INPUT;
424                         } else {
425                                 BT_INFO("Output Report");
426                                 data.param = PTYPE_DATA_RTYPE_OUTPUT;
427                         }
428                         data.buffer_size = len;
429                         data.buffer = (char *) malloc(sizeof(char) * len);
430                         if (data.buffer)
431                                 memcpy(data.buffer, buffer, len);
432                         break;
433                 }
434
435                 case BT_HID_TRANS_GET_PROTOCOL:{
436                         BT_INFO("Get_PROTOCOL");
437                         data.type = HTYPE_TRANS_GET_PROTOCOL;
438                         data.param = PTYPE_DATA_RTYPE_INPUT;
439                         data.buffer_size = len;
440                         data.buffer = (char *) malloc(sizeof(char) * len);
441                         if (data.buffer)
442                                 memcpy(data.buffer, buffer, len);
443                         break;
444                 }
445
446                 case BT_HID_TRANS_SET_PROTOCOL:{
447                         BT_INFO("Set_PROTOCOL");
448                         data.type = HTYPE_TRANS_SET_PROTOCOL;
449                         data.param = PTYPE_DATA_RTYPE_INPUT;
450                         data.buffer_size = len;
451                         data.buffer = (char *) malloc(sizeof(char) * len);
452                         if (data.buffer)
453                                 memcpy(data.buffer, buffer, len);
454                         break;
455                 }
456
457                 default: {
458                         BT_INFO("unsupported HIDP control message");
459                         BT_ERR("Send Handshake Message");
460                         guint8 type = BT_HID_TRANS_HANDSHAKE |
461                                 BT_HID_HSHK_ERR_UNSUPPORTED_REQUEST;
462                         data.type = HTYPE_TRANS_UNKNOWN;
463                         int fd = g_io_channel_unix_get_fd(chan);
464                         int bytes = write(fd,  &type, sizeof(type));
465                         BT_INFO("Bytes Written %d", bytes);
466                         break;
467                 }
468         }
469
470         _bt_common_event_cb(BLUETOOTH_HID_DEVICE_DATA_RECEIVED,
471                                 BLUETOOTH_ERROR_NONE, &data,
472                                 event_info->cb, event_info->user_data);
473         if (data.buffer)
474                 g_free(data.buffer);
475
476         if (data.address)
477                 g_free((char *)data.address);
478         } else {
479                 BT_ERR("Error while reading data %d [%s]", status, info->address);
480                 if (err) {
481                         BT_ERR("IO Channel read error [%s]", err->message);
482                         if (status == G_IO_STATUS_ERROR &&
483                                         __is_error_by_disconnect(err)) {
484                                 BT_DBG("cond : %d", cond);
485                                 g_error_free(err);
486                                 __hid_disconnect(info);
487                                 return FALSE;
488                         }
489                         g_error_free(err);
490                 } else if (status == G_IO_STATUS_EOF) {
491                         __hid_disconnect(info);
492                         return FALSE;
493                 }
494         }
495         return TRUE;
496 }
497
498 int new_hid_connection(const char *path, int fd, bluetooth_device_address_t *addr)
499 {
500         hid_info_t *info = NULL;
501         hid_connected_device_info_t *dev_info = NULL;
502         char address[18];
503         info = hid_info;
504
505         if (info == NULL)
506                 return -1;
507         _bt_convert_addr_type_to_string((char *)address, addr->addr);
508         BT_INFO("Address [%s]", address);
509         dev_info = __find_hid_info_with_address(address);
510         if (dev_info == NULL) {
511                 dev_info = (hid_connected_device_info_t *)
512                         g_malloc0(sizeof(hid_connected_device_info_t));
513
514                 dev_info->intr_fd = -1;
515                 dev_info->ctrl_fd = -1;
516                 dev_info->intr_fd = fd;
517                 dev_info->address = g_strdup(address);
518                 dev_info->intr_data_io = g_io_channel_unix_new(dev_info->intr_fd);
519                 g_io_channel_set_encoding(dev_info->intr_data_io, NULL, NULL);
520                 g_io_channel_set_flags(dev_info->intr_data_io, G_IO_FLAG_NONBLOCK, NULL);
521                 g_io_channel_set_close_on_unref(dev_info->intr_data_io, TRUE);
522                 dev_info->intr_data_id = g_io_add_watch(dev_info->intr_data_io,
523                                 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
524                                 __received_cb, dev_info);
525                 hid_info->device_list = g_slist_append(hid_info->device_list, dev_info);
526         } else {
527                 dev_info->ctrl_fd = fd;
528                 dev_info->ctrl_data_io = g_io_channel_unix_new(dev_info->ctrl_fd);
529                 g_io_channel_set_encoding(dev_info->ctrl_data_io, NULL, NULL);
530                 g_io_channel_set_flags(dev_info->ctrl_data_io, G_IO_FLAG_NONBLOCK, NULL);
531                 g_io_channel_set_close_on_unref(dev_info->ctrl_data_io, TRUE);
532                 dev_info->ctrl_data_id = g_io_add_watch(dev_info->ctrl_data_io,
533                                 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
534                                 __received_cb, dev_info);
535         }
536
537         if (dev_info->ctrl_fd != -1 && dev_info->intr_fd != -1)
538                 __hid_connected_cb(dev_info, BLUETOOTH_ERROR_NONE);
539
540         return 0;
541 }
542 static hid_info_t *__register_method()
543 {
544         int object_id;
545         hid_info_t *info = NULL;
546         char *path = NULL;
547         path = g_strdup_printf("/org/socket/server/%d", getpid());
548
549         object_id = _bt_register_new_conn(path, new_hid_connection);
550         if (object_id < 0)
551                 return NULL;
552
553         info = g_new(hid_info_t, 1);
554         info->object_id = (guint)object_id;
555         info->path = path;
556         info->id = 0;
557         info->device_list = NULL;
558
559         return info;
560 }
561
562 void _bluetooth_hid_free_hid_info(void)
563 {
564         if (hid_info == NULL) {
565                 BT_DBG("hid_info is already NULL");
566                 return;
567         }
568
569         __free_hid_info(hid_info);
570         hid_info = NULL;
571 }
572
573 BT_EXPORT_API int bluetooth_hid_device_init(hid_cb_func_ptr callback_ptr, void *user_data)
574 {
575         int ret;
576
577         /* Register HID Device events */
578         BT_INFO("BT_HID_DEVICE_EVENT");
579         ret = _bt_register_event(BT_HID_DEVICE_EVENT , (void *)callback_ptr, user_data);
580
581         if (ret != BLUETOOTH_ERROR_NONE &&
582              ret != BLUETOOTH_ERROR_ALREADY_INITIALIZED) {
583                 BT_ERR("Fail to init the event handler");
584                 return ret;
585         }
586
587         _bt_set_user_data(BT_HID, (void *)callback_ptr, user_data);
588
589         return BLUETOOTH_ERROR_NONE;
590 }
591
592 BT_EXPORT_API int bluetooth_hid_device_deinit(void)
593 {
594         int ret;
595
596         ret = _bt_unregister_event(BT_HID_DEVICE_EVENT);
597
598         if (ret != BLUETOOTH_ERROR_NONE) {
599                 BT_ERR("Fail to deinit the event handler");
600                 return ret;
601         }
602
603         _bt_set_user_data(BT_HID, NULL, NULL);
604
605         return BLUETOOTH_ERROR_NONE;
606 }
607
608 BT_EXPORT_API int bluetooth_hid_device_activate(void)
609 {
610         bt_register_profile_info_t profile_info;
611         int result = BLUETOOTH_ERROR_NONE;
612
613         if (_bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_ACTIVATE)
614                  == BLUETOOTH_ERROR_PERMISSION_DEINED) {
615                 BT_ERR("Don't have a privilege to use this API");
616                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
617         }
618
619         if (hid_info != NULL)
620                 return BLUETOOTH_ERROR_IN_PROGRESS;
621
622         hid_info = __register_method();
623         if (hid_info == NULL)
624                 return BLUETOOTH_ERROR_INTERNAL;
625
626         hid_info->uuid = g_strdup(HID_DEVICE_UUID);
627
628         profile_info.authentication = TRUE;
629         profile_info.authorization = TRUE;
630         profile_info.obj_path = hid_info->path;
631         profile_info.role = g_strdup("Hid");
632         profile_info.service = hid_info->uuid;
633         profile_info.uuid = hid_info->uuid;
634
635         BT_INFO("uuid %s", profile_info.uuid);
636         result = _bt_register_profile(&profile_info, FALSE);
637
638         g_free(profile_info.role);
639
640         return result;
641 }
642
643 BT_EXPORT_API int bluetooth_hid_device_deactivate(void)
644 {
645         if (_bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_DEACTIVATE)
646                  == BLUETOOTH_ERROR_PERMISSION_DEINED) {
647                 BT_ERR("Don't have a privilege to use this API");
648                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
649         }
650
651         if (hid_info == NULL)
652                 return BLUETOOTH_ERROR_NOT_IN_OPERATION;
653
654         _bt_unregister_profile(hid_info->path);
655
656         _bluetooth_hid_free_hid_info();
657
658         return BLUETOOTH_ERROR_NONE;
659 }
660
661 BT_EXPORT_API int bluetooth_hid_device_connect(const char *remote_addr)
662 {
663         char device_address[BT_ADDRESS_STRING_SIZE] = {0};
664         hid_connected_device_info_t *info = NULL;
665         int ret;
666         BT_DBG("+");
667         BT_CHECK_PARAMETER(remote_addr, return);
668
669         info = __find_hid_info_with_address(remote_addr);
670         if (info) {
671                 BT_ERR("Connection Already Exists");
672                 return BLUETOOTH_ERROR_ALREADY_CONNECT;
673         }
674         if (_bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_CONNECT)
675                  == BLUETOOTH_ERROR_PERMISSION_DEINED) {
676                 BT_ERR("Don't have a privilege to use this API");
677                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
678         }
679
680         memcpy(device_address, remote_addr, BT_ADDRESS_STRING_SIZE);
681         ret = _bt_connect_profile(device_address, HID_DEVICE_UUID,
682                                 __hid_connect_response_cb, NULL);
683
684         return ret;
685 }
686 BT_EXPORT_API int bluetooth_hid_device_disconnect(const char *remote_addr)
687 {
688         BT_CHECK_PARAMETER(remote_addr, return);
689
690         if (_bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_DISCONNECT)
691                  == BLUETOOTH_ERROR_PERMISSION_DEINED) {
692                 BT_ERR("Don't have a privilege to use this API");
693                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
694         }
695
696         hid_connected_device_info_t *info = NULL;
697
698         info = __find_hid_info_with_address(remote_addr);
699         if (info == NULL)
700                 return BLUETOOTH_ERROR_INVALID_PARAM;
701
702         _bt_disconnect_profile((char *)remote_addr, HID_DEVICE_UUID, NULL, NULL);
703
704         info->disconnect_idle_id = g_idle_add((GSourceFunc)__hid_disconnect, info);
705
706         BT_DBG("-");
707         return BLUETOOTH_ERROR_NONE;
708 }
709 BT_EXPORT_API int bluetooth_hid_device_send_mouse_event(const char *remote_addr,
710                                         hid_send_mouse_event_t send_event)
711 {
712         int result;
713         int written = 0;
714         hid_connected_device_info_t *info = NULL;
715
716         BT_CHECK_PARAMETER(remote_addr, return);
717
718         switch (privilege_token_send_mouse) {
719         case 0:
720                 result = _bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_SEND_MOUSE_EVENT);
721
722                 if (result == BLUETOOTH_ERROR_NONE) {
723                         privilege_token_send_mouse = 1; /* Have a permission */
724                 } else if (result == BLUETOOTH_ERROR_PERMISSION_DEINED) {
725                         BT_ERR("Don't have a privilege to use this API");
726                         privilege_token_send_mouse = -1; /* Don't have a permission */
727                         return BLUETOOTH_ERROR_PERMISSION_DEINED;
728                 } else {
729                         /* Just break - It is not related with permission error */
730                 }
731                 break;
732         case 1:
733                 /* Already have a privilege */
734                 break;
735         case -1:
736                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
737         default:
738                 /* Invalid privilge token value */
739                 return BLUETOOTH_ERROR_INTERNAL;
740         }
741         info = __find_hid_info_with_address(remote_addr);
742         if (info == NULL) {
743                 BT_ERR("Connection Information not found");
744                 return BLUETOOTH_ERROR_INVALID_PARAM;
745         }
746         int socket_fd;
747
748         if (info->intr_fd != -1 && info->ctrl_fd == -1)
749                 socket_fd = info->intr_fd;
750         else
751                 socket_fd = info->ctrl_fd;
752
753         written = write(socket_fd, &send_event, sizeof(send_event));
754
755         return written;
756 }
757
758 BT_EXPORT_API int bluetooth_hid_device_send_key_event(const char *remote_addr,
759                                         hid_send_key_event_t send_event)
760 {
761         int result;
762         int written = 0;
763         hid_connected_device_info_t *info = NULL;
764
765         BT_CHECK_PARAMETER(remote_addr, return);
766
767         switch (privilege_token_send_key) {
768         case 0:
769                 result = _bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_SEND_KEY_EVENT);
770
771                 if (result == BLUETOOTH_ERROR_NONE) {
772                         privilege_token_send_key = 1; /* Have a permission */
773                 } else if (result == BLUETOOTH_ERROR_PERMISSION_DEINED) {
774                         BT_ERR("Don't have a privilege to use this API");
775                         privilege_token_send_key = -1; /* Don't have a permission */
776                         return BLUETOOTH_ERROR_PERMISSION_DEINED;
777                 } else {
778                         /* Just break - It is not related with permission error */
779                 }
780                 break;
781         case 1:
782                 /* Already have a privilege */
783                 break;
784         case -1:
785                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
786         default:
787                 /* Invalid privilge token value */
788                 return BLUETOOTH_ERROR_INTERNAL;
789         }
790
791         info = __find_hid_info_with_address(remote_addr);
792         if (info == NULL) {
793                 BT_ERR("Connection Information not found");
794                 return BLUETOOTH_ERROR_INVALID_PARAM;
795         }
796
797         int socket_fd;
798
799         if (info->intr_fd != -1 && info->ctrl_fd == -1)
800                 socket_fd = info->intr_fd;
801         else
802                 socket_fd = info->ctrl_fd;
803
804         written = write(socket_fd, &send_event, sizeof(send_event));
805         return written;
806 }
807
808 BT_EXPORT_API int bluetooth_hid_device_send_custom_event(const char *remote_addr,
809                         unsigned char btcode, unsigned char report_id,
810                         const char *data, unsigned int data_len)
811 {
812         int result;
813         int written = 0;
814         int socket_fd;
815         hid_connected_device_info_t *info = NULL;
816         char *send_event = NULL;
817
818         BT_CHECK_PARAMETER(remote_addr, return);
819         BT_CHECK_PARAMETER(data, return);
820
821         switch (privilege_token_send_key) {
822         case 0:
823                 result = _bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_SEND_CUSTOM_EVENT);
824
825                 if (result == BLUETOOTH_ERROR_NONE) {
826                         privilege_token_send_key = 1; /* Have a permission */
827                 } else if (result == BLUETOOTH_ERROR_PERMISSION_DEINED) {
828                         BT_ERR("Don't have a privilege to use this API");
829                         privilege_token_send_key = -1; /* Don't have a permission */
830                         return BLUETOOTH_ERROR_PERMISSION_DEINED;
831                 } else {
832                         /* Just break - It is not related with permission error */
833                 }
834                 break;
835         case 1:
836                 /* Already have a privilege */
837                 break;
838         case -1:
839                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
840         default:
841                 /* Invalid privilge token value */
842                 return BLUETOOTH_ERROR_INTERNAL;
843         }
844
845         info = __find_hid_info_with_address(remote_addr);
846         if (info == NULL) {
847                 BT_ERR("Connection Information not found");
848                 return BLUETOOTH_ERROR_INVALID_PARAM;
849         }
850
851         if (info->intr_fd != -1 && info->ctrl_fd == -1)
852                 socket_fd = info->intr_fd;
853         else
854                 socket_fd = info->ctrl_fd;
855
856         send_event = g_malloc0(data_len + 2);
857
858         send_event[0] = (char)btcode;
859         send_event[1] = (char)report_id;
860         memcpy(send_event + 2, data, data_len);
861
862         written = write(socket_fd, send_event, data_len + 2);
863
864         g_free(send_event);
865
866         return written;
867 }
868
869 BT_EXPORT_API int bluetooth_hid_device_reply_to_report(const char *remote_addr,
870                                 bt_hid_header_type_t htype,
871                                 bt_hid_param_type_t ptype,
872                                 const char *data,
873                                 unsigned int data_len)
874 {
875         int result;
876         struct reports output_report = { 0 };
877         int bytes = 0;
878         hid_connected_device_info_t *info = NULL;
879         info = __find_hid_info_with_address(remote_addr);
880         if (info == NULL) {
881                 BT_ERR("Connection Information not found");
882                 return BLUETOOTH_ERROR_INVALID_PARAM;
883         }
884
885         BT_CHECK_PARAMETER(remote_addr, return);
886
887         switch (privilege_token_reply) {
888         case 0:
889                 result = _bt_check_privilege(BT_CHECK_PRIVILEGE, BT_HID_DEVICE_SEND_REPLY_TO_REPORT);
890
891                 if (result == BLUETOOTH_ERROR_NONE) {
892                         privilege_token_reply = 1; /* Have a permission */
893                 } else if (result == BLUETOOTH_ERROR_PERMISSION_DEINED) {
894                         BT_ERR("Don't have a privilege to use this API");
895                         privilege_token_reply = -1; /* Don't have a permission */
896                         return BLUETOOTH_ERROR_PERMISSION_DEINED;
897                 } else {
898                         /* Just break - It is not related with permission error */
899                 }
900                 break;
901         case 1:
902                 /* Already have a privilege */
903                 break;
904         case -1:
905                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
906         default:
907                 /* Invalid privilge token value */
908                 return BLUETOOTH_ERROR_INTERNAL;
909         }
910
911         BT_INFO("htype %d ptype %d", htype, ptype);
912         switch (htype) {
913         case HTYPE_TRANS_GET_REPORT: {
914                 switch (ptype) {
915                 case PTYPE_DATA_RTYPE_INPUT: {
916                         output_report.type = BT_HID_TRANS_DATA |
917                                         BT_HID_DATA_RTYPE_INPUT;
918                         memcpy(output_report.rep_data, data, data_len);
919                         bytes = write(info->intr_fd, &output_report,
920                                                 sizeof(output_report));
921                         BT_DBG("Bytes Written %d", bytes);
922                         break;
923                 }
924                 default:
925                         BT_INFO("Not Supported");
926                         break;
927         }
928         break;
929
930         case HTYPE_TRANS_GET_PROTOCOL: {
931                 BT_DBG("Replying to Get_PROTOCOL");
932                 output_report.type = BT_HID_TRANS_DATA | BT_HID_DATA_RTYPE_OUTPUT;
933                 output_report.rep_data[0] = data[0];
934                 bytes = write(info->intr_fd, &output_report, 2);
935                 BT_DBG("Bytes Written %d", bytes);
936                 break;
937         }
938
939         case HTYPE_TRANS_SET_PROTOCOL: {
940                 BT_DBG("Reply to Set_Protocol");
941                 output_report.type = BT_HID_TRANS_DATA | BT_HID_DATA_RTYPE_INPUT;
942                 memcpy(output_report.rep_data, data, data_len);
943                 bytes = write(info->ctrl_fd, &output_report,
944                                 sizeof(output_report));
945                 BT_DBG("Bytes Written %d", bytes);
946                 break;
947         }
948
949         case HTYPE_TRANS_HANDSHAKE: {
950                 BT_DBG("Replying Handshake");
951                 output_report.type = BT_HID_TRANS_HANDSHAKE | data[0];
952                 memset(output_report.rep_data, 0, sizeof(output_report.rep_data));
953                 bytes = write(info->intr_fd,  &output_report.type,
954                                 sizeof(output_report.type));
955                 BT_DBG("Bytes Written %d", bytes);
956                 break;
957         }
958         default:
959                 break;
960                 }
961         }
962         return bytes;
963 }