linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH obexd 1/5] core: Add port to service driver
@ 2012-02-13 11:37 Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 2/5] bluetooth: Add support for L2CAP transport Luiz Augusto von Dentz
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-02-13 11:37 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This add possibility to optional port in addition to channel.
---
 src/service.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/service.h b/src/service.h
index 3dee7d7..5d9d325 100644
--- a/src/service.h
+++ b/src/service.h
@@ -21,10 +21,13 @@
  *
  */
 
+#define OBEX_PORT_RANDOM UINT16_MAX
+
 struct obex_service_driver {
 	const char *name;
 	uint16_t service;
 	uint8_t channel;
+	uint16_t port;
 	gboolean secure;
 	const uint8_t *target;
 	unsigned int target_size;
-- 
1.7.7.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH obexd 2/5] bluetooth: Add support for L2CAP transport
  2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
@ 2012-02-13 11:37 ` Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 3/5] ftp: Update record to support version 1.2 with GoepL2capPsm attribute Luiz Augusto von Dentz
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-02-13 11:37 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This uses driver port, if set (!= 0), as psm and export it in the service
record.
---
 plugins/bluetooth.c |  205 ++++++++++++++++++++++++++++++++++++++------------
 plugins/usb.c       |    4 +-
 src/obex-priv.h     |    2 +-
 src/obex.c          |    7 +-
 src/server.c        |    5 +-
 src/server.h        |    3 +-
 6 files changed, 169 insertions(+), 57 deletions(-)

diff --git a/plugins/bluetooth.c b/plugins/bluetooth.c
index e547857..7d54997 100644
--- a/plugins/bluetooth.c
+++ b/plugins/bluetooth.c
@@ -30,6 +30,7 @@
 #include <string.h>
 #include <unistd.h>
 #include <inttypes.h>
+#include <sys/socket.h>
 
 #include <glib.h>
 #include <gdbus.h>
@@ -169,8 +170,16 @@ static void register_record(struct obex_server *server)
 		if (any->path == NULL)
 			continue;
 
-		xml = g_markup_printf_escaped(driver->record, driver->channel,
-						driver->name);
+		if (driver->port != 0)
+			xml = g_markup_printf_escaped(driver->record,
+							driver->channel,
+							driver->name,
+							driver->port);
+		else
+			xml = g_markup_printf_escaped(driver->record,
+							driver->channel,
+							driver->name);
+
 		add_record(any->path, xml, service);
 		g_free(xml);
 	}
@@ -198,11 +207,19 @@ static void find_adapter_any_reply(DBusPendingCall *call, void *user_data)
 
 	for (l = any->services; l; l = l->next) {
 		struct bluetooth_service *service = l->data;
+		struct obex_service_driver *driver = service->driver;
 		char *xml;
 
-		xml = g_markup_printf_escaped(service->driver->record,
-						service->driver->channel,
-						service->driver->name);
+		if (driver->port != 0)
+			xml = g_markup_printf_escaped(driver->record,
+							driver->channel,
+							driver->name,
+							driver->port);
+		else
+			xml = g_markup_printf_escaped(driver->record,
+							driver->channel,
+							driver->name);
+
 		add_record(any->path, xml, service);
 		g_free(xml);
 	}
@@ -288,13 +305,33 @@ static void pending_request_free(struct pending_request *pending)
 
 static void connect_event(GIOChannel *io, GError *err, void *user_data)
 {
+	int sk = g_io_channel_unix_get_fd(io);
 	struct bluetooth_service *service = user_data;
 	struct obex_server *server = service->server;
+	int type;
+	int omtu = BT_TX_MTU;
+	int imtu = BT_RX_MTU;
+	gboolean stream = TRUE;
+	socklen_t len = sizeof(int);
 
 	if (err)
 		goto drop;
 
-	if (obex_server_new_connection(server, io, BT_TX_MTU, BT_RX_MTU) < 0)
+	if (getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0)
+		goto done;
+
+	if (type != SOCK_SEQPACKET)
+		goto done;
+
+	stream = FALSE;
+
+	/* Read MTU if io is an L2CAP socket */
+	bt_io_get(io, BT_IO_L2CAP, NULL, BT_IO_OPT_OMTU, &omtu,
+						BT_IO_OPT_IMTU, &imtu,
+						BT_IO_OPT_INVALID);
+
+done:
+	if (obex_server_new_connection(server, io, omtu, imtu, stream) < 0)
 		g_io_channel_shutdown(io, TRUE, NULL);
 
 	return;
@@ -420,24 +457,15 @@ failed:
 }
 
 static int request_service_authorization(struct bluetooth_service *service,
-					GIOChannel *io, const char *address)
+							GIOChannel *io,
+							const char *source,
+							const char *address)
 {
 	struct pending_request *pending;
-	char source[18];
-	GError *err = NULL;
 
 	if (connection == NULL || any->path == NULL)
 		return -1;
 
-	bt_io_get(io, BT_IO_RFCOMM, &err,
-			BT_IO_OPT_SOURCE, source,
-			BT_IO_OPT_INVALID);
-	if (err) {
-		error("%s", err->message);
-		g_error_free(err);
-		return -EINVAL;
-	}
-
 	pending = g_new0(struct pending_request, 1);
 	pending->call = find_adapter(source, find_adapter_reply, pending);
 	if (!pending->call) {
@@ -452,26 +480,13 @@ static int request_service_authorization(struct bluetooth_service *service,
 	return 0;
 }
 
-static void confirm_event(GIOChannel *io, void *user_data)
+static void confirm_connection(GIOChannel *io, const char *source,
+					const char *address, void *user_data)
 {
+
+	struct obex_service_driver *driver = user_data;
 	struct bluetooth_service *service;
 	GError *err = NULL;
-	char address[18];
-	uint8_t channel;
-	struct obex_service_driver *driver = user_data;
-
-	bt_io_get(io, BT_IO_RFCOMM, &err,
-			BT_IO_OPT_DEST, address,
-			BT_IO_OPT_CHANNEL, &channel,
-			BT_IO_OPT_INVALID);
-	if (err) {
-		error("%s", err->message);
-		g_error_free(err);
-		goto drop;
-	}
-
-	info("bluetooth: New connection from: %s, channel %u", address,
-			channel);
 
 	service = find_service(driver);
 	if (service == NULL) {
@@ -480,7 +495,8 @@ static void confirm_event(GIOChannel *io, void *user_data)
 	}
 
 	if (driver->secure) {
-		if (request_service_authorization(service, io, address) < 0)
+		if (request_service_authorization(service, io, source,
+								address) < 0)
 			goto drop;
 
 		return;
@@ -498,20 +514,70 @@ drop:
 	g_io_channel_shutdown(io, TRUE, NULL);
 }
 
-static GIOChannel *start(struct obex_server *server,
+static void confirm_rfcomm(GIOChannel *io, void *user_data)
+{
+	GError *err = NULL;
+	char source[18];
+	char address[18];
+	uint8_t channel;
+
+	bt_io_get(io, BT_IO_RFCOMM, &err,
+			BT_IO_OPT_SOURCE, source,
+			BT_IO_OPT_DEST, address,
+			BT_IO_OPT_CHANNEL, &channel,
+			BT_IO_OPT_INVALID);
+	if (err) {
+		error("%s", err->message);
+		g_error_free(err);
+		g_io_channel_shutdown(io, TRUE, NULL);
+		return;
+	}
+
+	info("bluetooth: New connection from: %s, channel %u", address,
+								channel);
+
+	confirm_connection(io, source, address, user_data);
+}
+
+static void confirm_l2cap(GIOChannel *io, void *user_data)
+{
+	GError *err = NULL;
+	char source[18];
+	char address[18];
+	uint16_t psm;
+
+	bt_io_get(io, BT_IO_L2CAP, &err,
+			BT_IO_OPT_SOURCE, source,
+			BT_IO_OPT_DEST, address,
+			BT_IO_OPT_PSM, &psm,
+			BT_IO_OPT_INVALID);
+	if (err) {
+		error("%s", err->message);
+		g_error_free(err);
+		g_io_channel_shutdown(io, TRUE, NULL);
+		return;
+	}
+
+	info("bluetooth: New connection from: %s, psm %u", address, psm);
+
+	confirm_connection(io, source, address, user_data);
+}
+
+static GSList *start(struct obex_server *server,
 				struct obex_service_driver *service)
 {
 	BtIOSecLevel sec_level;
+	GSList *l = NULL;
 	GIOChannel *io;
 	GError *err = NULL;
+	uint16_t psm;
 
 	if (service->secure == TRUE)
 		sec_level = BT_IO_SEC_MEDIUM;
 	else
 		sec_level = BT_IO_SEC_LOW;
 
-
-	io = bt_io_listen(BT_IO_RFCOMM, NULL, confirm_event,
+	io = bt_io_listen(BT_IO_RFCOMM, NULL, confirm_rfcomm,
 				service, NULL, &err,
 				BT_IO_OPT_CHANNEL, service->channel,
 				BT_IO_OPT_SEC_LEVEL, sec_level,
@@ -520,10 +586,36 @@ static GIOChannel *start(struct obex_server *server,
 		error("bluetooth: unable to listen in channel %d: %s",
 				service->channel, err->message);
 		g_error_free(err);
-	} else
+	} else {
+		l = g_slist_prepend(l, io);
 		DBG("listening on channel %d", service->channel);
+	}
+
+	if (service->port == 0)
+		return l;
+
+	psm = service->port == OBEX_PORT_RANDOM ? 0 : service->port;
+
+	io = bt_io_listen(BT_IO_L2CAP, NULL, confirm_l2cap,
+			service, NULL, &err,
+			BT_IO_OPT_PSM, psm,
+			BT_IO_OPT_MODE, BT_IO_MODE_ERTM,
+			BT_IO_OPT_OMTU, BT_TX_MTU,
+			BT_IO_OPT_IMTU, BT_RX_MTU,
+			BT_IO_OPT_SEC_LEVEL, sec_level,
+			BT_IO_OPT_INVALID);
+	if (io == NULL) {
+		error("bluetooth: unable to listen in psm %d: %s",
+				service->port, err->message);
+		g_error_free(err);
+	} else {
+		l = g_slist_prepend(l, io);
+		bt_io_get(io, BT_IO_L2CAP, &err, BT_IO_OPT_PSM, &service->port,
+							BT_IO_OPT_INVALID);
+		DBG("listening on psm %d", service->port);
+	}
 
-	return io;
+	return l;
 }
 
 static void *bluetooth_start(struct obex_server *server, int *err)
@@ -533,13 +625,13 @@ static void *bluetooth_start(struct obex_server *server, int *err)
 
 	for (l = server->drivers; l; l = l->next) {
 		struct obex_service_driver *service = l->data;
-		GIOChannel *io;
+		GSList *l;
 
-		io = start(server, service);
-		if (io == NULL)
+		l = start(server, service);
+		if (l == NULL)
 			continue;
 
-		ios = g_slist_prepend(ios, io);
+		ios = g_slist_concat(ios, l);
 	}
 
 	register_record(server);
@@ -564,14 +656,29 @@ static void bluetooth_stop(void *data)
 
 static int bluetooth_getpeername(GIOChannel *io, char **name)
 {
+	int sk = g_io_channel_unix_get_fd(io);
 	GError *gerr = NULL;
 	char address[18];
+	int type;
+	socklen_t len = sizeof(int);
 
-	bt_io_get(io, BT_IO_RFCOMM, &gerr,
-			BT_IO_OPT_DEST, address,
-			BT_IO_OPT_INVALID);
-	if (gerr)
+	if (getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0)
+		return -errno;
+
+	if (type == SOCK_STREAM)
+		bt_io_get(io, BT_IO_RFCOMM, &gerr,
+				BT_IO_OPT_DEST, address,
+				BT_IO_OPT_INVALID);
+	else
+		bt_io_get(io, BT_IO_L2CAP, &gerr,
+				BT_IO_OPT_DEST, address,
+				BT_IO_OPT_INVALID);
+
+	if (gerr) {
+		error("%s", gerr->message);
+		g_error_free(gerr);
 		return -EINVAL;
+	}
 
 	*name = g_strdup(address);
 
diff --git a/plugins/usb.c b/plugins/usb.c
index 3da77d0..7b21623 100644
--- a/plugins/usb.c
+++ b/plugins/usb.c
@@ -147,8 +147,8 @@ static int usb_connect(struct obex_server *server)
 	usb_io = g_io_channel_unix_new(fd);
 	g_io_channel_set_close_on_unref(usb_io, TRUE);
 
-	err = obex_server_new_connection(server, usb_io,
-					USB_TX_MTU, USB_RX_MTU);
+	err = obex_server_new_connection(server, usb_io, USB_TX_MTU,
+							USB_RX_MTU, TRUE);
 	if (err < 0)
 		goto failed;
 
diff --git a/src/obex-priv.h b/src/obex-priv.h
index ee03bf4..5b72942 100644
--- a/src/obex-priv.h
+++ b/src/obex-priv.h
@@ -53,4 +53,4 @@ struct obex_session {
 };
 
 int obex_session_start(GIOChannel *io, uint16_t tx_mtu, uint16_t rx_mtu,
-			struct obex_server *server);
+				gboolean stream, struct obex_server *server);
diff --git a/src/obex.c b/src/obex.c
index b14e0e0..05cc068 100644
--- a/src/obex.c
+++ b/src/obex.c
@@ -1119,10 +1119,11 @@ static void disconn_func(GObex *obex, GError *err, gpointer user_data)
 }
 
 int obex_session_start(GIOChannel *io, uint16_t tx_mtu, uint16_t rx_mtu,
-			struct obex_server *server)
+				gboolean stream, struct obex_server *server)
 {
 	struct obex_session *os;
 	GObex *obex;
+	GObexTransportType type;
 	static uint32_t id = 0;
 
 	DBG("");
@@ -1135,7 +1136,9 @@ int obex_session_start(GIOChannel *io, uint16_t tx_mtu, uint16_t rx_mtu,
 	os->server = server;
 	os->size = OBJECT_SIZE_DELETE;
 
-	obex = g_obex_new(io, G_OBEX_TRANSPORT_STREAM, rx_mtu, tx_mtu);
+	type = stream ? G_OBEX_TRANSPORT_STREAM : G_OBEX_TRANSPORT_PACKET;
+
+	obex = g_obex_new(io, type, rx_mtu, tx_mtu);
 	if (!obex) {
 		obex_session_free(os);
 		return -EIO;
diff --git a/src/server.c b/src/server.c
index e5dc22d..52f7f1e 100644
--- a/src/server.c
+++ b/src/server.c
@@ -136,7 +136,8 @@ struct obex_service_driver *obex_server_find_driver(
 }
 
 int obex_server_new_connection(struct obex_server *server, GIOChannel *io,
-				uint16_t tx_mtu, uint16_t rx_mtu)
+					uint16_t tx_mtu, uint16_t rx_mtu,
+					gboolean stream)
 {
-	return obex_session_start(io, tx_mtu, rx_mtu, server);
+	return obex_session_start(io, tx_mtu, rx_mtu, stream, server);
 }
diff --git a/src/server.h b/src/server.h
index 81c0b5d..e211f1f 100644
--- a/src/server.h
+++ b/src/server.h
@@ -35,4 +35,5 @@ void obex_server_exit(void);
 struct obex_service_driver *obex_server_find_driver(struct obex_server *server,
 							uint8_t channel);
 int obex_server_new_connection(struct obex_server *server, GIOChannel *io,
-				uint16_t tx_mtu, uint16_t rx_mtu);
+					uint16_t tx_mtu, uint16_t rx_mtu,
+					gboolean stream);
-- 
1.7.7.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH obexd 3/5] ftp: Update record to support version 1.2 with GoepL2capPsm attribute
  2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 2/5] bluetooth: Add support for L2CAP transport Luiz Augusto von Dentz
@ 2012-02-13 11:37 ` Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 4/5] opp: " Luiz Augusto von Dentz
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-02-13 11:37 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

