blob: 54cd75b9ad392b6d5de40593a607aee690fdc4d0 [file] [log] [blame]
Harald Weltef1033cc2012-11-08 16:14:37 +01001/* OpenBSC SMPP 3.4 interface, SMSC-side implementation */
2
Harald Welte3f786002013-03-13 15:29:27 +01003/* (C) 2012-2013 by Harald Welte <laforge@gnumonks.org>
Harald Weltef1033cc2012-11-08 16:14:37 +01004 *
Harald Welte995ff352013-07-13 16:35:32 +02005 * All Rights Reserved
Harald Weltef1033cc2012-11-08 16:14:37 +01006 *
Harald Welte995ff352013-07-13 16:35:32 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
Harald Weltef1033cc2012-11-08 16:14:37 +010011 *
Harald Welte995ff352013-07-13 16:35:32 +020012 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Weltef1033cc2012-11-08 16:14:37 +010019 */
20
21
22#include <stdio.h>
23#include <unistd.h>
24#include <string.h>
25#include <stdint.h>
26#include <errno.h>
27
28#include <smpp34.h>
29#include <smpp34_structs.h>
30#include <smpp34_params.h>
Harald Weltee39f6cd2019-04-10 00:33:46 +020031#include <smpp34_heap.h>
Harald Weltef1033cc2012-11-08 16:14:37 +010032
33#include <osmocom/core/utils.h>
34#include <osmocom/core/msgb.h>
35#include <osmocom/core/logging.h>
36#include <osmocom/core/talloc.h>
37#include <osmocom/gsm/protocol/gsm_04_11.h>
Harald Welte3f786002013-03-13 15:29:27 +010038#include <osmocom/gsm/protocol/smpp34_osmocom.h>
Harald Weltef1033cc2012-11-08 16:14:37 +010039
Neels Hofmeyr90843962017-09-04 15:04:35 +020040#include <osmocom/msc/gsm_subscriber.h>
41#include <osmocom/msc/debug.h>
42#include <osmocom/msc/db.h>
43#include <osmocom/msc/gsm_04_11.h>
44#include <osmocom/msc/gsm_data.h>
45#include <osmocom/msc/signal.h>
46#include <osmocom/msc/transaction.h>
47#include <osmocom/msc/gsm_subscriber.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020048#include <osmocom/msc/vlr.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010049#include <osmocom/msc/msc_a.h>
Harald Weltef1033cc2012-11-08 16:14:37 +010050
51#include "smpp_smsc.h"
52
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +010053#define VSUB_USE_SMPP "SMPP"
54#define VSUB_USE_SMPP_CMD "SMPP-cmd"
55
Harald Weltee39f6cd2019-04-10 00:33:46 +020056/* talloc integration for libsmpp34 */
57
58static struct smsc *g_smsc;
59
60static void *smpp34_talloc_malloc(size_t sz)
61{
62 return talloc_size(g_smsc, sz);
63}
64
65static void *smpp34_talloc_realloc(void *ptr, size_t sz)
66{
67 return talloc_realloc_size(g_smsc, ptr, sz);
68}
69
70static void smpp34_talloc_free(void *ptr)
71{
72 talloc_free(ptr);
73}
74
75static const struct smpp34_memory_functions smpp34_talloc = {
76 .malloc_fun = smpp34_talloc_malloc,
77 .realloc_fun = smpp34_talloc_realloc,
78 .free_fun = smpp34_talloc_free,
79};
80
Harald Welte2483f1b2016-06-19 18:06:02 +020081/*! \brief find vlr_subscr for a given SMPP NPI/TON/Address */
82static struct vlr_subscr *subscr_by_dst(struct gsm_network *net,
83 uint8_t npi, uint8_t ton,
84 const char *addr)
Harald Weltef1033cc2012-11-08 16:14:37 +010085{
Harald Welte2483f1b2016-06-19 18:06:02 +020086 struct vlr_subscr *vsub = NULL;
Harald Weltef1033cc2012-11-08 16:14:37 +010087
88 switch (npi) {
89 case NPI_Land_Mobile_E212:
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +010090 vsub = vlr_subscr_find_by_imsi(net->vlr, addr, VSUB_USE_SMPP);
Harald Weltef1033cc2012-11-08 16:14:37 +010091 break;
92 case NPI_ISDN_E163_E164:
93 case NPI_Private:
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +010094 vsub = vlr_subscr_find_by_msisdn(net->vlr, addr, VSUB_USE_SMPP);
Harald Weltef1033cc2012-11-08 16:14:37 +010095 break;
96 default:
97 LOGP(DSMPP, LOGL_NOTICE, "Unsupported NPI: %u\n", npi);
98 break;
99 }
100
Harald Welte2483f1b2016-06-19 18:06:02 +0200101 log_set_context(LOG_CTX_VLR_SUBSCR, vsub);
102 return vsub;
Harald Weltef1033cc2012-11-08 16:14:37 +0100103}
104
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200105static int smpp34_submit_tlv_msg_payload(const struct tlv_t *t,
106 const struct submit_sm_t *submit,
107 const uint8_t **sms_msg,
108 unsigned int *sms_msg_len)
Harald Weltef1033cc2012-11-08 16:14:37 +0100109{
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200110 if (submit->sm_length) {
111 LOGP(DLSMS, LOGL_ERROR,
112 "SMPP cannot have payload in TLV _and_ in the header\n");
113 return -1;
Harald Weltef1033cc2012-11-08 16:14:37 +0100114 }
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200115 *sms_msg = t->value.octet;
116 *sms_msg_len = t->length;
117
118 return 0;
Harald Weltef1033cc2012-11-08 16:14:37 +0100119}
120
Harald Weltee94db492012-11-08 20:11:05 +0100121/*! \brief convert from submit_sm_t to gsm_sms */
Harald Weltef1033cc2012-11-08 16:14:37 +0100122static int submit_to_sms(struct gsm_sms **psms, struct gsm_network *net,
123 const struct submit_sm_t *submit)
124{
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200125 const uint8_t *sms_msg = NULL;
Pau Espin Pedrol7e16e722017-08-14 21:18:41 +0200126 unsigned int sms_msg_len = 0;
Harald Welte2483f1b2016-06-19 18:06:02 +0200127 struct vlr_subscr *dest;
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200128 uint16_t msg_ref = 0;
Harald Weltef1033cc2012-11-08 16:14:37 +0100129 struct gsm_sms *sms;
130 struct tlv_t *t;
Harald Welte27d5e652013-05-28 20:37:07 +0200131 int mode;
Stefan Sperling6d289812018-01-30 12:15:40 +0100132 int can_store_sms = ((submit->esm_class & SMPP34_MSG_MODE_MASK) != 2); /* != forward mode */
Harald Weltef1033cc2012-11-08 16:14:37 +0100133
134 dest = subscr_by_dst(net, submit->dest_addr_npi,
135 submit->dest_addr_ton,
136 (const char *)submit->destination_addr);
Stefan Sperling6d289812018-01-30 12:15:40 +0100137 if (!dest && !can_store_sms) {
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100138 LOGP(DLSMS, LOGL_NOTICE, "SMPP SUBMIT-SM for unknown subscriber: "
Harald Weltef1033cc2012-11-08 16:14:37 +0100139 "%s (NPI=%u)\n", submit->destination_addr,
140 submit->dest_addr_npi);
141 return ESME_RINVDSTADR;
142 }
143
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200144 smpp34_tlv_for_each(t, submit->tlv) {
145 switch (t->tag) {
146 case TLVID_message_payload:
147 if (smpp34_submit_tlv_msg_payload(t, submit, &sms_msg,
148 &sms_msg_len) < 0) {
Stefan Sperling6d289812018-01-30 12:15:40 +0100149 if (dest)
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100150 vlr_subscr_put(dest, VSUB_USE_SMPP);
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200151 return ESME_ROPTPARNOTALLWD;
152 }
153 break;
154 case TLVID_user_message_reference:
Pau Espin Pedrold5c43392017-08-18 12:26:23 +0200155 msg_ref = t->value.val16;
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200156 break;
157 default:
158 break;
Harald Weltef1033cc2012-11-08 16:14:37 +0100159 }
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200160 }
161
162 if (!sms_msg) {
163 if (submit->sm_length > 0 && submit->sm_length < 255) {
164 sms_msg = submit->short_message;
165 sms_msg_len = submit->sm_length;
166 } else {
167 LOGP(DLSMS, LOGL_ERROR,
168 "SMPP neither message payload nor valid sm_length.\n");
Neels Hofmeyr07140022019-04-15 13:46:44 +0200169 if (dest)
170 vlr_subscr_put(dest, VSUB_USE_SMPP);
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200171 return ESME_RINVPARLEN;
172 }
Harald Weltef1033cc2012-11-08 16:14:37 +0100173 }
174
175 sms = sms_alloc();
Harald Welted4bdee72012-11-08 19:44:08 +0100176 sms->source = SMS_SOURCE_SMPP;
177 sms->smpp.sequence_nr = submit->sequence_number;
Pablo Neira Ayuso791bdf72017-08-07 14:01:18 +0100178 sms->status_rep_req = submit->registered_delivery;
Pablo Neira Ayuso9a3ed852017-08-11 12:02:12 +0200179 sms->msg_ref = msg_ref;
Harald Weltec0de14d2012-11-23 23:35:01 +0100180
181 /* fill in the destination address */
Harald Welte1a2993a2012-11-09 19:48:48 +0100182 sms->receiver = dest;
Neels Hofmeyr07140022019-04-15 13:46:44 +0200183 if (dest) {
184 /* Replace use count from above subscr_by_dst (VSUB_USE_SMPP) by the sms->receiver use count
185 * (VSUB_USE_SMS_RECEIVER) */
186 vlr_subscr_get(sms->receiver, VSUB_USE_SMS_RECEIVER);
187 vlr_subscr_put(dest, VSUB_USE_SMPP);
188 }
Harald Weltec0de14d2012-11-23 23:35:01 +0100189 sms->dst.ton = submit->dest_addr_ton;
190 sms->dst.npi = submit->dest_addr_npi;
Stefan Sperling6d289812018-01-30 12:15:40 +0100191 if (dest)
Max98f74672018-02-05 12:57:06 +0100192 OSMO_STRLCPY_ARRAY(sms->dst.addr, dest->msisdn);
Stefan Sperling6d289812018-01-30 12:15:40 +0100193 else
Max98f74672018-02-05 12:57:06 +0100194 OSMO_STRLCPY_ARRAY(sms->dst.addr,
195 (const char *)submit->destination_addr);
Harald Weltec0de14d2012-11-23 23:35:01 +0100196
197 /* fill in the source address */
Harald Weltec0de14d2012-11-23 23:35:01 +0100198 sms->src.ton = submit->source_addr_ton;
199 sms->src.npi = submit->source_addr_npi;
Max98f74672018-02-05 12:57:06 +0100200 OSMO_STRLCPY_ARRAY(sms->src.addr, (char *)submit->source_addr);
Harald Weltef1033cc2012-11-08 16:14:37 +0100201
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200202 if (submit->esm_class == SMPP34_DELIVERY_ACK)
Pablo Neira Ayusobd71d322017-08-07 14:01:40 +0100203 sms->is_report = true;
204
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200205 if (submit->esm_class & SMPP34_UDHI_IND)
Harald Weltef1033cc2012-11-08 16:14:37 +0100206 sms->ud_hdr_ind = 1;
207
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200208 if (submit->esm_class & SMPP34_REPLY_PATH) {
Harald Weltef1033cc2012-11-08 16:14:37 +0100209 sms->reply_path_req = 1;
210#warning Implement reply path
211 }
212
Harald Welte9ad03622012-11-08 22:15:04 +0100213 if (submit->data_coding == 0x00 || /* SMSC default */
Harald Welte27d5e652013-05-28 20:37:07 +0200214 submit->data_coding == 0x01) { /* GSM default alphabet */
215 sms->data_coding_scheme = GSM338_DCS_1111_7BIT;
216 mode = MODE_7BIT;
217 } else if ((submit->data_coding & 0xFC) == 0xF0) { /* 03.38 DCS default */
218 /* pass DCS 1:1 through from SMPP to GSM */
219 sms->data_coding_scheme = submit->data_coding;
220 mode = MODE_7BIT;
221 } else if (submit->data_coding == 0x02 ||
222 submit->data_coding == 0x04) {
223 /* 8-bit binary */
224 sms->data_coding_scheme = GSM338_DCS_1111_8BIT_DATA;
225 mode = MODE_8BIT;
226 } else if ((submit->data_coding & 0xFC) == 0xF4) { /* 03.38 DCS 8bit */
227 /* pass DCS 1:1 through from SMPP to GSM */
228 sms->data_coding_scheme = submit->data_coding;
229 mode = MODE_8BIT;
Harald Welte7e40be32014-02-21 13:21:03 +0100230 } else if (submit->data_coding == 0x08) {
Harald Welte27d5e652013-05-28 20:37:07 +0200231 /* UCS-2 */
232 sms->data_coding_scheme = (2 << 2);
233 mode = MODE_8BIT;
234 } else {
235 sms_free(sms);
236 LOGP(DLSMS, LOGL_ERROR, "SMPP Unknown Data Coding 0x%02x\n",
237 submit->data_coding);
238 return ESME_RUNKNOWNERR;
239 }
240
Harald Weltec75ed6d2013-05-28 20:58:02 +0200241 if (mode == MODE_7BIT) {
Harald Welteb8a1f962012-11-24 01:37:39 +0100242 uint8_t ud_len = 0, padbits = 0;
Harald Weltef1033cc2012-11-08 16:14:37 +0100243 sms->data_coding_scheme = GSM338_DCS_1111_7BIT;
Harald Welte9122c132012-11-09 19:43:50 +0100244 if (sms->ud_hdr_ind) {
245 ud_len = *sms_msg + 1;
246 printf("copying %u bytes user data...\n", ud_len);
247 memcpy(sms->user_data, sms_msg,
248 OSMO_MIN(ud_len, sizeof(sms->user_data)));
249 sms_msg += ud_len;
250 sms_msg_len -= ud_len;
Harald Welteb8a1f962012-11-24 01:37:39 +0100251 padbits = 7 - (ud_len % 7);
Harald Welte9122c132012-11-09 19:43:50 +0100252 }
Vadim Yanitskiy566ce112021-02-05 20:08:00 +0100253 gsm_septet_pack(sms->user_data+ud_len, sms_msg, sms_msg_len, padbits);
Harald Welteb8a1f962012-11-24 01:37:39 +0100254 sms->user_data_len = (ud_len*8 + padbits)/7 + sms_msg_len;/* SEPTETS */
255 /* FIXME: sms->text */
Harald Welte27d5e652013-05-28 20:37:07 +0200256 } else {
Harald Weltef1033cc2012-11-08 16:14:37 +0100257 memcpy(sms->user_data, sms_msg, sms_msg_len);
258 sms->user_data_len = sms_msg_len;
Harald Weltef1033cc2012-11-08 16:14:37 +0100259 }
260
261 *psms = sms;
262 return ESME_ROK;
263}
264
Harald Weltee94db492012-11-08 20:11:05 +0100265/*! \brief handle incoming libsmpp34 ssubmit_sm_t from remote ESME */
Harald Weltef1033cc2012-11-08 16:14:37 +0100266int handle_smpp_submit(struct osmo_esme *esme, struct submit_sm_t *submit,
267 struct submit_sm_resp_t *submit_r)
268{
269 struct gsm_sms *sms;
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100270 struct gsm_network *net = esme->smsc->priv;
271 struct sms_signal_data sig;
Harald Weltef1033cc2012-11-08 16:14:37 +0100272 int rc = -1;
273
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100274 rc = submit_to_sms(&sms, net, submit);
Harald Weltef1033cc2012-11-08 16:14:37 +0100275 if (rc != ESME_ROK) {
276 submit_r->command_status = rc;
277 return 0;
278 }
Harald Weltee94db492012-11-08 20:11:05 +0100279 smpp_esme_get(esme);
Harald Welted4bdee72012-11-08 19:44:08 +0100280 sms->smpp.esme = esme;
Harald Welte9ad03622012-11-08 22:15:04 +0100281 sms->protocol_id = submit->protocol_id;
Harald Weltef1033cc2012-11-08 16:14:37 +0100282
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200283 switch (submit->esm_class & SMPP34_MSG_MODE_MASK) {
Harald Weltef1033cc2012-11-08 16:14:37 +0100284 case 0: /* default */
285 case 1: /* datagram */
286 case 3: /* store-and-forward */
287 rc = db_sms_store(sms);
Holger Hans Peter Freyther6a85c152013-01-20 17:21:31 +0100288 sms_free(sms);
289 sms = NULL;
Harald Weltef1033cc2012-11-08 16:14:37 +0100290 if (rc < 0) {
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100291 LOGP(DLSMS, LOGL_ERROR, "SMPP SUBMIT-SM: Unable to "
Harald Weltef1033cc2012-11-08 16:14:37 +0100292 "store SMS in database\n");
Harald Weltef1033cc2012-11-08 16:14:37 +0100293 submit_r->command_status = ESME_RSYSERR;
294 return 0;
295 }
296 strcpy((char *)submit_r->message_id, "msg_id_not_implemented");
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100297 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Stored in DB\n");
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100298
299 memset(&sig, 0, sizeof(sig));
300 osmo_signal_dispatch(SS_SMS, S_SMS_SUBMITTED, &sig);
Harald Weltef1033cc2012-11-08 16:14:37 +0100301 rc = 0;
302 break;
303 case 2: /* forward (i.e. transaction) mode */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100304 LOGP(DLSMS, LOGL_DEBUG, "SMPP SUBMIT-SM: Forwarding in "
Harald Welte9122c132012-11-09 19:43:50 +0100305 "real time (Transaction/Forward mode)\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100306 sms->smpp.transaction_mode = 1;
Vadim Yanitskiy24e025e2018-11-22 15:42:39 +0700307 gsm411_send_sms(net, sms->receiver, sms);
Harald Weltef1033cc2012-11-08 16:14:37 +0100308 rc = 1; /* don't send any response yet */
309 break;
310 }
311 return rc;
312}
313
Harald Welte2483f1b2016-06-19 18:06:02 +0200314static void alert_all_esme(struct smsc *smsc, struct vlr_subscr *vsub,
Harald Welte045f4022013-07-30 23:45:01 +0800315 uint8_t smpp_avail_status)
316{
317 struct osmo_esme *esme;
318
319 llist_for_each_entry(esme, &smsc->esme_list, list) {
320 /* we currently send an alert notification to each ESME that is
Martin Hauke3f07dac2019-11-14 17:49:08 +0100321 * connected, and do not require a (non-existent) delivery
Keithc6d219c2019-01-17 01:01:59 +0100322 * pending flag to be set before. */
Keitha3a88212019-01-17 01:07:53 +0100323 if (!esme->bind_flags) {
324 LOGP(DSMPP, LOGL_DEBUG,
325 "ESME is not (yet) bound, skipping alert\n");
326 continue;
327 }
Alexander Couzens4aeb4ec2019-08-23 23:30:12 +0200328 if (esme->acl && !esme->acl->alert_notifications) {
Keithc6d219c2019-01-17 01:01:59 +0100329 LOGP(DSMPP, LOGL_DEBUG,
330 "[%s] is not set to receive Alert Notifications\n",
331 esme->system_id);
332 continue;
333 }
Harald Welte045f4022013-07-30 23:45:01 +0800334 if (esme->acl && esme->acl->deliver_src_imsi) {
335 smpp_tx_alert(esme, TON_Subscriber_Number,
336 NPI_Land_Mobile_E212,
Harald Welte2483f1b2016-06-19 18:06:02 +0200337 vsub->imsi, smpp_avail_status);
Harald Welte045f4022013-07-30 23:45:01 +0800338 } else {
339 smpp_tx_alert(esme, TON_Network_Specific,
340 NPI_ISDN_E163_E164,
Harald Welte2483f1b2016-06-19 18:06:02 +0200341 vsub->msisdn, smpp_avail_status);
Harald Welte045f4022013-07-30 23:45:01 +0800342 }
343 }
344}
345
346
Harald Weltee94db492012-11-08 20:11:05 +0100347/*! \brief signal handler for status of attempted SMS deliveries */
Harald Welted4bdee72012-11-08 19:44:08 +0100348static int smpp_sms_cb(unsigned int subsys, unsigned int signal,
349 void *handler_data, void *signal_data)
350{
Harald Welted4bdee72012-11-08 19:44:08 +0100351 struct sms_signal_data *sig_sms = signal_data;
352 struct gsm_sms *sms = sig_sms->sms;
Harald Welte99e273d2013-07-30 23:39:18 +0800353 struct smsc *smsc = handler_data;
Harald Welted4bdee72012-11-08 19:44:08 +0100354 int rc = 0;
355
356 if (!sms)
357 return 0;
358
359 if (sms->source != SMS_SOURCE_SMPP)
360 return 0;
361
362 switch (signal) {
Harald Welte1aeb2af2013-07-30 22:30:24 +0800363 case S_SMS_MEM_EXCEEDED:
364 /* fall-through: There is no ESME_Rxxx result code to
365 * indicate a MEMORY EXCEEDED in transaction mode back
366 * to the ESME */
Harald Welted4bdee72012-11-08 19:44:08 +0100367 case S_SMS_UNKNOWN_ERROR:
368 if (sms->smpp.transaction_mode) {
Martin Hauke3f07dac2019-11-14 17:49:08 +0100369 /* Send back the SUBMIT-SM response with appropriate error */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100370 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Error\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100371 rc = smpp_tx_submit_r(sms->smpp.esme,
372 sms->smpp.sequence_nr,
373 ESME_RDELIVERYFAILURE,
374 sms->smpp.msg_id);
375 }
376 break;
377 case S_SMS_DELIVERED:
378 /* SMS layer tells us the delivery has been completed */
379 if (sms->smpp.transaction_mode) {
380 /* Send back the SUBMIT-SM response */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100381 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Success\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100382 rc = smpp_tx_submit_r(sms->smpp.esme,
383 sms->smpp.sequence_nr,
384 ESME_ROK, sms->smpp.msg_id);
385 }
386 break;
Harald Welte99e273d2013-07-30 23:39:18 +0800387 case S_SMS_SMMA:
Harald Welte2483f1b2016-06-19 18:06:02 +0200388 if (!sig_sms->trans || !sig_sms->trans->vsub) {
Harald Welte99e273d2013-07-30 23:39:18 +0800389 /* SMMA without a subscriber? strange... */
390 LOGP(DLSMS, LOGL_NOTICE, "SMMA without subscriber?\n");
391 break;
392 }
393
Harald Welte99e273d2013-07-30 23:39:18 +0800394 /* There's no real 1:1 match for SMMA in SMPP. However,
395 * an ALERT NOTIFICATION seems to be the most logical
396 * choice */
Harald Welte2483f1b2016-06-19 18:06:02 +0200397 alert_all_esme(smsc, sig_sms->trans->vsub, 0);
Harald Welte99e273d2013-07-30 23:39:18 +0800398 break;
Harald Welted4bdee72012-11-08 19:44:08 +0100399 }
400
401 return rc;
402}
403
Harald Welte8a1b0562012-11-09 12:51:44 +0100404/*! \brief signal handler for subscriber related signals */
405static int smpp_subscr_cb(unsigned int subsys, unsigned int signal,
406 void *handler_data, void *signal_data)
407{
Harald Welte2483f1b2016-06-19 18:06:02 +0200408 struct vlr_subscr *vsub = signal_data;
Harald Welte8a1b0562012-11-09 12:51:44 +0100409 struct smsc *smsc = handler_data;
Harald Welte8a1b0562012-11-09 12:51:44 +0100410 uint8_t smpp_avail_status;
411
412 /* determine the smpp_avail_status depending on attach/detach */
413 switch (signal) {
414 case S_SUBSCR_ATTACHED:
415 smpp_avail_status = 0;
416 break;
417 case S_SUBSCR_DETACHED:
418 smpp_avail_status = 2;
419 break;
420 default:
421 return 0;
422 }
423
Harald Welte2483f1b2016-06-19 18:06:02 +0200424 alert_all_esme(smsc, vsub, smpp_avail_status);
Harald Welte8a1b0562012-11-09 12:51:44 +0100425
426 return 0;
427}
428
Harald Welteb8a1f962012-11-24 01:37:39 +0100429/* GSM 03.38 6.2.1 Character expanding (no decode!) */
430static int gsm_7bit_expand(char *text, const uint8_t *user_data, uint8_t septet_l, uint8_t ud_hdr_ind)
431{
432 int i = 0;
433 int shift = 0;
434 uint8_t c;
435
436 /* skip the user data header */
437 if (ud_hdr_ind) {
438 /* get user data header length + 1 (for the 'user data header length'-field) */
439 shift = ((user_data[0] + 1) * 8) / 7;
440 if ((((user_data[0] + 1) * 8) % 7) != 0)
441 shift++;
442 septet_l = septet_l - shift;
443 }
444
445 for (i = 0; i < septet_l; i++) {
446 c =
447 ((user_data[((i + shift) * 7 + 7) >> 3] <<
448 (7 - (((i + shift) * 7 + 7) & 7))) |
449 (user_data[((i + shift) * 7) >> 3] >>
450 (((i + shift) * 7) & 7))) & 0x7f;
451
452 *(text++) = c;
453 }
454
455 *text = '\0';
456
457 return i;
458}
459
460
Harald Welte3f786002013-03-13 15:29:27 +0100461/* FIXME: libsmpp34 helpers, they should be part of libsmpp34! */
462void append_tlv(tlv_t **req_tlv, uint16_t tag,
463 const uint8_t *data, uint16_t len)
464{
465 tlv_t tlv;
466
467 memset(&tlv, 0, sizeof(tlv));
468 tlv.tag = tag;
469 tlv.length = len;
470 memcpy(tlv.value.octet, data, tlv.length);
471 build_tlv(req_tlv, &tlv);
472}
473void append_tlv_u8(tlv_t **req_tlv, uint16_t tag, uint8_t val)
474{
475 tlv_t tlv;
476
477 memset(&tlv, 0, sizeof(tlv));
478 tlv.tag = tag;
479 tlv.length = 1;
480 tlv.value.val08 = val;
481 build_tlv(req_tlv, &tlv);
482}
483void append_tlv_u16(tlv_t **req_tlv, uint16_t tag, uint16_t val)
484{
485 tlv_t tlv;
486
487 memset(&tlv, 0, sizeof(tlv));
488 tlv.tag = tag;
489 tlv.length = 2;
Pau Espin Pedrold5c43392017-08-18 12:26:23 +0200490 tlv.value.val16 = val;
Harald Welte3f786002013-03-13 15:29:27 +0100491 build_tlv(req_tlv, &tlv);
492}
493
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200494#if BEFORE_MSCSPLIT
495/* We currently have no lchan information. Re-add after A-interface, see OS#2390. */
Harald Welte3f786002013-03-13 15:29:27 +0100496/* Append the Osmocom vendor-specific additional TLVs to a SMPP msg */
497static void append_osmo_tlvs(tlv_t **req_tlv, const struct gsm_lchan *lchan)
498{
499 int idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
500 lchan->meas_rep_idx, 1);
501 const struct gsm_meas_rep *mr = &lchan->meas_rep[idx];
502 const struct gsm_meas_rep_unidir *ul_meas = &mr->ul;
503 const struct gsm_meas_rep_unidir *dl_meas = &mr->dl;
504
505 /* Osmocom vendor-specific SMPP34 extensions */
506 append_tlv_u16(req_tlv, TLVID_osmo_arfcn, lchan->ts->trx->arfcn);
507 if (mr->flags & MEAS_REP_F_MS_L1) {
508 uint8_t ms_dbm;
509 append_tlv_u8(req_tlv, TLVID_osmo_ta, mr->ms_l1.ta);
510 ms_dbm = ms_pwr_dbm(lchan->ts->trx->bts->band, mr->ms_l1.pwr);
511 append_tlv_u8(req_tlv, TLVID_osmo_ms_l1_txpwr, ms_dbm);
Max11e4e412017-04-20 13:07:58 +0200512 } else if (mr->flags & MEAS_REP_F_MS_TO) /* Save Timing Offset field = MS Timing Offset + 63 */
513 append_tlv_u8(req_tlv, TLVID_osmo_ta, mr->ms_timing_offset + 63);
Harald Welte3f786002013-03-13 15:29:27 +0100514
515 append_tlv_u16(req_tlv, TLVID_osmo_rxlev_ul,
516 rxlev2dbm(ul_meas->full.rx_lev));
517 append_tlv_u8(req_tlv, TLVID_osmo_rxqual_ul, ul_meas->full.rx_qual);
518
519 if (mr->flags & MEAS_REP_F_DL_VALID) {
520 append_tlv_u16(req_tlv, TLVID_osmo_rxlev_dl,
521 rxlev2dbm(dl_meas->full.rx_lev));
522 append_tlv_u8(req_tlv, TLVID_osmo_rxqual_dl,
523 dl_meas->full.rx_qual);
524 }
525
Harald Welte2483f1b2016-06-19 18:06:02 +0200526 if (lchan->conn && lchan->conn->vsub) {
527 struct vlr_subscr *vsub = lchan->conn->vsub;
528 size_t imei_len = strlen(vsub->imei);
Harald Welte3f786002013-03-13 15:29:27 +0100529 if (imei_len)
530 append_tlv(req_tlv, TLVID_osmo_imei,
Harald Welte2483f1b2016-06-19 18:06:02 +0200531 (uint8_t *)vsub->imei, imei_len+1);
Harald Welte3f786002013-03-13 15:29:27 +0100532 }
533}
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200534#endif
Harald Welte3f786002013-03-13 15:29:27 +0100535
Keith320960c2017-05-13 23:38:52 +0200536struct {
537 uint32_t smpp_status_code;
538 uint8_t gsm411_cause;
539} smpp_to_gsm411_err_array[] = {
540
541 /* Seems like most phones don't care about the failure cause,
542 * although some will display a different notification for
543 * GSM411_RP_CAUSE_MO_NUM_UNASSIGNED
544 * Some provoke a display of "Try again later"
545 * while others a more definitive "Message sending failed"
546 */
547
548 { ESME_RSYSERR, GSM411_RP_CAUSE_MO_DEST_OUT_OF_ORDER },
549 { ESME_RINVDSTADR, GSM411_RP_CAUSE_MO_NUM_UNASSIGNED },
550 { ESME_RMSGQFUL, GSM411_RP_CAUSE_MO_CONGESTION },
551 { ESME_RINVSRCADR, GSM411_RP_CAUSE_MO_SMS_REJECTED },
552 { ESME_RINVMSGID, GSM411_RP_CAUSE_INV_TRANS_REF }
553};
554
555static int smpp_to_gsm411_err(uint32_t smpp_status_code, int *gsm411_cause)
556{
557 int i;
558 for (i = 0; i < ARRAY_SIZE(smpp_to_gsm411_err_array); i++) {
559 if (smpp_to_gsm411_err_array[i].smpp_status_code != smpp_status_code)
560 continue;
561 *gsm411_cause = smpp_to_gsm411_err_array[i].gsm411_cause;
562 return 0;
563 }
564 return -1;
565}
566
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200567static void smpp_cmd_free(struct osmo_smpp_cmd *cmd)
568{
569 osmo_timer_del(&cmd->response_timer);
570 llist_del(&cmd->list);
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100571 vlr_subscr_put(cmd->vsub, VSUB_USE_SMPP_CMD);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200572 talloc_free(cmd);
573}
574
575void smpp_cmd_flush_pending(struct osmo_esme *esme)
576{
577 struct osmo_smpp_cmd *cmd, *next;
578
579 llist_for_each_entry_safe(cmd, next, &esme->smpp_cmd_list, list)
580 smpp_cmd_free(cmd);
581}
582
583void smpp_cmd_ack(struct osmo_smpp_cmd *cmd)
584{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100585 struct msc_a *msc_a;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200586 struct gsm_trans *trans;
587
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100588 if (cmd->is_report)
589 goto out;
590
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100591 msc_a = msc_a_for_vsub(cmd->vsub, true);
592 if (!msc_a) {
593 LOGP(DSMPP, LOGL_ERROR, "No connection to subscriber %s\n", vlr_subscr_name(cmd->vsub));
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100594 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200595 }
596
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100597 trans = trans_find_by_id(msc_a, TRANS_SMS, cmd->gsm411_trans_id);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200598 if (!trans) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100599 LOG_MSC_A_CAT(msc_a, DSMPP, LOGL_ERROR, "GSM transaction %u is gone\n", cmd->gsm411_trans_id);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100600 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200601 }
602
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100603 gsm411_send_rp_ack(trans, cmd->gsm411_msg_ref);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100604out:
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200605 smpp_cmd_free(cmd);
606}
607
Keith320960c2017-05-13 23:38:52 +0200608void smpp_cmd_err(struct osmo_smpp_cmd *cmd, uint32_t status)
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200609{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100610 struct msc_a *msc_a;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200611 struct gsm_trans *trans;
Keith320960c2017-05-13 23:38:52 +0200612 int gsm411_cause;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200613
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100614 if (cmd->is_report)
615 goto out;
616
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100617 msc_a = msc_a_for_vsub(cmd->vsub, true);
618 if (!msc_a) {
619 LOGP(DSMPP, LOGL_ERROR, "No connection to subscriber %s\n", vlr_subscr_name(cmd->vsub));
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100620 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200621 }
622
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100623 trans = trans_find_by_id(msc_a, TRANS_SMS, cmd->gsm411_trans_id);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200624 if (!trans) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100625 LOG_MSC_A_CAT(msc_a, DSMPP, LOGL_ERROR, "GSM transaction %u is gone\n",
626 cmd->gsm411_trans_id);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100627 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200628 }
629
Keith320960c2017-05-13 23:38:52 +0200630 if (smpp_to_gsm411_err(status, &gsm411_cause) < 0)
631 gsm411_cause = GSM411_RP_CAUSE_MO_NET_OUT_OF_ORDER;
632
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100633 gsm411_send_rp_error(trans, cmd->gsm411_msg_ref, gsm411_cause);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100634out:
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200635 smpp_cmd_free(cmd);
636}
637
638static void smpp_deliver_sm_cb(void *data)
639{
Keith320960c2017-05-13 23:38:52 +0200640 smpp_cmd_err(data, ESME_RSYSERR);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200641}
642
643static int smpp_cmd_enqueue(struct osmo_esme *esme,
Harald Welte2483f1b2016-06-19 18:06:02 +0200644 struct vlr_subscr *vsub, struct gsm_sms *sms,
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100645 uint32_t sequence_number)
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200646{
647 struct osmo_smpp_cmd *cmd;
648
649 cmd = talloc_zero(esme, struct osmo_smpp_cmd);
650 if (!cmd)
651 return -1;
652
653 cmd->sequence_nr = sequence_number;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100654 cmd->is_report = sms->is_report;
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100655 cmd->gsm411_msg_ref = sms->gsm411.msg_ref;
656 cmd->gsm411_trans_id = sms->gsm411.transaction_id;
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100657 vlr_subscr_get(vsub, VSUB_USE_SMPP_CMD);
658 cmd->vsub = vsub;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200659
660 /* FIXME: No predefined value for this response_timer as specified by
661 * SMPP 3.4 specs, section 7.2. Make this configurable? Don't forget
662 * lchan keeps busy until we get a reply to this SMPP command. Too high
663 * value may exhaust resources.
664 */
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200665 osmo_timer_setup(&cmd->response_timer, smpp_deliver_sm_cb, cmd);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200666 osmo_timer_schedule(&cmd->response_timer, 5, 0);
667 llist_add_tail(&cmd->list, &esme->smpp_cmd_list);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200668
669 return 0;
670}
671
672struct osmo_smpp_cmd *smpp_cmd_find_by_seqnum(struct osmo_esme *esme,
673 uint32_t sequence_nr)
674{
675 struct osmo_smpp_cmd *cmd;
676
677 llist_for_each_entry(cmd, &esme->smpp_cmd_list, list) {
678 if (cmd->sequence_nr == sequence_nr)
679 return cmd;
680 }
681 return NULL;
682}
683
Harald Welte3f786002013-03-13 15:29:27 +0100684static int deliver_to_esme(struct osmo_esme *esme, struct gsm_sms *sms,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100685 struct msc_a *msc_a)
Harald Weltee07b6a72012-11-23 19:02:37 +0100686{
687 struct deliver_sm_t deliver;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200688 int mode, ret;
Harald Weltee07b6a72012-11-23 19:02:37 +0100689 uint8_t dcs;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100690 struct vlr_subscr *vsub = msc_a_vsub(msc_a);
Harald Weltee07b6a72012-11-23 19:02:37 +0100691
692 memset(&deliver, 0, sizeof(deliver));
693 deliver.command_length = 0;
694 deliver.command_id = DELIVER_SM;
695 deliver.command_status = ESME_ROK;
696
697 strcpy((char *)deliver.service_type, "CMT");
698 if (esme->acl && esme->acl->deliver_src_imsi) {
699 deliver.source_addr_ton = TON_Subscriber_Number;
700 deliver.source_addr_npi = NPI_Land_Mobile_E212;
701 snprintf((char *)deliver.source_addr,
702 sizeof(deliver.source_addr), "%s",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100703 vsub->imsi);
Harald Weltee07b6a72012-11-23 19:02:37 +0100704 } else {
705 deliver.source_addr_ton = TON_Network_Specific;
706 deliver.source_addr_npi = NPI_ISDN_E163_E164;
707 snprintf((char *)deliver.source_addr,
708 sizeof(deliver.source_addr), "%s",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100709 vsub->msisdn);
Harald Weltee07b6a72012-11-23 19:02:37 +0100710 }
711
Harald Weltec0de14d2012-11-23 23:35:01 +0100712 deliver.dest_addr_ton = sms->dst.ton;
713 deliver.dest_addr_npi = sms->dst.npi;
714 memcpy(deliver.destination_addr, sms->dst.addr,
Harald Weltee07b6a72012-11-23 19:02:37 +0100715 sizeof(deliver.destination_addr));
716
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100717 if (sms->is_report)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200718 deliver.esm_class = SMPP34_DELIVERY_RECEIPT;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100719 else
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200720 deliver.esm_class = SMPP34_DATAGRAM_MODE;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100721
Harald Weltee07b6a72012-11-23 19:02:37 +0100722 if (sms->ud_hdr_ind)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200723 deliver.esm_class |= SMPP34_UDHI_IND;
Harald Weltee07b6a72012-11-23 19:02:37 +0100724 if (sms->reply_path_req)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200725 deliver.esm_class |= SMPP34_REPLY_PATH;
Harald Weltee07b6a72012-11-23 19:02:37 +0100726
727 deliver.protocol_id = sms->protocol_id;
728 deliver.priority_flag = 0;
Pablo Neira Ayuso6ceac7c2017-08-07 14:01:15 +0100729 if (sms->status_rep_req)
Pablo Neira Ayuso4f03b472017-08-11 14:36:01 +0200730 deliver.registered_delivery = SMPP34_DELIVERY_RECEIPT_ON;
Harald Weltee07b6a72012-11-23 19:02:37 +0100731
Harald Weltec75ed6d2013-05-28 20:58:02 +0200732 /* Figure out SMPP DCS from TP-DCS */
Harald Weltee07b6a72012-11-23 19:02:37 +0100733 dcs = sms->data_coding_scheme;
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +0200734 if (smpp_determine_scheme(dcs, &deliver.data_coding, &mode) == -1)
Harald Weltec75ed6d2013-05-28 20:58:02 +0200735 return -1;
Harald Weltec75ed6d2013-05-28 20:58:02 +0200736
737 /* Transparently pass on DCS via SMPP if requested */
Holger Hans Peter Freyther921b2272013-07-14 08:54:07 +0200738 if (esme->acl && esme->acl->dcs_transparent)
Harald Weltec75ed6d2013-05-28 20:58:02 +0200739 deliver.data_coding = dcs;
740
741 if (mode == MODE_7BIT) {
Harald Weltee07b6a72012-11-23 19:02:37 +0100742 uint8_t *dst = deliver.short_message;
Harald Weltee07b6a72012-11-23 19:02:37 +0100743
744 /* SMPP has this strange notion of putting 7bit SMS in
745 * an octet-aligned mode */
Harald Weltee07b6a72012-11-23 19:02:37 +0100746 if (sms->ud_hdr_ind) {
Harald Welteb8a1f962012-11-24 01:37:39 +0100747 /* length (bytes) of UDH inside UD */
748 uint8_t udh_len = sms->user_data[0] + 1;
749
750 /* copy over the UDH */
751 memcpy(dst, sms->user_data, udh_len);
752 dst += udh_len;
753 deliver.sm_length = udh_len;
Harald Weltee07b6a72012-11-23 19:02:37 +0100754 }
Harald Welteb8a1f962012-11-24 01:37:39 +0100755 /* add decoded text */
756 deliver.sm_length += gsm_7bit_expand((char *)dst, sms->user_data, sms->user_data_len, sms->ud_hdr_ind);
Harald Weltec75ed6d2013-05-28 20:58:02 +0200757 } else {
Harald Weltee07b6a72012-11-23 19:02:37 +0100758 deliver.sm_length = sms->user_data_len;
759 memcpy(deliver.short_message, sms->user_data, deliver.sm_length);
Harald Weltee07b6a72012-11-23 19:02:37 +0100760 }
761
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200762#if BEFORE_MSCSPLIT
763 /* We currently have no lchan information. Re-add after A-interface, see OS#2390. */
Holger Hans Peter Freyther019851a2015-02-08 09:21:04 +0100764 if (esme->acl && esme->acl->osmocom_ext && conn->lchan)
Harald Welte3f786002013-03-13 15:29:27 +0100765 append_osmo_tlvs(&deliver.tlv, conn->lchan);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200766#endif
Harald Welte3f786002013-03-13 15:29:27 +0100767
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100768 append_tlv_u16(&deliver.tlv, TLVID_user_message_reference,
769 sms->msg_ref);
770
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200771 ret = smpp_tx_deliver(esme, &deliver);
772 if (ret < 0)
773 return ret;
774
Pablo Neira Ayuso83616a82020-01-15 10:00:24 +0100775 OSMO_ASSERT(!sms->smpp.esme);
776 smpp_esme_get(esme);
777 sms->smpp.esme = esme;
778
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100779 return smpp_cmd_enqueue(esme, vsub, sms,
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100780 deliver.sequence_number);
Harald Weltee07b6a72012-11-23 19:02:37 +0100781}
782
Harald Welte338e3b32012-11-20 22:22:04 +0100783static struct smsc *g_smsc;
784
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100785bool smpp_route_smpp_first()
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +0200786{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100787 return (bool)(g_smsc->smpp_first);
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +0200788}
789
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100790int smpp_try_deliver(struct gsm_sms *sms, struct msc_a *msc_a)
Harald Weltee07b6a72012-11-23 19:02:37 +0100791{
792 struct osmo_esme *esme;
793 struct osmo_smpp_addr dst;
Benoit Bolseed34ed572017-07-05 11:46:55 +0200794 int rc;
Harald Weltee07b6a72012-11-23 19:02:37 +0100795
796 memset(&dst, 0, sizeof(dst));
Harald Weltec0de14d2012-11-23 23:35:01 +0100797 dst.ton = sms->dst.ton;
798 dst.npi = sms->dst.npi;
799 memcpy(dst.addr, sms->dst.addr, sizeof(dst.addr));
Harald Weltee07b6a72012-11-23 19:02:37 +0100800
Benoit Bolseed34ed572017-07-05 11:46:55 +0200801 rc = smpp_route(g_smsc, &dst, &esme);
802 if (!rc)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100803 rc = deliver_to_esme(esme, sms, msc_a);
Harald Weltee07b6a72012-11-23 19:02:37 +0100804
Benoit Bolseed34ed572017-07-05 11:46:55 +0200805 return rc;
Harald Weltee07b6a72012-11-23 19:02:37 +0100806}
807
Harald Welte338e3b32012-11-20 22:22:04 +0100808struct smsc *smsc_from_vty(struct vty *v)
809{
810 /* FIXME: this is ugly */
811 return g_smsc;
812}
813
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100814/*! \brief Allocate the OpenBSC SMPP interface struct and init VTY. */
815int smpp_openbsc_alloc_init(void *ctx)
Harald Weltef1033cc2012-11-08 16:14:37 +0100816{
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100817 g_smsc = smpp_smsc_alloc_init(ctx);
818 if (!g_smsc) {
819 LOGP(DSMPP, LOGL_FATAL, "Cannot allocate smsc struct\n");
820 return -1;
821 }
Harald Weltee39f6cd2019-04-10 00:33:46 +0200822 smpp34_set_memory_functions(&smpp34_talloc);
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100823 return smpp_vty_init();
824}
825
826/*! \brief Launch the OpenBSC SMPP interface with the parameters set from VTY.
827 */
828int smpp_openbsc_start(struct gsm_network *net)
829{
Harald Weltef1033cc2012-11-08 16:14:37 +0100830 int rc;
Harald Welte76afa162013-03-13 15:05:26 +0100831 g_smsc->priv = net;
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100832
833 /* If a VTY configuration has taken place, the values have been stored
834 * in the smsc struct. Otherwise, use the defaults (NULL -> any, 0 ->
835 * default SMPP port, see smpp_smsc_bind()). */
836 rc = smpp_smsc_start(g_smsc, g_smsc->bind_addr, g_smsc->listen_port);
837 if (rc < 0)
838 return rc;
839
840 rc = osmo_signal_register_handler(SS_SMS, smpp_sms_cb, g_smsc);
841 if (rc < 0)
842 return rc;
843 rc = osmo_signal_register_handler(SS_SUBSCR, smpp_subscr_cb, g_smsc);
844 if (rc < 0)
845 return rc;
846
847 return 0;
Harald Welte76afa162013-03-13 15:05:26 +0100848}
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100849