blob: 25f27ebedc15879db9e01d5bc8812340d3aa0846 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
3 * Copyright (C) 2009-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/************************************************************************************
20 *
21 * Filename: btif_pan.c
22 *
23 * Description: PAN Profile Bluetooth Interface
24 *
25 *
26 ***********************************************************************************/
27#include <hardware/bluetooth.h>
28#include <hardware/bt_pan.h>
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -070029#include <assert.h>
Ian Coolidgec7503db2015-01-24 02:01:26 -080030#include <string.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080031#include <signal.h>
32#include <ctype.h>
33#include <sys/select.h>
34#include <sys/poll.h>
35#include <sys/ioctl.h>
36#include <netinet/in.h>
37#include <netdb.h>
38#include <stdio.h>
39#include <errno.h>
40#include <fcntl.h>
41#include <sys/socket.h>
42#include <sys/wait.h>
43#include <net/if.h>
44#include <linux/sockios.h>
45#include <sys/prctl.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080046#include <linux/if_tun.h>
47#include <linux/if_ether.h>
48
Chris Mantonf8027002015-03-12 09:22:48 -070049#define LOG_TAG "bt_btif_pan"
The Android Open Source Project5738f832012-12-12 16:00:35 -080050#include "btif_common.h"
51#include "btif_util.h"
52#include "btm_api.h"
Sharvil Nanavati95b74f22015-03-12 15:55:21 -070053#include "btcore/include/bdaddr.h"
Chris Manton79ecab52014-10-31 14:54:51 -070054#include "device/include/controller.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080055
56#include "bta_api.h"
57#include "bta_pan_api.h"
58#include "btif_sock_thread.h"
59#include "btif_sock_util.h"
60#include "btif_pan_internal.h"
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -070061#include "gki.h"
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070062#include "osi/include/osi.h"
Sharvil Nanavati44802762014-12-23 23:08:58 -080063#include "osi/include/log.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080064
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -070065#define FORWARD_IGNORE 1
66#define FORWARD_SUCCESS 0
67#define FORWARD_FAILURE (-1)
68#define FORWARD_CONGEST (-2)
The Android Open Source Project5738f832012-12-12 16:00:35 -080069//#define PANU_DISABLED TRUE
70
71#if (PAN_NAP_DISABLED == TRUE) && (PANU_DISABLED == TRUE)
72#define BTPAN_LOCAL_ROLE BTPAN_ROLE_NONE
73#elif PAN_NAP_DISABLED == TRUE
74#define BTPAN_LOCAL_ROLE BTPAN_ROLE_PANU
75#elif PANU_DISABLED == TRUE
76#define BTPAN_LOCAL_ROLE BTPAN_ROLE_PANNAP
77#else
78#define BTPAN_LOCAL_ROLE (BTPAN_ROLE_PANU | BTPAN_ROLE_PANNAP)
79#endif
80
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -070081#define asrt(s) if(!(s)) BTIF_TRACE_ERROR("btif_pan: ## %s assert %s failed at line:%d ##",__FUNCTION__, #s, __LINE__)
The Android Open Source Project5738f832012-12-12 16:00:35 -080082
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -070083#define MIN(x, y) (((x) < (y)) ? (x) : (y))
84
The Android Open Source Project5738f832012-12-12 16:00:35 -080085btpan_cb_t btpan_cb;
86
The Android Open Source Project5738f832012-12-12 16:00:35 -080087static int jni_initialized, stack_initialized;
88static bt_status_t btpan_jni_init(const btpan_callbacks_t* callbacks);
89static void btpan_jni_cleanup();
90static bt_status_t btpan_connect(const bt_bdaddr_t *bd_addr, int local_role, int remote_role);
91static bt_status_t btpan_disconnect(const bt_bdaddr_t *bd_addr);
92static bt_status_t btpan_enable(int local_role);
93static int btpan_get_local_role(void);
94
95static void btpan_tap_fd_signaled(int fd, int type, int flags, uint32_t user_id);
96static void btpan_cleanup_conn(btpan_conn_t* conn);
97static void bta_pan_callback(tBTA_PAN_EVT event, tBTA_PAN *p_data);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -070098static void btu_exec_tap_fd_read(void *p_param);
99
The Android Open Source Project5738f832012-12-12 16:00:35 -0800100static btpan_interface_t pan_if = {
101 sizeof(pan_if),
102 btpan_jni_init,
103 btpan_enable,
104 btpan_get_local_role,
105 btpan_connect,
106 btpan_disconnect,
107 btpan_jni_cleanup
108};
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700109
The Android Open Source Project5738f832012-12-12 16:00:35 -0800110btpan_interface_t *btif_pan_get_interface()
111{
112 return &pan_if;
113}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700114
115/*******************************************************************************
116 **
117 ** Function btif_pan_init
118 **
119 ** Description initializes the pan interface
120 **
121 ** Returns bt_status_t
122 **
123 *******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -0800124void btif_pan_init()
125{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700126 BTIF_TRACE_DEBUG("jni_initialized = %d, btpan_cb.enabled:%d", jni_initialized, btpan_cb.enabled);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800127 stack_initialized = TRUE;
128 if (jni_initialized && !btpan_cb.enabled)
129 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700130 BTIF_TRACE_DEBUG("Enabling PAN....");
The Android Open Source Project5738f832012-12-12 16:00:35 -0800131 memset(&btpan_cb, 0, sizeof(btpan_cb));
132 btpan_cb.tap_fd = -1;
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700133 btpan_cb.flow = 1;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800134 int i;
135 for(i = 0; i < MAX_PAN_CONNS; i++)
136 btpan_cleanup_conn(&btpan_cb.conns[i]);
137 BTA_PanEnable(bta_pan_callback);
138 btpan_cb.enabled = 1;
139 btpan_enable(BTPAN_LOCAL_ROLE);
140 }
The Android Open Source Project5738f832012-12-12 16:00:35 -0800141}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700142
The Android Open Source Project5738f832012-12-12 16:00:35 -0800143static void pan_disable()
144{
145 if(btpan_cb.enabled)
146 {
147 btpan_cb.enabled = 0;
148 BTA_PanDisable();
149 if(btpan_cb.tap_fd != -1)
150 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800151 btpan_tap_close(btpan_cb.tap_fd);
152 btpan_cb.tap_fd = -1;
153 }
154 }
155}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700156
The Android Open Source Project5738f832012-12-12 16:00:35 -0800157void btif_pan_cleanup()
158{
159 if(stack_initialized)
160 {
161 //bt is shuting down, invalid all bta pan handles
162 int i;
163 for(i = 0; i < MAX_PAN_CONNS; i++)
164 btpan_cleanup_conn(&btpan_cb.conns[i]);
165 pan_disable();
The Android Open Source Project5738f832012-12-12 16:00:35 -0800166 }
167 stack_initialized = FALSE;
168}
169
170static btpan_callbacks_t callback;
171static bt_status_t btpan_jni_init(const btpan_callbacks_t* callbacks)
172{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700173 BTIF_TRACE_DEBUG("stack_initialized = %d, btpan_cb.enabled:%d", stack_initialized, btpan_cb.enabled);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800174 jni_initialized = TRUE;
175 if(stack_initialized && !btpan_cb.enabled)
176 btif_pan_init();
177 callback = *callbacks;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800178 return BT_STATUS_SUCCESS;
179}
180
181static void btpan_jni_cleanup()
182{
183 pan_disable();
184 jni_initialized = FALSE;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800185}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700186
The Android Open Source Project5738f832012-12-12 16:00:35 -0800187static inline int bta_role_to_btpan(int bta_pan_role)
188{
189 int btpan_role = 0;
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700190 BTIF_TRACE_DEBUG("bta_pan_role:0x%x", bta_pan_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800191 if(bta_pan_role & PAN_ROLE_NAP_SERVER)
192 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800193 btpan_role |= BTPAN_ROLE_PANNAP;
194 }
195 if(bta_pan_role & PAN_ROLE_CLIENT)
196 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800197 btpan_role |= BTPAN_ROLE_PANU;
198 }
199 return btpan_role;
200}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700201
The Android Open Source Project5738f832012-12-12 16:00:35 -0800202static inline int btpan_role_to_bta(int btpan_role)
203{
204 int bta_pan_role = PAN_ROLE_INACTIVE;
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700205 BTIF_TRACE_DEBUG("btpan_role:0x%x", btpan_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800206 if(btpan_role & BTPAN_ROLE_PANNAP)
207 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800208 bta_pan_role |= PAN_ROLE_NAP_SERVER;
209 }
210 if(btpan_role & BTPAN_ROLE_PANU)
211 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800212 bta_pan_role |= PAN_ROLE_CLIENT;
213 }
214 return bta_pan_role;
215}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700216
The Android Open Source Project5738f832012-12-12 16:00:35 -0800217static volatile int btpan_dev_local_role;
218static tBTA_PAN_ROLE_INFO bta_panu_info = {PANU_SERVICE_NAME, 0, PAN_SECURITY};
Nitin Shivpure36f43cc2013-08-29 21:28:59 +0530219static tBTA_PAN_ROLE_INFO bta_pan_nap_info = {PAN_NAP_SERVICE_NAME, 1, PAN_SECURITY};
The Android Open Source Project5738f832012-12-12 16:00:35 -0800220
221static bt_status_t btpan_enable(int local_role)
222{
223 int bta_pan_role;
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700224 BTIF_TRACE_DEBUG("local_role:%d", local_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800225 bta_pan_role = btpan_role_to_bta(local_role);
Mike J. Chen3576c562014-04-01 12:54:27 -0700226#if BTA_PAN_INCLUDED == TRUE
The Android Open Source Project5738f832012-12-12 16:00:35 -0800227 BTA_PanSetRole(bta_pan_role, &bta_panu_info, NULL, &bta_pan_nap_info);
228 btpan_dev_local_role = local_role;
229 return BT_STATUS_SUCCESS;
Mike J. Chen3576c562014-04-01 12:54:27 -0700230#else
231 return BT_STATUS_FAIL;
232#endif
The Android Open Source Project5738f832012-12-12 16:00:35 -0800233}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700234
The Android Open Source Project5738f832012-12-12 16:00:35 -0800235static int btpan_get_local_role()
236{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700237 BTIF_TRACE_DEBUG("btpan_dev_local_role:%d", btpan_dev_local_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800238 return btpan_dev_local_role;
239}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700240
The Android Open Source Project5738f832012-12-12 16:00:35 -0800241static bt_status_t btpan_connect(const bt_bdaddr_t *bd_addr, int local_role, int remote_role)
242{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700243 BTIF_TRACE_DEBUG("local_role:%d, remote_role:%d", local_role, remote_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800244 int bta_local_role = btpan_role_to_bta(local_role);
245 int bta_remote_role = btpan_role_to_bta(remote_role);
246 btpan_new_conn(-1, bd_addr->address, bta_local_role, bta_remote_role);
247 BTA_PanOpen((UINT8*)bd_addr->address, bta_local_role, bta_remote_role);
248 return BT_STATUS_SUCCESS;
249}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700250
The Android Open Source Project5738f832012-12-12 16:00:35 -0800251static void btif_in_pan_generic_evt(UINT16 event, char *p_param)
252{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700253 BTIF_TRACE_EVENT("%s: event=%d", __FUNCTION__, event);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800254 switch (event) {
255 case BTIF_PAN_CB_DISCONNECTING:
256 {
257 bt_bdaddr_t *bd_addr = (bt_bdaddr_t*)p_param;
258 btpan_conn_t* conn = btpan_find_conn_addr(bd_addr->address);
259 int btpan_conn_local_role;
260 int btpan_remote_role;
261 asrt(conn != NULL);
262 if (conn) {
263 btpan_conn_local_role = bta_role_to_btpan(conn->local_role);
264 btpan_remote_role = bta_role_to_btpan(conn->remote_role);
265 callback.connection_state_cb(BTPAN_STATE_DISCONNECTING, BT_STATUS_SUCCESS,
266 (const bt_bdaddr_t*)conn->peer, btpan_conn_local_role, btpan_remote_role);
267 }
268 } break;
269 default:
270 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700271 BTIF_TRACE_WARNING("%s : Unknown event 0x%x", __FUNCTION__, event);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800272 }
273 break;
274 }
275}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700276
The Android Open Source Project5738f832012-12-12 16:00:35 -0800277static bt_status_t btpan_disconnect(const bt_bdaddr_t *bd_addr)
278{
The Android Open Source Project5738f832012-12-12 16:00:35 -0800279 btpan_conn_t* conn = btpan_find_conn_addr(bd_addr->address);
280 if(conn && conn->handle >= 0)
281 {
282 BTA_PanClose(conn->handle);
283 /* Inform the application that the disconnect has been initiated successfully */
284 btif_transfer_context(btif_in_pan_generic_evt, BTIF_PAN_CB_DISCONNECTING,
285 (char *)bd_addr, sizeof(bt_bdaddr_t), NULL);
286 return BT_STATUS_SUCCESS;
287 }
288 return BT_STATUS_FAIL;
289}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700290
291static int pan_pth = -1;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800292void create_tap_read_thread(int tap_fd)
293{
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700294 if(pan_pth < 0)
295 pan_pth = btsock_thread_create(btpan_tap_fd_signaled, NULL);
296 if(pan_pth >= 0)
297 btsock_thread_add_fd(pan_pth, tap_fd, 0, SOCK_THREAD_FD_RD, 0);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800298}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700299
The Android Open Source Project5738f832012-12-12 16:00:35 -0800300void destroy_tap_read_thread(void)
301{
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700302 if(pan_pth >= 0)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800303 {
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700304 btsock_thread_exit(pan_pth);
305 pan_pth = -1;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800306 }
307}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700308
Zach Johnson39110ec2014-10-06 13:15:00 -0700309static int tap_if_up(const char *devname, const bt_bdaddr_t *addr)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800310{
311 struct ifreq ifr;
312 int sk, err;
313
314 sk = socket(AF_INET, SOCK_DGRAM, 0);
315
316 //set mac addr
317 memset(&ifr, 0, sizeof(ifr));
318 strncpy(ifr.ifr_name, devname, IFNAMSIZ - 1);
319 err = ioctl(sk, SIOCGIFHWADDR, &ifr);
320 if(err < 0)
321 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700322 BTIF_TRACE_ERROR("Could not get network hardware for interface:%s, errno:%s", devname, strerror(errno));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800323 close(sk);
324 return -1;
325 }
Zach Johnson39110ec2014-10-06 13:15:00 -0700326
The Android Open Source Project5738f832012-12-12 16:00:35 -0800327 strncpy(ifr.ifr_name, devname, IFNAMSIZ - 1);
Zach Johnson39110ec2014-10-06 13:15:00 -0700328 memcpy(ifr.ifr_hwaddr.sa_data, addr->address, 6);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800329
Loic Poulain01364c72014-04-08 08:46:01 +0200330 /* The IEEE has specified that the most significant bit of the most significant byte is used to
331 * determine a multicast address. If its a 1, that means multicast, 0 means unicast.
332 * Kernel returns an error if we try to set a multicast address for the tun-tap ethernet interface.
333 * Mask this bit to avoid any issue with auto generated address.
334 */
335 if (ifr.ifr_hwaddr.sa_data[0] & 0x01) {
Matthew Xieafa6e1a2014-06-28 11:35:29 -0700336 BTIF_TRACE_WARNING("Not a unicast MAC address, force multicast bit flipping");
Loic Poulain01364c72014-04-08 08:46:01 +0200337 ifr.ifr_hwaddr.sa_data[0] &= ~0x01;
338 }
339
The Android Open Source Project5738f832012-12-12 16:00:35 -0800340 err = ioctl(sk, SIOCSIFHWADDR, (caddr_t)&ifr);
341
342 if (err < 0) {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700343 BTIF_TRACE_ERROR("Could not set bt address for interface:%s, errno:%s", devname, strerror(errno));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800344 close(sk);
345 return -1;
346 }
347
348 //bring it up
349 memset(&ifr, 0, sizeof(ifr));
350 strncpy(ifr.ifr_name, devname, IF_NAMESIZE - 1);
351
352 ifr.ifr_flags |= IFF_UP;
353 ifr.ifr_flags |= IFF_MULTICAST;
354
355 err = ioctl(sk, SIOCSIFFLAGS, (caddr_t) &ifr);
356
357
358 if (err < 0) {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700359 BTIF_TRACE_ERROR("Could not bring up network interface:%s, errno:%d", devname, errno);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800360 close(sk);
361 return -1;
362 }
363 close(sk);
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700364 BTIF_TRACE_DEBUG("network interface: %s is up", devname);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800365 return 0;
366}
367
368static int tap_if_down(const char *devname)
369{
370 struct ifreq ifr;
Sharvil Nanavatif1c764f2015-02-23 17:31:48 -0800371 int sk;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800372
373 sk = socket(AF_INET, SOCK_DGRAM, 0);
374
375 memset(&ifr, 0, sizeof(ifr));
376 strncpy(ifr.ifr_name, devname, IF_NAMESIZE - 1);
377
378 ifr.ifr_flags &= ~IFF_UP;
379
Sharvil Nanavatif1c764f2015-02-23 17:31:48 -0800380 ioctl(sk, SIOCSIFFLAGS, (caddr_t) &ifr);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800381
382 close(sk);
383
384 return 0;
385}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700386
387void btpan_set_flow_control(BOOLEAN enable) {
388 if (btpan_cb.tap_fd == -1)
389 return;
390
391 btpan_cb.flow = enable;
392 if (enable) {
393 btsock_thread_add_fd(pan_pth, btpan_cb.tap_fd, 0, SOCK_THREAD_FD_RD, 0);
394 bta_dmexecutecallback(btu_exec_tap_fd_read, (void *)btpan_cb.tap_fd);
395 }
396}
397
The Android Open Source Project5738f832012-12-12 16:00:35 -0800398int btpan_tap_open()
399{
The Android Open Source Project5738f832012-12-12 16:00:35 -0800400 struct ifreq ifr;
401 int fd, err;
402 const char *clonedev = "/dev/tun";
403
404 /* open the clone device */
405
The Android Open Source Project5738f832012-12-12 16:00:35 -0800406 if( (fd = open(clonedev, O_RDWR)) < 0 ) {
407
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700408 BTIF_TRACE_DEBUG("could not open %s, err:%d", clonedev, errno);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800409 return fd;
410 }
411
412 memset(&ifr, 0, sizeof(ifr));
413 ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
414
415 strncpy(ifr.ifr_name, TAP_IF_NAME, IFNAMSIZ);
416
417 /* try to create the device */
Zach Johnson39110ec2014-10-06 13:15:00 -0700418 if( (err = ioctl(fd, TUNSETIFF, (void *) &ifr)) < 0 )
The Android Open Source Project5738f832012-12-12 16:00:35 -0800419 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700420 BTIF_TRACE_DEBUG("ioctl error:%d, errno:%s", err, strerror(errno));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800421 close(fd);
422 return err;
423 }
Zach Johnson39110ec2014-10-06 13:15:00 -0700424 if(tap_if_up(TAP_IF_NAME, controller_get_interface()->get_address()) == 0)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800425 {
Zhenye Zhu95ca3c42014-08-26 14:26:56 -0700426 int flags = fcntl(fd, F_GETFL, 0);
427 fcntl(fd, F_SETFL, flags | O_NONBLOCK);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800428 return fd;
429 }
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700430 BTIF_TRACE_ERROR("can not bring up tap interface:%s", TAP_IF_NAME);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800431 close(fd);
432 return -1;
433}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700434
The Android Open Source Project5738f832012-12-12 16:00:35 -0800435int btpan_tap_send(int tap_fd, const BD_ADDR src, const BD_ADDR dst, UINT16 proto, const char* buf,
436 UINT16 len, BOOLEAN ext, BOOLEAN forward)
437{
Mike J. Chen5cd8bff2014-01-31 18:16:59 -0800438 UNUSED(ext);
439 UNUSED(forward);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800440 if(tap_fd != -1)
441 {
442 tETH_HDR eth_hdr;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800443 memcpy(&eth_hdr.h_dest, dst, ETH_ADDR_LEN);
444 memcpy(&eth_hdr.h_src, src, ETH_ADDR_LEN);
445 eth_hdr.h_proto = htons(proto);
446 char packet[2000];
447 memcpy(packet, &eth_hdr, sizeof(tETH_HDR));
448 if(len > 2000)
449 {
Sharvil Nanavati44802762014-12-23 23:08:58 -0800450 LOG_ERROR("btpan_tap_send eth packet size:%d is exceeded limit!", len);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800451 return -1;
452 }
453 memcpy(packet + sizeof(tETH_HDR), buf, len);
454
455 /* Send data to network interface */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800456 int ret = write(tap_fd, packet, len + sizeof(tETH_HDR));
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700457 BTIF_TRACE_DEBUG("ret:%d", ret);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800458 return ret;
459 }
460 return -1;
461
462}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700463
The Android Open Source Project5738f832012-12-12 16:00:35 -0800464int btpan_tap_close(int fd)
465{
The Android Open Source Project5738f832012-12-12 16:00:35 -0800466 tap_if_down(TAP_IF_NAME);
467 close(fd);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700468 if(pan_pth >= 0)
469 btsock_thread_wakeup(pan_pth);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800470 return 0;
471}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700472
The Android Open Source Project5738f832012-12-12 16:00:35 -0800473btpan_conn_t * btpan_find_conn_handle(UINT16 handle)
474{
475 int i;
476 for(i = 0; i < MAX_PAN_CONNS; i++)
477 if(btpan_cb.conns[i].handle == handle)
478 return &btpan_cb.conns[i];
479 return NULL;
480}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700481
The Android Open Source Project5738f832012-12-12 16:00:35 -0800482btpan_conn_t* btpan_find_conn_addr(const BD_ADDR addr)
483{
484 int i;
485 for(i = 0; i < MAX_PAN_CONNS; i++)
486 if(memcmp(btpan_cb.conns[i].peer, addr, sizeof(BD_ADDR)) == 0)
487 return &btpan_cb.conns[i];
488 return NULL;
489}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700490
The Android Open Source Project5738f832012-12-12 16:00:35 -0800491static void btpan_cleanup_conn(btpan_conn_t* conn)
492{
493 if(conn)
494 {
495 conn->handle = -1;
496 conn->state = -1;
497 memset(&conn->peer, 0, sizeof(conn->peer));
498 memset(&conn->eth_addr, 0, sizeof(conn->eth_addr));
499 conn->local_role = conn->remote_role = 0;
500 }
501}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700502
The Android Open Source Project5738f832012-12-12 16:00:35 -0800503btpan_conn_t* btpan_new_conn(int handle, const BD_ADDR addr, int local_role, int remote_role )
504{
505 int i;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800506 for(i = 0; i < MAX_PAN_CONNS; i++)
507 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700508 BTIF_TRACE_DEBUG("conns[%d]:%d", i, btpan_cb.conns[i].handle);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800509 if(btpan_cb.conns[i].handle == -1)
510 {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700511 BTIF_TRACE_DEBUG("handle:%d, local_role:%d, remote_role:%d", handle, local_role, remote_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800512
513 btpan_cb.conns[i].handle = handle;
514 bdcpy(btpan_cb.conns[i].peer, addr);
515 btpan_cb.conns[i].local_role = local_role;
516 btpan_cb.conns[i].remote_role = remote_role;
517 return &btpan_cb.conns[i];
518 }
519 }
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700520 BTIF_TRACE_DEBUG("MAX_PAN_CONNS:%d exceeded, return NULL as failed", MAX_PAN_CONNS);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800521 return NULL;
522}
523
524void btpan_close_handle(btpan_conn_t *p)
525{
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700526 BTIF_TRACE_DEBUG("btpan_close_handle : close handle %d", p->handle);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800527 p->handle = -1;
528 p->local_role = -1;
529 p->remote_role = -1;
530 memset(&p->peer, 0, 6);
531}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700532
Sharvil Nanavatida271ee2014-05-30 21:04:03 -0700533static inline bool should_forward(tETH_HDR* hdr)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800534{
Sharvil Nanavatida271ee2014-05-30 21:04:03 -0700535 uint16_t proto = ntohs(hdr->h_proto);
536 if(proto == ETH_P_IP || proto == ETH_P_ARP || proto == ETH_P_IPV6)
537 return true;
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700538 BTIF_TRACE_DEBUG("unknown proto:%x", proto);
Sharvil Nanavatida271ee2014-05-30 21:04:03 -0700539 return false;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800540}
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700541
542static int forward_bnep(tETH_HDR* eth_hdr, BT_HDR *hdr) {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800543 int broadcast = eth_hdr->h_dest[0] & 1;
544 int i;
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700545
546 // Find the right connection to send this frame over.
547 for (i = 0; i < MAX_PAN_CONNS; i++) {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800548 UINT16 handle = btpan_cb.conns[i].handle;
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700549 if (handle != (UINT16)-1 &&
The Android Open Source Project5738f832012-12-12 16:00:35 -0800550 (broadcast || memcmp(btpan_cb.conns[i].eth_addr, eth_hdr->h_dest, sizeof(BD_ADDR)) == 0
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700551 || memcmp(btpan_cb.conns[i].peer, eth_hdr->h_dest, sizeof(BD_ADDR)) == 0)) {
552 int result = PAN_WriteBuf(handle, eth_hdr->h_dest, eth_hdr->h_src, ntohs(eth_hdr->h_proto), hdr, 0);
553 switch (result) {
554 case PAN_Q_SIZE_EXCEEDED:
555 return FORWARD_CONGEST;
556 case PAN_SUCCESS:
557 return FORWARD_SUCCESS;
558 default:
559 return FORWARD_FAILURE;
560 }
The Android Open Source Project5738f832012-12-12 16:00:35 -0800561 }
562 }
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700563 GKI_freebuf(hdr);
564 return FORWARD_IGNORE;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800565}
566
567static void bta_pan_callback_transfer(UINT16 event, char *p_param)
568{
569 tBTA_PAN *p_data = (tBTA_PAN *)p_param;
570 switch(event)
571 {
572 case BTA_PAN_ENABLE_EVT:
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700573 BTIF_TRACE_DEBUG("BTA_PAN_ENABLE_EVT");
The Android Open Source Project5738f832012-12-12 16:00:35 -0800574 break;
575 case BTA_PAN_SET_ROLE_EVT:
576 {
577 int btpan_role = bta_role_to_btpan(p_data->set_role.role);
578 bt_status_t status = p_data->set_role.status == BTA_PAN_SUCCESS ? BT_STATUS_SUCCESS : BT_STATUS_FAIL;
579 btpan_control_state_t state = btpan_role == 0 ? BTPAN_STATE_DISABLED : BTPAN_STATE_ENABLED;
580 callback.control_state_cb(state, btpan_role, status, TAP_IF_NAME);
581 break;
582 }
583 case BTA_PAN_OPENING_EVT:
584 {
585 btpan_conn_t* conn;
586 bdstr_t bds;
Sharvil Nanavati8a6a89f2014-08-20 09:39:25 -0700587 bdaddr_to_string((bt_bdaddr_t *)p_data->opening.bd_addr, bds, sizeof(bds));
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700588 BTIF_TRACE_DEBUG("BTA_PAN_OPENING_EVT handle %d, addr: %s", p_data->opening.handle, bds);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800589 conn = btpan_find_conn_addr(p_data->opening.bd_addr);
590
591 asrt(conn != NULL);
592 if (conn)
593 {
594 conn->handle = p_data->opening.handle;
595 int btpan_conn_local_role = bta_role_to_btpan(conn->local_role);
596 int btpan_remote_role = bta_role_to_btpan(conn->remote_role);
597 callback.connection_state_cb(BTPAN_STATE_CONNECTING, BT_STATUS_SUCCESS,
598 (const bt_bdaddr_t*)p_data->opening.bd_addr, btpan_conn_local_role, btpan_remote_role);
599 }
600 else
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700601 BTIF_TRACE_ERROR("connection not found");
The Android Open Source Project5738f832012-12-12 16:00:35 -0800602 break;
603 }
604 case BTA_PAN_OPEN_EVT:
605 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800606 btpan_connection_state_t state;
607 bt_status_t status;
Nitin Shivpuree85eb5a2013-10-03 19:06:12 +0530608 btpan_conn_t *conn = btpan_find_conn_handle(p_data->open.handle);
609
Sharvil Nanavati44802762014-12-23 23:08:58 -0800610 LOG_VERBOSE("%s pan connection open status: %d", __func__, p_data->open.status);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800611 if(p_data->open.status == BTA_PAN_SUCCESS)
612 {
613 state = BTPAN_STATE_CONNECTED;
614 status = BT_STATUS_SUCCESS;
615 }
616 else
617 {
618 state = BTPAN_STATE_DISCONNECTED;
619 status = BT_STATUS_FAIL;
Nitin Shivpuree85eb5a2013-10-03 19:06:12 +0530620 btpan_cleanup_conn(conn);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800621 }
The Android Open Source Project689d66b2012-12-12 17:18:15 -0800622 /* debug("BTA_PAN_OPEN_EVT handle:%d, conn:%p", p_data->open.handle, conn); */
623 /* debug("conn bta local_role:%d, bta remote role:%d", conn->local_role, conn->remote_role); */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800624 int btpan_conn_local_role = bta_role_to_btpan(p_data->open.local_role);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800625 int btpan_remote_role = bta_role_to_btpan(p_data->open.peer_role);
626 callback.connection_state_cb(state, status, (const bt_bdaddr_t*)p_data->open.bd_addr,
627 btpan_conn_local_role, btpan_remote_role);
628 break;
629 }
630 case BTA_PAN_CLOSE_EVT:
631 {
632 btpan_conn_t* conn = btpan_find_conn_handle(p_data->close.handle);
633
Sharvil Nanavati44802762014-12-23 23:08:58 -0800634 LOG_INFO("%s: event = BTA_PAN_CLOSE_EVT handle %d", __FUNCTION__, p_data->close.handle);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800635
636 if(conn && conn->handle >= 0)
637 {
The Android Open Source Project5738f832012-12-12 16:00:35 -0800638 int btpan_conn_local_role = bta_role_to_btpan(conn->local_role);
639 int btpan_remote_role = bta_role_to_btpan(conn->remote_role);
640 callback.connection_state_cb(BTPAN_STATE_DISCONNECTED, 0, (const bt_bdaddr_t*)conn->peer,
641 btpan_conn_local_role, btpan_remote_role);
642 btpan_cleanup_conn(conn);
643 }
644 else
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700645 BTIF_TRACE_ERROR("pan handle not found (%d)", p_data->close.handle);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800646 break;
647 }
648 default:
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700649 BTIF_TRACE_WARNING("Unknown pan event %d", event);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800650 break;
651 }
652}
653
654static void bta_pan_callback(tBTA_PAN_EVT event, tBTA_PAN *p_data)
655{
656 btif_transfer_context(bta_pan_callback_transfer, event, (char*)p_data, sizeof(tBTA_PAN), NULL);
657}
Mike J. Chen5cd8bff2014-01-31 18:16:59 -0800658
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700659#define IS_EXCEPTION(e) ((e) & (POLLHUP | POLLRDHUP | POLLERR | POLLNVAL))
660static void btu_exec_tap_fd_read(void *p_param) {
661 struct pollfd ufd;
662 int fd = (int)p_param;
663
664 if (fd == -1 || fd != btpan_cb.tap_fd)
665 return;
666
Zhenye Zhu95ca3c42014-08-26 14:26:56 -0700667 // Don't occupy BTU context too long, avoid GKI buffer overruns and
668 // give other profiles a chance to run by limiting the amount of memory
669 // PAN can use from the shared pool buffer.
670 for(int i = 0; i < PAN_POOL_MAX && btif_is_enabled() && btpan_cb.flow; i++) {
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700671 BT_HDR *buffer = (BT_HDR *)GKI_getpoolbuf(PAN_POOL_ID);
672 if (!buffer) {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700673 BTIF_TRACE_WARNING("%s unable to allocate buffer for packet.", __func__);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700674 break;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800675 }
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700676 buffer->offset = PAN_MINIMUM_OFFSET;
677 buffer->len = GKI_get_buf_size(buffer) - sizeof(BT_HDR) - buffer->offset;
678
679 UINT8 *packet = (UINT8 *)buffer + sizeof(BT_HDR) + buffer->offset;
680
681 // If we don't have an undelivered packet left over, pull one from the TAP driver.
682 // We save it in the congest_packet right away in case we can't deliver it in this
683 // attempt.
684 if (!btpan_cb.congest_packet_size) {
685 ssize_t ret = read(fd, btpan_cb.congest_packet, sizeof(btpan_cb.congest_packet));
686 switch (ret) {
687 case -1:
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700688 BTIF_TRACE_ERROR("%s unable to read from driver: %s", __func__, strerror(errno));
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700689 GKI_freebuf(buffer);
Zhenye Zhu285f7c62014-11-25 15:51:07 -0800690 //add fd back to monitor thread to try it again later
691 btsock_thread_add_fd(pan_pth, fd, 0, SOCK_THREAD_FD_RD, 0);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700692 return;
693 case 0:
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700694 BTIF_TRACE_WARNING("%s end of file reached.", __func__);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700695 GKI_freebuf(buffer);
Zhenye Zhu285f7c62014-11-25 15:51:07 -0800696 //add fd back to monitor thread to process the exception
697 btsock_thread_add_fd(pan_pth, fd, 0, SOCK_THREAD_FD_RD, 0);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700698 return;
699 default:
700 btpan_cb.congest_packet_size = ret;
701 break;
702 }
703 }
704
705 memcpy(packet, btpan_cb.congest_packet, MIN(btpan_cb.congest_packet_size, buffer->len));
706 buffer->len = MIN(btpan_cb.congest_packet_size, buffer->len);
707
708 if (buffer->len > sizeof(tETH_HDR) && should_forward((tETH_HDR *)packet)) {
709 // Extract the ethernet header from the buffer since the PAN_WriteBuf inside
710 // forward_bnep can't handle two pointers that point inside the same GKI buffer.
711 tETH_HDR hdr;
712 memcpy(&hdr, packet, sizeof(tETH_HDR));
713
714 // Skip the ethernet header.
715 buffer->len -= sizeof(tETH_HDR);
716 buffer->offset += sizeof(tETH_HDR);
717 if (forward_bnep(&hdr, buffer) != FORWARD_CONGEST)
718 btpan_cb.congest_packet_size = 0;
719 } else {
Sharvil Nanavatie8c3d752014-05-04 10:12:26 -0700720 BTIF_TRACE_WARNING("%s dropping packet of length %d", __func__, buffer->len);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700721 btpan_cb.congest_packet_size = 0;
722 GKI_freebuf(buffer);
723 }
724
725 // Bail out of the loop if reading from the TAP fd would block.
726 ufd.fd = fd;
727 ufd.events = POLLIN;
728 ufd.revents = 0;
Zhenye Zhu285f7c62014-11-25 15:51:07 -0800729 if(poll(&ufd, 1, 0) <= 0 || IS_EXCEPTION(ufd.revents))
730 break;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800731 }
Zhenye Zhu285f7c62014-11-25 15:51:07 -0800732 //add fd back to monitor thread
733 btsock_thread_add_fd(pan_pth, fd, 0, SOCK_THREAD_FD_RD, 0);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800734}
735
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700736static void btif_pan_close_all_conns() {
737 int i;
738 if (!stack_initialized)
739 return;
740
741 for (i = 0; i < MAX_PAN_CONNS; ++i)
742 if (btpan_cb.conns[i].handle != -1)
743 BTA_PanClose(btpan_cb.conns[i].handle);
744}
745
746static void btpan_tap_fd_signaled(int fd, int type, int flags, uint32_t user_id) {
Chris Manton8d546df2014-08-12 14:11:38 -0700747 assert(btpan_cb.tap_fd == INVALID_FD || btpan_cb.tap_fd == fd);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700748
Chris Manton8d546df2014-08-12 14:11:38 -0700749 if (btpan_cb.tap_fd != fd) {
750 BTIF_TRACE_WARNING("%s Signaled on mismatched fds exp:%d act:%d\n",
751 __func__, btpan_cb.tap_fd, fd);
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700752 return;
Chris Manton8d546df2014-08-12 14:11:38 -0700753 }
Sharvil Nanavati4186b0e2014-04-07 13:52:37 -0700754
755 if(flags & SOCK_THREAD_FD_EXCEPTION) {
756 btpan_cb.tap_fd = -1;
757 btpan_tap_close(fd);
758 btif_pan_close_all_conns();
759 } else if(flags & SOCK_THREAD_FD_RD)
760 bta_dmexecutecallback(btu_exec_tap_fd_read, (void *)fd);
761}