Reject new rfcomm connection when DPM disallow it
[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 #ifdef TIZEN_DPM_ENABLE
359         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
360                 char addr_str[20];
361
362                 BT_ERR("Not allow to use SPP profile");
363
364                 close(fd);
365                 _bt_convert_addr_type_to_string(addr_str, addr->addr);
366                 _bt_disconnect_profile(addr_str, info->uuid, NULL,NULL);
367
368                 return -1;
369         }
370 #endif
371
372         conn = g_new0(rfcomm_conn_t, 1);
373         conn->fd = fd;
374         memcpy(&conn->addr, addr, sizeof(bluetooth_device_address_t));
375         info->rfcomm_conns = g_slist_append(info->rfcomm_conns, conn);
376
377         data_io = g_io_channel_unix_new(conn->fd);
378
379         g_io_channel_set_encoding(data_io, NULL, NULL);
380         g_io_channel_set_flags(data_io, G_IO_FLAG_NONBLOCK, NULL);
381
382         conn->watch_id = g_io_add_watch(data_io,
383                            G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
384                            __data_received_cb, info);
385
386         g_io_channel_unref(data_io);
387
388         event_info = _bt_event_get_cb_data(BT_RFCOMM_SERVER_EVENT);
389         if (event_info)
390                 __connected_cb(info, conn, event_info);
391
392         return 0;
393 }
394
395 static rfcomm_info_t *__register_method()
396 {
397         gchar *path;
398         rfcomm_info_t *info;
399         int object_id;
400         int id;
401
402         id = __rfcomm_assign_id();
403         if (id < 0)
404                 return NULL;
405
406         path = g_strdup_printf("/org/socket/server/%d/%d", getpid(), id);
407
408         object_id = _bt_register_new_conn(path, new_server_connection);
409         if (object_id < 0) {
410                 __rfcomm_delete_id(id);
411                 return NULL;
412         }
413         info = g_new0(rfcomm_info_t, 1);
414         info->object_id = (guint)object_id;
415         info->path = path;
416         info->id = id;
417
418         rfcomm_nodes = g_slist_append(rfcomm_nodes, info);
419
420         return info;
421 }
422
423 static rfcomm_info_t *__register_method_2(const char *path, const char *bus_name)
424 {
425         rfcomm_info_t *info;
426         int object_id;
427
428         object_id = _bt_register_new_conn_ex(path, bus_name, new_server_connection);
429         if (object_id < 0)
430                 return NULL;
431
432         info = g_new0(rfcomm_info_t, 1);
433         info->object_id = (guint)object_id;
434         info->path = g_strdup(path);
435         info->id = -1;
436
437         rfcomm_nodes = g_slist_append(rfcomm_nodes, info);
438
439         return info;
440 }
441
442 void free_rfcomm_conn(rfcomm_conn_t *conn, rfcomm_info_t *info)
443 {
444         if (conn->disconnected == FALSE) {
445                 close(conn->fd);
446                 conn->disconnected = TRUE;
447         }
448         __rfcomm_server_disconnect_conn(conn, info);
449 }
450
451 void free_rfcomm_info(rfcomm_info_t *info)
452 {
453         BT_DBG("");
454
455         if (info->disconnect_idle_id > 0) {
456                 BT_INFO("Disconnect idle still not process remove source");
457                 g_source_remove(info->disconnect_idle_id);
458                 info->disconnect_idle_id = 0;
459         }
460
461         __rfcomm_delete_id(info->id);
462         _bt_unregister_gdbus(info->object_id);
463
464         g_slist_foreach(info->rfcomm_conns, (GFunc)free_rfcomm_conn, info);
465
466         g_free(info->path);
467         g_free(info->uuid);
468         g_free(info);
469 }
470
471 void _bt_rfcomm_server_free_all()
472 {
473         BT_DBG("Free all the servers");
474
475         g_slist_free_full(rfcomm_nodes, (GDestroyNotify)free_rfcomm_info);
476         rfcomm_nodes = NULL;
477 }
478 #endif
479
480 BT_EXPORT_API int bluetooth_rfcomm_create_socket(const char *uuid)
481 {
482 #ifdef RFCOMM_DIRECT
483         rfcomm_info_t *info;
484 #else
485         int result;
486         int socket_fd = -1;
487         char uuid_str[BLUETOOTH_UUID_STRING_MAX];
488 #endif
489
490         BT_CHECK_ENABLED(return);
491         BT_CHECK_PARAMETER(uuid, return);
492         BT_INFO("UUID Provided %s", uuid);
493
494         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET)
495                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
496                 BT_ERR("Don't have a privilege to use this API");
497                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
498         }
499
500 #ifdef TIZEN_DPM_ENABLE
501         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
502                 BT_ERR("Not allow to use SPP profile");
503                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
504         }
505 #endif
506
507 #ifdef RFCOMM_DIRECT
508         BT_INFO("<<<<<<<<< RFCOMM Create socket from app >>>>>>>>>");
509         info = __register_method();
510         if (info == NULL)
511                 return -1;
512
513         info->uuid = g_strdup(uuid);
514         info->disconnect_idle_id = 0;
515         return info->id;
516 #else
517
518         BT_INIT_PARAMS();
519         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
520
521         g_strlcpy(uuid_str, uuid, sizeof(uuid_str));
522         g_array_append_vals(in_param1, uuid_str, BLUETOOTH_UUID_STRING_MAX);
523
524         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET,
525                 in_param1, in_param2, in_param3, in_param4, &out_param);
526
527         BT_DBG("result: %x", result);
528
529         if (result == BLUETOOTH_ERROR_NONE)
530                 socket_fd = g_array_index(out_param, int, 0);
531         else
532                 BT_ERR("Fail to send request");
533
534         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
535
536         return socket_fd;
537 #endif
538 }
539
540 BT_EXPORT_API int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path)
541 {
542 #ifdef RFCOMM_DIRECT
543         rfcomm_info_t *info;
544
545         BT_CHECK_ENABLED(return);
546         BT_CHECK_PARAMETER(path, return);
547         BT_INFO("PATH Provided %s", path);
548
549         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_CREATE_SOCKET_EX)
550                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
551                 BT_ERR("Don't have a privilege to use this API");
552                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
553         }
554
555 #ifdef TIZEN_DPM_ENABLE
556         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
557                 BT_ERR("Not allow to use SPP profile");
558                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
559         }
560 #endif
561
562         BT_INFO("<<<<<<<<< RFCOMM Create socket from app >>>>>>>>>");
563         info = __register_method_2(path, bus_name);
564         if (info == NULL)
565                 return BLUETOOTH_ERROR_IN_PROGRESS;
566         info->uuid = g_strdup(uuid);
567         info->disconnect_idle_id = 0;
568
569         return BLUETOOTH_ERROR_NONE;
570 #else
571         return BLUETOOTH_ERROR_NOT_SUPPORT;
572 #endif
573 }
574
575
576 BT_EXPORT_API int bluetooth_rfcomm_remove_socket(int id)
577 {
578 #ifdef RFCOMM_DIRECT
579         rfcomm_info_t *info;
580 #else
581         int result;
582 #endif
583
584         BT_CHECK_ENABLED(return);
585
586         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET)
587                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
588                 BT_ERR("Don't have a privilege to use this API");
589                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
590         }
591
592         if (id < 0) {
593                 BT_ERR("Invalid ID");
594                 return BLUETOOTH_ERROR_INVALID_PARAM;
595         }
596
597 #ifdef RFCOMM_DIRECT
598         BT_INFO("RFCOMM Remove socket request from app, ID [%d]", id);
599
600         info = __find_rfcomm_info_with_id(id);
601         if (info == NULL)
602                 return BLUETOOTH_ERROR_INVALID_PARAM;
603
604         _bt_unregister_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid);
605         _bt_unregister_profile(info->path);
606
607         rfcomm_nodes = g_slist_remove(rfcomm_nodes, info);
608         free_rfcomm_info(info);
609
610         return BLUETOOTH_ERROR_NONE;
611 #else
612         BT_INIT_PARAMS();
613         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
614
615         g_array_append_vals(in_param1, &id, sizeof(int));
616
617         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET,
618                 in_param1, in_param2, in_param3, in_param4, &out_param);
619
620         BT_DBG("result: %x", result);
621
622         if (result == BLUETOOTH_ERROR_NONE)
623                 _bt_remove_server(id);
624
625         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
626
627         return result;
628 #endif
629 }
630
631 BT_EXPORT_API int bluetooth_rfcomm_remove_socket_ex(const char *uuid)
632 {
633 #ifdef RFCOMM_DIRECT
634         rfcomm_info_t *info;
635
636         BT_CHECK_ENABLED(return);
637
638         if (_bt_check_privilege(BT_BLUEZ_SERVICE, BT_RFCOMM_REMOVE_SOCKET)
639                 == BLUETOOTH_ERROR_PERMISSION_DEINED) {
640                 BT_ERR("Don't have a privilege to use this API");
641                 return BLUETOOTH_ERROR_PERMISSION_DEINED;
642         }
643
644         BT_INFO("RFCOMM Remove socket request from app, uuid=[%s]", uuid);
645
646         info = __find_rfcomm_info_with_uuid(uuid);
647         if (info == NULL)
648                 return BLUETOOTH_ERROR_INVALID_PARAM;
649
650         _bt_unregister_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid);
651         _bt_unregister_profile(info->path);
652
653         rfcomm_nodes = g_slist_remove(rfcomm_nodes, info);
654         free_rfcomm_info(info);
655
656         return BLUETOOTH_ERROR_NONE;
657 #else
658         return BLUETOOTH_ERROR_NOT_SUPPORT;
659 #endif
660 }
661
662 BT_EXPORT_API int bluetooth_rfcomm_server_disconnect(int socket_fd)
663 {
664 #ifdef RFCOMM_DIRECT
665         rfcomm_info_t *info;
666         rfcomm_conn_t *conn;
667
668         char address[20];
669
670         BT_INFO("### Disconnect RFCOMM server");
671         if (socket_fd < 0) {
672                 BT_ERR("Invalid FD");
673                 return BLUETOOTH_ERROR_INVALID_PARAM;
674         }
675
676         info = __find_rfcomm_info_with_fd(socket_fd);
677         if (info == NULL)
678                 return BLUETOOTH_ERROR_INVALID_PARAM;
679
680         conn = __find_rfcomm_conn_with_fd(info, socket_fd);
681         if (conn == NULL)
682                 return BLUETOOTH_ERROR_INVALID_PARAM;
683
684         if (conn->watch_id == 0 || conn->disconnected)
685                 return BLUETOOTH_ERROR_NOT_CONNECTED;
686
687         close(conn->fd);
688         conn->disconnected = TRUE;
689
690         _bt_convert_addr_type_to_string(address, conn->addr.addr);
691
692         BT_DBG("Address %s", address);
693         _bt_disconnect_profile(address, info->uuid, NULL, NULL);
694
695         if (info->disconnect_idle_id == 0)
696                 info->disconnect_idle_id = g_idle_add(
697                                 (GSourceFunc)__rfcomm_server_disconnect, info);
698         BT_DBG("-");
699
700         return BLUETOOTH_ERROR_NONE;
701 #else
702         int result;
703
704         BT_CHECK_ENABLED(return);
705
706         BT_INIT_PARAMS();
707         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
708
709         g_array_append_vals(in_param1, &socket_fd, sizeof(int));
710
711         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_SOCKET_DISCONNECT,
712                 in_param1, in_param2, in_param3, in_param4, &out_param);
713
714         BT_DBG("result: %x", result);
715
716         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
717
718         return result;
719 #endif
720 }
721
722 BT_EXPORT_API gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid)
723 {
724         int result;
725         gboolean available = TRUE;
726         char uuid_str[BLUETOOTH_UUID_STRING_MAX];
727
728         retv_if(uuid == NULL, FALSE);
729         retv_if(bluetooth_check_adapter() ==
730                                 BLUETOOTH_ADAPTER_DISABLED, FALSE);
731
732         BT_INIT_PARAMS();
733         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
734
735         g_strlcpy(uuid_str, uuid, sizeof(uuid_str));
736         g_array_append_vals(in_param1, uuid_str, BLUETOOTH_UUID_STRING_MAX);
737
738         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_IS_UUID_AVAILABLE,
739                 in_param1, in_param2, in_param3, in_param4, &out_param);
740
741         BT_DBG("result: %x", result);
742
743         if (result == BLUETOOTH_ERROR_NONE)
744                 available = g_array_index(out_param, gboolean, 0);
745
746         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
747
748         BT_DBG("available: %d", available);
749
750         return available;
751 }
752
753 BT_EXPORT_API int bluetooth_rfcomm_server_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected)
754 {
755         GSList *l;
756         GSList *ll;
757         rfcomm_info_t *info;
758         rfcomm_conn_t *conn;
759
760         BT_CHECK_PARAMETER(device_address, return);
761         BT_CHECK_PARAMETER(connected, return);
762
763         *connected = FALSE;
764
765         for (l = rfcomm_nodes; l; l = l->next) {
766                 info = l->data;
767
768                 if (info == NULL || info->rfcomm_conns == NULL)
769                         continue;
770
771                 for (ll = info->rfcomm_conns; ll; ll = ll->next) {
772                         conn = ll->data;
773
774                         if (memcmp(device_address, &conn->addr,
775                                         sizeof(bluetooth_device_address_t)))
776                                 continue;
777
778                         *connected = TRUE;
779                         return BLUETOOTH_ERROR_NONE;
780                 }
781         }
782
783         return BLUETOOTH_ERROR_NONE;
784 }
785
786 BT_EXPORT_API int bluetooth_rfcomm_listen_and_accept(int id, int max_pending_connection)
787 {
788 #ifdef RFCOMM_DIRECT
789         rfcomm_info_t *info;
790 #else
791         int result;
792         gboolean native_service = TRUE;
793 #endif
794
795         BT_CHECK_ENABLED(return);
796         if (id < 0) {
797                 BT_ERR("Invalid ID");
798                 return BLUETOOTH_ERROR_INVALID_PARAM;
799         }
800
801 #ifdef TIZEN_DPM_ENABLE
802         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
803                 BT_ERR("Not allow to use SPP profile");
804                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
805         }
806 #endif
807
808 #ifdef RFCOMM_DIRECT
809         BT_INFO("RFCOMM Listen & accept from app");
810
811         info = __find_rfcomm_info_with_id(id);
812         if (info == NULL)
813                 return BLUETOOTH_ERROR_INVALID_PARAM;
814
815         bt_register_profile_info_t profile_info;
816         int result;
817
818         profile_info.authentication = TRUE;
819         profile_info.authorization = TRUE;
820         profile_info.obj_path = info->path;
821         profile_info.role = NULL;
822         profile_info.service = info->uuid;
823         profile_info.uuid = info->uuid;
824
825         BT_INFO("uuid %s", profile_info.uuid);
826         result = _bt_register_profile(&profile_info, TRUE);
827
828         return result;
829 #else
830         BT_INIT_PARAMS();
831         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
832
833         g_array_append_vals(in_param1, &id, sizeof(int));
834         g_array_append_vals(in_param2, &max_pending_connection, sizeof(int));
835         g_array_append_vals(in_param3, &native_service, sizeof(gboolean));
836
837         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_LISTEN,
838                 in_param1, in_param2, in_param3, in_param4, &out_param);
839
840         BT_DBG("result: %x", result);
841
842         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
843
844         return result;
845 #endif
846 }
847
848 BT_EXPORT_API int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid,
849                                         int max_pending_connection,
850                                         const char *bus_name, const char *path)
851 {
852 #ifdef RFCOMM_DIRECT
853         rfcomm_info_t *info;
854
855         BT_CHECK_ENABLED(return);
856
857 #ifdef TIZEN_DPM_ENABLE
858         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
859                 BT_ERR("Not allow to use SPP profile");
860                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
861         }
862 #endif
863
864         BT_INFO("RFCOMM Listen & accept from app");
865
866         info = __find_rfcomm_info_with_uuid(uuid);
867         if (info == NULL)
868                 return BLUETOOTH_ERROR_INVALID_PARAM;
869
870         bt_register_profile_info_t profile_info;
871         int result;
872
873         profile_info.authentication = TRUE;
874         profile_info.authorization = TRUE;
875         profile_info.obj_path = info->path;
876         profile_info.role = NULL;
877         profile_info.service = info->uuid;
878         profile_info.uuid = info->uuid;
879
880         BT_INFO("uuid %s", profile_info.uuid);
881         result = _bt_register_profile_ex(&profile_info, TRUE, bus_name, path);
882
883         return result;
884 #else
885         return BLUETOOTH_ERROR_NOT_SUPPORT;
886 #endif
887 }
888
889 BT_EXPORT_API int bluetooth_rfcomm_listen(int id, int max_pending_connection)
890 {
891 #ifdef RFCOMM_DIRECT
892         rfcomm_info_t *info;
893 #else
894         int result;
895         gboolean native_service = FALSE;
896 #endif
897
898         BT_CHECK_ENABLED(return);
899         if (id < 0) {
900                 BT_ERR("Invalid ID");
901                 return BLUETOOTH_ERROR_INVALID_PARAM;
902         }
903
904 #ifdef TIZEN_DPM_ENABLE
905         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
906                 BT_ERR("Not allow to use SPP profile");
907                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
908         }
909 #endif
910
911 #ifdef RFCOMM_DIRECT
912         BT_INFO("RFCOMM Listen");
913
914         info = __find_rfcomm_info_with_id(id);
915         if (info == NULL)
916                 return BLUETOOTH_ERROR_INVALID_PARAM;
917
918         bt_register_profile_info_t profile_info;
919         int result;
920
921         profile_info.authentication = TRUE;
922         profile_info.authorization = TRUE;
923         profile_info.obj_path = info->path;
924         profile_info.role = NULL;
925         profile_info.service = info->uuid;
926         profile_info.uuid = info->uuid;
927         BT_INFO("UUID %s", info->uuid);
928         BT_INFO("PATH %s", info->path);
929         result = _bt_register_profile_platform(&profile_info, TRUE);
930         if (result != BLUETOOTH_ERROR_NONE)
931                 return result;
932
933         return _bt_register_osp_server_in_agent(BT_RFCOMM_SERVER, info->uuid,
934                                                 info->path, id);
935
936 #else
937         BT_INIT_PARAMS();
938         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
939
940         g_array_append_vals(in_param1, &id, sizeof(int));
941         g_array_append_vals(in_param2, &max_pending_connection, sizeof(int));
942         g_array_append_vals(in_param3, &native_service, sizeof(gboolean));
943
944         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_LISTEN,
945                 in_param1, in_param2, in_param3, in_param4, &out_param);
946
947         BT_DBG("result: %x", result);
948
949         if (result == BLUETOOTH_ERROR_NONE)
950                 _bt_add_server(id);
951
952         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
953
954         return result;
955 #endif
956 }
957
958 BT_EXPORT_API int bluetooth_rfcomm_accept_connection(int server_fd)
959 {
960         int result;
961
962         BT_CHECK_ENABLED(return);
963
964 #ifdef TIZEN_DPM_ENABLE
965         if (_bt_check_dpm(BT_DPM_SPP, NULL) == BT_DPM_RESTRICTED) {
966                 BT_ERR("Not allow to use SPP profile");
967                 return BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION;
968         }
969 #endif
970
971         if (server_fd < 0) {
972                 BT_ERR("Invalid FD");
973                 return BLUETOOTH_ERROR_INVALID_PARAM;
974         }
975
976         BT_INIT_PARAMS();
977         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
978
979         g_array_append_vals(in_param1, &server_fd, sizeof(int));
980
981         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_ACCEPT_CONNECTION,
982                 in_param1, in_param2, in_param3, in_param4, &out_param);
983
984         BT_DBG("result: %x", result);
985
986         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
987
988         return result;
989 }
990
991 BT_EXPORT_API int bluetooth_rfcomm_reject_connection(int server_fd)
992 {
993         int result;
994
995         BT_CHECK_ENABLED(return);
996
997         if (server_fd < 0) {
998                 BT_ERR("Invalid FD");
999                 return BLUETOOTH_ERROR_INVALID_PARAM;
1000         }
1001
1002         BT_INFO("+");
1003
1004         BT_INIT_PARAMS();
1005         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
1006
1007         g_array_append_vals(in_param1, &server_fd, sizeof(int));
1008
1009         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_RFCOMM_REJECT_CONNECTION,
1010                 in_param1, in_param2, in_param3, in_param4, &out_param);
1011
1012         BT_DBG("result: %x", result);
1013
1014         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
1015
1016         return result;
1017 }
1018