linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] Add dump for ATT MTU req/resp and notify value
@ 2011-02-09 13:53 Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index b670694..05f9c23 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -132,12 +132,35 @@ static const char *attop2str(uint8_t op)
 	}
 }
 
+static void att_mtu_req_dump(int level, struct frame *frm)
+{
+	uint16_t client_rx_mtu = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("client rx mtu %d\n", client_rx_mtu);
+}
+
+static void att_mtu_resp_dump(int level, struct frame *frm)
+{
+	uint16_t server_rx_mtu = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("server rx mtu %d\n", server_rx_mtu);
+}
+
 static void att_handle_notify_dump(int level, struct frame *frm)
 {
 	uint16_t handle = btohs(htons(get_u16(frm)));
 
 	p_indent(level, frm);
 	printf("handle 0x%2.2x\n", handle);
+
+	p_indent(level, frm);
+	printf("value ");
+	while (frm->len > 0) {
+		printf("0x%.2x ", get_u8(frm));
+	}
+	printf("\n");
 }
 
 void att_dump(int level, struct frame *frm)
@@ -147,9 +170,15 @@ void att_dump(int level, struct frame *frm)
 	op = get_u8(frm);
 
 	p_indent(level, frm);
-	printf("Opcode: %d (%s)\n", op, attop2str(op));
+	printf("Opcode %d (%s)\n", op, attop2str(op));
 
 	switch (op) {
+		case ATT_OP_MTU_REQ:
+			att_mtu_req_dump(level + 1, frm);
+			break;
+		case ATT_OP_MTU_RESP:
+			att_mtu_resp_dump(level + 1, frm);
+			break;
 		case ATT_OP_HANDLE_NOTIFY:
 			att_handle_notify_dump(level + 1, frm);
 			break;
-- 
1.7.1


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

* [PATCH 2/6] Add ATT error pdu dump
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
@ 2011-02-09 13:53 ` Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 3/6] Add ATT find info req/resp dump Andre Dieb Martins
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |   80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 80 insertions(+), 0 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index 05f9c23..526b7bf 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -66,6 +66,26 @@
 #define ATT_OP_HANDLE_CNF		0x1E
 #define ATT_OP_SIGNED_WRITE_CMD		0xD2
 
+/* Error codes for Error response PDU */
+#define ATT_ECODE_INVALID_HANDLE		0x01
+#define ATT_ECODE_READ_NOT_PERM			0x02
+#define ATT_ECODE_WRITE_NOT_PERM		0x03
+#define ATT_ECODE_INVALID_PDU			0x04
+#define ATT_ECODE_INSUFF_AUTHEN			0x05
+#define ATT_ECODE_REQ_NOT_SUPP			0x06
+#define ATT_ECODE_INVALID_OFFSET		0x07
+#define ATT_ECODE_INSUFF_AUTHO			0x08
+#define ATT_ECODE_PREP_QUEUE_FULL		0x09
+#define ATT_ECODE_ATTR_NOT_FOUND		0x0A
+#define ATT_ECODE_ATTR_NOT_LONG			0x0B
+#define ATT_ECODE_INSUFF_ENCR_KEY_SIZE		0x0C
+#define ATT_ECODE_INVAL_ATTR_VALUE_LEN		0x0D
+#define ATT_ECODE_UNLIKELY			0x0E
+#define ATT_ECODE_INSUFF_ENC			0x0F
+#define ATT_ECODE_UNSUPP_GRP_TYPE		0x10
+#define ATT_ECODE_INSUFF_RESOURCES		0x11
+#define ATT_ECODE_IO				0xFF
+
 
 /* Attribute Protocol Opcodes */
 static const char *attop2str(uint8_t op)
@@ -132,6 +152,63 @@ static const char *attop2str(uint8_t op)
 	}
 }
 
+static const char * atterror2str(uint8_t err)
+{
+	switch (err) {
+	case ATT_ECODE_INVALID_HANDLE:
+		return "Invalid handle";
+	case ATT_ECODE_READ_NOT_PERM:
+		return "Read not permitted";
+	case ATT_ECODE_WRITE_NOT_PERM:
+		return "Write not permitted";
+	case ATT_ECODE_INVALID_PDU:
+		return "Invalid PDU";
+	case ATT_ECODE_INSUFF_AUTHEN:
+		return "Insufficient authentication";
+	case ATT_ECODE_REQ_NOT_SUPP:
+		return "Request not supported";
+	case ATT_ECODE_INVALID_OFFSET:
+		return "Invalid offset";
+	case ATT_ECODE_INSUFF_AUTHO:
+		return "Insufficient authorization";
+	case ATT_ECODE_PREP_QUEUE_FULL:
+		return "Prepare queue full";
+	case ATT_ECODE_ATTR_NOT_FOUND:
+		return "Attribute not found";
+	case ATT_ECODE_ATTR_NOT_LONG:
+		return "Attribute not long";
+	case ATT_ECODE_INSUFF_ENCR_KEY_SIZE:
+		return "Insufficient encryption key size";
+	case ATT_ECODE_INVAL_ATTR_VALUE_LEN:
+		return "Invalid attribute value length";
+	case ATT_ECODE_UNLIKELY:
+		return "Unlikely error";
+	case ATT_ECODE_INSUFF_ENC:
+		return "Insufficient encryption";
+	case ATT_ECODE_UNSUPP_GRP_TYPE:
+		return "Unsupported group type";
+	case ATT_ECODE_INSUFF_RESOURCES:
+		return "Insufficient resources";
+	case ATT_ECODE_IO:
+		return "Application Error";
+	default:
+		return "Reserved";
+	}
+}
+
+static void att_error_dump(int level, struct frame *frm)
+{
+	uint8_t op = get_u8(frm);
+	uint16_t handle = btohs(htons(get_u16(frm)));
+	uint8_t err = get_u8(frm);
+
+	p_indent(level, frm);
+	printf("Error: %s 0x%.2x\n", atterror2str(err), err);
+
+	p_indent(level, frm);
+	printf("opcode %d (%s) on handle 0x%2.2x\n", op, attop2str(op), handle);
+}
+
 static void att_mtu_req_dump(int level, struct frame *frm)
 {
 	uint16_t client_rx_mtu = btohs(htons(get_u16(frm)));
@@ -173,6 +250,9 @@ void att_dump(int level, struct frame *frm)
 	printf("Opcode %d (%s)\n", op, attop2str(op));
 
 	switch (op) {
+		case ATT_OP_ERROR:
+			att_error_dump(level + 1, frm);
+			break;
 		case ATT_OP_MTU_REQ:
 			att_mtu_req_dump(level + 1, frm);
 			break;
-- 
1.7.1


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

* [PATCH 3/6] Add ATT find info req/resp dump
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
@ 2011-02-09 13:53 ` Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 4/6] Better ATT dump format Andre Dieb Martins
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |  113 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 112 insertions(+), 1 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index 526b7bf..79a74b5 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -36,6 +36,27 @@
 
 #include "parser.h"
 
