summaryrefslogtreecommitdiff
path: root/bt.c
blob: b0642df980a99c6dca00e32b2e8ef2e338198880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 *  fmrxd - a daemon to enable and multiplex access to the N950/N9 radio tuner
 *  Copyright (C) 2011 Javier S. Pedro <maemo@javispedro.com>
 *
 *  Mostly based on ohm-plugins-misc from MeeGo Multimedia
 *  Copyright (C) 2010 Nokia Corporation
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.

 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.

 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <stdbool.h>
#include <errno.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <glib.h>

#include <bluetooth/bluetooth.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_lib.h>

#include "fmrxd.h"

static gboolean disable_bt_func(gpointer data)
{
	int dd;

	g_debug("Now disabling BT");

	dd = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI);
	if (dd == -1) {
		g_message("Failed to open HCI socket: %s", strerror(errno));
		return FALSE;
	}

	if (ioctl(dd, HCIDEVDOWN, BT_DEV_ID) < 0 && errno != EALREADY) {
		g_message("Failed to turn Bluetooth device off: %s", strerror(errno));
	}

	close(dd);

	return FALSE;
}

bool configure_bt_muxer(bool on)
{
	struct sockaddr_hci a;
	int dd;
	bool was_up;

	/* The magic numbers: */
	const short ocf = 0x00;
	const short ogf = 0x3f;
	char cmd[4] = { 0xf3, 0x88, 0x01, on ? 0x02 : 0x01 };

	/* Open HCI socket. */
	dd = socket(AF_BLUETOOTH, SOCK_RAW, BTPROTO_HCI);
	if (dd == -1) {
		g_warning("Failed to open HCI socket: %s", strerror(errno));
		return false;
	}

	/* Try to turn the specificied BT device on. */
	if (ioctl(dd, HCIDEVUP, BT_DEV_ID) < 0) {
		if (errno == EALREADY) {
			/* The BT device was found to be already on; no need to turn it off later. */
			was_up = true;
		} else {
			g_warning("Failed to turn Bluetooth device on: %s", strerror(errno));
			goto failed;
		}
	} else {
		/* Turned on succesfully. */
		g_debug("Turned on BT");
		was_up = false;
	}

	/* Bind HCI socket to this device. */
	memset(&a, 0, sizeof(a));
	a.hci_family = AF_BLUETOOTH;
	a.hci_dev = BT_DEV_ID;
	if (bind(dd, (struct sockaddr *) &a, sizeof(a)) < 0) {
		g_warning("Failed to bind HCI socket: %s", strerror(errno));
		goto failed;
	}

	/* Now send the magic command. */
	if (hci_send_cmd(dd, ogf, ocf, sizeof(cmd), cmd) < 0) {
		g_warning("Failed to send magic HCI command: %s", strerror(errno));
		goto failed;
	}

	g_debug("Muxer config changed to 0x%x", cmd[3]);

	close(dd);

	if (!was_up) {
		/* Try to shut down bluetooth if we enabled it. */
		/* Give ample time for everything to be setup though. */
		g_timeout_add_seconds(1, disable_bt_func, NULL);
	}

	return true;

failed:
	close(dd);
	return false;
}