blob: e4c3891c2a05077305cfd844ad143baff5e31de5 [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 }
Harald Welteb8a1f962012-11-24 01:37:39 +0100253 gsm_septets2octets(sms->user_data+ud_len, sms_msg,
254 sms_msg_len, padbits);
255 sms->user_data_len = (ud_len*8 + padbits)/7 + sms_msg_len;/* SEPTETS */
256 /* FIXME: sms->text */
Harald Welte27d5e652013-05-28 20:37:07 +0200257 } else {
Harald Weltef1033cc2012-11-08 16:14:37 +0100258 memcpy(sms->user_data, sms_msg, sms_msg_len);
259 sms->user_data_len = sms_msg_len;
Harald Weltef1033cc2012-11-08 16:14:37 +0100260 }
261
262 *psms = sms;
263 return ESME_ROK;
264}
265
Harald Weltee94db492012-11-08 20:11:05 +0100266/*! \brief handle incoming libsmpp34 ssubmit_sm_t from remote ESME */
Harald Weltef1033cc2012-11-08 16:14:37 +0100267int handle_smpp_submit(struct osmo_esme *esme, struct submit_sm_t *submit,
268 struct submit_sm_resp_t *submit_r)
269{
270 struct gsm_sms *sms;
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100271 struct gsm_network *net = esme->smsc->priv;
272 struct sms_signal_data sig;
Harald Weltef1033cc2012-11-08 16:14:37 +0100273 int rc = -1;
274
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100275 rc = submit_to_sms(&sms, net, submit);
Harald Weltef1033cc2012-11-08 16:14:37 +0100276 if (rc != ESME_ROK) {
277 submit_r->command_status = rc;
278 return 0;
279 }
Harald Weltee94db492012-11-08 20:11:05 +0100280 smpp_esme_get(esme);
Harald Welted4bdee72012-11-08 19:44:08 +0100281 sms->smpp.esme = esme;
Harald Welte9ad03622012-11-08 22:15:04 +0100282 sms->protocol_id = submit->protocol_id;
Harald Weltef1033cc2012-11-08 16:14:37 +0100283
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200284 switch (submit->esm_class & SMPP34_MSG_MODE_MASK) {
Harald Weltef1033cc2012-11-08 16:14:37 +0100285 case 0: /* default */
286 case 1: /* datagram */
287 case 3: /* store-and-forward */
288 rc = db_sms_store(sms);
Holger Hans Peter Freyther6a85c152013-01-20 17:21:31 +0100289 sms_free(sms);
290 sms = NULL;
Harald Weltef1033cc2012-11-08 16:14:37 +0100291 if (rc < 0) {
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100292 LOGP(DLSMS, LOGL_ERROR, "SMPP SUBMIT-SM: Unable to "
Harald Weltef1033cc2012-11-08 16:14:37 +0100293 "store SMS in database\n");
Harald Weltef1033cc2012-11-08 16:14:37 +0100294 submit_r->command_status = ESME_RSYSERR;
295 return 0;
296 }
297 strcpy((char *)submit_r->message_id, "msg_id_not_implemented");
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100298 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Stored in DB\n");
Holger Hans Peter Freytherb5a4edd2013-01-20 17:43:50 +0100299
300 memset(&sig, 0, sizeof(sig));
301 osmo_signal_dispatch(SS_SMS, S_SMS_SUBMITTED, &sig);
Harald Weltef1033cc2012-11-08 16:14:37 +0100302 rc = 0;
303 break;
304 case 2: /* forward (i.e. transaction) mode */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100305 LOGP(DLSMS, LOGL_DEBUG, "SMPP SUBMIT-SM: Forwarding in "
Harald Welte9122c132012-11-09 19:43:50 +0100306 "real time (Transaction/Forward mode)\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100307 sms->smpp.transaction_mode = 1;
Vadim Yanitskiy24e025e2018-11-22 15:42:39 +0700308 gsm411_send_sms(net, sms->receiver, sms);
Harald Weltef1033cc2012-11-08 16:14:37 +0100309 rc = 1; /* don't send any response yet */
310 break;
311 }
312 return rc;
313}
314
Harald Welte2483f1b2016-06-19 18:06:02 +0200315static void alert_all_esme(struct smsc *smsc, struct vlr_subscr *vsub,
Harald Welte045f4022013-07-30 23:45:01 +0800316 uint8_t smpp_avail_status)
317{
318 struct osmo_esme *esme;
319
320 llist_for_each_entry(esme, &smsc->esme_list, list) {
321 /* we currently send an alert notification to each ESME that is
322 * connected, and do not require a (non-existant) delivery
Keithc6d219c2019-01-17 01:01:59 +0100323 * pending flag to be set before. */
Keitha3a88212019-01-17 01:07:53 +0100324 if (!esme->bind_flags) {
325 LOGP(DSMPP, LOGL_DEBUG,
326 "ESME is not (yet) bound, skipping alert\n");
327 continue;
328 }
Alexander Couzens4aeb4ec2019-08-23 23:30:12 +0200329 if (esme->acl && !esme->acl->alert_notifications) {
Keithc6d219c2019-01-17 01:01:59 +0100330 LOGP(DSMPP, LOGL_DEBUG,
331 "[%s] is not set to receive Alert Notifications\n",
332 esme->system_id);
333 continue;
334 }
Harald Welte045f4022013-07-30 23:45:01 +0800335 if (esme->acl && esme->acl->deliver_src_imsi) {
336 smpp_tx_alert(esme, TON_Subscriber_Number,
337 NPI_Land_Mobile_E212,
Harald Welte2483f1b2016-06-19 18:06:02 +0200338 vsub->imsi, smpp_avail_status);
Harald Welte045f4022013-07-30 23:45:01 +0800339 } else {
340 smpp_tx_alert(esme, TON_Network_Specific,
341 NPI_ISDN_E163_E164,
Harald Welte2483f1b2016-06-19 18:06:02 +0200342 vsub->msisdn, smpp_avail_status);
Harald Welte045f4022013-07-30 23:45:01 +0800343 }
344 }
345}
346
347
Harald Weltee94db492012-11-08 20:11:05 +0100348/*! \brief signal handler for status of attempted SMS deliveries */
Harald Welted4bdee72012-11-08 19:44:08 +0100349static int smpp_sms_cb(unsigned int subsys, unsigned int signal,
350 void *handler_data, void *signal_data)
351{
Harald Welted4bdee72012-11-08 19:44:08 +0100352 struct sms_signal_data *sig_sms = signal_data;
353 struct gsm_sms *sms = sig_sms->sms;
Harald Welte99e273d2013-07-30 23:39:18 +0800354 struct smsc *smsc = handler_data;
Harald Welted4bdee72012-11-08 19:44:08 +0100355 int rc = 0;
356
357 if (!sms)
358 return 0;
359
360 if (sms->source != SMS_SOURCE_SMPP)
361 return 0;
362
363 switch (signal) {
Harald Welte1aeb2af2013-07-30 22:30:24 +0800364 case S_SMS_MEM_EXCEEDED:
365 /* fall-through: There is no ESME_Rxxx result code to
366 * indicate a MEMORY EXCEEDED in transaction mode back
367 * to the ESME */
Harald Welted4bdee72012-11-08 19:44:08 +0100368 case S_SMS_UNKNOWN_ERROR:
369 if (sms->smpp.transaction_mode) {
370 /* Send back the SUBMIT-SM response with apropriate error */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100371 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Error\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100372 rc = smpp_tx_submit_r(sms->smpp.esme,
373 sms->smpp.sequence_nr,
374 ESME_RDELIVERYFAILURE,
375 sms->smpp.msg_id);
376 }
377 break;
378 case S_SMS_DELIVERED:
379 /* SMS layer tells us the delivery has been completed */
380 if (sms->smpp.transaction_mode) {
381 /* Send back the SUBMIT-SM response */
Harald Welte0d0c9ec2012-11-24 11:13:19 +0100382 LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Success\n");
Harald Welted4bdee72012-11-08 19:44:08 +0100383 rc = smpp_tx_submit_r(sms->smpp.esme,
384 sms->smpp.sequence_nr,
385 ESME_ROK, sms->smpp.msg_id);
386 }
387 break;
Harald Welte99e273d2013-07-30 23:39:18 +0800388 case S_SMS_SMMA:
Harald Welte2483f1b2016-06-19 18:06:02 +0200389 if (!sig_sms->trans || !sig_sms->trans->vsub) {
Harald Welte99e273d2013-07-30 23:39:18 +0800390 /* SMMA without a subscriber? strange... */
391 LOGP(DLSMS, LOGL_NOTICE, "SMMA without subscriber?\n");
392 break;
393 }
394
Harald Welte99e273d2013-07-30 23:39:18 +0800395 /* There's no real 1:1 match for SMMA in SMPP. However,
396 * an ALERT NOTIFICATION seems to be the most logical
397 * choice */
Harald Welte2483f1b2016-06-19 18:06:02 +0200398 alert_all_esme(smsc, sig_sms->trans->vsub, 0);
Harald Welte99e273d2013-07-30 23:39:18 +0800399 break;
Harald Welted4bdee72012-11-08 19:44:08 +0100400 }
401
402 return rc;
403}
404
Harald Welte8a1b0562012-11-09 12:51:44 +0100405/*! \brief signal handler for subscriber related signals */
406static int smpp_subscr_cb(unsigned int subsys, unsigned int signal,
407 void *handler_data, void *signal_data)
408{
Harald Welte2483f1b2016-06-19 18:06:02 +0200409 struct vlr_subscr *vsub = signal_data;
Harald Welte8a1b0562012-11-09 12:51:44 +0100410 struct smsc *smsc = handler_data;
Harald Welte8a1b0562012-11-09 12:51:44 +0100411 uint8_t smpp_avail_status;
412
413 /* determine the smpp_avail_status depending on attach/detach */
414 switch (signal) {
415 case S_SUBSCR_ATTACHED:
416 smpp_avail_status = 0;
417 break;
418 case S_SUBSCR_DETACHED:
419 smpp_avail_status = 2;
420 break;
421 default:
422 return 0;
423 }
424
Harald Welte2483f1b2016-06-19 18:06:02 +0200425 alert_all_esme(smsc, vsub, smpp_avail_status);
Harald Welte8a1b0562012-11-09 12:51:44 +0100426
427 return 0;
428}
429
Harald Welteb8a1f962012-11-24 01:37:39 +0100430/* GSM 03.38 6.2.1 Character expanding (no decode!) */
431static int gsm_7bit_expand(char *text, const uint8_t *user_data, uint8_t septet_l, uint8_t ud_hdr_ind)
432{
433 int i = 0;
434 int shift = 0;
435 uint8_t c;
436
437 /* skip the user data header */
438 if (ud_hdr_ind) {
439 /* get user data header length + 1 (for the 'user data header length'-field) */
440 shift = ((user_data[0] + 1) * 8) / 7;
441 if ((((user_data[0] + 1) * 8) % 7) != 0)
442 shift++;
443 septet_l = septet_l - shift;
444 }
445
446 for (i = 0; i < septet_l; i++) {
447 c =
448 ((user_data[((i + shift) * 7 + 7) >> 3] <<
449 (7 - (((i + shift) * 7 + 7) & 7))) |
450 (user_data[((i + shift) * 7) >> 3] >>
451 (((i + shift) * 7) & 7))) & 0x7f;
452
453 *(text++) = c;
454 }
455
456 *text = '\0';
457
458 return i;
459}
460
461
Harald Welte3f786002013-03-13 15:29:27 +0100462/* FIXME: libsmpp34 helpers, they should be part of libsmpp34! */
463void append_tlv(tlv_t **req_tlv, uint16_t tag,
464 const uint8_t *data, uint16_t len)
465{
466 tlv_t tlv;
467
468 memset(&tlv, 0, sizeof(tlv));
469 tlv.tag = tag;
470 tlv.length = len;
471 memcpy(tlv.value.octet, data, tlv.length);
472 build_tlv(req_tlv, &tlv);
473}
474void append_tlv_u8(tlv_t **req_tlv, uint16_t tag, uint8_t val)
475{
476 tlv_t tlv;
477
478 memset(&tlv, 0, sizeof(tlv));
479 tlv.tag = tag;
480 tlv.length = 1;
481 tlv.value.val08 = val;
482 build_tlv(req_tlv, &tlv);
483}
484void append_tlv_u16(tlv_t **req_tlv, uint16_t tag, uint16_t val)
485{
486 tlv_t tlv;
487
488 memset(&tlv, 0, sizeof(tlv));
489 tlv.tag = tag;
490 tlv.length = 2;
Pau Espin Pedrold5c43392017-08-18 12:26:23 +0200491 tlv.value.val16 = val;
Harald Welte3f786002013-03-13 15:29:27 +0100492 build_tlv(req_tlv, &tlv);
493}
494
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200495#if BEFORE_MSCSPLIT
496/* We currently have no lchan information. Re-add after A-interface, see OS#2390. */
Harald Welte3f786002013-03-13 15:29:27 +0100497/* Append the Osmocom vendor-specific additional TLVs to a SMPP msg */
498static void append_osmo_tlvs(tlv_t **req_tlv, const struct gsm_lchan *lchan)
499{
500 int idx = calc_initial_idx(ARRAY_SIZE(lchan->meas_rep),
501 lchan->meas_rep_idx, 1);
502 const struct gsm_meas_rep *mr = &lchan->meas_rep[idx];
503 const struct gsm_meas_rep_unidir *ul_meas = &mr->ul;
504 const struct gsm_meas_rep_unidir *dl_meas = &mr->dl;
505
506 /* Osmocom vendor-specific SMPP34 extensions */
507 append_tlv_u16(req_tlv, TLVID_osmo_arfcn, lchan->ts->trx->arfcn);
508 if (mr->flags & MEAS_REP_F_MS_L1) {
509 uint8_t ms_dbm;
510 append_tlv_u8(req_tlv, TLVID_osmo_ta, mr->ms_l1.ta);
511 ms_dbm = ms_pwr_dbm(lchan->ts->trx->bts->band, mr->ms_l1.pwr);
512 append_tlv_u8(req_tlv, TLVID_osmo_ms_l1_txpwr, ms_dbm);
Max11e4e412017-04-20 13:07:58 +0200513 } else if (mr->flags & MEAS_REP_F_MS_TO) /* Save Timing Offset field = MS Timing Offset + 63 */
514 append_tlv_u8(req_tlv, TLVID_osmo_ta, mr->ms_timing_offset + 63);
Harald Welte3f786002013-03-13 15:29:27 +0100515
516 append_tlv_u16(req_tlv, TLVID_osmo_rxlev_ul,
517 rxlev2dbm(ul_meas->full.rx_lev));
518 append_tlv_u8(req_tlv, TLVID_osmo_rxqual_ul, ul_meas->full.rx_qual);
519
520 if (mr->flags & MEAS_REP_F_DL_VALID) {
521 append_tlv_u16(req_tlv, TLVID_osmo_rxlev_dl,
522 rxlev2dbm(dl_meas->full.rx_lev));
523 append_tlv_u8(req_tlv, TLVID_osmo_rxqual_dl,
524 dl_meas->full.rx_qual);
525 }
526
Harald Welte2483f1b2016-06-19 18:06:02 +0200527 if (lchan->conn && lchan->conn->vsub) {
528 struct vlr_subscr *vsub = lchan->conn->vsub;
529 size_t imei_len = strlen(vsub->imei);
Harald Welte3f786002013-03-13 15:29:27 +0100530 if (imei_len)
531 append_tlv(req_tlv, TLVID_osmo_imei,
Harald Welte2483f1b2016-06-19 18:06:02 +0200532 (uint8_t *)vsub->imei, imei_len+1);
Harald Welte3f786002013-03-13 15:29:27 +0100533 }
534}
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200535#endif
Harald Welte3f786002013-03-13 15:29:27 +0100536
Keith320960c2017-05-13 23:38:52 +0200537struct {
538 uint32_t smpp_status_code;
539 uint8_t gsm411_cause;
540} smpp_to_gsm411_err_array[] = {
541
542 /* Seems like most phones don't care about the failure cause,
543 * although some will display a different notification for
544 * GSM411_RP_CAUSE_MO_NUM_UNASSIGNED
545 * Some provoke a display of "Try again later"
546 * while others a more definitive "Message sending failed"
547 */
548
549 { ESME_RSYSERR, GSM411_RP_CAUSE_MO_DEST_OUT_OF_ORDER },
550 { ESME_RINVDSTADR, GSM411_RP_CAUSE_MO_NUM_UNASSIGNED },
551 { ESME_RMSGQFUL, GSM411_RP_CAUSE_MO_CONGESTION },
552 { ESME_RINVSRCADR, GSM411_RP_CAUSE_MO_SMS_REJECTED },
553 { ESME_RINVMSGID, GSM411_RP_CAUSE_INV_TRANS_REF }
554};
555
556static int smpp_to_gsm411_err(uint32_t smpp_status_code, int *gsm411_cause)
557{
558 int i;
559 for (i = 0; i < ARRAY_SIZE(smpp_to_gsm411_err_array); i++) {
560 if (smpp_to_gsm411_err_array[i].smpp_status_code != smpp_status_code)
561 continue;
562 *gsm411_cause = smpp_to_gsm411_err_array[i].gsm411_cause;
563 return 0;
564 }
565 return -1;
566}
567
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200568static void smpp_cmd_free(struct osmo_smpp_cmd *cmd)
569{
570 osmo_timer_del(&cmd->response_timer);
571 llist_del(&cmd->list);
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100572 vlr_subscr_put(cmd->vsub, VSUB_USE_SMPP_CMD);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200573 talloc_free(cmd);
574}
575
576void smpp_cmd_flush_pending(struct osmo_esme *esme)
577{
578 struct osmo_smpp_cmd *cmd, *next;
579
580 llist_for_each_entry_safe(cmd, next, &esme->smpp_cmd_list, list)
581 smpp_cmd_free(cmd);
582}
583
584void smpp_cmd_ack(struct osmo_smpp_cmd *cmd)
585{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100586 struct msc_a *msc_a;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200587 struct gsm_trans *trans;
588
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100589 if (cmd->is_report)
590 goto out;
591
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100592 msc_a = msc_a_for_vsub(cmd->vsub, true);
593 if (!msc_a) {
594 LOGP(DSMPP, LOGL_ERROR, "No connection to subscriber %s\n", vlr_subscr_name(cmd->vsub));
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100595 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200596 }
597
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100598 trans = trans_find_by_id(msc_a, TRANS_SMS, cmd->gsm411_trans_id);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200599 if (!trans) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100600 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 +0100601 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200602 }
603
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100604 gsm411_send_rp_ack(trans, cmd->gsm411_msg_ref);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100605out:
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200606 smpp_cmd_free(cmd);
607}
608
Keith320960c2017-05-13 23:38:52 +0200609void smpp_cmd_err(struct osmo_smpp_cmd *cmd, uint32_t status)
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200610{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100611 struct msc_a *msc_a;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200612 struct gsm_trans *trans;
Keith320960c2017-05-13 23:38:52 +0200613 int gsm411_cause;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200614
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100615 if (cmd->is_report)
616 goto out;
617
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100618 msc_a = msc_a_for_vsub(cmd->vsub, true);
619 if (!msc_a) {
620 LOGP(DSMPP, LOGL_ERROR, "No connection to subscriber %s\n", vlr_subscr_name(cmd->vsub));
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100621 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200622 }
623
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100624 trans = trans_find_by_id(msc_a, TRANS_SMS, cmd->gsm411_trans_id);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200625 if (!trans) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100626 LOG_MSC_A_CAT(msc_a, DSMPP, LOGL_ERROR, "GSM transaction %u is gone\n",
627 cmd->gsm411_trans_id);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100628 goto out;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200629 }
630
Keith320960c2017-05-13 23:38:52 +0200631 if (smpp_to_gsm411_err(status, &gsm411_cause) < 0)
632 gsm411_cause = GSM411_RP_CAUSE_MO_NET_OUT_OF_ORDER;
633
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100634 gsm411_send_rp_error(trans, cmd->gsm411_msg_ref, gsm411_cause);
Pablo Neira Ayusof00d8102017-08-07 14:01:01 +0100635out:
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200636 smpp_cmd_free(cmd);
637}
638
639static void smpp_deliver_sm_cb(void *data)
640{
Keith320960c2017-05-13 23:38:52 +0200641 smpp_cmd_err(data, ESME_RSYSERR);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200642}
643
644static int smpp_cmd_enqueue(struct osmo_esme *esme,
Harald Welte2483f1b2016-06-19 18:06:02 +0200645 struct vlr_subscr *vsub, struct gsm_sms *sms,
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100646 uint32_t sequence_number)
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200647{
648 struct osmo_smpp_cmd *cmd;
649
650 cmd = talloc_zero(esme, struct osmo_smpp_cmd);
651 if (!cmd)
652 return -1;
653
654 cmd->sequence_nr = sequence_number;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100655 cmd->is_report = sms->is_report;
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100656 cmd->gsm411_msg_ref = sms->gsm411.msg_ref;
657 cmd->gsm411_trans_id = sms->gsm411.transaction_id;
Neels Hofmeyr7c5346c2019-02-19 02:36:35 +0100658 vlr_subscr_get(vsub, VSUB_USE_SMPP_CMD);
659 cmd->vsub = vsub;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200660
661 /* FIXME: No predefined value for this response_timer as specified by
662 * SMPP 3.4 specs, section 7.2. Make this configurable? Don't forget
663 * lchan keeps busy until we get a reply to this SMPP command. Too high
664 * value may exhaust resources.
665 */
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200666 osmo_timer_setup(&cmd->response_timer, smpp_deliver_sm_cb, cmd);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200667 osmo_timer_schedule(&cmd->response_timer, 5, 0);
668 llist_add_tail(&cmd->list, &esme->smpp_cmd_list);
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200669
670 return 0;
671}
672
673struct osmo_smpp_cmd *smpp_cmd_find_by_seqnum(struct osmo_esme *esme,
674 uint32_t sequence_nr)
675{
676 struct osmo_smpp_cmd *cmd;
677
678 llist_for_each_entry(cmd, &esme->smpp_cmd_list, list) {
679 if (cmd->sequence_nr == sequence_nr)
680 return cmd;
681 }
682 return NULL;
683}
684
Harald Welte3f786002013-03-13 15:29:27 +0100685static int deliver_to_esme(struct osmo_esme *esme, struct gsm_sms *sms,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100686 struct msc_a *msc_a)
Harald Weltee07b6a72012-11-23 19:02:37 +0100687{
688 struct deliver_sm_t deliver;
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200689 int mode, ret;
Harald Weltee07b6a72012-11-23 19:02:37 +0100690 uint8_t dcs;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100691 struct vlr_subscr *vsub = msc_a_vsub(msc_a);
Harald Weltee07b6a72012-11-23 19:02:37 +0100692
693 memset(&deliver, 0, sizeof(deliver));
694 deliver.command_length = 0;
695 deliver.command_id = DELIVER_SM;
696 deliver.command_status = ESME_ROK;
697
698 strcpy((char *)deliver.service_type, "CMT");
699 if (esme->acl && esme->acl->deliver_src_imsi) {
700 deliver.source_addr_ton = TON_Subscriber_Number;
701 deliver.source_addr_npi = NPI_Land_Mobile_E212;
702 snprintf((char *)deliver.source_addr,
703 sizeof(deliver.source_addr), "%s",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100704 vsub->imsi);
Harald Weltee07b6a72012-11-23 19:02:37 +0100705 } else {
706 deliver.source_addr_ton = TON_Network_Specific;
707 deliver.source_addr_npi = NPI_ISDN_E163_E164;
708 snprintf((char *)deliver.source_addr,
709 sizeof(deliver.source_addr), "%s",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100710 vsub->msisdn);
Harald Weltee07b6a72012-11-23 19:02:37 +0100711 }
712
Harald Weltec0de14d2012-11-23 23:35:01 +0100713 deliver.dest_addr_ton = sms->dst.ton;
714 deliver.dest_addr_npi = sms->dst.npi;
715 memcpy(deliver.destination_addr, sms->dst.addr,
Harald Weltee07b6a72012-11-23 19:02:37 +0100716 sizeof(deliver.destination_addr));
717
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100718 if (sms->is_report)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200719 deliver.esm_class = SMPP34_DELIVERY_RECEIPT;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100720 else
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200721 deliver.esm_class = SMPP34_DATAGRAM_MODE;
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100722
Harald Weltee07b6a72012-11-23 19:02:37 +0100723 if (sms->ud_hdr_ind)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200724 deliver.esm_class |= SMPP34_UDHI_IND;
Harald Weltee07b6a72012-11-23 19:02:37 +0100725 if (sms->reply_path_req)
Pablo Neira Ayusod7e14da2017-08-11 13:10:48 +0200726 deliver.esm_class |= SMPP34_REPLY_PATH;
Harald Weltee07b6a72012-11-23 19:02:37 +0100727
728 deliver.protocol_id = sms->protocol_id;
729 deliver.priority_flag = 0;
Pablo Neira Ayuso6ceac7c2017-08-07 14:01:15 +0100730 if (sms->status_rep_req)
Pablo Neira Ayuso4f03b472017-08-11 14:36:01 +0200731 deliver.registered_delivery = SMPP34_DELIVERY_RECEIPT_ON;
Harald Weltee07b6a72012-11-23 19:02:37 +0100732
Harald Weltec75ed6d2013-05-28 20:58:02 +0200733 /* Figure out SMPP DCS from TP-DCS */
Harald Weltee07b6a72012-11-23 19:02:37 +0100734 dcs = sms->data_coding_scheme;
Holger Hans Peter Freythera7328a52013-07-13 17:09:56 +0200735 if (smpp_determine_scheme(dcs, &deliver.data_coding, &mode) == -1)
Harald Weltec75ed6d2013-05-28 20:58:02 +0200736 return -1;
Harald Weltec75ed6d2013-05-28 20:58:02 +0200737
738 /* Transparently pass on DCS via SMPP if requested */
Holger Hans Peter Freyther921b2272013-07-14 08:54:07 +0200739 if (esme->acl && esme->acl->dcs_transparent)
Harald Weltec75ed6d2013-05-28 20:58:02 +0200740 deliver.data_coding = dcs;
741
742 if (mode == MODE_7BIT) {
Harald Weltee07b6a72012-11-23 19:02:37 +0100743 uint8_t *dst = deliver.short_message;
Harald Weltee07b6a72012-11-23 19:02:37 +0100744
745 /* SMPP has this strange notion of putting 7bit SMS in
746 * an octet-aligned mode */
Harald Weltee07b6a72012-11-23 19:02:37 +0100747 if (sms->ud_hdr_ind) {
Harald Welteb8a1f962012-11-24 01:37:39 +0100748 /* length (bytes) of UDH inside UD */
749 uint8_t udh_len = sms->user_data[0] + 1;
750
751 /* copy over the UDH */
752 memcpy(dst, sms->user_data, udh_len);
753 dst += udh_len;
754 deliver.sm_length = udh_len;
Harald Weltee07b6a72012-11-23 19:02:37 +0100755 }
Harald Welteb8a1f962012-11-24 01:37:39 +0100756 /* add decoded text */
757 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 +0200758 } else {
Harald Weltee07b6a72012-11-23 19:02:37 +0100759 deliver.sm_length = sms->user_data_len;
760 memcpy(deliver.short_message, sms->user_data, deliver.sm_length);
Harald Weltee07b6a72012-11-23 19:02:37 +0100761 }
762
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200763#if BEFORE_MSCSPLIT
764 /* We currently have no lchan information. Re-add after A-interface, see OS#2390. */
Holger Hans Peter Freyther019851a2015-02-08 09:21:04 +0100765 if (esme->acl && esme->acl->osmocom_ext && conn->lchan)
Harald Welte3f786002013-03-13 15:29:27 +0100766 append_osmo_tlvs(&deliver.tlv, conn->lchan);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200767#endif
Harald Welte3f786002013-03-13 15:29:27 +0100768
Pablo Neira Ayusoadae8592017-08-07 14:01:30 +0100769 append_tlv_u16(&deliver.tlv, TLVID_user_message_reference,
770 sms->msg_ref);
771
Pablo Neira Ayuso93ffbd02017-05-04 18:44:22 +0200772 ret = smpp_tx_deliver(esme, &deliver);
773 if (ret < 0)
774 return ret;
775
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100776 return smpp_cmd_enqueue(esme, vsub, sms,
Pablo Neira Ayusofdc99662017-08-07 14:01:10 +0100777 deliver.sequence_number);
Harald Weltee07b6a72012-11-23 19:02:37 +0100778}
779
Harald Welte338e3b32012-11-20 22:22:04 +0100780static struct smsc *g_smsc;
781
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100782bool smpp_route_smpp_first()
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +0200783{
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100784 return (bool)(g_smsc->smpp_first);
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +0200785}
786
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100787int smpp_try_deliver(struct gsm_sms *sms, struct msc_a *msc_a)
Harald Weltee07b6a72012-11-23 19:02:37 +0100788{
789 struct osmo_esme *esme;
790 struct osmo_smpp_addr dst;
Benoit Bolseed34ed572017-07-05 11:46:55 +0200791 int rc;
Harald Weltee07b6a72012-11-23 19:02:37 +0100792
793 memset(&dst, 0, sizeof(dst));
Harald Weltec0de14d2012-11-23 23:35:01 +0100794 dst.ton = sms->dst.ton;
795 dst.npi = sms->dst.npi;
796 memcpy(dst.addr, sms->dst.addr, sizeof(dst.addr));
Harald Weltee07b6a72012-11-23 19:02:37 +0100797
Benoit Bolseed34ed572017-07-05 11:46:55 +0200798 rc = smpp_route(g_smsc, &dst, &esme);
799 if (!rc)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100800 rc = deliver_to_esme(esme, sms, msc_a);
Harald Weltee07b6a72012-11-23 19:02:37 +0100801
Benoit Bolseed34ed572017-07-05 11:46:55 +0200802 return rc;
Harald Weltee07b6a72012-11-23 19:02:37 +0100803}
804
Harald Welte338e3b32012-11-20 22:22:04 +0100805struct smsc *smsc_from_vty(struct vty *v)
806{
807 /* FIXME: this is ugly */
808 return g_smsc;
809}
810
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100811/*! \brief Allocate the OpenBSC SMPP interface struct and init VTY. */
812int smpp_openbsc_alloc_init(void *ctx)
Harald Weltef1033cc2012-11-08 16:14:37 +0100813{
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100814 g_smsc = smpp_smsc_alloc_init(ctx);
815 if (!g_smsc) {
816 LOGP(DSMPP, LOGL_FATAL, "Cannot allocate smsc struct\n");
817 return -1;
818 }
Harald Weltee39f6cd2019-04-10 00:33:46 +0200819 smpp34_set_memory_functions(&smpp34_talloc);
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100820 return smpp_vty_init();
821}
822
823/*! \brief Launch the OpenBSC SMPP interface with the parameters set from VTY.
824 */
825int smpp_openbsc_start(struct gsm_network *net)
826{
Harald Weltef1033cc2012-11-08 16:14:37 +0100827 int rc;
Harald Welte76afa162013-03-13 15:05:26 +0100828 g_smsc->priv = net;
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100829
830 /* If a VTY configuration has taken place, the values have been stored
831 * in the smsc struct. Otherwise, use the defaults (NULL -> any, 0 ->
832 * default SMPP port, see smpp_smsc_bind()). */
833 rc = smpp_smsc_start(g_smsc, g_smsc->bind_addr, g_smsc->listen_port);
834 if (rc < 0)
835 return rc;
836
837 rc = osmo_signal_register_handler(SS_SMS, smpp_sms_cb, g_smsc);
838 if (rc < 0)
839 return rc;
840 rc = osmo_signal_register_handler(SS_SUBSCR, smpp_subscr_cb, g_smsc);
841 if (rc < 0)
842 return rc;
843
844 return 0;
Harald Welte76afa162013-03-13 15:05:26 +0100845}
Neels Hofmeyr1b0e5542016-02-24 19:15:39 +0100846