+#define GATT_PRIM_SVC_UUID		0x2800
+#define GATT_SND_SVC_UUID		0x2801
+#define GATT_INCLUDE_UUID		0x2802
+#define GATT_CHARAC_UUID		0x2803
+
+#define GATT_CHARAC_DEVICE_NAME			0x2A00
+#define GATT_CHARAC_APPEARANCE			0x2A01
+#define GATT_CHARAC_PERIPHERAL_PRIV_FLAG	0x2A02
+#define GATT_CHARAC_RECONNECTION_ADDRESS	0x2A03
+#define GATT_CHARAC_PERIPHERAL_PREF_CONN	0x2A04
+#define GATT_CHARAC_SERVICE_CHANGED		0x2A05
+
+#define GATT_CHARAC_EXT_PROPER_UUID	0x2900
+#define GATT_CHARAC_USER_DESC_UUID	0x2901
+#define GATT_CLIENT_CHARAC_CFG_UUID	0x2902
+#define GATT_SERVER_CHARAC_CFG_UUID	0x2903
+#define GATT_CHARAC_FMT_UUID		0x2904
+#define GATT_CHARAC_AGREG_FMT_UUID	0x2905
+
+
+
 /* Attribute Protocol Opcodes */
 #define ATT_OP_ERROR			0x01
 #define ATT_OP_MTU_REQ			0x02
