/* * * oFono - Open Source Telephony * * Copyright (C) 2008-2010 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifdef HAVE_CONFIG_H #include #endif #define _GNU_SOURCE #include #include #include #include #include #include #include #include "smsutil.h" #include "util.h" #include "vendor.h" #include "gatchat.h" #include "gatresult.h" #include "atmodem.h" static const char *csca_prefix[] = { "+CSCA:", NULL }; static const char *csms_prefix[] = { "+CSMS:", NULL }; static const char *cmgf_prefix[] = { "+CMGF:", NULL }; static const char *cpms_prefix[] = { "+CPMS:", NULL }; static const char *cnmi_prefix[] = { "+CNMI:", NULL }; static const char *cmgs_prefix[] = { "+CMGS:", NULL }; static const char *cmgl_prefix[] = { "+CMGL:", NULL }; static const char *none_prefix[] = { NULL }; static gboolean set_cmgf(gpointer user_data); static gboolean set_cpms(gpointer user_data); static void at_cmgl_set_cpms(struct ofono_sms *sms, int store); #define MAX_CMGF_RETRIES 10 #define MAX_CPMS_RETRIES 10 static const char *storages[] = { "SM", "ME", "MT", }; #define SM_STORE 0 #define ME_STORE 1 #define MT_STORE 2 struct sms_data { int store; int incoming; int retries; gboolean cnma_enabled; char *cnma_ack_pdu; int cnma_ack_pdu_len; GAtChat *chat; unsigned int vendor; }; struct cpms_request { struct ofono_sms *sms; int store; int index; }; static void at_csca_set_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cb_data *cbd = user_data; ofono_sms_sca_set_cb_t cb = cbd->cb; struct ofono_error error; dump_response("csca_set_cb", ok, result); decode_at_error(&error, g_at_result_final_response(result)); cb(&error, cbd->data); } static void at_csca_set(struct ofono_sms *sms, const struct ofono_phone_number *sca, ofono_sms_sca_set_cb_t cb, void *user_data) { struct sms_data *data = ofono_sms_get_data(sms); struct cb_data *cbd = cb_data_new(cb, user_data); char buf[64]; if (!cbd) goto error; snprintf(buf, sizeof(buf), "AT+CSCA=\"%s\",%d", sca->number, sca->type); if (g_at_chat_send(data->chat, buf, csca_prefix, at_csca_set_cb, cbd, g_free) > 0) return; error: if (cbd) g_free(cbd); CALLBACK_WITH_FAILURE(cb, user_data); } static void at_csca_query_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cb_data *cbd = user_data; GAtResultIter iter; ofono_sms_sca_query_cb_t cb = cbd->cb; struct ofono_error error; struct ofono_phone_number sca; const char *number; dump_response("at_csca_cb", ok, result); decode_at_error(&error, g_at_result_final_response(result)); if (!ok) { cb(&error, NULL, cbd->data); return; } g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CSCA:")) goto err; if (!g_at_result_iter_next_string(&iter, &number)) goto err; if (number[0] == '+') { number = number + 1; sca.type = 145; } else { sca.type = 129; } strncpy(sca.number, number, OFONO_MAX_PHONE_NUMBER_LENGTH); sca.number[OFONO_MAX_PHONE_NUMBER_LENGTH] = '\0'; g_at_result_iter_next_number(&iter, &sca.type); ofono_debug("csca_query_cb: %s, %d", sca.number, sca.type); cb(&error, &sca, cbd->data); return; err: CALLBACK_WITH_FAILURE(cb, NULL, cbd->data); } static void at_csca_query(struct ofono_sms *sms, ofono_sms_sca_query_cb_t cb, void *user_data) { struct sms_data *data = ofono_sms_get_data(sms); struct cb_data *cbd = cb_data_new(cb, user_data); if (!cbd) goto error; if (g_at_chat_send(data->chat, "AT+CSCA?", csca_prefix, at_csca_query_cb, cbd, g_free) > 0) return; error: if (cbd) g_free(cbd); CALLBACK_WITH_FAILURE(cb, NULL, user_data); } static void at_cmgs_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cb_data *cbd = user_data; GAtResultIter iter; ofono_sms_submit_cb_t cb = cbd->cb; struct ofono_error error; int mr; dump_response("at_cmgs_cb", ok, result); decode_at_error(&error, g_at_result_final_response(result)); if (!ok) { cb(&error, -1, cbd->data); return; } g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CMGS:")) goto err; if (!g_at_result_iter_next_number(&iter, &mr)) goto err; ofono_debug("Got MR: %d", mr); cb(&error, mr, cbd->data); return; err: CALLBACK_WITH_FAILURE(cb, -1, cbd->data); } static void at_cmgs(struct ofono_sms *sms, unsigned char *pdu, int pdu_len, int tpdu_len, int mms, ofono_sms_submit_cb_t cb, void *user_data) { struct sms_data *data = ofono_sms_get_data(sms); struct cb_data *cbd = cb_data_new(cb, user_data); char buf[512]; int len; if (!cbd) goto error; if (mms) { snprintf(buf, sizeof(buf), "AT+CMMS=%d", mms); g_at_chat_send(data->chat, buf, none_prefix, NULL, NULL, NULL); } len = snprintf(buf, sizeof(buf), "AT+CMGS=%d\r", tpdu_len); encode_hex_own_buf(pdu, pdu_len, 0, buf+len); if (g_at_chat_send(data->chat, buf, cmgs_prefix, at_cmgs_cb, cbd, g_free) > 0) return; error: if (cbd) g_free(cbd); CALLBACK_WITH_FAILURE(cb, -1, user_data); } static void at_cnma_cb(gboolean ok, GAtResult *result, gpointer user_data) { if (!ok) ofono_error("CNMA acknowledgement failed: " "Further SMS reception is not guaranteed"); } static gboolean at_parse_pdu_common(GAtResult *result, const char *prefix, const char **pdu, int *pdulen) { GAtResultIter iter; g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, prefix)) return FALSE; if (!strcmp(prefix, "+CMT:") && !g_at_result_iter_skip_next(&iter)) return FALSE; if (!g_at_result_iter_next_number(&iter, pdulen)) return FALSE; *pdu = g_at_result_pdu(result); return TRUE; } static void at_cds_notify(GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); int pdulen; const char *pdu; char buf[256]; dump_response("at_cds_notify", TRUE, result); if (!at_parse_pdu_common(result, "+CDS:", &pdu, &pdulen)) { ofono_error("Unable to parse CDS notification"); return; } ofono_debug("Got new Status-Report PDU via CDS: %s, %d", pdu, pdulen); /* We must acknowledge the PDU using CNMA */ if (data->cnma_ack_pdu) snprintf(buf, sizeof(buf), "AT+CNMA=1,%d\r%s", data->cnma_ack_pdu_len, data->cnma_ack_pdu); else /* Should be a safe fallback */ snprintf(buf, sizeof(buf), "AT+CNMA=0"); g_at_chat_send(data->chat, buf, none_prefix, at_cnma_cb, NULL, NULL); } static void at_cmt_notify(GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); const char *hexpdu; long pdu_len; int tpdu_len; unsigned char pdu[176]; char buf[256]; dump_response("at_cmt_notify", TRUE, result); if (!at_parse_pdu_common(result, "+CMT:", &hexpdu, &tpdu_len)) { ofono_error("Unable to parse CMT notification"); return; } if (strlen(hexpdu) > sizeof(pdu) * 2) { ofono_error("Bad PDU length in CMT notification"); return; } ofono_debug("Got new SMS Deliver PDU via CMT: %s, %d", hexpdu, tpdu_len); decode_hex_own_buf(hexpdu, -1, &pdu_len, 0, pdu); ofono_sms_deliver_notify(sms, pdu, pdu_len, tpdu_len); /* We must acknowledge the PDU using CNMA */ if (data->cnma_ack_pdu) snprintf(buf, sizeof(buf), "AT+CNMA=1,%d\r%s", data->cnma_ack_pdu_len, data->cnma_ack_pdu); else /* Should be a safe fallback */ snprintf(buf, sizeof(buf), "AT+CNMA=0"); g_at_chat_send(data->chat, buf, none_prefix, at_cnma_cb, NULL, NULL); } static void at_cmgr_notify(GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; GAtResultIter iter; const char *hexpdu; unsigned char pdu[176]; long pdu_len; int tpdu_len; dump_response("at_cmgr_notify", TRUE, result); g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CMGR:")) goto err; if (!g_at_result_iter_skip_next(&iter)) goto err; if (!g_at_result_iter_skip_next(&iter)) goto err; if (!g_at_result_iter_next_number(&iter, &tpdu_len)) goto err; hexpdu = g_at_result_pdu(result); if (strlen(hexpdu) > sizeof(pdu) * 2) goto err; ofono_debug("Got PDU: %s, with len: %d", hexpdu, tpdu_len); decode_hex_own_buf(hexpdu, -1, &pdu_len, 0, pdu); ofono_sms_deliver_notify(sms, pdu, pdu_len, tpdu_len); return; err: ofono_error("Unable to parse CMGR response"); } static void at_cmgr_cb(gboolean ok, GAtResult *result, gpointer user_data) { if (!ok) ofono_error("Received a CMTI indication but CMGR failed!"); } static void at_cmgd_cb(gboolean ok, GAtResult *result, gpointer user_data) { if (!ok) ofono_error("Unable to delete received SMS"); } static void at_cmti_cpms_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cpms_request *req = user_data; struct ofono_sms *sms = req->sms; struct sms_data *data = ofono_sms_get_data(sms); char buf[128]; if (!ok) { ofono_error("Received CMTI, but CPMS request failed"); return; } data->store = req->store; snprintf(buf, sizeof(buf), "AT+CMGR=%d", req->index); g_at_chat_send(data->chat, buf, none_prefix, at_cmgr_cb, NULL, NULL); /* We don't buffer SMS on the SIM/ME, send along a CMGD as well */ snprintf(buf, sizeof(buf), "AT+CMGD=%d", req->index); g_at_chat_send(data->chat, buf, none_prefix, at_cmgd_cb, NULL, NULL); } static void at_cmti_notify(GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); const char *strstore; int store; GAtResultIter iter; int index; dump_response("at_cmti_notify", TRUE, result); g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CMTI:")) goto err; if (!g_at_result_iter_next_string(&iter, &strstore)) goto err; if (!strcmp(strstore, "ME")) store = ME_STORE; else if (!strcmp(strstore, "SM")) store = SM_STORE; else goto err; if (!g_at_result_iter_next_number(&iter, &index)) goto err; ofono_debug("Got a CMTI indication at %s, index: %d", strstore, index); if (store == data->store) { struct cpms_request req; req.sms = sms; req.store = store; req.index = index; at_cmti_cpms_cb(TRUE, NULL, &req); } else { char buf[128]; const char *incoming = storages[data->incoming]; struct cpms_request *req = g_new(struct cpms_request, 1); req->sms = sms; req->store = store; req->index = index; snprintf(buf, sizeof(buf), "AT+CPMS=\"%s\",\"%s\",\"%s\"", strstore, strstore, incoming); g_at_chat_send(data->chat, buf, cpms_prefix, at_cmti_cpms_cb, req, g_free); } return; err: ofono_error("Unable to parse CMTI notification"); } static void at_cmgl_done(struct ofono_sms *sms) { struct sms_data *data = ofono_sms_get_data(sms); if (data->incoming == MT_STORE && data->store == ME_STORE) at_cmgl_set_cpms(sms, SM_STORE); } static void at_cmgl_notify(GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); GAtResultIter iter; const char *hexpdu; unsigned char pdu[176]; long pdu_len; int tpdu_len; int index; int status; char buf[16]; dump_response("at_cmgl_notify", TRUE, result); g_at_result_iter_init(&iter, result); while (g_at_result_iter_next(&iter, "+CMGL:")) { if (!g_at_result_iter_next_number(&iter, &index)) goto err; if (!g_at_result_iter_next_number(&iter, &status)) goto err; if (!g_at_result_iter_skip_next(&iter)) goto err; if (!g_at_result_iter_next_number(&iter, &tpdu_len)) goto err; /* Only MT messages */ if (status != 0 && status != 1) continue; hexpdu = g_at_result_pdu(result); ofono_debug("Found an old SMS PDU: %s, with len: %d", hexpdu, tpdu_len); if (strlen(hexpdu) > sizeof(pdu) * 2) continue; decode_hex_own_buf(hexpdu, -1, &pdu_len, 0, pdu); ofono_sms_deliver_notify(sms, pdu, pdu_len, tpdu_len); /* We don't buffer SMS on the SIM/ME, send along a CMGD */ snprintf(buf, sizeof(buf), "AT+CMGD=%d", index); g_at_chat_send(data->chat, buf, none_prefix, at_cmgd_cb, NULL, NULL); } return; err: ofono_error("Unable to parse CMGL response"); } static void at_cmgl_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; if (!ok) ofono_debug("Initial listing SMS storage failed!"); at_cmgl_done(sms); } static void at_cmgl_cpms_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct cpms_request *req = user_data; struct ofono_sms *sms = req->sms; struct sms_data *data = ofono_sms_get_data(sms); if (!ok) { ofono_error("Initial CPMS request failed"); at_cmgl_done(sms); return; } data->store = req->store; g_at_chat_send_pdu_listing(data->chat, "AT+CMGL=4", cmgl_prefix, at_cmgl_notify, at_cmgl_cb, sms, NULL); } static void at_cmgl_set_cpms(struct ofono_sms *sms, int store) { struct sms_data *data = ofono_sms_get_data(sms); if (store == data->store) { struct cpms_request req; req.sms = sms; req.store = store; at_cmgl_cpms_cb(TRUE, NULL, &req); } else { char buf[128]; const char *readwrite = storages[store]; const char *incoming = storages[data->incoming]; struct cpms_request *req = g_new(struct cpms_request, 1); req->sms = sms; req->store = store; snprintf(buf, sizeof(buf), "AT+CPMS=\"%s\",\"%s\",\"%s\"", readwrite, readwrite, incoming); g_at_chat_send(data->chat, buf, cpms_prefix, at_cmgl_cpms_cb, req, g_free); } } static void at_sms_initialized(struct ofono_sms *sms) { struct sms_data *data = ofono_sms_get_data(sms); g_at_chat_register(data->chat, "+CMTI:", at_cmti_notify, FALSE, sms, NULL); g_at_chat_register(data->chat, "+CMT:", at_cmt_notify, TRUE, sms, NULL); g_at_chat_register(data->chat, "+CDS:", at_cds_notify, TRUE, sms, NULL); /* We treat CMGR just like a notification */ g_at_chat_register(data->chat, "+CMGR:", at_cmgr_notify, TRUE, sms, NULL); /* Inspect and free the incoming SMS storage */ if (data->incoming == MT_STORE) at_cmgl_set_cpms(sms, ME_STORE); else at_cmgl_set_cpms(sms, data->incoming); ofono_sms_register(sms); } static void at_sms_not_supported(struct ofono_sms *sms) { ofono_error("SMS not supported by this modem. If this is in error" " please submit patches to support this hardware"); ofono_sms_remove(sms); } static void at_cnmi_set_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; if (!ok) return at_sms_not_supported(sms); at_sms_initialized(sms); } static inline char wanted_cnmi(int supported, const char *pref) { while (*pref) { if (supported & (1 << (*pref - '0'))) return *pref; pref++; } return '\0'; } static inline gboolean append_cnmi_element(char *buf, int *len, int cap, const char *wanted, gboolean last) { char setting = wanted_cnmi(cap, wanted); if (!setting) return FALSE; buf[*len] = setting; if (last) buf[*len + 1] = '\0'; else buf[*len + 1] = ','; *len += 2; return TRUE; } static gboolean build_cnmi_string(char *buf, int *cnmi_opts, struct sms_data *data) { const char *mode; int len = sprintf(buf, "AT+CNMI="); if (data->vendor == OFONO_VENDOR_QUALCOMM_MSM) /* MSM devices advertise support for mode 2, but return an * error if we attempt to actually use it. */ mode = "1"; else /* Sounds like 2 is the sanest mode */ mode = "2310"; if (!append_cnmi_element(buf, &len, cnmi_opts[0], mode, FALSE)) return FALSE; /* Prefer to deliver SMS via +CMT if CNMA is supported */ if (!append_cnmi_element(buf, &len, cnmi_opts[1], data->cnma_enabled ? "21" : "1", FALSE)) return FALSE; /* Always deliver CB via +CBM, otherwise don't deliver at all */ if (!append_cnmi_element(buf, &len, cnmi_opts[2], "20", FALSE)) return FALSE; /* Always deliver Status-Reports via +CDS or don't deliver at all */ if (!append_cnmi_element(buf, &len, cnmi_opts[3], "10", FALSE)) return FALSE; /* Don't care about buffering, 0 seems safer */ if (!append_cnmi_element(buf, &len, cnmi_opts[4], "01", TRUE)) return FALSE; return TRUE; } static void construct_ack_pdu(struct sms_data *d) { struct sms ackpdu; unsigned char pdu[164]; int len; int tpdu_len; memset(&ackpdu, 0, sizeof(ackpdu)); ackpdu.type = SMS_TYPE_DELIVER_REPORT_ACK; if (!sms_encode(&ackpdu, &len, &tpdu_len, pdu)) goto err; /* Constructing an according to 27.005 Section 4.6 */ if (len != tpdu_len) goto err; d->cnma_ack_pdu = encode_hex(pdu, tpdu_len, 0); if (!d->cnma_ack_pdu) goto err; d->cnma_ack_pdu_len = tpdu_len; return; err: ofono_error("Unable to construct Deliver ACK PDU"); } static void at_cnmi_query_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); GAtResultIter iter; int cnmi_opts[5]; /* See 27.005 Section 3.4.1 */ int opt; int mode; gboolean supported = FALSE; char buf[128]; dump_response("at_cnmi_query_cb", ok, result); if (!ok) goto out; memset(cnmi_opts, 0, sizeof(cnmi_opts)); g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CNMI:")) goto out; for (opt = 0; opt < 5; opt++) { int min, max; if (!g_at_result_iter_open_list(&iter)) goto out; while (g_at_result_iter_next_range(&iter, &min, &max)) { for (mode = min; mode <= max; mode++) cnmi_opts[opt] |= 1 << mode; } if (!g_at_result_iter_close_list(&iter)) goto out; } if (build_cnmi_string(buf, cnmi_opts, data)) supported = TRUE; if (data->cnma_enabled) construct_ack_pdu(data); out: if (!supported) return at_sms_not_supported(sms); g_at_chat_send(data->chat, buf, cnmi_prefix, at_cnmi_set_cb, sms, NULL); } static void at_query_cnmi(struct ofono_sms *sms) { struct sms_data *data = ofono_sms_get_data(sms); g_at_chat_send(data->chat, "AT+CNMI=?", cnmi_prefix, at_cnmi_query_cb, sms, NULL); } static void at_cpms_set_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); dump_response("at_cpms_set_cb", ok, result); if (ok) return at_query_cnmi(sms); data->retries += 1; if (data->retries == MAX_CPMS_RETRIES) { ofono_error("Unable to set preferred storage"); return at_sms_not_supported(sms); } g_timeout_add_seconds(1, set_cpms, sms); } static gboolean set_cpms(gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); const char *store = storages[data->store]; const char *incoming = storages[data->incoming]; char buf[128]; snprintf(buf, sizeof(buf), "AT+CPMS=\"%s\",\"%s\",\"%s\"", store, store, incoming); g_at_chat_send(data->chat, buf, cpms_prefix, at_cpms_set_cb, sms, NULL); return FALSE; } static void at_cmgf_set_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); dump_response("at_cmgf_set_cb", ok, result); if (ok) { data->retries = 0; set_cpms(sms); return; } data->retries += 1; if (data->retries == MAX_CMGF_RETRIES) { ofono_debug("Unable to enter PDU mode"); return at_sms_not_supported(sms); } g_timeout_add_seconds(1, set_cmgf, sms); } static gboolean set_cmgf(gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); g_at_chat_send(data->chat, "AT+CMGF=0", cmgf_prefix, at_cmgf_set_cb, sms, NULL); return FALSE; } static void at_cpms_query_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); gboolean supported = FALSE; dump_response("cpms_query_cb", ok, result); if (ok) { int mem = 0; GAtResultIter iter; const char *store; gboolean me_supported[3]; gboolean sm_supported[3]; gboolean mt_supported[3]; memset(me_supported, 0, sizeof(me_supported)); memset(sm_supported, 0, sizeof(sm_supported)); memset(mt_supported, 0, sizeof(mt_supported)); g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CPMS:")) goto out; for (mem = 0; mem < 3; mem++) { if (!g_at_result_iter_open_list(&iter)) goto out; while (g_at_result_iter_next_string(&iter, &store)) { if (!strcmp(store, "ME")) me_supported[mem] = TRUE; else if (!strcmp(store, "SM")) sm_supported[mem] = TRUE; else if (!strcmp(store, "MT")) mt_supported[mem] = TRUE; } if (!g_at_result_iter_close_list(&iter)) goto out; } if (!sm_supported[2] && !me_supported[2] && !mt_supported[2]) goto out; if (sm_supported[0] && sm_supported[1]) { supported = TRUE; data->store = SM_STORE; } if (me_supported[0] && me_supported[1]) { supported = TRUE; data->store = ME_STORE; } /* This seems to be a special case, where the modem will * pick & route the SMS to any of the storages supported by * mem1 */ if (mt_supported[2] && (sm_supported[0] || me_supported[0])) data->incoming = MT_STORE; if (sm_supported[2]) data->incoming = SM_STORE; if (me_supported[2]) data->incoming = ME_STORE; } out: if (!supported) return at_sms_not_supported(sms); set_cmgf(sms); } static void at_cmgf_query_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); gboolean supported = FALSE; dump_response("cmgf_query_cb", ok, result); if (ok) { GAtResultIter iter; int mode; g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CMGF:")) goto out; if (!g_at_result_iter_open_list(&iter)) goto out; /* Look for mode 0 (PDU mode) */ while (g_at_result_iter_next_number(&iter, &mode)) if (mode == 0) supported = TRUE; } out: if (!supported) return at_sms_not_supported(sms); g_at_chat_send(data->chat, "AT+CPMS=?", cpms_prefix, at_cpms_query_cb, sms, NULL); } static void at_csms_status_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); gboolean supported = FALSE; dump_response("csms_status_cb", ok, result); if (ok) { GAtResultIter iter; int service; int mt; int mo; g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CSMS:")) goto out; if (!g_at_result_iter_next_number(&iter, &service)) goto out; if (!g_at_result_iter_next_number(&iter, &mt)) goto out; if (!g_at_result_iter_next_number(&iter, &mo)) goto out; if (service == 1) data->cnma_enabled = TRUE; if (mt == 1 && mo == 1) supported = TRUE; } out: if (!supported) return at_sms_not_supported(sms); /* Now query supported text format */ g_at_chat_send(data->chat, "AT+CMGF=?", cmgf_prefix, at_cmgf_query_cb, sms, NULL); } static void at_csms_set_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); g_at_chat_send(data->chat, "AT+CSMS?", csms_prefix, at_csms_status_cb, sms, NULL); } static void at_csms_query_cb(gboolean ok, GAtResult *result, gpointer user_data) { struct ofono_sms *sms = user_data; struct sms_data *data = ofono_sms_get_data(sms); gboolean cnma_supported = FALSE; GAtResultIter iter; int status_min, status_max; char buf[128]; dump_response("csms_query_cb", ok, result); if (!ok) return at_sms_not_supported(sms); g_at_result_iter_init(&iter, result); if (!g_at_result_iter_next(&iter, "+CSMS:")) goto out; if (!g_at_result_iter_open_list(&iter)) goto out; while (g_at_result_iter_next_range(&iter, &status_min, &status_max)) if (status_min <= 1 && 1 <= status_max) cnma_supported = TRUE; ofono_debug("CSMS query parsed successfully"); out: snprintf(buf, sizeof(buf), "AT+CSMS=%d", cnma_supported ? 1 : 0); g_at_chat_send(data->chat, buf, csms_prefix, at_csms_set_cb, sms, NULL); } static int at_sms_probe(struct ofono_sms *sms, unsigned int vendor, void *user) { GAtChat *chat = user; struct sms_data *data; data = g_new0(struct sms_data, 1); data->chat = chat; data->vendor = vendor; ofono_sms_set_data(sms, data); g_at_chat_send(chat, "AT+CSMS=?", csms_prefix, at_csms_query_cb, sms, NULL); return 0; } static void at_sms_remove(struct ofono_sms *sms) { struct sms_data *data = ofono_sms_get_data(sms); if (data->cnma_ack_pdu) g_free(data->cnma_ack_pdu); g_free(data); } static struct ofono_sms_driver driver = { .name = "atmodem", .probe = at_sms_probe, .remove = at_sms_remove, .sca_query = at_csca_query, .sca_set = at_csca_set, .submit = at_cmgs, }; void at_sms_init() { ofono_sms_driver_register(&driver); } void at_sms_exit() { ofono_sms_driver_unregister(&driver); }