* [PATCH] Add parser for file list objects @ 2010-03-19 7:11 Yang Gu 2010-03-22 19:45 ` Denis Kenzior 0 siblings, 1 reply; 5+ messages in thread From: Yang Gu @ 2010-03-19 7:11 UTC (permalink / raw) To: ofono [-- Attachment #1: Type: text/plain, Size: 3650 bytes --] --- src/stkutil.c | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/stkutil.h | 6 ++++ 2 files changed, 91 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 940eee2..18f1cdb 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -416,6 +416,89 @@ static gboolean parse_dataobj_tone(struct comprehension_tlv_iter *iter, return TRUE; } +/* Defined in TS 102.223 Section 8.18 */ +static gboolean parse_dataobj_file_list(struct comprehension_tlv_iter *iter, + void *user) +{ + GSList **fl = user; + const unsigned char *data; + unsigned int len; + unsigned int i; + unsigned int start; + struct stk_file *sf; + unsigned char last_type = 0x2f; + + if (comprehension_tlv_iter_get_tag(iter) != + STK_DATA_OBJECT_TYPE_FILE_LIST) + return FALSE; + + len = comprehension_tlv_iter_get_length(iter); + if (len < 5) + return FALSE; + + data = comprehension_tlv_iter_get_data(iter); + + for (i = 1; i < len; i += 2) { + /* Check the validity of file type. + * According to TS 11.11, each file id contains of two bytes, + * in which the first byte is the type of file. For GSM is: + * 0x3f: master file + * 0x7f: 1st level dedicated file + * 0x5f: 2nd level dedicated file + * 0x2f: elementary file under the master file + * 0x6f: elementary file under 1st level dedicated file + * 0x4f: elementary file under 2nd level dedicated file + */ + if (data[i] == 0x3f) { + if ((last_type != 0x2f) && (last_type != 0x6f) && + (last_type != 0x4f)) + goto error; + start = i; + } else if (data[i] == 0x2f) { + if (last_type != 0x3f) + goto error; + } else if (data[i] == 0x6f) { + if (last_type != 0x7f) + goto error; + } else if (data[i] == 0x4f) { + if (last_type != 0x5f) + goto error; + } else if (data[i] == 0x7f) { + if (last_type != 0x3f) + goto error; + } else if (data[i] == 0x5f) { + if (last_type != 0x7f) + goto error; + } else + goto error; + + if ((data[i] == 0x2f) || (data[i] == 0x6f) || + (data[i] == 0x4f)) { + sf = g_try_new0(struct stk_file, 1); + if (sf == NULL) + goto error; + + sf->len = i - start; + memcpy(sf->file, data + start, i - start); + *fl = g_slist_prepend(*fl, sf); + } + + last_type = data[i]; + } + + if ((data[len - 2] != 0x2f) && (data[len - 2] != 0x6f) && + (data[len - 2] != 0x4f)) + goto error; + + *fl = g_slist_reverse(*fl); + return TRUE; + +error: + g_slist_foreach(*fl, (GFunc)g_free, NULL); + g_slist_free(*fl); + return FALSE; +} + /* Defined in TS 102.223 Section 8.31 */ static gboolean parse_dataobj_icon_id(struct comprehension_tlv_iter *iter, void *user) @@ -533,6 +616,8 @@ static dataobj_handler handler_for_type(enum stk_data_object_type type) return parse_dataobj_text; case STK_DATA_OBJECT_TYPE_TONE: return parse_dataobj_tone; + case STK_DATA_OBJECT_TYPE_FILE_LIST: + return parse_dataobj_file_list; case STK_DATA_OBJECT_TYPE_ICON_ID: return parse_dataobj_icon_id; case STK_DATA_OBJECT_TYPE_IMMEDIATE_RESPONSE: diff --git a/src/stkutil.h b/src/stkutil.h index 1d690b5..bafe03c 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -345,6 +345,12 @@ struct stk_result { unsigned char *additional; }; +/* Define the struct of single file in TS102.223 Section 8.18 */ +struct stk_file { + unsigned char file[8]; + unsigned int len; +}; + /* * According to 102.223 Section 8.72 the length of text attribute CTLV is 1 * byte. This means that the maximum size is 127 according to the rules -- 1.6.3.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Add parser for file list objects 2010-03-19 7:11 [PATCH] Add parser for file list objects Yang Gu @ 2010-03-22 19:45 ` Denis Kenzior 2010-03-23 3:28 ` Gu, Yang 0 siblings, 1 reply; 5+ messages in thread From: Denis Kenzior @ 2010-03-22 19:45 UTC (permalink / raw) To: ofono [-- Attachment #1: Type: text/plain, Size: 4150 bytes --] Hi Yang, > --- > src/stkutil.c | 85 > +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/stkutil.h | > 6 ++++ > 2 files changed, 91 insertions(+), 0 deletions(-) > > diff --git a/src/stkutil.c b/src/stkutil.c > index 940eee2..18f1cdb 100644 > --- a/src/stkutil.c > +++ b/src/stkutil.c > @@ -416,6 +416,89 @@ static gboolean parse_dataobj_tone(struct > comprehension_tlv_iter *iter, return TRUE; > } > > +/* Defined in TS 102.223 Section 8.18 */ > +static gboolean parse_dataobj_file_list(struct comprehension_tlv_iter > *iter, + void *user) > +{ > + GSList **fl = user; > + const unsigned char *data; > + unsigned int len; > + unsigned int i; > + unsigned int start; > + struct stk_file *sf; > + unsigned char last_type = 0x2f; > + > + if (comprehension_tlv_iter_get_tag(iter) != > + STK_DATA_OBJECT_TYPE_FILE_LIST) > + return FALSE; > + > + len = comprehension_tlv_iter_get_length(iter); > + if (len < 5) > + return FALSE; > + > + data = comprehension_tlv_iter_get_data(iter); > + > + for (i = 1; i < len; i += 2) { > + /* Check the validity of file type. > + * According to TS 11.11, each file id contains of two bytes, > + * in which the first byte is the type of file. For GSM is: > + * 0x3f: master file > + * 0x7f: 1st level dedicated file > + * 0x5f: 2nd level dedicated file > + * 0x2f: elementary file under the master file > + * 0x6f: elementary file under 1st level dedicated file > + * 0x4f: elementary file under 2nd level dedicated file > + */ > + if (data[i] == 0x3f) { > + if ((last_type != 0x2f) && (last_type != 0x6f) && > + (last_type != 0x4f)) > + goto error; > + start = i; > + } else if (data[i] == 0x2f) { > + if (last_type != 0x3f) > + goto error; > + } else if (data[i] == 0x6f) { > + if (last_type != 0x7f) > + goto error; > + } else if (data[i] == 0x4f) { > + if (last_type != 0x5f) > + goto error; > + } else if (data[i] == 0x7f) { > + if (last_type != 0x3f) > + goto error; > + } else if (data[i] == 0x5f) { > + if (last_type != 0x7f) > + goto error; > + } else > + goto error; > + > + if ((data[i] == 0x2f) || (data[i] == 0x6f) || > + (data[i] == 0x4f)) { > + sf = g_try_new0(struct stk_file, 1); > + if (sf == NULL) > + goto error; > + > + sf->len = i - start; > + memcpy(sf->file, data + start, i - start); > + *fl = g_slist_prepend(*fl, sf); This looks wrong, you're not including the EF file type byte / 2nd byte in the file contents. > + } > + > + last_type = data[i]; > + } > + > + if ((data[len - 2] != 0x2f) && (data[len - 2] != 0x6f) && > + (data[len - 2] != 0x4f)) > + goto error; > + > + *fl = g_slist_reverse(*fl); > + return TRUE; > + > +error: > + g_slist_foreach(*fl, (GFunc)g_free, NULL); > + g_slist_free(*fl); > + return FALSE; > +} > + > /* Defined in TS 102.223 Section 8.31 */ > static gboolean parse_dataobj_icon_id(struct comprehension_tlv_iter *iter, > void *user) > @@ -533,6 +616,8 @@ static dataobj_handler handler_for_type(enum > stk_data_object_type type) return parse_dataobj_text; > case STK_DATA_OBJECT_TYPE_TONE: > return parse_dataobj_tone; > + case STK_DATA_OBJECT_TYPE_FILE_LIST: > + return parse_dataobj_file_list; > case STK_DATA_OBJECT_TYPE_ICON_ID: > return parse_dataobj_icon_id; > case STK_DATA_OBJECT_TYPE_IMMEDIATE_RESPONSE: > diff --git a/src/stkutil.h b/src/stkutil.h > index 1d690b5..bafe03c 100644 > --- a/src/stkutil.h > +++ b/src/stkutil.h > @@ -345,6 +345,12 @@ struct stk_result { > unsigned char *additional; > }; > > +/* Define the struct of single file in TS102.223 Section 8.18 */ > +struct stk_file { > + unsigned char file[8]; Please put a comment here why it is 8, preferably quoting or referencing the right right section from the specification. > + unsigned int len; > +}; > + > /* > * According to 102.223 Section 8.72 the length of text attribute CTLV is > 1 * byte. This means that the maximum size is 127 according to the rules > Regards, -Denis ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH] Add parser for file list objects 2010-03-22 19:45 ` Denis Kenzior @ 2010-03-23 3:28 ` Gu, Yang 2010-03-23 3:49 ` Marcel Holtmann 0 siblings, 1 reply; 5+ messages in thread From: Gu, Yang @ 2010-03-23 3:28 UTC (permalink / raw) To: ofono [-- Attachment #1: Type: text/plain, Size: 999 bytes --] Hi, Attached is the patch modified according to the comments. Please review! >> + >> + if ((data[i] == 0x2f) || (data[i] == 0x6f) || >> + (data[i] == 0x4f)) { >> + sf = g_try_new0(struct stk_file, 1); >> + if (sf == NULL) >> + goto error; >> + >> + sf->len = i - start; >> + memcpy(sf->file, data + start, i - start); >> + *fl = g_slist_prepend(*fl, sf); > >This looks wrong, you're not including the EF file type byte / 2nd byte in the >file contents. >> >> +/* Define the struct of single file in TS102.223 Section 8.18 */ >> +struct stk_file { >> + unsigned char file[8]; > >Please put a comment here why it is 8, preferably quoting or referencing the >right right section from the specification. > >> + unsigned int len; >> +}; >> + >> /* >> * According to 102.223 Section 8.72 the length of text attribute CTLV is >> 1 * byte. This means that the maximum size is 127 according to the rules >> > >Regards, >-Denis Regards, -Yang [-- Attachment #2: 0001-Add-parser-for-file-list-objects.patch --] [-- Type: application/octet-stream, Size: 4077 bytes --] From 974a8d894d479a7c58cd6d79f3b073862ff41984 Mon Sep 17 00:00:00 2001 From: Yang Gu <yang.gu@intel.com> Date: Tue, 23 Mar 2010 11:12:39 +0800 Subject: [PATCH] Add parser for file list objects --- src/stkutil.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/stkutil.h | 11 +++++++ 2 files changed, 99 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 940eee2..833073b 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -416,6 +416,92 @@ static gboolean parse_dataobj_tone(struct comprehension_tlv_iter *iter, return TRUE; } +/* Defined in TS 102.223 Section 8.18 */ +static gboolean parse_dataobj_file_list(struct comprehension_tlv_iter *iter, + void *user) +{ + GSList **fl = user; + const unsigned char *data; + unsigned int len; + unsigned int i; + unsigned int start = 0; + struct stk_file *sf; + unsigned char last_type = 0x2f; + + if (comprehension_tlv_iter_get_tag(iter) != + STK_DATA_OBJECT_TYPE_FILE_LIST) + return FALSE; + + len = comprehension_tlv_iter_get_length(iter); + if (len < 5) + return FALSE; + + data = comprehension_tlv_iter_get_data(iter); + + for (i = 1; i < len; i += 2) { + /* Check the validity of file type. + * According to TS 11.11, each file id contains of two bytes, + * in which the first byte is the type of file. For GSM is: + * 0x3f: master file + * 0x7f: 1st level dedicated file + * 0x5f: 2nd level dedicated file + * 0x2f: elementary file under the master file + * 0x6f: elementary file under 1st level dedicated file + * 0x4f: elementary file under 2nd level dedicated file + */ + if (data[i] == 0x3f) { + if ((last_type != 0x2f) && (last_type != 0x6f) && + (last_type != 0x4f)) + goto error; + start = i; + } else if (data[i] == 0x2f) { + if (last_type != 0x3f) + goto error; + } else if (data[i] == 0x6f) { + if (last_type != 0x7f) + goto error; + } else if (data[i] == 0x4f) { + if (last_type != 0x5f) + goto error; + } else if (data[i] == 0x7f) { + if (last_type != 0x3f) + goto error; + } else if (data[i] == 0x5f) { + if (last_type != 0x7f) + goto error; + } else + goto error; + + if ((data[i] == 0x2f) || (data[i] == 0x6f) || + (data[i] == 0x4f)) { + if (i + 1 >= len) + goto error; + + sf = g_try_new0(struct stk_file, 1); + if (sf == NULL) + goto error; + + sf->len = i - start + 2; + memcpy(sf->file, data + start, i - start + 2); + *fl = g_slist_prepend(*fl, sf); + } + + last_type = data[i]; + } + + if ((data[len - 2] != 0x2f) && (data[len - 2] != 0x6f) && + (data[len - 2] != 0x4f)) + goto error; + + *fl = g_slist_reverse(*fl); + return TRUE; + +error: + g_slist_foreach(*fl, (GFunc)g_free, NULL); + g_slist_free(*fl); + return FALSE; +} + /* Defined in TS 102.223 Section 8.31 */ static gboolean parse_dataobj_icon_id(struct comprehension_tlv_iter *iter, void *user) @@ -533,6 +619,8 @@ static dataobj_handler handler_for_type(enum stk_data_object_type type) return parse_dataobj_text; case STK_DATA_OBJECT_TYPE_TONE: return parse_dataobj_tone; + case STK_DATA_OBJECT_TYPE_FILE_LIST: + return parse_dataobj_file_list; case STK_DATA_OBJECT_TYPE_ICON_ID: return parse_dataobj_icon_id; case STK_DATA_OBJECT_TYPE_IMMEDIATE_RESPONSE: diff --git a/src/stkutil.h b/src/stkutil.h index 1d690b5..93ac854 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -345,6 +345,17 @@ struct stk_result { unsigned char *additional; }; +/* Define the struct of single file in TS102.223 Section 8.18. + * According to TS 11.11 Section 6.2, each file id has two bytes, and the + * maximum Dedicated File level is 2. So the maximum size of file is 8, which + * contains two bytes of Master File, 2 bytes of 1st level Dedicated File, + * 2 bytes of 2nd level Dedicated File and 2 bytes of Elementary File. + */ +struct stk_file { + unsigned char file[8]; + unsigned int len; +}; + /* * According to 102.223 Section 8.72 the length of text attribute CTLV is 1 * byte. This means that the maximum size is 127 according to the rules -- 1.6.3.3 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* RE: [PATCH] Add parser for file list objects 2010-03-23 3:28 ` Gu, Yang @ 2010-03-23 3:49 ` Marcel Holtmann 2010-03-23 4:25 ` Gu, Yang 0 siblings, 1 reply; 5+ messages in thread From: Marcel Holtmann @ 2010-03-23 3:49 UTC (permalink / raw) To: ofono [-- Attachment #1: Type: text/plain, Size: 405 bytes --] Hi Yang, > Attached is the patch modified according to the comments. Please review! I theory I don't mind patches as attachments, but if you are asking for review I prefer them inline. So using git send-email (using linux.intel.com works just fine) is a lot better here. Just mark the patch as [PATCH v2] or similar in the subject line and it is easy to track them. Regards Marcel ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH] Add parser for file list objects 2010-03-23 3:49 ` Marcel Holtmann @ 2010-03-23 4:25 ` Gu, Yang 0 siblings, 0 replies; 5+ messages in thread From: Gu, Yang @ 2010-03-23 4:25 UTC (permalink / raw) To: ofono [-- Attachment #1: Type: text/plain, Size: 872 bytes --] Hi, >-----Original Message----- >From: ofono-bounces(a)ofono.org [mailto:ofono-bounces(a)ofono.org] On Behalf Of >Marcel Holtmann >Sent: Tuesday, March 23, 2010 11:49 AM >To: ofono(a)ofono.org >Subject: RE: [PATCH] Add parser for file list objects > >Hi Yang, > >> Attached is the patch modified according to the comments. Please review! > >I theory I don't mind patches as attachments, but if you are asking for >review I prefer them inline. > >So using git send-email (using linux.intel.com works just fine) is a lot >better here. Just mark the patch as [PATCH v2] or similar in the subject >line and it is easy to track them. Sure. I will resend the patch. >Regards > >Marcel > > >_______________________________________________ >ofono mailing list >ofono(a)ofono.org >http://lists.ofono.org/listinfo/ofono Regards, -Yang ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-03-23 4:25 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-03-19 7:11 [PATCH] Add parser for file list objects Yang Gu 2010-03-22 19:45 ` Denis Kenzior 2010-03-23 3:28 ` Gu, Yang 2010-03-23 3:49 ` Marcel Holtmann 2010-03-23 4:25 ` Gu, Yang
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.