@@ -196,6 +217,47 @@ static const char * atterror2str(uint8_t err)
 	}
 }
 
+static const char *uuid2str(uint16_t uuid)
+{
+	switch (uuid) {
+	case GATT_PRIM_SVC_UUID:
+		return "GATT Primary Service";
+	case GATT_SND_SVC_UUID:
+		return "GATT Secondary Service";
+	case GATT_INCLUDE_UUID:
+		return "GATT Include";
+	case GATT_CHARAC_UUID:
+		return "GATT Characteristic";
+	case GATT_CHARAC_DEVICE_NAME:
+		return "GATT(type) Device Name";
+	case GATT_CHARAC_APPEARANCE:
+		return "GATT(type) Appearance";
+	case GATT_CHARAC_PERIPHERAL_PRIV_FLAG:
+		return "GATT(type) Peripheral Privacy Flag";
+	case GATT_CHARAC_RECONNECTION_ADDRESS:
+		return "GATT(type) Characteristic Reconnection Address";
+	case GATT_CHARAC_PERIPHERAL_PREF_CONN:
+		return "GATT(type) Characteristic Preferred Connection Parameters";
+	case GATT_CHARAC_SERVICE_CHANGED:
+		return "GATT(type) Characteristic Service Changed";
+	case GATT_CHARAC_EXT_PROPER_UUID:
+		return "GATT(desc) Characteristic Extended Properties";
+	case GATT_CHARAC_USER_DESC_UUID:
+		return "GATT(desc) User Description";
+	case GATT_CLIENT_CHARAC_CFG_UUID:
+		return "GATT(desc) Client Characteristic Configuration";
+	case GATT_SERVER_CHARAC_CFG_UUID:
+		return "GATT(desc) Server Characteristic Configuration";
+	case GATT_CHARAC_FMT_UUID:
+		return "GATT(desc) Format";
+	case GATT_CHARAC_AGREG_FMT_UUID:
+		return "GATT(desc) Aggregate Format";
+	default:
+		return "Unknown";
+	}
+}
+
+
 static void att_error_dump(int level, struct frame *frm)
 {
 	uint8_t op = get_u8(frm);
@@ -225,6 +287,50 @@ static void att_mtu_resp_dump(int level, struct frame *frm)
 	printf("server rx mtu %d\n", server_rx_mtu);
 }
 
