All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/20] Make stk_pdu_from_response use static buffers
@ 2010-06-07 10:08 Andrzej Zaborowski
  2010-06-07 10:08 ` [PATCH 02/20] stkutil: Add SMS-PP Data Download envelope builder Andrzej Zaborowski
                   ` (18 more replies)
  0 siblings, 19 replies; 29+ messages in thread
From: Andrzej Zaborowski @ 2010-06-07 10:08 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 4362 bytes --]

---
 src/stkutil.c       |   36 ++++++++++++++++++++----------------
 src/stkutil.h       |    5 ++---
 unit/test-stkutil.c |   15 ++++++++++-----
 3 files changed, 32 insertions(+), 24 deletions(-)

diff --git a/src/stkutil.c b/src/stkutil.c
index 82d4e84..14958a8 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -3980,14 +3980,15 @@ static gboolean build_local_info(struct stk_tlv_builder *builder,
 	return FALSE;
 }
 
-unsigned int stk_pdu_from_response(const struct stk_response *response,
-					unsigned char *pdu, unsigned int size)
+const unsigned char *stk_pdu_from_response(const struct stk_response *response,
+						unsigned int *out_length)
 {
 	struct stk_tlv_builder builder;
 	gboolean ok = TRUE;
 	unsigned char tag;
+	static unsigned char pdu[512];
 
-	stk_tlv_builder_init(&builder, pdu, size);
+	stk_tlv_builder_init(&builder, pdu, sizeof(pdu));
 
 	/*
 	 * Encode command details, they come in order with
@@ -3996,19 +3997,19 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
 	 */
 	tag = STK_DATA_OBJECT_TYPE_COMMAND_DETAILS;
 	if (stk_tlv_builder_open_container(&builder, TRUE, tag, FALSE) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_append_byte(&builder, response->number) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_append_byte(&builder, response->type) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_append_byte(&builder, response->qualifier) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_close_container(&builder) == FALSE)
-		return 0;
+		return NULL;
 
 	/* TS 102 223 section 6.8 states:
 	 * "For all COMPREHENSION-TLV objects with Min = N, the terminal
@@ -4022,19 +4023,19 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
 	 */
 	tag = STK_DATA_OBJECT_TYPE_DEVICE_IDENTITIES;
 	if (stk_tlv_builder_open_container(&builder, TRUE, tag, FALSE) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_append_byte(&builder, response->src) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_append_byte(&builder, response->dst) == FALSE)
-		return 0;
+		return NULL;
 
 	if (stk_tlv_builder_close_container(&builder) == FALSE)
-		return 0;
+		return NULL;
 
 	if (build_dataobj_result(&builder, &response->result, TRUE) != TRUE)
-		return 0;
+		return NULL;
 
 	switch (response->type) {
 	case STK_COMMAND_TYPE_DISPLAY_TEXT:
@@ -4105,11 +4106,14 @@ unsigned int stk_pdu_from_response(const struct stk_response *response,
 	case STK_COMMAND_TYPE_LAUNCH_BROWSER:
 		break;
 	default:
-		return 0;
+		return NULL;
 	};
 
 	if (ok != TRUE)
-		return 0;
+		return NULL;
+
+	if (out_length)
+		*out_length = stk_tlv_builder_get_length(&builder);
 
-	return stk_tlv_builder_get_length(&builder);
+	return pdu;
 }
diff --git a/src/stkutil.h b/src/stkutil.h
index cc5801c..7dd0d6c 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -1176,6 +1176,5 @@ struct stk_command *stk_command_new_from_pdu(const unsigned char *pdu,
 						unsigned int len);
 void stk_command_free(struct stk_command *command);
 
-/* Returns # of bytes written or zero on error */
-unsigned int stk_pdu_from_response(const struct stk_response *response,
-					unsigned char *pdu, unsigned int size);
+const unsigned char *stk_pdu_from_response(const struct stk_response *response,
+						unsigned int *out_length);
diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c
index fb354bd..eb50d17 100644
--- a/unit/test-stkutil.c
+++ b/unit/test-stkutil.c
@@ -13949,13 +13949,18 @@ struct terminal_response_test {
 static void test_terminal_response_encoding(gconstpointer data)
 {
 	const struct terminal_response_test *test = data;
-	unsigned char buf[512];
-	unsigned int len;
+	const unsigned char *pdu;
+	unsigned int pdu_len;
 
-	len = stk_pdu_from_response(&test->response, buf, sizeof(buf));
+	pdu = stk_pdu_from_response(&test->response, &pdu_len);
+
+	if (test->pdu)
+		g_assert(pdu);
+	else
+		g_assert(pdu == NULL);
 
-	g_assert(len == test->pdu_len);
-	g_assert(memcmp(buf, test->pdu, len) == 0);
+	g_assert(pdu_len == test->pdu_len);
+	g_assert(memcmp(pdu, test->pdu, pdu_len) == 0);
 }
 
 static const unsigned char display_text_response_111[] = {
-- 
1.7.1.86.g0e460.dirty


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

end of thread, other threads:[~2010-06-11 20:04 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-07 10:08 [PATCH 01/20] Make stk_pdu_from_response use static buffers Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 02/20] stkutil: Add SMS-PP Data Download envelope builder Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 03/20] test-stkutil: Tests for " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 04/20] stkutil: Add CBS-PP " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 05/20] stk: Use envelope encoding utility from stkutil.c Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 06/20] Fix: download CBS to SIM even when "Powered" is 0 Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 07/20] test-stkutil: Tests for CBS-PP Data Download envelope builder Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 08/20] stkutil: Add the Menu Selection " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 09/20] test-stkutil: Tests for " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 10/20] Add a "sim string" encoding utility Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 11/20] simutil: Fix MMC MNC encoding for 2-digit MNCs Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 12/20] stkutil: Add the Call Control envelope builder Andrzej Zaborowski
2010-06-09 22:57   ` Denis Kenzior
2010-06-11 19:18     ` Andrzej Zaborowski
2010-06-11 19:34       ` Denis Kenzior
2010-06-11 20:04         ` Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 13/20] test-stkutil: Tests for " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 14/20] stkutil: Add the MO Short Message " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 15/20] test-stkutil: Tests for " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 16/20] For unitialised stk_location_info emit no data object Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 17/20] stkutil: Add the Event Download envelope builder Andrzej Zaborowski
2010-06-10  1:06   ` Denis Kenzior
2010-06-10  1:19     ` Marcel Holtmann
2010-06-10  1:37       ` Denis Kenzior
2010-06-11 19:27     ` Andrzej Zaborowski
2010-06-11 19:31       ` Denis Kenzior
2010-06-07 10:08 ` [PATCH 18/20] test-stkutil: Tests for " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 19/20] stkutil: Add the Timer Expiration " Andrzej Zaborowski
2010-06-07 10:08 ` [PATCH 20/20] test-stkutil: Tests for " Andrzej Zaborowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.