All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philippe Nunes <philippe.nunes@linux.intel.com>
To: ofono@ofono.org
Subject: Re: Unable to decode PDU for SMS-STATUS-REPORT
Date: Tue, 26 Jun 2012 11:14:58 +0200	[thread overview]
Message-ID: <4FE97D92.7030306@linux.intel.com> (raw)
In-Reply-To: <c672aae055cfb534c0e37639c1bfa323@toulouse.viveris.com>

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

Hi,

On 06/25/2012 06:20 PM, Audric Schiltknecht wrote:
> On Mon, 25 Jun 2012 18:10:36 +0200, Audric Schiltknecht wrote:
>> Hi guys.
>>
>> I'm having troubles with delivery reports.
>>
>> When I send a message with the property "UseDeliveryReports" set to
>> "true",
>> I can get the delivery report from the GSM modem, but ofono is unable
>> to decode it:
>>
>> ofonod[677]: SMS: < \r\n+CDS:
>>
>> 32\r\n07913386094000F006DB0A810011223344216052714081802160527140228000\r\n
>>
>> ofonod[677]: drivers/atmodem/sms.c:at_cds_notify() Got new
>> Status-Report PDU via CDS:
>> 07913386094000F006DB0A810011223344216052714081802160527140228000, 32
>> ofonod[677]: src/sms.c:ofono_sms_status_notify() len 32 tpdu len 32
>> ofonod[677]: Unable to decode PDU
>>
>> The PDU is valid, since I can decode it using some online tool.
>>
>> It seems that sms_decode does not correctly handle the SMSCC part
>> (913386094000F0),
>> and tries to decode it as the sender address, which obviously fails.
>
>
> Digging a little further in the code, I found that the sms_decode()
> function is responsible
> of decoding the SMSC part of the PDU. However, this is done if tpdu_len
> < len, which is not the case,
> since both of them equal to 32.
>
> If I correctly understand, 'tpdu' is returned by the modem in the +CDS
> notification.
> Here, its value is 32, which is correct as shown in the logs.
> 'len' is calculated in the decode_hex_own_buffer() function called in
> the +CDS notification callback.
> Here, its value also is 32, and I do not see how it could not be that.
>
> Any help to point out my mistake(s) will be appreciated ;)
>

As pointed by Denis, the length given by the CDS notification should be 
the length of the TPDU part (PDU without SMSC). In your case, this value 
should be 24 and not 32.

07913386094000F0 | 06DB0A810011223344216052714081802160527140228000
----------------   ------------------------------------------------
SMSC (8 octets)  |           TPDU (24 octets)

decode_hex_own_buffer() function returns the length of the PDU 
(including the SMSC). In your case, this value is indeed 32.

So, you're facing definitely with an incorrect modem behavior.
Regards,

Philippe.

      reply	other threads:[~2012-06-26  9:14 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-25 16:10 Unable to decode PDU for SMS-STATUS-REPORT Audric Schiltknecht
2012-06-22  8:28 ` Denis Kenzior
2012-06-26  7:18   ` Audric Schiltknecht
2012-06-25 16:20 ` Audric Schiltknecht
2012-06-26  9:14   ` Philippe Nunes [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FE97D92.7030306@linux.intel.com \
    --to=philippe.nunes@linux.intel.com \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.