+static void att_find_info_req_dump(int level, struct frame *frm)
+{
+	uint16_t start = btohs(htons(get_u16(frm)));
+	uint16_t end = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("start 0x%2.2x, end 0x%2.2x\n", start, end);
+}
+
+static void att_find_info_resp_dump(int level, struct frame *frm)
+{
+	uint8_t fmt = get_u8(frm);
+
+	p_indent(level, frm);
+
+	if (fmt == 0x01) {
+		printf("format: uuid-16\n");
+
+		while (frm->len > 0) {
+			uint16_t handle = btohs(htons(get_u16(frm)));
+			uint16_t uuid = btohs(htons(get_u16(frm)));
+			p_indent(level + 1, frm);
+			printf("handle 0x%2.2x, uuid 0x%2.2x (%s)\n", handle, uuid,
+					uuid2str(uuid));
+		}
+	} else {
+		printf("format: uuid-128\n");
+
+		while (frm->len > 0) {
+			uint16_t handle = btohs(htons(get_u16(frm)));
+			int i;
+
+			p_indent(level + 1, frm);
+			printf("handle 0x%2.2x, uuid ", handle);
+			for (i = 0; i < 16; i++) {
+				printf("%02x", get_u8(frm));
+				if (i == 3 || i == 5 || i == 7 || i == 9)
+					printf("-");
+			}
+			printf("\n");
+		}
+	}
+}
+
 static void att_handle_notify_dump(int level, struct frame *frm)
 {
 	uint16_t handle = btohs(htons(get_u16(frm)));
@@ -259,10 +365,15 @@ void att_dump(int level, struct frame *frm)
 		case ATT_OP_MTU_RESP:
 			att_mtu_resp_dump(level + 1, frm);
 			break;
+		case ATT_OP_FIND_INFO_REQ:
+			att_find_info_req_dump(level + 1, frm);
+			break;
+		case ATT_OP_FIND_INFO_RESP:
+			att_find_info_resp_dump(level + 1, frm);
+			break;
 		case ATT_OP_HANDLE_NOTIFY:
 			att_handle_notify_dump(level + 1, frm);
 			break;
-
 		default:
 			raw_dump(level, frm);
 			break;
-- 
1.7.1


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

* [PATCH 4/6] Better ATT dump format
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 3/6] Add ATT find info req/resp dump Andre Dieb Martins
@ 2011-02-09 13:53 ` Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 5/6] Add ATT dump for read req/resp Andre Dieb Martins
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index 79a74b5..b172f95 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -265,10 +265,10 @@ static void att_error_dump(int level, struct frame *frm)
 	uint8_t err = get_u8(frm);
 
 	p_indent(level, frm);
-	printf("Error: %s 0x%.2x\n", atterror2str(err), err);
+	printf("Error: %s (%d)\n", atterror2str(err), err);
 
 	p_indent(level, frm);
-	printf("opcode %d (%s) on handle 0x%2.2x\n", op, attop2str(op), handle);
+	printf("%s (0x%.2x) on handle 0x%2.2x\n", attop2str(op), op, handle);
 }
 
 static void att_mtu_req_dump(int level, struct frame *frm)
@@ -353,7 +353,7 @@ void att_dump(int level, struct frame *frm)
 	op = get_u8(frm);
 
 	p_indent(level, frm);
-	printf("Opcode %d (%s)\n", op, attop2str(op));
+	printf("ATT: %s (0x%.2x)\n", attop2str(op), op);
 
 	switch (op) {
 		case ATT_OP_ERROR:
-- 
1.7.1


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

* [PATCH 5/6] Add ATT dump for read req/resp
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
                   ` (2 preceding siblings ...)
  2011-02-09 13:53 ` [PATCH 4/6] Better ATT dump format Andre Dieb Martins
@ 2011-02-09 13:53 ` Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 6/6] Add ATT read by type req/resp dump Andre Dieb Martins
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index b172f95..2a9da30 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -331,6 +331,14 @@ static void att_find_info_resp_dump(int level, struct frame *frm)
 	}
 }
 
