1 /******************************************************************************
2  *
3  *  Copyright 2001-2012 Broadcom Corporation
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at:
8  *
9  *  http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  ******************************************************************************/
18 
19 #define LOG_TAG "bt_bte"
20 
21 #include <base/logging.h>
22 #include <stdarg.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/time.h>
27 #include <time.h>
28 
29 #include "avrc_api.h"
30 #include "bt_common.h"
31 #include "bta_api.h"
32 #include "bte.h"
33 #include "btm_api.h"
34 #include "btu.h"
35 #include "l2c_api.h"
36 #include "main_int.h"
37 #include "osi/include/config.h"
38 #include "osi/include/log.h"
39 #include "port_api.h"
40 #include "sdp_api.h"
41 #include "stack_config.h"
42 
43 #include "avdt_api.h"
44 #include "a2dp_api.h"
45 #if (BNEP_INCLUDED == TRUE)
46 #include "bnep_api.h"
47 #endif
48 #if (PAN_INCLUDED == TRUE)
49 #include "pan_api.h"
50 #endif
51 #if (HID_HOST_INCLUDED == TRUE)
52 #include "hidh_api.h"
53 #endif
54 #if (HID_DEV_INCLUDED == TRUE)
55 #include "hidd_api.h"
56 #endif
57 
58 #include "smp_api.h"
59 
60 #ifndef DEFAULT_CONF_TRACE_LEVEL
61 #define DEFAULT_CONF_TRACE_LEVEL BT_TRACE_LEVEL_WARNING
62 #endif
63 
64 #ifndef BTE_LOG_BUF_SIZE
65 #define BTE_LOG_BUF_SIZE 256
66 #endif
67 
68 #define BTE_LOG_MAX_SIZE (BTE_LOG_BUF_SIZE - 12)
69 
70 #define MSG_BUFFER_OFFSET 0
71 
72 /* LayerIDs for BTA, currently everything maps onto appl_trace_level */
73 static const char* const bt_layer_tags[] = {
74     "bt_btif",
75     "bt_usb",
76     "bt_serial",
77     "bt_socket",
78     "bt_rs232",
79     "bt_lc",
80     "bt_lm",
81     "bt_hci",
82     "bt_l2cap",
83     "bt_rfcomm",
84     "bt_sdp",
85     "bt_tcs",
86     "bt_obex",
87     "bt_btm",
88     "bt_gap",
89     "UNUSED",
90     "UNUSED",
91     "bt_icp",
92     "bt_hsp2",
93     "bt_spp",
94     "bt_ctp",
95     "bt_bpp",
96     "bt_hcrp",
97     "bt_ftp",
98     "bt_opp",
99     "bt_btu",
100     "bt_gki_deprecated",
101     "bt_bnep",
102     "bt_pan",
103     "bt_hfp",
104     "bt_hid",
105     "bt_bip",
106     "bt_avp",
107     "bt_a2d",
108     "bt_sap",
109     "bt_amp",
110     "bt_mca_deprecated",
111     "bt_att",
112     "bt_smp",
113     "bt_nfc",
114     "bt_nci",
115     "bt_idep",
116     "bt_ndep",
117     "bt_llcp",
118     "bt_rw",
119     "bt_ce",
120     "bt_snep",
121     "bt_ndef",
122     "bt_nfa",
123 };
124 static uint8_t BTAPP_SetTraceLevel(uint8_t new_level);
125 static uint8_t BTIF_SetTraceLevel(uint8_t new_level);
126 static uint8_t BTU_SetTraceLevel(uint8_t new_level);
127 
128 /* make sure list is order by increasing layer id!!! */
129 static tBTTRC_FUNC_MAP bttrc_set_level_map[] = {
130     {BTTRC_ID_STK_BTU, BTTRC_ID_STK_HCI, BTU_SetTraceLevel, "TRC_HCI",
131      DEFAULT_CONF_TRACE_LEVEL},
132     {BTTRC_ID_STK_L2CAP, BTTRC_ID_STK_L2CAP, L2CA_SetTraceLevel, "TRC_L2CAP",
133      DEFAULT_CONF_TRACE_LEVEL},
134     {BTTRC_ID_STK_RFCOMM, BTTRC_ID_STK_RFCOMM_DATA, PORT_SetTraceLevel,
135      "TRC_RFCOMM", DEFAULT_CONF_TRACE_LEVEL},
136     {BTTRC_ID_STK_AVDT, BTTRC_ID_STK_AVDT, AVDT_SetTraceLevel, "TRC_AVDT",
137      DEFAULT_CONF_TRACE_LEVEL},
138     {BTTRC_ID_STK_AVRC, BTTRC_ID_STK_AVRC, AVRC_SetTraceLevel, "TRC_AVRC",
139      DEFAULT_CONF_TRACE_LEVEL},
140     {BTTRC_ID_STK_A2DP, BTTRC_ID_STK_A2DP, A2DP_SetTraceLevel, "TRC_A2D",
141      DEFAULT_CONF_TRACE_LEVEL},
142 #if (BNEP_INCLUDED == TRUE)
143     {BTTRC_ID_STK_BNEP, BTTRC_ID_STK_BNEP, BNEP_SetTraceLevel, "TRC_BNEP",
144      DEFAULT_CONF_TRACE_LEVEL},
145 #endif
146     {BTTRC_ID_STK_BTM_ACL, BTTRC_ID_STK_BTM_SEC, BTM_SetTraceLevel, "TRC_BTM",
147      DEFAULT_CONF_TRACE_LEVEL},
148 #if (HID_HOST_INCLUDED == TRUE)
149     {BTTRC_ID_STK_HID, BTTRC_ID_STK_HID, HID_HostSetTraceLevel, "TRC_HID_HOST",
150      DEFAULT_CONF_TRACE_LEVEL},
151 #endif
152 #if (PAN_INCLUDED == TRUE)
153     {BTTRC_ID_STK_PAN, BTTRC_ID_STK_PAN, PAN_SetTraceLevel, "TRC_PAN",
154      DEFAULT_CONF_TRACE_LEVEL},
155 #endif
156     {BTTRC_ID_STK_SDP, BTTRC_ID_STK_SDP, SDP_SetTraceLevel, "TRC_SDP",
157      DEFAULT_CONF_TRACE_LEVEL},
158     {BTTRC_ID_STK_SMP, BTTRC_ID_STK_SMP, SMP_SetTraceLevel, "TRC_SMP",
159      DEFAULT_CONF_TRACE_LEVEL},
160 #if (HID_DEV_INCLUDED == TRUE)
161     {BTTRC_ID_STK_HIDD, BTTRC_ID_STK_HIDD, HID_DevSetTraceLevel, "TRC_HID_DEV",
162      DEFAULT_CONF_TRACE_LEVEL},
163 #endif
164 
165     /* LayerIDs for BTA, currently everything maps onto appl_trace_level.
166      */
167     {BTTRC_ID_BTA_ACC, BTTRC_ID_BTAPP, BTAPP_SetTraceLevel, "TRC_BTAPP",
168      DEFAULT_CONF_TRACE_LEVEL},
169     {BTTRC_ID_BTA_ACC, BTTRC_ID_BTAPP, BTIF_SetTraceLevel, "TRC_BTIF",
170      DEFAULT_CONF_TRACE_LEVEL},
171 
172     {0, 0, NULL, NULL, DEFAULT_CONF_TRACE_LEVEL}};
173 
LogMsg(uint32_t trace_set_mask,const char * fmt_str,...)174 void LogMsg(uint32_t trace_set_mask, const char* fmt_str, ...) {
175   char buffer[BTE_LOG_BUF_SIZE];
176   int trace_layer = TRACE_GET_LAYER(trace_set_mask);
177   if (trace_layer >= TRACE_LAYER_MAX_NUM) trace_layer = 0;
178 
179   va_list ap;
180   va_start(ap, fmt_str);
181   vsnprintf(&buffer[MSG_BUFFER_OFFSET], BTE_LOG_MAX_SIZE, fmt_str, ap);
182   va_end(ap);
183 
184 #undef LOG_TAG
185 #define LOG_TAG bt_layer_tags[trace_layer]
186 
187   switch (TRACE_GET_TYPE(trace_set_mask)) {
188     case TRACE_TYPE_ERROR:
189       LOG_ERROR("%s", buffer);
190       break;
191     case TRACE_TYPE_WARNING:
192       LOG_WARN("%s", buffer);
193       break;
194     case TRACE_TYPE_API:
195     case TRACE_TYPE_EVENT:
196       LOG_INFO("%s", buffer);
197       break;
198     case TRACE_TYPE_DEBUG:
199       LOG_DEBUG("%s", buffer);
200       break;
201     default:
202       /* we should never get this */
203       LOG_ERROR("!BAD TRACE TYPE! %s", buffer);
204       CHECK(TRACE_GET_TYPE(trace_set_mask) == TRACE_TYPE_ERROR);
205       break;
206   }
207 #undef LOG_TAG
208 #define LOG_TAG "bt_bte"
209 }
210 
211 /* this function should go into BTAPP_DM for example */
BTAPP_SetTraceLevel(uint8_t new_level)212 static uint8_t BTAPP_SetTraceLevel(uint8_t new_level) {
213   if (new_level != 0xFF) appl_trace_level = new_level;
214 
215   return appl_trace_level;
216 }
217 
BTIF_SetTraceLevel(uint8_t new_level)218 static uint8_t BTIF_SetTraceLevel(uint8_t new_level) {
219   if (new_level != 0xFF) btif_trace_level = new_level;
220 
221   return btif_trace_level;
222 }
223 
BTU_SetTraceLevel(uint8_t new_level)224 static uint8_t BTU_SetTraceLevel(uint8_t new_level) {
225   if (new_level != 0xFF) btu_trace_level = new_level;
226 
227   return btu_trace_level;
228 }
229 
load_levels_from_config(const config_t * config)230 static void load_levels_from_config(const config_t* config) {
231   CHECK(config != NULL);
232 
233   for (tBTTRC_FUNC_MAP* functions = &bttrc_set_level_map[0];
234        functions->trc_name; ++functions) {
235     int value = config_get_int(*config, CONFIG_DEFAULT_SECTION,
236                                functions->trc_name, -1);
237     if (value != -1) functions->trace_level = value;
238     LOG_INFO("BTE_InitTraceLevels -- %s : Level %d", functions->trc_name,
239              functions->trace_level);
240     if (functions->p_f) functions->p_f(functions->trace_level);
241   }
242 }
243 
init(void)244 static future_t* init(void) {
245   const stack_config_t* stack_config = stack_config_get_interface();
246   if (!stack_config->get_trace_config_enabled()) {
247     LOG_INFO("using compile default trace settings");
248     return NULL;
249   }
250 
251   init_cpp_logging(stack_config->get_all());
252 
253   load_levels_from_config(stack_config->get_all());
254   return NULL;
255 }
256 
257 EXPORT_SYMBOL extern const module_t bte_logmsg_module = {
258     .name = BTE_LOGMSG_MODULE,
259     .init = init,
260     .start_up = NULL,
261     .shut_down = NULL,
262     .clean_up = NULL,
263     .dependencies = {STACK_CONFIG_MODULE, NULL}};
264