stack_manager.cc revision 6bd442f543972b072ef2cbbcf2f7c91202de1045
1/******************************************************************************
2 *
3 *  Copyright (C) 2014 Google, Inc.
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_stack_manager"
20
21#include "stack_manager.h"
22
23#include <hardware/bluetooth.h>
24
25#include "btcore/include/module.h"
26#include "btcore/include/osi_module.h"
27#include "btif_api.h"
28#include "btif_common.h"
29#include "device/include/controller.h"
30#include "osi/include/log.h"
31#include "osi/include/osi.h"
32#include "osi/include/semaphore.h"
33#include "osi/include/thread.h"
34
35// Temp includes
36#include "bt_utils.h"
37#include "btif_config.h"
38#include "btif_profile_queue.h"
39
40static thread_t* management_thread;
41
42// If initialized, any of the bluetooth API functions can be called.
43// (e.g. turning logging on and off, enabling/disabling the stack, etc)
44static bool stack_is_initialized;
45// If running, the stack is fully up and able to bluetooth.
46static bool stack_is_running;
47
48static void event_init_stack(void* context);
49static void event_start_up_stack(void* context);
50static void event_shut_down_stack(void* context);
51static void event_clean_up_stack(void* context);
52
53static void event_signal_stack_up(void* context);
54static void event_signal_stack_down(void* context);
55
56// Unvetted includes/imports, etc which should be removed or vetted in the
57// future
58static future_t* hack_future;
59void btif_thread_post(thread_fn func, void* context);
60// End unvetted section
61
62// Interface functions
63
64static void init_stack(void) {
65  // This is a synchronous process. Post it to the thread though, so
66  // state modification only happens there. Using the thread to perform
67  // all stack operations ensures that the operations are done serially
68  // and do not overlap.
69  semaphore_t* semaphore = semaphore_new(0);
70  thread_post(management_thread, event_init_stack, semaphore);
71  semaphore_wait(semaphore);
72  semaphore_free(semaphore);
73}
74
75static void start_up_stack_async(void) {
76  thread_post(management_thread, event_start_up_stack, NULL);
77}
78
79static void shut_down_stack_async(void) {
80  thread_post(management_thread, event_shut_down_stack, NULL);
81}
82
83static void clean_up_stack(void) {
84  // This is a synchronous process. Post it to the thread though, so
85  // state modification only happens there.
86  semaphore_t* semaphore = semaphore_new(0);
87  thread_post(management_thread, event_clean_up_stack, semaphore);
88  semaphore_wait(semaphore);
89  semaphore_free(semaphore);
90}
91
92static bool get_stack_is_running(void) { return stack_is_running; }
93
94// Internal functions
95
96// Synchronous function to initialize the stack
97static void event_init_stack(void* context) {
98  semaphore_t* semaphore = (semaphore_t*)context;
99
100  LOG_INFO(LOG_TAG, "%s is initializing the stack", __func__);
101
102  if (stack_is_initialized) {
103    LOG_INFO(LOG_TAG, "%s found the stack already in initialized state",
104             __func__);
105  } else {
106    module_management_start();
107
108    module_init(get_module(OSI_MODULE));
109    module_init(get_module(BT_UTILS_MODULE));
110    module_init(get_module(BTIF_CONFIG_MODULE));
111    btif_init_bluetooth();
112
113    // stack init is synchronous, so no waiting necessary here
114    stack_is_initialized = true;
115  }
116
117  LOG_INFO(LOG_TAG, "%s finished", __func__);
118
119  if (semaphore) semaphore_post(semaphore);
120}
121
122static void ensure_stack_is_initialized(void) {
123  if (!stack_is_initialized) {
124    LOG_WARN(LOG_TAG, "%s found the stack was uninitialized. Initializing now.",
125             __func__);
126    // No semaphore needed since we are calling it directly
127    event_init_stack(NULL);
128  }
129}
130
131// Synchronous function to start up the stack
132static void event_start_up_stack(UNUSED_ATTR void* context) {
133  if (stack_is_running) {
134    LOG_INFO(LOG_TAG, "%s stack already brought up", __func__);
135    return;
136  }
137
138  ensure_stack_is_initialized();
139
140  LOG_INFO(LOG_TAG, "%s is bringing up the stack", __func__);
141  future_t* local_hack_future = future_new();
142  hack_future = local_hack_future;
143
144  // Include this for now to put btif config into a shutdown-able state
145  module_start_up(get_module(BTIF_CONFIG_MODULE));
146  bte_main_enable();
147
148  if (future_await(local_hack_future) != FUTURE_SUCCESS) {
149    LOG_ERROR(LOG_TAG, "%s failed to start up the stack", __func__);
150    stack_is_running = true;  // So stack shutdown actually happens
151    event_shut_down_stack(NULL);
152    return;
153  }
154
155  stack_is_running = true;
156  LOG_INFO(LOG_TAG, "%s finished", __func__);
157  btif_thread_post(event_signal_stack_up, NULL);
158}
159
160// Synchronous function to shut down the stack
161static void event_shut_down_stack(UNUSED_ATTR void* context) {
162  if (!stack_is_running) {
163    LOG_INFO(LOG_TAG, "%s stack is already brought down", __func__);
164    return;
165  }
166
167  LOG_INFO(LOG_TAG, "%s is bringing down the stack", __func__);
168  future_t* local_hack_future = future_new();
169  hack_future = local_hack_future;
170  stack_is_running = false;
171
172  btif_disable_bluetooth();
173  module_shut_down(get_module(BTIF_CONFIG_MODULE));
174
175  future_await(local_hack_future);
176  module_shut_down(get_module(CONTROLLER_MODULE));  // Doesn't do any work, just
177                                                    // puts it in a restartable
178                                                    // state
179
180  LOG_INFO(LOG_TAG, "%s finished", __func__);
181  btif_thread_post(event_signal_stack_down, NULL);
182}
183
184static void ensure_stack_is_not_running(void) {
185  if (stack_is_running) {
186    LOG_WARN(LOG_TAG,
187             "%s found the stack was still running. Bringing it down now.",
188             __func__);
189    event_shut_down_stack(NULL);
190  }
191}
192
193// Synchronous function to clean up the stack
194static void event_clean_up_stack(void* context) {
195  future_t* local_hack_future;
196
197  if (!stack_is_initialized) {
198    LOG_INFO(LOG_TAG, "%s found the stack already in a clean state", __func__);
199    goto cleanup;
200  }
201
202  ensure_stack_is_not_running();
203
204  LOG_INFO(LOG_TAG, "%s is cleaning up the stack", __func__);
205  local_hack_future = future_new();
206  hack_future = local_hack_future;
207  stack_is_initialized = false;
208
209  btif_cleanup_bluetooth();
210  module_clean_up(get_module(BTIF_CONFIG_MODULE));
211  module_clean_up(get_module(BT_UTILS_MODULE));
212  module_clean_up(get_module(OSI_MODULE));
213  module_management_stop();
214  LOG_INFO(LOG_TAG, "%s finished", __func__);
215
216cleanup:;
217  semaphore_t* semaphore = (semaphore_t*)context;
218  if (semaphore) semaphore_post(semaphore);
219}
220
221static void event_signal_stack_up(UNUSED_ATTR void* context) {
222  // Notify BTIF connect queue that we've brought up the stack. It's
223  // now time to dispatch all the pending profile connect requests.
224  btif_queue_connect_next();
225  HAL_CBACK(bt_hal_cbacks, adapter_state_changed_cb, BT_STATE_ON);
226}
227
228static void event_signal_stack_down(UNUSED_ATTR void* context) {
229  HAL_CBACK(bt_hal_cbacks, adapter_state_changed_cb, BT_STATE_OFF);
230}
231
232static void ensure_manager_initialized(void) {
233  if (management_thread) return;
234
235  management_thread = thread_new("stack_manager");
236  if (!management_thread) {
237    LOG_ERROR(LOG_TAG, "%s unable to create stack management thread", __func__);
238    return;
239  }
240}
241
242static const stack_manager_t interface = {init_stack, start_up_stack_async,
243                                          shut_down_stack_async, clean_up_stack,
244
245                                          get_stack_is_running};
246
247const stack_manager_t* stack_manager_get_interface() {
248  ensure_manager_initialized();
249  return &interface;
250}
251
252future_t* stack_manager_get_hack_future() { return hack_future; }
253