---
 plugins/ftp.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/plugins/ftp.c b/plugins/ftp.c
index 9b102d0..56cedb9 100644
--- a/plugins/ftp.c
+++ b/plugins/ftp.c
@@ -81,7 +81,7 @@
     <sequence>								\
       <sequence>							\
         <uuid value=\"0x1106\"/>					\
-        <uint16 value=\"0x0100\" name=\"version\"/>			\
+        <uint16 value=\"0x0102\" name=\"version\"/>			\
       </sequence>							\
     </sequence>								\
   </attribute>								\
@@ -89,6 +89,9 @@
   <attribute id=\"0x0100\">						\
     <text value=\"%s\" name=\"name\"/>					\
   </attribute>								\
+  <attribute id=\"0x0200\">						\
+    <uint16 value=\"%u\" name=\"psm\"/>					\
+  </attribute>								\
 </record>"
 
 static const uint8_t FTP_TARGET[TARGET_SIZE] = {
@@ -517,6 +520,7 @@ static struct obex_service_driver ftp = {
 	.name = "File Transfer server",
 	.service = OBEX_FTP,
 	.channel = FTP_CHANNEL,
+	.port = OBEX_PORT_RANDOM,
 	.secure = TRUE,
 	.record = FTP_RECORD,
 	.target = FTP_TARGET,
-- 
1.7.7.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH obexd 4/5] opp: Update record to support version 1.2 with GoepL2capPsm attribute
  2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 2/5] bluetooth: Add support for L2CAP transport Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 3/5] ftp: Update record to support version 1.2 with GoepL2capPsm attribute Luiz Augusto von Dentz