+static void att_read_req_dump(int level, struct frame *frm)
+{
+	uint16_t handle = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("handle 0x%2.2x\n", handle);
+}
+
 static void att_handle_notify_dump(int level, struct frame *frm)
 {
 	uint16_t handle = btohs(htons(get_u16(frm)));
@@ -371,6 +379,12 @@ void att_dump(int level, struct frame *frm)
 		case ATT_OP_FIND_INFO_RESP:
 			att_find_info_resp_dump(level + 1, frm);
 			break;
+		case ATT_OP_READ_REQ:
+			att_read_req_dump(level + 1, frm);
+			break;
+		case ATT_OP_READ_RESP:
+			raw_dump(level + 1, frm);
+			break;
 		case ATT_OP_HANDLE_NOTIFY:
 			att_handle_notify_dump(level + 1, frm);
 			break;
-- 
1.7.1


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

* [PATCH 6/6] Add ATT read by type req/resp dump
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
                   ` (3 preceding siblings ...)
  2011-02-09 13:53 ` [PATCH 5/6] Add ATT dump for read req/resp Andre Dieb Martins
@ 2011-02-09 13:53 ` Andre Dieb Martins
  2011-02-09 13:57 ` [PATCH 1/6] Add dump for ATT MTU req/resp and notify value André Dieb
  2011-02-09 14:24 ` Gustavo F. Padovan
  6 siblings, 0 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index 2a9da30..3c57d23 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -331,6 +331,54 @@ static void att_find_info_resp_dump(int level, struct frame *frm)
 	}
 }
 
+static void att_read_by_type_req_dump(int level, struct frame *frm)
+{
+	uint16_t start = btohs(htons(get_u16(frm)));
+	uint16_t end = btohs(htons(get_u16(frm)));
+	int i;
+
+	p_indent(level, frm);
+	printf("start 0x%2.2x, end 0x%2.2x\n", start, end);
+
+	p_indent(level, frm);
+	if (frm->len == 2) {
+		printf("type-uuid 0x%2.2x\n", btohs(htons(get_u16(frm))));
+	} else if (frm->len == 16) {
+		printf("type-uuid ");
+		for (i = 0; i < 16; i++) {
+			printf("%02x", get_u8(frm));
+			if (i == 3 || i == 5 || i == 7 || i == 9)
+				printf("-");
+		}
+		printf("\n");
+	} else {
+		printf("malformed uuid (expected 2 or 16 octets)\n");
+		p_indent(level, frm);
+		raw_dump(level, frm);
+	}
+}
+
+static void att_read_by_type_resp_dump(int level, struct frame *frm)
+{
+	uint8_t length = get_u8(frm);
+
+	p_indent(level, frm);
+	printf("length: %d\n", length);
+
+	while (frm->len > 0) {
+		uint16_t handle = btohs(htons(get_u16(frm)));
+		int val_len = length - 2;
+		int i;
+
+		p_indent(level + 1, frm);
+		printf("handle 0x%2.2x, value ", handle);
+		for (i = 0; i < val_len; i++) {
+			printf("0x%.2x ", get_u8(frm));
+		}
+		printf("\n");
+	}
+}
+
 static void att_read_req_dump(int level, struct frame *frm)
 {
 	uint16_t handle = btohs(htons(get_u16(frm)));
@@ -379,6 +427,12 @@ void att_dump(int level, struct frame *frm)
 		case ATT_OP_FIND_INFO_RESP:
 			att_find_info_resp_dump(level + 1, frm);
 			break;
+		case ATT_OP_READ_BY_TYPE_REQ:
+			att_read_by_type_req_dump(level + 1, frm);
+			break;
+		case ATT_OP_READ_BY_TYPE_RESP:
+			att_read_by_type_resp_dump(level + 1, frm);
+			break;
 		case ATT_OP_READ_REQ:
 			att_read_req_dump(level + 1, frm);
 			break;
-- 
1.7.1


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

* Re: [PATCH 1/6] Add dump for ATT MTU req/resp and notify value
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
                   ` (4 preceding siblings ...)
  2011-02-09 13:53 ` [PATCH 6/6] Add ATT read by type req/resp dump Andre Dieb Martins
@ 2011-02-09 13:57 ` André Dieb
  2011-02-09 14:24 ` Gustavo F. Padovan
  6 siblings, 0 replies; 8+ messages in thread
From: André Dieb @ 2011-02-09 13:57 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

This patchset misses a first patch that adds att.c. I'll be reposting
them along with it. Sorry for the inconvenience.

On Wed, Feb 9, 2011 at 11:53 AM, Andre Dieb Martins
<andre.dieb@signove.com> wrote:
> ---
>  parser/att.c |   31 ++++++++++++++++++++++++++++++-
>  1 files changed, 30 insertions(+), 1 deletions(-)
>
> diff --git a/parser/att.c b/parser/att.c
> index b670694..05f9c23 100644
> --- a/parser/att.c
> +++ b/parser/att.c
> @@ -132,12 +132,35 @@ static const char *attop2str(uint8_t op)
>        }
>  }
>
> +static void att_mtu_req_dump(int level, struct frame *frm)
> +{
> +       uint16_t client_rx_mtu = btohs(htons(get_u16(frm)));
> +
> +       p_indent(level, frm);
> +       printf("client rx mtu %d\n", client_rx_mtu);
> +}
> +
> +static void att_mtu_resp_dump(int level, struct frame *frm)
> +{
> +       uint16_t server_rx_mtu = btohs(htons(get_u16(frm)));
> +
> +       p_indent(level, frm);
> +       printf("server rx mtu %d\n", server_rx_mtu);
> +}
> +
>  static void att_handle_notify_dump(int level, struct frame *frm)
>  {
>        uint16_t handle = btohs(htons(get_u16(frm)));
>
>        p_indent(level, frm);
>        printf("handle 0x%2.2x\n", handle);
> +
> +       p_indent(level, frm);
> +       printf("value ");
> +       while (frm->len > 0) {
> +               printf("0x%.2x ", get_u8(frm));
> +       }
> +       printf("\n");
>  }
>
>  void att_dump(int level, struct frame *frm)
> @@ -147,9 +170,15 @@ void att_dump(int level, struct frame *frm)
>        op = get_u8(frm);
>
>        p_indent(level, frm);
> -       printf("Opcode: %d (%s)\n", op, attop2str(op));
> +       printf("Opcode %d (%s)\n", op, attop2str(op));
>
>        switch (op) {
> +               case ATT_OP_MTU_REQ:
> +                       att_mtu_req_dump(level + 1, frm);
> +                       break;
> +               case ATT_OP_MTU_RESP:
> +                       att_mtu_resp_dump(level + 1, frm);
> +                       break;
>                case ATT_OP_HANDLE_NOTIFY:
>                        att_handle_notify_dump(level + 1, frm);
>                        break;
> --
> 1.7.1
>
>

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

* Re: [PATCH 1/6] Add dump for ATT MTU req/resp and notify value
  2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
                   ` (5 preceding siblings ...)
  2011-02-09 13:57 ` [PATCH 1/6] Add dump for ATT MTU req/resp and notify value André Dieb
@ 2011-02-09 14:24 ` Gustavo F. Padovan
  6 siblings, 0 replies; 8+ messages in thread
From: Gustavo F. Padovan @ 2011-02-09 14:24 UTC (permalink / raw)
  To: Andre Dieb Martins; +Cc: linux-bluetooth

Hi Andre,

* Andre Dieb Martins <andre.dieb@signove.com> [2011-02-09 10:53:34 -0300]:

> ---
>  parser/att.c |   31 ++++++++++++++++++++++++++++++-
>  1 files changed, 30 insertions(+), 1 deletions(-)
> 
> diff --git a/parser/att.c b/parser/att.c
> index b670694..05f9c23 100644
> --- a/parser/att.c
> +++ b/parser/att.c
> @@ -132,12 +132,35 @@ static const char *attop2str(uint8_t op)
>  	}
>  }
>  
> +static void att_mtu_req_dump(int level, struct frame *frm)
> +{
> +	uint16_t client_rx_mtu = btohs(htons(get_u16(frm)));
> +
> +	p_indent(level, frm);
> +	printf("client rx mtu %d\n", client_rx_mtu);
> +}
> +
> +static void att_mtu_resp_dump(int level, struct frame *frm)
> +{
> +	uint16_t server_rx_mtu = btohs(htons(get_u16(frm)));
> +
> +	p_indent(level, frm);
> +	printf("server rx mtu %d\n", server_rx_mtu);
> +}
> +
>  static void att_handle_notify_dump(int level, struct frame *frm)
>  {
>  	uint16_t handle = btohs(htons(get_u16(frm)));
>  
>  	p_indent(level, frm);
>  	printf("handle 0x%2.2x\n", handle);
> +
> +	p_indent(level, frm);
> +	printf("value ");
> +	while (frm->len > 0) {
> +		printf("0x%.2x ", get_u8(frm));
> +	}
> +	printf("\n");
>  }
>  
>  void att_dump(int level, struct frame *frm)
> @@ -147,9 +170,15 @@ void att_dump(int level, struct frame *frm)
>  	op = get_u8(frm);
>  
>  	p_indent(level, frm);
> -	printf("Opcode: %d (%s)\n", op, attop2str(op));
> +	printf("Opcode %d (%s)\n", op, attop2str(op));

-v2 delivered a blank email to me for this one, so replying here.

Please move this change to the patch that introduced it.

-- 
Gustavo F. Padovan
http://profusion.mobi

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

end of thread, other threads:[~2011-02-09 14:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 3/6] Add ATT find info req/resp dump Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 4/6] Better ATT dump format Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 5/6] Add ATT dump for read req/resp Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 6/6] Add ATT read by type req/resp dump Andre Dieb Martins
2011-02-09 13:57 ` [PATCH 1/6] Add dump for ATT MTU req/resp and notify value André Dieb
2011-02-09 14:24 ` Gustavo F. Padovan

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).