Fix the coding rule
[platform/core/connectivity/bluetooth-frwk.git] / bt-api / bt-rfcomm-server.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
18 #include <string.h>
19 #ifdef RFCOMM_DIRECT
20 #include <gio/gio.h>
21 #include <gio/gunixfdlist.h>
22 #include <sys/socket.h>
23 #endif
24
25 #include "bluetooth-api.h"
26 #include "bt-internal-types.h"
27
28 #include "bt-common.h"
29 #include "bt-request-sender.h"
30 #include "bt-event-handler.h"
31
32 #ifdef TIZEN_DPM_ENABLE
33 #include "bt-dpm.h"
34 #endif
35
36 #ifdef RFCOMM_DIRECT
37
38 static GSList *rfcomm_nodes;
39
40 typedef struct {
41         bluetooth_device_address_t addr;
42         int fd;
43         guint watch_id;
44         gboolean disconnected;
45 } rfcomm_conn_t;
46
47 typedef struct {
48         guint object_id;
49         gchar *path;
50         int id;
51         char *uuid;
52         GSList *rfcomm_conns;
53         guint disconnect_idle_id;
54 } rfcomm_info_t;
55
56 static rfcomm_info_t *__find_rfcomm_info_with_id(int id)
57 {
58         GSList *l;
59
60         for (l = rfcomm_nodes; l != NULL; l = l->next) {
61                 rfcomm_info_t *info = l->data;
62
63                 if (info->id == id)
64                         return info;
65         }
66
67         return NULL;
68 }
69
70 static rfcomm_info_t *__find_rfcomm_info_with_fd(int fd)
71 {
72         GSList *l;
73         GSList *ll;
74
75         for (l = rfcomm_nodes; l != NULL; l = l->next) {
76                 rfcomm_info_t *info = l->data;
77
78                 for (ll = info->rfcomm_conns; ll; ll = ll->next) {
79                         rfcomm_conn_t *conn = ll->data;
80
81                         if (conn && conn->fd == fd)
82                                 return info;
83                 }
84         }
85
86         return NULL;
87 }
88
89 static rfcomm_info_t *__find_rfcomm_info_with_path(const gchar *path)
90 {
91         GSList *l;
92
93         for (l = rfcomm_nodes; l != NULL; l = l->next) {
94                 rfcomm_info_t *info = l->data;
95
96                 if (g_strcmp0(info->path, path) == 0)
97                         return info;
98         }
99
100         return NULL;
101 }
102
103 static rfcomm_info_t *__find_rfcomm_info_with_uuid(const char *uuid)
104 {
105         GSList *l;
106
107         for (l = rfcomm_nodes; l != NULL; l = l->next) {
108                 rfcomm_info_t *info = l->data;
109
110                 if (g_strcmp0(info->uuid, uuid) == 0)
111                         return info;
112         }
113
114         return NULL;
115 }
116
117 static rfcomm_conn_t *__find_rfcomm_conn_with_fd(rfcomm_info_t *info,
118                                                       int fd)
119 {
120         GSList *l;
121         rfcomm_conn_t *conn;
122
123         for (l = info->rfcomm_conns; l; l = l->next) {
124                 conn = l->data;
125
126                 if (conn && conn->fd == fd)
127                         return conn;
128         }
129
130         return NULL;
131 }
132
133 static void __rfcomm_remove_conn(rfcomm_info_t *info, int fd)
134 {
135         rfcomm_conn_t *conn;
136
137         conn = __find_rfcomm_conn_with_fd(info, fd);
138         if (conn == NULL)
139                 return;
140
141         info->rfcomm_conns = g_slist_remove(info->rfcomm_conns, conn);
142
143         if (conn->watch_id > 0)
144                 g_source_remove(conn->watch_id);
145         g_free(conn);
146 }
147
148 gboolean _check_uuid_path(char *path, char *uuid)
149 {
150         rfcomm_info_t *info = NULL;
151         info = __find_rfcomm_info_with_path(path);
152         if (!info)
153                 return FALSE;
154
155         if (strcmp(info->uuid, uuid) == 0)
156                 return TRUE;
157
158         return FALSE;
159 }
160
161 static void __connected_cb(rfcomm_info_t *info, rfcomm_conn_t *conn,
162                            bt_event_info_t *event_info)
163 {
164         bluetooth_rfcomm_connection_t conn_info;
165
166         memset(&conn_info, 0x00, sizeof(bluetooth_rfcomm_connection_t));
167
168         conn_info.device_role = RFCOMM_ROLE_SERVER;
169         g_strlcpy(conn_info.uuid, info->uuid, BLUETOOTH_UUID_STRING_MAX);
170         conn_info.socket_fd = conn->fd;
171         conn_info.device_addr = conn->addr;
172         conn_info.server_id = info->id;
173
174         BT_INFO_C("### Connected [RFCOMM Server]");
175         _bt_common_event_cb(BLUETOOTH_EVENT_RFCOMM_CONNECTED,
176                         BLUETOOTH_ERROR_NONE, &conn_info,
177                         event_info->cb, event_info->user_data);
178 }
179
180 static void __rfcomm_server_disconnect_conn(rfcomm_conn_t *conn,
181                                             rfcomm_info_t *info)
182 {
183         bluetooth_rfcomm_disconnection_t disconn_info;
184         bt_event_info_t *event_info;
185
186         if (conn == NULL)
187                 return;
188
189         if (conn->disconnected == FALSE)
190                 return;
191
192         if (conn->watch_id > 0) {
193                 g_source_remove(conn->watch_id);
194                 conn->watch_id = 0;
195         }
196
197         event_info = _bt_event_get_cb_data(BT_RFCOMM_SERVER_EVENT);
198         if (event_info == NULL) {
199                 __rfcomm_remove_conn(info, conn->fd);
200                 return;
201         }
202
203         memset(&disconn_info, 0x00, sizeof(bluetooth_rfcomm_disconnection_t));
204         disconn_info.device_role = RFCOMM_ROLE_SERVER;
205         g_strlcpy(disconn_info.uuid, info->uuid, BLUETOOTH_UUID_STRING_MAX);
206         disconn_info.device_addr = conn->addr;
207
208         BT_DBG("Disconnected FD [%d]", conn->fd);
209         disconn_info.socket_fd = conn->fd;
210
211         _bt_common_event_cb(BLUETOOTH_EVENT_RFCOMM_DISCONNECTED,
212                         BLUETOOTH_ERROR_NONE, &disconn_info,
213                         event_info->cb, event_info->user_data);
214
215         __rfcomm_remove_conn(info, conn->fd);
216 }
217
218 static gboolean __rfcomm_server_disconnect(rfcomm_info_t *info)
219 {
220         BT_INFO_C("### Disconnected [RFCOMM Server]");
221
222         if (g_slist_find(rfcomm_nodes, info) == NULL) {
223                 BT_INFO("rfcomm resource is already freed");
224                 return FALSE;
225         }
226
227         info->disconnect_idle_id = 0;
228
229         g_slist_foreach(info->rfcomm_conns,
230                         (GFunc)__rfcomm_server_disconnect_conn, info);
231
232         BT_DBG("-");
233         return FALSE;
234 }
235
236 static gboolean __is_error_by_disconnect(GError *err)
237 {
238         return !g_strcmp0(err->message, "Connection reset by peer") ||
239                         !g_strcmp0(err->message, "Connection timed out") ||
240                         !g_strcmp0(err->message, "Software caused connection abort");
241 }
242
243 static gboolean __data_received_cb(GIOChannel *chan, GIOCondition cond,
244                                                                 gpointer data)
245 {
246         char *buffer = NULL;
247         gsize len = 0;
248         int result = BLUETOOTH_ERROR_NONE;
249         rfcomm_info_t *info = data;
250         rfcomm_conn_t *conn;
251         bt_event_info_t *event_info;
252         bluetooth_rfcomm_received_data_t data_r;
253         GIOStatus status = G_IO_STATUS_NORMAL;
254         GError *err = NULL;
255         int fd;
256
257         retv_if(info == NULL, FALSE);
258
259         fd = g_io_channel_unix_get_fd(chan);
260         if (cond & (G_IO_NVAL | G_IO_HUP | G_IO_ERR)) {
261                 BT_ERR_C("RFComm Server disconnected: %d", fd);
262
263                 if (info->disconnect_idle_id > 0) {
264                         BT_INFO("Disconnect idle still not process remove source");
265                         g_source_remove(info->disconnect_idle_id);
266                         info->disconnect_idle_id = 0;
267                 }
268
269                 conn = __find_rfcomm_conn_with_fd(info, fd);
270                 if (conn == NULL) {
271                         BT_ERR("No Connection info found with FD [%d]", fd);
272                         return FALSE;
273                 }
274
275                 if (conn->disconnected == FALSE) {
276                         close(conn->fd);
277                         conn->disconnected = TRUE;
278                 }
279                 __rfcomm_server_disconnect(info);
280                 return FALSE;
281         }
282
283         buffer = g_malloc0(BT_RFCOMM_BUFFER_LEN + 1);
284
285         status =  g_io_channel_read_chars(chan, buffer, BT_RFCOMM_BUFFER_LEN,
286                                                 &len, &err);
287         if (status != G_IO_STATUS_NORMAL) {
288                 BT_ERR("IO Channel read is failed with %d", status);
289
290                 g_free(buffer);
291                 if (!err)
292                         return TRUE;
293
294                 BT_ERR("IO Channel read error [%s]", err->message);
295                 if (status == G_IO_STATUS_ERROR &&
296                     __is_error_by_disconnect(err)) {
297                         BT_ERR("cond : %d", cond);
298                         g_error_free(err);
299
300                         if (info->disconnect_idle_id > 0) {
301                                 BT_INFO("Disconnect idle still not process remove source");
302                                 g_source_remove(info->disconnect_idle_id);
303                                 info->disconnect_idle_id = 0;
304                         }
305
306                         conn = __find_rfcomm_conn_with_fd(info, fd);
307                         if (conn == NULL) {
308                                 BT_ERR("No Connection info found with FD [%d]", fd);
309                                 return FALSE;
310                         }
311
312                         if (conn->disconnected == FALSE) {
313                                 close(conn->fd);
314                                 conn->disconnected = TRUE;
315                         }
316                         __rfcomm_server_disconnect(info);
317                         return FALSE;
318                 }
319                 g_error_free(err);
320                 return TRUE;
321         }
322
323         if (len == 0)
324                 BT_ERR("Length is zero");
325
326         event_info = _bt_event_get_cb_data(BT_RFCOMM_SERVER_EVENT);
327         if (event_info == NULL) {
328                 g_free(buffer);
329                 return TRUE;
330         }
331
332         data_r.socket_fd = fd;
333         data_r.buffer_size = len;
334         data_r.buffer = buffer;
335
336         _bt_common_event_cb(BLUETOOTH_EVENT_RFCOMM_DATA_RECEIVED,
337                         result, &data_r,
338                         event_info->cb, event_info->user_data);
339
340         g_free(buffer);
341
342         return TRUE;
343 }
344
345 int new_server_connection(const char *path, int fd, bluetooth_device_address_t *addr)
346 {
347         rfcomm_info_t *info;
348         rfcomm_conn_t *conn;
349         GIOChannel *data_io;
350         bt_event_info_t *event_info;
351
352         BT_DBG("%s %d", path, fd);
353
354         info = __find_rfcomm_info_with_path(path);
355         if (info == NULL)
356                 return -1;
357
358         conn = g_new0(rfcomm_conn_t, 1);
359         conn->fd = fd;
360         memcpy(&conn->addr, addr, sizeof(bluetooth_device_address_t));
361         info->rfcomm_conns = g_slist_append(info->rfcomm_conns, conn);
362
363         data_io = g_io_channel_unix_new(conn->fd);
364
365         g_io_channel_set_encoding(data_io, NULL, NULL);
366         g_io_channel_set_flags(data_io, G_IO_FLAG_NONBLOCK, NULL);
367
368         conn->watch_id = g_io_add_watch(data_io,
369                            G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
370                            __data_received_cb, info);
371
372         g_io_channel_unref(data_io);
373
374         event_info = _bt_event_get_cb_data(BT_RFCOMM_SERVER_EVENT);
375         if (event_info)
376                 __connected_cb(info, conn, event_info);
377
378         return 0;
379 }
380
381 static rfcomm_info_t *__register_method()
382 {
383         gchar *path;
384         rfcomm_info_t *info;
385         int object_id;
386         int id;
387
388         id = __rfcomm_assign_id();
389         if (id < 0)
390                 return NULL;
391
392         path = g_strdup_printf("/org/socket/server/%d/%d", getpid(), id);
393
394         object_id = _bt_register_new_conn(path, new_server_connection);
395         if (object_id < 0) {
396                 __rfcomm_delete_id(id);
397                 return NULL;
398         }
399         info = g_new0(rfcomm_info_t, 1);
400         info->object_id = (guint)object_id;
401         info->path = path;
402         info->id = id;
403
404         rfcomm_nodes = g_slist_append(rfcomm_nodes, info);
405
406         return info;
407 }
408
409 static rfcomm_info_t *__register_method_2(const char *path, const char *bus_name)
410 {
411         rfcomm_info_t *info;
412         int object_id;
413
414         object_id = _bt_register_new_conn_ex(path, bus_name, new_server_connection);
415         if (object_id < 0)
416                 return NULL;
417
418         info = g_new0(rfcomm_info_t, 1);
419         info->object_id = (guint)object_id;
420         info->path = g_strdup(path);
421         info->id = -1;
422
423         rfcomm_nodes = g_slist_append(rfcomm_nodes, info);
424
425         return info;
426 }
427
428 void free_rfcomm_conn(rfcomm_conn_t *conn, rfcomm_info_t *info)
429 {
430         if (conn->disconnected == FALSE) {
431                 close(conn->fd);
432                 conn->disconnected = TRUE;
433         }
434         __rfcomm_server_disconnect_conn(conn, info);
435 }
436
437 void free_rfcomm_info(rfcomm_info_t *info)
438 {
439         BT_DBG("");
440
441         if (info->disconnect_idle_id > 0) {
442                 BT_INFO("Disconnect idle still not process remove source");
443                 g_source_remove(info->disconnect_idle_id);
444                 info->disconnect_idle_id = 0;
445         }
446
447         __rfcomm_delete_id(info->id);
448         _bt_unregister_gdbus(info->object_id);
449
450         g_slist_foreach(info->rfcomm_conns, (GFunc)free_rfcomm_conn, info);
451
452         g_free(info->path);
453         g_free(info->uuid);
454         g_free(info);
455 }
456
457 void _bt_rfcomm_server_free_all()
458 {
459         BT_DBG("Free all the servers");
460
461         g_slist_free_full(rfcomm_nodes, (GDestroyNotify)free_rfcomm_info);
462         rfcomm_nodes = NULL;
463 }
464 #endif
465
466 BT_EXPORT_API int bluetooth_rfcomm_create_socket(const char *uuid)
467 {
468 #ifdef RFCOMM_DIRECT
469         rfcomm_info_t *info;
470 #else
471         int result;
472         int socket_fd = -1;
473         char uuid_str[BLUETOOTH_UUID_STRING_MAX];
474 #endif
475
476         BT_CHECK_ENABLED(return);
477         BT_CHECK_PARAMETER(uuid, return);
478         BT_INFO("UUID Provided %s", uuid);
479
480         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET)
481                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
482                 BT_ERR("Don't have a privilege to use this API");
483                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
484         }
485
486 #ifdef TIZEN_DPM_ENABLE
487         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
488                 BT_ERR("Not allow to use SPP profile");
489                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
490         }
491 #endif
492
493 #ifdef RFCOMM_DIRECT
494         BT_INFO("<<<<<<<<< RFCOMM Create socket from app >>>>>>>>>");
495         info = __register_method();
496         if (info == NULL)
497                 return -1;
498
499         info->uuid = g_strdup(uuid);
500         info->disconnect_idle_id = 0;
501         return info->id;
502 #else
503
504         BT_INIT_PARAMS();
505         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
506
507         g_strlcpy(uuid_str, uuid, sizeof(uuid_str));
508         g_array_append_vals(in_param1, uuid_str, BLUETOOTH_UUID_STRING_MAX);
509
510         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET,
511                 in_param1, in_param2, in_param3, in_param4, &out_param);
512
513         BT_DBG("result: %x", result);
514
515         if (result == BLUETOOTH_ERROR_NONE)
516                 socket_fd = g_array_index(out_param, int, 0);
517         else
518                 BT_ERR("Fail to send request");
519
520         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
521
522         return socket_fd;
523 #endif
524 }
525
526 BT_EXPORT_API int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path)
527 {
528 #ifdef RFCOMM_DIRECT
529         rfcomm_info_t *info;
530
531         BT_CHECK_ENABLED(return);
532         BT_CHECK_PARAMETER(path, return);
533         BT_INFO("PATH Provided %s", path);
534
535         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET_EX)
536                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
537                 BT_ERR("Don't have a privilege to use this API");
538                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
539         }
540
541 #ifdef TIZEN_DPM_ENABLE
542         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
543                 BT_ERR("Not allow to use SPP profile");
544                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
545         }
546 #endif
547
548         BT_INFO("<<<<<<<<< RFCOMM Create socket from app >>>>>>>>>");
549         info = __register_method_2(path, bus_name);
550         if (info == NULL)
551                 return BLUETOOTH_ERROR_IN_PROGRESS;
552         info->uuid = g_strdup(uuid);
553         info->disconnect_idle_id = 0;
554
555         return BLUETOOTH_ERROR_NONE;
556 #else
557         return BLUETOOTH_ERROR_NOT_SUPPORT;
558 #endif
559 }
560
561
562 BT_EXPORT_API int bluetooth_rfcomm_remove_socket(int id)
563 {
564 #ifdef RFCOMM_DIRECT
565         rfcomm_info_t *info;
566 #else
567         int result;
568 #endif
569
570         BT_CHECK_ENABLED(return);
571
572         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET)
573                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
574                 BT_ERR("Don't have a privilege to use this API");
575                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
576         }
577
578         if (id < 0) {
579                 BT_ERR("Invalid ID");
580                 return BLUETOOTH_ERROR_INVALID_PARAM;
581         }
582
583 #ifdef RFCOMM_DIRECT
584         BT_INFO("RFCOMM Remove socket request from app, ID [%d]", id);
585
586         info = __find_rfcomm_info_with_id(id);
587         if (info == NULL)
588                 return BLUETOOTH_ERROR_INVALID_PARAM;
589
590         _bt_unregister_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid);
591         _bt_unregister_profile(info->path);
592
593         rfcomm_nodes = g_slist_remove(rfcomm_nodes, info);
594         free_rfcomm_info(info);
595
596         return BLUETOOTH_ERROR_NONE;
597 #else
598         BT_INIT_PARAMS();
599         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
600
601         g_array_append_vals(in_param1, &id, sizeof(int));
602
603         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET,
604                 in_param1, in_param2, in_param3, in_param4, &out_param);
605
606         BT_DBG("result: %x", result);
607
608         if (result == BLUETOOTH_ERROR_NONE)
609                 _bt_remove_server(id);
610
611         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
612
613         return result;
614 #endif
615 }
616
617 BT_EXPORT_API int bluetooth_rfcomm_remove_socket_ex(const char *uuid)
618 {
619 #ifdef RFCOMM_DIRECT
620         rfcomm_info_t *info;
621
622         BT_CHECK_ENABLED(return);
623
624         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET)
625                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
626                 BT_ERR("Don't have a privilege to use this API");
627                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
628         }
629
630         BT_INFO("RFCOMM Remove socket request from app, uuid=[%s]", uuid);
631
632         info = __find_rfcomm_info_with_uuid(uuid);
633         if (info == NULL)
634                 return BLUETOOTH_ERROR_INVALID_PARAM;
635
636         _bt_unregister_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid);
637         _bt_unregister_profile(info->path);
638
639         rfcomm_nodes = g_slist_remove(rfcomm_nodes, info);
640         free_rfcomm_info(info);
641
642         return BLUETOOTH_ERROR_NONE;
643 #else
644         return BLUETOOTH_ERROR_NOT_SUPPORT;
645 #endif
646 }
647
648 BT_EXPORT_API int bluetooth_rfcomm_server_disconnect(int socket_fd)
649 {
650 #ifdef RFCOMM_DIRECT
651         rfcomm_info_t *info;
652         rfcomm_conn_t *conn;
653
654         char address[20];
655
656         BT_INFO("### Disconnect RFCOMM server");
657         if (socket_fd < 0) {
658                 BT_ERR("Invalid FD");
659                 return BLUETOOTH_ERROR_INVALID_PARAM;
660         }
661
662         info = __find_rfcomm_info_with_fd(socket_fd);
663         if (info == NULL)
664                 return BLUETOOTH_ERROR_INVALID_PARAM;
665
666         conn = __find_rfcomm_conn_with_fd(info, socket_fd);
667         if (conn == NULL)
668                 return BLUETOOTH_ERROR_INVALID_PARAM;
669
670         if (conn->watch_id == 0 || conn->disconnected)
671                 return BLUETOOTH_ERROR_NOT_CONNECTED;
672
673         close(conn->fd);
674         conn->disconnected = TRUE;
675
676         _bt_convert_addr_type_to_string(address, conn->addr.addr);
677
678         BT_DBG("Address %s", address);
679         _bt_disconnect_profile(address, info->uuid, NULL, NULL);
680
681         if (info->disconnect_idle_id == 0)
682                 info->disconnect_idle_id = g_idle_add(
683                                 (GSourceFunc)__rfcomm_server_disconnect, info);
684         BT_DBG("-");
685
686         return BLUETOOTH_ERROR_NONE;
687 #else
688         int result;
689
690         BT_CHECK_ENABLED(return);
691
692         BT_INIT_PARAMS();
693         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
694
695         g_array_append_vals(in_param1, &socket_fd, sizeof(int));
696
697         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_SOCKET_DISCONNECT,
698                 in_param1, in_param2, in_param3, in_param4, &out_param);
699
700         BT_DBG("result: %x", result);
701
702         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
703
704         return result;
705 #endif
706 }
707
708 BT_EXPORT_API gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid)
709 {
710         int result;
711         gboolean available = TRUE;
712         char uuid_str[BLUETOOTH_UUID_STRING_MAX];
713
714         retv_if(uuid == NULL, FALSE);
715         retv_if(bluetooth_check_adapter() ==
716                                 BLUETOOTH_ADAPTER_DISABLED, FALSE);
717
718         BT_INIT_PARAMS();
719         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
720
721         g_strlcpy(uuid_str, uuid, sizeof(uuid_str));
722         g_array_append_vals(in_param1, uuid_str, BLUETOOTH_UUID_STRING_MAX);
723
724         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_IS_UUID_AVAILABLE,
725                 in_param1, in_param2, in_param3, in_param4, &out_param);
726
727         BT_DBG("result: %x", result);
728
729         if (result == BLUETOOTH_ERROR_NONE)
730                 available = g_array_index(out_param, gboolean, 0);
731
732         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
733
734         BT_DBG("available: %d", available);
735
736         return available;
737 }
738
739 BT_EXPORT_API int bluetooth_rfcomm_server_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected)
740 {
741         GSList *l;
742         GSList *ll;
743         rfcomm_info_t *info;
744         rfcomm_conn_t *conn;
745
746         BT_CHECK_PARAMETER(device_address, return);
747         BT_CHECK_PARAMETER(connected, return);
748
749         *connected = FALSE;
750
751         for (l = rfcomm_nodes; l; l = l->next) {
752                 info = l->data;
753
754                 if (info == NULL || info->rfcomm_conns == NULL)
755                         continue;
756
757                 for (ll = info->rfcomm_conns; ll; ll = ll->next) {
758                         conn = ll->data;
759
760                         if (memcmp(device_address, &conn->addr,
761                                         sizeof(bluetooth_device_address_t)))
762                                 continue;
763
764                         *connected = TRUE;
765                         return BLUETOOTH_ERROR_NONE;
766                 }
767         }
768
769         return BLUETOOTH_ERROR_NONE;
770 }
771
772 BT_EXPORT_API int bluetooth_rfcomm_listen_and_accept(int id, int max_pending_connection)
773 {
774 #ifdef RFCOMM_DIRECT
775         rfcomm_info_t *info;
776 #else
777         int result;
778         gboolean native_service = TRUE;
779 #endif
780
781         BT_CHECK_ENABLED(return);
782         if (id < 0) {
783                 BT_ERR("Invalid ID");
784                 return BLUETOOTH_ERROR_INVALID_PARAM;
785         }
786
787 #ifdef TIZEN_DPM_ENABLE
788         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
789                 BT_ERR("Not allow to use SPP profile");
790                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
791         }
792 #endif
793
794 #ifdef RFCOMM_DIRECT
795         BT_INFO("RFCOMM Listen & accept from app");
796
797         info = __find_rfcomm_info_with_id(id);
798         if (info == NULL)
799                 return BLUETOOTH_ERROR_INVALID_PARAM;
800
801         bt_register_profile_info_t profile_info;
802         int result;
803
804         profile_info.authentication = TRUE;
805         profile_info.authorization = TRUE;
806         profile_info.obj_path = info->path;
807         profile_info.role = NULL;
808         profile_info.service = info->uuid;
809         profile_info.uuid = info->uuid;
810
811         BT_INFO("uuid %s", profile_info.uuid);
812         result = _bt_register_profile(&profile_info, TRUE);
813
814         return result;
815 #else
816         BT_INIT_PARAMS();
817         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
818
819         g_array_append_vals(in_param1, &id, sizeof(int));
820         g_array_append_vals(in_param2, &max_pending_connection, sizeof(int));
821         g_array_append_vals(in_param3, &native_service, sizeof(gboolean));
822
823         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_LISTEN,
824                 in_param1, in_param2, in_param3, in_param4, &out_param);
825
826         BT_DBG("result: %x", result);
827
828         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
829
830         return result;
831 #endif
832 }
833
834 BT_EXPORT_API int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid,
835                                         int max_pending_connection,
836                                         const char *bus_name, const char *path)
837 {
838 #ifdef RFCOMM_DIRECT
839         rfcomm_info_t *info;
840
841         BT_CHECK_ENABLED(return);
842
843 #ifdef TIZEN_DPM_ENABLE
844         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
845                 BT_ERR("Not allow to use SPP profile");
846                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
847         }
848 #endif
849
850         BT_INFO("RFCOMM Listen & accept from app");
851
852         info = __find_rfcomm_info_with_uuid(uuid);
853         if (info == NULL)
854                 return BLUETOOTH_ERROR_INVALID_PARAM;
855
856         bt_register_profile_info_t profile_info;
857         int result;
858
859         profile_info.authentication = TRUE;
860         profile_info.authorization = TRUE;
861         profile_info.obj_path = info->path;
862         profile_info.role = NULL;
863         profile_info.service = info->uuid;
864         profile_info.uuid = info->uuid;
865
866         BT_INFO("uuid %s", profile_info.uuid);
867         result = _bt_register_profile_ex(&profile_info, TRUE, bus_name, path);
868
869         return result;
870 #else
871         return BLUETOOTH_ERROR_NOT_SUPPORT;
872 #endif
873 }
874
875 BT_EXPORT_API int bluetooth_rfcomm_listen(int id, int max_pending_connection)
876 {
877 #ifdef RFCOMM_DIRECT
878         rfcomm_info_t *info;
879 #else
880         int result;
881         gboolean native_service = FALSE;
882 #endif
883
884         BT_CHECK_ENABLED(return);
885         if (id < 0) {
886                 BT_ERR("Invalid ID");
887                 return BLUETOOTH_ERROR_INVALID_PARAM;
888         }
889
890 #ifdef TIZEN_DPM_ENABLE
891         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
892                 BT_ERR("Not allow to use SPP profile");
893                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
894         }
895 #endif
896
897 #ifdef RFCOMM_DIRECT
898         BT_INFO("RFCOMM Listen");
899
900         info = __find_rfcomm_info_with_id(id);
901         if (info == NULL)
902                 return BLUETOOTH_ERROR_INVALID_PARAM;
903
904         bt_register_profile_info_t profile_info;
905         int result;
906
907         profile_info.authentication = TRUE;
908         profile_info.authorization = TRUE;
909         profile_info.obj_path = info->path;
910         profile_info.role = NULL;
911         profile_info.service = info->uuid;
912         profile_info.uuid = info->uuid;
913         BT_INFO("UUID %s", info->uuid);
914         BT_INFO("PATH %s", info->path);
915         result = _bt_register_profile_platform(&profile_info, TRUE);
916         if (result != BLUETOOTH_ERROR_NONE)
917                 return result;
918
919         return _bt_register_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid,
920                                                 info->path, id);
921
922 #else
923         BT_INIT_PARAMS();
924         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
925
926         g_array_append_vals(in_param1, &id, sizeof(int));
927         g_array_append_vals(in_param2, &max_pending_connection, sizeof(int));
928         g_array_append_vals(in_param3, &native_service, sizeof(gboolean));
929
930         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_LISTEN,
931                 in_param1, in_param2, in_param3, in_param4, &out_param);
932
933         BT_DBG("result: %x", result);
934
935         if (result == BLUETOOTH_ERROR_NONE)
936                 _bt_add_server(id);
937
938         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
939
940         return result;
941 #endif
942 }
943
944 BT_EXPORT_API int bluetooth_rfcomm_accept_connection(int server_fd)
945 {
946         int result;
947
948         BT_CHECK_ENABLED(return);
949
950 #ifdef TIZEN_DPM_ENABLE
951         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
952                 BT_ERR("Not allow to use SPP profile");
953                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
954         }
955 #endif
956
957         if (server_fd < 0) {
958                 BT_ERR("Invalid FD");
959                 return BLUETOOTH_ERROR_INVALID_PARAM;
960         }
961
962         BT_INIT_PARAMS();
963         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
964
965         g_array_append_vals(in_param1, &server_fd, sizeof(int));
966
967         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_ACCEPT_CONNECTION,
968                 in_param1, in_param2, in_param3, in_param4, &out_param);
969
970         BT_DBG("result: %x", result);
971
972         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
973
974         return result;
975 }
976
977 BT_EXPORT_API int bluetooth_rfcomm_reject_connection(int server_fd)
978 {
979         int result;
980
981         BT_CHECK_ENABLED(return);
982
983         if (server_fd < 0) {
984                 BT_ERR("Invalid FD");
985                 return BLUETOOTH_ERROR_INVALID_PARAM;
986         }
987
988         BT_INFO("+");
989
990         BT_INIT_PARAMS();
991         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
992
993         g_array_append_vals(in_param1, &server_fd, sizeof(int));
994
995         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_REJECT_CONNECTION,
996                 in_param1, in_param2, in_param3, in_param4, &out_param);
997
998         BT_DBG("result: %x", result);
999
1000         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
1001
1002         return result;
1003 }
1004