blob: ef29b29cc47e7d949cc521f2f078f010d14b960c [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Weltebf5e8df2009-02-03 12:59:45 +00004/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
Harald Welte498b0bb2009-01-09 21:27:43 +00005 * (C) 2008, 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00006 *
Harald Welte52b1f982008-12-23 20:25:15 +00007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <errno.h>
Harald Weltedb253af2008-12-30 17:56:55 +000030#include <time.h>
Harald Welte4b634542008-12-27 01:55:51 +000031#include <netinet/in.h>
Harald Welte52b1f982008-12-23 20:25:15 +000032
Harald Welte75a983f2008-12-27 21:34:06 +000033#include <openbsc/db.h>
Harald Welte8470bf22008-12-25 23:28:35 +000034#include <openbsc/msgb.h>
Harald Weltef1dae192009-12-14 22:24:28 +010035#include <openbsc/bitvec.h>
Harald Welte7584aea2009-02-11 11:44:12 +000036#include <openbsc/tlv.h>
Harald Welte8470bf22008-12-25 23:28:35 +000037#include <openbsc/debug.h>
38#include <openbsc/gsm_data.h>
Daniel Willmanneea93372009-08-13 03:42:07 +020039#include <openbsc/gsm_utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000040#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000041#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000042#include <openbsc/gsm_04_08.h>
43#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000044#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000045#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000046#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000047#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000048#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020049#include <openbsc/rtp_proxy.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020050#include <openbsc/talloc.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020051#include <openbsc/transaction.h>
Harald Welte6eafe912009-10-16 08:32:58 +020052#include <openbsc/ussd.h>
Harald Welte52b1f982008-12-23 20:25:15 +000053
Harald Welte0c389302009-06-10 12:08:54 +080054#define GSM_MAX_FACILITY 128
55#define GSM_MAX_SSVERSION 128
56#define GSM_MAX_USERUSER 128
57
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020058void *tall_locop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020059
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +020060extern int ipacc_rtp_direct;
Harald Welte805f6442009-07-28 18:25:29 +020061
Harald Welte09e38af2009-02-16 22:52:23 +000062static const struct tlv_definition rsl_att_tlvdef = {
63 .def = {
64 [GSM48_IE_MOBILE_ID] = { TLV_TYPE_TLV },
65 [GSM48_IE_NAME_LONG] = { TLV_TYPE_TLV },
66 [GSM48_IE_NAME_SHORT] = { TLV_TYPE_TLV },
67 [GSM48_IE_UTC] = { TLV_TYPE_TV },
68 [GSM48_IE_NET_TIME_TZ] = { TLV_TYPE_FIXED, 7 },
69 [GSM48_IE_LSA_IDENT] = { TLV_TYPE_TLV },
70
71 [GSM48_IE_BEARER_CAP] = { TLV_TYPE_TLV },
72 [GSM48_IE_CAUSE] = { TLV_TYPE_TLV },
73 [GSM48_IE_CC_CAP] = { TLV_TYPE_TLV },
74 [GSM48_IE_ALERT] = { TLV_TYPE_TLV },
75 [GSM48_IE_FACILITY] = { TLV_TYPE_TLV },
76 [GSM48_IE_PROGR_IND] = { TLV_TYPE_TLV },
77 [GSM48_IE_AUX_STATUS] = { TLV_TYPE_TLV },
Harald Welte0c389302009-06-10 12:08:54 +080078 [GSM48_IE_NOTIFY] = { TLV_TYPE_TV },
Harald Welte09e38af2009-02-16 22:52:23 +000079 [GSM48_IE_KPD_FACILITY] = { TLV_TYPE_TV },
80 [GSM48_IE_SIGNAL] = { TLV_TYPE_TV },
Harald Welte0c389302009-06-10 12:08:54 +080081 [GSM48_IE_CONN_BCD] = { TLV_TYPE_TLV },
82 [GSM48_IE_CONN_SUB] = { TLV_TYPE_TLV },
Harald Welte09e38af2009-02-16 22:52:23 +000083 [GSM48_IE_CALLING_BCD] = { TLV_TYPE_TLV },
84 [GSM48_IE_CALLING_SUB] = { TLV_TYPE_TLV },
85 [GSM48_IE_CALLED_BCD] = { TLV_TYPE_TLV },
86 [GSM48_IE_CALLED_SUB] = { TLV_TYPE_TLV },
87 [GSM48_IE_REDIR_BCD] = { TLV_TYPE_TLV },
88 [GSM48_IE_REDIR_SUB] = { TLV_TYPE_TLV },
89 [GSM48_IE_LOWL_COMPAT] = { TLV_TYPE_TLV },
90 [GSM48_IE_HIGHL_COMPAT] = { TLV_TYPE_TLV },
91 [GSM48_IE_USER_USER] = { TLV_TYPE_TLV },
92 [GSM48_IE_SS_VERS] = { TLV_TYPE_TLV },
93 [GSM48_IE_MORE_DATA] = { TLV_TYPE_T },
94 [GSM48_IE_CLIR_SUPP] = { TLV_TYPE_T },
95 [GSM48_IE_CLIR_INVOC] = { TLV_TYPE_T },
96 [GSM48_IE_REV_C_SETUP] = { TLV_TYPE_T },
Harald Welte0c389302009-06-10 12:08:54 +080097 [GSM48_IE_REPEAT_CIR] = { TLV_TYPE_T },
98 [GSM48_IE_REPEAT_SEQ] = { TLV_TYPE_T },
Harald Welte09e38af2009-02-16 22:52:23 +000099 /* FIXME: more elements */
100 },
101};
Harald Weltecf5b3592009-05-01 18:28:42 +0000102
103static const char *rr_cause_names[] = {
104 [GSM48_RR_CAUSE_NORMAL] = "Normal event",
105 [GSM48_RR_CAUSE_ABNORMAL_UNSPEC] = "Abnormal release, unspecified",
106 [GSM48_RR_CAUSE_ABNORMAL_UNACCT] = "Abnormal release, channel unacceptable",
107 [GSM48_RR_CAUSE_ABNORMAL_TIMER] = "Abnormal release, timer expired",
108 [GSM48_RR_CAUSE_ABNORMAL_NOACT] = "Abnormal release, no activity on radio path",
109 [GSM48_RR_CAUSE_PREMPTIVE_REL] = "Preemptive release",
110 [GSM48_RR_CAUSE_HNDOVER_IMP] = "Handover impossible, timing advance out of range",
111 [GSM48_RR_CAUSE_CHAN_MODE_UNACCT] = "Channel mode unacceptable",
112 [GSM48_RR_CAUSE_FREQ_NOT_IMPL] = "Frequency not implemented",
113 [GSM48_RR_CAUSE_CALL_CLEARED] = "Call already cleared",
114 [GSM48_RR_CAUSE_SEMANT_INCORR] = "Semantically incorrect message",
115 [GSM48_RR_CAUSE_INVALID_MAND_INF] = "Invalid mandatory information",
116 [GSM48_RR_CAUSE_MSG_TYPE_N] = "Message type non-existant or not implemented",
117 [GSM48_RR_CAUSE_MSG_TYPE_N_COMPAT] = "Message type not compatible with protocol state",
118 [GSM48_RR_CAUSE_COND_IE_ERROR] = "Conditional IE error",
119 [GSM48_RR_CAUSE_NO_CELL_ALLOC_A] = "No cell allocation available",
120 [GSM48_RR_CAUSE_PROT_ERROR_UNSPC] = "Protocol error unspecified",
121};
122
Harald Welte4bfdfe72009-06-10 23:11:52 +0800123static const char *cc_state_names[] = {
124 "NULL",
125 "INITIATED",
126 "illegal state 2",
127 "MO_CALL_PROC",
128 "CALL_DELIVERED",
129 "illegal state 5",
130 "CALL_PRESENT",
131 "CALL_RECEIVED",
132 "CONNECT_REQUEST",
133 "MO_TERM_CALL_CONF",
134 "ACTIVE",
135 "DISCONNECT_REQ",
136 "DISCONNECT_IND",
137 "illegal state 13",
138 "illegal state 14",
139 "illegal state 15",
140 "illegal state 16",
141 "illegal state 17",
142 "illegal state 18",
143 "RELEASE_REQ",
144 "illegal state 20",
145 "illegal state 21",
146 "illegal state 22",
147 "illegal state 23",
148 "illegal state 24",
149 "illegal state 25",
150 "MO_ORIG_MODIFY",
151 "MO_TERM_MODIFY",
152 "CONNECT_IND",
153 "illegal state 29",
154 "illegal state 30",
155 "illegal state 31",
156};
157
Harald Weltecf5b3592009-05-01 18:28:42 +0000158static char strbuf[64];
159
160static const char *rr_cause_name(u_int8_t cause)
161{
162 if (cause < ARRAY_SIZE(rr_cause_names) &&
163 rr_cause_names[cause])
164 return rr_cause_names[cause];
165
166 snprintf(strbuf, sizeof(strbuf), "0x%02x", cause);
167 return strbuf;
168}
169
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100170int gsm48_parse_meas_rep(struct gsm_meas_rep *rep, struct msgb *msg)
Harald Weltef7c43522009-06-09 20:24:21 +0000171{
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100172 struct gsm48_hdr *gh = msgb_l3(msg);
173 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
174 u_int8_t *data = gh->data;
Harald Weltef1dae192009-12-14 22:24:28 +0100175 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
176 struct bitvec *nbv = &bts->si_common.neigh_list;
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100177
178 if (gh->msg_type != GSM48_MT_RR_MEAS_REP)
179 return -EINVAL;
Harald Weltef7c43522009-06-09 20:24:21 +0000180
181 if (data[0] & 0x80)
182 rep->flags |= MEAS_REP_F_BA1;
183 if (data[0] & 0x40)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100184 rep->flags |= MEAS_REP_F_UL_DTX;
Harald Welte5a691b52009-07-05 04:05:44 +0200185 if ((data[1] & 0x40) == 0x00)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100186 rep->flags |= MEAS_REP_F_DL_VALID;
Harald Weltef7c43522009-06-09 20:24:21 +0000187
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100188 rep->dl.full.rx_lev = data[0] & 0x3f;
189 rep->dl.sub.rx_lev = data[1] & 0x3f;
190 rep->dl.full.rx_qual = (data[3] >> 4) & 0x7;
191 rep->dl.sub.rx_qual = (data[3] >> 1) & 0x7;
192
Harald Weltef7c43522009-06-09 20:24:21 +0000193 rep->num_cell = data[4] >> 6 | ((data[3] & 0x01) << 2);
194 if (rep->num_cell < 1)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100195 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000196
197 /* an encoding nightmare in perfection */
198
199 rep->cell[0].rxlev = data[4] & 0x3f;
Harald Weltef1dae192009-12-14 22:24:28 +0100200 rep->cell[0].arfcn = bitvec_get_nth_set_bit(nbv, data[5] >> 2);
Harald Weltef7c43522009-06-09 20:24:21 +0000201 rep->cell[0].bsic = ((data[5] & 0x03) << 3) | (data[6] >> 5);
202 if (rep->num_cell < 2)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100203 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000204
205 rep->cell[1].rxlev = ((data[6] & 0x1f) << 1) | (data[7] >> 7);
Harald Weltef1dae192009-12-14 22:24:28 +0100206 rep->cell[1].arfcn = bitvec_get_nth_set_bit(nbv, (data[7] >> 2) & 0x1f);
Harald Weltef7c43522009-06-09 20:24:21 +0000207 rep->cell[1].bsic = ((data[7] & 0x03) << 4) | (data[8] >> 4);
208 if (rep->num_cell < 3)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100209 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000210
211 rep->cell[2].rxlev = ((data[8] & 0x0f) << 2) | (data[9] >> 6);
Harald Weltef1dae192009-12-14 22:24:28 +0100212 rep->cell[2].arfcn = bitvec_get_nth_set_bit(nbv, (data[9] >> 1) & 0x1f);
Harald Weltef7c43522009-06-09 20:24:21 +0000213 rep->cell[2].bsic = ((data[9] & 0x01) << 6) | (data[10] >> 3);
214 if (rep->num_cell < 4)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100215 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000216
217 rep->cell[3].rxlev = ((data[10] & 0x07) << 3) | (data[11] >> 5);
Harald Weltef1dae192009-12-14 22:24:28 +0100218 rep->cell[3].arfcn = bitvec_get_nth_set_bit(nbv, data[11] & 0x1f);
Harald Weltef7c43522009-06-09 20:24:21 +0000219 rep->cell[3].bsic = data[12] >> 2;
220 if (rep->num_cell < 5)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100221 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000222
223 rep->cell[4].rxlev = ((data[12] & 0x03) << 4) | (data[13] >> 4);
Harald Weltef1dae192009-12-14 22:24:28 +0100224 rep->cell[4].arfcn = bitvec_get_nth_set_bit(nbv,
225 ((data[13] & 0xf) << 1) | (data[14] >> 7));
Harald Weltef7c43522009-06-09 20:24:21 +0000226 rep->cell[4].bsic = (data[14] >> 1) & 0x3f;
227 if (rep->num_cell < 6)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100228 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000229
230 rep->cell[5].rxlev = ((data[14] & 0x01) << 5) | (data[15] >> 3);
Harald Weltef1dae192009-12-14 22:24:28 +0100231 rep->cell[5].arfcn = bitvec_get_nth_set_bit(nbv,
232 ((data[15] & 0x07) << 2) | (data[16] >> 6));
Harald Weltef7c43522009-06-09 20:24:21 +0000233 rep->cell[5].bsic = data[16] & 0x3f;
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100234
235 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000236}
237
Holger Freytherd51524f2009-06-09 08:27:07 +0000238int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi);
Harald Welte65e74cc2008-12-29 01:55:35 +0000239static int gsm48_tx_simple(struct gsm_lchan *lchan,
240 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +0000241static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000242
Harald Welte52b1f982008-12-23 20:25:15 +0000243struct gsm_lai {
244 u_int16_t mcc;
245 u_int16_t mnc;
246 u_int16_t lac;
247};
248
Harald Welte4bfdfe72009-06-10 23:11:52 +0800249static u_int32_t new_callref = 0x80000001;
250
Holger Freyther73487a22008-12-31 18:53:57 +0000251static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
252 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000253{
254 if (!subscriber)
255 return 0;
256
Holger Freyther73487a22008-12-31 18:53:57 +0000257 /*
258 * Do not send accept yet as more information should arrive. Some
259 * phones will not send us the information and we will have to check
260 * what we want to do with that.
261 */
262 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
263 return 0;
264
Jan Luebbe06513f22009-08-12 12:48:00 +0200265 switch (subscriber->net->auth_policy) {
266 case GSM_AUTH_POLICY_CLOSED:
267 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200268 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200269 if (subscriber->authorized)
270 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200271 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200272 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000273 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200274 default:
275 return 0;
276 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000277}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000278
Holger Freyther73487a22008-12-31 18:53:57 +0000279static void release_loc_updating_req(struct gsm_lchan *lchan)
280{
Harald Welte179f0642008-12-31 23:59:18 +0000281 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000282 return;
283
Harald Welteff117a82009-05-23 05:22:08 +0000284 bsc_del_timer(&lchan->loc_operation->updating_timer);
Harald Welte2cf161b2009-06-20 22:36:41 +0200285 talloc_free(lchan->loc_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000286 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +0000287 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000288}
289
290static void allocate_loc_updating_req(struct gsm_lchan *lchan)
291{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000292 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000293 release_loc_updating_req(lchan);
294
Harald Welte470ec292009-06-26 20:25:23 +0200295 lchan->loc_operation = talloc_zero(tall_locop_ctx,
296 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000297}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000298
Holger Freytherd51524f2009-06-09 08:27:07 +0000299static int gsm0408_authorize(struct gsm_lchan *lchan, struct msgb *msg)
300{
Holger Freytherd51524f2009-06-09 08:27:07 +0000301 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
Harald Welteee5ad162009-08-09 19:07:00 +0200302 int rc;
303
Holger Freytherd51524f2009-06-09 08:27:07 +0000304 db_subscriber_alloc_tmsi(lchan->subscr);
Holger Freytherd51524f2009-06-09 08:27:07 +0000305 release_loc_updating_req(lchan);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200306 rc = gsm0408_loc_upd_acc(msg->lchan, lchan->subscr->tmsi);
Harald Welte648b6ce2009-12-14 09:00:24 +0100307 if (lchan->ts->trx->bts->network->send_mm_info) {
308 /* send MM INFO with network name */
309 rc = gsm48_tx_mm_info(msg->lchan);
310 }
Harald Welteb83d9382009-12-12 21:00:48 +0100311
Harald Welteee5ad162009-08-09 19:07:00 +0200312 /* call subscr_update after putting the loc_upd_acc
313 * in the transmit queue, since S_SUBSCR_ATTACHED might
314 * trigger further action like SMS delivery */
315 subscr_update(lchan->subscr, msg->trx->bts,
316 GSM_SUBSCRIBER_UPDATE_ATTACHED);
Harald Welteb83d9382009-12-12 21:00:48 +0100317 /* try to close channel ASAP */
318 lchan_auto_release(lchan);
Harald Welteee5ad162009-08-09 19:07:00 +0200319 return rc;
Holger Freytherd51524f2009-06-09 08:27:07 +0000320 }
321
322 return 0;
323}
324
Holger Freyther7c19f742009-06-06 13:54:35 +0000325static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
326 void *handler_data, void *signal_data)
327{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800328 struct gsm_trans *trans, *temp;
329
Holger Freyther7c19f742009-06-06 13:54:35 +0000330 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
331 return 0;
332
333 /*
334 * Cancel any outstanding location updating request
335 * operation taking place on the lchan.
336 */
Harald Welte1a5c6bd2009-07-04 09:35:21 +0200337 struct gsm_lchan *lchan = (struct gsm_lchan *)signal_data;
Harald Weltec05677b2009-06-26 20:17:06 +0200338 if (!lchan)
339 return 0;
340
Holger Freyther7c19f742009-06-06 13:54:35 +0000341 release_loc_updating_req(lchan);
342
Harald Welte4bfdfe72009-06-10 23:11:52 +0800343 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200344 /* FIXME: this is not neccessarily the right thing to do, we should
345 * only set trans->lchan to NULL and wait for another lchan to be
346 * established to the same MM entity (phone/subscriber) */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800347 llist_for_each_entry_safe(trans, temp, &lchan->ts->trx->bts->network->trans_list, entry) {
348 if (trans->lchan == lchan)
Harald Weltedcaf5652009-07-23 18:56:43 +0200349 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800350 }
351
Holger Freyther7c19f742009-06-06 13:54:35 +0000352 return 0;
353}
354
Harald Welte09e38af2009-02-16 22:52:23 +0000355static const char bcd_num_digits[] = {
356 '0', '1', '2', '3', '4', '5', '6', '7',
357 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
358};
359
Harald Welte0c389302009-06-10 12:08:54 +0800360/* decode a 'called/calling/connect party BCD number' as in 10.5.4.7 */
361int decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv,
362 int h_len)
Harald Welte09e38af2009-02-16 22:52:23 +0000363{
364 u_int8_t in_len = bcd_lv[0];
365 int i;
366
Harald Welte0c389302009-06-10 12:08:54 +0800367 for (i = 1 + h_len; i <= in_len; i++) {
Harald Welte09e38af2009-02-16 22:52:23 +0000368 /* lower nibble */
369 output_len--;
370 if (output_len <= 1)
371 break;
372 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
373
374 /* higher nibble */
375 output_len--;
376 if (output_len <= 1)
377 break;
378 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
379 }
380 if (output_len >= 1)
381 *output++ = '\0';
382
Harald Welte0c389302009-06-10 12:08:54 +0800383 return 0;
Harald Welte09e38af2009-02-16 22:52:23 +0000384}
385
386/* convert a single ASCII character to call-control BCD */
387static int asc_to_bcd(const char asc)
388{
389 int i;
390
391 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
392 if (bcd_num_digits[i] == asc)
393 return i;
394 }
395 return -EINVAL;
396}
397
Harald Welte0c389302009-06-10 12:08:54 +0800398/* convert a ASCII phone number to 'called/calling/connect party BCD number' */
Harald Welte09e38af2009-02-16 22:52:23 +0000399int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
Harald Welte0c389302009-06-10 12:08:54 +0800400 int h_len, const char *input)
Harald Welte09e38af2009-02-16 22:52:23 +0000401{
402 int in_len = strlen(input);
403 int i;
Harald Welte0c389302009-06-10 12:08:54 +0800404 u_int8_t *bcd_cur = bcd_lv + 1 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000405
406 /* two digits per byte, plus type byte */
Harald Welte0c389302009-06-10 12:08:54 +0800407 bcd_lv[0] = in_len/2 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000408 if (in_len % 2)
409 bcd_lv[0]++;
410
Harald Welte0c389302009-06-10 12:08:54 +0800411 if (bcd_lv[0] > max_len)
412 return -EIO;
Harald Welte09e38af2009-02-16 22:52:23 +0000413
414 for (i = 0; i < in_len; i++) {
415 int rc = asc_to_bcd(input[i]);
416 if (rc < 0)
417 return rc;
418 if (i % 2 == 0)
419 *bcd_cur = rc;
420 else
421 *bcd_cur++ |= (rc << 4);
422 }
423 /* append padding nibble in case of odd length */
424 if (i % 2)
425 *bcd_cur++ |= 0xf0;
426
427 /* return how many bytes we used */
428 return (bcd_cur - bcd_lv);
429}
430
Harald Welte0c389302009-06-10 12:08:54 +0800431/* decode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800432static int decode_bearer_cap(struct gsm_mncc_bearer_cap *bcap,
Harald Welte0c389302009-06-10 12:08:54 +0800433 const u_int8_t *lv)
434{
435 u_int8_t in_len = lv[0];
436 int i, s;
437
438 if (in_len < 1)
439 return -EINVAL;
440
Harald Welte4bfdfe72009-06-10 23:11:52 +0800441 bcap->speech_ver[0] = -1; /* end of list, of maximum 7 values */
Harald Welte0c389302009-06-10 12:08:54 +0800442
443 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800444 bcap->transfer = lv[1] & 0x07;
445 bcap->mode = (lv[1] & 0x08) >> 3;
446 bcap->coding = (lv[1] & 0x10) >> 4;
447 bcap->radio = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800448
Harald Welte09b7e7f2009-12-12 21:36:53 +0100449 if (bcap->transfer == GSM_MNCC_BCAP_SPEECH) {
450 i = 1;
451 s = 0;
452 while(!(lv[i] & 0x80)) {
453 i++; /* octet 3a etc */
454 if (in_len < i)
455 return 0;
456 bcap->speech_ver[s++] = lv[i] & 0x0f;
457 bcap->speech_ver[s] = -1; /* end of list */
458 if (i == 2) /* octet 3a */
459 bcap->speech_ctm = (lv[i] & 0x20) >> 5;
460 if (s == 7) /* maximum speech versions + end of list */
461 return 0;
462 }
463 } else {
464 i = 1;
465 while (!(lv[i] & 0x80)) {
466 i++; /* octet 3a etc */
467 if (in_len < i)
468 return 0;
469 /* ignore them */
470 }
471 /* FIXME: implement OCTET 4+ parsing */
Harald Welte0c389302009-06-10 12:08:54 +0800472 }
473
474 return 0;
475}
476
477/* encode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800478static int encode_bearer_cap(struct msgb *msg, int lv_only,
479 const struct gsm_mncc_bearer_cap *bcap)
Harald Welte0c389302009-06-10 12:08:54 +0800480{
481 u_int8_t lv[32 + 1];
Harald Welte09b7e7f2009-12-12 21:36:53 +0100482 int i = 1, s;
Harald Welte0c389302009-06-10 12:08:54 +0800483
Harald Welte4bfdfe72009-06-10 23:11:52 +0800484 lv[1] = bcap->transfer;
485 lv[1] |= bcap->mode << 3;
486 lv[1] |= bcap->coding << 4;
487 lv[1] |= bcap->radio << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800488
Harald Welte09b7e7f2009-12-12 21:36:53 +0100489 if (bcap->transfer == GSM_MNCC_BCAP_SPEECH) {
490 for (s = 0; bcap->speech_ver[s] >= 0; s++) {
491 i++; /* octet 3a etc */
492 lv[i] = bcap->speech_ver[s];
493 if (i == 2) /* octet 3a */
494 lv[i] |= bcap->speech_ctm << 5;
495 }
496 lv[i] |= 0x80; /* last IE of octet 3 etc */
497 } else {
498 /* FIXME: implement OCTET 4+ encoding */
Harald Welte0c389302009-06-10 12:08:54 +0800499 }
Harald Welte0c389302009-06-10 12:08:54 +0800500
501 lv[0] = i;
502 if (lv_only)
503 msgb_lv_put(msg, lv[0], lv+1);
504 else
505 msgb_tlv_put(msg, GSM48_IE_BEARER_CAP, lv[0], lv+1);
506
507 return 0;
508}
509
510/* decode 'call control cap' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800511static int decode_cccap(struct gsm_mncc_cccap *ccap, const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800512{
513 u_int8_t in_len = lv[0];
514
515 if (in_len < 1)
516 return -EINVAL;
517
518 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800519 ccap->dtmf = lv[1] & 0x01;
520 ccap->pcp = (lv[1] & 0x02) >> 1;
Harald Welte0c389302009-06-10 12:08:54 +0800521
522 return 0;
523}
524
525/* decode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800526static int decode_called(struct gsm_mncc_number *called,
527 const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800528{
529 u_int8_t in_len = lv[0];
530
531 if (in_len < 1)
532 return -EINVAL;
533
534 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800535 called->plan = lv[1] & 0x0f;
536 called->type = (lv[1] & 0x70) >> 4;
Harald Welte0c389302009-06-10 12:08:54 +0800537
538 /* octet 4..N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800539 decode_bcd_number(called->number, sizeof(called->number), lv, 1);
Harald Welte0c389302009-06-10 12:08:54 +0800540
541 return 0;
542}
543
544/* encode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800545static int encode_called(struct msgb *msg,
546 const struct gsm_mncc_number *called)
Harald Welte0c389302009-06-10 12:08:54 +0800547{
548 u_int8_t lv[18];
549 int ret;
550
551 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800552 lv[1] = called->plan;
553 lv[1] |= called->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800554
555 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800556 ret = encode_bcd_number(lv, sizeof(lv), 1, called->number);
Harald Welte0c389302009-06-10 12:08:54 +0800557 if (ret < 0)
558 return ret;
559
560 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD, lv[0], lv+1);
561
562 return 0;
563}
564
565/* encode callerid of various IEs */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800566static int encode_callerid(struct msgb *msg, int ie,
567 const struct gsm_mncc_number *callerid)
Harald Welte0c389302009-06-10 12:08:54 +0800568{
569 u_int8_t lv[13];
570 int h_len = 1;
571 int ret;
572
573 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800574 lv[1] = callerid->plan;
575 lv[1] |= callerid->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800576
Harald Welte4bfdfe72009-06-10 23:11:52 +0800577 if (callerid->present || callerid->screen) {
Harald Welte0c389302009-06-10 12:08:54 +0800578 /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800579 lv[2] = callerid->screen;
580 lv[2] |= callerid->present << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800581 lv[2] |= 0x80;
582 h_len++;
583 } else
584 lv[1] |= 0x80;
585
586 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800587 ret = encode_bcd_number(lv, sizeof(lv), h_len, callerid->number);
Harald Welte0c389302009-06-10 12:08:54 +0800588 if (ret < 0)
589 return ret;
590
591 msgb_tlv_put(msg, ie, lv[0], lv+1);
592
593 return 0;
594}
595
596/* decode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800597static int decode_cause(struct gsm_mncc_cause *cause,
Harald Welte0c389302009-06-10 12:08:54 +0800598 const u_int8_t *lv)
599{
600 u_int8_t in_len = lv[0];
601 int i;
602
603 if (in_len < 2)
604 return -EINVAL;
605
Harald Welte4bfdfe72009-06-10 23:11:52 +0800606 cause->diag_len = 0;
Harald Welte0c389302009-06-10 12:08:54 +0800607
608 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800609 cause->location = lv[1] & 0x0f;
610 cause->coding = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800611
612 i = 1;
613 if (!(lv[i] & 0x80)) {
614 i++; /* octet 3a */
615 if (in_len < i+1)
616 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800617 cause->rec = 1;
618 cause->rec_val = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800619
620 }
621 i++;
622
623 /* octet 4 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800624 cause->value = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800625 i++;
626
627 if (in_len < i) /* no diag */
628 return 0;
629
630 if (in_len - (i-1) > 32) /* maximum 32 octets */
631 return 0;
632
633 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800634 memcpy(cause->diag, lv + i, in_len - (i-1));
635 cause->diag_len = in_len - (i-1);
Harald Welte0c389302009-06-10 12:08:54 +0800636
637 return 0;
638}
639
640/* encode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800641static int encode_cause(struct msgb *msg, int lv_only,
642 const struct gsm_mncc_cause *cause)
Harald Welte0c389302009-06-10 12:08:54 +0800643{
644 u_int8_t lv[32+4];
645 int i;
646
Harald Welte4bfdfe72009-06-10 23:11:52 +0800647 if (cause->diag_len > 32)
Harald Welte0c389302009-06-10 12:08:54 +0800648 return -EINVAL;
649
650 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800651 lv[1] = cause->location;
652 lv[1] |= cause->coding << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800653
654 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800655 if (cause->rec) {
Harald Welte0c389302009-06-10 12:08:54 +0800656 i++; /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800657 lv[i] = cause->rec_val;
Harald Welte0c389302009-06-10 12:08:54 +0800658 }
659 lv[i] |= 0x80; /* end of octet 3 */
660
661 /* octet 4 */
662 i++;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800663 lv[i] = 0x80 | cause->value;
Harald Welte0c389302009-06-10 12:08:54 +0800664
665 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800666 if (cause->diag_len) {
667 memcpy(lv + i, cause->diag, cause->diag_len);
668 i += cause->diag_len;
Harald Welte0c389302009-06-10 12:08:54 +0800669 }
670
671 lv[0] = i;
672 if (lv_only)
673 msgb_lv_put(msg, lv[0], lv+1);
674 else
675 msgb_tlv_put(msg, GSM48_IE_CAUSE, lv[0], lv+1);
676
677 return 0;
678}
679
680/* encode 'calling number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800681static int encode_calling(struct msgb *msg,
682 const struct gsm_mncc_number *calling)
Harald Welte0c389302009-06-10 12:08:54 +0800683{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800684 return encode_callerid(msg, GSM48_IE_CALLING_BCD, calling);
Harald Welte0c389302009-06-10 12:08:54 +0800685}
686
687/* encode 'connected number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800688static int encode_connected(struct msgb *msg,
689 const struct gsm_mncc_number *connected)
Harald Welte0c389302009-06-10 12:08:54 +0800690{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800691 return encode_callerid(msg, GSM48_IE_CONN_BCD, connected);
Harald Welte0c389302009-06-10 12:08:54 +0800692}
693
694/* encode 'redirecting number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800695static int encode_redirecting(struct msgb *msg,
696 const struct gsm_mncc_number *redirecting)
Harald Welte0c389302009-06-10 12:08:54 +0800697{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800698 return encode_callerid(msg, GSM48_IE_REDIR_BCD, redirecting);
Harald Welte0c389302009-06-10 12:08:54 +0800699}
700
701/* decode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800702static int decode_facility(struct gsm_mncc_facility *facility,
Harald Welte0c389302009-06-10 12:08:54 +0800703 const u_int8_t *lv)
704{
705 u_int8_t in_len = lv[0];
706
707 if (in_len < 1)
708 return -EINVAL;
709
Harald Welte4bfdfe72009-06-10 23:11:52 +0800710 if (in_len > sizeof(facility->info))
Harald Welte0c389302009-06-10 12:08:54 +0800711 return -EINVAL;
712
Harald Welte4bfdfe72009-06-10 23:11:52 +0800713 memcpy(facility->info, lv+1, in_len);
714 facility->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800715
716 return 0;
717}
718
719/* encode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800720static int encode_facility(struct msgb *msg, int lv_only,
721 const struct gsm_mncc_facility *facility)
Harald Welte0c389302009-06-10 12:08:54 +0800722{
723 u_int8_t lv[GSM_MAX_FACILITY + 1];
724
Harald Welte4bfdfe72009-06-10 23:11:52 +0800725 if (facility->len < 1 || facility->len > GSM_MAX_FACILITY)
Harald Welte0c389302009-06-10 12:08:54 +0800726 return -EINVAL;
727
Harald Welte4bfdfe72009-06-10 23:11:52 +0800728 memcpy(lv+1, facility->info, facility->len);
729 lv[0] = facility->len;
Harald Welte0c389302009-06-10 12:08:54 +0800730 if (lv_only)
731 msgb_lv_put(msg, lv[0], lv+1);
732 else
733 msgb_tlv_put(msg, GSM48_IE_FACILITY, lv[0], lv+1);
734
735 return 0;
736}
737
738/* decode 'notify' */
739static int decode_notify(int *notify, const u_int8_t *v)
740{
741 *notify = v[0] & 0x7f;
742
743 return 0;
744}
745
746/* encode 'notify' */
747static int encode_notify(struct msgb *msg, int notify)
748{
749 msgb_v_put(msg, notify | 0x80);
750
751 return 0;
752}
753
754/* encode 'signal' */
755static int encode_signal(struct msgb *msg, int signal)
756{
757 msgb_tv_put(msg, GSM48_IE_SIGNAL, signal);
758
759 return 0;
760}
761
762/* decode 'keypad' */
763static int decode_keypad(int *keypad, const u_int8_t *lv)
764{
765 u_int8_t in_len = lv[0];
766
767 if (in_len < 1)
768 return -EINVAL;
769
770 *keypad = lv[1] & 0x7f;
771
772 return 0;
773}
774
775/* encode 'keypad' */
776static int encode_keypad(struct msgb *msg, int keypad)
777{
778 msgb_tv_put(msg, GSM48_IE_KPD_FACILITY, keypad);
779
780 return 0;
781}
782
783/* decode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800784static int decode_progress(struct gsm_mncc_progress *progress,
Harald Welte0c389302009-06-10 12:08:54 +0800785 const u_int8_t *lv)
786{
787 u_int8_t in_len = lv[0];
788
789 if (in_len < 2)
790 return -EINVAL;
791
Harald Welte4bfdfe72009-06-10 23:11:52 +0800792 progress->coding = (lv[1] & 0x60) >> 5;
793 progress->location = lv[1] & 0x0f;
794 progress->descr = lv[2] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800795
796 return 0;
797}
798
799/* encode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800800static int encode_progress(struct msgb *msg, int lv_only,
801 const struct gsm_mncc_progress *p)
Harald Welte0c389302009-06-10 12:08:54 +0800802{
803 u_int8_t lv[3];
804
805 lv[0] = 2;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800806 lv[1] = 0x80 | ((p->coding & 0x3) << 5) | (p->location & 0xf);
807 lv[2] = 0x80 | (p->descr & 0x7f);
Harald Welte0c389302009-06-10 12:08:54 +0800808 if (lv_only)
809 msgb_lv_put(msg, lv[0], lv+1);
810 else
811 msgb_tlv_put(msg, GSM48_IE_PROGR_IND, lv[0], lv+1);
812
813 return 0;
814}
815
816/* decode 'user-user' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800817static int decode_useruser(struct gsm_mncc_useruser *uu,
Harald Welte0c389302009-06-10 12:08:54 +0800818 const u_int8_t *lv)
819{
820 u_int8_t in_len = lv[0];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800821 char *info = uu->info;
822 int info_len = sizeof(uu->info);
Harald Welte0c389302009-06-10 12:08:54 +0800823 int i;
824
825 if (in_len < 1)
826 return -EINVAL;
827
Harald Welte4bfdfe72009-06-10 23:11:52 +0800828 uu->proto = lv[1];
Harald Welte0c389302009-06-10 12:08:54 +0800829
830 for (i = 2; i <= in_len; i++) {
831 info_len--;
832 if (info_len <= 1)
833 break;
834 *info++ = lv[i];
835 }
836 if (info_len >= 1)
837 *info++ = '\0';
838
839 return 0;
840}
841
842/* encode 'useruser' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800843static int encode_useruser(struct msgb *msg, int lv_only,
844 const struct gsm_mncc_useruser *uu)
Harald Welte0c389302009-06-10 12:08:54 +0800845{
846 u_int8_t lv[GSM_MAX_USERUSER + 2];
847
Harald Welte4bfdfe72009-06-10 23:11:52 +0800848 if (strlen(uu->info) > GSM_MAX_USERUSER)
Harald Welte0c389302009-06-10 12:08:54 +0800849 return -EINVAL;
850
Harald Welte4bfdfe72009-06-10 23:11:52 +0800851 lv[0] = 1 + strlen(uu->info);
852 lv[1] = uu->proto;
853 memcpy(lv + 2, uu->info, strlen(uu->info));
Harald Welte0c389302009-06-10 12:08:54 +0800854 if (lv_only)
855 msgb_lv_put(msg, lv[0], lv+1);
856 else
857 msgb_tlv_put(msg, GSM48_IE_USER_USER, lv[0], lv+1);
858
859 return 0;
860}
861
862/* decode 'ss version' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800863static int decode_ssversion(struct gsm_mncc_ssversion *ssv,
Harald Welte0c389302009-06-10 12:08:54 +0800864 const u_int8_t *lv)
865{
866 u_int8_t in_len = lv[0];
867
Harald Welte4bfdfe72009-06-10 23:11:52 +0800868 if (in_len < 1 || in_len < sizeof(ssv->info))
Harald Welte0c389302009-06-10 12:08:54 +0800869 return -EINVAL;
870
Harald Welte4bfdfe72009-06-10 23:11:52 +0800871 memcpy(ssv->info, lv + 1, in_len);
872 ssv->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800873
874 return 0;
875}
876
877/* encode 'more data' */
878static int encode_more(struct msgb *msg)
879{
880 u_int8_t *ie;
881
882 ie = msgb_put(msg, 1);
883 ie[0] = GSM48_IE_MORE_DATA;
884
885 return 0;
886}
887
Holger Freyther429e7762008-12-30 13:28:30 +0000888/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000889int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000890{
Harald Welte8470bf22008-12-25 23:28:35 +0000891 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000892 struct gsm48_hdr *gh;
893
Harald Welte8470bf22008-12-25 23:28:35 +0000894 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000895
896 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
897 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000898 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000899 gh->data[0] = cause;
900
Harald Weltedb253af2008-12-30 17:56:55 +0000901 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
902
Harald Welte39e2ead2009-07-23 21:13:03 +0200903 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000904}
905
906/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000907int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000908{
Harald Welte8470bf22008-12-25 23:28:35 +0000909 struct gsm_bts *bts = lchan->ts->trx->bts;
910 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000911 struct gsm48_hdr *gh;
912 struct gsm48_loc_area_id *lai;
913 u_int8_t *mid;
914
Harald Welte8470bf22008-12-25 23:28:35 +0000915 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000916
917 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
918 gh->proto_discr = GSM48_PDISC_MM;
919 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
920
921 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000922 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000923 bts->network->network_code, bts->location_area_code);
924
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200925 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200926 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000927
928 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
929
Harald Welteb83d9382009-12-12 21:00:48 +0100930 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000931}
932
Harald Weltebf5e8df2009-02-03 12:59:45 +0000933/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000934static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
935{
936 struct msgb *msg = gsm48_msgb_alloc();
937 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000938
Harald Welte231ad4f2008-12-27 11:15:38 +0000939 msg->lchan = lchan;
940
941 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
942 gh->proto_discr = GSM48_PDISC_MM;
943 gh->msg_type = GSM48_MT_MM_ID_REQ;
944 gh->data[0] = id_type;
945
Harald Welte39e2ead2009-07-23 21:13:03 +0200946 return gsm48_sendmsg(msg, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000947}
948
Harald Welte231ad4f2008-12-27 11:15:38 +0000949
Harald Weltebf5e8df2009-02-03 12:59:45 +0000950/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000951static int mm_rx_id_resp(struct msgb *msg)
952{
953 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000954 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200955 struct gsm_bts *bts = lchan->ts->trx->bts;
956 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000957 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200958 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000959
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200960 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000961 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000962 mi_type, mi_string);
963
Harald Welte7659de12009-12-13 12:39:18 +0100964 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, gh->data);
965
Harald Welte75a983f2008-12-27 21:34:06 +0000966 switch (mi_type) {
967 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200968 /* look up subscriber based on IMSI, create if not found */
969 if (!lchan->subscr) {
970 lchan->subscr = subscr_get_by_imsi(net, mi_string);
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200971 if (!lchan->subscr)
972 lchan->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200973 }
Holger Freyther73487a22008-12-31 18:53:57 +0000974 if (lchan->loc_operation)
975 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000976 break;
977 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000978 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000979 /* update subscribe <-> IMEI mapping */
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200980 if (lchan->subscr) {
Harald Welte75a983f2008-12-27 21:34:06 +0000981 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200982 db_sync_equipment(&lchan->subscr->equipment);
983 }
Holger Freyther73487a22008-12-31 18:53:57 +0000984 if (lchan->loc_operation)
985 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000986 break;
987 }
Holger Freyther73487a22008-12-31 18:53:57 +0000988
989 /* Check if we can let the mobile station enter */
Holger Freytherd51524f2009-06-09 08:27:07 +0000990 return gsm0408_authorize(lchan, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000991}
992
Harald Welte255539c2008-12-28 02:26:27 +0000993
994static void loc_upd_rej_cb(void *data)
995{
996 struct gsm_lchan *lchan = data;
Harald Welte1085c092009-11-18 20:33:19 +0100997 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte255539c2008-12-28 02:26:27 +0000998
Holger Freyther73487a22008-12-31 18:53:57 +0000999 release_loc_updating_req(lchan);
Harald Welte1085c092009-11-18 20:33:19 +01001000 gsm0408_loc_upd_rej(lchan, bts->network->reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +00001001 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +00001002}
1003
Holger Freytherb7193e42008-12-29 17:44:08 +00001004static void schedule_reject(struct gsm_lchan *lchan)
1005{
Holger Freyther73487a22008-12-31 18:53:57 +00001006 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
1007 lchan->loc_operation->updating_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +00001008 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +00001009}
1010
Harald Welte2a139372009-02-22 21:14:55 +00001011static const char *lupd_name(u_int8_t type)
1012{
1013 switch (type) {
1014 case GSM48_LUPD_NORMAL:
1015 return "NORMAL";
1016 case GSM48_LUPD_PERIODIC:
1017 return "PEROIDOC";
1018 case GSM48_LUPD_IMSI_ATT:
1019 return "IMSI ATTACH";
1020 default:
1021 return "UNKNOWN";
1022 }
1023}
1024
Harald Weltebf5e8df2009-02-03 12:59:45 +00001025/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +00001026static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001027{
Harald Welte8470bf22008-12-25 23:28:35 +00001028 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001029 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001030 struct gsm_subscriber *subscr = NULL;
Harald Welte255539c2008-12-28 02:26:27 +00001031 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +02001032 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +00001033 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001034 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +00001035 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001036
Harald Welte8470bf22008-12-25 23:28:35 +00001037 lu = (struct gsm48_loc_upd_req *) gh->data;
1038
1039 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +00001040
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001041 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +00001042
Harald Weltea0368542009-06-27 02:58:43 +02001043 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +00001044 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +00001045
Harald Welte7659de12009-12-13 12:39:18 +01001046 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, &lu->mi_len);
1047
Holger Freythereaf04692009-06-06 13:54:44 +00001048 /*
1049 * Pseudo Spoof detection: Just drop a second/concurrent
1050 * location updating request.
1051 */
1052 if (lchan->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +02001053 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Freythereaf04692009-06-06 13:54:44 +00001054 lchan->loc_operation);
1055 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
1056 return 0;
1057 }
1058
Holger Freyther73487a22008-12-31 18:53:57 +00001059 allocate_loc_updating_req(lchan);
1060
Harald Welte52b1f982008-12-23 20:25:15 +00001061 switch (mi_type) {
1062 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001063 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001064 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001065 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001066 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001067
Jan Luebbe370b41d2009-08-12 10:19:34 +02001068 /* look up subscriber based on IMSI, create if not found */
1069 subscr = subscr_get_by_imsi(bts->network, mi_string);
1070 if (!subscr) {
1071 subscr = db_create_subscriber(bts->network, mi_string);
1072 }
Harald Welte4b634542008-12-27 01:55:51 +00001073 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001074 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001075 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001076 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001077 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001078 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001079
Harald Welte52b1f982008-12-23 20:25:15 +00001080 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001081 subscr = subscr_get_by_tmsi(bts->network,
1082 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +00001083 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +00001084 /* send IDENTITY REQUEST message to get IMSI */
Harald Welte255539c2008-12-28 02:26:27 +00001085 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +00001086 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +00001087 }
1088 break;
1089 case GSM_MI_TYPE_IMEI:
1090 case GSM_MI_TYPE_IMEISV:
1091 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +02001092 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001093 break;
1094 default:
Harald Weltea0368542009-06-27 02:58:43 +02001095 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001096 break;
1097 }
1098
Harald Welte24516ea2009-07-04 10:18:00 +02001099 /* schedule the reject timer */
1100 schedule_reject(lchan);
1101
Harald Welte4bfdfe72009-06-10 23:11:52 +08001102 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +02001103 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001104 /* FIXME: request id? close channel? */
1105 return -EINVAL;
1106 }
1107
Harald Welte255539c2008-12-28 02:26:27 +00001108 lchan->subscr = subscr;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001109 lchan->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +00001110
Harald Welte24516ea2009-07-04 10:18:00 +02001111 /* check if we can let the subscriber into our network immediately
1112 * or if we need to wait for identity responses. */
Holger Freytherd51524f2009-06-09 08:27:07 +00001113 return gsm0408_authorize(lchan, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001114}
1115
Harald Welte4bfdfe72009-06-10 23:11:52 +08001116#if 0
1117static u_int8_t to_bcd8(u_int8_t val)
1118{
1119 return ((val / 10) << 4) | (val % 10);
1120}
1121#endif
1122
Harald Weltedb253af2008-12-30 17:56:55 +00001123/* Section 9.2.15a */
1124int gsm48_tx_mm_info(struct gsm_lchan *lchan)
1125{
1126 struct msgb *msg = gsm48_msgb_alloc();
1127 struct gsm48_hdr *gh;
1128 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +00001129 u_int8_t *ptr8;
Daniel Willmanneea93372009-08-13 03:42:07 +02001130 int name_len, name_pad;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001131#if 0
1132 time_t cur_t;
1133 struct tm* cur_time;
1134 int tz15min;
1135#endif
Harald Weltedb253af2008-12-30 17:56:55 +00001136
1137 msg->lchan = lchan;
1138
1139 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1140 gh->proto_discr = GSM48_PDISC_MM;
1141 gh->msg_type = GSM48_MT_MM_INFO;
1142
1143 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001144#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001145 name_len = strlen(net->name_long);
1146 /* 10.5.3.5a */
1147 ptr8 = msgb_put(msg, 3);
1148 ptr8[0] = GSM48_IE_NAME_LONG;
1149 ptr8[1] = name_len*2 +1;
1150 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1151
1152 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
1153 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001154 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +00001155
1156 /* FIXME: Use Cell Broadcast, not UCS-2, since
1157 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +02001158#endif
1159 name_len = (strlen(net->name_long)*7)/8;
1160 name_pad = (8 - strlen(net->name_long)*7)%8;
1161 if (name_pad > 0)
1162 name_len++;
1163 /* 10.5.3.5a */
1164 ptr8 = msgb_put(msg, 3);
1165 ptr8[0] = GSM48_IE_NAME_LONG;
1166 ptr8[1] = name_len +1;
1167 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1168
1169 ptr8 = msgb_put(msg, name_len);
1170 gsm_7bit_encode(ptr8, net->name_long);
1171
Harald Weltedb253af2008-12-30 17:56:55 +00001172 }
1173
1174 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001175#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001176 name_len = strlen(net->name_short);
1177 /* 10.5.3.5a */
1178 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +02001179 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +00001180 ptr8[1] = name_len*2 + 1;
1181 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1182
Harald Weltee872cb12009-01-01 00:33:37 +00001183 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +00001184 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001185 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +02001186#endif
1187 name_len = (strlen(net->name_short)*7)/8;
1188 name_pad = (8 - strlen(net->name_short)*7)%8;
1189 if (name_pad > 0)
1190 name_len++;
1191 /* 10.5.3.5a */
1192 ptr8 = (u_int8_t *) msgb_put(msg, 3);
1193 ptr8[0] = GSM48_IE_NAME_SHORT;
1194 ptr8[1] = name_len +1;
1195 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1196
1197 ptr8 = msgb_put(msg, name_len);
1198 gsm_7bit_encode(ptr8, net->name_short);
1199
Harald Weltedb253af2008-12-30 17:56:55 +00001200 }
1201
1202#if 0
1203 /* Section 10.5.3.9 */
1204 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001205 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +00001206 ptr8 = msgb_put(msg, 8);
1207 ptr8[0] = GSM48_IE_NET_TIME_TZ;
1208 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
1209 ptr8[2] = to_bcd8(cur_time->tm_mon);
1210 ptr8[3] = to_bcd8(cur_time->tm_mday);
1211 ptr8[4] = to_bcd8(cur_time->tm_hour);
1212 ptr8[5] = to_bcd8(cur_time->tm_min);
1213 ptr8[6] = to_bcd8(cur_time->tm_sec);
1214 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
1215 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001216 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +00001217 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001218 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +00001219#endif
1220
Daniel Willmanneea93372009-08-13 03:42:07 +02001221 DEBUGP(DMM, "-> MM INFO\n");
1222
Harald Welte39e2ead2009-07-23 21:13:03 +02001223 return gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +00001224}
1225
Harald Welte7984d5c2009-08-12 22:56:50 +02001226/* Section 9.2.2 */
1227int gsm48_tx_mm_auth_req(struct gsm_lchan *lchan, u_int8_t *rand)
1228{
1229 struct msgb *msg = gsm48_msgb_alloc();
1230 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +02001231 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +02001232
1233 DEBUGP(DMM, "-> AUTH REQ\n");
1234
1235 msg->lchan = lchan;
1236 gh->proto_discr = GSM48_PDISC_MM;
1237 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
1238
Sylvain Munaut849f5542009-09-27 11:10:17 +02001239 /* Key Sequence: FIXME fixed to 0 */
1240 ar->key_seq = 0;
1241
Harald Welte7984d5c2009-08-12 22:56:50 +02001242 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +02001243 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +02001244 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +02001245
1246 return gsm48_sendmsg(msg, NULL);
1247}
1248
1249/* Section 9.2.1 */
1250int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan)
1251{
1252 DEBUGP(DMM, "-> AUTH REJECT\n");
1253 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
1254}
1255
Harald Welte4b634542008-12-27 01:55:51 +00001256static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
1257{
Harald Welte4b634542008-12-27 01:55:51 +00001258 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001259 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +00001260}
Harald Welteba4cf162009-01-10 01:49:35 +00001261
1262/* 9.2.6 CM service reject */
1263static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
1264 enum gsm48_reject_value value)
1265{
1266 struct msgb *msg = gsm48_msgb_alloc();
1267 struct gsm48_hdr *gh;
1268
1269 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1270
1271 msg->lchan = lchan;
1272 use_lchan(lchan);
1273
1274 gh->proto_discr = GSM48_PDISC_MM;
1275 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
1276 gh->data[0] = value;
1277 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
1278
Harald Welte39e2ead2009-07-23 21:13:03 +02001279 return gsm48_sendmsg(msg, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +00001280}
1281
Harald Welte4ed0e922009-01-10 03:17:30 +00001282/*
1283 * Handle CM Service Requests
1284 * a) Verify that the packet is long enough to contain the information
1285 * we require otherwsie reject with INCORRECT_MESSAGE
1286 * b) Try to parse the TMSI. If we do not have one reject
1287 * c) Check that we know the subscriber with the TMSI otherwise reject
1288 * with a HLR cause
1289 * d) Set the subscriber on the gsm_lchan and accept
1290 */
Harald Welte4b634542008-12-27 01:55:51 +00001291static int gsm48_rx_mm_serv_req(struct msgb *msg)
1292{
Harald Welteba4cf162009-01-10 01:49:35 +00001293 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001294 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +00001295
Harald Welte9176bd42009-07-23 18:46:00 +02001296 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welteba4cf162009-01-10 01:49:35 +00001297 struct gsm_subscriber *subscr;
1298 struct gsm48_hdr *gh = msgb_l3(msg);
1299 struct gsm48_service_request *req =
1300 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +00001301 /* unfortunately in Phase1 the classmar2 length is variable */
1302 u_int8_t classmark2_len = gh->data[1];
1303 u_int8_t *classmark2 = gh->data+2;
1304 u_int8_t mi_len = *(classmark2 + classmark2_len);
1305 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +00001306
Harald Weltec9e02182009-05-01 19:07:53 +00001307 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +00001308 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +00001309 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001310 return gsm48_tx_mm_serv_rej(msg->lchan,
1311 GSM48_REJECT_INCORRECT_MESSAGE);
1312 }
1313
1314 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +00001315 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001316 return gsm48_tx_mm_serv_rej(msg->lchan,
1317 GSM48_REJECT_INCORRECT_MESSAGE);
1318 }
1319
Harald Weltec9e02182009-05-01 19:07:53 +00001320 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +00001321 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +00001322 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +00001323 return gsm48_tx_mm_serv_rej(msg->lchan,
1324 GSM48_REJECT_INCORRECT_MESSAGE);
1325 }
1326
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001327 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001328 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +00001329 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +00001330
Harald Welte7659de12009-12-13 12:39:18 +01001331 dispatch_signal(SS_SUBSCR, S_SUBSCR_IDENTITY, (classmark2 + classmark2_len));
1332
Harald Welte3ac7f102009-08-10 10:12:45 +02001333 if (is_siemens_bts(bts))
1334 send_siemens_mrpci(msg->lchan, classmark2-1);
1335
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001336 subscr = subscr_get_by_tmsi(bts->network,
1337 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +00001338
Harald Welte2a139372009-02-22 21:14:55 +00001339 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001340 if (!subscr)
1341 return gsm48_tx_mm_serv_rej(msg->lchan,
1342 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
1343
1344 if (!msg->lchan->subscr)
1345 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +00001346 else if (msg->lchan->subscr != subscr) {
1347 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1348 subscr_put(subscr);
1349 }
1350
Harald Weltec2e302d2009-07-05 14:08:13 +02001351 subscr->equipment.classmark2_len = classmark2_len;
1352 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1353 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001354
Harald Welte4b634542008-12-27 01:55:51 +00001355 return gsm48_tx_mm_serv_ack(msg->lchan);
1356}
1357
Harald Welte2a139372009-02-22 21:14:55 +00001358static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1359{
Harald Welte9176bd42009-07-23 18:46:00 +02001360 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001361 struct gsm48_hdr *gh = msgb_l3(msg);
1362 struct gsm48_imsi_detach_ind *idi =
1363 (struct gsm48_imsi_detach_ind *) gh->data;
1364 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001365 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001366 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001367
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001368 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001369 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1370 mi_type, mi_string);
1371
1372 switch (mi_type) {
1373 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001374 subscr = subscr_get_by_tmsi(bts->network,
1375 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +00001376 break;
1377 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001378 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001379 break;
1380 case GSM_MI_TYPE_IMEI:
1381 case GSM_MI_TYPE_IMEISV:
1382 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001383 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001384 break;
1385 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001386 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001387 break;
1388 }
1389
Holger Freyther4a49e772009-04-12 05:37:29 +00001390 if (subscr) {
1391 subscr_update(subscr, msg->trx->bts,
1392 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +00001393 DEBUGP(DMM, "Subscriber: %s\n",
1394 subscr->name ? subscr->name : subscr->imsi);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001395
1396 subscr->equipment.classmark1 = idi->classmark1;
1397 db_sync_equipment(&subscr->equipment);
1398
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001399 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001400 } else
Harald Welte2a139372009-02-22 21:14:55 +00001401 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1402
Harald Welteb83d9382009-12-12 21:00:48 +01001403 /* subscriber is detached: should we release lchan? */
1404
Harald Welte2a139372009-02-22 21:14:55 +00001405 return 0;
1406}
1407
Harald Welted2a7f5a2009-06-05 20:08:20 +00001408static int gsm48_rx_mm_status(struct msgb *msg)
1409{
1410 struct gsm48_hdr *gh = msgb_l3(msg);
1411
1412 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1413
1414 return 0;
1415}
1416
Harald Weltebf5e8df2009-02-03 12:59:45 +00001417/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001418static int gsm0408_rcv_mm(struct msgb *msg)
1419{
1420 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001421 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001422
1423 switch (gh->msg_type & 0xbf) {
1424 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001425 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001426 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001427 break;
1428 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001429 rc = mm_rx_id_resp(msg);
1430 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001431 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001432 rc = gsm48_rx_mm_serv_req(msg);
1433 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001434 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001435 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001436 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001437 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001438 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1439 msg->lchan->subscr ?
1440 msg->lchan->subscr->imsi :
1441 "unknown subscriber");
1442 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001443 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001444 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1445 break;
1446 case GSM48_MT_MM_CM_REEST_REQ:
1447 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1448 break;
1449 case GSM48_MT_MM_AUTH_RESP:
1450 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001451 break;
1452 default:
1453 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
1454 gh->msg_type);
1455 break;
1456 }
1457
1458 return rc;
1459}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001460
Harald Welte2d35ae62009-02-06 12:02:13 +00001461/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001462static int gsm48_rx_rr_pag_resp(struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001463{
Harald Welte9176bd42009-07-23 18:46:00 +02001464 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001465 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001466 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001467 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001468 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001469 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001470 int rc = 0;
1471
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001472 gsm48_paging_extract_mi(msg, mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001473 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1474 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001475
Harald Weltefe18d8f2009-02-22 21:14:24 +00001476 switch (mi_type) {
1477 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001478 subscr = subscr_get_by_tmsi(bts->network,
1479 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001480 break;
1481 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001482 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001483 break;
1484 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001485
1486 if (!subscr) {
1487 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001488 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001489 return -EINVAL;
1490 }
1491 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001492 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001493
Harald Weltec2e302d2009-07-05 14:08:13 +02001494 subscr->equipment.classmark2_len = *classmark2_lv;
1495 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1496 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001497
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001498 rc = gsm48_handle_paging_resp(msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001499 return rc;
1500}
1501
Harald Weltef7c43522009-06-09 20:24:21 +00001502static int gsm48_rx_rr_classmark(struct msgb *msg)
1503{
1504 struct gsm48_hdr *gh = msgb_l3(msg);
1505 struct gsm_subscriber *subscr = msg->lchan->subscr;
1506 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1507 u_int8_t cm2_len, cm3_len = 0;
1508 u_int8_t *cm2, *cm3 = NULL;
1509
1510 DEBUGP(DRR, "CLASSMARK CHANGE ");
1511
1512 /* classmark 2 */
1513 cm2_len = gh->data[0];
1514 cm2 = &gh->data[1];
1515 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1516
1517 if (payload_len > cm2_len + 1) {
1518 /* we must have a classmark3 */
1519 if (gh->data[cm2_len+1] != 0x20) {
1520 DEBUGPC(DRR, "ERR CM3 TAG\n");
1521 return -EINVAL;
1522 }
1523 if (cm2_len > 3) {
1524 DEBUGPC(DRR, "CM2 too long!\n");
1525 return -EINVAL;
1526 }
1527
1528 cm3_len = gh->data[cm2_len+2];
1529 cm3 = &gh->data[cm2_len+3];
1530 if (cm3_len > 14) {
1531 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1532 return -EINVAL;
1533 }
1534 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1535 }
1536 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001537 subscr->equipment.classmark2_len = cm2_len;
1538 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001539 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001540 subscr->equipment.classmark3_len = cm3_len;
1541 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001542 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001543 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001544 }
1545
Harald Weltef7c43522009-06-09 20:24:21 +00001546 return 0;
1547}
1548
Harald Weltecf5b3592009-05-01 18:28:42 +00001549static int gsm48_rx_rr_status(struct msgb *msg)
1550{
1551 struct gsm48_hdr *gh = msgb_l3(msg);
1552
1553 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1554 rr_cause_name(gh->data[0]));
1555
1556 return 0;
1557}
1558
Harald Weltef7c43522009-06-09 20:24:21 +00001559static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1560{
Harald Welted12b0fd2009-12-15 21:36:05 +01001561 struct gsm_meas_rep *meas_rep = lchan_next_meas_rep(msg->lchan);
Harald Weltef7c43522009-06-09 20:24:21 +00001562
Harald Welte3c7dc6e2009-11-29 19:07:28 +01001563 /* This shouldn't actually end up here, as RSL treats
1564 * L3 Info of 08.58 MEASUREMENT REPORT different by calling
1565 * directly into gsm48_parse_meas_rep */
1566 DEBUGP(DMEAS, "DIRECT GSM48 MEASUREMENT REPORT ?!? ");
Harald Welted12b0fd2009-12-15 21:36:05 +01001567 gsm48_parse_meas_rep(meas_rep, msg);
Harald Weltef7c43522009-06-09 20:24:21 +00001568
1569 return 0;
1570}
1571
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001572static int gsm48_rx_rr_app_info(struct msgb *msg)
1573{
1574 struct gsm48_hdr *gh = msgb_l3(msg);
1575 u_int8_t apdu_id_flags;
1576 u_int8_t apdu_len;
1577 u_int8_t *apdu_data;
1578
1579 apdu_id_flags = gh->data[0];
1580 apdu_len = gh->data[1];
1581 apdu_data = gh->data+2;
1582
1583 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1584 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1585
Harald Welte (local)026531e2009-08-16 10:40:10 +02001586 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001587}
1588
Harald Welted011e8b2009-11-29 22:45:52 +01001589/* Chapter 9.1.16 Handover complete */
Harald Welte1e191c52009-12-14 17:51:15 +01001590static int gsm48_rx_rr_ho_compl(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001591{
1592 struct gsm48_hdr *gh = msgb_l3(msg);
1593
1594 DEBUGP(DRR, "HANDOVER COMPLETE cause = %s\n",
1595 rr_cause_name(gh->data[0]));
1596
1597 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_COMPL, msg->lchan);
1598 /* FIXME: release old channel */
1599
1600 return 0;
1601}
1602
1603/* Chapter 9.1.17 Handover Failure */
Harald Welte1e191c52009-12-14 17:51:15 +01001604static int gsm48_rx_rr_ho_fail(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001605{
1606 struct gsm48_hdr *gh = msgb_l3(msg);
1607
1608 DEBUGP(DRR, "HANDOVER FAILED cause = %s\n",
1609 rr_cause_name(gh->data[0]));
1610
1611 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_FAIL, msg->lchan);
1612 /* FIXME: release allocated new channel */
1613
1614 return 0;
1615}
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001616
Harald Weltebf5e8df2009-02-03 12:59:45 +00001617/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001618static int gsm0408_rcv_rr(struct msgb *msg)
1619{
1620 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001621 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001622
1623 switch (gh->msg_type) {
1624 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001625 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001626 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001627 case GSM48_MT_RR_GPRS_SUSP_REQ:
1628 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1629 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001630 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001631 rc = gsm48_rx_rr_pag_resp(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001632 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001633 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
Holger Hans Peter Freytherf520e642009-10-22 15:23:11 +02001634 rc = gsm48_rx_rr_modif_ack(msg);
Harald Welte7ccf7782009-02-17 01:43:01 +00001635 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001636 case GSM48_MT_RR_STATUS:
1637 rc = gsm48_rx_rr_status(msg);
1638 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001639 case GSM48_MT_RR_MEAS_REP:
1640 rc = gsm48_rx_rr_meas_rep(msg);
1641 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001642 case GSM48_MT_RR_APP_INFO:
1643 rc = gsm48_rx_rr_app_info(msg);
1644 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001645 case GSM48_MT_RR_CIPH_M_COMPL:
1646 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1647 /* FIXME: check for MI (if any) */
1648 break;
Harald Welteccd5a882009-11-29 20:02:20 +01001649 case GSM48_MT_RR_HANDO_COMPL:
Harald Welted011e8b2009-11-29 22:45:52 +01001650 rc = gsm48_rx_rr_ho_compl(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001651 break;
1652 case GSM48_MT_RR_HANDO_FAIL:
Harald Welted011e8b2009-11-29 22:45:52 +01001653 rc = gsm48_rx_rr_ho_fail(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001654 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001655 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001656 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001657 gh->msg_type);
1658 break;
1659 }
1660
Harald Welte2d35ae62009-02-06 12:02:13 +00001661 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001662}
1663
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001664int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
Holger Hans Peter Freyther8b77a342009-10-22 15:42:19 +02001665 u_int8_t apdu_len, const u_int8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001666{
1667 struct msgb *msg = gsm48_msgb_alloc();
1668 struct gsm48_hdr *gh;
1669
1670 msg->lchan = lchan;
1671
1672 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1673 apdu_id, apdu_len);
1674
1675 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1676 gh->proto_discr = GSM48_PDISC_RR;
1677 gh->msg_type = GSM48_MT_RR_APP_INFO;
1678 gh->data[0] = apdu_id;
1679 gh->data[1] = apdu_len;
1680 memcpy(gh->data+2, apdu, apdu_len);
1681
1682 return gsm48_sendmsg(msg, NULL);
1683}
1684
Harald Welte4bc90a12008-12-27 16:32:52 +00001685/* Call Control */
1686
Harald Welte7584aea2009-02-11 11:44:12 +00001687/* The entire call control code is written in accordance with Figure 7.10c
1688 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1689 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1690 * it for voice */
1691
Harald Welte4bfdfe72009-06-10 23:11:52 +08001692static void new_cc_state(struct gsm_trans *trans, int state)
1693{
1694 if (state > 31 || state < 0)
1695 return;
1696
1697 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001698 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001699
Harald Weltedcaf5652009-07-23 18:56:43 +02001700 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001701}
1702
1703static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001704{
1705 struct msgb *msg = gsm48_msgb_alloc();
1706 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1707 u_int8_t *cause, *call_state;
1708
Harald Welte4bc90a12008-12-27 16:32:52 +00001709 gh->msg_type = GSM48_MT_CC_STATUS;
1710
1711 cause = msgb_put(msg, 3);
1712 cause[0] = 2;
1713 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1714 cause[2] = 0x80 | 30; /* response to status inquiry */
1715
1716 call_state = msgb_put(msg, 1);
1717 call_state[0] = 0xc0 | 0x00;
1718
Harald Welte39e2ead2009-07-23 21:13:03 +02001719 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001720}
1721
Harald Welte6f4b7532008-12-29 00:39:37 +00001722static int gsm48_tx_simple(struct gsm_lchan *lchan,
1723 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001724{
1725 struct msgb *msg = gsm48_msgb_alloc();
1726 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1727
1728 msg->lchan = lchan;
1729
Harald Welte6f4b7532008-12-29 00:39:37 +00001730 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001731 gh->msg_type = msg_type;
1732
Harald Welte39e2ead2009-07-23 21:13:03 +02001733 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001734}
1735
Harald Welte4bfdfe72009-06-10 23:11:52 +08001736static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1737{
Harald Weltedcaf5652009-07-23 18:56:43 +02001738 if (bsc_timer_pending(&trans->cc.timer)) {
1739 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1740 bsc_del_timer(&trans->cc.timer);
1741 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001742 }
1743}
1744
1745static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1746 int msg_type, struct gsm_mncc *mncc)
1747{
1748 struct msgb *msg;
1749
1750 if (trans)
1751 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001752 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001753 "Sending '%s' to MNCC.\n",
1754 trans->lchan->ts->trx->bts->nr,
1755 trans->lchan->ts->trx->nr,
1756 trans->lchan->ts->nr, trans->transaction_id,
1757 (trans->subscr)?(trans->subscr->extension):"-",
1758 get_mncc_name(msg_type));
1759 else
1760 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1761 "Sending '%s' to MNCC.\n",
1762 (trans->subscr)?(trans->subscr->extension):"-",
1763 get_mncc_name(msg_type));
1764 else
1765 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1766 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1767
1768 mncc->msg_type = msg_type;
1769
Harald Welte966636f2009-06-26 19:39:35 +02001770 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001771 if (!msg)
1772 return -ENOMEM;
1773 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1774 msgb_enqueue(&net->upqueue, msg);
1775
1776 return 0;
1777}
1778
1779int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1780 u_int32_t callref, int location, int value)
1781{
1782 struct gsm_mncc rel;
1783
Harald Welte92f70c52009-06-12 01:54:08 +08001784 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001785 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001786 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001787 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1788}
1789
Harald Weltedcaf5652009-07-23 18:56:43 +02001790/* Call Control Specific transaction release.
1791 * gets called by trans_free, DO NOT CALL YOURSELF! */
1792void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001793{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001794 gsm48_stop_cc_timer(trans);
1795
1796 /* send release to L4, if callref still exists */
1797 if (trans->callref) {
1798 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001799 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001800 GSM48_CAUSE_LOC_PRN_S_LU,
1801 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001802 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001803 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001804 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001805 if (trans->lchan)
1806 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001807}
1808
1809static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1810
Harald Welte09e38af2009-02-16 22:52:23 +00001811/* call-back from paging the B-end of the connection */
1812static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001813 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001814{
Harald Welte7ccf7782009-02-17 01:43:01 +00001815 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001816 struct gsm_subscriber *subscr = param;
1817 struct gsm_trans *transt, *tmp;
1818 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001819
Harald Welte09e38af2009-02-16 22:52:23 +00001820 if (hooknum != GSM_HOOK_RR_PAGING)
1821 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001822
1823 if (!subscr)
1824 return -EINVAL;
1825 net = subscr->net;
1826 if (!net) {
1827 DEBUGP(DCC, "Error Network not set!\n");
1828 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001829 }
Harald Welte7584aea2009-02-11 11:44:12 +00001830
Harald Welte4bfdfe72009-06-10 23:11:52 +08001831 /* check all tranactions (without lchan) for subscriber */
1832 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1833 if (transt->subscr != subscr || transt->lchan)
1834 continue;
1835 switch (event) {
1836 case GSM_PAGING_SUCCEEDED:
1837 if (!lchan) // paranoid
1838 break;
1839 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1840 subscr->extension);
1841 /* Assign lchan */
1842 if (!transt->lchan) {
1843 transt->lchan = lchan;
1844 use_lchan(lchan);
1845 }
1846 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001847 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001848 break;
1849 case GSM_PAGING_EXPIRED:
1850 DEBUGP(DCC, "Paging subscr %s expired!\n",
1851 subscr->extension);
1852 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001853 mncc_release_ind(transt->subscr->net, transt,
1854 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001855 GSM48_CAUSE_LOC_PRN_S_LU,
1856 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001857 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001858 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001859 break;
1860 }
1861 }
Harald Welte09e38af2009-02-16 22:52:23 +00001862 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001863}
Harald Welte7584aea2009-02-11 11:44:12 +00001864
Harald Welte805f6442009-07-28 18:25:29 +02001865/* some other part of the code sends us a signal */
1866static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1867 void *handler_data, void *signal_data)
1868{
1869 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001870 int rc;
1871
1872 if (subsys != SS_ABISIP)
1873 return 0;
1874
1875 /* in case we use direct BTS-to-BTS RTP */
1876 if (ipacc_rtp_direct)
1877 return 0;
1878
Harald Welte805f6442009-07-28 18:25:29 +02001879 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001880 case S_ABISIP_CRCX_ACK:
Harald Welte805f6442009-07-28 18:25:29 +02001881 /* the BTS has successfully bound a TCH to a local ip/port,
1882 * which means we can connect our UDP socket to it */
Harald Welte2c828992009-12-02 01:56:49 +05301883 if (lchan->abis_ip.rtp_socket) {
1884 rtp_socket_free(lchan->abis_ip.rtp_socket);
1885 lchan->abis_ip.rtp_socket = NULL;
Harald Welte805f6442009-07-28 18:25:29 +02001886 }
1887
Harald Welte2c828992009-12-02 01:56:49 +05301888 lchan->abis_ip.rtp_socket = rtp_socket_create();
1889 if (!lchan->abis_ip.rtp_socket)
Harald Welte805f6442009-07-28 18:25:29 +02001890 goto out_err;
1891
Harald Welte2c828992009-12-02 01:56:49 +05301892 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1893 lchan->abis_ip.bound_ip,
1894 lchan->abis_ip.bound_port);
Harald Welte805f6442009-07-28 18:25:29 +02001895 if (rc < 0)
1896 goto out_err;
1897 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001898 case S_ABISIP_DLCX_IND:
Harald Welte805f6442009-07-28 18:25:29 +02001899 /* the BTS tells us a RTP stream has been disconnected */
Harald Welte2c828992009-12-02 01:56:49 +05301900 if (lchan->abis_ip.rtp_socket) {
1901 rtp_socket_free(lchan->abis_ip.rtp_socket);
1902 lchan->abis_ip.rtp_socket = NULL;
Harald Welte805f6442009-07-28 18:25:29 +02001903 }
1904 break;
1905 }
1906
1907 return 0;
1908out_err:
1909 /* FIXME: do something */
1910 return 0;
1911}
1912
1913/* bind rtp proxy to local IP/port and tell BTS to connect to it */
1914static int ipacc_connect_proxy_bind(struct gsm_lchan *lchan)
1915{
Harald Welte2c828992009-12-02 01:56:49 +05301916 struct rtp_socket *rs = lchan->abis_ip.rtp_socket;
Harald Welte805f6442009-07-28 18:25:29 +02001917 int rc;
1918
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001919 rc = rsl_ipacc_mdcx(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
Harald Welte805f6442009-07-28 18:25:29 +02001920 ntohs(rs->rtp.sin_local.sin_port),
Harald Welte2c828992009-12-02 01:56:49 +05301921 lchan->abis_ip.conn_id,
Harald Welte805f6442009-07-28 18:25:29 +02001922 /* FIXME: use RTP payload of bound socket, not BTS*/
Harald Welte2c828992009-12-02 01:56:49 +05301923 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001924
1925 return rc;
1926}
1927
Harald Welte49f48b82009-02-17 15:29:33 +00001928/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001929static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001930{
Harald Welte11fa29c2009-02-19 17:24:39 +00001931 struct gsm_bts *bts = lchan->ts->trx->bts;
1932 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001933 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001934
Harald Welte11fa29c2009-02-19 17:24:39 +00001935 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1936 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1937 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1938
1939 if (bts->type != remote_bts->type) {
1940 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1941 return -EINVAL;
1942 }
Harald Welte49f48b82009-02-17 15:29:33 +00001943
Harald Welte11fa29c2009-02-19 17:24:39 +00001944 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001945 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001946 if (!ipacc_rtp_direct) {
1947 /* connect the TCH's to our RTP proxy */
1948 rc = ipacc_connect_proxy_bind(lchan);
1949 if (rc < 0)
1950 return rc;
1951 rc = ipacc_connect_proxy_bind(remote_lchan);
1952
1953 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301954 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1955 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001956 } else {
1957 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301958 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1959 remote_lchan->abis_ip.bound_port,
1960 lchan->abis_ip.conn_id,
1961 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001962 if (rc < 0)
1963 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301964 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1965 lchan->abis_ip.bound_port,
1966 remote_lchan->abis_ip.conn_id,
1967 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001968 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001969 break;
1970 case GSM_BTS_TYPE_BS11:
1971 trau_mux_map_lchan(lchan, remote_lchan);
1972 break;
1973 default:
1974 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welte805f6442009-07-28 18:25:29 +02001975 rc = -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001976 break;
1977 }
Harald Welte49f48b82009-02-17 15:29:33 +00001978
1979 return 0;
1980}
1981
Harald Welte4bfdfe72009-06-10 23:11:52 +08001982/* bridge channels of two transactions */
1983static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001984{
Harald Weltedcaf5652009-07-23 18:56:43 +02001985 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1986 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001987
Harald Welte4bfdfe72009-06-10 23:11:52 +08001988 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001989 return -EIO;
1990
Harald Welte4bfdfe72009-06-10 23:11:52 +08001991 if (!trans1->lchan || !trans2->lchan)
1992 return -EIO;
1993
1994 /* through-connect channel */
1995 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001996}
1997
Harald Welte4bfdfe72009-06-10 23:11:52 +08001998/* enable receive of channels to upqueue */
1999static int tch_recv(struct gsm_network *net, struct gsm_mncc *data, int enable)
2000{
2001 struct gsm_trans *trans;
Harald Welte7ccf7782009-02-17 01:43:01 +00002002
Harald Welte4bfdfe72009-06-10 23:11:52 +08002003 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002004 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002005 if (!trans)
2006 return -EIO;
2007 if (!trans->lchan)
2008 return 0;
2009
2010 // todo IPACCESS
2011 if (enable)
2012 return trau_recv_lchan(trans->lchan, data->callref);
2013 return trau_mux_unmap(NULL, data->callref);
2014}
2015
2016/* send a frame to channel */
2017static int tch_frame(struct gsm_network *net, struct gsm_trau_frame *frame)
2018{
2019 struct gsm_trans *trans;
2020
2021 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002022 trans = trans_find_by_callref(net, frame->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002023 if (!trans)
2024 return -EIO;
2025 if (!trans->lchan)
2026 return 0;
2027 if (trans->lchan->type != GSM_LCHAN_TCH_F &&
2028 trans->lchan->type != GSM_LCHAN_TCH_H)
2029 return 0;
2030
2031 // todo IPACCESS
2032 return trau_send_lchan(trans->lchan,
2033 (struct decoded_trau_frame *)frame->data);
2034}
2035
2036
2037static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
2038{
2039 DEBUGP(DCC, "-> STATUS ENQ\n");
2040 return gsm48_cc_tx_status(trans, msg);
2041}
2042
2043static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
2044static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
2045
2046static void gsm48_cc_timeout(void *arg)
2047{
2048 struct gsm_trans *trans = arg;
2049 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08002050 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
2051 int mo_location = GSM48_CAUSE_LOC_USER;
2052 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
2053 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054 struct gsm_mncc mo_rel, l4_rel;
2055
2056 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
2057 mo_rel.callref = trans->callref;
2058 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2059 l4_rel.callref = trans->callref;
2060
Harald Weltedcaf5652009-07-23 18:56:43 +02002061 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002062 case 0x303:
2063 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002064 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002065 break;
2066 case 0x310:
2067 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002068 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002069 break;
2070 case 0x313:
2071 disconnect = 1;
2072 /* unknown, did not find it in the specs */
2073 break;
2074 case 0x301:
2075 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002076 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002077 break;
2078 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002079 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002080 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002081 gsm48_cc_tx_release(trans, &trans->cc.msg);
2082 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002083 break; /* stay in release state */
2084 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002085 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002086 return;
2087// release = 1;
2088// l4_cause = 14;
2089// break;
2090 case 0x306:
2091 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002092 mo_cause = trans->cc.msg.cause.value;
2093 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002094 break;
2095 case 0x323:
2096 disconnect = 1;
2097 break;
2098 default:
2099 release = 1;
2100 }
2101
2102 if (release && trans->callref) {
2103 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002104 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002105 l4_location, l4_cause);
2106 trans->callref = 0;
2107 }
2108
2109 if (disconnect && trans->callref) {
2110 /* process disconnect towards layer 4 */
2111 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002112 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002113 }
2114
2115 /* process disconnect towards mobile station */
2116 if (disconnect || release) {
2117 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002118 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2119 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2120 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002121 mo_rel.cause.diag_len = 3;
2122
2123 if (disconnect)
2124 gsm48_cc_tx_disconnect(trans, &mo_rel);
2125 if (release)
2126 gsm48_cc_tx_release(trans, &mo_rel);
2127 }
2128
2129}
2130
2131static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2132 int sec, int micro)
2133{
2134 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002135 trans->cc.timer.cb = gsm48_cc_timeout;
2136 trans->cc.timer.data = trans;
2137 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2138 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002139}
2140
2141static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2142{
2143 struct gsm48_hdr *gh = msgb_l3(msg);
2144 u_int8_t msg_type = gh->msg_type & 0xbf;
2145 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2146 struct tlv_parsed tp;
2147 struct gsm_mncc setup;
2148
2149 memset(&setup, 0, sizeof(struct gsm_mncc));
2150 setup.callref = trans->callref;
2151 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2152 /* emergency setup is identified by msg_type */
2153 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2154 setup.emergency = 1;
2155
2156 /* use subscriber as calling party number */
2157 if (trans->subscr) {
2158 setup.fields |= MNCC_F_CALLING;
2159 strncpy(setup.calling.number, trans->subscr->extension,
2160 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002161 strncpy(setup.imsi, trans->subscr->imsi,
2162 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002163 }
2164 /* bearer capability */
2165 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2166 setup.fields |= MNCC_F_BEARER_CAP;
2167 decode_bearer_cap(&setup.bearer_cap,
2168 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2169 }
2170 /* facility */
2171 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2172 setup.fields |= MNCC_F_FACILITY;
2173 decode_facility(&setup.facility,
2174 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2175 }
2176 /* called party bcd number */
2177 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2178 setup.fields |= MNCC_F_CALLED;
2179 decode_called(&setup.called,
2180 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2181 }
2182 /* user-user */
2183 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2184 setup.fields |= MNCC_F_USERUSER;
2185 decode_useruser(&setup.useruser,
2186 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2187 }
2188 /* ss-version */
2189 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2190 setup.fields |= MNCC_F_SSVERSION;
2191 decode_ssversion(&setup.ssversion,
2192 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2193 }
2194 /* CLIR suppression */
2195 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2196 setup.clir.sup = 1;
2197 /* CLIR invocation */
2198 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2199 setup.clir.inv = 1;
2200 /* cc cap */
2201 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2202 setup.fields |= MNCC_F_CCCAP;
2203 decode_cccap(&setup.cccap,
2204 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2205 }
2206
Harald Welte4bfdfe72009-06-10 23:11:52 +08002207 new_cc_state(trans, GSM_CSTATE_INITIATED);
2208
2209 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002210 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002211
Harald Welte13cac662009-07-29 12:10:35 +02002212 /* MNCC code will modify the channel asynchronously, we should
2213 * ipaccess-bind only after the modification has been made to the
2214 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002215 return 0;
2216}
2217
2218static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002219{
2220 struct msgb *msg = gsm48_msgb_alloc();
2221 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002222 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002223 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002224
Harald Welte7ccf7782009-02-17 01:43:01 +00002225 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002226
Harald Welte4bfdfe72009-06-10 23:11:52 +08002227 /* transaction id must not be assigned */
2228 if (trans->transaction_id != 0xff) { /* unasssigned */
2229 DEBUGP(DCC, "TX Setup with assigned transaction. "
2230 "This is not allowed!\n");
2231 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002232 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002233 GSM48_CAUSE_LOC_PRN_S_LU,
2234 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002235 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002236 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002237 return rc;
2238 }
2239
2240 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002241 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2242 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002243 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002244 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002245 GSM48_CAUSE_LOC_PRN_S_LU,
2246 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002247 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002248 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002249 return rc;
2250 }
Harald Welte78283ef2009-07-23 21:36:44 +02002251 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002252
Harald Welte65e74cc2008-12-29 01:55:35 +00002253 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002254
Harald Welte4bfdfe72009-06-10 23:11:52 +08002255 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002256
Harald Welte4bfdfe72009-06-10 23:11:52 +08002257 /* bearer capability */
2258 if (setup->fields & MNCC_F_BEARER_CAP)
2259 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2260 /* facility */
2261 if (setup->fields & MNCC_F_FACILITY)
2262 encode_facility(msg, 0, &setup->facility);
2263 /* progress */
2264 if (setup->fields & MNCC_F_PROGRESS)
2265 encode_progress(msg, 0, &setup->progress);
2266 /* calling party BCD number */
2267 if (setup->fields & MNCC_F_CALLING)
2268 encode_calling(msg, &setup->calling);
2269 /* called party BCD number */
2270 if (setup->fields & MNCC_F_CALLED)
2271 encode_called(msg, &setup->called);
2272 /* user-user */
2273 if (setup->fields & MNCC_F_USERUSER)
2274 encode_useruser(msg, 0, &setup->useruser);
2275 /* redirecting party BCD number */
2276 if (setup->fields & MNCC_F_REDIRECTING)
2277 encode_redirecting(msg, &setup->redirecting);
2278 /* signal */
2279 if (setup->fields & MNCC_F_SIGNAL)
2280 encode_signal(msg, setup->signal);
2281
2282 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002283
Harald Welte39e2ead2009-07-23 21:13:03 +02002284 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002285}
2286
Harald Welte4bfdfe72009-06-10 23:11:52 +08002287static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2288{
2289 struct gsm48_hdr *gh = msgb_l3(msg);
2290 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2291 struct tlv_parsed tp;
2292 struct gsm_mncc call_conf;
2293
2294 gsm48_stop_cc_timer(trans);
2295 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2296
2297 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2298 call_conf.callref = trans->callref;
2299 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2300#if 0
2301 /* repeat */
2302 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2303 call_conf.repeat = 1;
2304 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2305 call_conf.repeat = 2;
2306#endif
2307 /* bearer capability */
2308 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2309 call_conf.fields |= MNCC_F_BEARER_CAP;
2310 decode_bearer_cap(&call_conf.bearer_cap,
2311 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2312 }
2313 /* cause */
2314 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2315 call_conf.fields |= MNCC_F_CAUSE;
2316 decode_cause(&call_conf.cause,
2317 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2318 }
2319 /* cc cap */
2320 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2321 call_conf.fields |= MNCC_F_CCCAP;
2322 decode_cccap(&call_conf.cccap,
2323 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2324 }
2325
2326 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2327
Harald Welte596fed42009-07-23 19:06:52 +02002328 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2329 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002330}
2331
2332static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2333{
2334 struct gsm_mncc *proceeding = arg;
2335 struct msgb *msg = gsm48_msgb_alloc();
2336 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2337
Harald Welte4bfdfe72009-06-10 23:11:52 +08002338 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2339
2340 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2341
2342 /* bearer capability */
2343 if (proceeding->fields & MNCC_F_BEARER_CAP)
2344 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2345 /* facility */
2346 if (proceeding->fields & MNCC_F_FACILITY)
2347 encode_facility(msg, 0, &proceeding->facility);
2348 /* progress */
2349 if (proceeding->fields & MNCC_F_PROGRESS)
2350 encode_progress(msg, 0, &proceeding->progress);
2351
Harald Welte39e2ead2009-07-23 21:13:03 +02002352 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002353}
2354
2355static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2356{
2357 struct gsm48_hdr *gh = msgb_l3(msg);
2358 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2359 struct tlv_parsed tp;
2360 struct gsm_mncc alerting;
2361
2362 gsm48_stop_cc_timer(trans);
2363 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2364
2365 memset(&alerting, 0, sizeof(struct gsm_mncc));
2366 alerting.callref = trans->callref;
2367 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2368 /* facility */
2369 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2370 alerting.fields |= MNCC_F_FACILITY;
2371 decode_facility(&alerting.facility,
2372 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2373 }
2374
2375 /* progress */
2376 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2377 alerting.fields |= MNCC_F_PROGRESS;
2378 decode_progress(&alerting.progress,
2379 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2380 }
2381 /* ss-version */
2382 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2383 alerting.fields |= MNCC_F_SSVERSION;
2384 decode_ssversion(&alerting.ssversion,
2385 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2386 }
2387
2388 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2389
Harald Welte596fed42009-07-23 19:06:52 +02002390 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2391 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002392}
2393
2394static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2395{
2396 struct gsm_mncc *alerting = arg;
2397 struct msgb *msg = gsm48_msgb_alloc();
2398 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2399
Harald Welte4bfdfe72009-06-10 23:11:52 +08002400 gh->msg_type = GSM48_MT_CC_ALERTING;
2401
2402 /* facility */
2403 if (alerting->fields & MNCC_F_FACILITY)
2404 encode_facility(msg, 0, &alerting->facility);
2405 /* progress */
2406 if (alerting->fields & MNCC_F_PROGRESS)
2407 encode_progress(msg, 0, &alerting->progress);
2408 /* user-user */
2409 if (alerting->fields & MNCC_F_USERUSER)
2410 encode_useruser(msg, 0, &alerting->useruser);
2411
2412 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2413
Harald Welte39e2ead2009-07-23 21:13:03 +02002414 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002415}
2416
2417static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2418{
2419 struct gsm_mncc *progress = arg;
2420 struct msgb *msg = gsm48_msgb_alloc();
2421 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2422
Harald Welte4bfdfe72009-06-10 23:11:52 +08002423 gh->msg_type = GSM48_MT_CC_PROGRESS;
2424
2425 /* progress */
2426 encode_progress(msg, 1, &progress->progress);
2427 /* user-user */
2428 if (progress->fields & MNCC_F_USERUSER)
2429 encode_useruser(msg, 0, &progress->useruser);
2430
Harald Welte39e2ead2009-07-23 21:13:03 +02002431 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002432}
2433
2434static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2435{
2436 struct gsm_mncc *connect = arg;
2437 struct msgb *msg = gsm48_msgb_alloc();
2438 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2439
Harald Welte4bfdfe72009-06-10 23:11:52 +08002440 gh->msg_type = GSM48_MT_CC_CONNECT;
2441
2442 gsm48_stop_cc_timer(trans);
2443 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2444
2445 /* facility */
2446 if (connect->fields & MNCC_F_FACILITY)
2447 encode_facility(msg, 0, &connect->facility);
2448 /* progress */
2449 if (connect->fields & MNCC_F_PROGRESS)
2450 encode_progress(msg, 0, &connect->progress);
2451 /* connected number */
2452 if (connect->fields & MNCC_F_CONNECTED)
2453 encode_connected(msg, &connect->connected);
2454 /* user-user */
2455 if (connect->fields & MNCC_F_USERUSER)
2456 encode_useruser(msg, 0, &connect->useruser);
2457
2458 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2459
Harald Welte39e2ead2009-07-23 21:13:03 +02002460 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002461}
2462
2463static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2464{
2465 struct gsm48_hdr *gh = msgb_l3(msg);
2466 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2467 struct tlv_parsed tp;
2468 struct gsm_mncc connect;
2469
2470 gsm48_stop_cc_timer(trans);
2471
2472 memset(&connect, 0, sizeof(struct gsm_mncc));
2473 connect.callref = trans->callref;
2474 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2475 /* use subscriber as connected party number */
2476 if (trans->subscr) {
2477 connect.fields |= MNCC_F_CONNECTED;
2478 strncpy(connect.connected.number, trans->subscr->extension,
2479 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002480 strncpy(connect.imsi, trans->subscr->imsi,
2481 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002482 }
2483 /* facility */
2484 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2485 connect.fields |= MNCC_F_FACILITY;
2486 decode_facility(&connect.facility,
2487 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2488 }
2489 /* user-user */
2490 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2491 connect.fields |= MNCC_F_USERUSER;
2492 decode_useruser(&connect.useruser,
2493 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2494 }
2495 /* ss-version */
2496 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2497 connect.fields |= MNCC_F_SSVERSION;
2498 decode_ssversion(&connect.ssversion,
2499 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2500 }
2501
2502 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2503
Harald Welte596fed42009-07-23 19:06:52 +02002504 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002505}
2506
2507
2508static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2509{
2510 struct gsm_mncc connect_ack;
2511
2512 gsm48_stop_cc_timer(trans);
2513
2514 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2515
2516 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2517 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002518 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002519 &connect_ack);
2520}
2521
2522static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2523{
2524 struct msgb *msg = gsm48_msgb_alloc();
2525 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2526
Harald Welte4bfdfe72009-06-10 23:11:52 +08002527 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2528
2529 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2530
Harald Welte39e2ead2009-07-23 21:13:03 +02002531 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002532}
2533
2534static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2535{
2536 struct gsm48_hdr *gh = msgb_l3(msg);
2537 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2538 struct tlv_parsed tp;
2539 struct gsm_mncc disc;
2540
2541 gsm48_stop_cc_timer(trans);
2542
2543 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2544
2545 memset(&disc, 0, sizeof(struct gsm_mncc));
2546 disc.callref = trans->callref;
2547 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2548 /* cause */
2549 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2550 disc.fields |= MNCC_F_CAUSE;
2551 decode_cause(&disc.cause,
2552 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2553 }
2554 /* facility */
2555 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2556 disc.fields |= MNCC_F_FACILITY;
2557 decode_facility(&disc.facility,
2558 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2559 }
2560 /* user-user */
2561 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2562 disc.fields |= MNCC_F_USERUSER;
2563 decode_useruser(&disc.useruser,
2564 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2565 }
2566 /* ss-version */
2567 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2568 disc.fields |= MNCC_F_SSVERSION;
2569 decode_ssversion(&disc.ssversion,
2570 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2571 }
2572
Harald Welte596fed42009-07-23 19:06:52 +02002573 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002574
2575}
2576
Harald Weltec66b71c2009-06-11 14:23:20 +08002577static struct gsm_mncc_cause default_cause = {
2578 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2579 .coding = 0,
2580 .rec = 0,
2581 .rec_val = 0,
2582 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2583 .diag_len = 0,
2584 .diag = { 0 },
2585};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002586
2587static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2588{
2589 struct gsm_mncc *disc = arg;
2590 struct msgb *msg = gsm48_msgb_alloc();
2591 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2592
Harald Welte4bfdfe72009-06-10 23:11:52 +08002593 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2594
2595 gsm48_stop_cc_timer(trans);
2596 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2597
2598 /* cause */
2599 if (disc->fields & MNCC_F_CAUSE)
2600 encode_cause(msg, 1, &disc->cause);
2601 else
2602 encode_cause(msg, 1, &default_cause);
2603
2604 /* facility */
2605 if (disc->fields & MNCC_F_FACILITY)
2606 encode_facility(msg, 0, &disc->facility);
2607 /* progress */
2608 if (disc->fields & MNCC_F_PROGRESS)
2609 encode_progress(msg, 0, &disc->progress);
2610 /* user-user */
2611 if (disc->fields & MNCC_F_USERUSER)
2612 encode_useruser(msg, 0, &disc->useruser);
2613
2614 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002615 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002616
2617 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2618
Harald Welte39e2ead2009-07-23 21:13:03 +02002619 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002620}
2621
2622static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2623{
2624 struct gsm48_hdr *gh = msgb_l3(msg);
2625 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2626 struct tlv_parsed tp;
2627 struct gsm_mncc rel;
2628 int rc;
2629
2630 gsm48_stop_cc_timer(trans);
2631
2632 memset(&rel, 0, sizeof(struct gsm_mncc));
2633 rel.callref = trans->callref;
2634 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2635 /* cause */
2636 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2637 rel.fields |= MNCC_F_CAUSE;
2638 decode_cause(&rel.cause,
2639 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2640 }
2641 /* facility */
2642 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2643 rel.fields |= MNCC_F_FACILITY;
2644 decode_facility(&rel.facility,
2645 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2646 }
2647 /* user-user */
2648 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2649 rel.fields |= MNCC_F_USERUSER;
2650 decode_useruser(&rel.useruser,
2651 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2652 }
2653 /* ss-version */
2654 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2655 rel.fields |= MNCC_F_SSVERSION;
2656 decode_ssversion(&rel.ssversion,
2657 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2658 }
2659
Harald Weltedcaf5652009-07-23 18:56:43 +02002660 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002661 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002662 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002663 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002664 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002665 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002666 GSM48_MT_CC_RELEASE_COMPL);
2667 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002668 }
2669
2670 new_cc_state(trans, GSM_CSTATE_NULL);
2671
2672 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002673 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002674
2675 return rc;
2676}
2677
2678static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2679{
2680 struct gsm_mncc *rel = arg;
2681 struct msgb *msg = gsm48_msgb_alloc();
2682 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2683
Harald Welte4bfdfe72009-06-10 23:11:52 +08002684 gh->msg_type = GSM48_MT_CC_RELEASE;
2685
2686 trans->callref = 0;
2687
2688 gsm48_stop_cc_timer(trans);
2689 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2690
2691 /* cause */
2692 if (rel->fields & MNCC_F_CAUSE)
2693 encode_cause(msg, 0, &rel->cause);
2694 /* facility */
2695 if (rel->fields & MNCC_F_FACILITY)
2696 encode_facility(msg, 0, &rel->facility);
2697 /* user-user */
2698 if (rel->fields & MNCC_F_USERUSER)
2699 encode_useruser(msg, 0, &rel->useruser);
2700
Harald Weltedcaf5652009-07-23 18:56:43 +02002701 trans->cc.T308_second = 0;
2702 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002703
Harald Weltedcaf5652009-07-23 18:56:43 +02002704 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002705 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2706
Harald Welte39e2ead2009-07-23 21:13:03 +02002707 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002708}
2709
2710static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2711{
2712 struct gsm48_hdr *gh = msgb_l3(msg);
2713 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2714 struct tlv_parsed tp;
2715 struct gsm_mncc rel;
2716 int rc = 0;
2717
2718 gsm48_stop_cc_timer(trans);
2719
2720 memset(&rel, 0, sizeof(struct gsm_mncc));
2721 rel.callref = trans->callref;
2722 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2723 /* cause */
2724 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2725 rel.fields |= MNCC_F_CAUSE;
2726 decode_cause(&rel.cause,
2727 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2728 }
2729 /* facility */
2730 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2731 rel.fields |= MNCC_F_FACILITY;
2732 decode_facility(&rel.facility,
2733 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2734 }
2735 /* user-user */
2736 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2737 rel.fields |= MNCC_F_USERUSER;
2738 decode_useruser(&rel.useruser,
2739 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2740 }
2741 /* ss-version */
2742 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2743 rel.fields |= MNCC_F_SSVERSION;
2744 decode_ssversion(&rel.ssversion,
2745 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2746 }
2747
2748 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002749 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002750 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002751 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002752 MNCC_REJ_IND, &rel);
2753 break;
2754 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002755 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002756 MNCC_REL_CNF, &rel);
Harald Welteb83d9382009-12-12 21:00:48 +01002757 /* FIXME: in case of multiple calls, we can't simply
2758 * hang up here ! */
2759 lchan_auto_release(msg->lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002760 break;
2761 default:
Harald Welte596fed42009-07-23 19:06:52 +02002762 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002763 MNCC_REL_IND, &rel);
2764 }
2765 }
2766
2767 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002768 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002769
2770 return rc;
2771}
2772
2773static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2774{
2775 struct gsm_mncc *rel = arg;
2776 struct msgb *msg = gsm48_msgb_alloc();
2777 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2778
Harald Welte4bfdfe72009-06-10 23:11:52 +08002779 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2780
2781 trans->callref = 0;
2782
2783 gsm48_stop_cc_timer(trans);
2784
2785 /* cause */
2786 if (rel->fields & MNCC_F_CAUSE)
2787 encode_cause(msg, 0, &rel->cause);
2788 /* facility */
2789 if (rel->fields & MNCC_F_FACILITY)
2790 encode_facility(msg, 0, &rel->facility);
2791 /* user-user */
2792 if (rel->fields & MNCC_F_USERUSER)
2793 encode_useruser(msg, 0, &rel->useruser);
2794
Harald Weltedcaf5652009-07-23 18:56:43 +02002795 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002796
Harald Welte39e2ead2009-07-23 21:13:03 +02002797 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002798}
2799
2800static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2801{
2802 struct gsm48_hdr *gh = msgb_l3(msg);
2803 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2804 struct tlv_parsed tp;
2805 struct gsm_mncc fac;
2806
2807 memset(&fac, 0, sizeof(struct gsm_mncc));
2808 fac.callref = trans->callref;
2809 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2810 /* facility */
2811 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2812 fac.fields |= MNCC_F_FACILITY;
2813 decode_facility(&fac.facility,
2814 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2815 }
2816 /* ss-version */
2817 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2818 fac.fields |= MNCC_F_SSVERSION;
2819 decode_ssversion(&fac.ssversion,
2820 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2821 }
2822
Harald Welte596fed42009-07-23 19:06:52 +02002823 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002824}
2825
2826static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2827{
2828 struct gsm_mncc *fac = arg;
2829 struct msgb *msg = gsm48_msgb_alloc();
2830 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2831
Harald Welte4bfdfe72009-06-10 23:11:52 +08002832 gh->msg_type = GSM48_MT_CC_FACILITY;
2833
2834 /* facility */
2835 encode_facility(msg, 1, &fac->facility);
2836
Harald Welte39e2ead2009-07-23 21:13:03 +02002837 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002838}
2839
2840static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2841{
2842 struct gsm_mncc hold;
2843
2844 memset(&hold, 0, sizeof(struct gsm_mncc));
2845 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002846 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002847}
2848
2849static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2850{
2851 struct msgb *msg = gsm48_msgb_alloc();
2852 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2853
Harald Welte4bfdfe72009-06-10 23:11:52 +08002854 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2855
Harald Welte39e2ead2009-07-23 21:13:03 +02002856 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002857}
2858
2859static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2860{
2861 struct gsm_mncc *hold_rej = arg;
2862 struct msgb *msg = gsm48_msgb_alloc();
2863 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2864
Harald Welte4bfdfe72009-06-10 23:11:52 +08002865 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2866
2867 /* cause */
2868 if (hold_rej->fields & MNCC_F_CAUSE)
2869 encode_cause(msg, 1, &hold_rej->cause);
2870 else
2871 encode_cause(msg, 1, &default_cause);
2872
Harald Welte39e2ead2009-07-23 21:13:03 +02002873 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002874}
2875
2876static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2877{
2878 struct gsm_mncc retrieve;
2879
2880 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2881 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002882 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2883 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002884}
2885
2886static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2887{
2888 struct msgb *msg = gsm48_msgb_alloc();
2889 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2890
Harald Welte4bfdfe72009-06-10 23:11:52 +08002891 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2892
Harald Welte39e2ead2009-07-23 21:13:03 +02002893 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002894}
2895
2896static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2897{
2898 struct gsm_mncc *retrieve_rej = arg;
2899 struct msgb *msg = gsm48_msgb_alloc();
2900 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2901
Harald Welte4bfdfe72009-06-10 23:11:52 +08002902 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2903
2904 /* cause */
2905 if (retrieve_rej->fields & MNCC_F_CAUSE)
2906 encode_cause(msg, 1, &retrieve_rej->cause);
2907 else
2908 encode_cause(msg, 1, &default_cause);
2909
Harald Welte39e2ead2009-07-23 21:13:03 +02002910 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002911}
2912
2913static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2914{
2915 struct gsm48_hdr *gh = msgb_l3(msg);
2916 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2917 struct tlv_parsed tp;
2918 struct gsm_mncc dtmf;
2919
2920 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2921 dtmf.callref = trans->callref;
2922 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2923 /* keypad facility */
2924 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2925 dtmf.fields |= MNCC_F_KEYPAD;
2926 decode_keypad(&dtmf.keypad,
2927 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2928 }
2929
Harald Welte596fed42009-07-23 19:06:52 +02002930 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002931}
2932
2933static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2934{
2935 struct gsm_mncc *dtmf = arg;
2936 struct msgb *msg = gsm48_msgb_alloc();
2937 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2938
Harald Welte4bfdfe72009-06-10 23:11:52 +08002939 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2940
2941 /* keypad */
2942 if (dtmf->fields & MNCC_F_KEYPAD)
2943 encode_keypad(msg, dtmf->keypad);
2944
Harald Welte39e2ead2009-07-23 21:13:03 +02002945 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002946}
2947
2948static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2949{
2950 struct gsm_mncc *dtmf = arg;
2951 struct msgb *msg = gsm48_msgb_alloc();
2952 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2953
Harald Welte4bfdfe72009-06-10 23:11:52 +08002954 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2955
2956 /* cause */
2957 if (dtmf->fields & MNCC_F_CAUSE)
2958 encode_cause(msg, 1, &dtmf->cause);
2959 else
2960 encode_cause(msg, 1, &default_cause);
2961
Harald Welte39e2ead2009-07-23 21:13:03 +02002962 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002963}
2964
2965static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2966{
2967 struct msgb *msg = gsm48_msgb_alloc();
2968 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2969
Harald Welte4bfdfe72009-06-10 23:11:52 +08002970 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2971
Harald Welte39e2ead2009-07-23 21:13:03 +02002972 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002973}
2974
2975static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2976{
2977 struct gsm_mncc dtmf;
2978
2979 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2980 dtmf.callref = trans->callref;
2981
Harald Welte596fed42009-07-23 19:06:52 +02002982 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002983}
2984
2985static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2986{
2987 struct gsm48_hdr *gh = msgb_l3(msg);
2988 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2989 struct tlv_parsed tp;
2990 struct gsm_mncc modify;
2991
2992 memset(&modify, 0, sizeof(struct gsm_mncc));
2993 modify.callref = trans->callref;
2994 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
2995 /* bearer capability */
2996 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2997 modify.fields |= MNCC_F_BEARER_CAP;
2998 decode_bearer_cap(&modify.bearer_cap,
2999 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3000 }
3001
3002 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
3003
Harald Welte596fed42009-07-23 19:06:52 +02003004 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003005}
3006
3007static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
3008{
3009 struct gsm_mncc *modify = arg;
3010 struct msgb *msg = gsm48_msgb_alloc();
3011 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3012
Harald Welte4bfdfe72009-06-10 23:11:52 +08003013 gh->msg_type = GSM48_MT_CC_MODIFY;
3014
3015 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
3016
3017 /* bearer capability */
3018 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3019
3020 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
3021
Harald Welte39e2ead2009-07-23 21:13:03 +02003022 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003023}
3024
3025static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
3026{
3027 struct gsm48_hdr *gh = msgb_l3(msg);
3028 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3029 struct tlv_parsed tp;
3030 struct gsm_mncc modify;
3031
3032 gsm48_stop_cc_timer(trans);
3033
3034 memset(&modify, 0, sizeof(struct gsm_mncc));
3035 modify.callref = trans->callref;
3036 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3037 /* bearer capability */
3038 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3039 modify.fields |= MNCC_F_BEARER_CAP;
3040 decode_bearer_cap(&modify.bearer_cap,
3041 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3042 }
3043
3044 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3045
Harald Welte596fed42009-07-23 19:06:52 +02003046 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003047}
3048
3049static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
3050{
3051 struct gsm_mncc *modify = arg;
3052 struct msgb *msg = gsm48_msgb_alloc();
3053 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3054
Harald Welte4bfdfe72009-06-10 23:11:52 +08003055 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
3056
3057 /* bearer capability */
3058 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3059
3060 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3061
Harald Welte39e2ead2009-07-23 21:13:03 +02003062 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003063}
3064
3065static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3066{
3067 struct gsm48_hdr *gh = msgb_l3(msg);
3068 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3069 struct tlv_parsed tp;
3070 struct gsm_mncc modify;
3071
3072 gsm48_stop_cc_timer(trans);
3073
3074 memset(&modify, 0, sizeof(struct gsm_mncc));
3075 modify.callref = trans->callref;
3076 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3077 /* bearer capability */
3078 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3079 modify.fields |= GSM48_IE_BEARER_CAP;
3080 decode_bearer_cap(&modify.bearer_cap,
3081 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3082 }
3083 /* cause */
3084 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3085 modify.fields |= MNCC_F_CAUSE;
3086 decode_cause(&modify.cause,
3087 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3088 }
3089
3090 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3091
Harald Welte596fed42009-07-23 19:06:52 +02003092 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003093}
3094
3095static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3096{
3097 struct gsm_mncc *modify = arg;
3098 struct msgb *msg = gsm48_msgb_alloc();
3099 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3100
Harald Welte4bfdfe72009-06-10 23:11:52 +08003101 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3102
3103 /* bearer capability */
3104 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3105 /* cause */
3106 encode_cause(msg, 1, &modify->cause);
3107
3108 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3109
Harald Welte39e2ead2009-07-23 21:13:03 +02003110 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003111}
3112
3113static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3114{
3115 struct gsm_mncc *notify = arg;
3116 struct msgb *msg = gsm48_msgb_alloc();
3117 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3118
Harald Welte4bfdfe72009-06-10 23:11:52 +08003119 gh->msg_type = GSM48_MT_CC_NOTIFY;
3120
3121 /* notify */
3122 encode_notify(msg, notify->notify);
3123
Harald Welte39e2ead2009-07-23 21:13:03 +02003124 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003125}
3126
3127static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3128{
3129 struct gsm48_hdr *gh = msgb_l3(msg);
3130 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3131// struct tlv_parsed tp;
3132 struct gsm_mncc notify;
3133
3134 memset(&notify, 0, sizeof(struct gsm_mncc));
3135 notify.callref = trans->callref;
3136// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3137 if (payload_len >= 1)
3138 decode_notify(&notify.notify, gh->data);
3139
Harald Welte596fed42009-07-23 19:06:52 +02003140 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003141}
3142
3143static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3144{
3145 struct gsm_mncc *user = arg;
3146 struct msgb *msg = gsm48_msgb_alloc();
3147 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3148
Harald Welte4bfdfe72009-06-10 23:11:52 +08003149 gh->msg_type = GSM48_MT_CC_USER_INFO;
3150
3151 /* user-user */
3152 if (user->fields & MNCC_F_USERUSER)
3153 encode_useruser(msg, 1, &user->useruser);
3154 /* more data */
3155 if (user->more)
3156 encode_more(msg);
3157
Harald Welte39e2ead2009-07-23 21:13:03 +02003158 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003159}
3160
3161static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3162{
3163 struct gsm48_hdr *gh = msgb_l3(msg);
3164 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3165 struct tlv_parsed tp;
3166 struct gsm_mncc user;
3167
3168 memset(&user, 0, sizeof(struct gsm_mncc));
3169 user.callref = trans->callref;
3170 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3171 /* user-user */
3172 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3173 user.fields |= MNCC_F_USERUSER;
3174 decode_useruser(&user.useruser,
3175 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3176 }
3177 /* more data */
3178 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3179 user.more = 1;
3180
Harald Welte596fed42009-07-23 19:06:52 +02003181 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003182}
3183
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003184static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003185{
3186 struct gsm_mncc *mode = arg;
3187
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +01003188 return gsm48_lchan_modify(trans->lchan, mode->lchan_mode);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003189}
3190
3191static struct downstate {
3192 u_int32_t states;
3193 int type;
3194 int (*rout) (struct gsm_trans *trans, void *arg);
3195} downstatelist[] = {
3196 /* mobile originating call establishment */
3197 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3198 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3199 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3200 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3201 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC) | SBIT(GSM_CSTATE_CALL_DELIVERED), /* 5.2.1.2 | 5.2.1.6 | 5.2.1.6 */
3202 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3203 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3204 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3205 /* mobile terminating call establishment */
3206 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3207 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3208 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3209 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3210 /* signalling during call */
3211 {SBIT(GSM_CSTATE_ACTIVE),
3212 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3213 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3214 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3215 {ALL_STATES,
3216 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3217 {ALL_STATES,
3218 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3219 {ALL_STATES,
3220 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3221 {SBIT(GSM_CSTATE_ACTIVE),
3222 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3223 {SBIT(GSM_CSTATE_ACTIVE),
3224 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3225 {SBIT(GSM_CSTATE_ACTIVE),
3226 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3227 {SBIT(GSM_CSTATE_ACTIVE),
3228 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3229 {SBIT(GSM_CSTATE_ACTIVE),
3230 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3231 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3232 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3233 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3234 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3235 {SBIT(GSM_CSTATE_ACTIVE),
3236 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3237 /* clearing */
3238 {SBIT(GSM_CSTATE_INITIATED),
3239 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3240 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3241 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3242 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3243 MNCC_REL_REQ, gsm48_cc_tx_release},
3244 /* special */
3245 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003246 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08003247};
3248
3249#define DOWNSLLEN \
3250 (sizeof(downstatelist) / sizeof(struct downstate))
3251
3252
3253int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3254{
Harald Welte1a6f7982009-08-09 18:52:33 +02003255 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003256 struct gsm_trans *trans = NULL, *transt;
Harald Welte1a6f7982009-08-09 18:52:33 +02003257 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003258 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003259 struct gsm_mncc *data = arg, rel;
3260
3261 /* handle special messages */
3262 switch(msg_type) {
3263 case MNCC_BRIDGE:
3264 return tch_bridge(net, arg);
3265 case MNCC_FRAME_DROP:
3266 return tch_recv(net, arg, 0);
3267 case MNCC_FRAME_RECV:
3268 return tch_recv(net, arg, 1);
3269 case GSM_TRAU_FRAME:
3270 return tch_frame(net, arg);
3271 }
3272
3273 memset(&rel, 0, sizeof(struct gsm_mncc));
3274 rel.callref = data->callref;
3275
3276 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003277 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003278
3279 /* Callref unknown */
3280 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003281 struct gsm_subscriber *subscr;
3282
Harald Welte4a3464c2009-07-04 10:11:24 +02003283 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003284 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3285 "Received '%s' from MNCC with "
3286 "unknown callref %d\n", data->called.number,
3287 get_mncc_name(msg_type), data->callref);
3288 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003289 return mncc_release_ind(net, NULL, data->callref,
3290 GSM48_CAUSE_LOC_PRN_S_LU,
3291 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003292 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003293 if (!data->called.number[0] && !data->imsi[0]) {
3294 DEBUGP(DCC, "(bts - trx - ts - ti) "
3295 "Received '%s' from MNCC with "
3296 "no number or IMSI\n", get_mncc_name(msg_type));
3297 /* Invalid number */
3298 return mncc_release_ind(net, NULL, data->callref,
3299 GSM48_CAUSE_LOC_PRN_S_LU,
3300 GSM48_CC_CAUSE_INV_NR_FORMAT);
3301 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003302 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003303 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003304 subscr = subscr_get_by_extension(net,
3305 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003306 else
Harald Welte9176bd42009-07-23 18:46:00 +02003307 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003308 /* If subscriber is not found */
3309 if (!subscr) {
3310 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3311 "Received '%s' from MNCC with "
3312 "unknown subscriber %s\n", data->called.number,
3313 get_mncc_name(msg_type), data->called.number);
3314 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003315 return mncc_release_ind(net, NULL, data->callref,
3316 GSM48_CAUSE_LOC_PRN_S_LU,
3317 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003318 }
3319 /* If subscriber is not "attached" */
3320 if (!subscr->lac) {
3321 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3322 "Received '%s' from MNCC with "
3323 "detached subscriber %s\n", data->called.number,
3324 get_mncc_name(msg_type), data->called.number);
3325 subscr_put(subscr);
3326 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003327 return mncc_release_ind(net, NULL, data->callref,
3328 GSM48_CAUSE_LOC_PRN_S_LU,
3329 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003330 }
3331 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003332 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3333 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003334 DEBUGP(DCC, "No memory for trans.\n");
3335 subscr_put(subscr);
3336 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003337 mncc_release_ind(net, NULL, data->callref,
3338 GSM48_CAUSE_LOC_PRN_S_LU,
3339 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003340 return -ENOMEM;
3341 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003342 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003343 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003344 /* If subscriber has no lchan */
3345 if (!lchan) {
3346 /* find transaction with this subscriber already paging */
3347 llist_for_each_entry(transt, &net->trans_list, entry) {
3348 /* Transaction of our lchan? */
3349 if (transt == trans ||
3350 transt->subscr != subscr)
3351 continue;
3352 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3353 "Received '%s' from MNCC with "
3354 "unallocated channel, paging already "
3355 "started.\n", bts->nr,
3356 data->called.number,
3357 get_mncc_name(msg_type));
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003358 subscr_put(subscr);
3359 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003360 return 0;
3361 }
3362 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003363 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003364 /* Trigger paging */
3365 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3366 setup_trig_pag_evt, subscr);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003367 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003368 return 0;
3369 }
3370 /* Assign lchan */
3371 trans->lchan = lchan;
3372 use_lchan(lchan);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003373 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003374 }
3375 lchan = trans->lchan;
3376
3377 /* if paging did not respond yet */
3378 if (!lchan) {
3379 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3380 "Received '%s' from MNCC in paging state\n",
3381 (trans->subscr)?(trans->subscr->extension):"-",
3382 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003383 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3384 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003385 if (msg_type == MNCC_REL_REQ)
3386 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3387 else
3388 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3389 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003390 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003391 return rc;
3392 }
3393
3394 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3395 "Received '%s' from MNCC in state %d (%s)\n",
3396 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3397 trans->transaction_id,
3398 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003399 get_mncc_name(msg_type), trans->cc.state,
3400 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003401
3402 /* Find function for current state and message */
3403 for (i = 0; i < DOWNSLLEN; i++)
3404 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003405 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003406 break;
3407 if (i == DOWNSLLEN) {
3408 DEBUGP(DCC, "Message unhandled at this state.\n");
3409 return 0;
3410 }
3411
3412 rc = downstatelist[i].rout(trans, arg);
3413
3414 return rc;
3415}
3416
3417
3418static struct datastate {
3419 u_int32_t states;
3420 int type;
3421 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3422} datastatelist[] = {
3423 /* mobile originating call establishment */
3424 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3425 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3426 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3427 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3428 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3429 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3430 /* mobile terminating call establishment */
3431 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3432 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3433 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3434 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3435 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF) | SBIT(GSM_CSTATE_CALL_RECEIVED), /* (5.2.2.6) | 5.2.2.6 | 5.2.2.6 */
3436 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3437 /* signalling during call */
3438 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3439 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3440 {SBIT(GSM_CSTATE_ACTIVE),
3441 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3442 {ALL_STATES,
3443 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3444 {ALL_STATES,
3445 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3446 {ALL_STATES,
3447 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3448 {SBIT(GSM_CSTATE_ACTIVE),
3449 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3450 {SBIT(GSM_CSTATE_ACTIVE),
3451 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3452 {SBIT(GSM_CSTATE_ACTIVE),
3453 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3454 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3455 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3456 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3457 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3458 {SBIT(GSM_CSTATE_ACTIVE),
3459 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3460 /* clearing */
3461 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3462 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3463 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3464 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3465 {ALL_STATES, /* 5.4.3.4 */
3466 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3467};
3468
3469#define DATASLLEN \
3470 (sizeof(datastatelist) / sizeof(struct datastate))
3471
Harald Welte4bc90a12008-12-27 16:32:52 +00003472static int gsm0408_rcv_cc(struct msgb *msg)
3473{
3474 struct gsm48_hdr *gh = msgb_l3(msg);
3475 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003476 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003477 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003478 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003479 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003480
Harald Welte4bfdfe72009-06-10 23:11:52 +08003481 if (msg_type & 0x80) {
3482 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3483 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003484 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003485
3486 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003487 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003488
Harald Welte6f5aee02009-07-23 21:21:14 +02003489 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003490 "Received '%s' from MS in state %d (%s)\n",
3491 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3492 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003493 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003494 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003495
3496 /* Create transaction */
3497 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003498 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003499 "creating new trans.\n", transaction_id);
3500 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003501 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3502 transaction_id, new_callref++);
3503 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003504 DEBUGP(DCC, "No memory for trans.\n");
3505 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003506 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003507 GSM48_MT_CC_RELEASE_COMPL);
3508 return -ENOMEM;
3509 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003510 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003511 trans->lchan = lchan;
3512 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003513 }
3514
3515 /* find function for current state and message */
3516 for (i = 0; i < DATASLLEN; i++)
3517 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003518 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003519 break;
3520 if (i == DATASLLEN) {
3521 DEBUGP(DCC, "Message unhandled at this state.\n");
3522 return 0;
3523 }
3524
3525 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003526
3527 return rc;
3528}
3529
Harald Welte52b1f982008-12-23 20:25:15 +00003530/* here we pass in a msgb from the RSL->RLL. We expect the l3 pointer to be set */
Harald Welte (local)daef6062009-08-14 11:41:12 +02003531int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003532{
3533 struct gsm48_hdr *gh = msgb_l3(msg);
3534 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003535 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003536
3537 switch (pdisc) {
3538 case GSM48_PDISC_CC:
3539 rc = gsm0408_rcv_cc(msg);
3540 break;
3541 case GSM48_PDISC_MM:
3542 rc = gsm0408_rcv_mm(msg);
3543 break;
3544 case GSM48_PDISC_RR:
3545 rc = gsm0408_rcv_rr(msg);
3546 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003547 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003548 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003549 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003550 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003551 case GSM48_PDISC_SM_GPRS:
Mike Haben59d284e2009-09-26 19:00:03 +02003552 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003553 pdisc);
3554 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003555 case GSM48_PDISC_NC_SS:
3556 rc = handle_rcv_ussd(msg);
3557 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003558 default:
Mike Haben59d284e2009-09-26 19:00:03 +02003559 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003560 pdisc);
3561 break;
3562 }
3563
3564 return rc;
3565}
Harald Welte8470bf22008-12-25 23:28:35 +00003566
Harald Welte4bfdfe72009-06-10 23:11:52 +08003567/* dequeue messages to layer 4 */
3568int bsc_upqueue(struct gsm_network *net)
3569{
3570 struct gsm_mncc *mncc;
3571 struct msgb *msg;
3572 int work = 0;
3573
3574 if (net)
3575 while ((msg = msgb_dequeue(&net->upqueue))) {
3576 mncc = (struct gsm_mncc *)msg->data;
3577 if (net->mncc_recv)
3578 net->mncc_recv(net, mncc->msg_type, mncc);
3579 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003580 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003581 }
3582
3583 return work;
3584}
Harald Weltedcaf5652009-07-23 18:56:43 +02003585
Harald Welte805f6442009-07-28 18:25:29 +02003586/*
3587 * This will be ran by the linker when loading the DSO. We use it to
3588 * do system initialization, e.g. registration of signal handlers.
3589 */
3590static __attribute__((constructor)) void on_dso_load_0408(void)
3591{
Harald Welte805f6442009-07-28 18:25:29 +02003592 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3593 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3594}