Code optimize
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / include / bt-service-common.h
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
19 #ifndef _BT_SERVICE_COMMON_H_
20 #define _BT_SERVICE_COMMON_H_
21
22 #include <sys/types.h>
23 #include <dlog.h>
24 #include <glib.h>
25 #include <gio/gio.h>
26
27 #include "bluetooth-api.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 #undef LOG_TAG
34 #define LOG_TAG "BLUETOOTH_FRWK_SERVICE"
35
36 #ifdef FUNCTION_TRACE
37 #define FN_START BT_DBG("[ENTER FUNC]")
38 #define FN_END BT_DBG("[EXIT FUNC]")
39 #else
40 #define FN_START
41 #define FN_END
42 #endif
43
44 #define LOG_COLOR_RESET    "\033[0m"
45 #define LOG_COLOR_RED      "\033[31m"
46 #define LOG_COLOR_YELLOW   "\033[33m"
47 #define LOG_COLOR_GREEN         "\033[32m"
48 #define LOG_COLOR_BLUE          "\033[36m"
49 #define LOG_COLOR_PURPLE   "\033[35m"
50
51
52 #ifndef TIZEN_TV
53 #define BT_DBG(fmt, args...) \
54         SLOGD(fmt, ##args)
55 #define BT_INFO(fmt, args...) \
56         SLOGI(fmt, ##args)
57 #define BT_ERR(fmt, args...) \
58         SLOGE(fmt, ##args)
59 #else
60 #define BT_DBG(fmt, args...) \
61         LOGI(fmt, ##args)
62 #define BT_INFO(fmt, args...) \
63         LOGI(fmt, ##args)
64 #define BT_ERR(fmt, args...) \
65         LOGE(fmt, ##args)
66 #endif
67
68 #define BT_INFO_C(fmt, arg...) \
69         SLOGI_IF(TRUE,  LOG_COLOR_GREEN" "fmt" "LOG_COLOR_RESET, ##arg)
70 #define BT_ERR_C(fmt, arg...) \
71         SLOGI_IF(TRUE,  LOG_COLOR_RED" "fmt" "LOG_COLOR_RESET, ##arg)
72
73 #define DBG_SECURE(fmt, args...) SECURE_SLOGD(fmt, ##args)
74 #define INFO_SECURE(fmt, args...) SECURE_SLOGI(fmt, ##args)
75 #define ERR_SECURE(fmt, args...) SECURE_SLOGE(fmt, ##args)
76
77 #define ret_if(expr) \
78         do { \
79                 if (expr) { \
80                         BT_ERR("(%s) return", #expr); \
81                         return; \
82                 } \
83         } while (0)
84
85 #define retv_if(expr, val) \
86         do { \
87                 if (expr) { \
88                         BT_ERR("(%s) return", #expr); \
89                         return (val); \
90                 } \
91         } while (0)
92
93 #define BT_CHECK_PARAMETER(arg, func) \
94         do { \
95                 if (arg == NULL) { \
96                         BT_ERR("%s is NULL", #arg); \
97                         func BLUETOOTH_ERROR_INVALID_PARAM; \
98                 } \
99         } while (0)
100
101
102 #define BT_ADDRESS_LENGTH_MAX 6
103 #define BT_ADDRESS_STRING_SIZE 18
104 #define BT_RFCOMM_BUFFER_MAX 1024
105 #define BT_LOWER_ADDRESS_LENGTH 9
106
107 #define BT_AGENT_AUTO_PAIR_BLACKLIST_FILE (APP_SYSCONFDIR"/auto-pair-blacklist")
108 #define BT_AGENT_NEW_LINE "\r\n"
109
110 #define BT_MAX_DBUS_TIMEOUT 45000
111 #ifndef TIZEN_TV
112 #define BT_ENABLE_TIMEOUT 20000 /* 20 seconds */
113 #else
114 #define BT_ENABLE_TIMEOUT 5000 /* 5 seconds */
115 #endif
116 #define BT_DISCOVERY_FINISHED_DELAY 200
117
118 #define BT_SESSION_BUS_GET_TIMEOUT 200 /* 200 ms */
119
120 #define MANAGER_EVENT_MATCH_RULE \
121                         "type='signal'," \
122                         "interface='%s'," \
123                         "member='%s'"
124
125 #define EVENT_MATCH_RULE \
126                         "type='signal'," \
127                         "interface='%s',"
128
129 #define BT_TEMINATING_WAIT_TIME 200
130
131 #define BT_TIMEOUT_MESSAGE "Did not receive a reply. Possible causes include: " \
132                         "the remote application did not send a reply, " \
133                         "the message bus security policy blocked the reply, " \
134                         "the reply timeout expired, or the network connection " \
135                         "was broken."
136
137 #define BT_DBUS_TIMEOUT_MESSAGE "Timeout was reached"
138
139 #define BT_BLUEZ_NAME "org.bluez"
140
141 #define BT_BLUEZ_PATH "/org/bluez"
142 #define BT_BLUEZ_HCI_PATH "/org/bluez/hci0"
143 #define BT_AGENT_NAME "org.bluez.frwk_agent"
144 #define BT_AGENT_PATH "/org/bluez/agent/frwk_agent"
145 #define BT_DEVICE_AGENT_PATH "/org/tizen/device_agent"
146 #define BT_ADAPTER_AGENT_PATH "/org/tizen/adapter_agent"
147 #define BT_MANAGER_PATH "/"
148
149
150 #define BT_MANAGER_INTERFACE "org.freedesktop.DBus.ObjectManager"
151 #define BT_ADAPTER_INTERFACE "org.bluez.Adapter1"
152 #define BT_AGENT_INTERFACE "org.bluez.Agent1"
153 #define BT_AGENT_MANAGER_INTERFACE "org.bluez.AgentManager1"
154 #define BT_DEVICE_INTERFACE "org.bluez.Device1"
155 #define BT_NETWORK_SERVER_INTERFACE "org.bluez.NetworkServer1"
156 #define BT_MEDIA_INTERFACE "org.bluez.Media1"
157 #define BT_MEDIA_PLAYER_INTERFACE "org.mpris.MediaPlayer2.Player"
158 #define BT_MEDIATRANSPORT_INTERFACE "org.bluez.MediaTransport1"
159 #define BT_MEDIA_CONTROL_INTERFACE "org.bluez.MediaControl1"
160 #define BT_PLAYER_CONTROL_INTERFACE "org.bluez.MediaPlayer1"
161 #define BT_GATT_CHAR_INTERFACE "org.bluez.GattCharacteristic1"
162
163 #define BT_INPUT_INTERFACE "org.bluez.Input1"
164 #define BT_NETWORK_INTERFACE "org.bluez.Network"
165 #define BT_NETWORK_CLIENT_INTERFACE "org.bluez.Network1"
166 #define BT_SERIAL_INTERFACE "org.bluez.Serial"
167 #define BT_SERIAL_MANAGER_INTERFACE "org.bluez.SerialProxyManager"
168 #define BT_SERIAL_PROXY_INTERFACE "org.bluez.SerialProxy"
169 #define BT_SINK_INTERFACE "org.bluez.AudioSink"
170 #define BT_AUDIO_INTERFACE "org.bluez.Audio"
171 #define BT_HEADSET_INTERFACE "org.bluez.Headset"
172 #define BT_OOB_INTERFACE "org.bluez.OutOfBand"
173 #define BT_HANDSFREE_GATEWAY_INTERFACE "org.bluez.HandsfreeGateway"
174 #define BT_OBEXD_INTERFACE "org.openobex"
175 #define BT_OBEXD_MANAGER_INTERFACE "org.openobex.Manager"
176 #define BT_OBEXD_TRANSFER_INTERFACE "org.openobex.Transfer"
177 #define BT_A2DP_SOURCE_INTERFACE "org.bluez.AudioSource"
178 #define BT_PROXIMITY_MONITOR_INTERFACE "org.bluez.ProximityMonitor1"
179 #define BT_PROXIMITY_REPORTER_INTERFACE "org.bluez.ProximityReporter1"
180
181 #define BT_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
182
183 #define BT_OBEX_SERVICE_NAME "org.bluez.obex"
184 #define BT_OBEX_CLIENT_PATH "/org/bluez/obex"
185 #define BT_OBEX_CLIENT_INTERFACE "org.bluez.obex.Client1"
186
187
188
189 #define BT_OBEX_TRANSFER_INTERFACE "org.bluez.obex.Transfer1"
190 #define BT_OBEX_AGENT_INTERFACE "org.bluez.obex.Agent1"
191
192
193
194 #define BT_OBEXD_DBUS_NAME "org.bluez.obex"
195 #define BT_OBEX_OBJECT_PUSH_INTERFACE "org.bluez.obex.ObjectPush1"
196
197
198 #define BT_FREEDESKTOP_INTERFACE "org.freedesktop.DBus"
199 #define BT_FREEDESKTOP_PATH "/org/freedesktop/DBus"
200
201
202 #define BT_DUMP_SERVICE_NAME "org.tizen.system.dumpservice"
203 #define BT_DUMP_SERVICE_PATH "/Org/Tizen/System/DumpService"
204 #define BT_DUMP_SERVICE_INTERFACE BT_DUMP_SERVICE_NAME
205
206 #define BT_DUMP_SERVICE_SIGNAL "Dump"
207 #define BT_DUMP_SERVICE_START_SIGNAL "Start"
208 #define BT_DUMP_SERVICE_FINISH_SIGNAL "Finish"
209
210
211 #define BT_INTERFACES_ADDED "InterfacesAdded"
212 #define BT_INTERFACES_REMOVED "InterfacesRemoved"
213 #define BT_NAME_OWNER_CHANGED "NameOwnerChanged"
214 #define BT_PROPERTIES_CHANGED "PropertiesChanged"
215
216
217
218 #define BT_SESSION_BASEPATH_SERVER "/org/bluez/obex/server"
219 #define BT_SESSION_BASEPATH_CLIENT "/org/bluez/obex/client"
220
221 #define BT_SERVICE_ERR_MSG_NOT_SUPPORTED "Operation is not supported"
222
223 /* UUID */
224 #define GENERIC_AUDIO_UUID      "00001203-0000-1000-8000-00805f9b34fb"
225
226 #define AVRCP_TARGET_UUID       "0000110c-0000-1000-8000-00805f9b34fb"
227 #define AVRCP_REMOTE_UUID       "0000110e-0000-1000-8000-00805f9b34fb"
228 #define ADVANCED_AUDIO_UUID     "0000110d-0000-1000-8000-00805f9b34fb"
229 #define A2DP_SINK_UUID          "0000110b-0000-1000-8000-00805f9b34fb"
230 #define A2DP_SOURCE_UUID        "0000110a-0000-1000-8000-00805f9b34fb"
231
232 #define HFP_HS_UUID             "0000111e-0000-1000-8000-00805f9b34fb"
233 #define HFP_AG_UUID             "0000111f-0000-1000-8000-00805f9b34fb"
234
235 #define HSP_HS_UUID             "00001108-0000-1000-8000-00805f9b34fb"
236 #define HSP_AG_UUID             "00001112-0000-1000-8000-00805f9b34fb"
237
238 #define RFCOMM_UUID_STR                 "00000003-0000-1000-8000-00805f9b34fb"
239 #define HID_DEVICE_UUID                 "00001124-0000-1000-8000-00805f9b43bf"
240 #define HID_UUID                "00001124-0000-1000-8000-00805f9b34fb"
241 #define PANU_UUID                               "00001115-0000-1000-8000-00805f9b34fb"
242 #define NAP_UUID                                "00001116-0000-1000-8000-00805f9b34fb"
243 #define PNP_UUID                "00001200-0000-1000-8000-00805f9b34fb"
244 #define PBAP_UUID               "0000112f-0000-1000-8000-00805f9b34fb"
245
246 #define OBEX_OPP_UUID                   "00001105-0000-1000-8000-00805f9b34fb"
247 #define OBEX_PSE_UUID                   "0000112f-0000-1000-8000-00805f9b34fb"
248
249 #define GATT_UUID                               "00001801-0000-1000-8000-00805f9b34fb"
250
251 /* Privilege */
252 #define BT_PRIVILEGE_PUBLIC "http://tizen.org/privilege/bluetooth"
253 #define BT_PRIVILEGE_PLATFORM "http://tizen.org/privilege/bluetooth.admin"
254 #define MEDIASTORAGE_PRIVILEGE "http://tizen.org/privilege/mediastorage"
255
256 /* BD Address type */
257 #define BDADDR_BREDR           0x00
258 #define BDADDR_LE_PUBLIC       0x01
259 #define BDADDR_LE_RANDOM       0x02
260
261 /* Advertising report event types */
262 #define BT_LE_ADV_IND           0x00
263 #define BT_LE_ADV_DIRECT_IND    0x01
264 #define BT_LE_ADV_SCAN_IND              0x02
265 #define BT_LE_ADV_NONCONN_IND   0x03
266 #define BT_LE_ADV_SCAN_RSP              0x04
267
268 /* Profile states matched to btd_service_state_t of bluez service.h */
269 typedef enum {
270         BT_PROFILE_STATE_UNAVAILABLE,
271         BT_PROFILE_STATE_DISCONNECTED,
272         BT_PROFILE_STATE_CONNECTING,
273         BT_PROFILE_STATE_CONNECTED,
274         BT_PROFILE_STATE_DISCONNECTING,
275 } bt_profile_state_t;
276
277 typedef enum {
278         BT_ADV_IND_INFO = 0x00,
279         BT_SCAN_RSP_INFO = 0x01,
280 } bt_le_device_info_type_t;
281
282 typedef enum {
283         BT_PROFILE_CONN_RFCOMM = 0x01,
284         BT_PROFILE_CONN_A2DP = 0x02,
285         BT_PROFILE_CONN_HSP = 0x04,
286         BT_PROFILE_CONN_HID = 0x08,
287         BT_PROFILE_CONN_NAP = 0x10,
288         BT_PROFILE_CONN_HFG = 0x20,
289         BT_PROFILE_CONN_GATT = 0x40,
290         BT_PROGILE_CONN_NAP = 0x80,
291         BT_PROFILE_CONN_A2DP_SINK = 0x100,
292         BT_PROFILE_CONN_PBAP = 0x200,
293         BT_PROFILE_CONN_ALL = 0xffffffff,
294 } bt_profile_type_t;
295
296 typedef struct {
297         char *address;
298         int addr_type;
299         int rssi;
300         int adv_type;
301         bt_le_device_info_type_t dev_type;
302         int adv_data_len;
303         char *adv_data;
304 } bt_remote_le_dev_info_t;
305
306 typedef struct {
307         char *address;
308         int addr_type;
309         int rssi;
310         int adv_type;
311         int company_id;
312         int ibeacon_type;
313         int major_id;
314         int minor_id;
315         int measured_power;
316         char *uuid;
317 } bt_remote_ibeacon_dev_info_t;
318
319 typedef struct {
320         int rssi;
321         int class;
322         char *address;
323         char *name;
324         char **uuids;
325         unsigned int uuid_count;
326         gboolean paired;
327         bluetooth_connected_link_t connected;
328         gboolean trust;
329         gboolean is_alias_set;
330         char *manufacturer_data;
331         int manufacturer_data_len;
332         guchar addr_type;
333 #if 0 /* Should match with bt_dev_info_t in bluetooth-api.h */
334         bt_remote_le_dev_info_t le_dev_info;
335 #endif
336 } bt_remote_dev_info_t;
337
338 /* RFCOMM client /server will use this structure*/
339 typedef struct {
340         int fd;
341         GIOChannel *io_channel;
342         guint io_event;
343         char *dev_node;
344         char *address;
345         char *uuid;
346 } bt_rfcomm_info_t;
347
348 typedef struct {
349         int req_id;
350         char *address;
351 } bt_function_data_t;
352
353 GDBusConnection *_bt_gdbus_get_system_gconn(void);
354
355 GDBusConnection *_bt_gdbus_get_session_gconn(void);
356
357 void *_bt_get_net_conn(void);
358
359 GDBusProxy *_bt_get_manager_proxy(void);
360
361 GDBusProxy *_bt_get_adapter_proxy(void);
362
363 GDBusProxy *_bt_get_adapter_properties_proxy(void);
364
365 char *_bt_get_device_object_path(char *address);
366
367 char *_bt_get_profile_uuid128(bt_profile_type_t profile_type);
368
369 const char *_bt_convert_uuid_to_string(const char *uuid);
370
371 const char *_bt_convert_error_to_string(int error);
372
373 const char *_bt_convert_disc_reason_to_string(int reason);
374
375 const char *_bt_convert_profile_state_to_string(bt_profile_state_t state);
376
377 const char *_bt_convert_service_function_to_string(int function);
378
379 void _bt_logging_connection(gboolean connect, int addr_type);
380
381 char *_bt_get_adapter_path(void);
382
383 void _bt_deinit_proxys(void);
384
385 void _bt_convert_device_path_to_address(const char *device_path,
386                                                 char *device_address);
387
388 void _bt_convert_addr_string_to_type(unsigned char *addr,
389                                         const char *address);
390
391 void _bt_convert_addr_string_to_secure_string(char *addr,
392                                         const char *address);
393
394 void _bt_convert_addr_type_to_string(char *address,
395                                 unsigned char *addr);
396
397 void _bt_swap_byte_ordering(char *data, int data_len);
398
399 int _bt_byte_arr_cmp(const char *data1, const char *data2, int data_len);
400
401 int _bt_byte_arr_cmp_with_mask(const char *data1, const char *data2,
402                                 const char *mask, int data_len);
403
404 void _bt_print_device_address_t(const bluetooth_device_address_t *addr);
405
406 void _bt_divide_device_class(bluetooth_device_class_t *device_class,
407                                 unsigned int cod);
408
409 void _bt_free_device_info(bt_remote_dev_info_t *dev_info);
410
411 void _bt_free_le_device_info(bt_remote_le_dev_info_t *le_dev_info);
412
413 int _bt_copy_utf8_string(char *dest, const char *src, unsigned int length);
414
415 gboolean _bt_utf8_validate(char *name);
416
417 int _bt_register_osp_server_in_agent(int type, char *uuid, char *path, int fd);
418
419 int _bt_unregister_osp_server_in_agent(int type, char *uuid);
420
421 int _bt_set_socket_non_blocking(int socket_fd);
422
423 int _bt_set_non_blocking_tty(int sk);
424
425 void _bt_deinit_bluez_proxy(void);
426
427 int _bt_eventsystem_set_value(const char *event, const char *key, const char *value);
428
429 void __bt_get_auth_info(GVariant *reply,  char *auth_info);
430
431 int _bt_convert_gerror(GError *g_error);
432
433 #ifdef __cplusplus
434 }
435 #endif /* __cplusplus */
436 #endif /*_BT_COMMON_H_*/
437