@ 2012-02-13 11:37 ` Luiz Augusto von Dentz
  2012-02-13 11:37 ` [PATCH obexd 5/5] client: Add L2CAP support in bluetooth module Luiz Augusto von Dentz
  2012-02-14 12:51 ` [PATCH obexd 1/5] core: Add port to service driver Johan Hedberg
  4 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-02-13 11:37 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

---
 plugins/opp.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/plugins/opp.c b/plugins/opp.c
index 2375a21..d9b68b2 100644
--- a/plugins/opp.c
+++ b/plugins/opp.c
@@ -72,7 +72,7 @@
     <sequence>							\
       <sequence>						\
         <uuid value=\"0x1105\"/>				\
-        <uint16 value=\"0x0100\" name=\"version\"/>		\
+        <uint16 value=\"0x0102\" name=\"version\"/>		\
       </sequence>						\
     </sequence>							\
   </attribute>							\
@@ -92,6 +92,9 @@
       <uint8 value=\"0xff\"/>					\
     </sequence>							\
   </attribute>							\
+  <attribute id=\"0x0200\">					\
+    <uint16 value=\"%u\" name=\"psm\"/>				\
+  </attribute>							\
 </record>"
 
 static void *opp_connect(struct obex_session *os, int *err)
@@ -214,6 +217,7 @@ static struct obex_service_driver driver = {
 	.name = "Object Push server",
 	.service = OBEX_OPP,
 	.channel = OPP_CHANNEL,
+	.port = OBEX_PORT_RANDOM,
 	.record = OPP_RECORD,
 	.connect = opp_connect,
 	.progress = opp_progress,
-- 
1.7.7.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH obexd 5/5] client: Add L2CAP support in bluetooth module
  2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
                   ` (2 preceding siblings ...)
  2012-02-13 11:37 ` [PATCH obexd 4/5] opp: " Luiz Augusto von Dentz
@ 2012-02-13 11:37 ` Luiz Augusto von Dentz
  2012-02-14 12:51 ` [PATCH obexd 1/5] core: Add port to service driver Johan Hedberg
  4 siblings, 0 replies; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-02-13 11:37 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This adds support for reading GoepL2capPsm attribute from sdp record
and connect to it.
---
 client/bluetooth.c |   84 +++++++++++++++++++++++++++++++++++++++++++--------
 client/session.c   |   12 +++++++-
 client/transport.h |    1 +
 3 files changed, 82 insertions(+), 15 deletions(-)

diff --git a/client/bluetooth.c b/client/bluetooth.c
index 558c408..b49a82e 100644
--- a/client/bluetooth.c
+++ b/client/bluetooth.c
@@ -46,6 +46,9 @@
 #define BT_ADAPTER_IFACE	"org.bluez.Adapter"
 #define BT_MANAGER_IFACE	"org.bluez.Manager"
 
+#define BT_RX_MTU 32767
+#define BT_TX_MTU 32767
+
 #define OBC_BT_ERROR obc_bt_error_quark()
 
 struct bluetooth_session {
@@ -163,7 +166,7 @@ static void session_destroy(struct bluetooth_session *session)
 	g_free(session);
 }
 
-static void rfcomm_callback(GIOChannel *io, GError *err, gpointer user_data)
+static void transport_callback(GIOChannel *io, GError *err, gpointer user_data)
 {
 	struct bluetooth_session *session = user_data;
 
@@ -176,21 +179,36 @@ static void rfcomm_callback(GIOChannel *io, GError *err, gpointer user_data)
 		session_destroy(session);
 }
 
-static GIOChannel *rfcomm_connect(const bdaddr_t *src, const bdaddr_t *dst,
-					uint8_t channel, BtIOConnect function,
+static GIOChannel *transport_connect(const bdaddr_t *src, const bdaddr_t *dst,
+					uint16_t port, BtIOConnect function,
 					gpointer user_data)
 {
 	GIOChannel *io;
 	GError *err = NULL;
 
-	DBG("");
+	DBG("port %u", port);
 
-	io = bt_io_connect(BT_IO_RFCOMM, function, user_data, NULL, &err,
+	if (port > 31) {
+		io = bt_io_connect(BT_IO_L2CAP, function, user_data,
+				NULL, &err,
+				BT_IO_OPT_SOURCE_BDADDR, src,
+				BT_IO_OPT_DEST_BDADDR, dst,
+				BT_IO_OPT_PSM, port,
+				BT_IO_OPT_MODE, BT_IO_MODE_ERTM,
+				BT_IO_OPT_OMTU, BT_TX_MTU,
+				BT_IO_OPT_IMTU, BT_RX_MTU,
+				BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
+				BT_IO_OPT_INVALID);
+	} else {
+		io = bt_io_connect(BT_IO_RFCOMM, function, user_data,
+				NULL, &err,
 				BT_IO_OPT_SOURCE_BDADDR, src,
 				BT_IO_OPT_DEST_BDADDR, dst,
-				BT_IO_OPT_CHANNEL, channel,
+				BT_IO_OPT_CHANNEL, port,
 				BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
 				BT_IO_OPT_INVALID);
+	}
+
 	if (io != NULL)
 		return io;
 
@@ -205,7 +223,8 @@ static void search_callback(uint8_t type, uint16_t status,
 	struct bluetooth_session *session = user_data;
 	unsigned int scanned, bytesleft = size;
 	int seqlen = 0;
-	uint8_t dataType, channel = 0;
+	uint8_t dataType;
+	uint16_t port = 0;
 	GError *gerr = NULL;
 
 	if (status || type != SDP_SVC_SEARCH_ATTR_RSP)
@@ -220,6 +239,7 @@ static void search_callback(uint8_t type, uint16_t status,
 	do {
 		sdp_record_t *rec;
 		sdp_list_t *protos;
+		sdp_data_t *data;
 		int recsize, ch = -1;
 
 		recsize = 0;
@@ -240,10 +260,14 @@ static void search_callback(uint8_t type, uint16_t status,
 			protos = NULL;
 		}
 
+		data = sdp_data_get(rec, 0x0200);
+		if (data != NULL)
+			ch = data->val.uint16;
+
 		sdp_record_free(rec);
 
 		if (ch > 0) {
-			channel = ch;
+			port = ch;
 			break;
 		}
 
@@ -252,16 +276,16 @@ static void search_callback(uint8_t type, uint16_t status,
 		bytesleft -= recsize;
 	} while (scanned < size && bytesleft > 0);
 
-	if (channel == 0)
+	if (port == 0)
 		goto failed;
 
-	session->port = channel;
+	session->port = port;
 
 	g_io_channel_set_close_on_unref(session->io, FALSE);
 	g_io_channel_unref(session->io);
 
-	session->io = rfcomm_connect(&session->src, &session->dst, channel,
-					rfcomm_callback, session);
+	session->io = transport_connect(&session->src, &session->dst, port,
+						transport_callback, session);
 	if (session->io != NULL) {
 		sdp_close(session->sdp);
 		session->sdp = NULL;
@@ -279,6 +303,7 @@ failed:
 					"Unable to find service record");
 	if (session->func)
 		session->func(session->io, gerr, session->user_data);
+
 	g_clear_error(&gerr);
 
 	session_destroy(session);
@@ -413,9 +438,9 @@ static int session_connect(struct bluetooth_session *session)
 	int err;
 
 	if (session->port > 0) {
-		session->io = rfcomm_connect(&session->src, &session->dst,
+		session->io = transport_connect(&session->src, &session->dst,
 							session->port,
-							rfcomm_callback,
+							transport_callback,
 							session);
 		err = (session->io == NULL) ? -EINVAL : 0;
 	} else {
@@ -587,9 +612,40 @@ static void bluetooth_disconnect(guint id)
 	}
 }
 
+static int bluetooth_getpacketopt(GIOChannel *io, int *tx_mtu, int *rx_mtu)
+{
+	int sk = g_io_channel_unix_get_fd(io);
+	int type;
+	int omtu = -1;
+	int imtu = -1;
+	socklen_t len = sizeof(int);
+
+	DBG("");
+
+	if (getsockopt(sk, SOL_SOCKET, SO_TYPE, &type, &len) < 0)
+		return -errno;
+
+	if (type != SOCK_SEQPACKET)
+		return -EINVAL;
+
+	if (!bt_io_get(io, BT_IO_L2CAP, NULL, BT_IO_OPT_OMTU, &omtu,
+						BT_IO_OPT_IMTU, &imtu,
+						BT_IO_OPT_INVALID))
+		return -EINVAL;
+
+	if (tx_mtu)
+		*tx_mtu = omtu;
+
+	if (rx_mtu)
+		*rx_mtu = imtu;
+
+	return 0;
+}
+
 static struct obc_transport bluetooth = {
 	.name = "Bluetooth",
 	.connect = bluetooth_connect,
+	.getpacketopt = bluetooth_getpacketopt,
 	.disconnect = bluetooth_disconnect,
 };
 
diff --git a/client/session.c b/client/session.c
index 585e402..0fa8efc 100644
--- a/client/session.c
+++ b/client/session.c
@@ -257,7 +257,11 @@ static void transport_func(GIOChannel *io, GError *err, gpointer user_data)
 	struct callback_data *callback = user_data;
 	struct obc_session *session = callback->session;
 	struct obc_driver *driver = session->driver;
+	struct obc_transport *transport = session->transport;
 	GObex *obex;
+	GObexTransportType type;
+	int tx_mtu = -1;
+	int rx_mtu = -1;
 
 	DBG("");
 
@@ -268,7 +272,13 @@ static void transport_func(GIOChannel *io, GError *err, gpointer user_data)
 
 	g_io_channel_set_close_on_unref(io, FALSE);
 
-	obex = g_obex_new(io, G_OBEX_TRANSPORT_STREAM, -1, -1);
+	if (transport->getpacketopt &&
+			transport->getpacketopt(io, &tx_mtu, &rx_mtu) == 0)
+		type = G_OBEX_TRANSPORT_PACKET;
+	else
+		type = G_OBEX_TRANSPORT_STREAM;
+
+	obex = g_obex_new(io, type, tx_mtu, rx_mtu);
 	if (obex == NULL)
 		goto done;
 
diff --git a/client/transport.h b/client/transport.h
index 4c9bf2d..5140840 100644
--- a/client/transport.h
+++ b/client/transport.h
@@ -29,6 +29,7 @@ struct obc_transport {
 	guint (*connect) (const char *source, const char *destination,
 				const char *service, uint16_t port,
 				obc_transport_func func, void *user_data);
+	int (*getpacketopt) (GIOChannel *io, int *tx_mtu, int *rx_mtu);
 	void (*disconnect) (guint id);
 };
 
-- 
1.7.7.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH obexd 1/5] core: Add port to service driver
  2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
                   ` (3 preceding siblings ...)
  2012-02-13 11:37 ` [PATCH obexd 5/5] client: Add L2CAP support in bluetooth module Luiz Augusto von Dentz
@ 2012-02-14 12:51 ` Johan Hedberg
  4 siblings, 0 replies; 6+ messages in thread
From: Johan Hedberg @ 2012-02-14 12:51 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Mon, Feb 13, 2012, Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> This add possibility to optional port in addition to channel.
> ---
>  src/service.h |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)

All five patches have been applied. Thanks.

Johan

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-02-14 12:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-13 11:37 [PATCH obexd 1/5] core: Add port to service driver Luiz Augusto von Dentz
2012-02-13 11:37 ` [PATCH obexd 2/5] bluetooth: Add support for L2CAP transport Luiz Augusto von Dentz
2012-02-13 11:37 ` [PATCH obexd 3/5] ftp: Update record to support version 1.2 with GoepL2capPsm attribute Luiz Augusto von Dentz
2012-02-13 11:37 ` [PATCH obexd 4/5] opp: " Luiz Augusto von Dentz
2012-02-13 11:37 ` [PATCH obexd 5/5] client: Add L2CAP support in bluetooth module Luiz Augusto von Dentz
2012-02-14 12:51 ` [PATCH obexd 1/5] core: Add port to service driver Johan Hedberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).