blob: f367239374f2852e92d696f0228e2d78f9c1f788 [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 Weltea2f74b82009-12-16 16:49:21 +0100193 rep->num_cell = ((data[3] >> 6) & 0x3) | ((data[2] & 0x01) << 2);
Harald Welte51cec5f2009-12-19 16:45:29 +0100194 if (rep->num_cell < 1 || rep->num_cell > 6)
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
Harald Weltea2f74b82009-12-16 16:49:21 +0100199 rep->cell[0].rxlev = data[3] & 0x3f;
200 rep->cell[0].arfcn = bitvec_get_nth_set_bit(nbv, data[4] >> 2);
Harald Welte73ddaed2009-12-16 23:29:12 +0100201 rep->cell[0].bsic = ((data[4] & 0x07) << 3) | (data[5] >> 5);
Harald Weltef7c43522009-06-09 20:24:21 +0000202 if (rep->num_cell < 2)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100203 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000204
Harald Weltea2f74b82009-12-16 16:49:21 +0100205 rep->cell[1].rxlev = ((data[5] & 0x1f) << 1) | (data[6] >> 7);
206 rep->cell[1].arfcn = bitvec_get_nth_set_bit(nbv, (data[6] >> 2) & 0x1f);
207 rep->cell[1].bsic = ((data[6] & 0x03) << 4) | (data[7] >> 4);
Harald Weltef7c43522009-06-09 20:24:21 +0000208 if (rep->num_cell < 3)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100209 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000210
Harald Weltea2f74b82009-12-16 16:49:21 +0100211 rep->cell[2].rxlev = ((data[7] & 0x0f) << 2) | (data[8] >> 6);
212 rep->cell[2].arfcn = bitvec_get_nth_set_bit(nbv, (data[8] >> 1) & 0x1f);
213 rep->cell[2].bsic = ((data[8] & 0x01) << 6) | (data[9] >> 3);
Harald Weltef7c43522009-06-09 20:24:21 +0000214 if (rep->num_cell < 4)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100215 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000216
Harald Weltea2f74b82009-12-16 16:49:21 +0100217 rep->cell[3].rxlev = ((data[9] & 0x07) << 3) | (data[10] >> 5);
218 rep->cell[3].arfcn = bitvec_get_nth_set_bit(nbv, data[10] & 0x1f);
219 rep->cell[3].bsic = data[11] >> 2;
Harald Weltef7c43522009-06-09 20:24:21 +0000220 if (rep->num_cell < 5)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100221 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000222
Harald Weltea2f74b82009-12-16 16:49:21 +0100223 rep->cell[4].rxlev = ((data[11] & 0x03) << 4) | (data[12] >> 4);
Harald Weltef1dae192009-12-14 22:24:28 +0100224 rep->cell[4].arfcn = bitvec_get_nth_set_bit(nbv,
Harald Weltea2f74b82009-12-16 16:49:21 +0100225 ((data[12] & 0xf) << 1) | (data[13] >> 7));
226 rep->cell[4].bsic = (data[13] >> 1) & 0x3f;
Harald Weltef7c43522009-06-09 20:24:21 +0000227 if (rep->num_cell < 6)
Harald Welte3c7dc6e2009-11-29 19:07:28 +0100228 return 0;
Harald Weltef7c43522009-06-09 20:24:21 +0000229
Harald Weltea2f74b82009-12-16 16:49:21 +0100230 rep->cell[5].rxlev = ((data[13] & 0x01) << 5) | (data[14] >> 3);
Harald Weltef1dae192009-12-14 22:24:28 +0100231 rep->cell[5].arfcn = bitvec_get_nth_set_bit(nbv,
Harald Weltea2f74b82009-12-16 16:49:21 +0100232 ((data[14] & 0x07) << 2) | (data[15] >> 6));
233 rep->cell[5].bsic = data[15] & 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;
Sylvain Munautea3f6742009-12-18 18:28:10 +01001346 else if (msg->lchan->subscr == subscr)
1347 subscr_put(subscr); /* lchan already has a ref, don't need another one */
1348 else {
Harald Welte9bb7c702009-01-10 03:21:41 +00001349 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1350 subscr_put(subscr);
1351 }
1352
Harald Weltec2e302d2009-07-05 14:08:13 +02001353 subscr->equipment.classmark2_len = classmark2_len;
1354 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1355 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001356
Harald Welte4b634542008-12-27 01:55:51 +00001357 return gsm48_tx_mm_serv_ack(msg->lchan);
1358}
1359
Harald Welte2a139372009-02-22 21:14:55 +00001360static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1361{
Harald Welte9176bd42009-07-23 18:46:00 +02001362 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001363 struct gsm48_hdr *gh = msgb_l3(msg);
1364 struct gsm48_imsi_detach_ind *idi =
1365 (struct gsm48_imsi_detach_ind *) gh->data;
1366 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001367 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001368 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001369
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001370 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001371 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1372 mi_type, mi_string);
1373
1374 switch (mi_type) {
1375 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001376 subscr = subscr_get_by_tmsi(bts->network,
1377 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +00001378 break;
1379 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001380 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001381 break;
1382 case GSM_MI_TYPE_IMEI:
1383 case GSM_MI_TYPE_IMEISV:
1384 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001385 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001386 break;
1387 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001388 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001389 break;
1390 }
1391
Holger Freyther4a49e772009-04-12 05:37:29 +00001392 if (subscr) {
1393 subscr_update(subscr, msg->trx->bts,
1394 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +00001395 DEBUGP(DMM, "Subscriber: %s\n",
1396 subscr->name ? subscr->name : subscr->imsi);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001397
1398 subscr->equipment.classmark1 = idi->classmark1;
1399 db_sync_equipment(&subscr->equipment);
1400
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001401 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001402 } else
Harald Welte2a139372009-02-22 21:14:55 +00001403 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1404
Harald Welteb83d9382009-12-12 21:00:48 +01001405 /* subscriber is detached: should we release lchan? */
1406
Harald Welte2a139372009-02-22 21:14:55 +00001407 return 0;
1408}
1409
Harald Welted2a7f5a2009-06-05 20:08:20 +00001410static int gsm48_rx_mm_status(struct msgb *msg)
1411{
1412 struct gsm48_hdr *gh = msgb_l3(msg);
1413
1414 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1415
1416 return 0;
1417}
1418
Harald Weltebf5e8df2009-02-03 12:59:45 +00001419/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001420static int gsm0408_rcv_mm(struct msgb *msg)
1421{
1422 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001423 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001424
1425 switch (gh->msg_type & 0xbf) {
1426 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001427 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001428 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001429 break;
1430 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001431 rc = mm_rx_id_resp(msg);
1432 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001433 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001434 rc = gsm48_rx_mm_serv_req(msg);
1435 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001436 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001437 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001438 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001439 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001440 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1441 msg->lchan->subscr ?
1442 msg->lchan->subscr->imsi :
1443 "unknown subscriber");
1444 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001445 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001446 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1447 break;
1448 case GSM48_MT_MM_CM_REEST_REQ:
1449 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1450 break;
1451 case GSM48_MT_MM_AUTH_RESP:
1452 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001453 break;
1454 default:
1455 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
1456 gh->msg_type);
1457 break;
1458 }
1459
1460 return rc;
1461}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001462
Harald Welte2d35ae62009-02-06 12:02:13 +00001463/* Receive a PAGING RESPONSE message from the MS */
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001464static int gsm48_rx_rr_pag_resp(struct msgb *msg)
Harald Welte2d35ae62009-02-06 12:02:13 +00001465{
Harald Welte9176bd42009-07-23 18:46:00 +02001466 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001467 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001468 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001469 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001470 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001471 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001472 int rc = 0;
1473
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001474 gsm48_paging_extract_mi(msg, mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001475 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1476 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001477
Harald Weltefe18d8f2009-02-22 21:14:24 +00001478 switch (mi_type) {
1479 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001480 subscr = subscr_get_by_tmsi(bts->network,
1481 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001482 break;
1483 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001484 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001485 break;
1486 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001487
1488 if (!subscr) {
1489 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001490 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001491 return -EINVAL;
1492 }
1493 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001494 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001495
Harald Weltec2e302d2009-07-05 14:08:13 +02001496 subscr->equipment.classmark2_len = *classmark2_lv;
1497 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1498 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001499
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001500 rc = gsm48_handle_paging_resp(msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001501 return rc;
1502}
1503
Harald Weltef7c43522009-06-09 20:24:21 +00001504static int gsm48_rx_rr_classmark(struct msgb *msg)
1505{
1506 struct gsm48_hdr *gh = msgb_l3(msg);
1507 struct gsm_subscriber *subscr = msg->lchan->subscr;
1508 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1509 u_int8_t cm2_len, cm3_len = 0;
1510 u_int8_t *cm2, *cm3 = NULL;
1511
1512 DEBUGP(DRR, "CLASSMARK CHANGE ");
1513
1514 /* classmark 2 */
1515 cm2_len = gh->data[0];
1516 cm2 = &gh->data[1];
1517 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1518
1519 if (payload_len > cm2_len + 1) {
1520 /* we must have a classmark3 */
1521 if (gh->data[cm2_len+1] != 0x20) {
1522 DEBUGPC(DRR, "ERR CM3 TAG\n");
1523 return -EINVAL;
1524 }
1525 if (cm2_len > 3) {
1526 DEBUGPC(DRR, "CM2 too long!\n");
1527 return -EINVAL;
1528 }
1529
1530 cm3_len = gh->data[cm2_len+2];
1531 cm3 = &gh->data[cm2_len+3];
1532 if (cm3_len > 14) {
1533 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1534 return -EINVAL;
1535 }
1536 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1537 }
1538 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001539 subscr->equipment.classmark2_len = cm2_len;
1540 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001541 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001542 subscr->equipment.classmark3_len = cm3_len;
1543 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001544 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001545 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001546 }
1547
Harald Weltef7c43522009-06-09 20:24:21 +00001548 return 0;
1549}
1550
Harald Weltecf5b3592009-05-01 18:28:42 +00001551static int gsm48_rx_rr_status(struct msgb *msg)
1552{
1553 struct gsm48_hdr *gh = msgb_l3(msg);
1554
1555 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1556 rr_cause_name(gh->data[0]));
1557
1558 return 0;
1559}
1560
Harald Weltef7c43522009-06-09 20:24:21 +00001561static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1562{
Harald Welted12b0fd2009-12-15 21:36:05 +01001563 struct gsm_meas_rep *meas_rep = lchan_next_meas_rep(msg->lchan);
Harald Weltef7c43522009-06-09 20:24:21 +00001564
Harald Welte3c7dc6e2009-11-29 19:07:28 +01001565 /* This shouldn't actually end up here, as RSL treats
1566 * L3 Info of 08.58 MEASUREMENT REPORT different by calling
1567 * directly into gsm48_parse_meas_rep */
1568 DEBUGP(DMEAS, "DIRECT GSM48 MEASUREMENT REPORT ?!? ");
Harald Welted12b0fd2009-12-15 21:36:05 +01001569 gsm48_parse_meas_rep(meas_rep, msg);
Harald Weltef7c43522009-06-09 20:24:21 +00001570
1571 return 0;
1572}
1573
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001574static int gsm48_rx_rr_app_info(struct msgb *msg)
1575{
1576 struct gsm48_hdr *gh = msgb_l3(msg);
1577 u_int8_t apdu_id_flags;
1578 u_int8_t apdu_len;
1579 u_int8_t *apdu_data;
1580
1581 apdu_id_flags = gh->data[0];
1582 apdu_len = gh->data[1];
1583 apdu_data = gh->data+2;
1584
1585 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1586 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1587
Harald Welte (local)026531e2009-08-16 10:40:10 +02001588 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001589}
1590
Harald Welted011e8b2009-11-29 22:45:52 +01001591/* Chapter 9.1.16 Handover complete */
Harald Welte1e191c52009-12-14 17:51:15 +01001592static int gsm48_rx_rr_ho_compl(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001593{
1594 struct gsm48_hdr *gh = msgb_l3(msg);
1595
1596 DEBUGP(DRR, "HANDOVER COMPLETE cause = %s\n",
1597 rr_cause_name(gh->data[0]));
1598
1599 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_COMPL, msg->lchan);
1600 /* FIXME: release old channel */
1601
1602 return 0;
1603}
1604
1605/* Chapter 9.1.17 Handover Failure */
Harald Welte1e191c52009-12-14 17:51:15 +01001606static int gsm48_rx_rr_ho_fail(struct msgb *msg)
Harald Welted011e8b2009-11-29 22:45:52 +01001607{
1608 struct gsm48_hdr *gh = msgb_l3(msg);
1609
1610 DEBUGP(DRR, "HANDOVER FAILED cause = %s\n",
1611 rr_cause_name(gh->data[0]));
1612
1613 dispatch_signal(SS_LCHAN, S_LCHAN_HANDOVER_FAIL, msg->lchan);
1614 /* FIXME: release allocated new channel */
1615
1616 return 0;
1617}
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001618
Harald Weltebf5e8df2009-02-03 12:59:45 +00001619/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001620static int gsm0408_rcv_rr(struct msgb *msg)
1621{
1622 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001623 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001624
1625 switch (gh->msg_type) {
1626 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001627 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001628 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001629 case GSM48_MT_RR_GPRS_SUSP_REQ:
1630 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1631 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001632 case GSM48_MT_RR_PAG_RESP:
Holger Hans Peter Freytherca0fcbe2009-10-23 13:48:54 +02001633 rc = gsm48_rx_rr_pag_resp(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001634 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001635 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
Holger Hans Peter Freytherf520e642009-10-22 15:23:11 +02001636 rc = gsm48_rx_rr_modif_ack(msg);
Harald Welte7ccf7782009-02-17 01:43:01 +00001637 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001638 case GSM48_MT_RR_STATUS:
1639 rc = gsm48_rx_rr_status(msg);
1640 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001641 case GSM48_MT_RR_MEAS_REP:
1642 rc = gsm48_rx_rr_meas_rep(msg);
1643 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001644 case GSM48_MT_RR_APP_INFO:
1645 rc = gsm48_rx_rr_app_info(msg);
1646 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001647 case GSM48_MT_RR_CIPH_M_COMPL:
1648 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1649 /* FIXME: check for MI (if any) */
1650 break;
Harald Welteccd5a882009-11-29 20:02:20 +01001651 case GSM48_MT_RR_HANDO_COMPL:
Harald Welted011e8b2009-11-29 22:45:52 +01001652 rc = gsm48_rx_rr_ho_compl(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001653 break;
1654 case GSM48_MT_RR_HANDO_FAIL:
Harald Welted011e8b2009-11-29 22:45:52 +01001655 rc = gsm48_rx_rr_ho_fail(msg);
Harald Welteccd5a882009-11-29 20:02:20 +01001656 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001657 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001658 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001659 gh->msg_type);
1660 break;
1661 }
1662
Harald Welte2d35ae62009-02-06 12:02:13 +00001663 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001664}
1665
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001666int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
Holger Hans Peter Freyther8b77a342009-10-22 15:42:19 +02001667 u_int8_t apdu_len, const u_int8_t *apdu)
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001668{
1669 struct msgb *msg = gsm48_msgb_alloc();
1670 struct gsm48_hdr *gh;
1671
1672 msg->lchan = lchan;
1673
1674 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1675 apdu_id, apdu_len);
1676
1677 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1678 gh->proto_discr = GSM48_PDISC_RR;
1679 gh->msg_type = GSM48_MT_RR_APP_INFO;
1680 gh->data[0] = apdu_id;
1681 gh->data[1] = apdu_len;
1682 memcpy(gh->data+2, apdu, apdu_len);
1683
1684 return gsm48_sendmsg(msg, NULL);
1685}
1686
Harald Welte4bc90a12008-12-27 16:32:52 +00001687/* Call Control */
1688
Harald Welte7584aea2009-02-11 11:44:12 +00001689/* The entire call control code is written in accordance with Figure 7.10c
1690 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1691 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1692 * it for voice */
1693
Harald Welte4bfdfe72009-06-10 23:11:52 +08001694static void new_cc_state(struct gsm_trans *trans, int state)
1695{
1696 if (state > 31 || state < 0)
1697 return;
1698
1699 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001700 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001701
Harald Weltedcaf5652009-07-23 18:56:43 +02001702 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001703}
1704
1705static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001706{
1707 struct msgb *msg = gsm48_msgb_alloc();
1708 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1709 u_int8_t *cause, *call_state;
1710
Harald Welte4bc90a12008-12-27 16:32:52 +00001711 gh->msg_type = GSM48_MT_CC_STATUS;
1712
1713 cause = msgb_put(msg, 3);
1714 cause[0] = 2;
1715 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1716 cause[2] = 0x80 | 30; /* response to status inquiry */
1717
1718 call_state = msgb_put(msg, 1);
1719 call_state[0] = 0xc0 | 0x00;
1720
Harald Welte39e2ead2009-07-23 21:13:03 +02001721 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001722}
1723
Harald Welte6f4b7532008-12-29 00:39:37 +00001724static int gsm48_tx_simple(struct gsm_lchan *lchan,
1725 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001726{
1727 struct msgb *msg = gsm48_msgb_alloc();
1728 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1729
1730 msg->lchan = lchan;
1731
Harald Welte6f4b7532008-12-29 00:39:37 +00001732 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001733 gh->msg_type = msg_type;
1734
Harald Welte39e2ead2009-07-23 21:13:03 +02001735 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001736}
1737
Harald Welte4bfdfe72009-06-10 23:11:52 +08001738static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1739{
Harald Weltedcaf5652009-07-23 18:56:43 +02001740 if (bsc_timer_pending(&trans->cc.timer)) {
1741 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1742 bsc_del_timer(&trans->cc.timer);
1743 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001744 }
1745}
1746
1747static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1748 int msg_type, struct gsm_mncc *mncc)
1749{
1750 struct msgb *msg;
1751
1752 if (trans)
1753 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001754 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001755 "Sending '%s' to MNCC.\n",
1756 trans->lchan->ts->trx->bts->nr,
1757 trans->lchan->ts->trx->nr,
1758 trans->lchan->ts->nr, trans->transaction_id,
1759 (trans->subscr)?(trans->subscr->extension):"-",
1760 get_mncc_name(msg_type));
1761 else
1762 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1763 "Sending '%s' to MNCC.\n",
1764 (trans->subscr)?(trans->subscr->extension):"-",
1765 get_mncc_name(msg_type));
1766 else
1767 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1768 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1769
1770 mncc->msg_type = msg_type;
1771
Harald Welte966636f2009-06-26 19:39:35 +02001772 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001773 if (!msg)
1774 return -ENOMEM;
1775 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1776 msgb_enqueue(&net->upqueue, msg);
1777
1778 return 0;
1779}
1780
1781int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1782 u_int32_t callref, int location, int value)
1783{
1784 struct gsm_mncc rel;
1785
Harald Welte92f70c52009-06-12 01:54:08 +08001786 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001787 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001788 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001789 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1790}
1791
Harald Weltedcaf5652009-07-23 18:56:43 +02001792/* Call Control Specific transaction release.
1793 * gets called by trans_free, DO NOT CALL YOURSELF! */
1794void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001795{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001796 gsm48_stop_cc_timer(trans);
1797
1798 /* send release to L4, if callref still exists */
1799 if (trans->callref) {
1800 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001801 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001802 GSM48_CAUSE_LOC_PRN_S_LU,
1803 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001804 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001805 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001806 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001807 if (trans->lchan)
1808 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001809}
1810
1811static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1812
Harald Welte09e38af2009-02-16 22:52:23 +00001813/* call-back from paging the B-end of the connection */
1814static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001815 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001816{
Harald Welte7ccf7782009-02-17 01:43:01 +00001817 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001818 struct gsm_subscriber *subscr = param;
1819 struct gsm_trans *transt, *tmp;
1820 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001821
Harald Welte09e38af2009-02-16 22:52:23 +00001822 if (hooknum != GSM_HOOK_RR_PAGING)
1823 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001824
1825 if (!subscr)
1826 return -EINVAL;
1827 net = subscr->net;
1828 if (!net) {
1829 DEBUGP(DCC, "Error Network not set!\n");
1830 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001831 }
Harald Welte7584aea2009-02-11 11:44:12 +00001832
Harald Welte4bfdfe72009-06-10 23:11:52 +08001833 /* check all tranactions (without lchan) for subscriber */
1834 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1835 if (transt->subscr != subscr || transt->lchan)
1836 continue;
1837 switch (event) {
1838 case GSM_PAGING_SUCCEEDED:
1839 if (!lchan) // paranoid
1840 break;
1841 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1842 subscr->extension);
1843 /* Assign lchan */
1844 if (!transt->lchan) {
1845 transt->lchan = lchan;
1846 use_lchan(lchan);
1847 }
1848 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001849 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001850 break;
1851 case GSM_PAGING_EXPIRED:
1852 DEBUGP(DCC, "Paging subscr %s expired!\n",
1853 subscr->extension);
1854 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001855 mncc_release_ind(transt->subscr->net, transt,
1856 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001857 GSM48_CAUSE_LOC_PRN_S_LU,
1858 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001859 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001860 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001861 break;
1862 }
1863 }
Harald Welte09e38af2009-02-16 22:52:23 +00001864 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001865}
Harald Welte7584aea2009-02-11 11:44:12 +00001866
Harald Welteda7ab742009-12-19 22:23:05 +01001867static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable);
1868
Harald Welte805f6442009-07-28 18:25:29 +02001869/* some other part of the code sends us a signal */
1870static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1871 void *handler_data, void *signal_data)
1872{
1873 struct gsm_lchan *lchan = signal_data;
Harald Welte805f6442009-07-28 18:25:29 +02001874 int rc;
Harald Welteda7ab742009-12-19 22:23:05 +01001875 struct gsm_network *net;
1876 struct gsm_trans *trans;
Harald Welte805f6442009-07-28 18:25:29 +02001877
1878 if (subsys != SS_ABISIP)
1879 return 0;
1880
1881 /* in case we use direct BTS-to-BTS RTP */
1882 if (ipacc_rtp_direct)
1883 return 0;
1884
Harald Welte805f6442009-07-28 18:25:29 +02001885 switch (signal) {
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001886 case S_ABISIP_CRCX_ACK:
Harald Welte805f6442009-07-28 18:25:29 +02001887 /* the BTS has successfully bound a TCH to a local ip/port,
1888 * which means we can connect our UDP socket to it */
Harald Welte2c828992009-12-02 01:56:49 +05301889 if (lchan->abis_ip.rtp_socket) {
1890 rtp_socket_free(lchan->abis_ip.rtp_socket);
1891 lchan->abis_ip.rtp_socket = NULL;
Harald Welte805f6442009-07-28 18:25:29 +02001892 }
1893
Harald Welte2c828992009-12-02 01:56:49 +05301894 lchan->abis_ip.rtp_socket = rtp_socket_create();
1895 if (!lchan->abis_ip.rtp_socket)
Harald Welte805f6442009-07-28 18:25:29 +02001896 goto out_err;
1897
Harald Welte2c828992009-12-02 01:56:49 +05301898 rc = rtp_socket_connect(lchan->abis_ip.rtp_socket,
1899 lchan->abis_ip.bound_ip,
1900 lchan->abis_ip.bound_port);
Harald Welte805f6442009-07-28 18:25:29 +02001901 if (rc < 0)
1902 goto out_err;
Harald Welteda7ab742009-12-19 22:23:05 +01001903 /* check if any transactions on this lchan still have
1904 * a tch_recv_mncc request pending */
1905 net = lchan->ts->trx->bts->network;
1906 llist_for_each_entry(trans, &net->trans_list, entry) {
1907 if (trans->lchan == lchan && trans->tch_recv) {
1908 DEBUGP(DCC, "pending tch_recv_mncc request\n");
1909 tch_recv_mncc(net, trans->callref, 1);
1910 }
1911 }
Harald Welte805f6442009-07-28 18:25:29 +02001912 break;
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001913 case S_ABISIP_DLCX_IND:
Harald Welte805f6442009-07-28 18:25:29 +02001914 /* the BTS tells us a RTP stream has been disconnected */
Harald Welte2c828992009-12-02 01:56:49 +05301915 if (lchan->abis_ip.rtp_socket) {
1916 rtp_socket_free(lchan->abis_ip.rtp_socket);
1917 lchan->abis_ip.rtp_socket = NULL;
Harald Welte805f6442009-07-28 18:25:29 +02001918 }
1919 break;
1920 }
1921
1922 return 0;
1923out_err:
1924 /* FIXME: do something */
1925 return 0;
1926}
1927
1928/* bind rtp proxy to local IP/port and tell BTS to connect to it */
1929static int ipacc_connect_proxy_bind(struct gsm_lchan *lchan)
1930{
Harald Welte2c828992009-12-02 01:56:49 +05301931 struct rtp_socket *rs = lchan->abis_ip.rtp_socket;
Harald Welte805f6442009-07-28 18:25:29 +02001932 int rc;
1933
Holger Hans Peter Freyther231163d2009-11-18 21:06:12 +01001934 rc = rsl_ipacc_mdcx(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
Harald Welte805f6442009-07-28 18:25:29 +02001935 ntohs(rs->rtp.sin_local.sin_port),
Harald Welte805f6442009-07-28 18:25:29 +02001936 /* FIXME: use RTP payload of bound socket, not BTS*/
Harald Welte2c828992009-12-02 01:56:49 +05301937 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001938
1939 return rc;
1940}
1941
Harald Welte49f48b82009-02-17 15:29:33 +00001942/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001943static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001944{
Harald Welte11fa29c2009-02-19 17:24:39 +00001945 struct gsm_bts *bts = lchan->ts->trx->bts;
1946 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte805f6442009-07-28 18:25:29 +02001947 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001948
Harald Welte11fa29c2009-02-19 17:24:39 +00001949 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1950 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1951 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1952
1953 if (bts->type != remote_bts->type) {
1954 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1955 return -EINVAL;
1956 }
Harald Welteda7ab742009-12-19 22:23:05 +01001957
1958 // todo: map between different bts types
Harald Welte11fa29c2009-02-19 17:24:39 +00001959 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001960 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001961 if (!ipacc_rtp_direct) {
1962 /* connect the TCH's to our RTP proxy */
1963 rc = ipacc_connect_proxy_bind(lchan);
1964 if (rc < 0)
1965 return rc;
1966 rc = ipacc_connect_proxy_bind(remote_lchan);
Harald Welteda7ab742009-12-19 22:23:05 +01001967#warning do we need a check of rc here?
Harald Welte805f6442009-07-28 18:25:29 +02001968
1969 /* connect them with each other */
Harald Welte2c828992009-12-02 01:56:49 +05301970 rtp_socket_proxy(lchan->abis_ip.rtp_socket,
1971 remote_lchan->abis_ip.rtp_socket);
Harald Welte805f6442009-07-28 18:25:29 +02001972 } else {
1973 /* directly connect TCH RTP streams to each other */
Harald Welte2c828992009-12-02 01:56:49 +05301974 rc = rsl_ipacc_mdcx(lchan, remote_lchan->abis_ip.bound_ip,
1975 remote_lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301976 remote_lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001977 if (rc < 0)
1978 return rc;
Harald Welte2c828992009-12-02 01:56:49 +05301979 rc = rsl_ipacc_mdcx(remote_lchan, lchan->abis_ip.bound_ip,
1980 lchan->abis_ip.bound_port,
Harald Welte2c828992009-12-02 01:56:49 +05301981 lchan->abis_ip.rtp_payload2);
Harald Welte805f6442009-07-28 18:25:29 +02001982 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001983 break;
1984 case GSM_BTS_TYPE_BS11:
1985 trau_mux_map_lchan(lchan, remote_lchan);
1986 break;
1987 default:
1988 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welteda7ab742009-12-19 22:23:05 +01001989 return -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001990 }
Harald Welte49f48b82009-02-17 15:29:33 +00001991
1992 return 0;
1993}
1994
Harald Welte4bfdfe72009-06-10 23:11:52 +08001995/* bridge channels of two transactions */
1996static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001997{
Harald Weltedcaf5652009-07-23 18:56:43 +02001998 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1999 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00002000
Harald Welte4bfdfe72009-06-10 23:11:52 +08002001 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00002002 return -EIO;
2003
Harald Welte4bfdfe72009-06-10 23:11:52 +08002004 if (!trans1->lchan || !trans2->lchan)
2005 return -EIO;
2006
2007 /* through-connect channel */
2008 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00002009}
2010
Harald Welteda7ab742009-12-19 22:23:05 +01002011/* enable receive of channels to MNCC upqueue */
2012static int tch_recv_mncc(struct gsm_network *net, u_int32_t callref, int enable)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013{
2014 struct gsm_trans *trans;
Harald Welteda7ab742009-12-19 22:23:05 +01002015 struct gsm_lchan *lchan;
2016 struct gsm_bts *bts;
2017 int rc;
Harald Welte7ccf7782009-02-17 01:43:01 +00002018
Harald Welte4bfdfe72009-06-10 23:11:52 +08002019 /* Find callref */
Harald Welteda7ab742009-12-19 22:23:05 +01002020 trans = trans_find_by_callref(net, callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002021 if (!trans)
2022 return -EIO;
2023 if (!trans->lchan)
2024 return 0;
Harald Welteda7ab742009-12-19 22:23:05 +01002025 lchan = trans->lchan;
2026 bts = lchan->ts->trx->bts;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002027
Harald Welteda7ab742009-12-19 22:23:05 +01002028 switch (bts->type) {
2029 case GSM_BTS_TYPE_NANOBTS:
2030 if (ipacc_rtp_direct) {
2031 DEBUGP(DCC, "Error: RTP proxy is disabled\n");
2032 return -EINVAL;
2033 }
2034 /* in case, we don't have a RTP socket yet, we note this
2035 * in the transaction and try later */
2036 if (!lchan->abis_ip.rtp_socket) {
2037 trans->tch_recv = enable;
2038 DEBUGP(DCC, "queue tch_recv_mncc request (%d)\n", enable);
2039 return 0;
2040 }
2041 if (enable) {
2042 /* connect the TCH's to our RTP proxy */
2043 rc = ipacc_connect_proxy_bind(lchan);
2044 if (rc < 0)
2045 return rc;
2046 /* assign socket to application interface */
2047 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
2048 net, callref);
2049 } else
2050 rtp_socket_upstream(lchan->abis_ip.rtp_socket,
2051 net, 0);
2052 break;
2053 case GSM_BTS_TYPE_BS11:
2054 if (enable)
2055 return trau_recv_lchan(lchan, callref);
2056 return trau_mux_unmap(NULL, callref);
2057 break;
2058 default:
2059 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
2060 return -EINVAL;
2061 }
2062
2063 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002064}
2065
Harald Welte4bfdfe72009-06-10 23:11:52 +08002066static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
2067{
2068 DEBUGP(DCC, "-> STATUS ENQ\n");
2069 return gsm48_cc_tx_status(trans, msg);
2070}
2071
2072static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
2073static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
2074
2075static void gsm48_cc_timeout(void *arg)
2076{
2077 struct gsm_trans *trans = arg;
2078 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08002079 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
2080 int mo_location = GSM48_CAUSE_LOC_USER;
2081 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
2082 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002083 struct gsm_mncc mo_rel, l4_rel;
2084
2085 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
2086 mo_rel.callref = trans->callref;
2087 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2088 l4_rel.callref = trans->callref;
2089
Harald Weltedcaf5652009-07-23 18:56:43 +02002090 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002091 case 0x303:
2092 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002093 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002094 break;
2095 case 0x310:
2096 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002097 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002098 break;
2099 case 0x313:
2100 disconnect = 1;
2101 /* unknown, did not find it in the specs */
2102 break;
2103 case 0x301:
2104 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002105 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002106 break;
2107 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002108 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002109 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002110 gsm48_cc_tx_release(trans, &trans->cc.msg);
2111 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002112 break; /* stay in release state */
2113 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002114 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002115 return;
2116// release = 1;
2117// l4_cause = 14;
2118// break;
2119 case 0x306:
2120 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002121 mo_cause = trans->cc.msg.cause.value;
2122 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002123 break;
2124 case 0x323:
2125 disconnect = 1;
2126 break;
2127 default:
2128 release = 1;
2129 }
2130
2131 if (release && trans->callref) {
2132 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002133 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002134 l4_location, l4_cause);
2135 trans->callref = 0;
2136 }
2137
2138 if (disconnect && trans->callref) {
2139 /* process disconnect towards layer 4 */
2140 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002141 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002142 }
2143
2144 /* process disconnect towards mobile station */
2145 if (disconnect || release) {
2146 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002147 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2148 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2149 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002150 mo_rel.cause.diag_len = 3;
2151
2152 if (disconnect)
2153 gsm48_cc_tx_disconnect(trans, &mo_rel);
2154 if (release)
2155 gsm48_cc_tx_release(trans, &mo_rel);
2156 }
2157
2158}
2159
2160static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2161 int sec, int micro)
2162{
2163 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002164 trans->cc.timer.cb = gsm48_cc_timeout;
2165 trans->cc.timer.data = trans;
2166 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2167 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002168}
2169
2170static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2171{
2172 struct gsm48_hdr *gh = msgb_l3(msg);
2173 u_int8_t msg_type = gh->msg_type & 0xbf;
2174 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2175 struct tlv_parsed tp;
2176 struct gsm_mncc setup;
2177
2178 memset(&setup, 0, sizeof(struct gsm_mncc));
2179 setup.callref = trans->callref;
2180 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2181 /* emergency setup is identified by msg_type */
2182 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2183 setup.emergency = 1;
2184
2185 /* use subscriber as calling party number */
2186 if (trans->subscr) {
2187 setup.fields |= MNCC_F_CALLING;
2188 strncpy(setup.calling.number, trans->subscr->extension,
2189 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002190 strncpy(setup.imsi, trans->subscr->imsi,
2191 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002192 }
2193 /* bearer capability */
2194 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2195 setup.fields |= MNCC_F_BEARER_CAP;
2196 decode_bearer_cap(&setup.bearer_cap,
2197 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2198 }
2199 /* facility */
2200 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2201 setup.fields |= MNCC_F_FACILITY;
2202 decode_facility(&setup.facility,
2203 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2204 }
2205 /* called party bcd number */
2206 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2207 setup.fields |= MNCC_F_CALLED;
2208 decode_called(&setup.called,
2209 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2210 }
2211 /* user-user */
2212 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2213 setup.fields |= MNCC_F_USERUSER;
2214 decode_useruser(&setup.useruser,
2215 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2216 }
2217 /* ss-version */
2218 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2219 setup.fields |= MNCC_F_SSVERSION;
2220 decode_ssversion(&setup.ssversion,
2221 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2222 }
2223 /* CLIR suppression */
2224 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2225 setup.clir.sup = 1;
2226 /* CLIR invocation */
2227 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2228 setup.clir.inv = 1;
2229 /* cc cap */
2230 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2231 setup.fields |= MNCC_F_CCCAP;
2232 decode_cccap(&setup.cccap,
2233 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2234 }
2235
Harald Welte4bfdfe72009-06-10 23:11:52 +08002236 new_cc_state(trans, GSM_CSTATE_INITIATED);
2237
2238 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002239 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002240
Harald Welte13cac662009-07-29 12:10:35 +02002241 /* MNCC code will modify the channel asynchronously, we should
2242 * ipaccess-bind only after the modification has been made to the
2243 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002244 return 0;
2245}
2246
2247static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002248{
2249 struct msgb *msg = gsm48_msgb_alloc();
2250 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002251 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002252 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002253
Harald Welte7ccf7782009-02-17 01:43:01 +00002254 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002255
Harald Welte4bfdfe72009-06-10 23:11:52 +08002256 /* transaction id must not be assigned */
2257 if (trans->transaction_id != 0xff) { /* unasssigned */
2258 DEBUGP(DCC, "TX Setup with assigned transaction. "
2259 "This is not allowed!\n");
2260 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002261 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002262 GSM48_CAUSE_LOC_PRN_S_LU,
2263 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002264 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002265 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002266 return rc;
2267 }
2268
2269 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002270 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2271 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002272 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002273 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002274 GSM48_CAUSE_LOC_PRN_S_LU,
2275 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002276 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002277 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002278 return rc;
2279 }
Harald Welte78283ef2009-07-23 21:36:44 +02002280 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002281
Harald Welte65e74cc2008-12-29 01:55:35 +00002282 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002283
Harald Welte4bfdfe72009-06-10 23:11:52 +08002284 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002285
Harald Welte4bfdfe72009-06-10 23:11:52 +08002286 /* bearer capability */
2287 if (setup->fields & MNCC_F_BEARER_CAP)
2288 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2289 /* facility */
2290 if (setup->fields & MNCC_F_FACILITY)
2291 encode_facility(msg, 0, &setup->facility);
2292 /* progress */
2293 if (setup->fields & MNCC_F_PROGRESS)
2294 encode_progress(msg, 0, &setup->progress);
2295 /* calling party BCD number */
2296 if (setup->fields & MNCC_F_CALLING)
2297 encode_calling(msg, &setup->calling);
2298 /* called party BCD number */
2299 if (setup->fields & MNCC_F_CALLED)
2300 encode_called(msg, &setup->called);
2301 /* user-user */
2302 if (setup->fields & MNCC_F_USERUSER)
2303 encode_useruser(msg, 0, &setup->useruser);
2304 /* redirecting party BCD number */
2305 if (setup->fields & MNCC_F_REDIRECTING)
2306 encode_redirecting(msg, &setup->redirecting);
2307 /* signal */
2308 if (setup->fields & MNCC_F_SIGNAL)
2309 encode_signal(msg, setup->signal);
2310
2311 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002312
Harald Welte39e2ead2009-07-23 21:13:03 +02002313 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002314}
2315
Harald Welte4bfdfe72009-06-10 23:11:52 +08002316static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2317{
2318 struct gsm48_hdr *gh = msgb_l3(msg);
2319 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2320 struct tlv_parsed tp;
2321 struct gsm_mncc call_conf;
2322
2323 gsm48_stop_cc_timer(trans);
2324 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2325
2326 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2327 call_conf.callref = trans->callref;
2328 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2329#if 0
2330 /* repeat */
2331 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2332 call_conf.repeat = 1;
2333 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2334 call_conf.repeat = 2;
2335#endif
2336 /* bearer capability */
2337 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2338 call_conf.fields |= MNCC_F_BEARER_CAP;
2339 decode_bearer_cap(&call_conf.bearer_cap,
2340 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2341 }
2342 /* cause */
2343 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2344 call_conf.fields |= MNCC_F_CAUSE;
2345 decode_cause(&call_conf.cause,
2346 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2347 }
2348 /* cc cap */
2349 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2350 call_conf.fields |= MNCC_F_CCCAP;
2351 decode_cccap(&call_conf.cccap,
2352 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2353 }
2354
2355 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2356
Harald Welte596fed42009-07-23 19:06:52 +02002357 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2358 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002359}
2360
2361static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2362{
2363 struct gsm_mncc *proceeding = arg;
2364 struct msgb *msg = gsm48_msgb_alloc();
2365 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2366
Harald Welte4bfdfe72009-06-10 23:11:52 +08002367 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2368
2369 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2370
2371 /* bearer capability */
2372 if (proceeding->fields & MNCC_F_BEARER_CAP)
2373 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2374 /* facility */
2375 if (proceeding->fields & MNCC_F_FACILITY)
2376 encode_facility(msg, 0, &proceeding->facility);
2377 /* progress */
2378 if (proceeding->fields & MNCC_F_PROGRESS)
2379 encode_progress(msg, 0, &proceeding->progress);
2380
Harald Welte39e2ead2009-07-23 21:13:03 +02002381 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002382}
2383
2384static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2385{
2386 struct gsm48_hdr *gh = msgb_l3(msg);
2387 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2388 struct tlv_parsed tp;
2389 struct gsm_mncc alerting;
2390
2391 gsm48_stop_cc_timer(trans);
2392 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2393
2394 memset(&alerting, 0, sizeof(struct gsm_mncc));
2395 alerting.callref = trans->callref;
2396 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2397 /* facility */
2398 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2399 alerting.fields |= MNCC_F_FACILITY;
2400 decode_facility(&alerting.facility,
2401 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2402 }
2403
2404 /* progress */
2405 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2406 alerting.fields |= MNCC_F_PROGRESS;
2407 decode_progress(&alerting.progress,
2408 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2409 }
2410 /* ss-version */
2411 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2412 alerting.fields |= MNCC_F_SSVERSION;
2413 decode_ssversion(&alerting.ssversion,
2414 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2415 }
2416
2417 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2418
Harald Welte596fed42009-07-23 19:06:52 +02002419 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2420 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002421}
2422
2423static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2424{
2425 struct gsm_mncc *alerting = arg;
2426 struct msgb *msg = gsm48_msgb_alloc();
2427 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2428
Harald Welte4bfdfe72009-06-10 23:11:52 +08002429 gh->msg_type = GSM48_MT_CC_ALERTING;
2430
2431 /* facility */
2432 if (alerting->fields & MNCC_F_FACILITY)
2433 encode_facility(msg, 0, &alerting->facility);
2434 /* progress */
2435 if (alerting->fields & MNCC_F_PROGRESS)
2436 encode_progress(msg, 0, &alerting->progress);
2437 /* user-user */
2438 if (alerting->fields & MNCC_F_USERUSER)
2439 encode_useruser(msg, 0, &alerting->useruser);
2440
2441 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2442
Harald Welte39e2ead2009-07-23 21:13:03 +02002443 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002444}
2445
2446static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2447{
2448 struct gsm_mncc *progress = arg;
2449 struct msgb *msg = gsm48_msgb_alloc();
2450 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2451
Harald Welte4bfdfe72009-06-10 23:11:52 +08002452 gh->msg_type = GSM48_MT_CC_PROGRESS;
2453
2454 /* progress */
2455 encode_progress(msg, 1, &progress->progress);
2456 /* user-user */
2457 if (progress->fields & MNCC_F_USERUSER)
2458 encode_useruser(msg, 0, &progress->useruser);
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_tx_connect(struct gsm_trans *trans, void *arg)
2464{
2465 struct gsm_mncc *connect = arg;
2466 struct msgb *msg = gsm48_msgb_alloc();
2467 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2468
Harald Welte4bfdfe72009-06-10 23:11:52 +08002469 gh->msg_type = GSM48_MT_CC_CONNECT;
2470
2471 gsm48_stop_cc_timer(trans);
2472 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2473
2474 /* facility */
2475 if (connect->fields & MNCC_F_FACILITY)
2476 encode_facility(msg, 0, &connect->facility);
2477 /* progress */
2478 if (connect->fields & MNCC_F_PROGRESS)
2479 encode_progress(msg, 0, &connect->progress);
2480 /* connected number */
2481 if (connect->fields & MNCC_F_CONNECTED)
2482 encode_connected(msg, &connect->connected);
2483 /* user-user */
2484 if (connect->fields & MNCC_F_USERUSER)
2485 encode_useruser(msg, 0, &connect->useruser);
2486
2487 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2488
Harald Welte39e2ead2009-07-23 21:13:03 +02002489 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002490}
2491
2492static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2493{
2494 struct gsm48_hdr *gh = msgb_l3(msg);
2495 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2496 struct tlv_parsed tp;
2497 struct gsm_mncc connect;
2498
2499 gsm48_stop_cc_timer(trans);
2500
2501 memset(&connect, 0, sizeof(struct gsm_mncc));
2502 connect.callref = trans->callref;
2503 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2504 /* use subscriber as connected party number */
2505 if (trans->subscr) {
2506 connect.fields |= MNCC_F_CONNECTED;
2507 strncpy(connect.connected.number, trans->subscr->extension,
2508 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002509 strncpy(connect.imsi, trans->subscr->imsi,
2510 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002511 }
2512 /* facility */
2513 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2514 connect.fields |= MNCC_F_FACILITY;
2515 decode_facility(&connect.facility,
2516 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2517 }
2518 /* user-user */
2519 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2520 connect.fields |= MNCC_F_USERUSER;
2521 decode_useruser(&connect.useruser,
2522 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2523 }
2524 /* ss-version */
2525 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2526 connect.fields |= MNCC_F_SSVERSION;
2527 decode_ssversion(&connect.ssversion,
2528 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2529 }
2530
2531 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2532
Harald Welte596fed42009-07-23 19:06:52 +02002533 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002534}
2535
2536
2537static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2538{
2539 struct gsm_mncc connect_ack;
2540
2541 gsm48_stop_cc_timer(trans);
2542
2543 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2544
2545 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2546 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002547 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002548 &connect_ack);
2549}
2550
2551static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2552{
2553 struct msgb *msg = gsm48_msgb_alloc();
2554 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2555
Harald Welte4bfdfe72009-06-10 23:11:52 +08002556 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2557
2558 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2559
Harald Welte39e2ead2009-07-23 21:13:03 +02002560 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002561}
2562
2563static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2564{
2565 struct gsm48_hdr *gh = msgb_l3(msg);
2566 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2567 struct tlv_parsed tp;
2568 struct gsm_mncc disc;
2569
2570 gsm48_stop_cc_timer(trans);
2571
2572 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2573
2574 memset(&disc, 0, sizeof(struct gsm_mncc));
2575 disc.callref = trans->callref;
2576 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2577 /* cause */
2578 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2579 disc.fields |= MNCC_F_CAUSE;
2580 decode_cause(&disc.cause,
2581 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2582 }
2583 /* facility */
2584 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2585 disc.fields |= MNCC_F_FACILITY;
2586 decode_facility(&disc.facility,
2587 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2588 }
2589 /* user-user */
2590 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2591 disc.fields |= MNCC_F_USERUSER;
2592 decode_useruser(&disc.useruser,
2593 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2594 }
2595 /* ss-version */
2596 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2597 disc.fields |= MNCC_F_SSVERSION;
2598 decode_ssversion(&disc.ssversion,
2599 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2600 }
2601
Harald Welte596fed42009-07-23 19:06:52 +02002602 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002603
2604}
2605
Harald Weltec66b71c2009-06-11 14:23:20 +08002606static struct gsm_mncc_cause default_cause = {
2607 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2608 .coding = 0,
2609 .rec = 0,
2610 .rec_val = 0,
2611 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2612 .diag_len = 0,
2613 .diag = { 0 },
2614};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002615
2616static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2617{
2618 struct gsm_mncc *disc = arg;
2619 struct msgb *msg = gsm48_msgb_alloc();
2620 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2621
Harald Welte4bfdfe72009-06-10 23:11:52 +08002622 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2623
2624 gsm48_stop_cc_timer(trans);
2625 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2626
2627 /* cause */
2628 if (disc->fields & MNCC_F_CAUSE)
2629 encode_cause(msg, 1, &disc->cause);
2630 else
2631 encode_cause(msg, 1, &default_cause);
2632
2633 /* facility */
2634 if (disc->fields & MNCC_F_FACILITY)
2635 encode_facility(msg, 0, &disc->facility);
2636 /* progress */
2637 if (disc->fields & MNCC_F_PROGRESS)
2638 encode_progress(msg, 0, &disc->progress);
2639 /* user-user */
2640 if (disc->fields & MNCC_F_USERUSER)
2641 encode_useruser(msg, 0, &disc->useruser);
2642
2643 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002644 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002645
2646 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2647
Harald Welte39e2ead2009-07-23 21:13:03 +02002648 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002649}
2650
2651static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2652{
2653 struct gsm48_hdr *gh = msgb_l3(msg);
2654 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2655 struct tlv_parsed tp;
2656 struct gsm_mncc rel;
2657 int rc;
2658
2659 gsm48_stop_cc_timer(trans);
2660
2661 memset(&rel, 0, sizeof(struct gsm_mncc));
2662 rel.callref = trans->callref;
2663 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2664 /* cause */
2665 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2666 rel.fields |= MNCC_F_CAUSE;
2667 decode_cause(&rel.cause,
2668 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2669 }
2670 /* facility */
2671 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2672 rel.fields |= MNCC_F_FACILITY;
2673 decode_facility(&rel.facility,
2674 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2675 }
2676 /* user-user */
2677 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2678 rel.fields |= MNCC_F_USERUSER;
2679 decode_useruser(&rel.useruser,
2680 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2681 }
2682 /* ss-version */
2683 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2684 rel.fields |= MNCC_F_SSVERSION;
2685 decode_ssversion(&rel.ssversion,
2686 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2687 }
2688
Harald Weltedcaf5652009-07-23 18:56:43 +02002689 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002690 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002691 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002692 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002693 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002694 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002695 GSM48_MT_CC_RELEASE_COMPL);
2696 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002697 }
2698
2699 new_cc_state(trans, GSM_CSTATE_NULL);
2700
2701 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002702 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002703
2704 return rc;
2705}
2706
2707static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2708{
2709 struct gsm_mncc *rel = arg;
2710 struct msgb *msg = gsm48_msgb_alloc();
2711 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2712
Harald Welte4bfdfe72009-06-10 23:11:52 +08002713 gh->msg_type = GSM48_MT_CC_RELEASE;
2714
2715 trans->callref = 0;
2716
2717 gsm48_stop_cc_timer(trans);
2718 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2719
2720 /* cause */
2721 if (rel->fields & MNCC_F_CAUSE)
2722 encode_cause(msg, 0, &rel->cause);
2723 /* facility */
2724 if (rel->fields & MNCC_F_FACILITY)
2725 encode_facility(msg, 0, &rel->facility);
2726 /* user-user */
2727 if (rel->fields & MNCC_F_USERUSER)
2728 encode_useruser(msg, 0, &rel->useruser);
2729
Harald Weltedcaf5652009-07-23 18:56:43 +02002730 trans->cc.T308_second = 0;
2731 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002732
Harald Weltedcaf5652009-07-23 18:56:43 +02002733 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002734 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2735
Harald Welte39e2ead2009-07-23 21:13:03 +02002736 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002737}
2738
2739static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2740{
2741 struct gsm48_hdr *gh = msgb_l3(msg);
2742 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2743 struct tlv_parsed tp;
2744 struct gsm_mncc rel;
2745 int rc = 0;
2746
2747 gsm48_stop_cc_timer(trans);
2748
2749 memset(&rel, 0, sizeof(struct gsm_mncc));
2750 rel.callref = trans->callref;
2751 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2752 /* cause */
2753 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2754 rel.fields |= MNCC_F_CAUSE;
2755 decode_cause(&rel.cause,
2756 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2757 }
2758 /* facility */
2759 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2760 rel.fields |= MNCC_F_FACILITY;
2761 decode_facility(&rel.facility,
2762 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2763 }
2764 /* user-user */
2765 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2766 rel.fields |= MNCC_F_USERUSER;
2767 decode_useruser(&rel.useruser,
2768 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2769 }
2770 /* ss-version */
2771 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2772 rel.fields |= MNCC_F_SSVERSION;
2773 decode_ssversion(&rel.ssversion,
2774 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2775 }
2776
2777 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002778 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002779 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002780 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002781 MNCC_REJ_IND, &rel);
2782 break;
2783 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002784 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002785 MNCC_REL_CNF, &rel);
Harald Welteb83d9382009-12-12 21:00:48 +01002786 /* FIXME: in case of multiple calls, we can't simply
2787 * hang up here ! */
2788 lchan_auto_release(msg->lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002789 break;
2790 default:
Harald Welte596fed42009-07-23 19:06:52 +02002791 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002792 MNCC_REL_IND, &rel);
2793 }
2794 }
2795
2796 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002797 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002798
2799 return rc;
2800}
2801
2802static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2803{
2804 struct gsm_mncc *rel = arg;
2805 struct msgb *msg = gsm48_msgb_alloc();
2806 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2807
Harald Welte4bfdfe72009-06-10 23:11:52 +08002808 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2809
2810 trans->callref = 0;
2811
2812 gsm48_stop_cc_timer(trans);
2813
2814 /* cause */
2815 if (rel->fields & MNCC_F_CAUSE)
2816 encode_cause(msg, 0, &rel->cause);
2817 /* facility */
2818 if (rel->fields & MNCC_F_FACILITY)
2819 encode_facility(msg, 0, &rel->facility);
2820 /* user-user */
2821 if (rel->fields & MNCC_F_USERUSER)
2822 encode_useruser(msg, 0, &rel->useruser);
2823
Harald Weltedcaf5652009-07-23 18:56:43 +02002824 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002825
Harald Welte39e2ead2009-07-23 21:13:03 +02002826 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002827}
2828
2829static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2830{
2831 struct gsm48_hdr *gh = msgb_l3(msg);
2832 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2833 struct tlv_parsed tp;
2834 struct gsm_mncc fac;
2835
2836 memset(&fac, 0, sizeof(struct gsm_mncc));
2837 fac.callref = trans->callref;
2838 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2839 /* facility */
2840 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2841 fac.fields |= MNCC_F_FACILITY;
2842 decode_facility(&fac.facility,
2843 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2844 }
2845 /* ss-version */
2846 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2847 fac.fields |= MNCC_F_SSVERSION;
2848 decode_ssversion(&fac.ssversion,
2849 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2850 }
2851
Harald Welte596fed42009-07-23 19:06:52 +02002852 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002853}
2854
2855static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2856{
2857 struct gsm_mncc *fac = arg;
2858 struct msgb *msg = gsm48_msgb_alloc();
2859 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2860
Harald Welte4bfdfe72009-06-10 23:11:52 +08002861 gh->msg_type = GSM48_MT_CC_FACILITY;
2862
2863 /* facility */
2864 encode_facility(msg, 1, &fac->facility);
2865
Harald Welte39e2ead2009-07-23 21:13:03 +02002866 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002867}
2868
2869static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2870{
2871 struct gsm_mncc hold;
2872
2873 memset(&hold, 0, sizeof(struct gsm_mncc));
2874 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002875 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002876}
2877
2878static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2879{
2880 struct msgb *msg = gsm48_msgb_alloc();
2881 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2882
Harald Welte4bfdfe72009-06-10 23:11:52 +08002883 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2884
Harald Welte39e2ead2009-07-23 21:13:03 +02002885 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002886}
2887
2888static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2889{
2890 struct gsm_mncc *hold_rej = arg;
2891 struct msgb *msg = gsm48_msgb_alloc();
2892 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2893
Harald Welte4bfdfe72009-06-10 23:11:52 +08002894 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2895
2896 /* cause */
2897 if (hold_rej->fields & MNCC_F_CAUSE)
2898 encode_cause(msg, 1, &hold_rej->cause);
2899 else
2900 encode_cause(msg, 1, &default_cause);
2901
Harald Welte39e2ead2009-07-23 21:13:03 +02002902 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002903}
2904
2905static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2906{
2907 struct gsm_mncc retrieve;
2908
2909 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2910 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002911 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2912 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002913}
2914
2915static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2916{
2917 struct msgb *msg = gsm48_msgb_alloc();
2918 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2919
Harald Welte4bfdfe72009-06-10 23:11:52 +08002920 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2921
Harald Welte39e2ead2009-07-23 21:13:03 +02002922 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002923}
2924
2925static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2926{
2927 struct gsm_mncc *retrieve_rej = arg;
2928 struct msgb *msg = gsm48_msgb_alloc();
2929 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2930
Harald Welte4bfdfe72009-06-10 23:11:52 +08002931 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2932
2933 /* cause */
2934 if (retrieve_rej->fields & MNCC_F_CAUSE)
2935 encode_cause(msg, 1, &retrieve_rej->cause);
2936 else
2937 encode_cause(msg, 1, &default_cause);
2938
Harald Welte39e2ead2009-07-23 21:13:03 +02002939 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002940}
2941
2942static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2943{
2944 struct gsm48_hdr *gh = msgb_l3(msg);
2945 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2946 struct tlv_parsed tp;
2947 struct gsm_mncc dtmf;
2948
2949 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2950 dtmf.callref = trans->callref;
2951 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2952 /* keypad facility */
2953 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2954 dtmf.fields |= MNCC_F_KEYPAD;
2955 decode_keypad(&dtmf.keypad,
2956 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2957 }
2958
Harald Welte596fed42009-07-23 19:06:52 +02002959 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002960}
2961
2962static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2963{
2964 struct gsm_mncc *dtmf = arg;
2965 struct msgb *msg = gsm48_msgb_alloc();
2966 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2967
Harald Welte4bfdfe72009-06-10 23:11:52 +08002968 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2969
2970 /* keypad */
2971 if (dtmf->fields & MNCC_F_KEYPAD)
2972 encode_keypad(msg, dtmf->keypad);
2973
Harald Welte39e2ead2009-07-23 21:13:03 +02002974 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002975}
2976
2977static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2978{
2979 struct gsm_mncc *dtmf = arg;
2980 struct msgb *msg = gsm48_msgb_alloc();
2981 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2982
Harald Welte4bfdfe72009-06-10 23:11:52 +08002983 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2984
2985 /* cause */
2986 if (dtmf->fields & MNCC_F_CAUSE)
2987 encode_cause(msg, 1, &dtmf->cause);
2988 else
2989 encode_cause(msg, 1, &default_cause);
2990
Harald Welte39e2ead2009-07-23 21:13:03 +02002991 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002992}
2993
2994static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2995{
2996 struct msgb *msg = gsm48_msgb_alloc();
2997 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2998
Harald Welte4bfdfe72009-06-10 23:11:52 +08002999 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
3000
Harald Welte39e2ead2009-07-23 21:13:03 +02003001 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003002}
3003
3004static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
3005{
3006 struct gsm_mncc dtmf;
3007
3008 memset(&dtmf, 0, sizeof(struct gsm_mncc));
3009 dtmf.callref = trans->callref;
3010
Harald Welte596fed42009-07-23 19:06:52 +02003011 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003012}
3013
3014static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
3015{
3016 struct gsm48_hdr *gh = msgb_l3(msg);
3017 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3018 struct tlv_parsed tp;
3019 struct gsm_mncc modify;
3020
3021 memset(&modify, 0, sizeof(struct gsm_mncc));
3022 modify.callref = trans->callref;
3023 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3024 /* bearer capability */
3025 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3026 modify.fields |= MNCC_F_BEARER_CAP;
3027 decode_bearer_cap(&modify.bearer_cap,
3028 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3029 }
3030
3031 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
3032
Harald Welte596fed42009-07-23 19:06:52 +02003033 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003034}
3035
3036static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
3037{
3038 struct gsm_mncc *modify = arg;
3039 struct msgb *msg = gsm48_msgb_alloc();
3040 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3041
Harald Welte4bfdfe72009-06-10 23:11:52 +08003042 gh->msg_type = GSM48_MT_CC_MODIFY;
3043
3044 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
3045
3046 /* bearer capability */
3047 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3048
3049 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
3050
Harald Welte39e2ead2009-07-23 21:13:03 +02003051 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003052}
3053
3054static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
3055{
3056 struct gsm48_hdr *gh = msgb_l3(msg);
3057 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3058 struct tlv_parsed tp;
3059 struct gsm_mncc modify;
3060
3061 gsm48_stop_cc_timer(trans);
3062
3063 memset(&modify, 0, sizeof(struct gsm_mncc));
3064 modify.callref = trans->callref;
3065 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3066 /* bearer capability */
3067 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3068 modify.fields |= MNCC_F_BEARER_CAP;
3069 decode_bearer_cap(&modify.bearer_cap,
3070 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3071 }
3072
3073 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3074
Harald Welte596fed42009-07-23 19:06:52 +02003075 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003076}
3077
3078static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
3079{
3080 struct gsm_mncc *modify = arg;
3081 struct msgb *msg = gsm48_msgb_alloc();
3082 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3083
Harald Welte4bfdfe72009-06-10 23:11:52 +08003084 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
3085
3086 /* bearer capability */
3087 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3088
3089 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3090
Harald Welte39e2ead2009-07-23 21:13:03 +02003091 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003092}
3093
3094static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3095{
3096 struct gsm48_hdr *gh = msgb_l3(msg);
3097 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3098 struct tlv_parsed tp;
3099 struct gsm_mncc modify;
3100
3101 gsm48_stop_cc_timer(trans);
3102
3103 memset(&modify, 0, sizeof(struct gsm_mncc));
3104 modify.callref = trans->callref;
3105 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3106 /* bearer capability */
3107 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3108 modify.fields |= GSM48_IE_BEARER_CAP;
3109 decode_bearer_cap(&modify.bearer_cap,
3110 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3111 }
3112 /* cause */
3113 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3114 modify.fields |= MNCC_F_CAUSE;
3115 decode_cause(&modify.cause,
3116 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3117 }
3118
3119 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3120
Harald Welte596fed42009-07-23 19:06:52 +02003121 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003122}
3123
3124static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3125{
3126 struct gsm_mncc *modify = arg;
3127 struct msgb *msg = gsm48_msgb_alloc();
3128 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3129
Harald Welte4bfdfe72009-06-10 23:11:52 +08003130 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3131
3132 /* bearer capability */
3133 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3134 /* cause */
3135 encode_cause(msg, 1, &modify->cause);
3136
3137 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3138
Harald Welte39e2ead2009-07-23 21:13:03 +02003139 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003140}
3141
3142static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3143{
3144 struct gsm_mncc *notify = arg;
3145 struct msgb *msg = gsm48_msgb_alloc();
3146 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3147
Harald Welte4bfdfe72009-06-10 23:11:52 +08003148 gh->msg_type = GSM48_MT_CC_NOTIFY;
3149
3150 /* notify */
3151 encode_notify(msg, notify->notify);
3152
Harald Welte39e2ead2009-07-23 21:13:03 +02003153 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003154}
3155
3156static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3157{
3158 struct gsm48_hdr *gh = msgb_l3(msg);
3159 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3160// struct tlv_parsed tp;
3161 struct gsm_mncc notify;
3162
3163 memset(&notify, 0, sizeof(struct gsm_mncc));
3164 notify.callref = trans->callref;
3165// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3166 if (payload_len >= 1)
3167 decode_notify(&notify.notify, gh->data);
3168
Harald Welte596fed42009-07-23 19:06:52 +02003169 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003170}
3171
3172static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3173{
3174 struct gsm_mncc *user = arg;
3175 struct msgb *msg = gsm48_msgb_alloc();
3176 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3177
Harald Welte4bfdfe72009-06-10 23:11:52 +08003178 gh->msg_type = GSM48_MT_CC_USER_INFO;
3179
3180 /* user-user */
3181 if (user->fields & MNCC_F_USERUSER)
3182 encode_useruser(msg, 1, &user->useruser);
3183 /* more data */
3184 if (user->more)
3185 encode_more(msg);
3186
Harald Welte39e2ead2009-07-23 21:13:03 +02003187 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003188}
3189
3190static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3191{
3192 struct gsm48_hdr *gh = msgb_l3(msg);
3193 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3194 struct tlv_parsed tp;
3195 struct gsm_mncc user;
3196
3197 memset(&user, 0, sizeof(struct gsm_mncc));
3198 user.callref = trans->callref;
3199 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3200 /* user-user */
3201 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3202 user.fields |= MNCC_F_USERUSER;
3203 decode_useruser(&user.useruser,
3204 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3205 }
3206 /* more data */
3207 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3208 user.more = 1;
3209
Harald Welte596fed42009-07-23 19:06:52 +02003210 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003211}
3212
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003213static int _gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
Harald Welte4bfdfe72009-06-10 23:11:52 +08003214{
3215 struct gsm_mncc *mode = arg;
3216
Holger Hans Peter Freytherea528022009-11-18 22:57:02 +01003217 return gsm48_lchan_modify(trans->lchan, mode->lchan_mode);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003218}
3219
3220static struct downstate {
3221 u_int32_t states;
3222 int type;
3223 int (*rout) (struct gsm_trans *trans, void *arg);
3224} downstatelist[] = {
3225 /* mobile originating call establishment */
3226 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3227 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3228 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3229 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3230 {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 */
3231 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3232 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3233 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3234 /* mobile terminating call establishment */
3235 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3236 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3237 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3238 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3239 /* signalling during call */
3240 {SBIT(GSM_CSTATE_ACTIVE),
3241 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3242 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3243 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3244 {ALL_STATES,
3245 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3246 {ALL_STATES,
3247 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3248 {ALL_STATES,
3249 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3250 {SBIT(GSM_CSTATE_ACTIVE),
3251 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3252 {SBIT(GSM_CSTATE_ACTIVE),
3253 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3254 {SBIT(GSM_CSTATE_ACTIVE),
3255 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3256 {SBIT(GSM_CSTATE_ACTIVE),
3257 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3258 {SBIT(GSM_CSTATE_ACTIVE),
3259 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3260 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3261 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3262 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3263 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3264 {SBIT(GSM_CSTATE_ACTIVE),
3265 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3266 /* clearing */
3267 {SBIT(GSM_CSTATE_INITIATED),
3268 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3269 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3270 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3271 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3272 MNCC_REL_REQ, gsm48_cc_tx_release},
3273 /* special */
3274 {ALL_STATES,
Holger Hans Peter Freytherff3f2602009-10-22 15:13:00 +02003275 MNCC_LCHAN_MODIFY, _gsm48_lchan_modify},
Harald Welte4bfdfe72009-06-10 23:11:52 +08003276};
3277
3278#define DOWNSLLEN \
3279 (sizeof(downstatelist) / sizeof(struct downstate))
3280
3281
3282int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3283{
Harald Welte1a6f7982009-08-09 18:52:33 +02003284 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003285 struct gsm_trans *trans = NULL, *transt;
Harald Welte1a6f7982009-08-09 18:52:33 +02003286 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003287 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003288 struct gsm_mncc *data = arg, rel;
3289
3290 /* handle special messages */
3291 switch(msg_type) {
3292 case MNCC_BRIDGE:
3293 return tch_bridge(net, arg);
3294 case MNCC_FRAME_DROP:
Harald Welteda7ab742009-12-19 22:23:05 +01003295 return tch_recv_mncc(net, data->callref, 0);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003296 case MNCC_FRAME_RECV:
Harald Welteda7ab742009-12-19 22:23:05 +01003297 return tch_recv_mncc(net, data->callref, 1);
3298 case GSM_TCHF_FRAME:
3299 /* Find callref */
3300 trans = trans_find_by_callref(net, data->callref);
3301 if (!trans)
3302 return -EIO;
3303 if (!trans->lchan)
3304 return 0;
3305 if (trans->lchan->type != GSM_LCHAN_TCH_F)
3306 return 0;
3307 bts = trans->lchan->ts->trx->bts;
3308 switch (bts->type) {
3309 case GSM_BTS_TYPE_NANOBTS:
3310 if (!trans->lchan->abis_ip.rtp_socket)
3311 return 0;
3312 return rtp_send_frame(trans->lchan->abis_ip.rtp_socket, arg);
3313 case GSM_BTS_TYPE_BS11:
3314 return trau_send_frame(trans->lchan, arg);
3315 default:
3316 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
3317 }
3318 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003319 }
3320
3321 memset(&rel, 0, sizeof(struct gsm_mncc));
3322 rel.callref = data->callref;
3323
3324 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003325 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003326
3327 /* Callref unknown */
3328 if (!trans) {
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003329 struct gsm_subscriber *subscr;
3330
Harald Welte4a3464c2009-07-04 10:11:24 +02003331 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003332 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3333 "Received '%s' from MNCC with "
3334 "unknown callref %d\n", data->called.number,
3335 get_mncc_name(msg_type), data->callref);
3336 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003337 return mncc_release_ind(net, NULL, data->callref,
3338 GSM48_CAUSE_LOC_PRN_S_LU,
3339 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003340 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003341 if (!data->called.number[0] && !data->imsi[0]) {
3342 DEBUGP(DCC, "(bts - trx - ts - ti) "
3343 "Received '%s' from MNCC with "
3344 "no number or IMSI\n", get_mncc_name(msg_type));
3345 /* Invalid number */
3346 return mncc_release_ind(net, NULL, data->callref,
3347 GSM48_CAUSE_LOC_PRN_S_LU,
3348 GSM48_CC_CAUSE_INV_NR_FORMAT);
3349 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003350 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003351 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003352 subscr = subscr_get_by_extension(net,
3353 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003354 else
Harald Welte9176bd42009-07-23 18:46:00 +02003355 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003356 /* If subscriber is not found */
3357 if (!subscr) {
3358 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3359 "Received '%s' from MNCC with "
3360 "unknown subscriber %s\n", data->called.number,
3361 get_mncc_name(msg_type), data->called.number);
3362 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003363 return mncc_release_ind(net, NULL, data->callref,
3364 GSM48_CAUSE_LOC_PRN_S_LU,
3365 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003366 }
3367 /* If subscriber is not "attached" */
3368 if (!subscr->lac) {
3369 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3370 "Received '%s' from MNCC with "
3371 "detached subscriber %s\n", data->called.number,
3372 get_mncc_name(msg_type), data->called.number);
3373 subscr_put(subscr);
3374 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003375 return mncc_release_ind(net, NULL, data->callref,
3376 GSM48_CAUSE_LOC_PRN_S_LU,
3377 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003378 }
3379 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003380 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3381 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003382 DEBUGP(DCC, "No memory for trans.\n");
3383 subscr_put(subscr);
3384 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003385 mncc_release_ind(net, NULL, data->callref,
3386 GSM48_CAUSE_LOC_PRN_S_LU,
3387 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003388 return -ENOMEM;
3389 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003390 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003391 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003392 /* If subscriber has no lchan */
3393 if (!lchan) {
3394 /* find transaction with this subscriber already paging */
3395 llist_for_each_entry(transt, &net->trans_list, entry) {
3396 /* Transaction of our lchan? */
3397 if (transt == trans ||
3398 transt->subscr != subscr)
3399 continue;
3400 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3401 "Received '%s' from MNCC with "
3402 "unallocated channel, paging already "
3403 "started.\n", bts->nr,
3404 data->called.number,
3405 get_mncc_name(msg_type));
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003406 subscr_put(subscr);
3407 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003408 return 0;
3409 }
3410 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003411 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003412 /* Trigger paging */
3413 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3414 setup_trig_pag_evt, subscr);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003415 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003416 return 0;
3417 }
3418 /* Assign lchan */
3419 trans->lchan = lchan;
3420 use_lchan(lchan);
Holger Hans Peter Freytherccf53c62009-10-27 14:21:14 +01003421 subscr_put(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003422 }
3423 lchan = trans->lchan;
3424
3425 /* if paging did not respond yet */
3426 if (!lchan) {
3427 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3428 "Received '%s' from MNCC in paging state\n",
3429 (trans->subscr)?(trans->subscr->extension):"-",
3430 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003431 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3432 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003433 if (msg_type == MNCC_REL_REQ)
3434 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3435 else
3436 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3437 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003438 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003439 return rc;
3440 }
3441
3442 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3443 "Received '%s' from MNCC in state %d (%s)\n",
3444 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3445 trans->transaction_id,
3446 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003447 get_mncc_name(msg_type), trans->cc.state,
3448 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003449
3450 /* Find function for current state and message */
3451 for (i = 0; i < DOWNSLLEN; i++)
3452 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003453 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003454 break;
3455 if (i == DOWNSLLEN) {
3456 DEBUGP(DCC, "Message unhandled at this state.\n");
3457 return 0;
3458 }
3459
3460 rc = downstatelist[i].rout(trans, arg);
3461
3462 return rc;
3463}
3464
3465
3466static struct datastate {
3467 u_int32_t states;
3468 int type;
3469 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3470} datastatelist[] = {
3471 /* mobile originating call establishment */
3472 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3473 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3474 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3475 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3476 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3477 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3478 /* mobile terminating call establishment */
3479 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3480 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3481 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3482 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3483 {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 */
3484 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3485 /* signalling during call */
3486 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3487 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3488 {SBIT(GSM_CSTATE_ACTIVE),
3489 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3490 {ALL_STATES,
3491 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3492 {ALL_STATES,
3493 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3494 {ALL_STATES,
3495 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3496 {SBIT(GSM_CSTATE_ACTIVE),
3497 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3498 {SBIT(GSM_CSTATE_ACTIVE),
3499 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3500 {SBIT(GSM_CSTATE_ACTIVE),
3501 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3502 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3503 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3504 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3505 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3506 {SBIT(GSM_CSTATE_ACTIVE),
3507 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3508 /* clearing */
3509 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3510 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3511 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3512 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3513 {ALL_STATES, /* 5.4.3.4 */
3514 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3515};
3516
3517#define DATASLLEN \
3518 (sizeof(datastatelist) / sizeof(struct datastate))
3519
Harald Welte4bc90a12008-12-27 16:32:52 +00003520static int gsm0408_rcv_cc(struct msgb *msg)
3521{
3522 struct gsm48_hdr *gh = msgb_l3(msg);
3523 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003524 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003525 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003526 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003527 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003528
Harald Welte4bfdfe72009-06-10 23:11:52 +08003529 if (msg_type & 0x80) {
3530 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3531 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003532 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003533
3534 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003535 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003536
Harald Welte6f5aee02009-07-23 21:21:14 +02003537 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003538 "Received '%s' from MS in state %d (%s)\n",
3539 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3540 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003541 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003542 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003543
3544 /* Create transaction */
3545 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003546 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003547 "creating new trans.\n", transaction_id);
3548 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003549 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3550 transaction_id, new_callref++);
3551 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003552 DEBUGP(DCC, "No memory for trans.\n");
3553 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003554 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003555 GSM48_MT_CC_RELEASE_COMPL);
3556 return -ENOMEM;
3557 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003558 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003559 trans->lchan = lchan;
3560 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003561 }
3562
3563 /* find function for current state and message */
3564 for (i = 0; i < DATASLLEN; i++)
3565 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003566 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003567 break;
3568 if (i == DATASLLEN) {
3569 DEBUGP(DCC, "Message unhandled at this state.\n");
3570 return 0;
3571 }
3572
3573 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003574
3575 return rc;
3576}
3577
Harald Welte52b1f982008-12-23 20:25:15 +00003578/* 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 +02003579int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003580{
3581 struct gsm48_hdr *gh = msgb_l3(msg);
3582 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003583 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003584
3585 switch (pdisc) {
3586 case GSM48_PDISC_CC:
3587 rc = gsm0408_rcv_cc(msg);
3588 break;
3589 case GSM48_PDISC_MM:
3590 rc = gsm0408_rcv_mm(msg);
3591 break;
3592 case GSM48_PDISC_RR:
3593 rc = gsm0408_rcv_rr(msg);
3594 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003595 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003596 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003597 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003598 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003599 case GSM48_PDISC_SM_GPRS:
Mike Haben59d284e2009-09-26 19:00:03 +02003600 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003601 pdisc);
3602 break;
Harald Welte6eafe912009-10-16 08:32:58 +02003603 case GSM48_PDISC_NC_SS:
3604 rc = handle_rcv_ussd(msg);
3605 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003606 default:
Mike Haben59d284e2009-09-26 19:00:03 +02003607 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003608 pdisc);
3609 break;
3610 }
3611
3612 return rc;
3613}
Harald Welte8470bf22008-12-25 23:28:35 +00003614
Harald Welte4bfdfe72009-06-10 23:11:52 +08003615/* dequeue messages to layer 4 */
3616int bsc_upqueue(struct gsm_network *net)
3617{
3618 struct gsm_mncc *mncc;
3619 struct msgb *msg;
3620 int work = 0;
3621
3622 if (net)
3623 while ((msg = msgb_dequeue(&net->upqueue))) {
3624 mncc = (struct gsm_mncc *)msg->data;
3625 if (net->mncc_recv)
3626 net->mncc_recv(net, mncc->msg_type, mncc);
3627 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003628 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003629 }
3630
3631 return work;
3632}
Harald Weltedcaf5652009-07-23 18:56:43 +02003633
Harald Welte805f6442009-07-28 18:25:29 +02003634/*
3635 * This will be ran by the linker when loading the DSO. We use it to
3636 * do system initialization, e.g. registration of signal handlers.
3637 */
3638static __attribute__((constructor)) void on_dso_load_0408(void)
3639{
Harald Welte805f6442009-07-28 18:25:29 +02003640 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3641 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3642}