2002-03-09 05:12:35 +08:00
|
|
|
/*
|
2004-04-28 20:09:32 +08:00
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-2001 Qualcomm Incorporated
|
|
|
|
* Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
|
2008-02-02 11:37:05 +08:00
|
|
|
* Copyright (C) 2002-2008 Marcel Holtmann <marcel@holtmann.org>
|
2004-04-28 20:09:32 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2005-10-30 06:36:31 +08:00
|
|
|
* 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.
|
2004-04-28 20:09:32 +08:00
|
|
|
*
|
2005-10-30 06:36:31 +08:00
|
|
|
* 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.
|
2004-04-28 20:09:32 +08:00
|
|
|
*
|
2005-10-30 06:36:31 +08:00
|
|
|
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-04-28 20:09:32 +08:00
|
|
|
*
|
2002-03-09 05:12:35 +08:00
|
|
|
*/
|
|
|
|
|
2006-04-20 01:18:16 +08:00
|
|
|
#define HCID_DEFAULT_DISCOVERABLE_TIMEOUT 180 /* 3 minutes */
|
2006-04-20 00:39:48 +08:00
|
|
|
|
2007-04-10 22:06:44 +08:00
|
|
|
/* When all services should trust a remote device */
|
|
|
|
#define GLOBAL_TRUST "[all]"
|
|
|
|
|
2007-06-07 18:14:58 +08:00
|
|
|
/*
|
|
|
|
* Scanning modes, used by DEV_SET_MODE
|
|
|
|
* off: remote devices are not allowed to find or connect to this device
|
|
|
|
* connectable: remote devices are allowed to connect, but they are not
|
|
|
|
* allowed to find it.
|
|
|
|
* discoverable: remote devices are allowed to connect and find this device
|
|
|
|
* limited: limited discoverable - GIAC + IAC enabled and set limited
|
|
|
|
* bit on device class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MODE_OFF 0x00
|
|
|
|
#define MODE_CONNECTABLE 0x01
|
|
|
|
#define MODE_DISCOVERABLE 0x02
|
|
|
|
#define MODE_LIMITED 0x03
|
|
|
|
#define MODE_UNKNOWN 0xff
|
|
|
|
|
2002-03-09 05:12:35 +08:00
|
|
|
struct device_opts {
|
2005-05-01 02:24:13 +08:00
|
|
|
unsigned long flags;
|
2004-02-09 18:08:18 +08:00
|
|
|
char *name;
|
2002-03-09 05:12:35 +08:00
|
|
|
uint32_t class;
|
2005-05-01 02:24:13 +08:00
|
|
|
uint16_t voice;
|
2005-04-19 05:14:39 +08:00
|
|
|
uint8_t inqmode;
|
2005-05-06 21:51:17 +08:00
|
|
|
uint16_t pageto;
|
2002-03-09 05:12:35 +08:00
|
|
|
uint16_t pkt_type;
|
|
|
|
uint16_t link_mode;
|
|
|
|
uint16_t link_policy;
|
2007-01-23 16:51:34 +08:00
|
|
|
uint8_t scan;
|
2007-06-07 18:14:58 +08:00
|
|
|
uint8_t mode;
|
2007-04-26 02:59:55 +08:00
|
|
|
uint32_t discovto;
|
2004-02-09 18:08:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct device_opts default_device;
|
|
|
|
|
|
|
|
struct device_list {
|
|
|
|
char *ref; /* HCI device or Bluetooth address */
|
|
|
|
struct device_list *next;
|
|
|
|
struct device_opts opts;
|
|
|
|
};
|
2002-03-09 05:12:35 +08:00
|
|
|
|
|
|
|
struct hcid_opts {
|
2006-04-25 23:27:08 +08:00
|
|
|
char host_name[40];
|
2002-06-24 10:38:01 +08:00
|
|
|
int auto_init;
|
2006-11-15 02:22:37 +08:00
|
|
|
int offmode;
|
2008-08-06 04:18:20 +08:00
|
|
|
char deviceid[15];
|
2006-02-08 09:21:16 +08:00
|
|
|
|
2002-06-24 10:38:01 +08:00
|
|
|
int sock;
|
2002-03-09 05:12:35 +08:00
|
|
|
};
|
2006-04-19 05:01:11 +08:00
|
|
|
|
2008-08-27 00:59:06 +08:00
|
|
|
extern struct hcid_opts hcid;
|
2006-04-19 05:01:11 +08:00
|
|
|
|
|
|
|
void hci_req_queue_remove(int dev_id, bdaddr_t *dba);
|
|
|
|
|
2006-11-15 02:22:37 +08:00
|
|
|
#define HCID_OFFMODE_DEVDOWN 0
|
|
|
|
#define HCID_OFFMODE_NOSCAN 1
|
|
|
|
|
2007-06-07 18:14:58 +08:00
|
|
|
uint8_t get_startup_scan(int hdev);
|
2007-01-23 18:52:57 +08:00
|
|
|
uint8_t get_startup_mode(int hdev);
|
2006-04-20 00:39:48 +08:00
|
|
|
int get_discoverable_timeout(int dev_id);
|
|
|
|
|
2002-03-09 05:12:35 +08:00
|
|
|
void start_security_manager(int hdev);
|
|
|
|
void stop_security_manager(int hdev);
|
2004-02-18 02:04:03 +08:00
|
|
|
|
2006-02-24 10:04:08 +08:00
|
|
|
void set_pin_length(bdaddr_t *sba, int length);
|
|
|
|
|
2008-05-16 18:19:23 +08:00
|
|
|
gboolean plugin_init(GKeyFile *config);
|
2008-03-12 03:58:56 +08:00
|
|
|
void plugin_cleanup(void);
|
2008-08-28 04:13:41 +08:00
|
|
|
|
2008-03-13 03:21:33 +08:00
|
|
|
void __probe_servers(const char *adapter);
|
|
|
|
void __remove_servers(const char *adapter);
|