/[projects]/smsdaemon/SmsPdu.cpp
ViewVC logotype

Diff of /smsdaemon/SmsPdu.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 63 by torben, Thu Jun 12 12:43:29 2008 UTC revision 158 by torben, Mon Dec 8 21:49:49 2008 UTC
# Line 10  Line 10 
10  #include <time.h>  #include <time.h>
11  #include <stdlib.h>  #include <stdlib.h>
12    
13  #include "common.h"  #include "Logger.h"
14  #include "util.h"  #include "Util.h"
15    
16    
17  using namespace std;  using namespace std;
18    
   
19  namespace SmsPdu  namespace SmsPdu
20  {  {
21    
22    
 vector<unsigned char> BcdEncode(string input)  
 {  
         char buf[2] = " ";  
         vector<unsigned char> result;  
23    
24          unsigned char current;          string SwitchChars(string input)
         for (unsigned int i=0; i<input.length(); ++i)  
25          {          {
26                  buf[0] = input.at(i);                  for (unsigned int i=1; i<input.length(); i+=2)
27                  unsigned char tmp = atoi(buf);          {
28                            char tmp = input[i];
29                  if ( (i%2) == 0)                          input[i] = input[i-1];
30                  {                          input[i-1] = tmp;
                         current = tmp;  
                 }  
                 else  
                 {  
                         current |= (tmp<<4);  
                         result.push_back(current);  
31                  }                  }
32                    return input;
33          }          }
34    
35          if ((input.length() % 2) == 1)          string EncodePhonenr(string input)
36          {          {
37                  current |= 0xF0;                  if ( input.at(0) == '+' )
38                  result.push_back(current);                          input.erase(0,1);
39    
40                    if ( (input.length() % 2) == 1)
41                            input.append("F");
42                    return SwitchChars(input);
43          }          }
44    
45          return result;          string DecodePhonenr(string input)
46  }          {
47                    input = SwitchChars(input);
48                    int last = input.length() -1;
49    
50  string HexformatVector(vector<unsigned char> vec)                  if (input.at(last) == 'F')
51  {                          input.erase(last,1);
52          ostringstream os;                  return input;
53            }
54    
55          for (unsigned int i=0; i<vec.size(); ++i)  
56    
57    
58            string HexformatVector(vector<unsigned char> vec)
59          {          {
60                  os.width(2);                  ostringstream os;
                 os.fill('0');  
                 os << hex << uppercase << static_cast<unsigned int>(vec.at(i));  
         }  
61    
62                    for (unsigned int i=0; i<vec.size(); ++i)
63                    {
64                            os.width(2);
65                            os.fill('0');
66                            os << hex << uppercase << static_cast<unsigned int>(vec.at(i));
67                    }
68    
         return os.str();  
 }  
69    
70  std::string Encode8to7bit(vector<unsigned char> vec)                  return os.str();
71  {          }
         string result;  
72    
73          return result;          vector<unsigned char> HexDecodeString(string str)
74  }          {
75                    vector<unsigned char> vec;
76                    for (unsigned int i=0; i<str.length(); i+=2)
77                            vec.push_back( strtol( str.substr(i,2).c_str(), 0, 16 ));
78    
79  vector<unsigned char> Encode7to8bit(std::string str)                  return vec;
80  {          }
         vector<unsigned char> buf;  
81    
82          int shift = 0;          std::string Decode8to7bit(vector<unsigned char> input, int shift_start)
         for (unsigned int i=0; i<str.size(); ++i)  
83          {          {
84                  unsigned char current = str.at(i) & 0x7F;                  string result;
                 unsigned char next = ( (i+1)<str.size()) ? str.at(i+1) : 0;  
                 next &= 0x7F;  
85    
86                  current >>= shift;                  int shift = shift_start;
87                  next <<= (7-shift);                  for (unsigned int i=0; i<input.size(); ++i)
88                    {
89                            unsigned char current = input.at(i);
90                            unsigned char prev = (i>0) ? input.at(i-1) : 0;
91    
92                  unsigned char byte = current | next;                          current <<= shift;
                 buf.push_back(byte);  
93    
94                  if (shift == 6)                          prev >>= (8-shift);
                         i++;  
95    
96                  shift = (shift+1) % 7;                          unsigned char byte = current | prev;
97                            byte &= 0x7F;
98    
99          }                          result.append(1, byte);
100    
101          return buf;                          if (shift == 6)
102  }                                  result.append(1, input.at(i) >> 1);
103    
104  vector<PduInfo> CreateSmsPdu(string to, string message, bool allowMultipart)                          shift = (shift+1) % 7;
 {  
         bool multipart = allowMultipart && message.length() > 160;  
105    
106          const unsigned char UDHI = multipart ? 0x40 : 0;                  }
107    
108          srand(time(0));                  return result;
109          unsigned char csms_ref = rand() % 128;          }
110    
         int part_count;  
111    
         const int PDU_LEN = 153;  
112    
113          if (multipart)  
114          {          vector<unsigned char> Encode7to8bit(std::string str, int shift_start)
                 part_count = message.length() / PDU_LEN;  
                 if (message.length() % PDU_LEN)  
                         part_count++;  
         }  
         else  
115          {          {
116                  part_count = 1;                  vector<unsigned char> buf;
117    
118                    int shift = shift_start;
119                    for (unsigned int i=0; i<str.size(); ++i)
120                    {
121                            unsigned char current = str.at(i) & 0x7F;
122                            unsigned char next = ( (i+1)<str.size()) ? str.at(i+1) : 0;
123                            next &= 0x7F;
124    
125                            current >>= shift;
126                            next <<= (7-shift);
127    
128                            unsigned char byte = current | next;
129                            buf.push_back(byte);
130    
131                            if (shift == 6)
132                                    i++;
133    
134                            shift = (shift+1) % 7;
135    
136                    }
137    
138                    return buf;
139          }          }
140    
141          vector<PduInfo> result;          vector<PduInfo> CreateSmsPdu(string to, string message, bool allowMultipart)
         for (int partnr = 0; partnr < part_count; ++partnr)  
142          {          {
143                  vector<unsigned char> pdu;                  bool multipart = allowMultipart && message.length() > 160;
144    
145                  pdu.push_back(0x00); // use SMSC from phone                  const unsigned char UDHI = multipart ? 0x40 : 0;
                 pdu.push_back( 0x01|UDHI ); // first octet -- no timeout  
                 pdu.push_back(0x00); // TP-MR message reference  
                 pdu.push_back(to.length() ); //length of phone nr  
                 pdu.push_back(0x91); // type of address (international nr  + ISDN/telephone range) - else try 0x81  
146    
147                  vector<unsigned char> phone = BcdEncode(to);                  unsigned char csms_ref = rand() % 128;
                 pdu.insert( pdu.end(), phone.begin(), phone.end());  
148    
149                  pdu.push_back(0x00); // Protocol identifier                  int part_count;
150                  pdu.push_back(0x00); // Data coding scheme  
151                    const int PDU_LEN = 153;
152    
                 string message_part;  
153                  if (multipart)                  if (multipart)
154                  {                  {
155                          message_part = message.substr(0, PDU_LEN);                          if (message.length() > 800)
156                          message.erase(0, PDU_LEN);                          {
157                                    Logger::logMessage("Trying to send multipart sms > 800 bytes !!!");
158                          pdu.push_back( message_part.length()+ 7 );  //UserDataLength                                  message = message.substr(0,800);
159                          pdu.push_back( 0x06 ); // UDH Len                          }
                         pdu.push_back( 0x00 ); // UDH Element Identifier  
                         pdu.push_back( 0x03 ); // UDH element length  
                         pdu.push_back( csms_ref ); // csms_ref reference  
                         pdu.push_back( part_count );  
                         pdu.push_back( partnr+1 );  
                         pdu.push_back( 0x00);  
160    
161                            part_count = message.length() / PDU_LEN;
162                            if (message.length() % PDU_LEN)
163                                    part_count++;
164                  }                  }
165                  else                  else
166                  {                  {
167                          if (message.length() > 160)                          part_count = 1;
168                    }
169    
170                    vector<PduInfo> result;
171                    for (int partnr = 0; partnr < part_count; ++partnr)
172                    {
173                            vector<unsigned char> pdu;
174    
175                            pdu.push_back(0x00); // use SMSC from phone
176                            pdu.push_back( 0x01|UDHI ); // first octet -- no timeout
177                            pdu.push_back(0x00); // TP-MR message reference
178                            pdu.push_back(to.length() ); //length of phone nr
179                            pdu.push_back(0x81); // type of address (international nr  + ISDN/telephone range) - else try 0x81
180    
181    
182                            vector<unsigned char> phone = HexDecodeString( EncodePhonenr(to ));
183                            pdu.insert( pdu.end(), phone.begin(), phone.end());
184    
185                            pdu.push_back(0x00); // Protocol identifier
186                            pdu.push_back(0x00); // Data coding scheme
187    
188                            int shift_start = 0;
189                            string message_part;
190                            if (multipart)
191                          {                          {
192                                  message_part = message.substr(0,160); //truncate to 160                                  message_part = message.substr(0, PDU_LEN);
193                                  Common::instance()->logMessage("Truncated message");                                  message.erase(0, PDU_LEN-1);
194    
195                                    pdu.push_back( message_part.length()+ 7 );  //UserDataLength
196                                    pdu.push_back( 0x06 ); // UDH Len
197                                    pdu.push_back( 0x00 ); // UDH Element Identifier
198                                    pdu.push_back( 0x03 ); // UDH element length
199                                    pdu.push_back( csms_ref ); // csms_ref reference
200                                    pdu.push_back( part_count );
201                                    pdu.push_back( partnr+1 );
202                                    pdu.push_back( 0x00);
203                                    //shift_start = 6;
204                          }                          }
205                          else                          else
206                          {                          {
207                                  message_part = message;                                  if (message.length() > 160)
208                                    {
209                                            message_part = message.substr(0,160); //truncate to 160
210                                            Logger::logMessage("Truncated message");
211                                    }
212                                    else
213                                    {
214                                            message_part = message;
215                                    }
216    
217                                    pdu.push_back( message_part.length() ); //UserDataLength
218                          }                          }
219    
220                          pdu.push_back( message_part.length() ); //UserDataLength                          vector<unsigned char> userData = Encode7to8bit(message_part, shift_start);
221    
222                            pdu.insert( pdu.end(), userData.begin(), userData.end());
223    
224                            PduInfo info;
225                            info.len = pdu.size()-1;
226                            info.pdu = HexformatVector(pdu);
227                            result.push_back(info);
228    
229                    }
230                    return result;
231            }
232    
233            typedef vector<unsigned char>::iterator char_it;
234    
235            string DecodeRawPhonenr(char_it start, char_it end)
236            {
237                    ostringstream os;
238    
239                    for (char_it it = start; it != end; ++it)
240                    {
241                            os.width(2);
242                            os.fill('0');
243                            os << hex << (int)(*it);
244                  }                  }
245                    return DecodePhonenr(os.str());
246            }
247    
248                  vector<unsigned char> userData = Encode7to8bit(message_part);          string DecodeTimestamp(char_it start, char_it end)
249            {
250                    string stamp = DecodeRawPhonenr(start,end);
251    
252                  pdu.insert( pdu.end(), userData.begin(), userData.end());                  ostringstream os;
253    
254                  PduInfo info;                  os << stamp.substr(0,2) << "/"; //year
255                  info.len = pdu.size()-1;                  os << stamp.substr(2,2) << "/"; //month
256                  info.pdu = HexformatVector(pdu);                  os << stamp.substr(4,2) << ","; //day
257                  result.push_back(info);                  os << stamp.substr(6,2) << ":"; //hour
258                    os << stamp.substr(8,2) << ":"; //minute
259                    os << stamp.substr(10,2) ; //second
260    
261                    int timezone = strtol(stamp.substr(12,2).c_str(), 0, 16);
262    
263    
264                    if (timezone > 127)
265                            os << "-";
266                    else
267                            os << "+";
268    
269                    os.width(2);
270                    os.fill('0');
271                    os << (timezone & 0x7F);
272    
273                    return os.str();
274            }
275    
276    
277            SMS ParseSmsPdu(std::string pdu_str)
278            {
279    
280                    vector<unsigned char> pdu = HexDecodeString(pdu_str);
281    
282                    vector<unsigned char>::iterator it = pdu.begin();
283    
284                    it += (*it++); // Skip smsc info
285    
286                    unsigned char deliver_first_octet = (*it++);
287    
288                    bool UDHI = (deliver_first_octet & 0x40) > 0;
289    
290                    unsigned char sender_len = (*it++);
291                    if ( (sender_len % 2) == 1)
292                            sender_len++;
293    
294                    ++it; //ignore Type-Of-Address
295    
296                    string sender = DecodeRawPhonenr( it, it+(sender_len/2) );
297    
298                    it += (sender_len/2);
299                    ++it; //protocol identifier
300                    ++it; //Data encoding
301    
302                    string timestamp = DecodeTimestamp(it, it+7);
303                    it += 7;
304    
305    
306                    unsigned char data_len = (*it++);
307    
308                    int shift_start = 0;
309                    if (UDHI)
310                    {
311                            int udh_len = (*it++);
312                            it += udh_len; //just ignore the User Data Header
313                            data_len -= udh_len;
314    
315                            shift_start = udh_len+1; //make the 8to7bit decode start with the right shift level
316                    }
317    
318    
319                    vector<unsigned char> user_data;
320                    user_data.insert(user_data.end(), it, it+data_len);
321                    
322                    string message = Decode8to7bit(user_data, shift_start).substr(0,data_len);
323    
324                    message = Util::str_trim(message);
325                    
326                    SMS result;
327                    result.SetMessage(message);
328                    result.SetSender(sender);
329    
330                    return result;
331          }          }
         return result;  
 }  
332    
333  }  }
334    

Legend:
Removed from v.63  
changed lines
  Added in v.158

  ViewVC Help
Powered by ViewVC 1.1.20