summaryrefslogtreecommitdiffstats
path: root/serial
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2007-08-15 13:16:41 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2007-08-15 13:16:41 +0000
commitb8769c4814ad301b9ee409847b9df12085e69f59 (patch)
tree156ca6e4f180e8ecfca38f90cb561541f3c3613e /serial
parent47c2c74c8a11fcb3d53e4e124c317d243b5a12c0 (diff)
serial: initial proxy storage implementation
Diffstat (limited to 'serial')
-rw-r--r--serial/manager.c50
-rw-r--r--serial/storage.c36
-rw-r--r--serial/storage.h2
3 files changed, 74 insertions, 14 deletions
diff --git a/serial/manager.c b/serial/manager.c
index 19df7379..8703606a 100644
--- a/serial/manager.c
+++ b/serial/manager.c
@@ -33,6 +33,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <termios.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/ioctl.h>
@@ -105,13 +106,15 @@ static struct {
struct proxy {
bdaddr_t src;
bdaddr_t dst;
- uuid_t uuid;
- char *tty;
- uint8_t channel;
- uint32_t record_id;
- guint listen_watch;
- guint rfcomm_watch;
- guint tty_watch;
+ uuid_t uuid; /* UUID 128 */
+ char *tty; /* TTY name */
+ struct termios sys_ti; /* Default TTY setting */
+ struct termios proxy_ti; /* Proxy TTY settings */
+ uint8_t channel; /* RFCOMM channel */
+ uint32_t record_id; /* Service record id */
+ guint listen_watch; /* Server listen watch */
+ guint rfcomm_watch; /* RFCOMM connection watch */
+ guint tty_watch; /* Openned TTY watch */
};
static DBusConnection *connection = NULL;
@@ -1349,15 +1352,17 @@ static void proxy_handler_unregister(DBusConnection *conn, void *data)
proxy_free(prx);
}
-static int proxy_register(DBusConnection *conn,
- const char *path, uuid_t *uuid, const char *tty)
+static int proxy_register(DBusConnection *conn, bdaddr_t *src, const char *path,
+ uuid_t *uuid, const char *tty, struct termios *ti)
{
struct proxy *prx;
prx = g_new0(struct proxy, 1);
prx->tty = g_strdup(tty);
memcpy(&prx->uuid, uuid, sizeof(uuid_t));
- bacpy(&prx->src, BDADDR_ANY);
+ bacpy(&prx->src, src);
+ memcpy(&prx->sys_ti, ti, sizeof(*ti));
+ memcpy(&prx->proxy_ti, ti, sizeof(*ti));
if (!dbus_connection_create_object_path(conn, path, prx,
proxy_handler_unregister)) {
@@ -1417,12 +1422,14 @@ static DBusHandlerResult create_proxy(DBusConnection *conn,
{
char path[MAX_PATH_LENGTH];
const char *uuidstr, *tty, *ppath = path;
+ struct termios ti;
DBusMessage *reply;
GSList *l;
DBusError derr;
struct stat st;
+ bdaddr_t src;
uuid_t uuid;
- int pos = 0;
+ int sk, dev_id, pos = 0;
dbus_error_init(&derr);
if (!dbus_message_get_args(msg, &derr,
@@ -1441,6 +1448,14 @@ static DBusHandlerResult create_proxy(DBusConnection *conn,
if (!pos || stat(tty, &st) < 0)
return err_invalid_args(conn, msg, "Invalid TTY");
+ /* Get the current setting to restore later */
+ sk = open(tty, O_RDWR | O_NOCTTY);
+ if (sk < 0)
+ return err_invalid_args(conn, msg, "Can't open TTY");
+
+ tcgetattr(sk, &ti);
+ close(sk);
+
snprintf(path, MAX_PATH_LENGTH - 1,
"/org/bluez/serial/proxy%s", tty + pos);
@@ -1448,18 +1463,25 @@ static DBusHandlerResult create_proxy(DBusConnection *conn,
if (l)
return err_already_exists(conn, msg, "Proxy already exists");
+ dev_id = hci_get_route(NULL);
+ if ((dev_id < 0) || (hci_devba(dev_id, &src) < 0)) {
+ error("Adapter not available");
+ return err_failed(conn, msg, "Adapter not available");
+ }
+
reply = dbus_message_new_method_return(msg);
if (!reply)
return DBUS_HANDLER_RESULT_NEED_MEMORY;
- if (proxy_register(conn, path, &uuid, tty) < 0) {
+ if (proxy_register(conn, &src, path, &uuid, tty, &ti) < 0) {
dbus_message_unref(reply);
return err_failed(conn, msg, "Create object path failed");
}
- /* FIXME: persistent storage */
proxies_paths = g_slist_append(proxies_paths, g_strdup(path));
+ proxy_store(&src, uuidstr, tty, NULL, 0, 0, &ti);
+
dbus_connection_emit_signal(conn, SERIAL_MANAGER_PATH,
SERIAL_MANAGER_INTERFACE, "ProxyCreated",
DBUS_TYPE_STRING, &ppath,
@@ -1546,7 +1568,7 @@ static DBusHandlerResult connect_service(DBusConnection *conn,
return err_connection_in_progress(conn, msg);
dev_id = hci_get_route(NULL);
- if ((dev_id < 0) || (hci_devba(dev_id, &src) < 0))
+ if ((dev_id < 0) || (hci_devba(dev_id, &src) < 0))
return err_failed(conn, msg, "Adapter not available");
pc = g_new0(struct pending_connect, 1);
diff --git a/serial/storage.c b/serial/storage.c
index 46e63f5d..1a867307 100644
--- a/serial/storage.c
+++ b/serial/storage.c
@@ -25,11 +25,15 @@
#include <config.h>
#endif
+#include <stdlib.h>
+#include <termios.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <bluetooth/bluetooth.h>
+#include <bluetooth/sdp.h>
+#include <bluetooth/sdp_lib.h>
#include <glib.h>
@@ -82,3 +86,35 @@ int port_store(bdaddr_t *src, bdaddr_t *dst, int16_t id,
return err;
}
+
+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;
+ int i, pos, size, err;
+ 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 */
+ pos = snprintf(value, size, "%s %d 0x%04X %s:", tty, ch, opts, name);
+
+ for (i = 0, pti = (uint8_t *) ti; i < sizeof(struct termios); i++, pti++)
+ sprintf(value + pos + (i * 2), "%2.2X", *pti);
+
+ err = textfile_put(filename, key, value);
+ g_free(value);
+
+ return err;
+}
diff --git a/serial/storage.h b/serial/storage.h
index 1f92f521..300976b9 100644
--- a/serial/storage.h
+++ b/serial/storage.h
@@ -24,3 +24,5 @@
int port_delete(bdaddr_t *src, bdaddr_t *dst, int16_t id);
int port_store(bdaddr_t *src, bdaddr_t *dst, int16_t id,
uint8_t ch, const char *svcname);
+int proxy_store(bdaddr_t *src, const char *uuid, const char *tty,
+ const char *name, uint8_t ch, int opts, struct termios *ti);