Send response on set_sound_path request
[platform/core/telephony/tel-plugin-imc.git] / src / s_sms.c
1 /*
2  * tel-plugin-imc
3  *
4  * Copyright (c) 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Madhavi Akella <madhavi.a@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <stdint.h>
25
26 #include <glib.h>
27
28 #include <tcore.h>
29 #include <hal.h>
30 #include <core_object.h>
31 #include <plugin.h>
32 #include <queue.h>
33 #include <co_sms.h>
34 #include <co_sim.h>
35 #include <user_request.h>
36 #include <storage.h>
37 #include <server.h>
38 #include <at.h>
39 #include <plugin.h>
40
41 #include <util.h>
42
43 #include "common/TelErr.h"
44 #include "s_common.h"
45 #include "s_sms.h"
46
47 /*=============================================================
48                                                         GSM-SMS Size
49 ==============================================================*/
50 #define MAX_GSM_SMS_TPDU_SIZE                                           244
51 #define MAX_GSM_SMS_MSG_NUM                                                     255
52 #define MAX_GSM_SMS_SERVICE_CENTER_ADDR                         12              /* Maximum number of bytes of service center address */
53 #define MAX_GSM_SMS_CBMI_LIST_SIZE                                      100             /* Maximum number of CBMI list size for CBS 30*2=60  */
54 #define MAX_GSM_SMS_PARAM_RECORD_SIZE                           156             /* Maximum number of bytes SMSP Record size (Y + 28), y : 0 ~ 128 */
55 #define MAX_GSM_SMS_STATUS_FILE_SIZE                                    2               /* Last Used TP-MR + SMS "Memory Cap. Exceeded" Noti Flag */
56 #define TAPI_SIM_SMSP_ADDRESS_LEN                                       20
57
58 /*=============================================================
59                                                         Device Ready
60 ==============================================================*/
61 #define SMS_DEVICE_READY                                1               /* Telephony device ready */
62 #define SMS_DEVICE_NOT_READY                    0               /* Telephony device not ready */
63
64 /*=============================================================
65                                                         CBMI Selection
66 ==============================================================*/
67 #define SMS_CBMI_SELECTED_SOME          0x02    /* Some CBMIs are selected */
68 #define SMS_CBMI_SELECTED_ALL                   0x01    /* All CBMIs are selected */
69
70 /*=============================================================
71                                                         Message Status
72 ==============================================================*/
73 #define AT_REC_UNREAD                                   0               /* Received and Unread */
74 #define AT_REC_READ                                     1               /* Received and Read */
75 #define AT_STO_UNSENT                                   2               /* Unsent */
76 #define AT_STO_SENT                                     3               /* Sent */
77 #define AT_ALL                                                  4               /* Unknown */
78
79 /*=============================================================
80                                                         Memory Status
81 ==============================================================*/
82 #define AT_MEMORY_AVAILABLE                     0               /* Memory Available */
83 #define AT_MEMORY_FULL                          1               /* Memory Full */
84
85 /*=============================================================
86                 SIM CRSM SW1 and Sw2 Error definitions */
87
88 #define AT_SW1_SUCCESS 0x90
89 #define AT_SW2_SUCCESS 0
90 #define AT_SW1_LEN_RESP 0x9F
91
92 #define AT_MAX_RECORD_LEN 256
93  /* SCA 12 bytes long and TDPU is 164 bytes long */
94 #define PDU_LEN_MAX 176
95 #define HEX_PDU_LEN_MAX                 ((PDU_LEN_MAX * 2) + 1)
96
97 /*=============================================================
98                                                         String Preprocessor
99 ==============================================================*/
100 #define CR              '\r'            /* Carriage Return */
101
102 /*=============================================================
103                                                         Developer
104 ==============================================================*/
105 #define SMS_SWAPBYTES16(x) (((x) & 0xffff0000) | (((x) & 0x0000ff00) >> 8) | (((x) & 0x000000ff) << 8))
106
107 void print_glib_list_elem(gpointer data, gpointer user_data);
108
109 static void on_response_class2_read_msg(TcorePending *pending, int data_len, const void *data, void *user_data);
110
111
112 gboolean util_byte_to_hex(const char *byte_pdu, char *hex_pdu, int num_bytes);
113
114 void print_glib_list_elem(gpointer data, gpointer user_data)
115 {
116         char *item = (char *)data;
117
118         dbg("item: [%s]", item);
119 }
120
121 /*=============================================================
122                                                         Send Callback
123 ==============================================================*/
124 static void on_confirmation_sms_message_send(TcorePending *p, gboolean result, void *user_data)
125 {
126         dbg("Entered Function. Request message out from queue");
127
128         dbg("TcorePending: [%p]", p);
129         dbg("result: [%02x]", result);
130         dbg("user_data: [%p]", user_data);
131
132         if (result == TRUE) {
133                 dbg("SEND OK");
134         } else { /* Failed */
135                 dbg("SEND NOK");
136         }
137
138         dbg("Exiting Function. Nothing to return");
139 }
140
141 /*=============================================================
142                                                         Utilities
143 ==============================================================*/
144 static void util_sms_free_memory(void *sms_ptr)
145 {
146         dbg("Entry");
147
148         if (NULL != sms_ptr) {
149                 dbg("Freeing memory location: [%p]", sms_ptr);
150                 free(sms_ptr);
151                 sms_ptr = NULL;
152         } else {
153                 err("Invalid memory location. Nothing to do.");
154         }
155
156         dbg("Exit");
157 }
158
159
160 static int util_sms_decode_smsParameters(unsigned char *incoming, unsigned int length, struct telephony_sms_Params *params)
161 {
162         int alpha_id_len = 0;
163         int i = 0;
164         int nOffset = 0;
165
166         dbg(" RecordLen = %d", length);
167
168         if(incoming == NULL || params == NULL)
169                 return FALSE;
170
171         alpha_id_len = length -SMS_SMSP_PARAMS_MAX_LEN;
172
173         if (alpha_id_len > 0) {
174                 if (alpha_id_len > SMS_SMSP_ALPHA_ID_LEN_MAX) {
175                         alpha_id_len = SMS_SMSP_ALPHA_ID_LEN_MAX;
176                 }
177
178                 for (i = 0; i < alpha_id_len; i++) {
179                         if (0xff == incoming[i]) {
180                                 dbg(" found");
181                                 break;
182                         }
183                 }
184
185                 memcpy(params->szAlphaId, incoming, i);
186
187                 params->alphaIdLen = i;
188
189                 dbg(" Alpha id length = %d", i);
190         } else {
191                 params->alphaIdLen = 0;
192                 dbg(" Alpha id length is zero");
193         }
194
195         params->paramIndicator = incoming[alpha_id_len];
196
197         dbg(" Param Indicator = %02x", params->paramIndicator);
198
199         if ((params->paramIndicator & SMSPValidDestAddr) == 0) {
200                 nOffset = nDestAddrOffset;
201
202                 if (0x00 == incoming[alpha_id_len + nOffset] || 0xff == incoming[alpha_id_len + nOffset]) {
203                         params->tpDestAddr.dialNumLen = 0;
204
205                         dbg("DestAddr Length is 0");
206                 } else {
207                         if (0 < (int) incoming[alpha_id_len + nOffset]) {
208                                 params->tpDestAddr.dialNumLen = (int) (incoming[alpha_id_len + nOffset] - 1);
209
210                                 if (params->tpDestAddr.dialNumLen > SMS_SMSP_ADDRESS_LEN)
211                                         params->tpDestAddr.dialNumLen = SMS_SMSP_ADDRESS_LEN;
212                         } else {
213                                 params->tpDestAddr.dialNumLen = 0;
214                         }
215
216                         params->tpDestAddr.numPlanId = incoming[alpha_id_len + (++nOffset)] & 0x0f;
217                         params->tpDestAddr.typeOfNum = (incoming[alpha_id_len + nOffset] & 0x70) >> 4;
218
219                         memcpy(params->tpDestAddr.diallingNum, &incoming[alpha_id_len + (++nOffset)], (params->tpDestAddr.dialNumLen));
220
221                         dbg("Dest TON is %d", params->tpDestAddr.typeOfNum);
222                         dbg("Dest NPI is %d", params->tpDestAddr.numPlanId);
223                         dbg("Dest Length = %d", params->tpDestAddr.dialNumLen);
224                         dbg("Dest Addr = %s", params->tpDestAddr.diallingNum);
225                 }
226         } else {
227                 params->tpDestAddr.dialNumLen = 0;
228         }
229
230         if ((params->paramIndicator & SMSPValidSvcAddr) == 0) {
231                 nOffset = nSCAAddrOffset;
232
233                 if (0x00 == (int) incoming[alpha_id_len + nOffset] || 0xff == (int) incoming[alpha_id_len + nOffset]) {
234                         params->tpSvcCntrAddr.dialNumLen = 0;
235
236                         dbg(" SCAddr Length is 0");
237                 } else {
238                         if (0 < (int) incoming[alpha_id_len + nOffset]) {
239                                 params->tpSvcCntrAddr.dialNumLen = (int) (incoming[alpha_id_len + nOffset] - 1);
240
241                                 if (params->tpSvcCntrAddr.dialNumLen > SMS_SMSP_ADDRESS_LEN)
242                                         params->tpSvcCntrAddr.dialNumLen = SMS_SMSP_ADDRESS_LEN;
243
244                                 params->tpSvcCntrAddr.numPlanId = incoming[alpha_id_len + (++nOffset)] & 0x0f;
245                                 params->tpSvcCntrAddr.typeOfNum = (incoming[alpha_id_len + nOffset] & 0x70) >> 4;
246
247                                 memcpy(params->tpSvcCntrAddr.diallingNum, &incoming[alpha_id_len + (++nOffset)], (params->tpSvcCntrAddr.dialNumLen));
248
249                                 dbg("SCAddr Length = %d ", params->tpSvcCntrAddr.dialNumLen);
250                                 dbg("SCAddr TON is %d", params->tpSvcCntrAddr.typeOfNum);
251                                 dbg("SCAddr NPI is %d", params->tpSvcCntrAddr.numPlanId);
252
253                                 for (i = 0; i < (int) params->tpSvcCntrAddr.dialNumLen; i++)
254                                         dbg("SCAddr = %d [%02x]", i, params->tpSvcCntrAddr.diallingNum[i]);
255                         } else {
256                                 params->tpSvcCntrAddr.dialNumLen = 0;
257                         }
258                 }
259         } else if ((0x00 < (int) incoming[alpha_id_len + nSCAAddrOffset] && (int) incoming[alpha_id_len + nSCAAddrOffset] <= 12)
260                            || 0xff != (int) incoming[alpha_id_len + nSCAAddrOffset]) {
261                 nOffset = nSCAAddrOffset;
262
263                 if (0x00 == (int) incoming[alpha_id_len + nOffset] || 0xff == (int) incoming[alpha_id_len + nOffset]) {
264                         params->tpSvcCntrAddr.dialNumLen = 0;
265                         dbg("SCAddr Length is 0");
266                 } else {
267                         if (0 < (int) incoming[alpha_id_len + nOffset]) {
268                                 params->tpSvcCntrAddr.dialNumLen = (int) (incoming[alpha_id_len + nOffset] - 1);
269
270                                 params->tpSvcCntrAddr.dialNumLen = incoming[alpha_id_len + nOffset] - 1;
271
272                                 if (params->tpSvcCntrAddr.dialNumLen > SMS_SMSP_ADDRESS_LEN)
273                                         params->tpSvcCntrAddr.dialNumLen = SMS_SMSP_ADDRESS_LEN;
274
275                                 params->tpSvcCntrAddr.numPlanId = incoming[alpha_id_len + (++nOffset)] & 0x0f;
276                                 params->tpSvcCntrAddr.typeOfNum = (incoming[alpha_id_len + nOffset] & 0x70) >> 4;
277
278                                 memcpy(params->tpSvcCntrAddr.diallingNum, &incoming[alpha_id_len + (++nOffset)],
279                                            (params->tpSvcCntrAddr.dialNumLen));
280
281                                 dbg("SCAddr Length = %d ", params->tpSvcCntrAddr.dialNumLen);
282                                 dbg("SCAddr TON is %d", params->tpSvcCntrAddr.typeOfNum);
283                                 dbg("SCAddr NPI is %d", params->tpSvcCntrAddr.numPlanId);
284
285                                 for (i = 0; i < (int) params->tpSvcCntrAddr.dialNumLen; i++)
286                                         dbg("SCAddr = %d [%02x]", i, params->tpSvcCntrAddr.diallingNum[i]);
287                         } else {
288                                 params->tpSvcCntrAddr.dialNumLen = 0;
289                         }
290                 }
291         } else {
292                         params->tpSvcCntrAddr.dialNumLen = 0;
293         }
294
295         if ((params->paramIndicator & SMSPValidPID) == 0 && (alpha_id_len + nPIDOffset) < MAX_GSM_SMS_PARAM_RECORD_SIZE) {
296                 params->tpProtocolId = incoming[alpha_id_len + nPIDOffset];
297         }
298         if ((params->paramIndicator & SMSPValidDCS) == 0 && (alpha_id_len + nDCSOffset) < MAX_GSM_SMS_PARAM_RECORD_SIZE) {
299                 params->tpDataCodingScheme = incoming[alpha_id_len + nDCSOffset];
300         }
301         if ((params->paramIndicator & SMSPValidVP) == 0 && (alpha_id_len + nVPOffset) < MAX_GSM_SMS_PARAM_RECORD_SIZE) {
302                 params->tpValidityPeriod = incoming[alpha_id_len + nVPOffset];
303         }
304
305         dbg(" Alpha Id(Len) = %d", (int) params->alphaIdLen);
306
307         for (i = 0; i < (int) params->alphaIdLen; i++) {
308                 dbg(" Alpha Id = [%d] [%c]", i, params->szAlphaId[i]);
309         }
310         dbg(" PID = %d",params->tpProtocolId);
311         dbg(" DCS = %d",params->tpDataCodingScheme);
312         dbg(" VP = %d",params->tpValidityPeriod);
313
314         return TRUE;
315 }
316
317 /*=============================================================
318                                                         Notifications
319 ==============================================================*/
320 static gboolean on_event_class2_sms_incom_msg(CoreObject *obj,
321                                                                         const void *event_info, void *user_data)
322 {
323         //+CMTI: <mem>,<index>
324
325         GSList *tokens = NULL , *lines = NULL;
326         char *line = NULL, *cmd_str = NULL;
327         int index = 0, mem_type = 0;
328         TcoreHal *hal = NULL;
329         TcoreATRequest *atreq = NULL;
330         TcorePending *pending = NULL;
331
332         dbg("Entered Function");
333
334         lines = (GSList *)event_info;
335         line = (char *)g_slist_nth_data(lines, 0); /* Fetch Line 1 */
336
337         dbg("Line 1: [%s]", line);
338
339         if (!line) {
340                 err("Line 1 is invalid");
341                 return FALSE;
342         }
343
344         tokens = tcore_at_tok_new(line); /* Split Line 1 into tokens */
345         mem_type = atoi(g_slist_nth_data(tokens, 0));       // Type of Memory stored
346         index = atoi((char *) g_slist_nth_data(tokens, 1));
347
348         hal = tcore_object_get_hal(obj);
349         if (NULL == hal) {
350                 err("NULL input. Unable to proceed");
351                 dbg("readMsg: hal: [%p]", hal);
352
353                 dbg("Exit");
354                 return TCORE_RETURN_EINVAL;
355         }
356
357         dbg("index: [%d]", index);
358
359         cmd_str = g_strdup_printf("AT+CMGR=%d", index);
360         atreq     = tcore_at_request_new((const char *)cmd_str, "+CMGR", TCORE_AT_PDU);
361         pending = tcore_pending_new(obj, 0);
362
363         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
364                 err("Out of memory. Unable to proceed");
365                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
366
367                 //free memory we own
368                 g_free(cmd_str);
369                 util_sms_free_memory(atreq);
370                 util_sms_free_memory(pending);
371
372                 dbg("Exit");
373                 return TCORE_RETURN_ENOMEM;
374         }
375
376         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
377
378         tcore_pending_set_request_data(pending, 0, atreq);
379         tcore_pending_set_response_callback(pending, on_response_class2_read_msg, (void *)(uintptr_t)index); //storing index as user data for response
380         tcore_pending_link_user_request(pending, NULL);
381         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
382         tcore_hal_send_request(hal, pending);
383         g_free(cmd_str);
384
385         if(tokens)
386                 tcore_at_tok_free(tokens);
387
388         return TRUE;
389 }
390
391 static gboolean on_event_sms_incom_msg(CoreObject *o, const void *event_info, void *user_data)
392 {
393         //+CMT: [<alpha>],<length><CR><LF><pdu> (PDU mode enabled);
394
395         int rtn = -1;
396         GSList *tokens = NULL;
397         GSList *lines = NULL;
398         char *line = NULL;
399         int pdu_len = 0, no_of_tokens = 0;
400         unsigned char *bytePDU = NULL;
401         struct tnoti_sms_umts_msg gsmMsgInfo;
402         int sca_length = 0;
403
404         dbg("Entered Function");
405
406         lines = (GSList *)event_info;
407         memset(&gsmMsgInfo, 0x00, sizeof(struct tnoti_sms_umts_msg));
408
409         if (2 != g_slist_length(lines)) {
410                 err("Invalid number of lines for +CMT. Must be 2");
411                 return FALSE;
412         }
413
414         line = (char *)g_slist_nth_data(lines, 0); /* Fetch Line 1 */
415
416         dbg("Line 1: [%s]", line);
417
418         if (!line) {
419                 err("Line 1 is invalid");
420                 return FALSE;
421         }
422
423         tokens = tcore_at_tok_new(line); /* Split Line 1 into tokens */
424
425         no_of_tokens = g_slist_length(tokens);
426
427         if (no_of_tokens == 2) { // in case of incoming SMS +CMT
428                 dbg("Alpha ID: [%02x]", g_slist_nth_data(tokens, 0)); /* 0: Alpha ID */
429                 pdu_len = atoi((char *)g_slist_nth_data(tokens, 1));
430                 dbg("pdu_len: [%d]", pdu_len);  /* 1: PDU Length */
431         } else if (no_of_tokens == 1) { // in case of incoming status report +CDS
432                 pdu_len = atoi((char *)g_slist_nth_data(tokens, 0));
433                 dbg("pdu_len: [%d]", pdu_len);  /* 1: PDU Length */
434         }
435
436         line = (char *)g_slist_nth_data(lines, 1); /* Fetch Line 2 */
437
438         dbg("Line 2: [%s]", line);
439
440         if (!line) {
441                 err("Line 2 is invalid");
442                 return FALSE;
443         }
444
445         /* Convert to Bytes */
446         bytePDU = (unsigned char *)util_hexStringToBytes(line);
447
448         sca_length = bytePDU[0];
449
450         dbg("SCA length = %d", sca_length);
451
452         gsmMsgInfo.msgInfo.msgLength = pdu_len;
453
454         if (sca_length == 0) {
455                 memcpy(gsmMsgInfo.msgInfo.tpduData, &bytePDU[1], gsmMsgInfo.msgInfo.msgLength);
456         } else {
457                 memcpy(gsmMsgInfo.msgInfo.sca, &bytePDU[1], sca_length);
458                 memcpy(gsmMsgInfo.msgInfo.tpduData, &bytePDU[sca_length+1], gsmMsgInfo.msgInfo.msgLength);
459         }
460
461         util_hex_dump("      ", strlen(line)/2, bytePDU);
462         util_hex_dump("      ", sca_length, gsmMsgInfo.msgInfo.sca);
463         util_hex_dump("      ", gsmMsgInfo.msgInfo.msgLength,gsmMsgInfo.msgInfo.tpduData);
464
465         rtn = tcore_server_send_notification(tcore_plugin_ref_server(tcore_object_ref_plugin(o)), o, TNOTI_SMS_INCOM_MSG, sizeof(struct tnoti_sms_umts_msg), &gsmMsgInfo);
466
467         if(tokens)
468                 tcore_at_tok_free(tokens);
469
470         free(bytePDU);
471
472         return TRUE;
473 }
474
475
476
477 static gboolean on_event_sms_memory_status(CoreObject *o, const void *event_info, void *user_data)
478 {
479         struct tnoti_sms_memory_status memStatusInfo = {0,};
480
481         int rtn = -1 ,memoryStatus = -1;
482         GSList *tokens=NULL;
483         GSList *lines=NULL;
484         char *line = NULL , *pResp = NULL;
485
486         dbg(" Entry");
487
488         lines = (GSList *)event_info;
489         if (1 != g_slist_length(lines)) {
490                 dbg("unsolicited msg but multiple line");
491         }
492
493         line = (char*)(lines->data);
494
495         if (line) {
496                 dbg("Response OK");
497                 tokens = tcore_at_tok_new(line);
498                 pResp = g_slist_nth_data(tokens, 0);
499
500                 if (pResp) {
501                         memoryStatus = atoi(pResp);
502                         dbg("memoryStatus is %d",memoryStatus);
503                         if (memoryStatus == 0) {//SIM Full condition
504                                 memStatusInfo.status = SMS_PHONE_MEMORY_STATUS_FULL;
505                         }
506                         rtn = tcore_server_send_notification(tcore_plugin_ref_server(tcore_object_ref_plugin(o)), o, TNOTI_SMS_MEMORY_STATUS, sizeof(struct tnoti_sms_memory_status), &memStatusInfo);
507                 }
508                 tcore_at_tok_free(tokens);
509         }else {
510                 dbg("Response NOK");
511         }
512
513         dbg(" Exit ");
514         return TRUE;
515 }
516
517 static gboolean on_event_sms_cb_incom_msg(CoreObject *o, const void *event_info, void *user_data)
518 {
519         //+CBM: <length><CR><LF><pdu>
520
521         struct tnoti_sms_cellBroadcast_msg cbMsgInfo;
522
523         int rtn = -1 , length = 0;
524         char * line = NULL, *pdu = NULL, *pResp = NULL;
525         GSList *tokens = NULL;
526         GSList *lines = NULL;
527
528         dbg(" Func Entrance");
529
530         lines = (GSList *)event_info;
531
532         memset(&cbMsgInfo, 0, sizeof(struct tnoti_sms_cellBroadcast_msg));
533
534         line = (char *)(lines->data);
535
536         if (line != NULL) {
537                 dbg("Response OK");
538                 dbg("Noti line is %s",line);
539                 tokens = tcore_at_tok_new(line); /* Split Line 1 into tokens */
540
541                 pResp = g_slist_nth_data(tokens, 0);
542                 if (pResp) {
543                         length = atoi(pResp);
544                 } else {
545                         dbg("token 0 is null");
546                 }
547
548                 pdu = g_slist_nth_data(lines, 1);
549                 if (pdu != NULL) {
550                         cbMsgInfo.cbMsg.length = length;
551                         cbMsgInfo.cbMsg.cbMsgType = SMS_CB_MSG_GSM;
552
553                         dbg("CB Msg LENGTH [%2x]", length);
554
555                         if ((cbMsgInfo.cbMsg.length >0) && (SMS_CB_SIZE_MAX >= cbMsgInfo.cbMsg.length)) {
556                                 unsigned char *byte_pdu = NULL;
557
558                                 byte_pdu = (unsigned char *)util_hexStringToBytes(pdu);
559
560                                 memcpy(cbMsgInfo.cbMsg.msgData, (char*)byte_pdu, cbMsgInfo.cbMsg.length);
561                                 rtn = tcore_server_send_notification(tcore_plugin_ref_server(tcore_object_ref_plugin(o)), o, TNOTI_SMS_CB_INCOM_MSG, sizeof(struct tnoti_sms_cellBroadcast_msg), &cbMsgInfo);
562                                 free(byte_pdu);
563                         } else {
564                                 dbg("Invalid Message Length");
565                         }
566                 } else {
567                         dbg("Recieved NULL pdu");
568                 }
569         } else {
570                 dbg("Response NOK");
571         }
572
573         dbg(" Return value [%d]",rtn);
574
575         if(tokens)
576                 tcore_at_tok_free(tokens);
577
578         return TRUE;
579 }
580
581
582 /*=============================================================
583                                                         Responses
584 ==============================================================*/
585 static void on_response_sms_delete_msg(TcorePending *p, int data_len, const void *data, void *user_data)
586 {
587         struct tresp_sms_delete_msg delMsgInfo = {0,};
588         UserRequest *ur = NULL;
589         const TcoreATResponse *atResp = data;
590
591         int rtn = -1;
592         int index = (int) user_data;
593
594         dbg(" Func Entrance");
595
596         ur = tcore_pending_ref_user_request(p);
597         if (atResp->success) {
598                 dbg("Response OK");
599                 delMsgInfo.index = index;
600                 delMsgInfo.result = SMS_SENDSMS_SUCCESS;
601         } else {
602                 dbg("Response NOK");
603                 delMsgInfo.index = index;
604                 delMsgInfo.result = SMS_DEVICE_FAILURE;
605         }
606
607         rtn = tcore_user_request_send_response(ur, TRESP_SMS_DELETE_MSG, sizeof(struct tresp_sms_delete_msg), &delMsgInfo);
608
609         return;
610 }
611
612 static void on_response_sms_save_msg(TcorePending *p, int data_len, const void *data, void *user_data)
613 {
614         struct tresp_sms_save_msg saveMsgInfo = {0,};
615         UserRequest *ur = NULL;
616         const TcoreATResponse *atResp = data;
617         GSList *tokens = NULL;
618         char *line = NULL;
619         char *pResp = NULL;
620         int rtn = -1;
621
622         ur = tcore_pending_ref_user_request(p);
623         if (atResp->success) {
624                 dbg("Response OK");
625                 if (atResp->lines) {
626                         line = (char *)atResp->lines->data;
627                         tokens = tcore_at_tok_new(line);
628                         pResp = g_slist_nth_data(tokens, 0);
629                         if (pResp) {
630                                 dbg("0: %s", pResp);
631                                 saveMsgInfo.index = (atoi(pResp) - 1); /* IMC index starts from 1 */
632                                 saveMsgInfo.result = SMS_SENDSMS_SUCCESS;
633                         } else {
634                                 dbg("No Tokens");
635                                 saveMsgInfo.index = -1;
636                                 saveMsgInfo.result = SMS_DEVICE_FAILURE;
637                         }
638                         tcore_at_tok_free(tokens);
639                 }
640         } else {
641                 dbg("Response NOK");
642                 saveMsgInfo.index = -1;
643                 saveMsgInfo.result = SMS_DEVICE_FAILURE;
644         }
645
646         rtn = tcore_user_request_send_response(ur, TRESP_SMS_SAVE_MSG, sizeof(struct tresp_sms_save_msg), &saveMsgInfo);
647         dbg("Return value [%d]", rtn);
648         return;
649 }
650
651 static void on_response_send_umts_msg(TcorePending *pending, int data_len, const void *data, void *user_data)
652 {
653         const TcoreATResponse *at_response = data;
654         struct tresp_sms_send_umts_msg resp_umts;
655         UserRequest *user_req = NULL;
656
657         int msg_ref = 0;
658         GSList *tokens = NULL;
659         char *gslist_line = NULL, *line_token = NULL;
660
661         dbg("Entry");
662
663         user_req = tcore_pending_ref_user_request(pending);
664
665         if (NULL == user_req) {
666                 err("No user request");
667
668                 dbg("Exit");
669                 return;
670         }
671
672         memset(&resp_umts, 0x00, sizeof(resp_umts));
673         resp_umts.result = SMS_DEVICE_FAILURE;
674
675         if (at_response->success > 0) { // success
676                 dbg("Response OK");
677                 if (at_response->lines) { // lines present in at_response
678                         gslist_line = (char *)at_response->lines->data;
679                         dbg("gslist_line: [%s]", gslist_line);
680
681                         tokens = tcore_at_tok_new(gslist_line); //extract tokens
682
683                         line_token = g_slist_nth_data(tokens, 0);
684                         if (line_token != NULL) {
685                                 msg_ref = atoi(line_token);
686                                 dbg("Message Reference: [%d]", msg_ref);
687
688                                 resp_umts.result = SMS_SENDSMS_SUCCESS;
689                         } else {
690                                 dbg("No Message Reference received");
691                         }
692                         tcore_at_tok_free(tokens);
693                 } else { // no lines in at_response
694                         dbg("No lines");
695                 }
696         } else { // failure
697                 dbg("Response NOK");
698         }
699
700         tcore_user_request_send_response(user_req, TRESP_SMS_SEND_UMTS_MSG, sizeof(resp_umts), &resp_umts);
701
702         dbg("Exit");
703         return;
704 }
705
706 static void on_response_class2_read_msg(TcorePending *pending, int data_len, const void *data, void *user_data)
707 {
708         const TcoreATResponse *at_response = data;
709         GSList *tokens=NULL;
710         char *gslist_line = NULL, *line_token = NULL, *hex_pdu = NULL;
711         int  pdu_len = 0, rtn = 0;
712         unsigned char *bytePDU = NULL;
713         struct tnoti_sms_umts_msg gsmMsgInfo;
714         int sca_length= 0;
715
716         dbg("Entry");
717         dbg("lines: [%p]", at_response->lines);
718         g_slist_foreach(at_response->lines, print_glib_list_elem, NULL); //for debug log
719
720         if (at_response->success > 0) {
721                 dbg("Response OK");
722                 if (at_response->lines) {
723                         //fetch first line
724                         gslist_line = (char *)at_response->lines->data;
725
726                         dbg("gslist_line: [%s]", gslist_line);
727
728                         tokens = tcore_at_tok_new(gslist_line);
729                         dbg("Number of tokens: [%d]", g_slist_length(tokens));
730                         g_slist_foreach(tokens, print_glib_list_elem, NULL); //for debug log
731
732                         line_token = g_slist_nth_data(tokens, 2); //Third Token: Length
733                         if (line_token != NULL) {
734                                 pdu_len = atoi(line_token);
735                                 dbg("Length: [%d]", pdu_len);
736                         }
737
738                         //fetch second line
739                         gslist_line = (char *)at_response->lines->next->data;
740
741                         dbg("gslist_line: [%s]", gslist_line);
742
743                         //free the consumed token
744                         tcore_at_tok_free(tokens);
745
746                         tokens = tcore_at_tok_new(gslist_line);
747                         dbg("Number of tokens: [%d]", g_slist_length(tokens));
748                         g_slist_foreach(tokens, print_glib_list_elem, NULL); //for debug log
749
750                         hex_pdu = g_slist_nth_data(tokens, 0); //Fetch SMS PDU
751
752                         //free the consumed token
753                         tcore_at_tok_free(tokens);
754                 } else {
755                         dbg("No lines");
756                 }
757         } else {
758                 err("Response NOK");
759         }
760
761         /* Convert to Bytes */
762         bytePDU = (unsigned char *)util_hexStringToBytes(hex_pdu);
763
764         sca_length = bytePDU[0];
765
766         dbg("SCA length = %d", sca_length);
767
768         gsmMsgInfo.msgInfo.msgLength = pdu_len;
769
770         if (sca_length == 0) {
771                 memcpy(gsmMsgInfo.msgInfo.tpduData, &bytePDU[1], gsmMsgInfo.msgInfo.msgLength);
772         } else {
773                 memcpy(gsmMsgInfo.msgInfo.sca, bytePDU, sca_length);
774                 memcpy(gsmMsgInfo.msgInfo.tpduData, &bytePDU[sca_length+1], gsmMsgInfo.msgInfo.msgLength);
775         }
776
777         util_hex_dump("      ", strlen(hex_pdu)/2, bytePDU);
778         util_hex_dump("      ", sca_length, gsmMsgInfo.msgInfo.sca);
779         util_hex_dump("      ", gsmMsgInfo.msgInfo.msgLength,gsmMsgInfo.msgInfo.tpduData);
780
781         rtn = tcore_server_send_notification(tcore_plugin_ref_server(tcore_object_ref_plugin(tcore_pending_ref_core_object(pending))), tcore_pending_ref_core_object(pending), TNOTI_SMS_INCOM_MSG, sizeof(struct tnoti_sms_umts_msg), &gsmMsgInfo);
782
783         free(bytePDU);
784
785         dbg("Exit");
786         return;
787 }
788
789 static void on_response_read_msg(TcorePending *pending, int data_len, const void *data, void *user_data)
790 {
791         const TcoreATResponse *at_response = data;
792         struct tresp_sms_read_msg resp_read_msg;
793         UserRequest *user_req = NULL;
794
795         GSList *tokens=NULL;
796         char *gslist_line = NULL, *line_token = NULL, *byte_pdu = NULL, *hex_pdu = NULL;
797         int sca_length = 0;
798         int msg_status = 0, alpha_id = 0, pdu_len = 0;
799         int index = (int)(uintptr_t)user_data;
800
801         dbg("Entry");
802         dbg("index: [%d]", index);
803         g_slist_foreach(at_response->lines, print_glib_list_elem, NULL); //for debug log
804
805         user_req = tcore_pending_ref_user_request(pending);
806         if (NULL == user_req) {
807                 err("No user request");
808
809                 dbg("Exit");
810                 return;
811         }
812
813         memset(&resp_read_msg, 0x00, sizeof(resp_read_msg));
814         resp_read_msg.result = SMS_PHONE_FAILURE;
815
816         if (at_response->success > 0) {
817                 dbg("Response OK");
818                 if (at_response->lines) {
819                         //fetch first line
820                         gslist_line = (char *)at_response->lines->data;
821
822                         dbg("gslist_line: [%s]", gslist_line);
823
824                         tokens = tcore_at_tok_new(gslist_line);
825                         dbg("Number of tokens: [%d]", g_slist_length(tokens));
826                         g_slist_foreach(tokens, print_glib_list_elem, NULL); //for debug log
827
828                         line_token = g_slist_nth_data(tokens, 0); //First Token: Message Status
829                         if (line_token != NULL) {
830                                 msg_status = atoi(line_token);
831                                 dbg("msg_status is %d",msg_status);
832                                 switch (msg_status) {
833                                         case AT_REC_UNREAD:
834                                                 resp_read_msg.dataInfo.msgStatus = SMS_STATUS_UNREAD;
835                                                 break;
836
837                                         case AT_REC_READ:
838                                                 resp_read_msg.dataInfo.msgStatus = SMS_STATUS_READ;
839                                                 break;
840
841                                         case AT_STO_UNSENT:
842                                                 resp_read_msg.dataInfo.msgStatus = SMS_STATUS_UNSENT;
843                                                 break;
844
845                                         case AT_STO_SENT:
846                                                 resp_read_msg.dataInfo.msgStatus = SMS_STATUS_SENT;
847                                                 break;
848
849                                         case AT_ALL: //Fall Through
850                                         default: //Fall Through
851                                                 resp_read_msg.dataInfo.msgStatus = SMS_STATUS_RESERVED;
852                                                 break;
853                                 }
854                         }
855
856                         line_token = g_slist_nth_data(tokens, 1); //Second Token: AlphaID
857                         if (line_token != NULL) {
858                                 alpha_id = atoi(line_token);
859                                 dbg("AlphaID: [%d]", alpha_id);
860                         }
861
862                         line_token = g_slist_nth_data(tokens, 2); //Third Token: Length
863                         if (line_token != NULL) {
864                                 pdu_len = atoi(line_token);
865                                 dbg("Length: [%d]", pdu_len);
866                         }
867
868                         //fetch second line
869                         hex_pdu = (char *) at_response->lines->next->data;
870
871                         dbg("EF-SMS PDU: [%s]", hex_pdu);
872
873                         //free the consumed token
874                         tcore_at_tok_free(tokens);
875
876                         if (NULL != hex_pdu) {
877                                 util_hex_dump("    ", sizeof(hex_pdu), (void *)hex_pdu);
878
879                                 byte_pdu = util_hexStringToBytes(hex_pdu);
880
881                                 sca_length = (int)byte_pdu[0];
882
883                                 resp_read_msg.dataInfo.simIndex = index; //Retrieving index stored as user_data
884
885                                 dbg("SCA Length : %d", sca_length);
886
887                                 resp_read_msg.dataInfo.smsData.msgLength = pdu_len;
888                                 dbg("msgLength: [%d]", resp_read_msg.dataInfo.smsData.msgLength);
889
890                                 if(0 == sca_length) {
891                                         if ((resp_read_msg.dataInfo.smsData.msgLength > 0)
892                                                 && (resp_read_msg.dataInfo.smsData.msgLength <= SMS_SMDATA_SIZE_MAX))   {
893                                                 memset(resp_read_msg.dataInfo.smsData.sca, 0, TAPI_SIM_SMSP_ADDRESS_LEN);
894                                                 memcpy(resp_read_msg.dataInfo.smsData.tpduData, &byte_pdu[1], resp_read_msg.dataInfo.smsData.msgLength);
895
896                                                 resp_read_msg.result = SMS_SUCCESS;
897                                         } else {
898                                                 dbg("Invalid Message Length");
899                                                 resp_read_msg.result = SMS_INVALID_PARAMETER_FORMAT;
900                                         }
901                                 } else {
902                                         if ((resp_read_msg.dataInfo.smsData.msgLength > 0)
903                                                 && (resp_read_msg.dataInfo.smsData.msgLength <= SMS_SMDATA_SIZE_MAX)) {
904                                                 memcpy(resp_read_msg.dataInfo.smsData.sca, (char *)byte_pdu, (sca_length+1));
905                                                 memcpy(resp_read_msg.dataInfo.smsData.tpduData, &byte_pdu[sca_length+1], resp_read_msg.dataInfo.smsData.msgLength);
906
907                                                 util_hex_dump("    ", SMS_SMSP_ADDRESS_LEN, (void *)resp_read_msg.dataInfo.smsData.sca);
908                                                 util_hex_dump("    ", (SMS_SMDATA_SIZE_MAX + 1), (void *)resp_read_msg.dataInfo.smsData.tpduData);
909                                                 util_hex_dump("    ", sizeof(byte_pdu), (void *)byte_pdu);
910
911                                                 resp_read_msg.result = SMS_SUCCESS;
912                                         } else {
913                                                 dbg("Invalid Message Length");
914                                                 resp_read_msg.result = SMS_INVALID_PARAMETER_FORMAT;
915                                         }
916                                 }
917                                 free(byte_pdu);
918                         }else {
919                                 dbg("NULL PDU");
920                         }
921                 }else {
922                         dbg("No lines");
923                 }
924         } else {
925                 err("Response NOK");
926         }
927
928         tcore_user_request_send_response(user_req, TRESP_SMS_READ_MSG, sizeof(resp_read_msg), &resp_read_msg);
929
930         dbg("Exit");
931         return;
932 }
933
934 static void on_response_get_msg_indices(TcorePending *pending, int data_len, const void *data, void *user_data)
935 {
936         const TcoreATResponse *at_response = data;
937         struct tresp_sms_get_storedMsgCnt resp_stored_msg_cnt;
938         UserRequest *user_req = NULL;
939         struct tresp_sms_get_storedMsgCnt *resp_stored_msg_cnt_prev = NULL;
940
941         GSList *tokens = NULL;
942         char *gslist_line = NULL, *line_token = NULL;
943         int gslist_line_count = 0, ctr_loop = 0;
944
945         dbg("Entry");
946
947         resp_stored_msg_cnt_prev = (struct tresp_sms_get_storedMsgCnt *)user_data;
948         user_req = tcore_pending_ref_user_request(pending);
949
950         memset(&resp_stored_msg_cnt, 0x00, sizeof(resp_stored_msg_cnt));
951         resp_stored_msg_cnt.result = SMS_DEVICE_FAILURE;
952
953         if (at_response->success) {
954                 dbg("Response OK");
955                 if (at_response->lines) {
956                         gslist_line_count = g_slist_length(at_response->lines);
957
958                         if (gslist_line_count > SMS_GSM_SMS_MSG_NUM_MAX)
959                                 gslist_line_count = SMS_GSM_SMS_MSG_NUM_MAX;
960
961                         dbg("Number of lines: [%d]", gslist_line_count);
962                         g_slist_foreach(at_response->lines, print_glib_list_elem, NULL); //for debug log
963
964                         for (ctr_loop = 0; ctr_loop < gslist_line_count; ctr_loop++) {
965                                 gslist_line = (char *)g_slist_nth_data(at_response->lines, ctr_loop); /* Fetch Line i */
966
967                                 dbg("gslist_line [%d] is [%s]", ctr_loop, gslist_line);
968
969                                 if (NULL != gslist_line) {
970                                         tokens = tcore_at_tok_new(gslist_line);
971
972                                         g_slist_foreach(tokens, print_glib_list_elem, NULL); //for debug log
973
974                                         line_token = g_slist_nth_data(tokens, 0);
975                                         if (NULL != line_token) {
976                                                 resp_stored_msg_cnt.storedMsgCnt.indexList[ctr_loop] = atoi(line_token);
977                                                 resp_stored_msg_cnt.result = SMS_SENDSMS_SUCCESS;
978                                         } else {
979                                                 dbg("line_token of gslist_line [%d] is NULL", ctr_loop);
980                                                 continue;
981                                         }
982                                         tcore_at_tok_free(tokens);
983                                 } else {
984                                         dbg("gslist_line [%d] is NULL", ctr_loop);
985                                         continue;
986                                 }
987                         }
988                 } else {
989                         dbg("No lines.");
990                         if (resp_stored_msg_cnt_prev->storedMsgCnt.usedCount == 0) { // Check if used count is zero
991                                 resp_stored_msg_cnt.result = SMS_SENDSMS_SUCCESS;
992                         }
993                 }
994         } else {
995                 dbg("Respnose NOK");
996         }
997
998         resp_stored_msg_cnt.storedMsgCnt.totalCount = resp_stored_msg_cnt_prev->storedMsgCnt.totalCount;
999         resp_stored_msg_cnt.storedMsgCnt.usedCount = resp_stored_msg_cnt_prev->storedMsgCnt.usedCount;
1000
1001         util_sms_free_memory(resp_stored_msg_cnt_prev);
1002
1003         dbg("total: [%d], used: [%d], result: [%d]", resp_stored_msg_cnt.storedMsgCnt.totalCount, resp_stored_msg_cnt.storedMsgCnt.usedCount, resp_stored_msg_cnt.result);
1004         for (ctr_loop = 0; ctr_loop < gslist_line_count; ctr_loop++) {
1005                 dbg("index: [%d]", resp_stored_msg_cnt.storedMsgCnt.indexList[ctr_loop]);
1006         }
1007
1008         tcore_user_request_send_response(user_req, TRESP_SMS_GET_STORED_MSG_COUNT, sizeof(resp_stored_msg_cnt), &resp_stored_msg_cnt);
1009
1010         dbg("Exit");
1011         return;
1012 }
1013
1014 static void on_response_get_stored_msg_cnt(TcorePending *pending, int data_len, const void *data, void *user_data)
1015 {
1016         UserRequest *ur = NULL, *ur_dup = NULL;
1017         struct tresp_sms_get_storedMsgCnt *respStoredMsgCnt = NULL;
1018         const TcoreATResponse *atResp = data;
1019         GSList *tokens=NULL;
1020         char *line = NULL , *pResp = NULL , *cmd_str = NULL;
1021         TcoreATRequest *atReq = NULL;
1022         int usedCnt = 0, totalCnt = 0, result = 0;
1023
1024         TcorePending *pending_new = NULL;
1025         CoreObject *o = NULL;
1026
1027         dbg("Entered");
1028
1029         respStoredMsgCnt = malloc(sizeof(struct tresp_sms_get_storedMsgCnt));
1030         result = SMS_DEVICE_FAILURE;
1031
1032         ur = tcore_pending_ref_user_request(pending);
1033         ur_dup = tcore_user_request_ref(ur);
1034         o = tcore_pending_ref_core_object(pending);
1035
1036         if (atResp->success > 0) {
1037                 dbg("Response OK");
1038                 if (NULL != atResp->lines) {
1039                         line = (char *)atResp->lines->data;
1040                         dbg("line is %s",line);
1041
1042                         tokens = tcore_at_tok_new(line);
1043                         pResp = g_slist_nth_data(tokens, 0);
1044
1045                         if (pResp) {
1046                                 usedCnt =atoi(pResp);
1047                                 dbg("used cnt is %d",usedCnt);
1048                         }
1049
1050                         pResp = g_slist_nth_data(tokens, 1);
1051                         if (pResp) {
1052                                 totalCnt =atoi(pResp);
1053                                 result = SMS_SENDSMS_SUCCESS;
1054
1055                                 respStoredMsgCnt->storedMsgCnt.usedCount = usedCnt;
1056                                 respStoredMsgCnt->storedMsgCnt.totalCount = totalCnt;
1057                                 respStoredMsgCnt->result = result;
1058
1059                                 dbg("used %d, total %d, result %d",usedCnt, totalCnt,result);
1060
1061                                 pending_new = tcore_pending_new(o, 0);
1062                                 //Get all messages information
1063                                 cmd_str = g_strdup_printf("AT+CMGL=4");
1064                                 atReq = tcore_at_request_new((const char *)cmd_str, "+CMGL", TCORE_AT_MULTILINE);
1065
1066                                 dbg("cmd str is %s",cmd_str);
1067
1068                                 tcore_pending_set_request_data(pending_new, 0,atReq);
1069                                 tcore_pending_set_response_callback(pending_new, on_response_get_msg_indices, (void *)respStoredMsgCnt);
1070                                 tcore_pending_link_user_request(pending_new, ur_dup);
1071                                 tcore_pending_set_send_callback(pending_new, on_confirmation_sms_message_send, NULL);
1072                                 tcore_hal_send_request(tcore_object_get_hal(o), pending_new);
1073
1074                                 //free the consumed token
1075                                 tcore_at_tok_free(tokens);
1076
1077                                 g_free(cmd_str);
1078
1079                                 dbg("Exit");
1080                                 return;
1081                         }
1082                         //free the consumed token
1083                         if (tokens)
1084                         tcore_at_tok_free(tokens);
1085                 } else {
1086                         dbg("No data");
1087                 }
1088         } else {
1089                 err("Response NOK");
1090         }
1091         respStoredMsgCnt->result = result;
1092         tcore_user_request_send_response(ur, TRESP_SMS_GET_STORED_MSG_COUNT, sizeof(struct tresp_sms_get_storedMsgCnt), &respStoredMsgCnt);
1093
1094
1095         dbg("Exit");
1096         return;
1097 }
1098
1099 static void on_response_get_sca(TcorePending *pending, int data_len, const void *data, void *user_data)
1100 {
1101         const TcoreATResponse *at_response = data;
1102         struct tresp_sms_get_sca respGetSca;
1103         UserRequest *user_req = NULL;
1104
1105         GSList *tokens = NULL;
1106         char *gslist_line = NULL, *sca_addr = NULL, *sca_toa = NULL;
1107
1108         dbg("Entry");
1109
1110         memset(&respGetSca, 0, sizeof(respGetSca));
1111         respGetSca.result = SMS_DEVICE_FAILURE;
1112
1113         user_req = tcore_pending_ref_user_request(pending);
1114
1115         if (at_response->success) {
1116                 dbg("Response OK");
1117                 if (at_response->lines) {
1118                         gslist_line = (char *)at_response->lines->data;
1119
1120                         tokens = tcore_at_tok_new(gslist_line);
1121                         sca_addr = g_slist_nth_data(tokens, 0);
1122                         sca_toa = g_slist_nth_data(tokens, 1);
1123
1124                         if ((NULL != sca_addr)
1125                                 && (NULL != sca_toa)) {
1126                                 dbg("sca_addr: [%s]. sca_toa: [%s]", sca_addr, sca_toa);
1127
1128                                 respGetSca.scaAddress.dialNumLen = strlen(sca_addr);
1129
1130                                 if (145 == atoi(sca_toa)) {
1131                                         respGetSca.scaAddress.typeOfNum = SIM_TON_INTERNATIONAL;
1132                                 } else {
1133                                         respGetSca.scaAddress.typeOfNum = SIM_TON_NATIONAL;
1134                                 }
1135
1136                                 respGetSca.scaAddress.numPlanId = 0;
1137
1138                                 memcpy(respGetSca.scaAddress.diallingNum, sca_addr, strlen(sca_addr));
1139
1140                                 dbg("len [%d], sca_addr [%s], TON [%d], NPI [%d]", respGetSca.scaAddress.dialNumLen, respGetSca.scaAddress.diallingNum, respGetSca.scaAddress.typeOfNum, respGetSca.scaAddress.numPlanId);
1141
1142                                 respGetSca.result = SMS_SENDSMS_SUCCESS;
1143                         } else {
1144                                 err("sca_addr OR sca_toa NULL");
1145                         }
1146                 } else {
1147                         dbg("NO Lines");
1148                 }
1149         } else {
1150                 dbg("Response NOK");
1151         }
1152
1153         tcore_user_request_send_response(user_req, TRESP_SMS_GET_SCA, sizeof(respGetSca), &respGetSca);
1154
1155         if(tokens)
1156                 tcore_at_tok_free(tokens);
1157
1158         dbg("Exit");
1159         return;
1160 }
1161
1162 static void on_response_set_sca(TcorePending *pending, int data_len, const void *data, void *user_data)
1163 {
1164         /*
1165         Response is expected in this format
1166         OK
1167         or
1168         +CMS ERROR: <err>
1169         */
1170         UserRequest *ur;
1171         //copies the AT response data to resp
1172         const TcoreATResponse *atResp = data;
1173         struct tresp_sms_set_sca respSetSca;
1174
1175         memset(&respSetSca, 0, sizeof(struct tresp_sms_set_sca));
1176
1177         ur = tcore_pending_ref_user_request(pending);
1178         if (!ur) {
1179                 dbg("no user_request");
1180                 return;
1181         }
1182
1183         if (atResp->success > 0) {
1184                 dbg("RESPONSE OK");
1185                 respSetSca.result = SMS_SUCCESS;
1186         } else {
1187                 dbg("RESPONSE NOK");
1188                 respSetSca.result = SMS_DEVICE_FAILURE;
1189         }
1190
1191         tcore_user_request_send_response(ur, TRESP_SMS_SET_SCA, sizeof(struct tresp_sms_set_sca), &respSetSca);
1192
1193         return;
1194 }
1195
1196 static void on_response_get_cb_config(TcorePending *p, int data_len, const void *data, void *user_data)
1197 {
1198         UserRequest *ur;
1199         struct tresp_sms_get_cb_config respGetCbConfig;
1200         const TcoreATResponse *atResp = data;
1201         GSList *tokens=NULL;
1202         int i = 0, mode =0;
1203         char *pResp = NULL, *line = NULL;
1204         char delim[] = "-";
1205
1206         memset(&respGetCbConfig, 0, sizeof(struct tresp_sms_get_cb_config));
1207         respGetCbConfig.result = SMS_DEVICE_FAILURE;
1208
1209         ur = tcore_pending_ref_user_request(p);
1210         if (!ur) {
1211                 dbg("no user_request");
1212                 return;
1213         }
1214
1215         respGetCbConfig.cbConfig.net3gppType = SMS_NETTYPE_3GPP;
1216
1217         if (atResp->success) {
1218                 dbg("Response OK");
1219                 if (atResp->lines) {
1220                         line = (char*)atResp->lines->data;
1221                         if (line != NULL) {
1222                                 dbg("line is %s",line);
1223                                 tokens = tcore_at_tok_new(line);
1224                                 pResp = g_slist_nth_data(tokens, 0);
1225                                 if (pResp) {
1226                                         mode = atoi(pResp);
1227                                         respGetCbConfig.cbConfig.cbEnabled = mode;
1228
1229                                         pResp = g_slist_nth_data(tokens, 1);
1230                                         if (pResp) {
1231                                                 GSList *cb_tokens = NULL;
1232                                                 char *cb_mid_str = NULL;
1233                                                 int num_cb_tokens = 0;
1234                                                 char *mid_tok = NULL;
1235                                                 char *first_tok = NULL, *second_tok = NULL;
1236
1237                                                 // 0,1,5,320-478,922
1238                                                 cb_mid_str = util_removeQuotes(pResp);
1239                                                 cb_tokens = tcore_at_tok_new((const char *) cb_mid_str);
1240
1241                                                 num_cb_tokens = g_slist_length(cb_tokens);
1242                                                 dbg("num_cb_tokens = %d", num_cb_tokens);
1243
1244                                                 if (num_cb_tokens == 0) {
1245                                                         if (mode == 1) { // Enable all CBs
1246                                                                 respGetCbConfig.cbConfig.msgIdRangeCount = 1;
1247                                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.fromMsgId = 0x0000;
1248                                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.toMsgId = SMS_GSM_SMS_CBMI_LIST_SIZE_MAX + 1;
1249                                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.selected = TRUE;
1250                                                                         respGetCbConfig.result = SMS_SENDSMS_SUCCESS;
1251                                                         } else { // all CBs disabled
1252                                                                 respGetCbConfig.cbConfig.msgIdRangeCount = 0;
1253                                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.selected = FALSE;
1254                                                                 respGetCbConfig.result = SMS_SENDSMS_SUCCESS;
1255                                                         }
1256                                                 }
1257
1258                                                 for (i = 0; i < num_cb_tokens; i++) {
1259                                                         respGetCbConfig.cbConfig.msgIDs[i].net3gpp.selected = TRUE;
1260                                                         respGetCbConfig.cbConfig.msgIdRangeCount++;
1261
1262                                                         mid_tok = tcore_at_tok_nth(cb_tokens, i);
1263                                                         first_tok = strtok(mid_tok, delim);
1264                                                         second_tok = strtok(NULL, delim);
1265
1266                                                         if ((first_tok != NULL) && (second_tok != NULL)) { // mids in range (320-478)
1267                                                                 dbg("inside if mid_range");
1268                                                                 respGetCbConfig.cbConfig.msgIDs[i].net3gpp.fromMsgId = atoi(first_tok);
1269                                                                 respGetCbConfig.cbConfig.msgIDs[i].net3gpp.toMsgId = atoi(second_tok);
1270                                                         } // single mid value (0,1,5, 922)
1271                                                         else {
1272                                                                 respGetCbConfig.cbConfig.msgIDs[i].net3gpp.fromMsgId = atoi(mid_tok);
1273                                                                 respGetCbConfig.cbConfig.msgIDs[i].net3gpp.toMsgId = atoi(mid_tok);
1274                                                         }
1275                                                 }
1276                                         }
1277                                         }else {
1278                                                 if (mode == 1) {
1279                                                 respGetCbConfig.cbConfig.msgIdRangeCount = 1;
1280                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.fromMsgId = 0x0000;
1281                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.toMsgId = SMS_GSM_SMS_CBMI_LIST_SIZE_MAX + 1;
1282                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.selected = TRUE;
1283                                                 respGetCbConfig.result = SMS_SENDSMS_SUCCESS;
1284                     } else {
1285                                                 respGetCbConfig.cbConfig.msgIdRangeCount = 0;
1286                                                 respGetCbConfig.cbConfig.msgIDs[0].net3gpp.selected = FALSE;
1287                                                 respGetCbConfig.result = SMS_SENDSMS_SUCCESS;
1288                                         }
1289                                 }
1290                         } else {
1291                                         dbg("line is NULL");
1292                         }
1293                 } else {
1294                         dbg("atresp->lines is NULL");
1295                 }
1296         } else {
1297                 dbg("RESPONSE NOK");
1298         }
1299
1300         tcore_user_request_send_response(ur, TRESP_SMS_GET_CB_CONFIG, sizeof(struct tresp_sms_get_cb_config), &respGetCbConfig);
1301
1302         if(tokens)
1303                 tcore_at_tok_free(tokens);
1304
1305         return;
1306 }
1307
1308 static void on_response_set_cb_config(TcorePending *pending, int data_len, const void *data, void *user_data)
1309 {
1310         /*
1311         Response is expected in this format
1312         OK
1313         or
1314         +CMS ERROR: <err>
1315         */
1316
1317         UserRequest *ur;
1318         const TcoreATResponse *resp = data;
1319         int response = 0;
1320         const char *line = NULL;
1321         GSList *tokens=NULL;
1322
1323         struct tresp_sms_set_cb_config respSetCbConfig = {0,};
1324
1325         memset(&respSetCbConfig, 0, sizeof(struct tresp_sms_set_cb_config));
1326
1327         ur = tcore_pending_ref_user_request(pending);
1328         respSetCbConfig.result = SMS_SENDSMS_SUCCESS;
1329
1330         if (resp->success > 0) {
1331                 dbg("RESPONSE OK");
1332         } else {
1333                 dbg("RESPONSE NOK");
1334                 line = (const char*)resp->final_response;
1335                 tokens = tcore_at_tok_new(line);
1336
1337                 if (g_slist_length(tokens) < 1) {
1338                         dbg("err cause not specified or string corrupted");
1339                         respSetCbConfig.result = SMS_DEVICE_FAILURE;
1340                 } else {
1341                         response = atoi(g_slist_nth_data(tokens, 0));
1342                         /* TODO: CMEE error mapping is required. */
1343                         respSetCbConfig.result = SMS_DEVICE_FAILURE;
1344                 }
1345         }
1346         if (!ur) {
1347                 dbg("no user_request");
1348                 return;
1349         }
1350
1351         tcore_user_request_send_response(ur, TRESP_SMS_SET_CB_CONFIG, sizeof(struct tresp_sms_set_cb_config), &respSetCbConfig);
1352
1353         if(tokens)
1354                 tcore_at_tok_free(tokens);
1355
1356         return;
1357 }
1358
1359 static void on_response_set_mem_status(TcorePending *p, int data_len, const void *data, void *user_data)
1360 {
1361         UserRequest *ur;
1362         struct tresp_sms_set_mem_status respSetMemStatus = {0,};
1363         const TcoreATResponse *resp = data;
1364
1365         memset(&respSetMemStatus, 0, sizeof(struct tresp_sms_set_mem_status));
1366
1367         if (resp->success > 0) {
1368                 dbg("RESPONSE OK");
1369                 respSetMemStatus.result = SMS_SENDSMS_SUCCESS;
1370         } else {
1371                 dbg("RESPONSE NOK");
1372                 respSetMemStatus.result = SMS_DEVICE_FAILURE;
1373         }
1374
1375         ur = tcore_pending_ref_user_request(p);
1376         if (!ur) {
1377                 dbg("no user_request");
1378                 return;
1379         }
1380
1381         tcore_user_request_send_response(ur, TRESP_SMS_SET_MEM_STATUS, sizeof(struct tresp_sms_set_mem_status), &respSetMemStatus);
1382
1383         return;
1384 }
1385
1386 static void on_response_set_msg_status(TcorePending *pending, int data_len, const void *data, void *user_data)
1387 {
1388         UserRequest *ur;
1389         struct tresp_sms_set_msg_status respMsgStatus = {0, };
1390         const TcoreATResponse *atResp = data;
1391         int response = 0, sw1 = 0, sw2 = 0;
1392         const char *line = NULL;
1393         char *pResp = NULL;
1394         GSList *tokens = NULL;
1395
1396         dbg("Entry");
1397
1398         memset(&respMsgStatus, 0, sizeof(struct tresp_sms_set_msg_status));
1399         respMsgStatus.result = SMS_DEVICE_FAILURE;
1400
1401         ur = tcore_pending_ref_user_request(pending);
1402
1403         if (atResp->success > 0) {
1404                 dbg("RESPONSE OK");
1405
1406                 if (atResp->lines) {
1407                         line = (const char *) atResp->lines->data;
1408                         tokens = tcore_at_tok_new(line);
1409                         pResp = g_slist_nth_data(tokens, 0);
1410                         if (pResp != NULL) {
1411                                 sw1 = atoi(pResp);
1412                         } else {
1413                                 dbg("sw1 is NULL");
1414                         }
1415                         pResp = g_slist_nth_data(tokens, 1);
1416                         if (pResp != NULL) {
1417                                 sw2 = atoi(pResp);
1418                                 if ((sw1 == AT_SW1_SUCCESS) && (sw2 == 0)) {
1419                                         respMsgStatus.result = SMS_SENDSMS_SUCCESS;
1420                                 }
1421                         } else {
1422                                 dbg("sw2 is NULL");
1423                         }
1424                         pResp = g_slist_nth_data(tokens, 3);
1425
1426                         if (pResp != NULL) {
1427                                 response = atoi(pResp);
1428                                 dbg("response is %s", response);
1429                         }
1430                 } else {
1431                         dbg("No lines");
1432                 }
1433         } else {
1434                 dbg("RESPONSE NOK");
1435         }
1436
1437         tcore_user_request_send_response(ur, TRESP_SMS_SET_MSG_STATUS , sizeof(struct tresp_sms_set_msg_status), &respMsgStatus);
1438
1439         if(tokens)
1440                 tcore_at_tok_free(tokens);
1441
1442         dbg("Exit");
1443         return;
1444 }
1445
1446 static void on_response_get_sms_params(TcorePending *pending, int data_len, const void *data, void *user_data)
1447 {
1448         UserRequest *ur;
1449         struct tresp_sms_get_params respGetParams ;
1450         const TcoreATResponse *atResp = data;
1451         int sw1 = 0, sw2 = 0;
1452         const char *line = NULL;
1453         char *pResp = NULL;
1454         GSList *tokens=NULL;
1455         char *hexData = NULL;
1456     char *recordData = NULL;
1457     int i = 0;
1458
1459         memset(&respGetParams, 0, sizeof(struct tresp_sms_get_params));
1460         respGetParams.result = SMS_DEVICE_FAILURE;
1461
1462         ur = tcore_pending_ref_user_request(pending);
1463
1464         if (atResp->success > 0) {
1465                 dbg("RESPONSE OK");
1466
1467                 if (atResp->lines) {
1468                         line = (const char *) atResp->lines->data;
1469                         tokens = tcore_at_tok_new(line);
1470                         pResp = g_slist_nth_data(tokens, 0);
1471                         if (pResp != NULL) {
1472                                 sw1 = atoi(pResp);
1473                                 dbg("sw1 is %d", sw1);
1474                         } else {
1475                                 dbg("sw1 is NULL");
1476                         }
1477                         pResp = g_slist_nth_data(tokens, 1);
1478                         if (pResp != NULL) {
1479                                 sw2 = atoi(pResp);
1480                                 dbg("sw2 is %d", sw2);
1481                                 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) {
1482                                         respGetParams.result = SMS_SENDSMS_SUCCESS;
1483                                 }
1484                         } else {
1485                                 dbg("sw2 is NULL");
1486                         }
1487                         pResp = g_slist_nth_data(tokens, 2);
1488                         if (pResp != NULL) {
1489                                 hexData = util_removeQuotes(pResp);
1490
1491                                 recordData = util_hexStringToBytes(hexData);
1492                                 util_hex_dump("    ", strlen(hexData) / 2, recordData);
1493
1494                                 respGetParams.paramsInfo.recordLen = strlen(hexData) / 2;
1495
1496                                 util_sms_decode_smsParameters((unsigned char *) recordData, strlen(hexData) / 2, &(respGetParams.paramsInfo));
1497                                 respGetParams.result = SMS_SENDSMS_SUCCESS;
1498
1499                                 for (i = 0; i < (int) respGetParams.paramsInfo.tpSvcCntrAddr.dialNumLen; i++)
1500                                         dbg("SCAddr = %d [%02x]", i, respGetParams.paramsInfo.tpSvcCntrAddr.diallingNum[i]);
1501
1502                                 free(recordData);
1503                                 free(hexData);
1504                         } else {
1505                                 dbg("No response");
1506                         }
1507                         tcore_at_tok_free(tokens);
1508                 }
1509         } else {
1510                 dbg("RESPONSE NOK");
1511         }
1512
1513         tcore_user_request_send_response(ur, TRESP_SMS_GET_PARAMS, sizeof(struct tresp_sms_get_params), &respGetParams);
1514
1515         dbg("Exit");
1516         return;
1517 }
1518
1519 static void on_response_set_sms_params(TcorePending *pending, int data_len, const void *data, void *user_data)
1520 {
1521         UserRequest *ur;
1522         struct tresp_sms_set_params respSetParams = {0, };
1523         const TcoreATResponse *atResp = data;
1524         int sw1 =0 , sw2 = 0;
1525         const char *line = NULL;
1526         char *pResp = NULL;
1527         GSList *tokens=NULL;
1528
1529
1530         memset(&respSetParams, 0, sizeof(struct tresp_sms_set_params));
1531         ur = tcore_pending_ref_user_request(pending);
1532
1533         respSetParams.result = SMS_DEVICE_FAILURE;
1534
1535         if (atResp->success > 0) {
1536                 dbg("RESPONSE OK");
1537
1538                 if (atResp->lines) {
1539                         line = (const char *) atResp->lines->data;
1540                         tokens = tcore_at_tok_new(line);
1541                         pResp = g_slist_nth_data(tokens, 0);
1542                         if (pResp != NULL) {
1543                                 sw1 = atoi(pResp);
1544                         } else {
1545                                 dbg("sw1 is NULL");
1546                         }
1547
1548                         pResp = g_slist_nth_data(tokens, 1);
1549                         if (pResp != NULL) {
1550                                 sw2 = atoi(pResp);
1551                                 if (((sw1 == AT_SW1_SUCCESS) && (sw2 == AT_SW2_SUCCESS)) || (sw1 == 0x91)) {
1552                                         respSetParams.result = SMS_SENDSMS_SUCCESS;
1553                                 }
1554                         } else {
1555                                 dbg("sw2 is NULL");
1556                         }
1557                 } else {
1558                         dbg("No lines");
1559                 }
1560         } else {
1561                 dbg("RESPONSE NOK");
1562         }
1563
1564         tcore_user_request_send_response(ur, TRESP_SMS_SET_PARAMS , sizeof(struct tresp_sms_set_params), &respSetParams);
1565
1566         if(tokens)
1567                 tcore_at_tok_free(tokens);
1568
1569         dbg("Exit");
1570         return;
1571 }
1572
1573 static void on_response_get_paramcnt(TcorePending *p, int data_len, const void *data, void *user_data)
1574 {
1575         UserRequest *ur = NULL;
1576         struct tresp_sms_get_paramcnt respGetParamCnt = {0, };
1577         const TcoreATResponse *atResp = data;
1578         char *line = NULL , *pResp = NULL;
1579         int sw1 = 0 , sw2 = 0, *smsp_record_len = NULL;
1580         int sim_type = 0;
1581         GSList *tokens=NULL;
1582         CoreObject *co_sim = NULL;  //need this to get the sim type GSM/USIM
1583         TcorePlugin *plugin = NULL;
1584
1585         dbg("Entry");
1586
1587         ur = tcore_pending_ref_user_request(p);
1588         respGetParamCnt.result = SMS_DEVICE_FAILURE;
1589
1590         if (atResp->success > 0) {
1591                 dbg("RESPONSE OK");
1592
1593                 if (atResp->lines) {
1594                         line = (char *) atResp->lines->data;
1595
1596                         dbg("line is %s", line);
1597
1598                         tokens = tcore_at_tok_new(line);
1599                         pResp = g_slist_nth_data(tokens, 0);
1600                         if (pResp != NULL) {
1601                                 sw1 = atoi(pResp);
1602                         } else {
1603                                 dbg("sw1 is NULL");
1604                         }
1605                         pResp = g_slist_nth_data(tokens, 1);
1606                         if (pResp != NULL) {
1607                                 sw2 = atoi(pResp);
1608                                 if ((sw1 == 144) && (sw2 == 0)) {
1609                                         respGetParamCnt.result = SMS_SENDSMS_SUCCESS;
1610                                 }
1611                         } else {
1612                                 dbg("sw2 is NULL");
1613                         }
1614                         pResp = g_slist_nth_data(tokens, 2);
1615                         if (pResp != NULL) {
1616                                 char *hexData = NULL;
1617                                 char *recordData = NULL;
1618                                 hexData = util_removeQuotes(pResp);
1619
1620                                 /*1. SIM access success case*/
1621                                 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) {
1622                                         unsigned char tag_len = 0; /*   1 or 2 bytes ??? */
1623                                         int record_len = 0;
1624                                         char num_of_records = 0;
1625                                         unsigned char file_id_len = 0;
1626                                         unsigned short file_id = 0;
1627                                         unsigned short file_size = 0;
1628                                         unsigned short file_type = 0;
1629                                         unsigned short arr_file_id = 0;
1630                                         int arr_file_id_rec_num = 0;
1631
1632                                         /*      handling only last 3 bits */
1633                                         unsigned char file_type_tag = 0x07;
1634                                         unsigned char *ptr_data;
1635
1636                                         recordData = util_hexStringToBytes(hexData);
1637                                         util_hex_dump("    ", strlen(hexData)/2, recordData);
1638
1639                                         ptr_data = (unsigned char *)recordData;
1640
1641                                         co_sim = tcore_plugin_ref_core_object(tcore_pending_ref_plugin(p), CORE_OBJECT_TYPE_SIM);
1642                                         sim_type = tcore_sim_get_type(co_sim);
1643                                         dbg("sim type is %d",sim_type);
1644
1645                                         if (sim_type ==  SIM_TYPE_USIM) {
1646                                                 /*
1647                                                  ETSI TS 102 221 v7.9.0
1648                                                         - Response Data
1649                                                          '62'   FCP template tag
1650                                                          - Response for an EF
1651                                                          '82'   M       File Descriptor
1652                                                          '83'   M       File Identifier
1653                                                         'A5'    O       Proprietary information
1654                                                          '8A'   M       Life Cycle Status Integer
1655                                                          '8B', '8C' or 'AB'     C1      Security attributes
1656                                                         '80'    M       File size
1657                                                          '81'   O       Total file size
1658                                                          '88'   O       Short File Identifier (SFI)
1659                                                 */
1660
1661                                                 /* rsim.res_len  has complete data length received  */
1662
1663                                                 /* FCP template tag - File Control Parameters tag*/
1664                                                 if (*ptr_data == 0x62) {
1665                                                         /* parse complete FCP tag*/
1666                                                         /* increment to next byte */
1667                                                         ptr_data++;
1668                                                         tag_len = *ptr_data++;
1669                                                         /* FCP file descriptor - file type, accessibility, DF, ADF etc*/
1670                                                         if (*ptr_data == 0x82) {
1671                                                                         /* increment to next byte */
1672                                                                         ptr_data++;
1673                                                                         /*2 or 5 value*/
1674                                                                         ptr_data++;
1675                                                         /*      unsigned char file_desc_len = *ptr_data++;*/
1676                                                         /*      dbg("file descriptor length: [%d]", file_desc_len);*/
1677                                                         /* TBD:  currently capture only file type : ignore sharable, non sharable, working, internal etc*/
1678                                                         /* consider only last 3 bits*/
1679                                                         file_type_tag = file_type_tag & (*ptr_data);
1680
1681                                                         switch (file_type_tag) {
1682                                                                 /* increment to next byte */
1683                                                                 ptr_data++;
1684
1685                                                                 case 0x1:
1686                                                                         dbg("Getting FileType: [Transparent file type]");
1687                                                                         /* increment to next byte */
1688                                                                         ptr_data++;
1689                                                                         file_type = 0x01;       //SIM_FTYPE_TRANSPARENT
1690                                                                         /*      data coding byte - value 21 */
1691                                                                         ptr_data++;
1692                                                                         break;
1693
1694                                                                 case 0x2:
1695                                                                         dbg("Getting FileType: [Linear fixed file type]");
1696                                                                         /* increment to next byte */
1697                                                                         ptr_data++;
1698                                                                         /*      data coding byte - value 21 */
1699                                                                         ptr_data++;
1700                                                                         /*      2bytes */
1701                                                                         memcpy(&record_len, ptr_data, 2);
1702                                                                         /* swap bytes */
1703                                                                         record_len = SMS_SWAPBYTES16(record_len);
1704                                                                         ptr_data = ptr_data + 2;
1705                                                                         num_of_records = *ptr_data++;
1706                                                                         /* Data lossy conversation from enum (int) to unsigned char */
1707                                                                         file_type = 0x02;       // SIM_FTYPE_LINEAR_FIXED
1708                                                                         break;
1709
1710                                                                 case 0x6:
1711                                                                         dbg(" Cyclic fixed file type");
1712                                                                         /* increment to next byte */
1713                                                                         ptr_data++;
1714                                                                         /*      data coding byte - value 21 */
1715                                                                         ptr_data++;
1716                                                                         /*      2bytes */
1717                                                                         memcpy(&record_len, ptr_data, 2);
1718                                                                         /* swap bytes  */
1719                                                                         record_len = SMS_SWAPBYTES16(record_len);
1720                                                                         ptr_data = ptr_data + 2;
1721                                                                         num_of_records = *ptr_data++;
1722                                                                         file_type = 0x04;       //SIM_FTYPE_CYCLIC
1723                                                                         break;
1724
1725                                                                 default:
1726                                                                         dbg("not handled file type [0x%x]", *ptr_data);
1727                                                                         break;
1728                                                                 }
1729                                                         } else {
1730                                                                 dbg("INVALID FCP received - DEbug!");
1731                                                                 free(hexData);
1732                                                                 free(recordData);
1733                                                                 tcore_at_tok_free(tokens);
1734                                                                 return;
1735                                                         }
1736
1737                                                         /*File identifier - file id?? */ // 0x84,0x85,0x86 etc are currently ignored and not handled
1738                                                         if (*ptr_data == 0x83) {
1739                                                                 /* increment to next byte */
1740                                                                 ptr_data++;
1741                                                                 file_id_len = *ptr_data++;
1742                                                                 memcpy(&file_id, ptr_data, file_id_len);
1743                                                                 /* swap bytes    */
1744                                                                 file_id = SMS_SWAPBYTES16(file_id);
1745                                                                 ptr_data = ptr_data + 2;
1746                                                                 dbg("Getting FileID=[0x%x]", file_id);
1747                                                         } else {
1748                                                                 dbg("INVALID FCP received - DEbug!");
1749                                                                 free(hexData);
1750                                                                 free(recordData);
1751                                                                 tcore_at_tok_free(tokens);
1752                                                                 return;
1753                                                         }
1754
1755                                                         /*      proprietary information  */
1756                                                         if (*ptr_data == 0xA5) {
1757                                                                 unsigned short prop_len;
1758                                                                 /* increment to next byte */
1759                                                                 ptr_data++;
1760                                                                 /* length */
1761                                                                 prop_len = *ptr_data;
1762                                                                 /* skip data */
1763                                                                 ptr_data = ptr_data + prop_len + 1;
1764                                                         } else {
1765                                                                 dbg("INVALID FCP received - DEbug!");
1766                                                         }
1767
1768                                                         /* life cycle status integer [8A][length:0x01][status]*/
1769                                                         /*
1770                                                          status info b8~b1
1771                                                          00000000 : No information given
1772                                                          00000001 : creation state
1773                                                          00000011 : initialization state
1774                                                          000001-1 : operation state -activated
1775                                                          000001-0 : operation state -deactivated
1776                                                          000011-- : Termination state
1777                                                          b8~b5 !=0, b4~b1=X : Proprietary
1778                                                          Any other value : RFU
1779                                                          */
1780                                                         if (*ptr_data == 0x8A) {
1781                                                                 /* increment to next byte */
1782                                                                 ptr_data++;
1783                                                                 /* length - value 1 */
1784                                                                 ptr_data++;
1785
1786                                                                 switch (*ptr_data) {
1787                                                                         case 0x04:
1788                                                                         case 0x06:
1789                                                                                 dbg("<IPC_RX> operation state -deactivated");
1790                                                                                 ptr_data++;
1791                                                                                 break;
1792
1793                                                                         case 0x05:
1794                                                                         case 0x07:
1795                                                                                 dbg("<IPC_RX> operation state -activated");
1796                                                                                 ptr_data++;
1797                                                                                 break;
1798
1799                                                                         default:
1800                                                                                 dbg("<IPC_RX> DEBUG! LIFE CYCLE STATUS =[0x%x]",*ptr_data);
1801                                                                                 ptr_data++;
1802                                                                                 break;
1803                                                                 }
1804                                                         }
1805
1806                                                         /* related to security attributes : currently not handled*/
1807                                                         if (*ptr_data == 0x86 || *ptr_data == 0x8B || *ptr_data == 0x8C || *ptr_data == 0xAB) {
1808                                                                 /* increment to next byte */
1809                                                                 ptr_data++;
1810                                                                 /* if tag length is 3 */
1811                                                                 if (*ptr_data == 0x03) {
1812                                                                         /* increment to next byte */
1813                                                                         ptr_data++;
1814                                                                         /* EFARR file id */
1815                                                                         memcpy(&arr_file_id, ptr_data, 2);
1816                                                                         /* swap byes */
1817                                                                         arr_file_id = SMS_SWAPBYTES16(arr_file_id);
1818                                                                         ptr_data = ptr_data + 2;
1819                                                                         arr_file_id_rec_num = *ptr_data++;
1820                                                                 } else {
1821                                                                         /* if tag length is not 3 */
1822                                                                         /* ignoring bytes       */
1823                                                                         //      ptr_data = ptr_data + 4;
1824                                                                         dbg("Useless security attributes, so jump to next tag");
1825                                                                         ptr_data = ptr_data + (*ptr_data + 1);
1826                                                                 }
1827                                                         } else {
1828                                                                 dbg("INVALID FCP received[0x%x] - DEbug!", *ptr_data);
1829                                                                 free(hexData);
1830                                                                 free(recordData);
1831                                                                 tcore_at_tok_free(tokens);
1832                                                                 return;
1833                                                         }
1834
1835                                                         dbg("Current ptr_data value is [%x]", *ptr_data);
1836
1837                                                         /* file size excluding structural info*/
1838                                                         if (*ptr_data == 0x80) {
1839                                                                 /* for EF file size is body of file and for Linear or cyclic it is
1840                                                                  * number of recXsizeof(one record)
1841                                                                  */
1842                                                                 /* increment to next byte */
1843                                                                 ptr_data++;
1844                                                                 /* length is 1 byte - value is 2 bytes or more */
1845                                                                 ptr_data++;
1846                                                                 memcpy(&file_size, ptr_data, 2);
1847                                                                 /* swap bytes */
1848                                                                 file_size = SMS_SWAPBYTES16(file_size);
1849                                                                 ptr_data = ptr_data + 2;
1850                                                         } else {
1851                                                                 dbg("INVALID FCP received - DEbug!");
1852                                                                 free(hexData);
1853                                                                 free(recordData);
1854                                                                 tcore_at_tok_free(tokens);
1855                                                                 return;
1856                                                         }
1857
1858                                                         /* total file size including structural info*/
1859                                                         if (*ptr_data == 0x81) {
1860                                                                 int len;
1861                                                                 /* increment to next byte */
1862                                                                 ptr_data++;
1863                                                                 /* length */
1864                                                                 len = *ptr_data;
1865                                                                 /* ignored bytes */
1866                                                                 ptr_data = ptr_data + 3;
1867                                                         } else {
1868                                                                 dbg("INVALID FCP received - DEbug!");
1869                                                                 /* 0x81 is optional tag?? check out! so do not return -1 from here! */
1870                                                                 /* return -1; */
1871                                                         }
1872                                                         /*short file identifier ignored*/
1873                                                         if (*ptr_data == 0x88) {
1874                                                                 dbg("0x88: Do Nothing");
1875                                                                 /*DO NOTHING*/
1876                                                         }
1877                                                 } else {
1878                                                         dbg("INVALID FCP received - DEbug!");
1879                                                         free(hexData);
1880                                                         free(recordData);
1881                                                         tcore_at_tok_free(tokens);
1882                                                         return;
1883                                                 }
1884                                         } else if (sim_type == SIM_TYPE_GSM) {
1885                                                 unsigned char gsm_specific_file_data_len = 0;
1886                                                 /*      ignore RFU byte1 and byte2 */
1887                                                 ptr_data++;
1888                                                 ptr_data++;
1889                                                 /*      file size */
1890                                                 //file_size = p_info->response_len;
1891                                                 memcpy(&file_size, ptr_data, 2);
1892                                                 /* swap bytes */
1893                                                 file_size = SMS_SWAPBYTES16(file_size);
1894                                                 /*      parsed file size */
1895                                                 ptr_data = ptr_data + 2;
1896                                                 /*  file id  */
1897                                                 memcpy(&file_id, ptr_data, 2);
1898                                                 file_id = SMS_SWAPBYTES16(file_id);
1899                                                 dbg(" FILE id --> [%x]", file_id);
1900                                                 ptr_data = ptr_data + 2;
1901                                                 /* save file type - transparent, linear fixed or cyclic */
1902                                                 file_type_tag = (*(ptr_data + 7));
1903
1904                                                 switch (*ptr_data) {
1905                                                         case 0x0:
1906                                                                 /* RFU file type */
1907                                                                 dbg(" RFU file type- not handled - Debug!");
1908                                                                 break;
1909
1910                                                         case 0x1:
1911                                                                 /* MF file type */
1912                                                                 dbg(" MF file type - not handled - Debug!");
1913                                                                 break;
1914
1915                                                         case 0x2:
1916                                                                 /* DF file type */
1917                                                                 dbg(" DF file type - not handled - Debug!");
1918                                                                 break;
1919
1920                                                         case 0x4:
1921                                                                 /* EF file type */
1922                                                                 dbg(" EF file type [%d] ", file_type_tag);
1923                                                                 /*      increment to next byte */
1924                                                                 ptr_data++;
1925
1926                                                                 if (file_type_tag == 0x00 || file_type_tag == 0x01) {
1927                                                                         /* increament to next byte as this byte is RFU */
1928                                                                         ptr_data++;
1929                                                                         file_type =
1930                                                                                         (file_type_tag == 0x00) ? 0x01 : 0x02; // SIM_FTYPE_TRANSPARENT:SIM_FTYPE_LINEAR_FIXED;
1931                                                                 } else {
1932                                                                         /* increment to next byte */
1933                                                                         ptr_data++;
1934                                                                         /*      For a cyclic EF all bits except bit 7 are RFU; b7=1 indicates that */
1935                                                                         /* the INCREASE command is allowed on the selected cyclic file. */
1936                                                                         file_type = 0x04;       // SIM_FTYPE_CYCLIC;
1937                                                                 }
1938                                                                 /* bytes 9 to 11 give SIM file access conditions */
1939                                                                 ptr_data++;
1940                                                                 /* byte 10 has one nibble that is RF U and another for INCREASE which is not used currently */
1941                                                                 ptr_data++;
1942                                                                 /* byte 11 is invalidate and rehabilate nibbles */
1943                                                                 ptr_data++;
1944                                                                 /* byte 12 - file status */
1945                                                                 ptr_data++;
1946                                                                 /* byte 13 - GSM specific data */
1947                                                                 gsm_specific_file_data_len = *ptr_data;
1948                                                                 ptr_data++;
1949                                                                 /*      byte 14 - structure of EF - transparent or linear or cyclic , already saved above */
1950                                                                 ptr_data++;
1951                                                                 /* byte 15 - length of record for linear and cyclic , for transparent it is set to 0x00. */
1952                                                                 record_len = *ptr_data;
1953                                                                 dbg("record length[%d], file size[%d]", record_len, file_size);
1954
1955                                                                 if (record_len != 0)
1956                                                                         num_of_records = (file_size / record_len);
1957
1958                                                                 dbg("Number of records [%d]", num_of_records);
1959                                                                 break;
1960
1961                                                         default:
1962                                                                 dbg(" not handled file type");
1963                                                                 break;
1964                                                 }
1965                                         } else {
1966                                                 dbg(" Card Type - UNKNOWN  [%d]", sim_type);
1967                                         }
1968
1969                                         dbg("EF[0x%x] size[%ld] Type[0x%x] NumOfRecords[%ld] RecordLen[%ld]", file_id, file_size, file_type, num_of_records, record_len);
1970
1971                                         respGetParamCnt.recordCount = num_of_records;
1972                                         respGetParamCnt.result = SMS_SUCCESS;
1973
1974                                         //TO Store smsp record length in the property
1975                                         plugin = tcore_pending_ref_plugin(p);
1976                                         smsp_record_len = tcore_plugin_ref_property(plugin, "SMSPRECORDLEN");
1977                                         memcpy(smsp_record_len, &record_len, sizeof(int));
1978
1979                                         free(recordData);
1980                                         free(hexData);
1981                                 } else {
1982                                         /*2. SIM access fail case*/
1983                                         dbg("SIM access fail");
1984                                         respGetParamCnt.result = SMS_UNKNOWN;
1985                                 }
1986                         } else {
1987                                 dbg("presp is NULL");
1988                         }
1989                 } else {
1990                         dbg("line is blank");
1991                 }
1992         } else {
1993                 dbg("RESPONSE NOK");
1994         }
1995
1996         tcore_user_request_send_response(ur, TRESP_SMS_GET_PARAMCNT, sizeof(struct tresp_sms_get_paramcnt), &respGetParamCnt);
1997
1998         if(tokens)
1999                 tcore_at_tok_free(tokens);
2000
2001         dbg("Exit");
2002         return;
2003 }
2004
2005 static void _response_get_efsms_data(TcorePending *p, int data_len, const void *data, void *user_data)
2006 {
2007         UserRequest *ur = NULL;
2008         UserRequest *dup_ur = NULL;
2009         struct tresp_sms_set_msg_status resp_msg_status = {0,};
2010         const struct treq_sms_set_msg_status *req_msg_status = NULL ;
2011
2012         const TcoreATResponse *resp = data;
2013         char *encoded_data = NULL;
2014         char msg_status = 0;
2015         char *pResp = NULL;
2016         GSList *tokens=NULL;
2017         const char *line = NULL;
2018         int sw1 = 0;
2019         int sw2 = 0;
2020
2021         TcoreHal *hal = NULL;
2022         TcoreATRequest *atreq = NULL;
2023         TcorePending *pending = NULL;
2024         gchar *cmd_str = NULL;
2025
2026         ur = tcore_pending_ref_user_request(p);
2027
2028         req_msg_status = tcore_user_request_ref_data(ur, NULL);
2029
2030         resp_msg_status.result = SMS_DEVICE_FAILURE;
2031
2032         hal = tcore_object_get_hal(tcore_pending_ref_core_object(pending));
2033         dbg("msgStatus: [%x], index [%x]", req_msg_status->msgStatus, req_msg_status->index);
2034
2035         if (resp->success <= 0) {
2036                 goto OUT;
2037         }
2038
2039         {
2040                 dbg("RESPONSE OK");
2041                 if (resp->lines) {
2042                         line = (const char *) resp->lines->data;
2043                         tokens = tcore_at_tok_new(line);
2044                         if (g_slist_length(tokens) != 3) {
2045                                 msg("invalid message");
2046                                 goto OUT;
2047                         }
2048                 }
2049                 sw1 = atoi(g_slist_nth_data(tokens, 0));
2050                 sw2 = atoi(g_slist_nth_data(tokens, 1));
2051                 pResp = g_slist_nth_data(tokens, 2);
2052
2053                 if ((sw1 == 0x90 && sw2 == 0x00) || sw1 == 0x91) {
2054                         switch (req_msg_status->msgStatus) {
2055                                 case SMS_STATUS_READ:
2056                                         msg_status = 0x01;
2057                                         break;
2058
2059                                 case SMS_STATUS_UNREAD:
2060                                         msg_status = 0x03;
2061                                         break;
2062
2063                                 case SMS_STATUS_UNSENT:
2064                                         msg_status = 0x07;
2065                                         break;
2066
2067                                 case SMS_STATUS_SENT:
2068                                         msg_status = 0x05;
2069                                         break;
2070
2071                                 case SMS_STATUS_DELIVERED:
2072                                         msg_status = 0x1D;
2073                                         break;
2074
2075                                 case SMS_STATUS_DELIVERY_UNCONFIRMED:
2076                                         msg_status = 0xD;
2077                                         break;
2078
2079                                 case SMS_STATUS_MESSAGE_REPLACED:
2080                                 case SMS_STATUS_RESERVED:
2081                                 default:
2082                                         msg_status = 0x03;
2083                                         break;
2084                         }
2085
2086                         encoded_data = util_removeQuotes(pResp);
2087
2088                         //overwrite Status byte information
2089                         util_byte_to_hex((const char *)&msg_status, (char *)encoded_data, 1);
2090
2091                         //Update EF-SMS with just status byte overwritten, rest 175 bytes are same as received in read information
2092                         cmd_str = g_strdup_printf("AT+CRSM=220,28476,%d, 4, %d, \"%s\"", (req_msg_status->index+1), PDU_LEN_MAX, encoded_data);
2093                         atreq = tcore_at_request_new((const char *)cmd_str, "+CRSM", TCORE_AT_SINGLELINE);
2094                         pending = tcore_pending_new(tcore_pending_ref_core_object(pending), 0);
2095                         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2096                                 err("Out of memory. Unable to proceed");
2097                                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2098
2099                                 //free memory we own
2100                                 g_free(cmd_str);
2101                                 free(encoded_data);
2102                                 util_sms_free_memory(atreq);
2103                                 util_sms_free_memory(pending);
2104
2105                                 goto OUT;
2106                         }
2107
2108                         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2109
2110                         dup_ur = tcore_user_request_ref(ur);
2111
2112                         tcore_pending_set_request_data(pending, 0, atreq);
2113                         tcore_pending_set_response_callback(pending, on_response_set_msg_status, NULL);
2114                         tcore_pending_link_user_request(pending, dup_ur);
2115                         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2116                         tcore_hal_send_request(hal, pending);
2117
2118                         g_free(cmd_str);
2119                         free(encoded_data);
2120                 }
2121         }
2122
2123 OUT:
2124         if(tokens)
2125                 tcore_at_tok_free(tokens);
2126
2127         tcore_user_request_send_response(ur, TRESP_SMS_SET_MSG_STATUS , sizeof(struct tresp_sms_set_msg_status), &msg_status);
2128
2129         dbg("Exit");
2130
2131         return;
2132 }
2133
2134 /*=============================================================
2135                                                         Requests
2136 ==============================================================*/
2137 static TReturn send_umts_msg(CoreObject *co_sms, UserRequest *ur)
2138 {
2139         const struct treq_sms_send_umts_msg *send_msg;
2140         const unsigned char *tpdu_byte_data, *sca_byte_data;
2141         int tpdu_byte_len, pdu_byte_len;
2142         char buf[HEX_PDU_LEN_MAX];
2143         char pdu[PDU_LEN_MAX];
2144         char *cmd_str;
2145         int pdu_hex_len, mms;
2146         TReturn ret;
2147
2148         dbg("Enter");
2149
2150         send_msg = tcore_user_request_ref_data(ur, NULL);
2151
2152         tpdu_byte_data = send_msg->msgDataPackage.tpduData;
2153         sca_byte_data = send_msg->msgDataPackage.sca;
2154
2155
2156         /* TPDU length is in byte */
2157         tpdu_byte_len = send_msg->msgDataPackage.msgLength;
2158
2159         /* Use same Radio Resource Channel */
2160         mms = send_msg->more;
2161
2162         dbg("TDPU length: [%d]", tpdu_byte_len);
2163         dbg("SCA semi-octet length: [%d]", sca_byte_data[0]);
2164
2165         /* Prepare PDU for hex encoding */
2166         pdu_byte_len = tcore_util_pdu_encode(sca_byte_data, tpdu_byte_data,
2167                                                 tpdu_byte_len, pdu);
2168
2169         pdu_hex_len = (int) tcore_util_encode_hex((unsigned char *) pdu,
2170                                                 pdu_byte_len, buf);
2171
2172         dbg("PDU hexadecimal length: [%d]", pdu_hex_len);
2173
2174         if (mms > 0) {
2175                 cmd_str = g_strdup_printf("AT+CMMS=%d", mms);
2176
2177                 ret = tcore_prepare_and_send_at_request(co_sms, cmd_str, NULL,
2178                                         TCORE_AT_NO_RESULT, NULL, NULL, NULL,
2179                                         on_confirmation_sms_message_send,
2180                                         NULL);
2181                 if (ret != TCORE_RETURN_SUCCESS) {
2182                         err("Failed to prepare and send AT request");
2183                         goto error;
2184                 }
2185
2186                 g_free(cmd_str);
2187         }
2188
2189         cmd_str = g_strdup_printf("AT+CMGS=%d\r%s\x1A", tpdu_byte_len, buf);
2190
2191         ret = tcore_prepare_and_send_at_request(co_sms, cmd_str, "+CMGS:",
2192                                 TCORE_AT_SINGLELINE, ur,
2193                                 on_response_send_umts_msg, NULL,
2194                                 on_confirmation_sms_message_send, NULL);
2195         if (ret != TCORE_RETURN_SUCCESS)
2196                 err("Failed to prepare and send AT request");
2197
2198 error:
2199         g_free(cmd_str);
2200
2201         dbg("Exit");
2202
2203         return ret;
2204 }
2205
2206 static TReturn read_msg(CoreObject *obj, UserRequest *ur)
2207 {
2208         gchar *cmd_str = NULL;
2209         TcoreHal *hal = NULL;
2210         TcoreATRequest *atreq = NULL;
2211         TcorePending *pending = NULL;
2212         const struct treq_sms_read_msg *readMsg = NULL;
2213
2214         dbg("Entry");
2215
2216         readMsg = tcore_user_request_ref_data(ur, NULL);
2217         hal = tcore_object_get_hal(obj);
2218         if (NULL == readMsg || NULL == hal) {
2219                 err("NULL input. Unable to proceed");
2220                 dbg("readMsg: [%p], hal: [%p]", readMsg, hal);
2221
2222                 dbg("Exit");
2223                 return TCORE_RETURN_EINVAL;
2224         }
2225
2226         if(FALSE == tcore_hal_get_power_state(hal)){
2227                 dbg("cp not ready/n");
2228                 return TCORE_RETURN_ENOSYS;
2229         }
2230         dbg("index: [%d]", readMsg->index);
2231
2232         cmd_str = g_strdup_printf("AT+CMGR=%d", (readMsg->index + 1)); //IMC index is one ahead of TAPI
2233         atreq = tcore_at_request_new((const char *)cmd_str, "+CMGR", TCORE_AT_PDU);
2234         pending = tcore_pending_new(obj, 0);
2235
2236         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2237                 err("Out of memory. Unable to proceed");
2238                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2239
2240                 //free memory we own
2241                 g_free(cmd_str);
2242                 util_sms_free_memory(atreq);
2243                 util_sms_free_memory(pending);
2244
2245                 dbg("Exit");
2246                 return TCORE_RETURN_ENOMEM;
2247         }
2248
2249         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2250
2251         tcore_pending_set_request_data(pending, 0, atreq);
2252         tcore_pending_set_response_callback(pending, on_response_read_msg, (void *)(uintptr_t)(readMsg->index)); //storing index as user data for response
2253         tcore_pending_link_user_request(pending, ur);
2254         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2255         tcore_hal_send_request(hal, pending);
2256
2257         g_free(cmd_str);
2258
2259         dbg("Exit");
2260         return TCORE_RETURN_SUCCESS;
2261 }
2262
2263 static TReturn save_msg(CoreObject *obj, UserRequest *ur)
2264 {
2265         gchar *cmd_str = NULL;
2266         TcoreHal *hal = NULL;
2267         TcoreATRequest *atreq = NULL;
2268         TcorePending *pending = NULL;
2269         const struct treq_sms_save_msg *saveMsg = NULL;
2270         int ScLength = 0, pdu_len = 0, stat = 0;
2271         char buf[2*(SMS_SMSP_ADDRESS_LEN+SMS_SMDATA_SIZE_MAX)+1] = {0};
2272         char *hex_pdu = NULL;
2273
2274         dbg("Entry");
2275
2276         saveMsg = tcore_user_request_ref_data(ur, NULL);
2277         hal = tcore_object_get_hal(obj);
2278         if (NULL == saveMsg || NULL == hal) {
2279                 err("NULL input. Unable to proceed");
2280                 dbg("saveMsg: [%p], hal: [%p]", saveMsg, hal);
2281
2282                 dbg("Exit");
2283                 return TCORE_RETURN_EINVAL;
2284         }
2285         if(FALSE == tcore_hal_get_power_state(hal)){
2286                 dbg("cp not ready/n");
2287                 return TCORE_RETURN_ENOSYS;
2288         }
2289
2290         dbg("msgStatus: %x, msgLength: [%d]", saveMsg->msgStatus, saveMsg->msgDataPackage.msgLength);
2291         util_hex_dump("    ", (SMS_SMDATA_SIZE_MAX+1), (void *)saveMsg->msgDataPackage.tpduData);
2292         util_hex_dump("    ", SMS_SMSP_ADDRESS_LEN, (void *)saveMsg->msgDataPackage.sca);
2293
2294         switch (saveMsg->msgStatus) {
2295                 case SMS_STATUS_READ:
2296                         stat = AT_REC_READ;
2297                         break;
2298
2299                 case SMS_STATUS_UNREAD:
2300                         stat = AT_REC_UNREAD;
2301                         break;
2302
2303                 case SMS_STATUS_SENT:
2304                         stat = AT_STO_SENT;
2305                         break;
2306
2307                 case SMS_STATUS_UNSENT:
2308                         stat = AT_STO_UNSENT;
2309                         break;
2310
2311                 default:
2312                         err("Invalid msgStatus");
2313                         dbg("Exit");
2314                         return TCORE_RETURN_EINVAL;
2315         }
2316
2317         if ((saveMsg->msgDataPackage.msgLength > 0)
2318                 && (saveMsg->msgDataPackage.msgLength <= SMS_SMDATA_SIZE_MAX)) {
2319                 ScLength = (int)saveMsg->msgDataPackage.sca[0];
2320
2321                 buf[0] = ScLength;
2322                 dbg("ScLength = %d", ScLength);
2323
2324                 if(ScLength == 0) {
2325                         buf[0] = 0;
2326                 } else {
2327                         memcpy(&buf[1],  saveMsg->msgDataPackage.sca, ScLength);
2328                 }
2329
2330                 memcpy(&buf[ScLength+1],  saveMsg->msgDataPackage.tpduData, saveMsg->msgDataPackage.msgLength);
2331
2332                 pdu_len= saveMsg->msgDataPackage.msgLength + ScLength + 1;
2333                 dbg("pdu_len: [%d]", pdu_len);
2334
2335                 hex_pdu = malloc(pdu_len * 2 + 1);
2336                 util_hex_dump("    ", sizeof(buf), (void *)buf);
2337
2338                 memset (hex_pdu, 0x00, pdu_len * 2 + 1);
2339
2340                 util_byte_to_hex((const char *)buf, (char *)hex_pdu, pdu_len);
2341
2342                 //AT+CMGW=<length>[,<stat>]<CR>PDU is given<ctrl-Z/ESC>
2343                 cmd_str = g_strdup_printf("AT+CMGW=%d,%d%s%s\x1A", saveMsg->msgDataPackage.msgLength, stat, "\r", hex_pdu);
2344                 pending = tcore_pending_new(obj, 0);
2345                 atreq = tcore_at_request_new((const char *)cmd_str, "+CMGW", TCORE_AT_SINGLELINE);
2346
2347                 if(NULL == cmd_str || NULL == atreq || NULL == pending) {
2348                         err("Out of memory. Unable to proceed");
2349                         dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2350
2351                         //free memory we own
2352                         g_free(cmd_str);
2353                         util_sms_free_memory(atreq);
2354                         util_sms_free_memory(pending);
2355                         util_sms_free_memory(hex_pdu);
2356
2357                         dbg("Exit");
2358                         return TCORE_RETURN_ENOMEM;
2359                 }
2360
2361                 util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2362
2363                 tcore_pending_set_request_data(pending, 0, atreq);
2364                 tcore_pending_set_response_callback(pending, on_response_sms_save_msg, NULL);
2365                 tcore_pending_link_user_request(pending, ur);
2366                 tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2367                 tcore_hal_send_request(hal, pending);
2368
2369                 g_free(cmd_str);
2370                 free(hex_pdu);
2371
2372                 dbg("Exit");
2373                 return TCORE_RETURN_SUCCESS;
2374         }
2375
2376         err("Invalid Data len");
2377         dbg("Exit");
2378         return TCORE_RETURN_SMS_INVALID_DATA_LEN;
2379 }
2380
2381 static TReturn delete_msg(CoreObject *obj, UserRequest *ur)
2382 {
2383         gchar *cmd_str = NULL;
2384         TcoreHal *hal = NULL;
2385         TcoreATRequest *atreq = NULL;
2386         TcorePending *pending = NULL;
2387         const struct treq_sms_delete_msg *delete_msg = NULL;
2388
2389         dbg("Entry");
2390
2391         delete_msg = tcore_user_request_ref_data(ur, NULL);
2392         hal = tcore_object_get_hal(obj);
2393         if (NULL == delete_msg || NULL == hal) {
2394                 err("NULL input. Unable to proceed");
2395                 dbg("deleteMsg: [%p], hal: [%p]", delete_msg, hal);
2396
2397                 dbg("Exit");
2398                 return TCORE_RETURN_EINVAL;
2399         }
2400
2401         if(FALSE == tcore_hal_get_power_state(hal)){
2402                 dbg("cp not ready/n");
2403                 return TCORE_RETURN_ENOSYS;
2404         }
2405
2406         dbg("index: %d", delete_msg->index);
2407
2408         if (delete_msg->index == -1) {
2409                 cmd_str = g_strdup_printf("AT+CMGD=0,4"); // Delete All Messages
2410         } else {
2411                 cmd_str = g_strdup_printf("AT+CMGD=%d,0", delete_msg->index + 1); // Delete specified index
2412         }
2413
2414         pending = tcore_pending_new(obj, 0);
2415         atreq = tcore_at_request_new((const char *)cmd_str, NULL, TCORE_AT_NO_RESULT);
2416         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2417                 err("Out of memory. Unable to proceed");
2418                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2419
2420                 //free memory we own
2421                 g_free(cmd_str);
2422                 util_sms_free_memory(atreq);
2423                 util_sms_free_memory(pending);
2424
2425                 dbg("Exit");
2426                 return TCORE_RETURN_ENOMEM;
2427         }
2428
2429         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2430
2431         tcore_pending_set_request_data(pending, 0, atreq);
2432         tcore_pending_set_response_callback(pending, on_response_sms_delete_msg, (void *) (uintptr_t) (delete_msg->index)); // storing index as user data for response
2433         tcore_pending_link_user_request(pending, ur);
2434         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2435         tcore_hal_send_request(hal, pending);
2436
2437         g_free(cmd_str);
2438
2439         dbg("Exit");
2440         return TCORE_RETURN_SUCCESS;
2441 }
2442
2443 static TReturn get_stored_msg_cnt(CoreObject *obj, UserRequest *ur)
2444 {
2445         gchar *cmd_str = NULL;
2446         TcoreHal *hal = NULL;
2447         TcoreATRequest *atreq = NULL;
2448         TcorePending *pending = NULL;
2449
2450         dbg("Entry");
2451
2452         hal = tcore_object_get_hal(obj);
2453         if (NULL == hal) {
2454                 err("NULL HAL. Unable to proceed");
2455
2456                 dbg("Exit");
2457                 return TCORE_RETURN_EINVAL;
2458         }
2459
2460         if(FALSE == tcore_hal_get_power_state(hal)){
2461                 dbg("cp not ready/n");
2462                 return TCORE_RETURN_ENOSYS;
2463         }
2464
2465         cmd_str = g_strdup_printf("AT+CPMS=\"SM\"");
2466         pending = tcore_pending_new(obj, 0);
2467         atreq = tcore_at_request_new((const char *)cmd_str, "+CPMS", TCORE_AT_SINGLELINE);
2468
2469         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2470                 err("Out of memory. Unable to proceed");
2471                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2472
2473                 //free memory we own
2474                 g_free(cmd_str);
2475                 util_sms_free_memory(atreq);
2476                 util_sms_free_memory(pending);
2477
2478                 dbg("Exit");
2479                 return TCORE_RETURN_ENOMEM;
2480         }
2481
2482         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2483
2484         tcore_pending_set_request_data(pending, 0, atreq);
2485         tcore_pending_set_response_callback(pending, on_response_get_stored_msg_cnt, NULL);
2486         tcore_pending_link_user_request(pending, ur);
2487         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2488         tcore_hal_send_request(hal, pending);
2489
2490         g_free(cmd_str);
2491
2492         dbg("Exit");
2493         return TCORE_RETURN_SUCCESS;
2494 }
2495
2496 static TReturn get_sca(CoreObject *obj, UserRequest *ur)
2497 {
2498         gchar * cmd_str = NULL;
2499         TcoreHal *hal = NULL;
2500         TcoreATRequest *atreq = NULL;
2501         TcorePending *pending = NULL;
2502
2503         dbg("Entry");
2504
2505         hal = tcore_object_get_hal(obj);
2506         if (NULL == hal) {
2507                 err("HAL NULL. Unable to proceed");
2508
2509                 dbg("Exit");
2510                 return TCORE_RETURN_EINVAL;
2511         }
2512         if(FALSE == tcore_hal_get_power_state(hal)){
2513                 dbg("cp not ready/n");
2514                 return TCORE_RETURN_ENOSYS;
2515         }
2516
2517         cmd_str = g_strdup_printf("AT+CSCA?");
2518         pending = tcore_pending_new(obj, 0);
2519         atreq = tcore_at_request_new((const char *)cmd_str, "+CSCA", TCORE_AT_SINGLELINE);
2520
2521         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2522                 err("Out of memory. Unable to proceed");
2523                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2524
2525                 //free memory we own
2526                 g_free(cmd_str);
2527                 util_sms_free_memory(atreq);
2528                 util_sms_free_memory(pending);
2529
2530                 dbg("Exit");
2531                 return TCORE_RETURN_ENOMEM;
2532         }
2533
2534         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2535
2536         tcore_pending_set_request_data(pending, 0, atreq);
2537         tcore_pending_set_response_callback(pending, on_response_get_sca, NULL);
2538         tcore_pending_link_user_request(pending, ur);
2539         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2540         tcore_hal_send_request(hal, pending);
2541
2542         g_free(cmd_str);
2543
2544         dbg("Exit");
2545         return TCORE_RETURN_SUCCESS;
2546 }
2547
2548 static TReturn set_sca(CoreObject *obj, UserRequest *ur)
2549 {
2550         gchar *cmd_str = NULL;
2551         TcoreHal *hal = NULL;
2552         TcoreATRequest *atreq = NULL;
2553         TcorePending *pending = NULL;
2554         const struct treq_sms_set_sca *setSca = NULL;
2555         int addrType = 0;
2556
2557         dbg("Entry");
2558
2559         setSca = tcore_user_request_ref_data(ur, NULL);
2560         hal = tcore_object_get_hal(obj);
2561         if (NULL == setSca || NULL == hal) {
2562                 err("NULL input. Unable to proceed");
2563                 dbg("setSca: [%p], hal: [%p]", setSca, hal);
2564
2565                 dbg("Exit");
2566                 return TCORE_RETURN_EINVAL;
2567         }
2568         if(FALSE == tcore_hal_get_power_state(hal)){
2569                 dbg("cp not ready/n");
2570                 return TCORE_RETURN_ENOSYS;
2571         }
2572
2573         dbg("dialNumLen: %u, typeOfNum: %d, numPlanId: %d, ", setSca->scaInfo.dialNumLen, setSca->scaInfo.typeOfNum, setSca->scaInfo.numPlanId);
2574
2575         util_hex_dump("    ", (SMS_SMSP_ADDRESS_LEN+1), (void *)setSca->scaInfo.diallingNum);
2576
2577         addrType = ((setSca->scaInfo.typeOfNum << 4) | setSca->scaInfo.numPlanId) | 0x80;
2578
2579         cmd_str = g_strdup_printf("AT+CSCA=\"%s\",%d", setSca->scaInfo.diallingNum, addrType);
2580         pending = tcore_pending_new(obj, 0);
2581         atreq = tcore_at_request_new((const char *)cmd_str, NULL, TCORE_AT_NO_RESULT);
2582
2583         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2584                 err("Out of memory. Unable to proceed");
2585                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2586
2587                 //free memory we own
2588                 g_free(cmd_str);
2589                 util_sms_free_memory(atreq);
2590                 util_sms_free_memory(pending);
2591
2592                 dbg("Exit");
2593                 return TCORE_RETURN_ENOMEM;
2594         }
2595
2596         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2597
2598         tcore_pending_set_request_data(pending, 0, atreq);
2599         tcore_pending_set_response_callback(pending, on_response_set_sca, NULL);
2600         tcore_pending_link_user_request(pending, ur);
2601         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2602         tcore_hal_send_request(hal, pending);
2603
2604         g_free(cmd_str);
2605
2606         dbg("Exit");
2607         return TCORE_RETURN_SUCCESS;
2608 }
2609
2610 static TReturn get_cb_config(CoreObject *obj, UserRequest *ur)
2611 {
2612         gchar *cmd_str = NULL;
2613         TcoreHal *hal = NULL;
2614         TcoreATRequest *atreq = NULL;
2615         TcorePending *pending = NULL;
2616
2617         dbg("Entry");
2618
2619         hal = tcore_object_get_hal(obj);
2620         if (NULL == hal) {
2621                 err("NULL HAL. Unable to proceed");
2622
2623                 dbg("Exit");
2624                 return TCORE_RETURN_EINVAL;
2625         }
2626         if(FALSE == tcore_hal_get_power_state(hal)){
2627                 dbg("cp not ready/n");
2628                 return TCORE_RETURN_ENOSYS;
2629         }
2630
2631         cmd_str = g_strdup_printf("AT+CSCB?");
2632         pending = tcore_pending_new(obj, 0);
2633         atreq = tcore_at_request_new((const char *)cmd_str, "+CSCB", TCORE_AT_SINGLELINE);
2634         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2635                 err("Out of memory. Unable to proceed");
2636                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2637
2638                 //free memory we own
2639                 g_free(cmd_str);
2640                 util_sms_free_memory(atreq);
2641                 util_sms_free_memory(pending);
2642
2643                 dbg("Exit");
2644                 return TCORE_RETURN_ENOMEM;
2645         }
2646
2647         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2648
2649         tcore_pending_set_request_data(pending, 0, atreq);
2650         tcore_pending_set_response_callback(pending, on_response_get_cb_config, NULL);
2651         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2652         tcore_pending_link_user_request(pending, ur);
2653         tcore_hal_send_request(hal, pending);
2654
2655         g_free(cmd_str);
2656
2657         dbg("Exit");
2658         return TCORE_RETURN_SUCCESS;
2659 }
2660
2661 static TReturn set_cb_config(CoreObject *obj, UserRequest *ur)
2662 {
2663         gchar *cmd_str = NULL;
2664         gchar *mids_str = NULL;
2665         GString *mids_GString = NULL;
2666
2667         TcoreHal *hal = NULL;
2668         TcoreATRequest *atreq = NULL;
2669         TcorePending *pending = NULL;
2670         const struct treq_sms_set_cb_config *setCbConfig = NULL;
2671         int ctr1= 0, ctr2 =0;
2672         unsigned short appendMsgId = 0;
2673
2674         dbg("Entry");
2675
2676         setCbConfig = tcore_user_request_ref_data(ur, NULL);
2677         hal = tcore_object_get_hal(obj);
2678         if (NULL == setCbConfig || NULL == hal) {
2679                 err("NULL input. Unable to proceed");
2680                 dbg("setCbConfig: [%p], hal: [%p]", setCbConfig, hal);
2681
2682                 dbg("Exit");
2683                 return TCORE_RETURN_EINVAL;
2684         }
2685         if(FALSE == tcore_hal_get_power_state(hal)){
2686                 dbg("cp not ready/n");
2687                 return TCORE_RETURN_ENOSYS;
2688         }
2689
2690         dbg("bCBEnabled: %d,  msgIdCount: %d", setCbConfig->cbEnabled, setCbConfig->msgIdRangeCount);
2691
2692         if (setCbConfig->cbEnabled == 2) { //Enable all CBS
2693                 cmd_str = g_strdup_printf("AT+CSCB=1");
2694         } else if ((setCbConfig->cbEnabled == 1) && (setCbConfig->msgIdRangeCount == 0)) { // Special case: Enable all CBS
2695                 cmd_str = g_strdup_printf("AT+CSCB=1");
2696         } else if (setCbConfig->cbEnabled == 0) {//AT+CSCB=0: Disable CBS
2697                 cmd_str = g_strdup_printf("AT+CSCB=0");
2698         } else {
2699                 mids_GString = g_string_new("AT+CSCB=0,\"");
2700
2701                 for(ctr1 = 0; ctr1 < setCbConfig->msgIdRangeCount; ctr1++ ) {
2702                         if( setCbConfig->msgIDs[ctr1].net3gpp.selected == FALSE )
2703                                 continue;
2704
2705                         if( SMS_GSM_SMS_CBMI_LIST_SIZE_MAX <= (setCbConfig->msgIDs[ctr1].net3gpp.toMsgId - setCbConfig->msgIDs[ctr1].net3gpp.fromMsgId) ) {
2706                                 mids_GString = g_string_new("AT+CSCB=1");
2707                                 break;
2708                         }
2709
2710                         appendMsgId = setCbConfig->msgIDs[ctr1].net3gpp.fromMsgId;
2711
2712                         for( ctr2 = 0; (ctr2 <= ((setCbConfig->msgIDs[ctr1].net3gpp.toMsgId) - (setCbConfig->msgIDs[ctr1].net3gpp.fromMsgId))); ctr2++ ) {
2713                                 dbg( "%x", appendMsgId);
2714                                 mids_GString = g_string_append(mids_GString, g_strdup_printf("%d", appendMsgId));
2715
2716                                 if (ctr2 == ((setCbConfig->msgIDs[ctr1].net3gpp.toMsgId) - (setCbConfig->msgIDs[ctr1].net3gpp.fromMsgId))) {
2717                                         mids_GString = g_string_append(mids_GString, "\""); //Mids string termination
2718                                 } else {
2719                                         mids_GString = g_string_append(mids_GString, ",");
2720                                 }
2721
2722                                 appendMsgId++;
2723                         }
2724                 }
2725                 mids_str = g_string_free(mids_GString, FALSE);
2726                 cmd_str = g_strdup_printf("%s", mids_str);
2727                 g_free(mids_str);
2728         }
2729
2730         pending = tcore_pending_new(obj, 0);
2731         atreq = tcore_at_request_new((const char *)cmd_str, NULL, TCORE_AT_NO_RESULT);
2732         if(NULL == cmd_str || NULL == atreq || NULL == pending) {
2733                 err("Out of memory. Unable to proceed");
2734                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2735
2736                 //free memory we own
2737                 g_free(cmd_str);
2738                 util_sms_free_memory(atreq);
2739                 util_sms_free_memory(pending);
2740
2741                 dbg("Exit");
2742                 return TCORE_RETURN_ENOMEM;
2743         }
2744
2745         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2746
2747         tcore_pending_set_request_data(pending, 0, atreq);
2748         tcore_pending_set_response_callback(pending, on_response_set_cb_config, NULL);
2749         tcore_pending_link_user_request(pending, ur);
2750         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2751         tcore_hal_send_request(hal, pending);
2752
2753         g_free(cmd_str);
2754
2755         dbg("Exit");
2756         return TCORE_RETURN_SUCCESS;
2757 }
2758
2759 static TReturn set_mem_status(CoreObject *obj, UserRequest *ur)
2760 {
2761         gchar *cmd_str = NULL;
2762         TcoreHal *hal = NULL;
2763         TcoreATRequest *atreq = NULL;
2764         TcorePending *pending = NULL;
2765         const struct treq_sms_set_mem_status *setMemStatus = NULL;
2766         int memoryStatus = 0;
2767
2768         dbg("Entry");
2769
2770         setMemStatus = tcore_user_request_ref_data(ur, NULL);
2771         hal = tcore_object_get_hal(obj);
2772         if (NULL == setMemStatus || NULL == hal) {
2773                 err("NULL input. Unable to proceed");
2774                 dbg("setMemStatus: [%p], hal: [%p]", setMemStatus, hal);
2775
2776                 dbg("Exit");
2777                 return TCORE_RETURN_EINVAL;
2778         }
2779         if(FALSE == tcore_hal_get_power_state(hal)){
2780                 dbg("cp not ready/n");
2781                 return TCORE_RETURN_ENOSYS;
2782         }
2783
2784         dbg("memory_status: %d", setMemStatus->memory_status);
2785
2786         if(setMemStatus->memory_status < SMS_PDA_MEMORY_STATUS_AVAILABLE
2787                 || setMemStatus->memory_status > SMS_PDA_MEMORY_STATUS_FULL) {
2788                 err("Invalid memory_status");
2789
2790                 dbg("Exit");
2791                 return TCORE_RETURN_EINVAL;
2792         }
2793
2794         switch (setMemStatus->memory_status) {
2795                 case SMS_PDA_MEMORY_STATUS_AVAILABLE:
2796                         memoryStatus = AT_MEMORY_AVAILABLE;
2797                         break;
2798
2799                 case SMS_PDA_MEMORY_STATUS_FULL:
2800                         memoryStatus = AT_MEMORY_FULL;
2801                         break;
2802
2803                 default:
2804                         err("Invalid memory_status");
2805                         dbg("Exit");
2806                         return TCORE_RETURN_EINVAL;
2807         }
2808
2809         cmd_str = g_strdup_printf("AT+XTESM=%d", memoryStatus);
2810         pending = tcore_pending_new(obj, 0);
2811         atreq = tcore_at_request_new((const char *)cmd_str, NULL, TCORE_AT_NO_RESULT);
2812
2813         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2814                 err("Out of memory. Unable to proceed");
2815                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2816
2817                 //free memory we own
2818                 g_free(cmd_str);
2819                 util_sms_free_memory(atreq);
2820                 util_sms_free_memory(pending);
2821
2822                 dbg("Exit");
2823                 return TCORE_RETURN_ENOMEM;
2824         }
2825
2826         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2827
2828         tcore_pending_set_request_data(pending, 0, atreq);
2829         tcore_pending_set_response_callback(pending, on_response_set_mem_status, NULL);
2830         tcore_pending_link_user_request(pending, ur);
2831         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2832         tcore_hal_send_request(hal, pending);
2833
2834         g_free(cmd_str);
2835
2836         dbg("Exit");
2837         return TCORE_RETURN_SUCCESS;
2838 }
2839
2840 static TReturn set_delivery_report(CoreObject *obj, UserRequest *ur)
2841 {
2842         struct tresp_sms_set_delivery_report respSetDeliveryReport = {0,};
2843
2844         respSetDeliveryReport.result = SMS_SUCCESS;
2845
2846         dbg("Entry");
2847         if(FALSE == tcore_hal_get_power_state(tcore_object_get_hal(obj))){
2848                 dbg("cp not ready/n");
2849                 return TCORE_RETURN_ENOSYS;
2850         }
2851
2852         dbg("CP takes care of sending SMS ack to network for all classes of SMS. Sending default success.");
2853
2854         tcore_user_request_send_response(ur, TRESP_SMS_SET_DELIVERY_REPORT, sizeof(struct tresp_sms_set_delivery_report), &respSetDeliveryReport);
2855
2856         dbg("Exit");
2857         return TCORE_RETURN_SUCCESS;
2858 }
2859
2860 static TReturn set_msg_status(CoreObject *obj, UserRequest *ur)
2861 {
2862         gchar *cmd_str = NULL;
2863         TcoreHal *hal = NULL;
2864         TcoreATRequest *atreq = NULL;
2865         TcorePending *pending = NULL;
2866         const struct treq_sms_set_msg_status *msg_status = NULL;
2867
2868         dbg("Entry");
2869         hal = tcore_object_get_hal(obj);
2870         if(FALSE == tcore_hal_get_power_state(hal)){
2871                 dbg("cp not ready/n");
2872                 return TCORE_RETURN_ENOSYS;
2873         }
2874         msg_status = tcore_user_request_ref_data(ur, NULL);
2875
2876         cmd_str = g_strdup_printf("AT+CRSM=178,28476,%d,4,%d", (msg_status->index+1), PDU_LEN_MAX);
2877         atreq = tcore_at_request_new((const char *)cmd_str, "+CRSM", TCORE_AT_SINGLELINE);
2878         pending = tcore_pending_new(obj, 0);
2879         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2880                 err("Out of memory. Unable to proceed");
2881                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2882
2883                 //free memory we own
2884                 g_free(cmd_str);
2885                 util_sms_free_memory(atreq);
2886                 util_sms_free_memory(pending);
2887
2888                 dbg("Exit");
2889                 return TCORE_RETURN_ENOMEM;
2890         }
2891
2892         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2893
2894         tcore_pending_set_request_data(pending, 0, atreq);
2895         tcore_pending_set_response_callback(pending, _response_get_efsms_data, NULL);
2896         tcore_pending_link_user_request(pending, ur);
2897         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2898         tcore_hal_send_request(hal, pending);
2899
2900         g_free(cmd_str);
2901
2902         dbg("Exit");
2903         return TCORE_RETURN_SUCCESS;
2904 }
2905
2906 static TReturn get_sms_params(CoreObject *obj, UserRequest *ur)
2907 {
2908         gchar *cmd_str = NULL;
2909         TcoreHal *hal = NULL;
2910         TcoreATRequest *atreq = NULL;
2911         TcorePending *pending = NULL;
2912         const struct treq_sms_get_params *getSmsParams = NULL;
2913         int record_len = 0 , *smsp_record_len = NULL;
2914
2915         dbg("Entry");
2916
2917         getSmsParams = tcore_user_request_ref_data(ur, NULL);
2918         hal = tcore_object_get_hal(obj);
2919         if (NULL == getSmsParams || NULL == hal) {
2920                 err("NULL input. Unable to proceed");
2921                 dbg("getSmsParams: [%p], hal: [%p]", getSmsParams, hal);
2922
2923                 dbg("Exit");
2924                 return TCORE_RETURN_EINVAL;
2925         }
2926         if(FALSE == tcore_hal_get_power_state(hal)){
2927                 dbg("cp not ready/n");
2928                 return TCORE_RETURN_ENOSYS;
2929         }
2930
2931         smsp_record_len = tcore_plugin_ref_property(tcore_object_ref_plugin(obj), "SMSPRECORDLEN");
2932         record_len = *smsp_record_len;
2933         dbg("record len from property %d", record_len);
2934
2935         //AT+CRSM=command>[,<fileid>[,<P1>,<P2>,<P3>[,<data>[,<pathid>]]]]
2936         cmd_str = g_strdup_printf("AT+CRSM=178,28482,%d,4,%d", (getSmsParams->index + 1), record_len);
2937
2938         dbg("cmd_str is %s",cmd_str);
2939
2940         atreq = tcore_at_request_new((const char *)cmd_str, "+CRSM", TCORE_AT_SINGLELINE);
2941         pending = tcore_pending_new(obj, 0);
2942         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
2943                 err("Out of memory. Unable to proceed");
2944                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
2945
2946                 //free memory we own
2947                 g_free(cmd_str);
2948                 util_sms_free_memory(atreq);
2949                 util_sms_free_memory(pending);
2950
2951                 dbg("Exit");
2952                 return TCORE_RETURN_ENOMEM;
2953         }
2954
2955         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
2956
2957         tcore_pending_set_request_data(pending, 0, atreq);
2958         tcore_pending_set_response_callback(pending, on_response_get_sms_params, NULL);
2959         tcore_pending_link_user_request(pending, ur);
2960         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
2961         tcore_hal_send_request(hal, pending);
2962
2963         g_free(cmd_str);
2964
2965         dbg("Exit");
2966         return TCORE_RETURN_SUCCESS;
2967 }
2968
2969 static TReturn set_sms_params(CoreObject *obj, UserRequest *ur)
2970 {
2971         gchar *cmd_str = NULL;
2972         char *encoded_data = NULL;
2973         unsigned char *temp_data = NULL;
2974         int SMSPRecordLen = 0;
2975
2976         TcoreHal *hal = NULL;
2977         TcoreATRequest *atreq = NULL;
2978         TcorePending *pending = NULL;
2979         const struct treq_sms_set_params *setSmsParams = NULL;
2980         int encoded_data_len = 0;
2981
2982         dbg("Entry");
2983
2984         setSmsParams = tcore_user_request_ref_data(ur, NULL);
2985         hal = tcore_object_get_hal(obj);
2986         if (NULL == setSmsParams || NULL == hal) {
2987                 err("NULL input. Unable to proceed");
2988                 dbg("setSmsParams: [%p], hal: [%p]", setSmsParams, hal);
2989                 return FALSE;
2990         }
2991         if(FALSE == tcore_hal_get_power_state(hal)){
2992                 dbg("cp not ready/n");
2993                 return TCORE_RETURN_ENOSYS;
2994         }
2995
2996         //EFsmsp file size is 28 +Y bytes (Y is alpha id size)
2997         SMSPRecordLen = 28 + setSmsParams->params.alphaIdLen;
2998         temp_data = calloc(SMSPRecordLen,1);
2999         encoded_data = calloc(SMSPRecordLen*2 + 1,1);
3000
3001         _tcore_util_sms_encode_smsParameters(&(setSmsParams->params), temp_data, SMSPRecordLen);
3002
3003         util_byte_to_hex((const char *)temp_data, (char *)encoded_data,SMSPRecordLen);
3004
3005         encoded_data_len = ((SMSPRecordLen) * 2);
3006
3007         hal = tcore_object_get_hal(obj);
3008         pending = tcore_pending_new(obj, 0);
3009
3010         dbg("alpha id len %d encoded data %s. Encoded data len %d",setSmsParams->params.alphaIdLen,encoded_data, encoded_data_len);
3011         cmd_str = g_strdup_printf("AT+CRSM=220,28482,%d,4,%d,\"%s\"",(setSmsParams->params.recordIndex+1),SMSPRecordLen,encoded_data);
3012
3013         dbg("cmd str is %s",cmd_str);
3014         atreq = tcore_at_request_new(cmd_str, "+CRSM:", TCORE_AT_SINGLELINE);
3015
3016         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
3017                 err("Out of memory. Unable to proceed");
3018                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
3019
3020                 //free memory we own
3021                 g_free(cmd_str);
3022                 util_sms_free_memory(atreq);
3023                 util_sms_free_memory(pending);
3024
3025                 util_sms_free_memory(temp_data);
3026                 util_sms_free_memory(encoded_data);
3027
3028                 dbg("Exit");
3029                 return TCORE_RETURN_ENOMEM;
3030         }
3031
3032         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
3033
3034         tcore_pending_set_request_data(pending, 0,atreq);
3035         tcore_pending_set_response_callback(pending, on_response_set_sms_params, NULL);
3036         tcore_pending_link_user_request(pending, ur);
3037         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
3038         tcore_hal_send_request(hal, pending);
3039
3040         g_free(cmd_str);
3041         util_sms_free_memory(temp_data);
3042         util_sms_free_memory(encoded_data);
3043
3044         return TCORE_RETURN_SUCCESS;
3045 }
3046
3047 static TReturn get_paramcnt(CoreObject *obj, UserRequest *ur)
3048 {
3049         gchar *cmd_str = NULL;
3050         TcoreHal *hal = NULL;
3051         TcoreATRequest *atreq = NULL;
3052         TcorePending *pending = NULL;
3053
3054         dbg("Entry");
3055
3056         hal = tcore_object_get_hal(obj);
3057         if (NULL == hal) {
3058                 err("NULL HAL. Unable to proceed");
3059
3060                 dbg("Exit");
3061                 return TCORE_RETURN_EINVAL;
3062         }
3063         if(FALSE == tcore_hal_get_power_state(hal)){
3064                 dbg("cp not ready/n");
3065                 return TCORE_RETURN_ENOSYS;
3066         }
3067
3068         //AT+CRSM=command>[,<fileid>[,<P1>,<P2>,<P3>[,<data>[,<pathid>]]]]
3069         cmd_str = g_strdup_printf("AT+CRSM=192,28482");
3070         atreq = tcore_at_request_new((const char *)cmd_str, "+CRSM", TCORE_AT_SINGLELINE);
3071         pending = tcore_pending_new(obj, 0);
3072
3073         if (NULL == cmd_str || NULL == atreq || NULL == pending) {
3074                 err("NULL pointer. Unable to proceed");
3075                 dbg("cmd_str: [%p], atreq: [%p], pending: [%p]", cmd_str, atreq, pending);
3076
3077                 //free memory we own
3078                 g_free(cmd_str);
3079                 util_sms_free_memory(atreq);
3080                 util_sms_free_memory(pending);
3081
3082                 dbg("Exit");
3083                 return TCORE_RETURN_FAILURE;
3084         }
3085
3086         util_hex_dump("    ", strlen(cmd_str), (void *)cmd_str);
3087
3088         tcore_pending_set_request_data(pending, 0, atreq);
3089         tcore_pending_set_response_callback(pending, on_response_get_paramcnt, NULL);
3090         tcore_pending_link_user_request(pending, ur);
3091         tcore_pending_set_send_callback(pending, on_confirmation_sms_message_send, NULL);
3092         tcore_hal_send_request(hal, pending);
3093
3094         g_free(cmd_str);
3095
3096         dbg("Exit");
3097         return TCORE_RETURN_SUCCESS;
3098 }
3099
3100 static struct tcore_sms_operations sms_ops = {
3101         .send_umts_msg = send_umts_msg,
3102         .read_msg = read_msg,
3103         .save_msg = save_msg,
3104         .delete_msg = delete_msg,
3105         .get_stored_msg_cnt = get_stored_msg_cnt,
3106         .get_sca = get_sca,
3107         .set_sca = set_sca,
3108         .get_cb_config = get_cb_config,
3109         .set_cb_config = set_cb_config,
3110         .set_mem_status = set_mem_status,
3111         .get_pref_brearer = NULL,
3112         .set_pref_brearer = NULL,
3113         .set_delivery_report = set_delivery_report,
3114         .set_msg_status = set_msg_status,
3115         .get_sms_params = get_sms_params,
3116         .set_sms_params = set_sms_params,
3117         .get_paramcnt = get_paramcnt,
3118 };
3119
3120 gboolean s_sms_init(TcorePlugin *cp, CoreObject *co_sms)
3121 {
3122         int *smsp_record_len;
3123         dbg("Entry");
3124
3125         /* Override SMS Operations */
3126         tcore_sms_override_ops(co_sms, &sms_ops);
3127
3128         /* Registering for SMS notifications */
3129         tcore_object_override_callback(co_sms, "\e+CMTI", on_event_class2_sms_incom_msg, NULL);
3130         tcore_object_override_callback(co_sms, "\e+CMT", on_event_sms_incom_msg, NULL);
3131
3132         tcore_object_override_callback(co_sms, "\e+CDS", on_event_sms_incom_msg, NULL);
3133         tcore_object_override_callback(co_sms, "+XSMSMMSTAT", on_event_sms_memory_status, NULL);
3134         tcore_object_override_callback(co_sms, "+CMS", on_event_sms_memory_status, NULL);
3135
3136         tcore_object_override_callback(co_sms, "\e+CBMI", on_event_sms_cb_incom_msg, NULL);
3137         tcore_object_override_callback(co_sms, "\e+CBM", on_event_sms_cb_incom_msg, NULL);
3138
3139         /* Storing SMSP record length */
3140         smsp_record_len = g_new0(int, 1);
3141         tcore_plugin_link_property(cp, "SMSPRECORDLEN", smsp_record_len);
3142
3143         dbg("Exit");
3144         return TRUE;
3145 }
3146
3147 void s_sms_exit(TcorePlugin *cp, CoreObject *co_sms)
3148 {
3149         int *smsp_record_len;
3150
3151         smsp_record_len = tcore_plugin_ref_property(cp, "SMSPRECORDLEN");
3152         g_free(smsp_record_len);
3153
3154         dbg("Exit");
3155 }