2007-05-15 22:15:52 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
2009-01-02 02:33:20 +08:00
|
|
|
* Copyright (C) 2004-2009 Marcel Holtmann <marcel@holtmann.org>
|
2007-05-15 22:15:52 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2007-09-26 21:58:19 +08:00
|
|
|
#include <errno.h>
|
2007-08-15 21:16:41 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <termios.h>
|
2007-05-18 20:20:15 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
2007-05-19 00:00:34 +08:00
|
|
|
#include <sys/param.h>
|
2007-05-18 20:20:15 +08:00
|
|
|
|
|
|
|
#include <bluetooth/bluetooth.h>
|
2007-08-15 21:16:41 +08:00
|
|
|
#include <bluetooth/sdp.h>
|
|
|
|
#include <bluetooth/sdp_lib.h>
|
2007-05-18 20:20:15 +08:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "logging.h"
|
|
|
|
#include "textfile.h"
|
|
|
|
|
2007-05-15 22:15:52 +08:00
|
|
|
#include "storage.h"
|
2007-05-18 20:20:15 +08:00
|
|
|
|
2007-05-19 04:39:10 +08:00
|
|
|
int port_delete(bdaddr_t *src, bdaddr_t *dst, int16_t id)
|
2007-05-19 03:19:49 +08:00
|
|
|
{
|
|
|
|
char filename[PATH_MAX + 1];
|
|
|
|
char src_addr[18], dst_addr[18];
|
|
|
|
char key[32];
|
|
|
|
|
|
|
|
ba2str(src, src_addr);
|
|
|
|
ba2str(dst, dst_addr);
|
|
|
|
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, src_addr, "serial");
|
2007-05-19 04:39:10 +08:00
|
|
|
snprintf(key, sizeof(key), "%s#%hd", dst_addr, id);
|
2007-05-19 03:19:49 +08:00
|
|
|
|
|
|
|
return textfile_del(filename, key);
|
|
|
|
}
|
|
|
|
|
2007-05-19 04:39:10 +08:00
|
|
|
int port_store(bdaddr_t *src, bdaddr_t *dst, int16_t id,
|
2007-05-18 20:20:15 +08:00
|
|
|
uint8_t ch, const char *svcname)
|
|
|
|
{
|
|
|
|
char filename[PATH_MAX + 1];
|
|
|
|
char src_addr[18], dst_addr[18];
|
|
|
|
char key[32];
|
|
|
|
char *value;
|
|
|
|
int size, err;
|
|
|
|
|
|
|
|
if (!svcname)
|
|
|
|
svcname = "Bluetooth RFCOMM port";
|
|
|
|
|
|
|
|
ba2str(src, src_addr);
|
|
|
|
ba2str(dst, dst_addr);
|
|
|
|
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, src_addr, "serial");
|
|
|
|
create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
|
|
|
|
|
2007-09-25 07:43:32 +08:00
|
|
|
size = strlen(svcname) + 5;
|
2007-05-18 20:20:15 +08:00
|
|
|
value = g_malloc0(size);
|
|
|
|
|
2007-05-19 04:39:10 +08:00
|
|
|
snprintf(key, 32, "%s#%hd", dst_addr, id);
|
2007-05-18 20:20:15 +08:00
|
|
|
snprintf(value, size, "%d:%s", ch, svcname);
|
|
|
|
|
|
|
|
err = textfile_put(filename, key, value);
|
|
|
|
g_free(value);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2007-08-15 21:16:41 +08:00
|
|
|
|
2007-08-16 21:15:46 +08:00
|
|
|
int proxy_delete(bdaddr_t *src, const char *tty)
|
|
|
|
{
|
|
|
|
char filename[PATH_MAX + 1], src_addr[18];
|
|
|
|
|
|
|
|
ba2str(src, src_addr);
|
|
|
|
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, src_addr, "proxy");
|
|
|
|
|
|
|
|
return textfile_del(filename, tty);
|
|
|
|
}
|
|
|
|
|
2007-08-15 21:16:41 +08:00
|
|
|
int proxy_store(bdaddr_t *src, const char *uuid, const char *tty,
|
|
|
|
const char *name, uint8_t ch, int opts, struct termios *ti)
|
|
|
|
{
|
|
|
|
char filename[PATH_MAX + 1], key[32], src_addr[18], *value;
|
2009-01-30 00:58:28 +08:00
|
|
|
unsigned int i;
|
|
|
|
int pos, size, err;
|
2007-08-15 21:16:41 +08:00
|
|
|
uint8_t *pti;
|
|
|
|
|
|
|
|
ba2str(src, src_addr);
|
|
|
|
|
|
|
|
create_name(filename, PATH_MAX, STORAGEDIR, src_addr, "proxy");
|
|
|
|
create_file(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
name = "Port Proxy Entity";
|
|
|
|
|
|
|
|
size = MAX_LEN_UUID_STR + 16 + strlen(name) + sizeof(struct termios) * 2;
|
|
|
|
value = g_malloc0(size);
|
|
|
|
|
|
|
|
snprintf(key, 32, "%s", tty);
|
|
|
|
|
|
|
|
/* tty uuid 00 0x0000 name:termios */
|
2007-08-16 04:23:01 +08:00
|
|
|
pos = snprintf(value, size, "%s %d 0x%04X %s:", uuid, ch, opts, name);
|
2007-08-15 21:16:41 +08:00
|
|
|
|
2007-08-22 23:01:52 +08:00
|
|
|
if (!ti)
|
|
|
|
goto done;
|
|
|
|
|
2007-08-15 21:16:41 +08:00
|
|
|
for (i = 0, pti = (uint8_t *) ti; i < sizeof(struct termios); i++, pti++)
|
|
|
|
sprintf(value + pos + (i * 2), "%2.2X", *pti);
|
|
|
|
|
2007-08-22 23:01:52 +08:00
|
|
|
done:
|
2007-08-15 21:16:41 +08:00
|
|
|
err = textfile_put(filename, key, value);
|
|
|
|
g_free(value);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2007-09-26 21:58:19 +08:00
|
|
|
|