blob: 9467d79a6608dba53c785ac64ec5d4b4a2cbefb8 [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 Welte7584aea2009-02-11 11:44:12 +000035#include <openbsc/tlv.h>
Harald Welte8470bf22008-12-25 23:28:35 +000036#include <openbsc/debug.h>
37#include <openbsc/gsm_data.h>
Daniel Willmanneea93372009-08-13 03:42:07 +020038#include <openbsc/gsm_utils.h>
Harald Welte8470bf22008-12-25 23:28:35 +000039#include <openbsc/gsm_subscriber.h>
Daniel Willmann8b3390e2008-12-28 00:31:09 +000040#include <openbsc/gsm_04_11.h>
Harald Welte8470bf22008-12-25 23:28:35 +000041#include <openbsc/gsm_04_08.h>
42#include <openbsc/abis_rsl.h>
Holger Freytherca362a62009-01-04 21:05:01 +000043#include <openbsc/chan_alloc.h>
Harald Welte0b4c34e2009-02-09 17:54:43 +000044#include <openbsc/paging.h>
Holger Freyther053e09d2009-02-14 22:51:06 +000045#include <openbsc/signal.h>
Harald Welte45b407a2009-05-23 15:51:12 +000046#include <openbsc/trau_frame.h>
Harald Welte11fa29c2009-02-19 17:24:39 +000047#include <openbsc/trau_mux.h>
Harald Welte805f6442009-07-28 18:25:29 +020048#include <openbsc/rtp_proxy.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020049#include <openbsc/talloc.h>
Harald Weltedcaf5652009-07-23 18:56:43 +020050#include <openbsc/transaction.h>
Harald Welte52b1f982008-12-23 20:25:15 +000051
Harald Welte0c389302009-06-10 12:08:54 +080052#define GSM_MAX_FACILITY 128
53#define GSM_MAX_SSVERSION 128
54#define GSM_MAX_USERUSER 128
55
Harald Welte (local)d19e58b2009-08-15 02:30:58 +020056void *tall_locop_ctx;
Harald Welte2cf161b2009-06-20 22:36:41 +020057
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +020058extern int ipacc_rtp_direct;
Harald Welte805f6442009-07-28 18:25:29 +020059
Harald Welte09e38af2009-02-16 22:52:23 +000060static const struct tlv_definition rsl_att_tlvdef = {
61 .def = {
62 [GSM48_IE_MOBILE_ID] = { TLV_TYPE_TLV },
63 [GSM48_IE_NAME_LONG] = { TLV_TYPE_TLV },
64 [GSM48_IE_NAME_SHORT] = { TLV_TYPE_TLV },
65 [GSM48_IE_UTC] = { TLV_TYPE_TV },
66 [GSM48_IE_NET_TIME_TZ] = { TLV_TYPE_FIXED, 7 },
67 [GSM48_IE_LSA_IDENT] = { TLV_TYPE_TLV },
68
69 [GSM48_IE_BEARER_CAP] = { TLV_TYPE_TLV },
70 [GSM48_IE_CAUSE] = { TLV_TYPE_TLV },
71 [GSM48_IE_CC_CAP] = { TLV_TYPE_TLV },
72 [GSM48_IE_ALERT] = { TLV_TYPE_TLV },
73 [GSM48_IE_FACILITY] = { TLV_TYPE_TLV },
74 [GSM48_IE_PROGR_IND] = { TLV_TYPE_TLV },
75 [GSM48_IE_AUX_STATUS] = { TLV_TYPE_TLV },
Harald Welte0c389302009-06-10 12:08:54 +080076 [GSM48_IE_NOTIFY] = { TLV_TYPE_TV },
Harald Welte09e38af2009-02-16 22:52:23 +000077 [GSM48_IE_KPD_FACILITY] = { TLV_TYPE_TV },
78 [GSM48_IE_SIGNAL] = { TLV_TYPE_TV },
Harald Welte0c389302009-06-10 12:08:54 +080079 [GSM48_IE_CONN_BCD] = { TLV_TYPE_TLV },
80 [GSM48_IE_CONN_SUB] = { TLV_TYPE_TLV },
Harald Welte09e38af2009-02-16 22:52:23 +000081 [GSM48_IE_CALLING_BCD] = { TLV_TYPE_TLV },
82 [GSM48_IE_CALLING_SUB] = { TLV_TYPE_TLV },
83 [GSM48_IE_CALLED_BCD] = { TLV_TYPE_TLV },
84 [GSM48_IE_CALLED_SUB] = { TLV_TYPE_TLV },
85 [GSM48_IE_REDIR_BCD] = { TLV_TYPE_TLV },
86 [GSM48_IE_REDIR_SUB] = { TLV_TYPE_TLV },
87 [GSM48_IE_LOWL_COMPAT] = { TLV_TYPE_TLV },
88 [GSM48_IE_HIGHL_COMPAT] = { TLV_TYPE_TLV },
89 [GSM48_IE_USER_USER] = { TLV_TYPE_TLV },
90 [GSM48_IE_SS_VERS] = { TLV_TYPE_TLV },
91 [GSM48_IE_MORE_DATA] = { TLV_TYPE_T },
92 [GSM48_IE_CLIR_SUPP] = { TLV_TYPE_T },
93 [GSM48_IE_CLIR_INVOC] = { TLV_TYPE_T },
94 [GSM48_IE_REV_C_SETUP] = { TLV_TYPE_T },
Harald Welte0c389302009-06-10 12:08:54 +080095 [GSM48_IE_REPEAT_CIR] = { TLV_TYPE_T },
96 [GSM48_IE_REPEAT_SEQ] = { TLV_TYPE_T },
Harald Welte09e38af2009-02-16 22:52:23 +000097 /* FIXME: more elements */
98 },
99};
Harald Weltecf5b3592009-05-01 18:28:42 +0000100
101static const char *rr_cause_names[] = {
102 [GSM48_RR_CAUSE_NORMAL] = "Normal event",
103 [GSM48_RR_CAUSE_ABNORMAL_UNSPEC] = "Abnormal release, unspecified",
104 [GSM48_RR_CAUSE_ABNORMAL_UNACCT] = "Abnormal release, channel unacceptable",
105 [GSM48_RR_CAUSE_ABNORMAL_TIMER] = "Abnormal release, timer expired",
106 [GSM48_RR_CAUSE_ABNORMAL_NOACT] = "Abnormal release, no activity on radio path",
107 [GSM48_RR_CAUSE_PREMPTIVE_REL] = "Preemptive release",
108 [GSM48_RR_CAUSE_HNDOVER_IMP] = "Handover impossible, timing advance out of range",
109 [GSM48_RR_CAUSE_CHAN_MODE_UNACCT] = "Channel mode unacceptable",
110 [GSM48_RR_CAUSE_FREQ_NOT_IMPL] = "Frequency not implemented",
111 [GSM48_RR_CAUSE_CALL_CLEARED] = "Call already cleared",
112 [GSM48_RR_CAUSE_SEMANT_INCORR] = "Semantically incorrect message",
113 [GSM48_RR_CAUSE_INVALID_MAND_INF] = "Invalid mandatory information",
114 [GSM48_RR_CAUSE_MSG_TYPE_N] = "Message type non-existant or not implemented",
115 [GSM48_RR_CAUSE_MSG_TYPE_N_COMPAT] = "Message type not compatible with protocol state",
116 [GSM48_RR_CAUSE_COND_IE_ERROR] = "Conditional IE error",
117 [GSM48_RR_CAUSE_NO_CELL_ALLOC_A] = "No cell allocation available",
118 [GSM48_RR_CAUSE_PROT_ERROR_UNSPC] = "Protocol error unspecified",
119};
120
Harald Welte4bfdfe72009-06-10 23:11:52 +0800121static const char *cc_state_names[] = {
122 "NULL",
123 "INITIATED",
124 "illegal state 2",
125 "MO_CALL_PROC",
126 "CALL_DELIVERED",
127 "illegal state 5",
128 "CALL_PRESENT",
129 "CALL_RECEIVED",
130 "CONNECT_REQUEST",
131 "MO_TERM_CALL_CONF",
132 "ACTIVE",
133 "DISCONNECT_REQ",
134 "DISCONNECT_IND",
135 "illegal state 13",
136 "illegal state 14",
137 "illegal state 15",
138 "illegal state 16",
139 "illegal state 17",
140 "illegal state 18",
141 "RELEASE_REQ",
142 "illegal state 20",
143 "illegal state 21",
144 "illegal state 22",
145 "illegal state 23",
146 "illegal state 24",
147 "illegal state 25",
148 "MO_ORIG_MODIFY",
149 "MO_TERM_MODIFY",
150 "CONNECT_IND",
151 "illegal state 29",
152 "illegal state 30",
153 "illegal state 31",
154};
155
Harald Weltecf5b3592009-05-01 18:28:42 +0000156static char strbuf[64];
157
158static const char *rr_cause_name(u_int8_t cause)
159{
160 if (cause < ARRAY_SIZE(rr_cause_names) &&
161 rr_cause_names[cause])
162 return rr_cause_names[cause];
163
164 snprintf(strbuf, sizeof(strbuf), "0x%02x", cause);
165 return strbuf;
166}
167
Harald Weltef7c43522009-06-09 20:24:21 +0000168static void parse_meas_rep(struct gsm_meas_rep *rep, const u_int8_t *data,
169 int len)
170{
171 memset(rep, 0, sizeof(*rep));
172
173 if (data[0] & 0x80)
174 rep->flags |= MEAS_REP_F_BA1;
175 if (data[0] & 0x40)
176 rep->flags |= MEAS_REP_F_DTX;
Harald Welte5a691b52009-07-05 04:05:44 +0200177 if ((data[1] & 0x40) == 0x00)
Harald Weltef7c43522009-06-09 20:24:21 +0000178 rep->flags |= MEAS_REP_F_VALID;
179
180 rep->rxlev_full = data[0] & 0x3f;
181 rep->rxlev_sub = data[1] & 0x3f;
182 rep->rxqual_full = (data[3] >> 4) & 0x7;
183 rep->rxqual_sub = (data[3] >> 1) & 0x7;
184 rep->num_cell = data[4] >> 6 | ((data[3] & 0x01) << 2);
185 if (rep->num_cell < 1)
186 return;
187
188 /* an encoding nightmare in perfection */
189
190 rep->cell[0].rxlev = data[4] & 0x3f;
191 rep->cell[0].bcch_freq = data[5] >> 2;
192 rep->cell[0].bsic = ((data[5] & 0x03) << 3) | (data[6] >> 5);
193 if (rep->num_cell < 2)
194 return;
195
196 rep->cell[1].rxlev = ((data[6] & 0x1f) << 1) | (data[7] >> 7);
197 rep->cell[1].bcch_freq = (data[7] >> 2) & 0x1f;
198 rep->cell[1].bsic = ((data[7] & 0x03) << 4) | (data[8] >> 4);
199 if (rep->num_cell < 3)
200 return;
201
202 rep->cell[2].rxlev = ((data[8] & 0x0f) << 2) | (data[9] >> 6);
203 rep->cell[2].bcch_freq = (data[9] >> 1) & 0x1f;
204 rep->cell[2].bsic = ((data[9] & 0x01) << 6) | (data[10] >> 3);
205 if (rep->num_cell < 4)
206 return;
207
208 rep->cell[3].rxlev = ((data[10] & 0x07) << 3) | (data[11] >> 5);
209 rep->cell[3].bcch_freq = data[11] & 0x1f;
210 rep->cell[3].bsic = data[12] >> 2;
211 if (rep->num_cell < 5)
212 return;
213
214 rep->cell[4].rxlev = ((data[12] & 0x03) << 4) | (data[13] >> 4);
215 rep->cell[4].bcch_freq = ((data[13] & 0xf) << 1) | (data[14] >> 7);
216 rep->cell[4].bsic = (data[14] >> 1) & 0x3f;
217 if (rep->num_cell < 6)
218 return;
219
220 rep->cell[5].rxlev = ((data[14] & 0x01) << 5) | (data[15] >> 3);
221 rep->cell[5].bcch_freq = ((data[15] & 0x07) << 2) | (data[16] >> 6);
222 rep->cell[5].bsic = data[16] & 0x3f;
223}
224
Holger Freytherd51524f2009-06-09 08:27:07 +0000225int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi);
Harald Welte65e74cc2008-12-29 01:55:35 +0000226static int gsm48_tx_simple(struct gsm_lchan *lchan,
227 u_int8_t pdisc, u_int8_t msg_type);
Holger Freytherb7193e42008-12-29 17:44:08 +0000228static void schedule_reject(struct gsm_lchan *lchan);
Harald Welte65e74cc2008-12-29 01:55:35 +0000229
Harald Welte52b1f982008-12-23 20:25:15 +0000230struct gsm_lai {
231 u_int16_t mcc;
232 u_int16_t mnc;
233 u_int16_t lac;
234};
235
Holger Freythere97f7fb2008-12-31 18:52:11 +0000236static int reject_cause = 0;
237void gsm0408_set_reject_cause(int cause)
238{
239 reject_cause = cause;
240}
241
Harald Welte4bfdfe72009-06-10 23:11:52 +0800242static u_int32_t new_callref = 0x80000001;
243
Holger Freyther73487a22008-12-31 18:53:57 +0000244static int authorize_subscriber(struct gsm_loc_updating_operation *loc,
245 struct gsm_subscriber *subscriber)
Holger Freyther89824fc2008-12-30 16:18:18 +0000246{
247 if (!subscriber)
248 return 0;
249
Holger Freyther73487a22008-12-31 18:53:57 +0000250 /*
251 * Do not send accept yet as more information should arrive. Some
252 * phones will not send us the information and we will have to check
253 * what we want to do with that.
254 */
255 if (loc && (loc->waiting_for_imsi || loc->waiting_for_imei))
256 return 0;
257
Jan Luebbe06513f22009-08-12 12:48:00 +0200258 switch (subscriber->net->auth_policy) {
259 case GSM_AUTH_POLICY_CLOSED:
260 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200261 case GSM_AUTH_POLICY_TOKEN:
Harald Welte (local)ee9afe32009-08-13 20:44:23 +0200262 if (subscriber->authorized)
263 return subscriber->authorized;
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200264 return (subscriber->flags & GSM_SUBSCRIBER_FIRST_CONTACT);
Jan Luebbe06513f22009-08-12 12:48:00 +0200265 case GSM_AUTH_POLICY_ACCEPT_ALL:
Holger Freyther89824fc2008-12-30 16:18:18 +0000266 return 1;
Jan Luebbe06513f22009-08-12 12:48:00 +0200267 default:
268 return 0;
269 }
Holger Freyther89824fc2008-12-30 16:18:18 +0000270}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000271
Holger Freyther73487a22008-12-31 18:53:57 +0000272static void release_loc_updating_req(struct gsm_lchan *lchan)
273{
Harald Welte179f0642008-12-31 23:59:18 +0000274 if (!lchan->loc_operation)
Holger Freyther73487a22008-12-31 18:53:57 +0000275 return;
276
Harald Welteff117a82009-05-23 05:22:08 +0000277 bsc_del_timer(&lchan->loc_operation->updating_timer);
Harald Welte2cf161b2009-06-20 22:36:41 +0200278 talloc_free(lchan->loc_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000279 lchan->loc_operation = 0;
Holger Freyther3eaa7922009-01-01 02:59:03 +0000280 put_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000281}
282
283static void allocate_loc_updating_req(struct gsm_lchan *lchan)
284{
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000285 use_lchan(lchan);
Holger Freyther73487a22008-12-31 18:53:57 +0000286 release_loc_updating_req(lchan);
287
Harald Welte470ec292009-06-26 20:25:23 +0200288 lchan->loc_operation = talloc_zero(tall_locop_ctx,
289 struct gsm_loc_updating_operation);
Holger Freyther73487a22008-12-31 18:53:57 +0000290}
Holger Freyther07cc8d82008-12-29 06:23:46 +0000291
Holger Freytherd51524f2009-06-09 08:27:07 +0000292static int gsm0408_authorize(struct gsm_lchan *lchan, struct msgb *msg)
293{
Holger Freytherd51524f2009-06-09 08:27:07 +0000294 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
Harald Welteee5ad162009-08-09 19:07:00 +0200295 int rc;
296
Holger Freytherd51524f2009-06-09 08:27:07 +0000297 db_subscriber_alloc_tmsi(lchan->subscr);
Holger Freytherd51524f2009-06-09 08:27:07 +0000298 release_loc_updating_req(lchan);
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +0200299 rc = gsm0408_loc_upd_acc(msg->lchan, lchan->subscr->tmsi);
Harald Welteee5ad162009-08-09 19:07:00 +0200300 /* call subscr_update after putting the loc_upd_acc
301 * in the transmit queue, since S_SUBSCR_ATTACHED might
302 * trigger further action like SMS delivery */
303 subscr_update(lchan->subscr, msg->trx->bts,
304 GSM_SUBSCRIBER_UPDATE_ATTACHED);
305 return rc;
Holger Freytherd51524f2009-06-09 08:27:07 +0000306 }
307
308 return 0;
309}
310
Holger Freyther7c19f742009-06-06 13:54:35 +0000311static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
312 void *handler_data, void *signal_data)
313{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800314 struct gsm_trans *trans, *temp;
315
Holger Freyther7c19f742009-06-06 13:54:35 +0000316 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
317 return 0;
318
319 /*
320 * Cancel any outstanding location updating request
321 * operation taking place on the lchan.
322 */
Harald Welte1a5c6bd2009-07-04 09:35:21 +0200323 struct gsm_lchan *lchan = (struct gsm_lchan *)signal_data;
Harald Weltec05677b2009-06-26 20:17:06 +0200324 if (!lchan)
325 return 0;
326
Holger Freyther7c19f742009-06-06 13:54:35 +0000327 release_loc_updating_req(lchan);
328
Harald Welte4bfdfe72009-06-10 23:11:52 +0800329 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200330 /* FIXME: this is not neccessarily the right thing to do, we should
331 * only set trans->lchan to NULL and wait for another lchan to be
332 * established to the same MM entity (phone/subscriber) */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800333 llist_for_each_entry_safe(trans, temp, &lchan->ts->trx->bts->network->trans_list, entry) {
334 if (trans->lchan == lchan)
Harald Weltedcaf5652009-07-23 18:56:43 +0200335 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800336 }
337
Holger Freyther7c19f742009-06-06 13:54:35 +0000338 return 0;
339}
340
Harald Welte09e38af2009-02-16 22:52:23 +0000341static const char bcd_num_digits[] = {
342 '0', '1', '2', '3', '4', '5', '6', '7',
343 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
344};
345
Harald Welte0c389302009-06-10 12:08:54 +0800346/* decode a 'called/calling/connect party BCD number' as in 10.5.4.7 */
347int decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv,
348 int h_len)
Harald Welte09e38af2009-02-16 22:52:23 +0000349{
350 u_int8_t in_len = bcd_lv[0];
351 int i;
352
Harald Welte0c389302009-06-10 12:08:54 +0800353 for (i = 1 + h_len; i <= in_len; i++) {
Harald Welte09e38af2009-02-16 22:52:23 +0000354 /* lower nibble */
355 output_len--;
356 if (output_len <= 1)
357 break;
358 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
359
360 /* higher nibble */
361 output_len--;
362 if (output_len <= 1)
363 break;
364 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
365 }
366 if (output_len >= 1)
367 *output++ = '\0';
368
Harald Welte0c389302009-06-10 12:08:54 +0800369 return 0;
Harald Welte09e38af2009-02-16 22:52:23 +0000370}
371
372/* convert a single ASCII character to call-control BCD */
373static int asc_to_bcd(const char asc)
374{
375 int i;
376
377 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
378 if (bcd_num_digits[i] == asc)
379 return i;
380 }
381 return -EINVAL;
382}
383
Harald Welte0c389302009-06-10 12:08:54 +0800384/* convert a ASCII phone number to 'called/calling/connect party BCD number' */
Harald Welte09e38af2009-02-16 22:52:23 +0000385int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
Harald Welte0c389302009-06-10 12:08:54 +0800386 int h_len, const char *input)
Harald Welte09e38af2009-02-16 22:52:23 +0000387{
388 int in_len = strlen(input);
389 int i;
Harald Welte0c389302009-06-10 12:08:54 +0800390 u_int8_t *bcd_cur = bcd_lv + 1 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000391
392 /* two digits per byte, plus type byte */
Harald Welte0c389302009-06-10 12:08:54 +0800393 bcd_lv[0] = in_len/2 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000394 if (in_len % 2)
395 bcd_lv[0]++;
396
Harald Welte0c389302009-06-10 12:08:54 +0800397 if (bcd_lv[0] > max_len)
398 return -EIO;
Harald Welte09e38af2009-02-16 22:52:23 +0000399
400 for (i = 0; i < in_len; i++) {
401 int rc = asc_to_bcd(input[i]);
402 if (rc < 0)
403 return rc;
404 if (i % 2 == 0)
405 *bcd_cur = rc;
406 else
407 *bcd_cur++ |= (rc << 4);
408 }
409 /* append padding nibble in case of odd length */
410 if (i % 2)
411 *bcd_cur++ |= 0xf0;
412
413 /* return how many bytes we used */
414 return (bcd_cur - bcd_lv);
415}
416
Harald Welte0c389302009-06-10 12:08:54 +0800417/* decode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800418static int decode_bearer_cap(struct gsm_mncc_bearer_cap *bcap,
Harald Welte0c389302009-06-10 12:08:54 +0800419 const u_int8_t *lv)
420{
421 u_int8_t in_len = lv[0];
422 int i, s;
423
424 if (in_len < 1)
425 return -EINVAL;
426
Harald Welte4bfdfe72009-06-10 23:11:52 +0800427 bcap->speech_ver[0] = -1; /* end of list, of maximum 7 values */
Harald Welte0c389302009-06-10 12:08:54 +0800428
429 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800430 bcap->transfer = lv[1] & 0x07;
431 bcap->mode = (lv[1] & 0x08) >> 3;
432 bcap->coding = (lv[1] & 0x10) >> 4;
433 bcap->radio = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800434
435 i = 1;
436 s = 0;
437 while(!(lv[i] & 0x80)) {
438 i++; /* octet 3a etc */
439 if (in_len < i)
440 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800441 bcap->speech_ver[s++] = lv[i] & 0x0f;
442 bcap->speech_ver[s] = -1; /* end of list */
Harald Welte0c389302009-06-10 12:08:54 +0800443 if (i == 2) /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800444 bcap->speech_ctm = (lv[i] & 0x20) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800445 if (s == 7) /* maximum speech versions + end of list */
446 return 0;
447 }
448
449 return 0;
450}
451
452/* encode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800453static int encode_bearer_cap(struct msgb *msg, int lv_only,
454 const struct gsm_mncc_bearer_cap *bcap)
Harald Welte0c389302009-06-10 12:08:54 +0800455{
456 u_int8_t lv[32 + 1];
457 int i, s;
458
Harald Welte4bfdfe72009-06-10 23:11:52 +0800459 lv[1] = bcap->transfer;
460 lv[1] |= bcap->mode << 3;
461 lv[1] |= bcap->coding << 4;
462 lv[1] |= bcap->radio << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800463
464 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800465 for (s = 0; bcap->speech_ver[s] >= 0; s++) {
Harald Welte0c389302009-06-10 12:08:54 +0800466 i++; /* octet 3a etc */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800467 lv[i] = bcap->speech_ver[s];
Harald Welte0c389302009-06-10 12:08:54 +0800468 if (i == 2) /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800469 lv[i] |= bcap->speech_ctm << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800470 }
471 lv[i] |= 0x80; /* last IE of octet 3 etc */
472
473 lv[0] = i;
474 if (lv_only)
475 msgb_lv_put(msg, lv[0], lv+1);
476 else
477 msgb_tlv_put(msg, GSM48_IE_BEARER_CAP, lv[0], lv+1);
478
479 return 0;
480}
481
482/* decode 'call control cap' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800483static int decode_cccap(struct gsm_mncc_cccap *ccap, const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800484{
485 u_int8_t in_len = lv[0];
486
487 if (in_len < 1)
488 return -EINVAL;
489
490 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800491 ccap->dtmf = lv[1] & 0x01;
492 ccap->pcp = (lv[1] & 0x02) >> 1;
Harald Welte0c389302009-06-10 12:08:54 +0800493
494 return 0;
495}
496
497/* decode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800498static int decode_called(struct gsm_mncc_number *called,
499 const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800500{
501 u_int8_t in_len = lv[0];
502
503 if (in_len < 1)
504 return -EINVAL;
505
506 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800507 called->plan = lv[1] & 0x0f;
508 called->type = (lv[1] & 0x70) >> 4;
Harald Welte0c389302009-06-10 12:08:54 +0800509
510 /* octet 4..N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800511 decode_bcd_number(called->number, sizeof(called->number), lv, 1);
Harald Welte0c389302009-06-10 12:08:54 +0800512
513 return 0;
514}
515
516/* encode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800517static int encode_called(struct msgb *msg,
518 const struct gsm_mncc_number *called)
Harald Welte0c389302009-06-10 12:08:54 +0800519{
520 u_int8_t lv[18];
521 int ret;
522
523 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800524 lv[1] = called->plan;
525 lv[1] |= called->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800526
527 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800528 ret = encode_bcd_number(lv, sizeof(lv), 1, called->number);
Harald Welte0c389302009-06-10 12:08:54 +0800529 if (ret < 0)
530 return ret;
531
532 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD, lv[0], lv+1);
533
534 return 0;
535}
536
537/* encode callerid of various IEs */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800538static int encode_callerid(struct msgb *msg, int ie,
539 const struct gsm_mncc_number *callerid)
Harald Welte0c389302009-06-10 12:08:54 +0800540{
541 u_int8_t lv[13];
542 int h_len = 1;
543 int ret;
544
545 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800546 lv[1] = callerid->plan;
547 lv[1] |= callerid->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800548
Harald Welte4bfdfe72009-06-10 23:11:52 +0800549 if (callerid->present || callerid->screen) {
Harald Welte0c389302009-06-10 12:08:54 +0800550 /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800551 lv[2] = callerid->screen;
552 lv[2] |= callerid->present << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800553 lv[2] |= 0x80;
554 h_len++;
555 } else
556 lv[1] |= 0x80;
557
558 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800559 ret = encode_bcd_number(lv, sizeof(lv), h_len, callerid->number);
Harald Welte0c389302009-06-10 12:08:54 +0800560 if (ret < 0)
561 return ret;
562
563 msgb_tlv_put(msg, ie, lv[0], lv+1);
564
565 return 0;
566}
567
568/* decode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800569static int decode_cause(struct gsm_mncc_cause *cause,
Harald Welte0c389302009-06-10 12:08:54 +0800570 const u_int8_t *lv)
571{
572 u_int8_t in_len = lv[0];
573 int i;
574
575 if (in_len < 2)
576 return -EINVAL;
577
Harald Welte4bfdfe72009-06-10 23:11:52 +0800578 cause->diag_len = 0;
Harald Welte0c389302009-06-10 12:08:54 +0800579
580 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800581 cause->location = lv[1] & 0x0f;
582 cause->coding = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800583
584 i = 1;
585 if (!(lv[i] & 0x80)) {
586 i++; /* octet 3a */
587 if (in_len < i+1)
588 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800589 cause->rec = 1;
590 cause->rec_val = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800591
592 }
593 i++;
594
595 /* octet 4 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800596 cause->value = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800597 i++;
598
599 if (in_len < i) /* no diag */
600 return 0;
601
602 if (in_len - (i-1) > 32) /* maximum 32 octets */
603 return 0;
604
605 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800606 memcpy(cause->diag, lv + i, in_len - (i-1));
607 cause->diag_len = in_len - (i-1);
Harald Welte0c389302009-06-10 12:08:54 +0800608
609 return 0;
610}
611
612/* encode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800613static int encode_cause(struct msgb *msg, int lv_only,
614 const struct gsm_mncc_cause *cause)
Harald Welte0c389302009-06-10 12:08:54 +0800615{
616 u_int8_t lv[32+4];
617 int i;
618
Harald Welte4bfdfe72009-06-10 23:11:52 +0800619 if (cause->diag_len > 32)
Harald Welte0c389302009-06-10 12:08:54 +0800620 return -EINVAL;
621
622 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800623 lv[1] = cause->location;
624 lv[1] |= cause->coding << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800625
626 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800627 if (cause->rec) {
Harald Welte0c389302009-06-10 12:08:54 +0800628 i++; /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800629 lv[i] = cause->rec_val;
Harald Welte0c389302009-06-10 12:08:54 +0800630 }
631 lv[i] |= 0x80; /* end of octet 3 */
632
633 /* octet 4 */
634 i++;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800635 lv[i] = 0x80 | cause->value;
Harald Welte0c389302009-06-10 12:08:54 +0800636
637 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800638 if (cause->diag_len) {
639 memcpy(lv + i, cause->diag, cause->diag_len);
640 i += cause->diag_len;
Harald Welte0c389302009-06-10 12:08:54 +0800641 }
642
643 lv[0] = i;
644 if (lv_only)
645 msgb_lv_put(msg, lv[0], lv+1);
646 else
647 msgb_tlv_put(msg, GSM48_IE_CAUSE, lv[0], lv+1);
648
649 return 0;
650}
651
652/* encode 'calling number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800653static int encode_calling(struct msgb *msg,
654 const struct gsm_mncc_number *calling)
Harald Welte0c389302009-06-10 12:08:54 +0800655{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800656 return encode_callerid(msg, GSM48_IE_CALLING_BCD, calling);
Harald Welte0c389302009-06-10 12:08:54 +0800657}
658
659/* encode 'connected number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800660static int encode_connected(struct msgb *msg,
661 const struct gsm_mncc_number *connected)
Harald Welte0c389302009-06-10 12:08:54 +0800662{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800663 return encode_callerid(msg, GSM48_IE_CONN_BCD, connected);
Harald Welte0c389302009-06-10 12:08:54 +0800664}
665
666/* encode 'redirecting number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800667static int encode_redirecting(struct msgb *msg,
668 const struct gsm_mncc_number *redirecting)
Harald Welte0c389302009-06-10 12:08:54 +0800669{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800670 return encode_callerid(msg, GSM48_IE_REDIR_BCD, redirecting);
Harald Welte0c389302009-06-10 12:08:54 +0800671}
672
673/* decode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800674static int decode_facility(struct gsm_mncc_facility *facility,
Harald Welte0c389302009-06-10 12:08:54 +0800675 const u_int8_t *lv)
676{
677 u_int8_t in_len = lv[0];
678
679 if (in_len < 1)
680 return -EINVAL;
681
Harald Welte4bfdfe72009-06-10 23:11:52 +0800682 if (in_len > sizeof(facility->info))
Harald Welte0c389302009-06-10 12:08:54 +0800683 return -EINVAL;
684
Harald Welte4bfdfe72009-06-10 23:11:52 +0800685 memcpy(facility->info, lv+1, in_len);
686 facility->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800687
688 return 0;
689}
690
691/* encode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800692static int encode_facility(struct msgb *msg, int lv_only,
693 const struct gsm_mncc_facility *facility)
Harald Welte0c389302009-06-10 12:08:54 +0800694{
695 u_int8_t lv[GSM_MAX_FACILITY + 1];
696
Harald Welte4bfdfe72009-06-10 23:11:52 +0800697 if (facility->len < 1 || facility->len > GSM_MAX_FACILITY)
Harald Welte0c389302009-06-10 12:08:54 +0800698 return -EINVAL;
699
Harald Welte4bfdfe72009-06-10 23:11:52 +0800700 memcpy(lv+1, facility->info, facility->len);
701 lv[0] = facility->len;
Harald Welte0c389302009-06-10 12:08:54 +0800702 if (lv_only)
703 msgb_lv_put(msg, lv[0], lv+1);
704 else
705 msgb_tlv_put(msg, GSM48_IE_FACILITY, lv[0], lv+1);
706
707 return 0;
708}
709
710/* decode 'notify' */
711static int decode_notify(int *notify, const u_int8_t *v)
712{
713 *notify = v[0] & 0x7f;
714
715 return 0;
716}
717
718/* encode 'notify' */
719static int encode_notify(struct msgb *msg, int notify)
720{
721 msgb_v_put(msg, notify | 0x80);
722
723 return 0;
724}
725
726/* encode 'signal' */
727static int encode_signal(struct msgb *msg, int signal)
728{
729 msgb_tv_put(msg, GSM48_IE_SIGNAL, signal);
730
731 return 0;
732}
733
734/* decode 'keypad' */
735static int decode_keypad(int *keypad, const u_int8_t *lv)
736{
737 u_int8_t in_len = lv[0];
738
739 if (in_len < 1)
740 return -EINVAL;
741
742 *keypad = lv[1] & 0x7f;
743
744 return 0;
745}
746
747/* encode 'keypad' */
748static int encode_keypad(struct msgb *msg, int keypad)
749{
750 msgb_tv_put(msg, GSM48_IE_KPD_FACILITY, keypad);
751
752 return 0;
753}
754
755/* decode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800756static int decode_progress(struct gsm_mncc_progress *progress,
Harald Welte0c389302009-06-10 12:08:54 +0800757 const u_int8_t *lv)
758{
759 u_int8_t in_len = lv[0];
760
761 if (in_len < 2)
762 return -EINVAL;
763
Harald Welte4bfdfe72009-06-10 23:11:52 +0800764 progress->coding = (lv[1] & 0x60) >> 5;
765 progress->location = lv[1] & 0x0f;
766 progress->descr = lv[2] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800767
768 return 0;
769}
770
771/* encode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800772static int encode_progress(struct msgb *msg, int lv_only,
773 const struct gsm_mncc_progress *p)
Harald Welte0c389302009-06-10 12:08:54 +0800774{
775 u_int8_t lv[3];
776
777 lv[0] = 2;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800778 lv[1] = 0x80 | ((p->coding & 0x3) << 5) | (p->location & 0xf);
779 lv[2] = 0x80 | (p->descr & 0x7f);
Harald Welte0c389302009-06-10 12:08:54 +0800780 if (lv_only)
781 msgb_lv_put(msg, lv[0], lv+1);
782 else
783 msgb_tlv_put(msg, GSM48_IE_PROGR_IND, lv[0], lv+1);
784
785 return 0;
786}
787
788/* decode 'user-user' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800789static int decode_useruser(struct gsm_mncc_useruser *uu,
Harald Welte0c389302009-06-10 12:08:54 +0800790 const u_int8_t *lv)
791{
792 u_int8_t in_len = lv[0];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800793 char *info = uu->info;
794 int info_len = sizeof(uu->info);
Harald Welte0c389302009-06-10 12:08:54 +0800795 int i;
796
797 if (in_len < 1)
798 return -EINVAL;
799
Harald Welte4bfdfe72009-06-10 23:11:52 +0800800 uu->proto = lv[1];
Harald Welte0c389302009-06-10 12:08:54 +0800801
802 for (i = 2; i <= in_len; i++) {
803 info_len--;
804 if (info_len <= 1)
805 break;
806 *info++ = lv[i];
807 }
808 if (info_len >= 1)
809 *info++ = '\0';
810
811 return 0;
812}
813
814/* encode 'useruser' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800815static int encode_useruser(struct msgb *msg, int lv_only,
816 const struct gsm_mncc_useruser *uu)
Harald Welte0c389302009-06-10 12:08:54 +0800817{
818 u_int8_t lv[GSM_MAX_USERUSER + 2];
819
Harald Welte4bfdfe72009-06-10 23:11:52 +0800820 if (strlen(uu->info) > GSM_MAX_USERUSER)
Harald Welte0c389302009-06-10 12:08:54 +0800821 return -EINVAL;
822
Harald Welte4bfdfe72009-06-10 23:11:52 +0800823 lv[0] = 1 + strlen(uu->info);
824 lv[1] = uu->proto;
825 memcpy(lv + 2, uu->info, strlen(uu->info));
Harald Welte0c389302009-06-10 12:08:54 +0800826 if (lv_only)
827 msgb_lv_put(msg, lv[0], lv+1);
828 else
829 msgb_tlv_put(msg, GSM48_IE_USER_USER, lv[0], lv+1);
830
831 return 0;
832}
833
834/* decode 'ss version' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800835static int decode_ssversion(struct gsm_mncc_ssversion *ssv,
Harald Welte0c389302009-06-10 12:08:54 +0800836 const u_int8_t *lv)
837{
838 u_int8_t in_len = lv[0];
839
Harald Welte4bfdfe72009-06-10 23:11:52 +0800840 if (in_len < 1 || in_len < sizeof(ssv->info))
Harald Welte0c389302009-06-10 12:08:54 +0800841 return -EINVAL;
842
Harald Welte4bfdfe72009-06-10 23:11:52 +0800843 memcpy(ssv->info, lv + 1, in_len);
844 ssv->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800845
846 return 0;
847}
848
849/* encode 'more data' */
850static int encode_more(struct msgb *msg)
851{
852 u_int8_t *ie;
853
854 ie = msgb_put(msg, 1);
855 ie[0] = GSM48_IE_MORE_DATA;
856
857 return 0;
858}
859
Holger Freyther429e7762008-12-30 13:28:30 +0000860/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000861int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000862{
Harald Welte8470bf22008-12-25 23:28:35 +0000863 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000864 struct gsm48_hdr *gh;
865
Harald Welte8470bf22008-12-25 23:28:35 +0000866 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000867
868 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
869 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000870 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000871 gh->data[0] = cause;
872
Harald Weltedb253af2008-12-30 17:56:55 +0000873 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
874
Harald Welte39e2ead2009-07-23 21:13:03 +0200875 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000876}
877
878/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000879int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000880{
Harald Welte8470bf22008-12-25 23:28:35 +0000881 struct gsm_bts *bts = lchan->ts->trx->bts;
882 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000883 struct gsm48_hdr *gh;
884 struct gsm48_loc_area_id *lai;
885 u_int8_t *mid;
Holger Freyther07cc8d82008-12-29 06:23:46 +0000886 int ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000887
Harald Welte8470bf22008-12-25 23:28:35 +0000888 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000889
890 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
891 gh->proto_discr = GSM48_PDISC_MM;
892 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
893
894 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000895 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000896 bts->network->network_code, bts->location_area_code);
897
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200898 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200899 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000900
901 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
902
Harald Welte39e2ead2009-07-23 21:13:03 +0200903 ret = gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000904
Harald Welteee5ad162009-08-09 19:07:00 +0200905 /* send MM INFO with network name */
Harald Weltedb253af2008-12-30 17:56:55 +0000906 ret = gsm48_tx_mm_info(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000907
Holger Freyther07cc8d82008-12-29 06:23:46 +0000908 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000909}
910
Harald Weltebf5e8df2009-02-03 12:59:45 +0000911/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000912static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
913{
914 struct msgb *msg = gsm48_msgb_alloc();
915 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000916
Harald Welte231ad4f2008-12-27 11:15:38 +0000917 msg->lchan = lchan;
918
919 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
920 gh->proto_discr = GSM48_PDISC_MM;
921 gh->msg_type = GSM48_MT_MM_ID_REQ;
922 gh->data[0] = id_type;
923
Harald Welte39e2ead2009-07-23 21:13:03 +0200924 return gsm48_sendmsg(msg, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000925}
926
Harald Welte231ad4f2008-12-27 11:15:38 +0000927
Harald Weltebf5e8df2009-02-03 12:59:45 +0000928/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000929static int mm_rx_id_resp(struct msgb *msg)
930{
931 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000932 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200933 struct gsm_bts *bts = lchan->ts->trx->bts;
934 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000935 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200936 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000937
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200938 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000939 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000940 mi_type, mi_string);
941
Harald Welte75a983f2008-12-27 21:34:06 +0000942 switch (mi_type) {
943 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200944 /* look up subscriber based on IMSI, create if not found */
945 if (!lchan->subscr) {
946 lchan->subscr = subscr_get_by_imsi(net, mi_string);
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200947 if (!lchan->subscr)
948 lchan->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200949 }
Holger Freyther73487a22008-12-31 18:53:57 +0000950 if (lchan->loc_operation)
951 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000952 break;
953 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000954 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000955 /* update subscribe <-> IMEI mapping */
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200956 if (lchan->subscr) {
Harald Welte75a983f2008-12-27 21:34:06 +0000957 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200958 db_sync_equipment(&lchan->subscr->equipment);
959 }
Holger Freyther73487a22008-12-31 18:53:57 +0000960 if (lchan->loc_operation)
961 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000962 break;
963 }
Holger Freyther73487a22008-12-31 18:53:57 +0000964
965 /* Check if we can let the mobile station enter */
Holger Freytherd51524f2009-06-09 08:27:07 +0000966 return gsm0408_authorize(lchan, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000967}
968
Harald Welte255539c2008-12-28 02:26:27 +0000969
970static void loc_upd_rej_cb(void *data)
971{
972 struct gsm_lchan *lchan = data;
973
Holger Freyther73487a22008-12-31 18:53:57 +0000974 release_loc_updating_req(lchan);
Holger Freythere97f7fb2008-12-31 18:52:11 +0000975 gsm0408_loc_upd_rej(lchan, reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000976 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000977}
978
Holger Freytherb7193e42008-12-29 17:44:08 +0000979static void schedule_reject(struct gsm_lchan *lchan)
980{
Holger Freyther73487a22008-12-31 18:53:57 +0000981 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
982 lchan->loc_operation->updating_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000983 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000984}
985
Harald Welte2a139372009-02-22 21:14:55 +0000986static const char *lupd_name(u_int8_t type)
987{
988 switch (type) {
989 case GSM48_LUPD_NORMAL:
990 return "NORMAL";
991 case GSM48_LUPD_PERIODIC:
992 return "PEROIDOC";
993 case GSM48_LUPD_IMSI_ATT:
994 return "IMSI ATTACH";
995 default:
996 return "UNKNOWN";
997 }
998}
999
Harald Weltebf5e8df2009-02-03 12:59:45 +00001000/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +00001001static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001002{
Harald Welte8470bf22008-12-25 23:28:35 +00001003 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001004 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001005 struct gsm_subscriber *subscr = NULL;
Harald Welte255539c2008-12-28 02:26:27 +00001006 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +02001007 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +00001008 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001009 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +00001010 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001011
Harald Welte8470bf22008-12-25 23:28:35 +00001012 lu = (struct gsm48_loc_upd_req *) gh->data;
1013
1014 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +00001015
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001016 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +00001017
Harald Weltea0368542009-06-27 02:58:43 +02001018 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +00001019 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +00001020
Holger Freythereaf04692009-06-06 13:54:44 +00001021 /*
1022 * Pseudo Spoof detection: Just drop a second/concurrent
1023 * location updating request.
1024 */
1025 if (lchan->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +02001026 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Freythereaf04692009-06-06 13:54:44 +00001027 lchan->loc_operation);
1028 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
1029 return 0;
1030 }
1031
Holger Freyther73487a22008-12-31 18:53:57 +00001032 allocate_loc_updating_req(lchan);
1033
Harald Welte52b1f982008-12-23 20:25:15 +00001034 switch (mi_type) {
1035 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001036 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001037 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001038 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001039 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001040
Jan Luebbe370b41d2009-08-12 10:19:34 +02001041 /* look up subscriber based on IMSI, create if not found */
1042 subscr = subscr_get_by_imsi(bts->network, mi_string);
1043 if (!subscr) {
1044 subscr = db_create_subscriber(bts->network, mi_string);
1045 }
Harald Welte4b634542008-12-27 01:55:51 +00001046 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001047 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001048 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001049 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001050 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001051 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001052
Harald Welte52b1f982008-12-23 20:25:15 +00001053 /* look up the subscriber based on TMSI, request IMSI if it fails */
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001054 subscr = subscr_get_by_tmsi(bts->network,
1055 tmsi_from_string(mi_string));
Harald Welte52b1f982008-12-23 20:25:15 +00001056 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +00001057 /* send IDENTITY REQUEST message to get IMSI */
Harald Welte255539c2008-12-28 02:26:27 +00001058 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +00001059 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +00001060 }
1061 break;
1062 case GSM_MI_TYPE_IMEI:
1063 case GSM_MI_TYPE_IMEISV:
1064 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +02001065 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001066 break;
1067 default:
Harald Weltea0368542009-06-27 02:58:43 +02001068 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001069 break;
1070 }
1071
Harald Welte24516ea2009-07-04 10:18:00 +02001072 /* schedule the reject timer */
1073 schedule_reject(lchan);
1074
Harald Welte4bfdfe72009-06-10 23:11:52 +08001075 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +02001076 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001077 /* FIXME: request id? close channel? */
1078 return -EINVAL;
1079 }
1080
Harald Welte255539c2008-12-28 02:26:27 +00001081 lchan->subscr = subscr;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001082 lchan->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +00001083
Harald Welte24516ea2009-07-04 10:18:00 +02001084 /* check if we can let the subscriber into our network immediately
1085 * or if we need to wait for identity responses. */
Holger Freytherd51524f2009-06-09 08:27:07 +00001086 return gsm0408_authorize(lchan, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001087}
1088
Harald Welte13cac662009-07-29 12:10:35 +02001089/* 9.1.5 Channel mode modify: Modify the mode on the MS side */
Harald Welte7584aea2009-02-11 11:44:12 +00001090int gsm48_tx_chan_mode_modify(struct gsm_lchan *lchan, u_int8_t mode)
1091{
1092 struct msgb *msg = gsm48_msgb_alloc();
1093 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1094 struct gsm48_chan_mode_modify *cmm =
1095 (struct gsm48_chan_mode_modify *) msgb_put(msg, sizeof(*cmm));
Harald Welte4a543e82009-02-28 13:17:55 +00001096 u_int16_t arfcn = lchan->ts->trx->arfcn & 0x3ff;
Harald Welte7584aea2009-02-11 11:44:12 +00001097
Harald Welte4a543e82009-02-28 13:17:55 +00001098 DEBUGP(DRR, "-> CHANNEL MODE MODIFY mode=0x%02x\n", mode);
Harald Welte7ccf7782009-02-17 01:43:01 +00001099
Harald Welte45b407a2009-05-23 15:51:12 +00001100 lchan->tch_mode = mode;
Harald Welte7584aea2009-02-11 11:44:12 +00001101 msg->lchan = lchan;
1102 gh->proto_discr = GSM48_PDISC_RR;
1103 gh->msg_type = GSM48_MT_RR_CHAN_MODE_MODIF;
1104
1105 /* fill the channel information element, this code
1106 * should probably be shared with rsl_rx_chan_rqd() */
1107 cmm->chan_desc.chan_nr = lchan2chan_nr(lchan);
Harald Welte02b0e092009-02-28 13:11:07 +00001108 cmm->chan_desc.h0.tsc = lchan->ts->trx->bts->tsc;
Harald Welte7584aea2009-02-11 11:44:12 +00001109 cmm->chan_desc.h0.h = 0;
1110 cmm->chan_desc.h0.arfcn_high = arfcn >> 8;
1111 cmm->chan_desc.h0.arfcn_low = arfcn & 0xff;
1112 cmm->mode = mode;
1113
Harald Welte39e2ead2009-07-23 21:13:03 +02001114 return gsm48_sendmsg(msg, NULL);
Harald Welte7584aea2009-02-11 11:44:12 +00001115}
1116
Harald Welte4bfdfe72009-06-10 23:11:52 +08001117#if 0
1118static u_int8_t to_bcd8(u_int8_t val)
1119{
1120 return ((val / 10) << 4) | (val % 10);
1121}
1122#endif
1123
Harald Weltedb253af2008-12-30 17:56:55 +00001124/* Section 9.2.15a */
1125int gsm48_tx_mm_info(struct gsm_lchan *lchan)
1126{
1127 struct msgb *msg = gsm48_msgb_alloc();
1128 struct gsm48_hdr *gh;
1129 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +00001130 u_int8_t *ptr8;
1131 u_int16_t *ptr16;
Daniel Willmanneea93372009-08-13 03:42:07 +02001132 int name_len, name_pad;
Harald Weltedb253af2008-12-30 17:56:55 +00001133 int i;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001134#if 0
1135 time_t cur_t;
1136 struct tm* cur_time;
1137 int tz15min;
1138#endif
Harald Weltedb253af2008-12-30 17:56:55 +00001139
1140 msg->lchan = lchan;
1141
1142 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1143 gh->proto_discr = GSM48_PDISC_MM;
1144 gh->msg_type = GSM48_MT_MM_INFO;
1145
1146 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001147#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001148 name_len = strlen(net->name_long);
1149 /* 10.5.3.5a */
1150 ptr8 = msgb_put(msg, 3);
1151 ptr8[0] = GSM48_IE_NAME_LONG;
1152 ptr8[1] = name_len*2 +1;
1153 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1154
1155 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
1156 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001157 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +00001158
1159 /* FIXME: Use Cell Broadcast, not UCS-2, since
1160 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +02001161#endif
1162 name_len = (strlen(net->name_long)*7)/8;
1163 name_pad = (8 - strlen(net->name_long)*7)%8;
1164 if (name_pad > 0)
1165 name_len++;
1166 /* 10.5.3.5a */
1167 ptr8 = msgb_put(msg, 3);
1168 ptr8[0] = GSM48_IE_NAME_LONG;
1169 ptr8[1] = name_len +1;
1170 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1171
1172 ptr8 = msgb_put(msg, name_len);
1173 gsm_7bit_encode(ptr8, net->name_long);
1174
Harald Weltedb253af2008-12-30 17:56:55 +00001175 }
1176
1177 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001178#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001179 name_len = strlen(net->name_short);
1180 /* 10.5.3.5a */
1181 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +02001182 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +00001183 ptr8[1] = name_len*2 + 1;
1184 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1185
Harald Weltee872cb12009-01-01 00:33:37 +00001186 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +00001187 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001188 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +02001189#endif
1190 name_len = (strlen(net->name_short)*7)/8;
1191 name_pad = (8 - strlen(net->name_short)*7)%8;
1192 if (name_pad > 0)
1193 name_len++;
1194 /* 10.5.3.5a */
1195 ptr8 = (u_int8_t *) msgb_put(msg, 3);
1196 ptr8[0] = GSM48_IE_NAME_SHORT;
1197 ptr8[1] = name_len +1;
1198 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1199
1200 ptr8 = msgb_put(msg, name_len);
1201 gsm_7bit_encode(ptr8, net->name_short);
1202
Harald Weltedb253af2008-12-30 17:56:55 +00001203 }
1204
1205#if 0
1206 /* Section 10.5.3.9 */
1207 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001208 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +00001209 ptr8 = msgb_put(msg, 8);
1210 ptr8[0] = GSM48_IE_NET_TIME_TZ;
1211 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
1212 ptr8[2] = to_bcd8(cur_time->tm_mon);
1213 ptr8[3] = to_bcd8(cur_time->tm_mday);
1214 ptr8[4] = to_bcd8(cur_time->tm_hour);
1215 ptr8[5] = to_bcd8(cur_time->tm_min);
1216 ptr8[6] = to_bcd8(cur_time->tm_sec);
1217 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
1218 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001219 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +00001220 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001221 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +00001222#endif
1223
Daniel Willmanneea93372009-08-13 03:42:07 +02001224 DEBUGP(DMM, "-> MM INFO\n");
1225
Harald Welte39e2ead2009-07-23 21:13:03 +02001226 return gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +00001227}
1228
Harald Welte7984d5c2009-08-12 22:56:50 +02001229/* Section 9.2.2 */
1230int gsm48_tx_mm_auth_req(struct gsm_lchan *lchan, u_int8_t *rand)
1231{
1232 struct msgb *msg = gsm48_msgb_alloc();
1233 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +02001234 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +02001235
1236 DEBUGP(DMM, "-> AUTH REQ\n");
1237
1238 msg->lchan = lchan;
1239 gh->proto_discr = GSM48_PDISC_MM;
1240 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
1241
Sylvain Munaut849f5542009-09-27 11:10:17 +02001242 /* Key Sequence: FIXME fixed to 0 */
1243 ar->key_seq = 0;
1244
Harald Welte7984d5c2009-08-12 22:56:50 +02001245 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +02001246 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +02001247 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +02001248
1249 return gsm48_sendmsg(msg, NULL);
1250}
1251
1252/* Section 9.2.1 */
1253int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan)
1254{
1255 DEBUGP(DMM, "-> AUTH REJECT\n");
1256 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
1257}
1258
Harald Welte4b634542008-12-27 01:55:51 +00001259static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
1260{
Harald Welte4b634542008-12-27 01:55:51 +00001261 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001262 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +00001263}
Harald Welteba4cf162009-01-10 01:49:35 +00001264
1265/* 9.2.6 CM service reject */
1266static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
1267 enum gsm48_reject_value value)
1268{
1269 struct msgb *msg = gsm48_msgb_alloc();
1270 struct gsm48_hdr *gh;
1271
1272 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1273
1274 msg->lchan = lchan;
1275 use_lchan(lchan);
1276
1277 gh->proto_discr = GSM48_PDISC_MM;
1278 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
1279 gh->data[0] = value;
1280 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
1281
Harald Welte39e2ead2009-07-23 21:13:03 +02001282 return gsm48_sendmsg(msg, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +00001283}
1284
Harald Welte4ed0e922009-01-10 03:17:30 +00001285/*
1286 * Handle CM Service Requests
1287 * a) Verify that the packet is long enough to contain the information
1288 * we require otherwsie reject with INCORRECT_MESSAGE
1289 * b) Try to parse the TMSI. If we do not have one reject
1290 * c) Check that we know the subscriber with the TMSI otherwise reject
1291 * with a HLR cause
1292 * d) Set the subscriber on the gsm_lchan and accept
1293 */
Harald Welte4b634542008-12-27 01:55:51 +00001294static int gsm48_rx_mm_serv_req(struct msgb *msg)
1295{
Harald Welteba4cf162009-01-10 01:49:35 +00001296 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001297 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +00001298
Harald Welte9176bd42009-07-23 18:46:00 +02001299 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welteba4cf162009-01-10 01:49:35 +00001300 struct gsm_subscriber *subscr;
1301 struct gsm48_hdr *gh = msgb_l3(msg);
1302 struct gsm48_service_request *req =
1303 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +00001304 /* unfortunately in Phase1 the classmar2 length is variable */
1305 u_int8_t classmark2_len = gh->data[1];
1306 u_int8_t *classmark2 = gh->data+2;
1307 u_int8_t mi_len = *(classmark2 + classmark2_len);
1308 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +00001309
Harald Weltec9e02182009-05-01 19:07:53 +00001310 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +00001311 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +00001312 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001313 return gsm48_tx_mm_serv_rej(msg->lchan,
1314 GSM48_REJECT_INCORRECT_MESSAGE);
1315 }
1316
1317 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +00001318 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001319 return gsm48_tx_mm_serv_rej(msg->lchan,
1320 GSM48_REJECT_INCORRECT_MESSAGE);
1321 }
1322
Harald Weltec9e02182009-05-01 19:07:53 +00001323 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +00001324 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +00001325 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +00001326 return gsm48_tx_mm_serv_rej(msg->lchan,
1327 GSM48_REJECT_INCORRECT_MESSAGE);
1328 }
1329
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001330 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001331 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +00001332 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +00001333
Harald Welte3ac7f102009-08-10 10:12:45 +02001334 if (is_siemens_bts(bts))
1335 send_siemens_mrpci(msg->lchan, classmark2-1);
1336
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001337 subscr = subscr_get_by_tmsi(bts->network,
1338 tmsi_from_string(mi_string));
Holger Freythereb443982009-06-04 13:58:42 +00001339
Harald Welte2a139372009-02-22 21:14:55 +00001340 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001341 if (!subscr)
1342 return gsm48_tx_mm_serv_rej(msg->lchan,
1343 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
1344
1345 if (!msg->lchan->subscr)
1346 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +00001347 else if (msg->lchan->subscr != subscr) {
1348 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1349 subscr_put(subscr);
1350 }
1351
Harald Weltec2e302d2009-07-05 14:08:13 +02001352 subscr->equipment.classmark2_len = classmark2_len;
1353 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1354 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001355
Harald Welte4b634542008-12-27 01:55:51 +00001356 return gsm48_tx_mm_serv_ack(msg->lchan);
1357}
1358
Harald Welte2a139372009-02-22 21:14:55 +00001359static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1360{
Harald Welte9176bd42009-07-23 18:46:00 +02001361 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001362 struct gsm48_hdr *gh = msgb_l3(msg);
1363 struct gsm48_imsi_detach_ind *idi =
1364 (struct gsm48_imsi_detach_ind *) gh->data;
1365 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001366 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001367 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001368
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001369 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001370 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1371 mi_type, mi_string);
1372
1373 switch (mi_type) {
1374 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001375 subscr = subscr_get_by_tmsi(bts->network,
1376 tmsi_from_string(mi_string));
Harald Welte2a139372009-02-22 21:14:55 +00001377 break;
1378 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001379 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001380 break;
1381 case GSM_MI_TYPE_IMEI:
1382 case GSM_MI_TYPE_IMEISV:
1383 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001384 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001385 break;
1386 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001387 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001388 break;
1389 }
1390
Holger Freyther4a49e772009-04-12 05:37:29 +00001391 if (subscr) {
1392 subscr_update(subscr, msg->trx->bts,
1393 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +00001394 DEBUGP(DMM, "Subscriber: %s\n",
1395 subscr->name ? subscr->name : subscr->imsi);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001396
1397 subscr->equipment.classmark1 = idi->classmark1;
1398 db_sync_equipment(&subscr->equipment);
1399
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001400 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001401 } else
Harald Welte2a139372009-02-22 21:14:55 +00001402 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1403
Harald Welte2a139372009-02-22 21:14:55 +00001404 return 0;
1405}
1406
Harald Welted2a7f5a2009-06-05 20:08:20 +00001407static int gsm48_rx_mm_status(struct msgb *msg)
1408{
1409 struct gsm48_hdr *gh = msgb_l3(msg);
1410
1411 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1412
1413 return 0;
1414}
1415
Harald Weltebf5e8df2009-02-03 12:59:45 +00001416/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001417static int gsm0408_rcv_mm(struct msgb *msg)
1418{
1419 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001420 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001421
1422 switch (gh->msg_type & 0xbf) {
1423 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001424 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001425 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001426 break;
1427 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001428 rc = mm_rx_id_resp(msg);
1429 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001430 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001431 rc = gsm48_rx_mm_serv_req(msg);
1432 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001433 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001434 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001435 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001436 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001437 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1438 msg->lchan->subscr ?
1439 msg->lchan->subscr->imsi :
1440 "unknown subscriber");
1441 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001442 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001443 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1444 break;
1445 case GSM48_MT_MM_CM_REEST_REQ:
1446 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1447 break;
1448 case GSM48_MT_MM_AUTH_RESP:
1449 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001450 break;
1451 default:
1452 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
1453 gh->msg_type);
1454 break;
1455 }
1456
1457 return rc;
1458}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001459
Harald Welte2d35ae62009-02-06 12:02:13 +00001460/* Receive a PAGING RESPONSE message from the MS */
1461static int gsm48_rr_rx_pag_resp(struct msgb *msg)
1462{
Harald Welte9176bd42009-07-23 18:46:00 +02001463 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001464 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001465 u_int8_t *classmark2_lv = gh->data + 1;
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001466 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001467 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001468 struct gsm_subscriber *subscr = NULL;
Harald Welte2d35ae62009-02-06 12:02:13 +00001469 int rc = 0;
1470
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001471 gsm48_paging_extract_mi(msg, mi_string, &mi_type);
Harald Welte2d35ae62009-02-06 12:02:13 +00001472 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1473 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001474
Harald Weltefe18d8f2009-02-22 21:14:24 +00001475 switch (mi_type) {
1476 case GSM_MI_TYPE_TMSI:
Holger Hans Peter Freyther22230252009-08-19 12:53:57 +02001477 subscr = subscr_get_by_tmsi(bts->network,
1478 tmsi_from_string(mi_string));
Harald Weltefe18d8f2009-02-22 21:14:24 +00001479 break;
1480 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001481 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001482 break;
1483 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001484
1485 if (!subscr) {
1486 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001487 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001488 return -EINVAL;
1489 }
1490 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001491 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001492
Harald Weltec2e302d2009-07-05 14:08:13 +02001493 subscr->equipment.classmark2_len = *classmark2_lv;
1494 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1495 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001496
Holger Hans Peter Freyther3ee5d3e2009-08-21 05:18:21 +02001497 rc = gsm48_handle_paging_resp(msg, subscr);
Harald Welte2d35ae62009-02-06 12:02:13 +00001498 return rc;
1499}
1500
Harald Weltef7c43522009-06-09 20:24:21 +00001501static int gsm48_rx_rr_classmark(struct msgb *msg)
1502{
1503 struct gsm48_hdr *gh = msgb_l3(msg);
1504 struct gsm_subscriber *subscr = msg->lchan->subscr;
1505 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1506 u_int8_t cm2_len, cm3_len = 0;
1507 u_int8_t *cm2, *cm3 = NULL;
1508
1509 DEBUGP(DRR, "CLASSMARK CHANGE ");
1510
1511 /* classmark 2 */
1512 cm2_len = gh->data[0];
1513 cm2 = &gh->data[1];
1514 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1515
1516 if (payload_len > cm2_len + 1) {
1517 /* we must have a classmark3 */
1518 if (gh->data[cm2_len+1] != 0x20) {
1519 DEBUGPC(DRR, "ERR CM3 TAG\n");
1520 return -EINVAL;
1521 }
1522 if (cm2_len > 3) {
1523 DEBUGPC(DRR, "CM2 too long!\n");
1524 return -EINVAL;
1525 }
1526
1527 cm3_len = gh->data[cm2_len+2];
1528 cm3 = &gh->data[cm2_len+3];
1529 if (cm3_len > 14) {
1530 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1531 return -EINVAL;
1532 }
1533 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1534 }
1535 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001536 subscr->equipment.classmark2_len = cm2_len;
1537 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001538 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001539 subscr->equipment.classmark3_len = cm3_len;
1540 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001541 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001542 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001543 }
1544
Harald Weltef7c43522009-06-09 20:24:21 +00001545 return 0;
1546}
1547
Harald Weltecf5b3592009-05-01 18:28:42 +00001548static int gsm48_rx_rr_status(struct msgb *msg)
1549{
1550 struct gsm48_hdr *gh = msgb_l3(msg);
1551
1552 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1553 rr_cause_name(gh->data[0]));
1554
1555 return 0;
1556}
1557
Harald Weltef7c43522009-06-09 20:24:21 +00001558static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1559{
1560 struct gsm48_hdr *gh = msgb_l3(msg);
1561 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1562 static struct gsm_meas_rep meas_rep;
1563
Harald Welte10d0e672009-06-27 02:53:10 +02001564 DEBUGP(DMEAS, "MEASUREMENT REPORT ");
Harald Weltef7c43522009-06-09 20:24:21 +00001565 parse_meas_rep(&meas_rep, gh->data, payload_len);
1566 if (meas_rep.flags & MEAS_REP_F_DTX)
Harald Welte10d0e672009-06-27 02:53:10 +02001567 DEBUGPC(DMEAS, "DTX ");
Harald Weltef7c43522009-06-09 20:24:21 +00001568 if (meas_rep.flags & MEAS_REP_F_BA1)
Harald Welte10d0e672009-06-27 02:53:10 +02001569 DEBUGPC(DMEAS, "BA1 ");
Harald Weltef7c43522009-06-09 20:24:21 +00001570 if (!(meas_rep.flags & MEAS_REP_F_VALID))
Harald Welte10d0e672009-06-27 02:53:10 +02001571 DEBUGPC(DMEAS, "NOT VALID ");
Harald Weltef7c43522009-06-09 20:24:21 +00001572 else
Harald Welte10d0e672009-06-27 02:53:10 +02001573 DEBUGPC(DMEAS, "FULL(lev=%u, qual=%u) SUB(lev=%u, qual=%u) ",
Harald Weltef7c43522009-06-09 20:24:21 +00001574 meas_rep.rxlev_full, meas_rep.rxqual_full, meas_rep.rxlev_sub,
1575 meas_rep.rxqual_sub);
1576
Harald Welte10d0e672009-06-27 02:53:10 +02001577 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", meas_rep.num_cell);
Harald Weltef7c43522009-06-09 20:24:21 +00001578
1579 /* FIXME: put the results somwhere */
1580
1581 return 0;
1582}
1583
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001584static int gsm48_rx_rr_app_info(struct msgb *msg)
1585{
1586 struct gsm48_hdr *gh = msgb_l3(msg);
1587 u_int8_t apdu_id_flags;
1588 u_int8_t apdu_len;
1589 u_int8_t *apdu_data;
1590
1591 apdu_id_flags = gh->data[0];
1592 apdu_len = gh->data[1];
1593 apdu_data = gh->data+2;
1594
1595 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1596 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1597
Harald Welte (local)026531e2009-08-16 10:40:10 +02001598 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001599}
1600
1601
Harald Weltebf5e8df2009-02-03 12:59:45 +00001602/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001603static int gsm0408_rcv_rr(struct msgb *msg)
1604{
1605 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001606 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001607
1608 switch (gh->msg_type) {
1609 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001610 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001611 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001612 case GSM48_MT_RR_GPRS_SUSP_REQ:
1613 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1614 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001615 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +00001616 rc = gsm48_rr_rx_pag_resp(msg);
1617 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001618 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
1619 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
Harald Welte13cac662009-07-29 12:10:35 +02001620 /* We've successfully modified the MS side of the channel,
1621 * now go on to modify the BTS side of the channel */
Harald Welte9943c5b2009-07-29 15:41:29 +02001622 msg->lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
Harald Welte2c38aa82009-02-18 03:44:24 +00001623 rc = rsl_chan_mode_modify_req(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001624 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001625 case GSM48_MT_RR_STATUS:
1626 rc = gsm48_rx_rr_status(msg);
1627 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001628 case GSM48_MT_RR_MEAS_REP:
1629 rc = gsm48_rx_rr_meas_rep(msg);
1630 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001631 case GSM48_MT_RR_APP_INFO:
1632 rc = gsm48_rx_rr_app_info(msg);
1633 break;
Harald Welte08d91a52009-08-30 15:37:11 +09001634 case GSM48_MT_RR_CIPH_M_COMPL:
1635 DEBUGP(DRR, "CIPHERING MODE COMPLETE\n");
1636 /* FIXME: check for MI (if any) */
1637 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001638 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001639 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001640 gh->msg_type);
1641 break;
1642 }
1643
Harald Welte2d35ae62009-02-06 12:02:13 +00001644 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001645}
1646
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001647int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
1648 u_int8_t apdu_len, u_int8_t *apdu)
1649{
1650 struct msgb *msg = gsm48_msgb_alloc();
1651 struct gsm48_hdr *gh;
1652
1653 msg->lchan = lchan;
1654
1655 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1656 apdu_id, apdu_len);
1657
1658 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1659 gh->proto_discr = GSM48_PDISC_RR;
1660 gh->msg_type = GSM48_MT_RR_APP_INFO;
1661 gh->data[0] = apdu_id;
1662 gh->data[1] = apdu_len;
1663 memcpy(gh->data+2, apdu, apdu_len);
1664
1665 return gsm48_sendmsg(msg, NULL);
1666}
1667
Harald Welte4bc90a12008-12-27 16:32:52 +00001668/* Call Control */
1669
Harald Welte7584aea2009-02-11 11:44:12 +00001670/* The entire call control code is written in accordance with Figure 7.10c
1671 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1672 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1673 * it for voice */
1674
Harald Welte4bfdfe72009-06-10 23:11:52 +08001675static void new_cc_state(struct gsm_trans *trans, int state)
1676{
1677 if (state > 31 || state < 0)
1678 return;
1679
1680 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001681 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001682
Harald Weltedcaf5652009-07-23 18:56:43 +02001683 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001684}
1685
1686static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001687{
1688 struct msgb *msg = gsm48_msgb_alloc();
1689 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1690 u_int8_t *cause, *call_state;
1691
Harald Welte4bc90a12008-12-27 16:32:52 +00001692 gh->msg_type = GSM48_MT_CC_STATUS;
1693
1694 cause = msgb_put(msg, 3);
1695 cause[0] = 2;
1696 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1697 cause[2] = 0x80 | 30; /* response to status inquiry */
1698
1699 call_state = msgb_put(msg, 1);
1700 call_state[0] = 0xc0 | 0x00;
1701
Harald Welte39e2ead2009-07-23 21:13:03 +02001702 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001703}
1704
Harald Welte6f4b7532008-12-29 00:39:37 +00001705static int gsm48_tx_simple(struct gsm_lchan *lchan,
1706 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001707{
1708 struct msgb *msg = gsm48_msgb_alloc();
1709 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1710
1711 msg->lchan = lchan;
1712
Harald Welte6f4b7532008-12-29 00:39:37 +00001713 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001714 gh->msg_type = msg_type;
1715
Harald Welte39e2ead2009-07-23 21:13:03 +02001716 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001717}
1718
Harald Welte4bfdfe72009-06-10 23:11:52 +08001719static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1720{
Harald Weltedcaf5652009-07-23 18:56:43 +02001721 if (bsc_timer_pending(&trans->cc.timer)) {
1722 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1723 bsc_del_timer(&trans->cc.timer);
1724 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001725 }
1726}
1727
1728static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1729 int msg_type, struct gsm_mncc *mncc)
1730{
1731 struct msgb *msg;
1732
1733 if (trans)
1734 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001735 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001736 "Sending '%s' to MNCC.\n",
1737 trans->lchan->ts->trx->bts->nr,
1738 trans->lchan->ts->trx->nr,
1739 trans->lchan->ts->nr, trans->transaction_id,
1740 (trans->subscr)?(trans->subscr->extension):"-",
1741 get_mncc_name(msg_type));
1742 else
1743 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1744 "Sending '%s' to MNCC.\n",
1745 (trans->subscr)?(trans->subscr->extension):"-",
1746 get_mncc_name(msg_type));
1747 else
1748 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1749 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1750
1751 mncc->msg_type = msg_type;
1752
Harald Welte966636f2009-06-26 19:39:35 +02001753 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001754 if (!msg)
1755 return -ENOMEM;
1756 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1757 msgb_enqueue(&net->upqueue, msg);
1758
1759 return 0;
1760}
1761
1762int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1763 u_int32_t callref, int location, int value)
1764{
1765 struct gsm_mncc rel;
1766
Harald Welte92f70c52009-06-12 01:54:08 +08001767 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001768 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001769 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001770 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1771}
1772
Harald Weltedcaf5652009-07-23 18:56:43 +02001773/* Call Control Specific transaction release.
1774 * gets called by trans_free, DO NOT CALL YOURSELF! */
1775void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001776{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001777 gsm48_stop_cc_timer(trans);
1778
1779 /* send release to L4, if callref still exists */
1780 if (trans->callref) {
1781 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001782 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001783 GSM48_CAUSE_LOC_PRN_S_LU,
1784 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001785 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001786 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001787 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001788 if (trans->lchan)
1789 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001790}
1791
1792static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1793
Harald Welte09e38af2009-02-16 22:52:23 +00001794/* call-back from paging the B-end of the connection */
1795static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001796 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001797{
Harald Welte7ccf7782009-02-17 01:43:01 +00001798 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001799 struct gsm_subscriber *subscr = param;
1800 struct gsm_trans *transt, *tmp;
1801 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001802
Harald Welte09e38af2009-02-16 22:52:23 +00001803 if (hooknum != GSM_HOOK_RR_PAGING)
1804 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001805
1806 if (!subscr)
1807 return -EINVAL;
1808 net = subscr->net;
1809 if (!net) {
1810 DEBUGP(DCC, "Error Network not set!\n");
1811 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001812 }
Harald Welte7584aea2009-02-11 11:44:12 +00001813
Harald Welte4bfdfe72009-06-10 23:11:52 +08001814 /* check all tranactions (without lchan) for subscriber */
1815 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1816 if (transt->subscr != subscr || transt->lchan)
1817 continue;
1818 switch (event) {
1819 case GSM_PAGING_SUCCEEDED:
1820 if (!lchan) // paranoid
1821 break;
1822 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1823 subscr->extension);
1824 /* Assign lchan */
1825 if (!transt->lchan) {
1826 transt->lchan = lchan;
1827 use_lchan(lchan);
1828 }
1829 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001830 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001831 break;
1832 case GSM_PAGING_EXPIRED:
1833 DEBUGP(DCC, "Paging subscr %s expired!\n",
1834 subscr->extension);
1835 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001836 mncc_release_ind(transt->subscr->net, transt,
1837 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001838 GSM48_CAUSE_LOC_PRN_S_LU,
1839 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001840 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001841 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001842 break;
1843 }
1844 }
Harald Welte09e38af2009-02-16 22:52:23 +00001845 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001846}
Harald Welte7584aea2009-02-11 11:44:12 +00001847
Harald Welte805f6442009-07-28 18:25:29 +02001848/* some other part of the code sends us a signal */
1849static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1850 void *handler_data, void *signal_data)
1851{
1852 struct gsm_lchan *lchan = signal_data;
1853 struct gsm_bts_trx_ts *ts;
1854 int rc;
1855
1856 if (subsys != SS_ABISIP)
1857 return 0;
1858
1859 /* in case we use direct BTS-to-BTS RTP */
1860 if (ipacc_rtp_direct)
1861 return 0;
1862
1863 ts = lchan->ts;
1864
1865 switch (signal) {
1866 case S_ABISIP_BIND_ACK:
1867 /* the BTS has successfully bound a TCH to a local ip/port,
1868 * which means we can connect our UDP socket to it */
1869 if (ts->abis_ip.rtp_socket) {
1870 rtp_socket_free(ts->abis_ip.rtp_socket);
1871 ts->abis_ip.rtp_socket = NULL;
1872 }
1873
1874 ts->abis_ip.rtp_socket = rtp_socket_create();
1875 if (!ts->abis_ip.rtp_socket)
1876 goto out_err;
1877
1878 rc = rtp_socket_connect(ts->abis_ip.rtp_socket,
1879 ts->abis_ip.bound_ip,
1880 ts->abis_ip.bound_port);
1881 if (rc < 0)
1882 goto out_err;
1883 break;
1884 case S_ABISIP_DISC_IND:
1885 /* the BTS tells us a RTP stream has been disconnected */
1886 if (ts->abis_ip.rtp_socket) {
1887 rtp_socket_free(ts->abis_ip.rtp_socket);
1888 ts->abis_ip.rtp_socket = NULL;
1889 }
1890 break;
1891 }
1892
1893 return 0;
1894out_err:
1895 /* FIXME: do something */
1896 return 0;
1897}
1898
1899/* bind rtp proxy to local IP/port and tell BTS to connect to it */
1900static int ipacc_connect_proxy_bind(struct gsm_lchan *lchan)
1901{
1902 struct gsm_bts_trx_ts *ts = lchan->ts;
1903 struct rtp_socket *rs = ts->abis_ip.rtp_socket;
1904 int rc;
1905
1906 rc = rsl_ipacc_connect(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1907 ntohs(rs->rtp.sin_local.sin_port),
1908 ts->abis_ip.conn_id,
1909 /* FIXME: use RTP payload of bound socket, not BTS*/
1910 ts->abis_ip.rtp_payload2);
1911
1912 return rc;
1913}
1914
Harald Welte49f48b82009-02-17 15:29:33 +00001915/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001916static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001917{
Harald Welte11fa29c2009-02-19 17:24:39 +00001918 struct gsm_bts *bts = lchan->ts->trx->bts;
1919 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte49f48b82009-02-17 15:29:33 +00001920 struct gsm_bts_trx_ts *ts;
Harald Welte805f6442009-07-28 18:25:29 +02001921 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001922
Harald Welte11fa29c2009-02-19 17:24:39 +00001923 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1924 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1925 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1926
1927 if (bts->type != remote_bts->type) {
1928 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1929 return -EINVAL;
1930 }
Harald Welte49f48b82009-02-17 15:29:33 +00001931
Harald Welte11fa29c2009-02-19 17:24:39 +00001932 switch (bts->type) {
Mike Habene2d82272009-10-02 12:19:34 +01001933 case GSM_BTS_TYPE_NANOBTS:
Harald Welte805f6442009-07-28 18:25:29 +02001934 if (!ipacc_rtp_direct) {
1935 /* connect the TCH's to our RTP proxy */
1936 rc = ipacc_connect_proxy_bind(lchan);
1937 if (rc < 0)
1938 return rc;
1939 rc = ipacc_connect_proxy_bind(remote_lchan);
1940
1941 /* connect them with each other */
1942 rtp_socket_proxy(lchan->ts->abis_ip.rtp_socket,
1943 remote_lchan->ts->abis_ip.rtp_socket);
1944 } else {
1945 /* directly connect TCH RTP streams to each other */
1946 ts = remote_lchan->ts;
1947 rc = rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip,
1948 ts->abis_ip.bound_port,
1949 lchan->ts->abis_ip.conn_id,
1950 ts->abis_ip.rtp_payload2);
1951 if (rc < 0)
1952 return rc;
1953 ts = lchan->ts;
1954 rc = rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip,
1955 ts->abis_ip.bound_port,
1956 remote_lchan->ts->abis_ip.conn_id,
1957 ts->abis_ip.rtp_payload2);
1958 }
Harald Welte11fa29c2009-02-19 17:24:39 +00001959 break;
1960 case GSM_BTS_TYPE_BS11:
1961 trau_mux_map_lchan(lchan, remote_lchan);
1962 break;
1963 default:
1964 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welte805f6442009-07-28 18:25:29 +02001965 rc = -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00001966 break;
1967 }
Harald Welte49f48b82009-02-17 15:29:33 +00001968
1969 return 0;
1970}
1971
Harald Welte4bfdfe72009-06-10 23:11:52 +08001972/* bridge channels of two transactions */
1973static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00001974{
Harald Weltedcaf5652009-07-23 18:56:43 +02001975 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
1976 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00001977
Harald Welte4bfdfe72009-06-10 23:11:52 +08001978 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00001979 return -EIO;
1980
Harald Welte4bfdfe72009-06-10 23:11:52 +08001981 if (!trans1->lchan || !trans2->lchan)
1982 return -EIO;
1983
1984 /* through-connect channel */
1985 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001986}
1987
Harald Welte4bfdfe72009-06-10 23:11:52 +08001988/* enable receive of channels to upqueue */
1989static int tch_recv(struct gsm_network *net, struct gsm_mncc *data, int enable)
1990{
1991 struct gsm_trans *trans;
Harald Welte7ccf7782009-02-17 01:43:01 +00001992
Harald Welte4bfdfe72009-06-10 23:11:52 +08001993 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02001994 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001995 if (!trans)
1996 return -EIO;
1997 if (!trans->lchan)
1998 return 0;
1999
2000 // todo IPACCESS
2001 if (enable)
2002 return trau_recv_lchan(trans->lchan, data->callref);
2003 return trau_mux_unmap(NULL, data->callref);
2004}
2005
2006/* send a frame to channel */
2007static int tch_frame(struct gsm_network *net, struct gsm_trau_frame *frame)
2008{
2009 struct gsm_trans *trans;
2010
2011 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002012 trans = trans_find_by_callref(net, frame->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013 if (!trans)
2014 return -EIO;
2015 if (!trans->lchan)
2016 return 0;
2017 if (trans->lchan->type != GSM_LCHAN_TCH_F &&
2018 trans->lchan->type != GSM_LCHAN_TCH_H)
2019 return 0;
2020
2021 // todo IPACCESS
2022 return trau_send_lchan(trans->lchan,
2023 (struct decoded_trau_frame *)frame->data);
2024}
2025
2026
2027static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
2028{
2029 DEBUGP(DCC, "-> STATUS ENQ\n");
2030 return gsm48_cc_tx_status(trans, msg);
2031}
2032
2033static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
2034static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
2035
2036static void gsm48_cc_timeout(void *arg)
2037{
2038 struct gsm_trans *trans = arg;
2039 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08002040 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
2041 int mo_location = GSM48_CAUSE_LOC_USER;
2042 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
2043 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002044 struct gsm_mncc mo_rel, l4_rel;
2045
2046 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
2047 mo_rel.callref = trans->callref;
2048 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2049 l4_rel.callref = trans->callref;
2050
Harald Weltedcaf5652009-07-23 18:56:43 +02002051 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002052 case 0x303:
2053 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002054 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002055 break;
2056 case 0x310:
2057 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002058 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002059 break;
2060 case 0x313:
2061 disconnect = 1;
2062 /* unknown, did not find it in the specs */
2063 break;
2064 case 0x301:
2065 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002066 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002067 break;
2068 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002069 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002070 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002071 gsm48_cc_tx_release(trans, &trans->cc.msg);
2072 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002073 break; /* stay in release state */
2074 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002075 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002076 return;
2077// release = 1;
2078// l4_cause = 14;
2079// break;
2080 case 0x306:
2081 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002082 mo_cause = trans->cc.msg.cause.value;
2083 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002084 break;
2085 case 0x323:
2086 disconnect = 1;
2087 break;
2088 default:
2089 release = 1;
2090 }
2091
2092 if (release && trans->callref) {
2093 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002094 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002095 l4_location, l4_cause);
2096 trans->callref = 0;
2097 }
2098
2099 if (disconnect && trans->callref) {
2100 /* process disconnect towards layer 4 */
2101 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002102 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002103 }
2104
2105 /* process disconnect towards mobile station */
2106 if (disconnect || release) {
2107 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002108 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2109 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2110 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002111 mo_rel.cause.diag_len = 3;
2112
2113 if (disconnect)
2114 gsm48_cc_tx_disconnect(trans, &mo_rel);
2115 if (release)
2116 gsm48_cc_tx_release(trans, &mo_rel);
2117 }
2118
2119}
2120
2121static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2122 int sec, int micro)
2123{
2124 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002125 trans->cc.timer.cb = gsm48_cc_timeout;
2126 trans->cc.timer.data = trans;
2127 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2128 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002129}
2130
2131static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2132{
2133 struct gsm48_hdr *gh = msgb_l3(msg);
2134 u_int8_t msg_type = gh->msg_type & 0xbf;
2135 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2136 struct tlv_parsed tp;
2137 struct gsm_mncc setup;
2138
2139 memset(&setup, 0, sizeof(struct gsm_mncc));
2140 setup.callref = trans->callref;
2141 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2142 /* emergency setup is identified by msg_type */
2143 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2144 setup.emergency = 1;
2145
2146 /* use subscriber as calling party number */
2147 if (trans->subscr) {
2148 setup.fields |= MNCC_F_CALLING;
2149 strncpy(setup.calling.number, trans->subscr->extension,
2150 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002151 strncpy(setup.imsi, trans->subscr->imsi,
2152 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002153 }
2154 /* bearer capability */
2155 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2156 setup.fields |= MNCC_F_BEARER_CAP;
2157 decode_bearer_cap(&setup.bearer_cap,
2158 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2159 }
2160 /* facility */
2161 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2162 setup.fields |= MNCC_F_FACILITY;
2163 decode_facility(&setup.facility,
2164 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2165 }
2166 /* called party bcd number */
2167 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2168 setup.fields |= MNCC_F_CALLED;
2169 decode_called(&setup.called,
2170 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2171 }
2172 /* user-user */
2173 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2174 setup.fields |= MNCC_F_USERUSER;
2175 decode_useruser(&setup.useruser,
2176 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2177 }
2178 /* ss-version */
2179 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2180 setup.fields |= MNCC_F_SSVERSION;
2181 decode_ssversion(&setup.ssversion,
2182 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2183 }
2184 /* CLIR suppression */
2185 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2186 setup.clir.sup = 1;
2187 /* CLIR invocation */
2188 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2189 setup.clir.inv = 1;
2190 /* cc cap */
2191 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2192 setup.fields |= MNCC_F_CCCAP;
2193 decode_cccap(&setup.cccap,
2194 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2195 }
2196
Harald Welte4bfdfe72009-06-10 23:11:52 +08002197 new_cc_state(trans, GSM_CSTATE_INITIATED);
2198
2199 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002200 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002201
Harald Welte13cac662009-07-29 12:10:35 +02002202 /* MNCC code will modify the channel asynchronously, we should
2203 * ipaccess-bind only after the modification has been made to the
2204 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002205 return 0;
2206}
2207
2208static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002209{
2210 struct msgb *msg = gsm48_msgb_alloc();
2211 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002212 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002213 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002214
Harald Welte7ccf7782009-02-17 01:43:01 +00002215 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002216
Harald Welte4bfdfe72009-06-10 23:11:52 +08002217 /* transaction id must not be assigned */
2218 if (trans->transaction_id != 0xff) { /* unasssigned */
2219 DEBUGP(DCC, "TX Setup with assigned transaction. "
2220 "This is not allowed!\n");
2221 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002222 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002223 GSM48_CAUSE_LOC_PRN_S_LU,
2224 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002225 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002226 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002227 return rc;
2228 }
2229
2230 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002231 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2232 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002233 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002234 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002235 GSM48_CAUSE_LOC_PRN_S_LU,
2236 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002237 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002238 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002239 return rc;
2240 }
Harald Welte78283ef2009-07-23 21:36:44 +02002241 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002242
Harald Welte65e74cc2008-12-29 01:55:35 +00002243 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002244
Harald Welte4bfdfe72009-06-10 23:11:52 +08002245 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002246
Harald Welte4bfdfe72009-06-10 23:11:52 +08002247 /* bearer capability */
2248 if (setup->fields & MNCC_F_BEARER_CAP)
2249 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2250 /* facility */
2251 if (setup->fields & MNCC_F_FACILITY)
2252 encode_facility(msg, 0, &setup->facility);
2253 /* progress */
2254 if (setup->fields & MNCC_F_PROGRESS)
2255 encode_progress(msg, 0, &setup->progress);
2256 /* calling party BCD number */
2257 if (setup->fields & MNCC_F_CALLING)
2258 encode_calling(msg, &setup->calling);
2259 /* called party BCD number */
2260 if (setup->fields & MNCC_F_CALLED)
2261 encode_called(msg, &setup->called);
2262 /* user-user */
2263 if (setup->fields & MNCC_F_USERUSER)
2264 encode_useruser(msg, 0, &setup->useruser);
2265 /* redirecting party BCD number */
2266 if (setup->fields & MNCC_F_REDIRECTING)
2267 encode_redirecting(msg, &setup->redirecting);
2268 /* signal */
2269 if (setup->fields & MNCC_F_SIGNAL)
2270 encode_signal(msg, setup->signal);
2271
2272 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002273
Harald Welte39e2ead2009-07-23 21:13:03 +02002274 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002275}
2276
Harald Welte4bfdfe72009-06-10 23:11:52 +08002277static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2278{
2279 struct gsm48_hdr *gh = msgb_l3(msg);
2280 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2281 struct tlv_parsed tp;
2282 struct gsm_mncc call_conf;
2283
2284 gsm48_stop_cc_timer(trans);
2285 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2286
2287 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2288 call_conf.callref = trans->callref;
2289 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2290#if 0
2291 /* repeat */
2292 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2293 call_conf.repeat = 1;
2294 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2295 call_conf.repeat = 2;
2296#endif
2297 /* bearer capability */
2298 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2299 call_conf.fields |= MNCC_F_BEARER_CAP;
2300 decode_bearer_cap(&call_conf.bearer_cap,
2301 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2302 }
2303 /* cause */
2304 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2305 call_conf.fields |= MNCC_F_CAUSE;
2306 decode_cause(&call_conf.cause,
2307 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2308 }
2309 /* cc cap */
2310 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2311 call_conf.fields |= MNCC_F_CCCAP;
2312 decode_cccap(&call_conf.cccap,
2313 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2314 }
2315
2316 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2317
Harald Welte596fed42009-07-23 19:06:52 +02002318 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2319 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002320}
2321
2322static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2323{
2324 struct gsm_mncc *proceeding = arg;
2325 struct msgb *msg = gsm48_msgb_alloc();
2326 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2327
Harald Welte4bfdfe72009-06-10 23:11:52 +08002328 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2329
2330 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2331
2332 /* bearer capability */
2333 if (proceeding->fields & MNCC_F_BEARER_CAP)
2334 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2335 /* facility */
2336 if (proceeding->fields & MNCC_F_FACILITY)
2337 encode_facility(msg, 0, &proceeding->facility);
2338 /* progress */
2339 if (proceeding->fields & MNCC_F_PROGRESS)
2340 encode_progress(msg, 0, &proceeding->progress);
2341
Harald Welte39e2ead2009-07-23 21:13:03 +02002342 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002343}
2344
2345static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2346{
2347 struct gsm48_hdr *gh = msgb_l3(msg);
2348 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2349 struct tlv_parsed tp;
2350 struct gsm_mncc alerting;
2351
2352 gsm48_stop_cc_timer(trans);
2353 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2354
2355 memset(&alerting, 0, sizeof(struct gsm_mncc));
2356 alerting.callref = trans->callref;
2357 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2358 /* facility */
2359 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2360 alerting.fields |= MNCC_F_FACILITY;
2361 decode_facility(&alerting.facility,
2362 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2363 }
2364
2365 /* progress */
2366 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2367 alerting.fields |= MNCC_F_PROGRESS;
2368 decode_progress(&alerting.progress,
2369 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2370 }
2371 /* ss-version */
2372 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2373 alerting.fields |= MNCC_F_SSVERSION;
2374 decode_ssversion(&alerting.ssversion,
2375 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2376 }
2377
2378 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2379
Harald Welte596fed42009-07-23 19:06:52 +02002380 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2381 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002382}
2383
2384static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2385{
2386 struct gsm_mncc *alerting = arg;
2387 struct msgb *msg = gsm48_msgb_alloc();
2388 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2389
Harald Welte4bfdfe72009-06-10 23:11:52 +08002390 gh->msg_type = GSM48_MT_CC_ALERTING;
2391
2392 /* facility */
2393 if (alerting->fields & MNCC_F_FACILITY)
2394 encode_facility(msg, 0, &alerting->facility);
2395 /* progress */
2396 if (alerting->fields & MNCC_F_PROGRESS)
2397 encode_progress(msg, 0, &alerting->progress);
2398 /* user-user */
2399 if (alerting->fields & MNCC_F_USERUSER)
2400 encode_useruser(msg, 0, &alerting->useruser);
2401
2402 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2403
Harald Welte39e2ead2009-07-23 21:13:03 +02002404 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002405}
2406
2407static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2408{
2409 struct gsm_mncc *progress = arg;
2410 struct msgb *msg = gsm48_msgb_alloc();
2411 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2412
Harald Welte4bfdfe72009-06-10 23:11:52 +08002413 gh->msg_type = GSM48_MT_CC_PROGRESS;
2414
2415 /* progress */
2416 encode_progress(msg, 1, &progress->progress);
2417 /* user-user */
2418 if (progress->fields & MNCC_F_USERUSER)
2419 encode_useruser(msg, 0, &progress->useruser);
2420
Harald Welte39e2ead2009-07-23 21:13:03 +02002421 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002422}
2423
2424static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2425{
2426 struct gsm_mncc *connect = arg;
2427 struct msgb *msg = gsm48_msgb_alloc();
2428 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2429
Harald Welte4bfdfe72009-06-10 23:11:52 +08002430 gh->msg_type = GSM48_MT_CC_CONNECT;
2431
2432 gsm48_stop_cc_timer(trans);
2433 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2434
2435 /* facility */
2436 if (connect->fields & MNCC_F_FACILITY)
2437 encode_facility(msg, 0, &connect->facility);
2438 /* progress */
2439 if (connect->fields & MNCC_F_PROGRESS)
2440 encode_progress(msg, 0, &connect->progress);
2441 /* connected number */
2442 if (connect->fields & MNCC_F_CONNECTED)
2443 encode_connected(msg, &connect->connected);
2444 /* user-user */
2445 if (connect->fields & MNCC_F_USERUSER)
2446 encode_useruser(msg, 0, &connect->useruser);
2447
2448 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2449
Harald Welte39e2ead2009-07-23 21:13:03 +02002450 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002451}
2452
2453static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2454{
2455 struct gsm48_hdr *gh = msgb_l3(msg);
2456 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2457 struct tlv_parsed tp;
2458 struct gsm_mncc connect;
2459
2460 gsm48_stop_cc_timer(trans);
2461
2462 memset(&connect, 0, sizeof(struct gsm_mncc));
2463 connect.callref = trans->callref;
2464 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2465 /* use subscriber as connected party number */
2466 if (trans->subscr) {
2467 connect.fields |= MNCC_F_CONNECTED;
2468 strncpy(connect.connected.number, trans->subscr->extension,
2469 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002470 strncpy(connect.imsi, trans->subscr->imsi,
2471 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002472 }
2473 /* facility */
2474 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2475 connect.fields |= MNCC_F_FACILITY;
2476 decode_facility(&connect.facility,
2477 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2478 }
2479 /* user-user */
2480 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2481 connect.fields |= MNCC_F_USERUSER;
2482 decode_useruser(&connect.useruser,
2483 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2484 }
2485 /* ss-version */
2486 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2487 connect.fields |= MNCC_F_SSVERSION;
2488 decode_ssversion(&connect.ssversion,
2489 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2490 }
2491
2492 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2493
Harald Welte596fed42009-07-23 19:06:52 +02002494 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002495}
2496
2497
2498static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2499{
2500 struct gsm_mncc connect_ack;
2501
2502 gsm48_stop_cc_timer(trans);
2503
2504 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2505
2506 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2507 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002508 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002509 &connect_ack);
2510}
2511
2512static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2513{
2514 struct msgb *msg = gsm48_msgb_alloc();
2515 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2516
Harald Welte4bfdfe72009-06-10 23:11:52 +08002517 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2518
2519 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2520
Harald Welte39e2ead2009-07-23 21:13:03 +02002521 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002522}
2523
2524static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2525{
2526 struct gsm48_hdr *gh = msgb_l3(msg);
2527 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2528 struct tlv_parsed tp;
2529 struct gsm_mncc disc;
2530
2531 gsm48_stop_cc_timer(trans);
2532
2533 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2534
2535 memset(&disc, 0, sizeof(struct gsm_mncc));
2536 disc.callref = trans->callref;
2537 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2538 /* cause */
2539 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2540 disc.fields |= MNCC_F_CAUSE;
2541 decode_cause(&disc.cause,
2542 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2543 }
2544 /* facility */
2545 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2546 disc.fields |= MNCC_F_FACILITY;
2547 decode_facility(&disc.facility,
2548 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2549 }
2550 /* user-user */
2551 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2552 disc.fields |= MNCC_F_USERUSER;
2553 decode_useruser(&disc.useruser,
2554 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2555 }
2556 /* ss-version */
2557 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2558 disc.fields |= MNCC_F_SSVERSION;
2559 decode_ssversion(&disc.ssversion,
2560 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2561 }
2562
Harald Welte596fed42009-07-23 19:06:52 +02002563 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002564
2565}
2566
Harald Weltec66b71c2009-06-11 14:23:20 +08002567static struct gsm_mncc_cause default_cause = {
2568 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2569 .coding = 0,
2570 .rec = 0,
2571 .rec_val = 0,
2572 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2573 .diag_len = 0,
2574 .diag = { 0 },
2575};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002576
2577static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2578{
2579 struct gsm_mncc *disc = arg;
2580 struct msgb *msg = gsm48_msgb_alloc();
2581 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2582
Harald Welte4bfdfe72009-06-10 23:11:52 +08002583 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2584
2585 gsm48_stop_cc_timer(trans);
2586 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2587
2588 /* cause */
2589 if (disc->fields & MNCC_F_CAUSE)
2590 encode_cause(msg, 1, &disc->cause);
2591 else
2592 encode_cause(msg, 1, &default_cause);
2593
2594 /* facility */
2595 if (disc->fields & MNCC_F_FACILITY)
2596 encode_facility(msg, 0, &disc->facility);
2597 /* progress */
2598 if (disc->fields & MNCC_F_PROGRESS)
2599 encode_progress(msg, 0, &disc->progress);
2600 /* user-user */
2601 if (disc->fields & MNCC_F_USERUSER)
2602 encode_useruser(msg, 0, &disc->useruser);
2603
2604 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002605 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002606
2607 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2608
Harald Welte39e2ead2009-07-23 21:13:03 +02002609 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002610}
2611
2612static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2613{
2614 struct gsm48_hdr *gh = msgb_l3(msg);
2615 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2616 struct tlv_parsed tp;
2617 struct gsm_mncc rel;
2618 int rc;
2619
2620 gsm48_stop_cc_timer(trans);
2621
2622 memset(&rel, 0, sizeof(struct gsm_mncc));
2623 rel.callref = trans->callref;
2624 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2625 /* cause */
2626 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2627 rel.fields |= MNCC_F_CAUSE;
2628 decode_cause(&rel.cause,
2629 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2630 }
2631 /* facility */
2632 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2633 rel.fields |= MNCC_F_FACILITY;
2634 decode_facility(&rel.facility,
2635 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2636 }
2637 /* user-user */
2638 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2639 rel.fields |= MNCC_F_USERUSER;
2640 decode_useruser(&rel.useruser,
2641 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2642 }
2643 /* ss-version */
2644 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2645 rel.fields |= MNCC_F_SSVERSION;
2646 decode_ssversion(&rel.ssversion,
2647 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2648 }
2649
Harald Weltedcaf5652009-07-23 18:56:43 +02002650 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002651 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002652 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002653 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002654 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002655 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002656 GSM48_MT_CC_RELEASE_COMPL);
2657 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002658 }
2659
2660 new_cc_state(trans, GSM_CSTATE_NULL);
2661
2662 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002663 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002664
2665 return rc;
2666}
2667
2668static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2669{
2670 struct gsm_mncc *rel = arg;
2671 struct msgb *msg = gsm48_msgb_alloc();
2672 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2673
Harald Welte4bfdfe72009-06-10 23:11:52 +08002674 gh->msg_type = GSM48_MT_CC_RELEASE;
2675
2676 trans->callref = 0;
2677
2678 gsm48_stop_cc_timer(trans);
2679 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2680
2681 /* cause */
2682 if (rel->fields & MNCC_F_CAUSE)
2683 encode_cause(msg, 0, &rel->cause);
2684 /* facility */
2685 if (rel->fields & MNCC_F_FACILITY)
2686 encode_facility(msg, 0, &rel->facility);
2687 /* user-user */
2688 if (rel->fields & MNCC_F_USERUSER)
2689 encode_useruser(msg, 0, &rel->useruser);
2690
Harald Weltedcaf5652009-07-23 18:56:43 +02002691 trans->cc.T308_second = 0;
2692 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002693
Harald Weltedcaf5652009-07-23 18:56:43 +02002694 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002695 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2696
Harald Welte39e2ead2009-07-23 21:13:03 +02002697 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002698}
2699
2700static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2701{
2702 struct gsm48_hdr *gh = msgb_l3(msg);
2703 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2704 struct tlv_parsed tp;
2705 struct gsm_mncc rel;
2706 int rc = 0;
2707
2708 gsm48_stop_cc_timer(trans);
2709
2710 memset(&rel, 0, sizeof(struct gsm_mncc));
2711 rel.callref = trans->callref;
2712 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2713 /* cause */
2714 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2715 rel.fields |= MNCC_F_CAUSE;
2716 decode_cause(&rel.cause,
2717 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2718 }
2719 /* facility */
2720 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2721 rel.fields |= MNCC_F_FACILITY;
2722 decode_facility(&rel.facility,
2723 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2724 }
2725 /* user-user */
2726 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2727 rel.fields |= MNCC_F_USERUSER;
2728 decode_useruser(&rel.useruser,
2729 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2730 }
2731 /* ss-version */
2732 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2733 rel.fields |= MNCC_F_SSVERSION;
2734 decode_ssversion(&rel.ssversion,
2735 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2736 }
2737
2738 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002739 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002740 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002741 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002742 MNCC_REJ_IND, &rel);
2743 break;
2744 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002745 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002746 MNCC_REL_CNF, &rel);
2747 break;
2748 default:
Harald Welte596fed42009-07-23 19:06:52 +02002749 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002750 MNCC_REL_IND, &rel);
2751 }
2752 }
2753
2754 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002755 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002756
2757 return rc;
2758}
2759
2760static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2761{
2762 struct gsm_mncc *rel = arg;
2763 struct msgb *msg = gsm48_msgb_alloc();
2764 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2765
Harald Welte4bfdfe72009-06-10 23:11:52 +08002766 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2767
2768 trans->callref = 0;
2769
2770 gsm48_stop_cc_timer(trans);
2771
2772 /* cause */
2773 if (rel->fields & MNCC_F_CAUSE)
2774 encode_cause(msg, 0, &rel->cause);
2775 /* facility */
2776 if (rel->fields & MNCC_F_FACILITY)
2777 encode_facility(msg, 0, &rel->facility);
2778 /* user-user */
2779 if (rel->fields & MNCC_F_USERUSER)
2780 encode_useruser(msg, 0, &rel->useruser);
2781
Harald Weltedcaf5652009-07-23 18:56:43 +02002782 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002783
Harald Welte39e2ead2009-07-23 21:13:03 +02002784 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002785}
2786
2787static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2788{
2789 struct gsm48_hdr *gh = msgb_l3(msg);
2790 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2791 struct tlv_parsed tp;
2792 struct gsm_mncc fac;
2793
2794 memset(&fac, 0, sizeof(struct gsm_mncc));
2795 fac.callref = trans->callref;
2796 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2797 /* facility */
2798 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2799 fac.fields |= MNCC_F_FACILITY;
2800 decode_facility(&fac.facility,
2801 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2802 }
2803 /* ss-version */
2804 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2805 fac.fields |= MNCC_F_SSVERSION;
2806 decode_ssversion(&fac.ssversion,
2807 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2808 }
2809
Harald Welte596fed42009-07-23 19:06:52 +02002810 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002811}
2812
2813static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2814{
2815 struct gsm_mncc *fac = arg;
2816 struct msgb *msg = gsm48_msgb_alloc();
2817 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2818
Harald Welte4bfdfe72009-06-10 23:11:52 +08002819 gh->msg_type = GSM48_MT_CC_FACILITY;
2820
2821 /* facility */
2822 encode_facility(msg, 1, &fac->facility);
2823
Harald Welte39e2ead2009-07-23 21:13:03 +02002824 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002825}
2826
2827static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2828{
2829 struct gsm_mncc hold;
2830
2831 memset(&hold, 0, sizeof(struct gsm_mncc));
2832 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002833 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002834}
2835
2836static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2837{
2838 struct msgb *msg = gsm48_msgb_alloc();
2839 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2840
Harald Welte4bfdfe72009-06-10 23:11:52 +08002841 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2842
Harald Welte39e2ead2009-07-23 21:13:03 +02002843 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002844}
2845
2846static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2847{
2848 struct gsm_mncc *hold_rej = arg;
2849 struct msgb *msg = gsm48_msgb_alloc();
2850 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2851
Harald Welte4bfdfe72009-06-10 23:11:52 +08002852 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2853
2854 /* cause */
2855 if (hold_rej->fields & MNCC_F_CAUSE)
2856 encode_cause(msg, 1, &hold_rej->cause);
2857 else
2858 encode_cause(msg, 1, &default_cause);
2859
Harald Welte39e2ead2009-07-23 21:13:03 +02002860 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002861}
2862
2863static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2864{
2865 struct gsm_mncc retrieve;
2866
2867 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2868 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002869 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2870 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002871}
2872
2873static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2874{
2875 struct msgb *msg = gsm48_msgb_alloc();
2876 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2877
Harald Welte4bfdfe72009-06-10 23:11:52 +08002878 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2879
Harald Welte39e2ead2009-07-23 21:13:03 +02002880 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002881}
2882
2883static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2884{
2885 struct gsm_mncc *retrieve_rej = arg;
2886 struct msgb *msg = gsm48_msgb_alloc();
2887 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2888
Harald Welte4bfdfe72009-06-10 23:11:52 +08002889 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2890
2891 /* cause */
2892 if (retrieve_rej->fields & MNCC_F_CAUSE)
2893 encode_cause(msg, 1, &retrieve_rej->cause);
2894 else
2895 encode_cause(msg, 1, &default_cause);
2896
Harald Welte39e2ead2009-07-23 21:13:03 +02002897 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002898}
2899
2900static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2901{
2902 struct gsm48_hdr *gh = msgb_l3(msg);
2903 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2904 struct tlv_parsed tp;
2905 struct gsm_mncc dtmf;
2906
2907 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2908 dtmf.callref = trans->callref;
2909 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2910 /* keypad facility */
2911 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2912 dtmf.fields |= MNCC_F_KEYPAD;
2913 decode_keypad(&dtmf.keypad,
2914 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2915 }
2916
Harald Welte596fed42009-07-23 19:06:52 +02002917 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002918}
2919
2920static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2921{
2922 struct gsm_mncc *dtmf = arg;
2923 struct msgb *msg = gsm48_msgb_alloc();
2924 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2925
Harald Welte4bfdfe72009-06-10 23:11:52 +08002926 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2927
2928 /* keypad */
2929 if (dtmf->fields & MNCC_F_KEYPAD)
2930 encode_keypad(msg, dtmf->keypad);
2931
Harald Welte39e2ead2009-07-23 21:13:03 +02002932 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002933}
2934
2935static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2936{
2937 struct gsm_mncc *dtmf = arg;
2938 struct msgb *msg = gsm48_msgb_alloc();
2939 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2940
Harald Welte4bfdfe72009-06-10 23:11:52 +08002941 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2942
2943 /* cause */
2944 if (dtmf->fields & MNCC_F_CAUSE)
2945 encode_cause(msg, 1, &dtmf->cause);
2946 else
2947 encode_cause(msg, 1, &default_cause);
2948
Harald Welte39e2ead2009-07-23 21:13:03 +02002949 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002950}
2951
2952static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2953{
2954 struct msgb *msg = gsm48_msgb_alloc();
2955 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2956
Harald Welte4bfdfe72009-06-10 23:11:52 +08002957 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2958
Harald Welte39e2ead2009-07-23 21:13:03 +02002959 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002960}
2961
2962static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
2963{
2964 struct gsm_mncc dtmf;
2965
2966 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2967 dtmf.callref = trans->callref;
2968
Harald Welte596fed42009-07-23 19:06:52 +02002969 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002970}
2971
2972static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
2973{
2974 struct gsm48_hdr *gh = msgb_l3(msg);
2975 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2976 struct tlv_parsed tp;
2977 struct gsm_mncc modify;
2978
2979 memset(&modify, 0, sizeof(struct gsm_mncc));
2980 modify.callref = trans->callref;
2981 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
2982 /* bearer capability */
2983 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2984 modify.fields |= MNCC_F_BEARER_CAP;
2985 decode_bearer_cap(&modify.bearer_cap,
2986 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2987 }
2988
2989 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
2990
Harald Welte596fed42009-07-23 19:06:52 +02002991 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002992}
2993
2994static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
2995{
2996 struct gsm_mncc *modify = arg;
2997 struct msgb *msg = gsm48_msgb_alloc();
2998 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2999
Harald Welte4bfdfe72009-06-10 23:11:52 +08003000 gh->msg_type = GSM48_MT_CC_MODIFY;
3001
3002 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
3003
3004 /* bearer capability */
3005 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3006
3007 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
3008
Harald Welte39e2ead2009-07-23 21:13:03 +02003009 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003010}
3011
3012static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
3013{
3014 struct gsm48_hdr *gh = msgb_l3(msg);
3015 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3016 struct tlv_parsed tp;
3017 struct gsm_mncc modify;
3018
3019 gsm48_stop_cc_timer(trans);
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_ACTIVE);
3032
Harald Welte596fed42009-07-23 19:06:52 +02003033 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003034}
3035
3036static int gsm48_cc_tx_modify_complete(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_COMPL;
3043
3044 /* bearer capability */
3045 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3046
3047 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3048
Harald Welte39e2ead2009-07-23 21:13:03 +02003049 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003050}
3051
3052static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3053{
3054 struct gsm48_hdr *gh = msgb_l3(msg);
3055 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3056 struct tlv_parsed tp;
3057 struct gsm_mncc modify;
3058
3059 gsm48_stop_cc_timer(trans);
3060
3061 memset(&modify, 0, sizeof(struct gsm_mncc));
3062 modify.callref = trans->callref;
3063 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3064 /* bearer capability */
3065 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3066 modify.fields |= GSM48_IE_BEARER_CAP;
3067 decode_bearer_cap(&modify.bearer_cap,
3068 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3069 }
3070 /* cause */
3071 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3072 modify.fields |= MNCC_F_CAUSE;
3073 decode_cause(&modify.cause,
3074 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3075 }
3076
3077 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3078
Harald Welte596fed42009-07-23 19:06:52 +02003079 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003080}
3081
3082static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3083{
3084 struct gsm_mncc *modify = arg;
3085 struct msgb *msg = gsm48_msgb_alloc();
3086 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3087
Harald Welte4bfdfe72009-06-10 23:11:52 +08003088 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3089
3090 /* bearer capability */
3091 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3092 /* cause */
3093 encode_cause(msg, 1, &modify->cause);
3094
3095 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3096
Harald Welte39e2ead2009-07-23 21:13:03 +02003097 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003098}
3099
3100static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3101{
3102 struct gsm_mncc *notify = arg;
3103 struct msgb *msg = gsm48_msgb_alloc();
3104 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3105
Harald Welte4bfdfe72009-06-10 23:11:52 +08003106 gh->msg_type = GSM48_MT_CC_NOTIFY;
3107
3108 /* notify */
3109 encode_notify(msg, notify->notify);
3110
Harald Welte39e2ead2009-07-23 21:13:03 +02003111 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003112}
3113
3114static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3115{
3116 struct gsm48_hdr *gh = msgb_l3(msg);
3117 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3118// struct tlv_parsed tp;
3119 struct gsm_mncc notify;
3120
3121 memset(&notify, 0, sizeof(struct gsm_mncc));
3122 notify.callref = trans->callref;
3123// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3124 if (payload_len >= 1)
3125 decode_notify(&notify.notify, gh->data);
3126
Harald Welte596fed42009-07-23 19:06:52 +02003127 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003128}
3129
3130static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3131{
3132 struct gsm_mncc *user = arg;
3133 struct msgb *msg = gsm48_msgb_alloc();
3134 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3135
Harald Welte4bfdfe72009-06-10 23:11:52 +08003136 gh->msg_type = GSM48_MT_CC_USER_INFO;
3137
3138 /* user-user */
3139 if (user->fields & MNCC_F_USERUSER)
3140 encode_useruser(msg, 1, &user->useruser);
3141 /* more data */
3142 if (user->more)
3143 encode_more(msg);
3144
Harald Welte39e2ead2009-07-23 21:13:03 +02003145 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003146}
3147
3148static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3149{
3150 struct gsm48_hdr *gh = msgb_l3(msg);
3151 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3152 struct tlv_parsed tp;
3153 struct gsm_mncc user;
3154
3155 memset(&user, 0, sizeof(struct gsm_mncc));
3156 user.callref = trans->callref;
3157 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3158 /* user-user */
3159 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3160 user.fields |= MNCC_F_USERUSER;
3161 decode_useruser(&user.useruser,
3162 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3163 }
3164 /* more data */
3165 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3166 user.more = 1;
3167
Harald Welte596fed42009-07-23 19:06:52 +02003168 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003169}
3170
3171static int gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
3172{
3173 struct gsm_mncc *mode = arg;
Harald Welte13cac662009-07-29 12:10:35 +02003174 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003175
Harald Welte13cac662009-07-29 12:10:35 +02003176 rc = gsm48_tx_chan_mode_modify(trans->lchan, mode->lchan_mode);
3177 if (rc < 0)
3178 return rc;
3179
3180 /* FIXME: we not only need to do this after mode modify, but
3181 * also after channel activation */
3182 if (is_ipaccess_bts(trans->lchan->ts->trx->bts) &&
3183 mode->lchan_mode != GSM48_CMODE_SIGN)
3184 rc = rsl_ipacc_bind(trans->lchan);
3185
3186 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003187}
3188
3189static struct downstate {
3190 u_int32_t states;
3191 int type;
3192 int (*rout) (struct gsm_trans *trans, void *arg);
3193} downstatelist[] = {
3194 /* mobile originating call establishment */
3195 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3196 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3197 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3198 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3199 {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 */
3200 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3201 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3202 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3203 /* mobile terminating call establishment */
3204 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3205 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3206 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3207 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3208 /* signalling during call */
3209 {SBIT(GSM_CSTATE_ACTIVE),
3210 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3211 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3212 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3213 {ALL_STATES,
3214 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3215 {ALL_STATES,
3216 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3217 {ALL_STATES,
3218 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3219 {SBIT(GSM_CSTATE_ACTIVE),
3220 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3221 {SBIT(GSM_CSTATE_ACTIVE),
3222 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3223 {SBIT(GSM_CSTATE_ACTIVE),
3224 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3225 {SBIT(GSM_CSTATE_ACTIVE),
3226 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3227 {SBIT(GSM_CSTATE_ACTIVE),
3228 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3229 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3230 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3231 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3232 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3233 {SBIT(GSM_CSTATE_ACTIVE),
3234 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3235 /* clearing */
3236 {SBIT(GSM_CSTATE_INITIATED),
3237 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3238 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3239 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3240 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3241 MNCC_REL_REQ, gsm48_cc_tx_release},
3242 /* special */
3243 {ALL_STATES,
3244 MNCC_LCHAN_MODIFY, gsm48_lchan_modify},
3245};
3246
3247#define DOWNSLLEN \
3248 (sizeof(downstatelist) / sizeof(struct downstate))
3249
3250
3251int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3252{
Harald Welte1a6f7982009-08-09 18:52:33 +02003253 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003254 struct gsm_trans *trans = NULL, *transt;
3255 struct gsm_subscriber *subscr;
Harald Welte1a6f7982009-08-09 18:52:33 +02003256 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003257 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003258 struct gsm_mncc *data = arg, rel;
3259
3260 /* handle special messages */
3261 switch(msg_type) {
3262 case MNCC_BRIDGE:
3263 return tch_bridge(net, arg);
3264 case MNCC_FRAME_DROP:
3265 return tch_recv(net, arg, 0);
3266 case MNCC_FRAME_RECV:
3267 return tch_recv(net, arg, 1);
3268 case GSM_TRAU_FRAME:
3269 return tch_frame(net, arg);
3270 }
3271
3272 memset(&rel, 0, sizeof(struct gsm_mncc));
3273 rel.callref = data->callref;
3274
3275 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003276 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003277
3278 /* Callref unknown */
3279 if (!trans) {
Harald Welte4a3464c2009-07-04 10:11:24 +02003280 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003281 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3282 "Received '%s' from MNCC with "
3283 "unknown callref %d\n", data->called.number,
3284 get_mncc_name(msg_type), data->callref);
3285 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003286 return mncc_release_ind(net, NULL, data->callref,
3287 GSM48_CAUSE_LOC_PRN_S_LU,
3288 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003289 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003290 if (!data->called.number[0] && !data->imsi[0]) {
3291 DEBUGP(DCC, "(bts - trx - ts - ti) "
3292 "Received '%s' from MNCC with "
3293 "no number or IMSI\n", get_mncc_name(msg_type));
3294 /* Invalid number */
3295 return mncc_release_ind(net, NULL, data->callref,
3296 GSM48_CAUSE_LOC_PRN_S_LU,
3297 GSM48_CC_CAUSE_INV_NR_FORMAT);
3298 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003299 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003300 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003301 subscr = subscr_get_by_extension(net,
3302 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003303 else
Harald Welte9176bd42009-07-23 18:46:00 +02003304 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003305 /* If subscriber is not found */
3306 if (!subscr) {
3307 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3308 "Received '%s' from MNCC with "
3309 "unknown subscriber %s\n", data->called.number,
3310 get_mncc_name(msg_type), data->called.number);
3311 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003312 return mncc_release_ind(net, NULL, data->callref,
3313 GSM48_CAUSE_LOC_PRN_S_LU,
3314 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003315 }
3316 /* If subscriber is not "attached" */
3317 if (!subscr->lac) {
3318 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3319 "Received '%s' from MNCC with "
3320 "detached subscriber %s\n", data->called.number,
3321 get_mncc_name(msg_type), data->called.number);
3322 subscr_put(subscr);
3323 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003324 return mncc_release_ind(net, NULL, data->callref,
3325 GSM48_CAUSE_LOC_PRN_S_LU,
3326 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003327 }
3328 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003329 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3330 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003331 DEBUGP(DCC, "No memory for trans.\n");
3332 subscr_put(subscr);
3333 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003334 mncc_release_ind(net, NULL, data->callref,
3335 GSM48_CAUSE_LOC_PRN_S_LU,
3336 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003337 return -ENOMEM;
3338 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003339 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003340 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003341 /* If subscriber has no lchan */
3342 if (!lchan) {
3343 /* find transaction with this subscriber already paging */
3344 llist_for_each_entry(transt, &net->trans_list, entry) {
3345 /* Transaction of our lchan? */
3346 if (transt == trans ||
3347 transt->subscr != subscr)
3348 continue;
3349 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3350 "Received '%s' from MNCC with "
3351 "unallocated channel, paging already "
3352 "started.\n", bts->nr,
3353 data->called.number,
3354 get_mncc_name(msg_type));
3355 return 0;
3356 }
3357 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003358 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003359 /* Trigger paging */
3360 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3361 setup_trig_pag_evt, subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003362 return 0;
3363 }
3364 /* Assign lchan */
3365 trans->lchan = lchan;
3366 use_lchan(lchan);
3367 }
3368 lchan = trans->lchan;
3369
3370 /* if paging did not respond yet */
3371 if (!lchan) {
3372 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3373 "Received '%s' from MNCC in paging state\n",
3374 (trans->subscr)?(trans->subscr->extension):"-",
3375 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003376 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3377 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003378 if (msg_type == MNCC_REL_REQ)
3379 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3380 else
3381 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3382 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003383 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003384 return rc;
3385 }
3386
3387 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3388 "Received '%s' from MNCC in state %d (%s)\n",
3389 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3390 trans->transaction_id,
3391 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003392 get_mncc_name(msg_type), trans->cc.state,
3393 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003394
3395 /* Find function for current state and message */
3396 for (i = 0; i < DOWNSLLEN; i++)
3397 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003398 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003399 break;
3400 if (i == DOWNSLLEN) {
3401 DEBUGP(DCC, "Message unhandled at this state.\n");
3402 return 0;
3403 }
3404
3405 rc = downstatelist[i].rout(trans, arg);
3406
3407 return rc;
3408}
3409
3410
3411static struct datastate {
3412 u_int32_t states;
3413 int type;
3414 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3415} datastatelist[] = {
3416 /* mobile originating call establishment */
3417 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3418 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3419 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3420 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3421 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3422 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3423 /* mobile terminating call establishment */
3424 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3425 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3426 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3427 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3428 {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 */
3429 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3430 /* signalling during call */
3431 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3432 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3433 {SBIT(GSM_CSTATE_ACTIVE),
3434 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3435 {ALL_STATES,
3436 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3437 {ALL_STATES,
3438 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3439 {ALL_STATES,
3440 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3441 {SBIT(GSM_CSTATE_ACTIVE),
3442 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3443 {SBIT(GSM_CSTATE_ACTIVE),
3444 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3445 {SBIT(GSM_CSTATE_ACTIVE),
3446 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3447 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3448 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3449 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3450 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3451 {SBIT(GSM_CSTATE_ACTIVE),
3452 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3453 /* clearing */
3454 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3455 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3456 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3457 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3458 {ALL_STATES, /* 5.4.3.4 */
3459 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3460};
3461
3462#define DATASLLEN \
3463 (sizeof(datastatelist) / sizeof(struct datastate))
3464
Harald Welte4bc90a12008-12-27 16:32:52 +00003465static int gsm0408_rcv_cc(struct msgb *msg)
3466{
3467 struct gsm48_hdr *gh = msgb_l3(msg);
3468 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003469 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003470 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003471 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003472 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003473
Harald Welte4bfdfe72009-06-10 23:11:52 +08003474 if (msg_type & 0x80) {
3475 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3476 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003477 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003478
3479 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003480 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003481
Harald Welte6f5aee02009-07-23 21:21:14 +02003482 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003483 "Received '%s' from MS in state %d (%s)\n",
3484 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3485 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003486 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003487 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003488
3489 /* Create transaction */
3490 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003491 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003492 "creating new trans.\n", transaction_id);
3493 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003494 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3495 transaction_id, new_callref++);
3496 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003497 DEBUGP(DCC, "No memory for trans.\n");
3498 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003499 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003500 GSM48_MT_CC_RELEASE_COMPL);
3501 return -ENOMEM;
3502 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003503 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003504 trans->lchan = lchan;
3505 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003506 }
3507
3508 /* find function for current state and message */
3509 for (i = 0; i < DATASLLEN; i++)
3510 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003511 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003512 break;
3513 if (i == DATASLLEN) {
3514 DEBUGP(DCC, "Message unhandled at this state.\n");
3515 return 0;
3516 }
3517
3518 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003519
3520 return rc;
3521}
3522
Harald Welte52b1f982008-12-23 20:25:15 +00003523/* 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 +02003524int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003525{
3526 struct gsm48_hdr *gh = msgb_l3(msg);
3527 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003528 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003529
3530 switch (pdisc) {
3531 case GSM48_PDISC_CC:
3532 rc = gsm0408_rcv_cc(msg);
3533 break;
3534 case GSM48_PDISC_MM:
3535 rc = gsm0408_rcv_mm(msg);
3536 break;
3537 case GSM48_PDISC_RR:
3538 rc = gsm0408_rcv_rr(msg);
3539 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003540 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003541 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003542 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003543 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003544 case GSM48_PDISC_SM_GPRS:
Mike Haben59d284e2009-09-26 19:00:03 +02003545 case GSM48_PDISC_NC_SS: /* mobile-originated USSD */
3546 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003547 pdisc);
3548 break;
3549 default:
Mike Haben59d284e2009-09-26 19:00:03 +02003550 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003551 pdisc);
3552 break;
3553 }
3554
3555 return rc;
3556}
Harald Welte8470bf22008-12-25 23:28:35 +00003557
Harald Welte4bfdfe72009-06-10 23:11:52 +08003558/* dequeue messages to layer 4 */
3559int bsc_upqueue(struct gsm_network *net)
3560{
3561 struct gsm_mncc *mncc;
3562 struct msgb *msg;
3563 int work = 0;
3564
3565 if (net)
3566 while ((msg = msgb_dequeue(&net->upqueue))) {
3567 mncc = (struct gsm_mncc *)msg->data;
3568 if (net->mncc_recv)
3569 net->mncc_recv(net, mncc->msg_type, mncc);
3570 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003571 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003572 }
3573
3574 return work;
3575}
Harald Weltedcaf5652009-07-23 18:56:43 +02003576
Harald Welte805f6442009-07-28 18:25:29 +02003577/*
3578 * This will be ran by the linker when loading the DSO. We use it to
3579 * do system initialization, e.g. registration of signal handlers.
3580 */
3581static __attribute__((constructor)) void on_dso_load_0408(void)
3582{
Harald Welte805f6442009-07-28 18:25:29 +02003583 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3584 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3585}