blob: dc8567077ffdf0048ae1046de286ac1589257641 [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{
294 u_int32_t tmsi;
295
296 if (authorize_subscriber(lchan->loc_operation, lchan->subscr)) {
Harald Welteee5ad162009-08-09 19:07:00 +0200297 int rc;
298
Holger Freytherd51524f2009-06-09 08:27:07 +0000299 db_subscriber_alloc_tmsi(lchan->subscr);
Holger Freytherd51524f2009-06-09 08:27:07 +0000300 tmsi = strtoul(lchan->subscr->tmsi, NULL, 10);
301 release_loc_updating_req(lchan);
Harald Welteee5ad162009-08-09 19:07:00 +0200302 rc = gsm0408_loc_upd_acc(msg->lchan, tmsi);
303 /* call subscr_update after putting the loc_upd_acc
304 * in the transmit queue, since S_SUBSCR_ATTACHED might
305 * trigger further action like SMS delivery */
306 subscr_update(lchan->subscr, msg->trx->bts,
307 GSM_SUBSCRIBER_UPDATE_ATTACHED);
308 return rc;
Holger Freytherd51524f2009-06-09 08:27:07 +0000309 }
310
311 return 0;
312}
313
Holger Freyther7c19f742009-06-06 13:54:35 +0000314static int gsm0408_handle_lchan_signal(unsigned int subsys, unsigned int signal,
315 void *handler_data, void *signal_data)
316{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800317 struct gsm_trans *trans, *temp;
318
Holger Freyther7c19f742009-06-06 13:54:35 +0000319 if (subsys != SS_LCHAN || signal != S_LCHAN_UNEXPECTED_RELEASE)
320 return 0;
321
322 /*
323 * Cancel any outstanding location updating request
324 * operation taking place on the lchan.
325 */
Harald Welte1a5c6bd2009-07-04 09:35:21 +0200326 struct gsm_lchan *lchan = (struct gsm_lchan *)signal_data;
Harald Weltec05677b2009-06-26 20:17:06 +0200327 if (!lchan)
328 return 0;
329
Holger Freyther7c19f742009-06-06 13:54:35 +0000330 release_loc_updating_req(lchan);
331
Harald Welte4bfdfe72009-06-10 23:11:52 +0800332 /* Free all transactions that are associated with the released lchan */
Harald Weltedcaf5652009-07-23 18:56:43 +0200333 /* FIXME: this is not neccessarily the right thing to do, we should
334 * only set trans->lchan to NULL and wait for another lchan to be
335 * established to the same MM entity (phone/subscriber) */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800336 llist_for_each_entry_safe(trans, temp, &lchan->ts->trx->bts->network->trans_list, entry) {
337 if (trans->lchan == lchan)
Harald Weltedcaf5652009-07-23 18:56:43 +0200338 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +0800339 }
340
Holger Freyther7c19f742009-06-06 13:54:35 +0000341 return 0;
342}
343
Harald Welte09e38af2009-02-16 22:52:23 +0000344static const char bcd_num_digits[] = {
345 '0', '1', '2', '3', '4', '5', '6', '7',
346 '8', '9', '*', '#', 'a', 'b', 'c', '\0'
347};
348
Harald Welte0c389302009-06-10 12:08:54 +0800349/* decode a 'called/calling/connect party BCD number' as in 10.5.4.7 */
350int decode_bcd_number(char *output, int output_len, const u_int8_t *bcd_lv,
351 int h_len)
Harald Welte09e38af2009-02-16 22:52:23 +0000352{
353 u_int8_t in_len = bcd_lv[0];
354 int i;
355
Harald Welte0c389302009-06-10 12:08:54 +0800356 for (i = 1 + h_len; i <= in_len; i++) {
Harald Welte09e38af2009-02-16 22:52:23 +0000357 /* lower nibble */
358 output_len--;
359 if (output_len <= 1)
360 break;
361 *output++ = bcd_num_digits[bcd_lv[i] & 0xf];
362
363 /* higher nibble */
364 output_len--;
365 if (output_len <= 1)
366 break;
367 *output++ = bcd_num_digits[bcd_lv[i] >> 4];
368 }
369 if (output_len >= 1)
370 *output++ = '\0';
371
Harald Welte0c389302009-06-10 12:08:54 +0800372 return 0;
Harald Welte09e38af2009-02-16 22:52:23 +0000373}
374
375/* convert a single ASCII character to call-control BCD */
376static int asc_to_bcd(const char asc)
377{
378 int i;
379
380 for (i = 0; i < ARRAY_SIZE(bcd_num_digits); i++) {
381 if (bcd_num_digits[i] == asc)
382 return i;
383 }
384 return -EINVAL;
385}
386
Harald Welte0c389302009-06-10 12:08:54 +0800387/* convert a ASCII phone number to 'called/calling/connect party BCD number' */
Harald Welte09e38af2009-02-16 22:52:23 +0000388int encode_bcd_number(u_int8_t *bcd_lv, u_int8_t max_len,
Harald Welte0c389302009-06-10 12:08:54 +0800389 int h_len, const char *input)
Harald Welte09e38af2009-02-16 22:52:23 +0000390{
391 int in_len = strlen(input);
392 int i;
Harald Welte0c389302009-06-10 12:08:54 +0800393 u_int8_t *bcd_cur = bcd_lv + 1 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000394
395 /* two digits per byte, plus type byte */
Harald Welte0c389302009-06-10 12:08:54 +0800396 bcd_lv[0] = in_len/2 + h_len;
Harald Welte09e38af2009-02-16 22:52:23 +0000397 if (in_len % 2)
398 bcd_lv[0]++;
399
Harald Welte0c389302009-06-10 12:08:54 +0800400 if (bcd_lv[0] > max_len)
401 return -EIO;
Harald Welte09e38af2009-02-16 22:52:23 +0000402
403 for (i = 0; i < in_len; i++) {
404 int rc = asc_to_bcd(input[i]);
405 if (rc < 0)
406 return rc;
407 if (i % 2 == 0)
408 *bcd_cur = rc;
409 else
410 *bcd_cur++ |= (rc << 4);
411 }
412 /* append padding nibble in case of odd length */
413 if (i % 2)
414 *bcd_cur++ |= 0xf0;
415
416 /* return how many bytes we used */
417 return (bcd_cur - bcd_lv);
418}
419
Harald Welte0c389302009-06-10 12:08:54 +0800420/* decode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800421static int decode_bearer_cap(struct gsm_mncc_bearer_cap *bcap,
Harald Welte0c389302009-06-10 12:08:54 +0800422 const u_int8_t *lv)
423{
424 u_int8_t in_len = lv[0];
425 int i, s;
426
427 if (in_len < 1)
428 return -EINVAL;
429
Harald Welte4bfdfe72009-06-10 23:11:52 +0800430 bcap->speech_ver[0] = -1; /* end of list, of maximum 7 values */
Harald Welte0c389302009-06-10 12:08:54 +0800431
432 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800433 bcap->transfer = lv[1] & 0x07;
434 bcap->mode = (lv[1] & 0x08) >> 3;
435 bcap->coding = (lv[1] & 0x10) >> 4;
436 bcap->radio = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800437
438 i = 1;
439 s = 0;
440 while(!(lv[i] & 0x80)) {
441 i++; /* octet 3a etc */
442 if (in_len < i)
443 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800444 bcap->speech_ver[s++] = lv[i] & 0x0f;
445 bcap->speech_ver[s] = -1; /* end of list */
Harald Welte0c389302009-06-10 12:08:54 +0800446 if (i == 2) /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800447 bcap->speech_ctm = (lv[i] & 0x20) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800448 if (s == 7) /* maximum speech versions + end of list */
449 return 0;
450 }
451
452 return 0;
453}
454
455/* encode 'bearer capability' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800456static int encode_bearer_cap(struct msgb *msg, int lv_only,
457 const struct gsm_mncc_bearer_cap *bcap)
Harald Welte0c389302009-06-10 12:08:54 +0800458{
459 u_int8_t lv[32 + 1];
460 int i, s;
461
Harald Welte4bfdfe72009-06-10 23:11:52 +0800462 lv[1] = bcap->transfer;
463 lv[1] |= bcap->mode << 3;
464 lv[1] |= bcap->coding << 4;
465 lv[1] |= bcap->radio << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800466
467 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800468 for (s = 0; bcap->speech_ver[s] >= 0; s++) {
Harald Welte0c389302009-06-10 12:08:54 +0800469 i++; /* octet 3a etc */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800470 lv[i] = bcap->speech_ver[s];
Harald Welte0c389302009-06-10 12:08:54 +0800471 if (i == 2) /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800472 lv[i] |= bcap->speech_ctm << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800473 }
474 lv[i] |= 0x80; /* last IE of octet 3 etc */
475
476 lv[0] = i;
477 if (lv_only)
478 msgb_lv_put(msg, lv[0], lv+1);
479 else
480 msgb_tlv_put(msg, GSM48_IE_BEARER_CAP, lv[0], lv+1);
481
482 return 0;
483}
484
485/* decode 'call control cap' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800486static int decode_cccap(struct gsm_mncc_cccap *ccap, const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800487{
488 u_int8_t in_len = lv[0];
489
490 if (in_len < 1)
491 return -EINVAL;
492
493 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800494 ccap->dtmf = lv[1] & 0x01;
495 ccap->pcp = (lv[1] & 0x02) >> 1;
Harald Welte0c389302009-06-10 12:08:54 +0800496
497 return 0;
498}
499
500/* decode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800501static int decode_called(struct gsm_mncc_number *called,
502 const u_int8_t *lv)
Harald Welte0c389302009-06-10 12:08:54 +0800503{
504 u_int8_t in_len = lv[0];
505
506 if (in_len < 1)
507 return -EINVAL;
508
509 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800510 called->plan = lv[1] & 0x0f;
511 called->type = (lv[1] & 0x70) >> 4;
Harald Welte0c389302009-06-10 12:08:54 +0800512
513 /* octet 4..N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800514 decode_bcd_number(called->number, sizeof(called->number), lv, 1);
Harald Welte0c389302009-06-10 12:08:54 +0800515
516 return 0;
517}
518
519/* encode 'called party BCD number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800520static int encode_called(struct msgb *msg,
521 const struct gsm_mncc_number *called)
Harald Welte0c389302009-06-10 12:08:54 +0800522{
523 u_int8_t lv[18];
524 int ret;
525
526 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800527 lv[1] = called->plan;
528 lv[1] |= called->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800529
530 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800531 ret = encode_bcd_number(lv, sizeof(lv), 1, called->number);
Harald Welte0c389302009-06-10 12:08:54 +0800532 if (ret < 0)
533 return ret;
534
535 msgb_tlv_put(msg, GSM48_IE_CALLED_BCD, lv[0], lv+1);
536
537 return 0;
538}
539
540/* encode callerid of various IEs */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800541static int encode_callerid(struct msgb *msg, int ie,
542 const struct gsm_mncc_number *callerid)
Harald Welte0c389302009-06-10 12:08:54 +0800543{
544 u_int8_t lv[13];
545 int h_len = 1;
546 int ret;
547
548 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800549 lv[1] = callerid->plan;
550 lv[1] |= callerid->type << 4;
Harald Welte0c389302009-06-10 12:08:54 +0800551
Harald Welte4bfdfe72009-06-10 23:11:52 +0800552 if (callerid->present || callerid->screen) {
Harald Welte0c389302009-06-10 12:08:54 +0800553 /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800554 lv[2] = callerid->screen;
555 lv[2] |= callerid->present << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800556 lv[2] |= 0x80;
557 h_len++;
558 } else
559 lv[1] |= 0x80;
560
561 /* octet 4..N, octet 2 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800562 ret = encode_bcd_number(lv, sizeof(lv), h_len, callerid->number);
Harald Welte0c389302009-06-10 12:08:54 +0800563 if (ret < 0)
564 return ret;
565
566 msgb_tlv_put(msg, ie, lv[0], lv+1);
567
568 return 0;
569}
570
571/* decode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800572static int decode_cause(struct gsm_mncc_cause *cause,
Harald Welte0c389302009-06-10 12:08:54 +0800573 const u_int8_t *lv)
574{
575 u_int8_t in_len = lv[0];
576 int i;
577
578 if (in_len < 2)
579 return -EINVAL;
580
Harald Welte4bfdfe72009-06-10 23:11:52 +0800581 cause->diag_len = 0;
Harald Welte0c389302009-06-10 12:08:54 +0800582
583 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800584 cause->location = lv[1] & 0x0f;
585 cause->coding = (lv[1] & 0x60) >> 5;
Harald Welte0c389302009-06-10 12:08:54 +0800586
587 i = 1;
588 if (!(lv[i] & 0x80)) {
589 i++; /* octet 3a */
590 if (in_len < i+1)
591 return 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800592 cause->rec = 1;
593 cause->rec_val = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800594
595 }
596 i++;
597
598 /* octet 4 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800599 cause->value = lv[i] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800600 i++;
601
602 if (in_len < i) /* no diag */
603 return 0;
604
605 if (in_len - (i-1) > 32) /* maximum 32 octets */
606 return 0;
607
608 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800609 memcpy(cause->diag, lv + i, in_len - (i-1));
610 cause->diag_len = in_len - (i-1);
Harald Welte0c389302009-06-10 12:08:54 +0800611
612 return 0;
613}
614
615/* encode 'cause' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800616static int encode_cause(struct msgb *msg, int lv_only,
617 const struct gsm_mncc_cause *cause)
Harald Welte0c389302009-06-10 12:08:54 +0800618{
619 u_int8_t lv[32+4];
620 int i;
621
Harald Welte4bfdfe72009-06-10 23:11:52 +0800622 if (cause->diag_len > 32)
Harald Welte0c389302009-06-10 12:08:54 +0800623 return -EINVAL;
624
625 /* octet 3 */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800626 lv[1] = cause->location;
627 lv[1] |= cause->coding << 5;
Harald Welte0c389302009-06-10 12:08:54 +0800628
629 i = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800630 if (cause->rec) {
Harald Welte0c389302009-06-10 12:08:54 +0800631 i++; /* octet 3a */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800632 lv[i] = cause->rec_val;
Harald Welte0c389302009-06-10 12:08:54 +0800633 }
634 lv[i] |= 0x80; /* end of octet 3 */
635
636 /* octet 4 */
637 i++;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800638 lv[i] = 0x80 | cause->value;
Harald Welte0c389302009-06-10 12:08:54 +0800639
640 /* octet 5-N */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800641 if (cause->diag_len) {
642 memcpy(lv + i, cause->diag, cause->diag_len);
643 i += cause->diag_len;
Harald Welte0c389302009-06-10 12:08:54 +0800644 }
645
646 lv[0] = i;
647 if (lv_only)
648 msgb_lv_put(msg, lv[0], lv+1);
649 else
650 msgb_tlv_put(msg, GSM48_IE_CAUSE, lv[0], lv+1);
651
652 return 0;
653}
654
655/* encode 'calling number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800656static int encode_calling(struct msgb *msg,
657 const struct gsm_mncc_number *calling)
Harald Welte0c389302009-06-10 12:08:54 +0800658{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800659 return encode_callerid(msg, GSM48_IE_CALLING_BCD, calling);
Harald Welte0c389302009-06-10 12:08:54 +0800660}
661
662/* encode 'connected number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800663static int encode_connected(struct msgb *msg,
664 const struct gsm_mncc_number *connected)
Harald Welte0c389302009-06-10 12:08:54 +0800665{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800666 return encode_callerid(msg, GSM48_IE_CONN_BCD, connected);
Harald Welte0c389302009-06-10 12:08:54 +0800667}
668
669/* encode 'redirecting number' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800670static int encode_redirecting(struct msgb *msg,
671 const struct gsm_mncc_number *redirecting)
Harald Welte0c389302009-06-10 12:08:54 +0800672{
Harald Welte4bfdfe72009-06-10 23:11:52 +0800673 return encode_callerid(msg, GSM48_IE_REDIR_BCD, redirecting);
Harald Welte0c389302009-06-10 12:08:54 +0800674}
675
676/* decode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800677static int decode_facility(struct gsm_mncc_facility *facility,
Harald Welte0c389302009-06-10 12:08:54 +0800678 const u_int8_t *lv)
679{
680 u_int8_t in_len = lv[0];
681
682 if (in_len < 1)
683 return -EINVAL;
684
Harald Welte4bfdfe72009-06-10 23:11:52 +0800685 if (in_len > sizeof(facility->info))
Harald Welte0c389302009-06-10 12:08:54 +0800686 return -EINVAL;
687
Harald Welte4bfdfe72009-06-10 23:11:52 +0800688 memcpy(facility->info, lv+1, in_len);
689 facility->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800690
691 return 0;
692}
693
694/* encode 'facility' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800695static int encode_facility(struct msgb *msg, int lv_only,
696 const struct gsm_mncc_facility *facility)
Harald Welte0c389302009-06-10 12:08:54 +0800697{
698 u_int8_t lv[GSM_MAX_FACILITY + 1];
699
Harald Welte4bfdfe72009-06-10 23:11:52 +0800700 if (facility->len < 1 || facility->len > GSM_MAX_FACILITY)
Harald Welte0c389302009-06-10 12:08:54 +0800701 return -EINVAL;
702
Harald Welte4bfdfe72009-06-10 23:11:52 +0800703 memcpy(lv+1, facility->info, facility->len);
704 lv[0] = facility->len;
Harald Welte0c389302009-06-10 12:08:54 +0800705 if (lv_only)
706 msgb_lv_put(msg, lv[0], lv+1);
707 else
708 msgb_tlv_put(msg, GSM48_IE_FACILITY, lv[0], lv+1);
709
710 return 0;
711}
712
713/* decode 'notify' */
714static int decode_notify(int *notify, const u_int8_t *v)
715{
716 *notify = v[0] & 0x7f;
717
718 return 0;
719}
720
721/* encode 'notify' */
722static int encode_notify(struct msgb *msg, int notify)
723{
724 msgb_v_put(msg, notify | 0x80);
725
726 return 0;
727}
728
729/* encode 'signal' */
730static int encode_signal(struct msgb *msg, int signal)
731{
732 msgb_tv_put(msg, GSM48_IE_SIGNAL, signal);
733
734 return 0;
735}
736
737/* decode 'keypad' */
738static int decode_keypad(int *keypad, const u_int8_t *lv)
739{
740 u_int8_t in_len = lv[0];
741
742 if (in_len < 1)
743 return -EINVAL;
744
745 *keypad = lv[1] & 0x7f;
746
747 return 0;
748}
749
750/* encode 'keypad' */
751static int encode_keypad(struct msgb *msg, int keypad)
752{
753 msgb_tv_put(msg, GSM48_IE_KPD_FACILITY, keypad);
754
755 return 0;
756}
757
758/* decode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800759static int decode_progress(struct gsm_mncc_progress *progress,
Harald Welte0c389302009-06-10 12:08:54 +0800760 const u_int8_t *lv)
761{
762 u_int8_t in_len = lv[0];
763
764 if (in_len < 2)
765 return -EINVAL;
766
Harald Welte4bfdfe72009-06-10 23:11:52 +0800767 progress->coding = (lv[1] & 0x60) >> 5;
768 progress->location = lv[1] & 0x0f;
769 progress->descr = lv[2] & 0x7f;
Harald Welte0c389302009-06-10 12:08:54 +0800770
771 return 0;
772}
773
774/* encode 'progress' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800775static int encode_progress(struct msgb *msg, int lv_only,
776 const struct gsm_mncc_progress *p)
Harald Welte0c389302009-06-10 12:08:54 +0800777{
778 u_int8_t lv[3];
779
780 lv[0] = 2;
Harald Welte4bfdfe72009-06-10 23:11:52 +0800781 lv[1] = 0x80 | ((p->coding & 0x3) << 5) | (p->location & 0xf);
782 lv[2] = 0x80 | (p->descr & 0x7f);
Harald Welte0c389302009-06-10 12:08:54 +0800783 if (lv_only)
784 msgb_lv_put(msg, lv[0], lv+1);
785 else
786 msgb_tlv_put(msg, GSM48_IE_PROGR_IND, lv[0], lv+1);
787
788 return 0;
789}
790
791/* decode 'user-user' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800792static int decode_useruser(struct gsm_mncc_useruser *uu,
Harald Welte0c389302009-06-10 12:08:54 +0800793 const u_int8_t *lv)
794{
795 u_int8_t in_len = lv[0];
Harald Welte4bfdfe72009-06-10 23:11:52 +0800796 char *info = uu->info;
797 int info_len = sizeof(uu->info);
Harald Welte0c389302009-06-10 12:08:54 +0800798 int i;
799
800 if (in_len < 1)
801 return -EINVAL;
802
Harald Welte4bfdfe72009-06-10 23:11:52 +0800803 uu->proto = lv[1];
Harald Welte0c389302009-06-10 12:08:54 +0800804
805 for (i = 2; i <= in_len; i++) {
806 info_len--;
807 if (info_len <= 1)
808 break;
809 *info++ = lv[i];
810 }
811 if (info_len >= 1)
812 *info++ = '\0';
813
814 return 0;
815}
816
817/* encode 'useruser' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800818static int encode_useruser(struct msgb *msg, int lv_only,
819 const struct gsm_mncc_useruser *uu)
Harald Welte0c389302009-06-10 12:08:54 +0800820{
821 u_int8_t lv[GSM_MAX_USERUSER + 2];
822
Harald Welte4bfdfe72009-06-10 23:11:52 +0800823 if (strlen(uu->info) > GSM_MAX_USERUSER)
Harald Welte0c389302009-06-10 12:08:54 +0800824 return -EINVAL;
825
Harald Welte4bfdfe72009-06-10 23:11:52 +0800826 lv[0] = 1 + strlen(uu->info);
827 lv[1] = uu->proto;
828 memcpy(lv + 2, uu->info, strlen(uu->info));
Harald Welte0c389302009-06-10 12:08:54 +0800829 if (lv_only)
830 msgb_lv_put(msg, lv[0], lv+1);
831 else
832 msgb_tlv_put(msg, GSM48_IE_USER_USER, lv[0], lv+1);
833
834 return 0;
835}
836
837/* decode 'ss version' */
Harald Welte4bfdfe72009-06-10 23:11:52 +0800838static int decode_ssversion(struct gsm_mncc_ssversion *ssv,
Harald Welte0c389302009-06-10 12:08:54 +0800839 const u_int8_t *lv)
840{
841 u_int8_t in_len = lv[0];
842
Harald Welte4bfdfe72009-06-10 23:11:52 +0800843 if (in_len < 1 || in_len < sizeof(ssv->info))
Harald Welte0c389302009-06-10 12:08:54 +0800844 return -EINVAL;
845
Harald Welte4bfdfe72009-06-10 23:11:52 +0800846 memcpy(ssv->info, lv + 1, in_len);
847 ssv->len = in_len;
Harald Welte0c389302009-06-10 12:08:54 +0800848
849 return 0;
850}
851
852/* encode 'more data' */
853static int encode_more(struct msgb *msg)
854{
855 u_int8_t *ie;
856
857 ie = msgb_put(msg, 1);
858 ie[0] = GSM48_IE_MORE_DATA;
859
860 return 0;
861}
862
Holger Freyther429e7762008-12-30 13:28:30 +0000863/* Chapter 9.2.14 : Send LOCATION UPDATING REJECT */
Harald Welte8470bf22008-12-25 23:28:35 +0000864int gsm0408_loc_upd_rej(struct gsm_lchan *lchan, u_int8_t cause)
Harald Welte52b1f982008-12-23 20:25:15 +0000865{
Harald Welte8470bf22008-12-25 23:28:35 +0000866 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000867 struct gsm48_hdr *gh;
868
Harald Welte8470bf22008-12-25 23:28:35 +0000869 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000870
871 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
872 gh->proto_discr = GSM48_PDISC_MM;
Harald Welte10b487b2008-12-27 19:53:37 +0000873 gh->msg_type = GSM48_MT_MM_LOC_UPD_REJECT;
Harald Welte52b1f982008-12-23 20:25:15 +0000874 gh->data[0] = cause;
875
Harald Weltedb253af2008-12-30 17:56:55 +0000876 DEBUGP(DMM, "-> LOCATION UPDATING REJECT on channel: %d\n", lchan->nr);
877
Harald Welte39e2ead2009-07-23 21:13:03 +0200878 return gsm48_sendmsg(msg, NULL);
Harald Welte52b1f982008-12-23 20:25:15 +0000879}
880
881/* Chapter 9.2.13 : Send LOCATION UPDATE ACCEPT */
Harald Welte75a983f2008-12-27 21:34:06 +0000882int gsm0408_loc_upd_acc(struct gsm_lchan *lchan, u_int32_t tmsi)
Harald Welte52b1f982008-12-23 20:25:15 +0000883{
Harald Welte8470bf22008-12-25 23:28:35 +0000884 struct gsm_bts *bts = lchan->ts->trx->bts;
885 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte52b1f982008-12-23 20:25:15 +0000886 struct gsm48_hdr *gh;
887 struct gsm48_loc_area_id *lai;
888 u_int8_t *mid;
Holger Freyther07cc8d82008-12-29 06:23:46 +0000889 int ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000890
Harald Welte8470bf22008-12-25 23:28:35 +0000891 msg->lchan = lchan;
Harald Welte52b1f982008-12-23 20:25:15 +0000892
893 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
894 gh->proto_discr = GSM48_PDISC_MM;
895 gh->msg_type = GSM48_MT_MM_LOC_UPD_ACCEPT;
896
897 lai = (struct gsm48_loc_area_id *) msgb_put(msg, sizeof(*lai));
Holger Freyther17746612008-12-28 16:32:44 +0000898 gsm0408_generate_lai(lai, bts->network->country_code,
Harald Welte52b1f982008-12-23 20:25:15 +0000899 bts->network->network_code, bts->location_area_code);
900
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +0200901 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
Holger Hans Peter Freyther5d0e56f2009-08-20 08:41:24 +0200902 gsm48_generate_mid_from_tmsi(mid, tmsi);
Harald Welte52b1f982008-12-23 20:25:15 +0000903
904 DEBUGP(DMM, "-> LOCATION UPDATE ACCEPT\n");
905
Harald Welte39e2ead2009-07-23 21:13:03 +0200906 ret = gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +0000907
Harald Welteee5ad162009-08-09 19:07:00 +0200908 /* send MM INFO with network name */
Harald Weltedb253af2008-12-30 17:56:55 +0000909 ret = gsm48_tx_mm_info(lchan);
Harald Weltedb253af2008-12-30 17:56:55 +0000910
Holger Freyther07cc8d82008-12-29 06:23:46 +0000911 return ret;
Harald Welte52b1f982008-12-23 20:25:15 +0000912}
913
Harald Weltebf5e8df2009-02-03 12:59:45 +0000914/* Transmit Chapter 9.2.10 Identity Request */
Harald Welte231ad4f2008-12-27 11:15:38 +0000915static int mm_tx_identity_req(struct gsm_lchan *lchan, u_int8_t id_type)
916{
917 struct msgb *msg = gsm48_msgb_alloc();
918 struct gsm48_hdr *gh;
Harald Weltefc977a82008-12-27 10:19:37 +0000919
Harald Welte231ad4f2008-12-27 11:15:38 +0000920 msg->lchan = lchan;
921
922 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
923 gh->proto_discr = GSM48_PDISC_MM;
924 gh->msg_type = GSM48_MT_MM_ID_REQ;
925 gh->data[0] = id_type;
926
Harald Welte39e2ead2009-07-23 21:13:03 +0200927 return gsm48_sendmsg(msg, NULL);
Harald Welte231ad4f2008-12-27 11:15:38 +0000928}
929
Harald Welte231ad4f2008-12-27 11:15:38 +0000930
Harald Weltebf5e8df2009-02-03 12:59:45 +0000931/* Parse Chapter 9.2.11 Identity Response */
Harald Welte231ad4f2008-12-27 11:15:38 +0000932static int mm_rx_id_resp(struct msgb *msg)
933{
934 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte75a983f2008-12-27 21:34:06 +0000935 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +0200936 struct gsm_bts *bts = lchan->ts->trx->bts;
937 struct gsm_network *net = bts->network;
Harald Welte231ad4f2008-12-27 11:15:38 +0000938 u_int8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200939 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +0000940
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +0200941 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte61253062008-12-27 11:25:50 +0000942 DEBUGP(DMM, "IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
Harald Welte231ad4f2008-12-27 11:15:38 +0000943 mi_type, mi_string);
944
Harald Welte75a983f2008-12-27 21:34:06 +0000945 switch (mi_type) {
946 case GSM_MI_TYPE_IMSI:
Jan Luebbe370b41d2009-08-12 10:19:34 +0200947 /* look up subscriber based on IMSI, create if not found */
948 if (!lchan->subscr) {
949 lchan->subscr = subscr_get_by_imsi(net, mi_string);
Harald Welte (local)aa9dc192009-08-13 13:49:51 +0200950 if (!lchan->subscr)
951 lchan->subscr = db_create_subscriber(net, mi_string);
Jan Luebbeb0dfc312009-08-12 10:12:52 +0200952 }
Holger Freyther73487a22008-12-31 18:53:57 +0000953 if (lchan->loc_operation)
954 lchan->loc_operation->waiting_for_imsi = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000955 break;
956 case GSM_MI_TYPE_IMEI:
Harald Welte255539c2008-12-28 02:26:27 +0000957 case GSM_MI_TYPE_IMEISV:
Harald Welte75a983f2008-12-27 21:34:06 +0000958 /* update subscribe <-> IMEI mapping */
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200959 if (lchan->subscr) {
Harald Welte75a983f2008-12-27 21:34:06 +0000960 db_subscriber_assoc_imei(lchan->subscr, mi_string);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +0200961 db_sync_equipment(&lchan->subscr->equipment);
962 }
Holger Freyther73487a22008-12-31 18:53:57 +0000963 if (lchan->loc_operation)
964 lchan->loc_operation->waiting_for_imei = 0;
Harald Welte75a983f2008-12-27 21:34:06 +0000965 break;
966 }
Holger Freyther73487a22008-12-31 18:53:57 +0000967
968 /* Check if we can let the mobile station enter */
Holger Freytherd51524f2009-06-09 08:27:07 +0000969 return gsm0408_authorize(lchan, msg);
Harald Welte231ad4f2008-12-27 11:15:38 +0000970}
971
Harald Welte255539c2008-12-28 02:26:27 +0000972
973static void loc_upd_rej_cb(void *data)
974{
975 struct gsm_lchan *lchan = data;
976
Holger Freyther73487a22008-12-31 18:53:57 +0000977 release_loc_updating_req(lchan);
Holger Freythere97f7fb2008-12-31 18:52:11 +0000978 gsm0408_loc_upd_rej(lchan, reject_cause);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000979 lchan_auto_release(lchan);
Harald Welte255539c2008-12-28 02:26:27 +0000980}
981
Holger Freytherb7193e42008-12-29 17:44:08 +0000982static void schedule_reject(struct gsm_lchan *lchan)
983{
Holger Freyther73487a22008-12-31 18:53:57 +0000984 lchan->loc_operation->updating_timer.cb = loc_upd_rej_cb;
985 lchan->loc_operation->updating_timer.data = lchan;
Harald Welteff117a82009-05-23 05:22:08 +0000986 bsc_schedule_timer(&lchan->loc_operation->updating_timer, 5, 0);
Holger Freytherb7193e42008-12-29 17:44:08 +0000987}
988
Harald Welte2a139372009-02-22 21:14:55 +0000989static const char *lupd_name(u_int8_t type)
990{
991 switch (type) {
992 case GSM48_LUPD_NORMAL:
993 return "NORMAL";
994 case GSM48_LUPD_PERIODIC:
995 return "PEROIDOC";
996 case GSM48_LUPD_IMSI_ATT:
997 return "IMSI ATTACH";
998 default:
999 return "UNKNOWN";
1000 }
1001}
1002
Harald Weltebf5e8df2009-02-03 12:59:45 +00001003/* Chapter 9.2.15: Receive Location Updating Request */
Harald Welte231ad4f2008-12-27 11:15:38 +00001004static int mm_rx_loc_upd_req(struct msgb *msg)
Harald Welte52b1f982008-12-23 20:25:15 +00001005{
Harald Welte8470bf22008-12-25 23:28:35 +00001006 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001007 struct gsm48_loc_upd_req *lu;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001008 struct gsm_subscriber *subscr = NULL;
Harald Welte255539c2008-12-28 02:26:27 +00001009 struct gsm_lchan *lchan = msg->lchan;
Harald Welte9176bd42009-07-23 18:46:00 +02001010 struct gsm_bts *bts = lchan->ts->trx->bts;
Harald Welte8470bf22008-12-25 23:28:35 +00001011 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001012 char mi_string[GSM48_MI_SIZE];
Harald Welte231ad4f2008-12-27 11:15:38 +00001013 int rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001014
Harald Welte8470bf22008-12-25 23:28:35 +00001015 lu = (struct gsm48_loc_upd_req *) gh->data;
1016
1017 mi_type = lu->mi[0] & GSM_MI_TYPE_MASK;
Harald Welte52b1f982008-12-23 20:25:15 +00001018
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001019 gsm48_mi_to_string(mi_string, sizeof(mi_string), lu->mi, lu->mi_len);
Harald Weltefc977a82008-12-27 10:19:37 +00001020
Harald Weltea0368542009-06-27 02:58:43 +02001021 DEBUGPC(DMM, "mi_type=0x%02x MI(%s) type=%s ", mi_type, mi_string,
Harald Welte2a139372009-02-22 21:14:55 +00001022 lupd_name(lu->type));
Holger Freyther73487a22008-12-31 18:53:57 +00001023
Holger Freythereaf04692009-06-06 13:54:44 +00001024 /*
1025 * Pseudo Spoof detection: Just drop a second/concurrent
1026 * location updating request.
1027 */
1028 if (lchan->loc_operation) {
Harald Weltea0368542009-06-27 02:58:43 +02001029 DEBUGPC(DMM, "ignoring request due an existing one: %p.\n",
Holger Freythereaf04692009-06-06 13:54:44 +00001030 lchan->loc_operation);
1031 gsm0408_loc_upd_rej(lchan, GSM48_REJECT_PROTOCOL_ERROR);
1032 return 0;
1033 }
1034
Holger Freyther73487a22008-12-31 18:53:57 +00001035 allocate_loc_updating_req(lchan);
1036
Harald Welte52b1f982008-12-23 20:25:15 +00001037 switch (mi_type) {
1038 case GSM_MI_TYPE_IMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001039 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001040 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001041 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001042 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001043
Jan Luebbe370b41d2009-08-12 10:19:34 +02001044 /* look up subscriber based on IMSI, create if not found */
1045 subscr = subscr_get_by_imsi(bts->network, mi_string);
1046 if (!subscr) {
1047 subscr = db_create_subscriber(bts->network, mi_string);
1048 }
Harald Welte4b634542008-12-27 01:55:51 +00001049 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001050 case GSM_MI_TYPE_TMSI:
Harald Weltea0368542009-06-27 02:58:43 +02001051 DEBUGPC(DMM, "\n");
Harald Welte231ad4f2008-12-27 11:15:38 +00001052 /* we always want the IMEI, too */
Harald Welte015b9ad2009-02-28 18:22:03 +00001053 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
Holger Freyther73487a22008-12-31 18:53:57 +00001054 lchan->loc_operation->waiting_for_imei = 1;
Holger Freytherc6ea9db2008-12-30 19:18:21 +00001055
Harald Welte52b1f982008-12-23 20:25:15 +00001056 /* look up the subscriber based on TMSI, request IMSI if it fails */
Harald Welte9176bd42009-07-23 18:46:00 +02001057 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Harald Welte52b1f982008-12-23 20:25:15 +00001058 if (!subscr) {
Harald Welte231ad4f2008-12-27 11:15:38 +00001059 /* send IDENTITY REQUEST message to get IMSI */
Harald Welte255539c2008-12-28 02:26:27 +00001060 rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMSI);
Holger Freyther73487a22008-12-31 18:53:57 +00001061 lchan->loc_operation->waiting_for_imsi = 1;
Harald Welte52b1f982008-12-23 20:25:15 +00001062 }
1063 break;
1064 case GSM_MI_TYPE_IMEI:
1065 case GSM_MI_TYPE_IMEISV:
1066 /* no sim card... FIXME: what to do ? */
Harald Weltea0368542009-06-27 02:58:43 +02001067 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001068 break;
1069 default:
Harald Weltea0368542009-06-27 02:58:43 +02001070 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001071 break;
1072 }
1073
Harald Welte24516ea2009-07-04 10:18:00 +02001074 /* schedule the reject timer */
1075 schedule_reject(lchan);
1076
Harald Welte4bfdfe72009-06-10 23:11:52 +08001077 if (!subscr) {
Harald Weltea0368542009-06-27 02:58:43 +02001078 DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001079 /* FIXME: request id? close channel? */
1080 return -EINVAL;
1081 }
1082
Harald Welte255539c2008-12-28 02:26:27 +00001083 lchan->subscr = subscr;
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001084 lchan->subscr->equipment.classmark1 = lu->classmark1;
Harald Welte255539c2008-12-28 02:26:27 +00001085
Harald Welte24516ea2009-07-04 10:18:00 +02001086 /* check if we can let the subscriber into our network immediately
1087 * or if we need to wait for identity responses. */
Holger Freytherd51524f2009-06-09 08:27:07 +00001088 return gsm0408_authorize(lchan, msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001089}
1090
Harald Welte13cac662009-07-29 12:10:35 +02001091/* 9.1.5 Channel mode modify: Modify the mode on the MS side */
Harald Welte7584aea2009-02-11 11:44:12 +00001092int gsm48_tx_chan_mode_modify(struct gsm_lchan *lchan, u_int8_t mode)
1093{
1094 struct msgb *msg = gsm48_msgb_alloc();
1095 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1096 struct gsm48_chan_mode_modify *cmm =
1097 (struct gsm48_chan_mode_modify *) msgb_put(msg, sizeof(*cmm));
Harald Welte4a543e82009-02-28 13:17:55 +00001098 u_int16_t arfcn = lchan->ts->trx->arfcn & 0x3ff;
Harald Welte7584aea2009-02-11 11:44:12 +00001099
Harald Welte4a543e82009-02-28 13:17:55 +00001100 DEBUGP(DRR, "-> CHANNEL MODE MODIFY mode=0x%02x\n", mode);
Harald Welte7ccf7782009-02-17 01:43:01 +00001101
Harald Welte45b407a2009-05-23 15:51:12 +00001102 lchan->tch_mode = mode;
Harald Welte7584aea2009-02-11 11:44:12 +00001103 msg->lchan = lchan;
1104 gh->proto_discr = GSM48_PDISC_RR;
1105 gh->msg_type = GSM48_MT_RR_CHAN_MODE_MODIF;
1106
1107 /* fill the channel information element, this code
1108 * should probably be shared with rsl_rx_chan_rqd() */
1109 cmm->chan_desc.chan_nr = lchan2chan_nr(lchan);
Harald Welte02b0e092009-02-28 13:11:07 +00001110 cmm->chan_desc.h0.tsc = lchan->ts->trx->bts->tsc;
Harald Welte7584aea2009-02-11 11:44:12 +00001111 cmm->chan_desc.h0.h = 0;
1112 cmm->chan_desc.h0.arfcn_high = arfcn >> 8;
1113 cmm->chan_desc.h0.arfcn_low = arfcn & 0xff;
1114 cmm->mode = mode;
1115
Harald Welte39e2ead2009-07-23 21:13:03 +02001116 return gsm48_sendmsg(msg, NULL);
Harald Welte7584aea2009-02-11 11:44:12 +00001117}
1118
Harald Welte4bfdfe72009-06-10 23:11:52 +08001119#if 0
1120static u_int8_t to_bcd8(u_int8_t val)
1121{
1122 return ((val / 10) << 4) | (val % 10);
1123}
1124#endif
1125
Harald Weltedb253af2008-12-30 17:56:55 +00001126/* Section 9.2.15a */
1127int gsm48_tx_mm_info(struct gsm_lchan *lchan)
1128{
1129 struct msgb *msg = gsm48_msgb_alloc();
1130 struct gsm48_hdr *gh;
1131 struct gsm_network *net = lchan->ts->trx->bts->network;
Harald Weltedb253af2008-12-30 17:56:55 +00001132 u_int8_t *ptr8;
1133 u_int16_t *ptr16;
Daniel Willmanneea93372009-08-13 03:42:07 +02001134 int name_len, name_pad;
Harald Weltedb253af2008-12-30 17:56:55 +00001135 int i;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001136#if 0
1137 time_t cur_t;
1138 struct tm* cur_time;
1139 int tz15min;
1140#endif
Harald Weltedb253af2008-12-30 17:56:55 +00001141
1142 msg->lchan = lchan;
1143
1144 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1145 gh->proto_discr = GSM48_PDISC_MM;
1146 gh->msg_type = GSM48_MT_MM_INFO;
1147
1148 if (net->name_long) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001149#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001150 name_len = strlen(net->name_long);
1151 /* 10.5.3.5a */
1152 ptr8 = msgb_put(msg, 3);
1153 ptr8[0] = GSM48_IE_NAME_LONG;
1154 ptr8[1] = name_len*2 +1;
1155 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1156
1157 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
1158 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001159 ptr16[i] = htons(net->name_long[i]);
Harald Weltedb253af2008-12-30 17:56:55 +00001160
1161 /* FIXME: Use Cell Broadcast, not UCS-2, since
1162 * UCS-2 is only supported by later revisions of the spec */
Daniel Willmanneea93372009-08-13 03:42:07 +02001163#endif
1164 name_len = (strlen(net->name_long)*7)/8;
1165 name_pad = (8 - strlen(net->name_long)*7)%8;
1166 if (name_pad > 0)
1167 name_len++;
1168 /* 10.5.3.5a */
1169 ptr8 = msgb_put(msg, 3);
1170 ptr8[0] = GSM48_IE_NAME_LONG;
1171 ptr8[1] = name_len +1;
1172 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1173
1174 ptr8 = msgb_put(msg, name_len);
1175 gsm_7bit_encode(ptr8, net->name_long);
1176
Harald Weltedb253af2008-12-30 17:56:55 +00001177 }
1178
1179 if (net->name_short) {
Daniel Willmanneea93372009-08-13 03:42:07 +02001180#if 0
Harald Weltedb253af2008-12-30 17:56:55 +00001181 name_len = strlen(net->name_short);
1182 /* 10.5.3.5a */
1183 ptr8 = (u_int8_t *) msgb_put(msg, 3);
Harald Welte7543eb72009-07-19 17:51:36 +02001184 ptr8[0] = GSM48_IE_NAME_SHORT;
Harald Weltedb253af2008-12-30 17:56:55 +00001185 ptr8[1] = name_len*2 + 1;
1186 ptr8[2] = 0x90; /* UCS2, no spare bits, no CI */
1187
Harald Weltee872cb12009-01-01 00:33:37 +00001188 ptr16 = (u_int16_t *) msgb_put(msg, name_len*2);
Harald Weltedb253af2008-12-30 17:56:55 +00001189 for (i = 0; i < name_len; i++)
Harald Welte179f0642008-12-31 23:59:18 +00001190 ptr16[i] = htons(net->name_short[i]);
Daniel Willmanneea93372009-08-13 03:42:07 +02001191#endif
1192 name_len = (strlen(net->name_short)*7)/8;
1193 name_pad = (8 - strlen(net->name_short)*7)%8;
1194 if (name_pad > 0)
1195 name_len++;
1196 /* 10.5.3.5a */
1197 ptr8 = (u_int8_t *) msgb_put(msg, 3);
1198 ptr8[0] = GSM48_IE_NAME_SHORT;
1199 ptr8[1] = name_len +1;
1200 ptr8[2] = 0x80 | name_pad; /* Cell Broadcast DCS, no CI */
1201
1202 ptr8 = msgb_put(msg, name_len);
1203 gsm_7bit_encode(ptr8, net->name_short);
1204
Harald Weltedb253af2008-12-30 17:56:55 +00001205 }
1206
1207#if 0
1208 /* Section 10.5.3.9 */
1209 cur_t = time(NULL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001210 cur_time = gmtime(&cur_t);
Harald Weltedb253af2008-12-30 17:56:55 +00001211 ptr8 = msgb_put(msg, 8);
1212 ptr8[0] = GSM48_IE_NET_TIME_TZ;
1213 ptr8[1] = to_bcd8(cur_time->tm_year % 100);
1214 ptr8[2] = to_bcd8(cur_time->tm_mon);
1215 ptr8[3] = to_bcd8(cur_time->tm_mday);
1216 ptr8[4] = to_bcd8(cur_time->tm_hour);
1217 ptr8[5] = to_bcd8(cur_time->tm_min);
1218 ptr8[6] = to_bcd8(cur_time->tm_sec);
1219 /* 02.42: coded as BCD encoded signed value in units of 15 minutes */
1220 tz15min = (cur_time->tm_gmtoff)/(60*15);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001221 ptr8[7] = to_bcd8(tz15min);
Harald Weltedb253af2008-12-30 17:56:55 +00001222 if (tz15min < 0)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001223 ptr8[7] |= 0x80;
Harald Weltedb253af2008-12-30 17:56:55 +00001224#endif
1225
Daniel Willmanneea93372009-08-13 03:42:07 +02001226 DEBUGP(DMM, "-> MM INFO\n");
1227
Harald Welte39e2ead2009-07-23 21:13:03 +02001228 return gsm48_sendmsg(msg, NULL);
Harald Weltedb253af2008-12-30 17:56:55 +00001229}
1230
Harald Welte7984d5c2009-08-12 22:56:50 +02001231/* Section 9.2.2 */
1232int gsm48_tx_mm_auth_req(struct gsm_lchan *lchan, u_int8_t *rand)
1233{
1234 struct msgb *msg = gsm48_msgb_alloc();
1235 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Sylvain Munaut849f5542009-09-27 11:10:17 +02001236 struct gsm48_auth_req *ar = (struct gsm48_auth_req *) msgb_put(msg, sizeof(*ar));
Harald Welte7984d5c2009-08-12 22:56:50 +02001237
1238 DEBUGP(DMM, "-> AUTH REQ\n");
1239
1240 msg->lchan = lchan;
1241 gh->proto_discr = GSM48_PDISC_MM;
1242 gh->msg_type = GSM48_MT_MM_AUTH_REQ;
1243
Sylvain Munaut849f5542009-09-27 11:10:17 +02001244 /* Key Sequence: FIXME fixed to 0 */
1245 ar->key_seq = 0;
1246
Harald Welte7984d5c2009-08-12 22:56:50 +02001247 /* 16 bytes RAND parameters */
Harald Welte7984d5c2009-08-12 22:56:50 +02001248 if (rand)
Sylvain Munaut849f5542009-09-27 11:10:17 +02001249 memcpy(ar->rand, rand, 16);
Harald Welte7984d5c2009-08-12 22:56:50 +02001250
1251 return gsm48_sendmsg(msg, NULL);
1252}
1253
1254/* Section 9.2.1 */
1255int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan)
1256{
1257 DEBUGP(DMM, "-> AUTH REJECT\n");
1258 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_AUTH_REJ);
1259}
1260
Harald Welte4b634542008-12-27 01:55:51 +00001261static int gsm48_tx_mm_serv_ack(struct gsm_lchan *lchan)
1262{
Harald Welte4b634542008-12-27 01:55:51 +00001263 DEBUGP(DMM, "-> CM SERVICE ACK\n");
Harald Welte65e74cc2008-12-29 01:55:35 +00001264 return gsm48_tx_simple(lchan, GSM48_PDISC_MM, GSM48_MT_MM_CM_SERV_ACC);
Harald Welte4b634542008-12-27 01:55:51 +00001265}
Harald Welteba4cf162009-01-10 01:49:35 +00001266
1267/* 9.2.6 CM service reject */
1268static int gsm48_tx_mm_serv_rej(struct gsm_lchan *lchan,
1269 enum gsm48_reject_value value)
1270{
1271 struct msgb *msg = gsm48_msgb_alloc();
1272 struct gsm48_hdr *gh;
1273
1274 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
1275
1276 msg->lchan = lchan;
1277 use_lchan(lchan);
1278
1279 gh->proto_discr = GSM48_PDISC_MM;
1280 gh->msg_type = GSM48_MT_MM_CM_SERV_REJ;
1281 gh->data[0] = value;
1282 DEBUGP(DMM, "-> CM SERVICE Reject cause: %d\n", value);
1283
Harald Welte39e2ead2009-07-23 21:13:03 +02001284 return gsm48_sendmsg(msg, NULL);
Harald Welteba4cf162009-01-10 01:49:35 +00001285}
1286
Harald Welte3ac7f102009-08-10 10:12:45 +02001287static int send_siemens_mrpci(struct gsm_lchan *lchan,
1288 u_int8_t *classmark2_lv)
1289{
1290 struct rsl_mrpci mrpci;
1291
1292 if (classmark2_lv[0] < 2)
1293 return -EINVAL;
1294
1295 mrpci.power_class = classmark2_lv[1] & 0x7;
1296 mrpci.vgcs_capable = classmark2_lv[2] & (1 << 1);
1297 mrpci.vbs_capable = classmark2_lv[2] & (1 <<2);
1298 mrpci.gsm_phase = (classmark2_lv[1]) >> 5 & 0x3;
1299
1300 return rsl_siemens_mrpci(lchan, &mrpci);
1301}
Harald Welte4ed0e922009-01-10 03:17:30 +00001302
1303/*
1304 * Handle CM Service Requests
1305 * a) Verify that the packet is long enough to contain the information
1306 * we require otherwsie reject with INCORRECT_MESSAGE
1307 * b) Try to parse the TMSI. If we do not have one reject
1308 * c) Check that we know the subscriber with the TMSI otherwise reject
1309 * with a HLR cause
1310 * d) Set the subscriber on the gsm_lchan and accept
1311 */
Harald Welte4b634542008-12-27 01:55:51 +00001312static int gsm48_rx_mm_serv_req(struct msgb *msg)
1313{
Harald Welteba4cf162009-01-10 01:49:35 +00001314 u_int8_t mi_type;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001315 char mi_string[GSM48_MI_SIZE];
Harald Welte4b634542008-12-27 01:55:51 +00001316
Harald Welte9176bd42009-07-23 18:46:00 +02001317 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welteba4cf162009-01-10 01:49:35 +00001318 struct gsm_subscriber *subscr;
1319 struct gsm48_hdr *gh = msgb_l3(msg);
1320 struct gsm48_service_request *req =
1321 (struct gsm48_service_request *)gh->data;
Harald Weltec9e02182009-05-01 19:07:53 +00001322 /* unfortunately in Phase1 the classmar2 length is variable */
1323 u_int8_t classmark2_len = gh->data[1];
1324 u_int8_t *classmark2 = gh->data+2;
1325 u_int8_t mi_len = *(classmark2 + classmark2_len);
1326 u_int8_t *mi = (classmark2 + classmark2_len + 1);
Harald Welteba4cf162009-01-10 01:49:35 +00001327
Harald Weltec9e02182009-05-01 19:07:53 +00001328 DEBUGP(DMM, "<- CM SERVICE REQUEST ");
Harald Welteba4cf162009-01-10 01:49:35 +00001329 if (msg->data_len < sizeof(struct gsm48_service_request*)) {
Harald Weltec9e02182009-05-01 19:07:53 +00001330 DEBUGPC(DMM, "wrong sized message\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001331 return gsm48_tx_mm_serv_rej(msg->lchan,
1332 GSM48_REJECT_INCORRECT_MESSAGE);
1333 }
1334
1335 if (msg->data_len < req->mi_len + 6) {
Harald Weltec9e02182009-05-01 19:07:53 +00001336 DEBUGPC(DMM, "does not fit in packet\n");
Harald Welteba4cf162009-01-10 01:49:35 +00001337 return gsm48_tx_mm_serv_rej(msg->lchan,
1338 GSM48_REJECT_INCORRECT_MESSAGE);
1339 }
1340
Harald Weltec9e02182009-05-01 19:07:53 +00001341 mi_type = mi[0] & GSM_MI_TYPE_MASK;
Harald Welteba4cf162009-01-10 01:49:35 +00001342 if (mi_type != GSM_MI_TYPE_TMSI) {
Harald Weltec9e02182009-05-01 19:07:53 +00001343 DEBUGPC(DMM, "mi_type is not TMSI: %d\n", mi_type);
Harald Welteba4cf162009-01-10 01:49:35 +00001344 return gsm48_tx_mm_serv_rej(msg->lchan,
1345 GSM48_REJECT_INCORRECT_MESSAGE);
1346 }
1347
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001348 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
Harald Weltec9e02182009-05-01 19:07:53 +00001349 DEBUGPC(DMM, "serv_type=0x%02x mi_type=0x%02x M(%s)\n",
Harald Welte4ed0e922009-01-10 03:17:30 +00001350 req->cm_service_type, mi_type, mi_string);
Harald Weltebcae43f2008-12-27 21:45:37 +00001351
Harald Welte3ac7f102009-08-10 10:12:45 +02001352 if (is_siemens_bts(bts))
1353 send_siemens_mrpci(msg->lchan, classmark2-1);
1354
Harald Welte9176bd42009-07-23 18:46:00 +02001355 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Holger Freythereb443982009-06-04 13:58:42 +00001356
Harald Welte2a139372009-02-22 21:14:55 +00001357 /* FIXME: if we don't know the TMSI, inquire abit IMSI and allocate new TMSI */
Harald Welte4ed0e922009-01-10 03:17:30 +00001358 if (!subscr)
1359 return gsm48_tx_mm_serv_rej(msg->lchan,
1360 GSM48_REJECT_IMSI_UNKNOWN_IN_HLR);
1361
1362 if (!msg->lchan->subscr)
1363 msg->lchan->subscr = subscr;
Harald Welte9bb7c702009-01-10 03:21:41 +00001364 else if (msg->lchan->subscr != subscr) {
1365 DEBUGP(DMM, "<- CM Channel already owned by someone else?\n");
1366 subscr_put(subscr);
1367 }
1368
Harald Weltec2e302d2009-07-05 14:08:13 +02001369 subscr->equipment.classmark2_len = classmark2_len;
1370 memcpy(subscr->equipment.classmark2, classmark2, classmark2_len);
1371 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001372
Harald Welte4b634542008-12-27 01:55:51 +00001373 return gsm48_tx_mm_serv_ack(msg->lchan);
1374}
1375
Harald Welte2a139372009-02-22 21:14:55 +00001376static int gsm48_rx_mm_imsi_detach_ind(struct msgb *msg)
1377{
Harald Welte9176bd42009-07-23 18:46:00 +02001378 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2a139372009-02-22 21:14:55 +00001379 struct gsm48_hdr *gh = msgb_l3(msg);
1380 struct gsm48_imsi_detach_ind *idi =
1381 (struct gsm48_imsi_detach_ind *) gh->data;
1382 u_int8_t mi_type = idi->mi[0] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001383 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001384 struct gsm_subscriber *subscr = NULL;
Harald Welte2a139372009-02-22 21:14:55 +00001385
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001386 gsm48_mi_to_string(mi_string, sizeof(mi_string), idi->mi, idi->mi_len);
Harald Welte2a139372009-02-22 21:14:55 +00001387 DEBUGP(DMM, "IMSI DETACH INDICATION: mi_type=0x%02x MI(%s): ",
1388 mi_type, mi_string);
1389
1390 switch (mi_type) {
1391 case GSM_MI_TYPE_TMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001392 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001393 break;
1394 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001395 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Welte2a139372009-02-22 21:14:55 +00001396 break;
1397 case GSM_MI_TYPE_IMEI:
1398 case GSM_MI_TYPE_IMEISV:
1399 /* no sim card... FIXME: what to do ? */
Holger Freyther79f4ae62009-06-02 03:25:04 +00001400 DEBUGPC(DMM, "unimplemented mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001401 break;
1402 default:
Holger Freyther79f4ae62009-06-02 03:25:04 +00001403 DEBUGPC(DMM, "unknown mobile identity type\n");
Harald Welte2a139372009-02-22 21:14:55 +00001404 break;
1405 }
1406
Holger Freyther4a49e772009-04-12 05:37:29 +00001407 if (subscr) {
1408 subscr_update(subscr, msg->trx->bts,
1409 GSM_SUBSCRIBER_UPDATE_DETACHED);
Harald Welte2a139372009-02-22 21:14:55 +00001410 DEBUGP(DMM, "Subscriber: %s\n",
1411 subscr->name ? subscr->name : subscr->imsi);
Harald Welte (local)ee4410a2009-08-17 09:39:55 +02001412
1413 subscr->equipment.classmark1 = idi->classmark1;
1414 db_sync_equipment(&subscr->equipment);
1415
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001416 subscr_put(subscr);
Holger Freyther4a49e772009-04-12 05:37:29 +00001417 } else
Harald Welte2a139372009-02-22 21:14:55 +00001418 DEBUGP(DMM, "Unknown Subscriber ?!?\n");
1419
Harald Welte2a139372009-02-22 21:14:55 +00001420 return 0;
1421}
1422
Harald Welted2a7f5a2009-06-05 20:08:20 +00001423static int gsm48_rx_mm_status(struct msgb *msg)
1424{
1425 struct gsm48_hdr *gh = msgb_l3(msg);
1426
1427 DEBUGP(DMM, "MM STATUS (reject cause 0x%02x)\n", gh->data[0]);
1428
1429 return 0;
1430}
1431
Harald Weltebf5e8df2009-02-03 12:59:45 +00001432/* Receive a GSM 04.08 Mobility Management (MM) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001433static int gsm0408_rcv_mm(struct msgb *msg)
1434{
1435 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001436 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001437
1438 switch (gh->msg_type & 0xbf) {
1439 case GSM48_MT_MM_LOC_UPD_REQUEST:
Harald Weltea0368542009-06-27 02:58:43 +02001440 DEBUGP(DMM, "LOCATION UPDATING REQUEST: ");
Harald Welte231ad4f2008-12-27 11:15:38 +00001441 rc = mm_rx_loc_upd_req(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001442 break;
1443 case GSM48_MT_MM_ID_RESP:
Harald Welte231ad4f2008-12-27 11:15:38 +00001444 rc = mm_rx_id_resp(msg);
1445 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001446 case GSM48_MT_MM_CM_SERV_REQ:
Harald Welte4b634542008-12-27 01:55:51 +00001447 rc = gsm48_rx_mm_serv_req(msg);
1448 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001449 case GSM48_MT_MM_STATUS:
Harald Welted2a7f5a2009-06-05 20:08:20 +00001450 rc = gsm48_rx_mm_status(msg);
Harald Welte231ad4f2008-12-27 11:15:38 +00001451 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001452 case GSM48_MT_MM_TMSI_REALL_COMPL:
Harald Welte69b2af22009-01-06 19:47:00 +00001453 DEBUGP(DMM, "TMSI Reallocation Completed. Subscriber: %s\n",
1454 msg->lchan->subscr ?
1455 msg->lchan->subscr->imsi :
1456 "unknown subscriber");
1457 break;
Harald Welte231ad4f2008-12-27 11:15:38 +00001458 case GSM48_MT_MM_IMSI_DETACH_IND:
Harald Welte2a139372009-02-22 21:14:55 +00001459 rc = gsm48_rx_mm_imsi_detach_ind(msg);
1460 break;
1461 case GSM48_MT_MM_CM_REEST_REQ:
1462 DEBUGP(DMM, "CM REESTABLISH REQUEST: Not implemented\n");
1463 break;
1464 case GSM48_MT_MM_AUTH_RESP:
1465 DEBUGP(DMM, "AUTHENTICATION RESPONSE: Not implemented\n");
Harald Welte52b1f982008-12-23 20:25:15 +00001466 break;
1467 default:
1468 fprintf(stderr, "Unknown GSM 04.08 MM msg type 0x%02x\n",
1469 gh->msg_type);
1470 break;
1471 }
1472
1473 return rc;
1474}
Harald Weltebf5e8df2009-02-03 12:59:45 +00001475
Harald Welte2d35ae62009-02-06 12:02:13 +00001476/* Receive a PAGING RESPONSE message from the MS */
1477static int gsm48_rr_rx_pag_resp(struct msgb *msg)
1478{
Harald Welte9176bd42009-07-23 18:46:00 +02001479 struct gsm_bts *bts = msg->lchan->ts->trx->bts;
Harald Welte2d35ae62009-02-06 12:02:13 +00001480 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte61548982009-02-22 21:26:29 +00001481 u_int8_t *classmark2_lv = gh->data + 1;
1482 u_int8_t *mi_lv = gh->data + 2 + *classmark2_lv;
1483 u_int8_t mi_type = mi_lv[1] & GSM_MI_TYPE_MASK;
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001484 char mi_string[GSM48_MI_SIZE];
Harald Welte4bfdfe72009-06-10 23:11:52 +08001485 struct gsm_subscriber *subscr = NULL;
Harald Welte595ad7b2009-02-16 22:05:44 +00001486 struct paging_signal_data sig_data;
Harald Welte2d35ae62009-02-06 12:02:13 +00001487 int rc = 0;
1488
Holger Hans Peter Freytherd1862d72009-08-19 07:54:59 +02001489 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi_lv+1, *mi_lv);
Harald Welte2d35ae62009-02-06 12:02:13 +00001490 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
1491 mi_type, mi_string);
Harald Welte3ac7f102009-08-10 10:12:45 +02001492
1493 if (is_siemens_bts(bts))
1494 send_siemens_mrpci(msg->lchan, classmark2_lv);
1495
Harald Weltefe18d8f2009-02-22 21:14:24 +00001496 switch (mi_type) {
1497 case GSM_MI_TYPE_TMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001498 subscr = subscr_get_by_tmsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001499 break;
1500 case GSM_MI_TYPE_IMSI:
Harald Welte9176bd42009-07-23 18:46:00 +02001501 subscr = subscr_get_by_imsi(bts->network, mi_string);
Harald Weltefe18d8f2009-02-22 21:14:24 +00001502 break;
1503 }
Harald Welte2d35ae62009-02-06 12:02:13 +00001504
1505 if (!subscr) {
1506 DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");
Harald Welte09e38af2009-02-16 22:52:23 +00001507 /* FIXME: request id? close channel? */
Harald Welte2d35ae62009-02-06 12:02:13 +00001508 return -EINVAL;
1509 }
1510 DEBUGP(DRR, "<- Channel was requested by %s\n",
Harald Welte76042182009-08-08 16:03:15 +02001511 subscr->name && strlen(subscr->name) ? subscr->name : subscr->imsi);
Holger Freyther053e09d2009-02-14 22:51:06 +00001512
Harald Weltec2e302d2009-07-05 14:08:13 +02001513 subscr->equipment.classmark2_len = *classmark2_lv;
1514 memcpy(subscr->equipment.classmark2, classmark2_lv+1, *classmark2_lv);
1515 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001516
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001517 if (!msg->lchan->subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001518 msg->lchan->subscr = subscr;
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001519 } else if (msg->lchan->subscr != subscr) {
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001520 DEBUGP(DRR, "<- Channel already owned by someone else?\n");
1521 subscr_put(subscr);
Holger Freytherc21cfbc2009-06-02 02:54:57 +00001522 return -EINVAL;
1523 } else {
1524 DEBUGP(DRR, "<- Channel already owned by us\n");
1525 subscr_put(subscr);
1526 subscr = msg->lchan->subscr;
Holger Freyther2fa4cb52009-02-14 23:53:15 +00001527 }
1528
Harald Welte595ad7b2009-02-16 22:05:44 +00001529 sig_data.subscr = subscr;
1530 sig_data.bts = msg->lchan->ts->trx->bts;
1531 sig_data.lchan = msg->lchan;
1532
1533 dispatch_signal(SS_PAGING, S_PAGING_COMPLETED, &sig_data);
Harald Weltebe143102009-06-10 11:21:55 +08001534
1535 /* Stop paging on the bts we received the paging response */
Harald Welte7ccf7782009-02-17 01:43:01 +00001536 paging_request_stop(msg->trx->bts, subscr, msg->lchan);
Harald Welte2d35ae62009-02-06 12:02:13 +00001537
Harald Welte7584aea2009-02-11 11:44:12 +00001538 /* FIXME: somehow signal the completion of the PAGING to
1539 * the entity that requested the paging */
1540
Harald Welte2d35ae62009-02-06 12:02:13 +00001541 return rc;
1542}
1543
Harald Weltef7c43522009-06-09 20:24:21 +00001544static int gsm48_rx_rr_classmark(struct msgb *msg)
1545{
1546 struct gsm48_hdr *gh = msgb_l3(msg);
1547 struct gsm_subscriber *subscr = msg->lchan->subscr;
1548 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1549 u_int8_t cm2_len, cm3_len = 0;
1550 u_int8_t *cm2, *cm3 = NULL;
1551
1552 DEBUGP(DRR, "CLASSMARK CHANGE ");
1553
1554 /* classmark 2 */
1555 cm2_len = gh->data[0];
1556 cm2 = &gh->data[1];
1557 DEBUGPC(DRR, "CM2(len=%u) ", cm2_len);
1558
1559 if (payload_len > cm2_len + 1) {
1560 /* we must have a classmark3 */
1561 if (gh->data[cm2_len+1] != 0x20) {
1562 DEBUGPC(DRR, "ERR CM3 TAG\n");
1563 return -EINVAL;
1564 }
1565 if (cm2_len > 3) {
1566 DEBUGPC(DRR, "CM2 too long!\n");
1567 return -EINVAL;
1568 }
1569
1570 cm3_len = gh->data[cm2_len+2];
1571 cm3 = &gh->data[cm2_len+3];
1572 if (cm3_len > 14) {
1573 DEBUGPC(DRR, "CM3 len %u too long!\n", cm3_len);
1574 return -EINVAL;
1575 }
1576 DEBUGPC(DRR, "CM3(len=%u)\n", cm3_len);
1577 }
1578 if (subscr) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001579 subscr->equipment.classmark2_len = cm2_len;
1580 memcpy(subscr->equipment.classmark2, cm2, cm2_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001581 if (cm3) {
Harald Weltec2e302d2009-07-05 14:08:13 +02001582 subscr->equipment.classmark3_len = cm3_len;
1583 memcpy(subscr->equipment.classmark3, cm3, cm3_len);
Harald Weltef7c43522009-06-09 20:24:21 +00001584 }
Harald Weltec2e302d2009-07-05 14:08:13 +02001585 db_sync_equipment(&subscr->equipment);
Harald Weltef7c43522009-06-09 20:24:21 +00001586 }
1587
Harald Weltef7c43522009-06-09 20:24:21 +00001588 return 0;
1589}
1590
Harald Weltecf5b3592009-05-01 18:28:42 +00001591static int gsm48_rx_rr_status(struct msgb *msg)
1592{
1593 struct gsm48_hdr *gh = msgb_l3(msg);
1594
1595 DEBUGP(DRR, "STATUS rr_cause = %s\n",
1596 rr_cause_name(gh->data[0]));
1597
1598 return 0;
1599}
1600
Harald Weltef7c43522009-06-09 20:24:21 +00001601static int gsm48_rx_rr_meas_rep(struct msgb *msg)
1602{
1603 struct gsm48_hdr *gh = msgb_l3(msg);
1604 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
1605 static struct gsm_meas_rep meas_rep;
1606
Harald Welte10d0e672009-06-27 02:53:10 +02001607 DEBUGP(DMEAS, "MEASUREMENT REPORT ");
Harald Weltef7c43522009-06-09 20:24:21 +00001608 parse_meas_rep(&meas_rep, gh->data, payload_len);
1609 if (meas_rep.flags & MEAS_REP_F_DTX)
Harald Welte10d0e672009-06-27 02:53:10 +02001610 DEBUGPC(DMEAS, "DTX ");
Harald Weltef7c43522009-06-09 20:24:21 +00001611 if (meas_rep.flags & MEAS_REP_F_BA1)
Harald Welte10d0e672009-06-27 02:53:10 +02001612 DEBUGPC(DMEAS, "BA1 ");
Harald Weltef7c43522009-06-09 20:24:21 +00001613 if (!(meas_rep.flags & MEAS_REP_F_VALID))
Harald Welte10d0e672009-06-27 02:53:10 +02001614 DEBUGPC(DMEAS, "NOT VALID ");
Harald Weltef7c43522009-06-09 20:24:21 +00001615 else
Harald Welte10d0e672009-06-27 02:53:10 +02001616 DEBUGPC(DMEAS, "FULL(lev=%u, qual=%u) SUB(lev=%u, qual=%u) ",
Harald Weltef7c43522009-06-09 20:24:21 +00001617 meas_rep.rxlev_full, meas_rep.rxqual_full, meas_rep.rxlev_sub,
1618 meas_rep.rxqual_sub);
1619
Harald Welte10d0e672009-06-27 02:53:10 +02001620 DEBUGPC(DMEAS, "NUM_NEIGH=%u\n", meas_rep.num_cell);
Harald Weltef7c43522009-06-09 20:24:21 +00001621
1622 /* FIXME: put the results somwhere */
1623
1624 return 0;
1625}
1626
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001627static int gsm48_rx_rr_app_info(struct msgb *msg)
1628{
1629 struct gsm48_hdr *gh = msgb_l3(msg);
1630 u_int8_t apdu_id_flags;
1631 u_int8_t apdu_len;
1632 u_int8_t *apdu_data;
1633
1634 apdu_id_flags = gh->data[0];
1635 apdu_len = gh->data[1];
1636 apdu_data = gh->data+2;
1637
1638 DEBUGP(DNM, "RX APPLICATION INFO id/flags=0x%02x apdu_len=%u apdu=%s",
1639 apdu_id_flags, apdu_len, hexdump(apdu_data, apdu_len));
1640
Harald Welte (local)026531e2009-08-16 10:40:10 +02001641 return db_apdu_blob_store(msg->lchan->subscr, apdu_id_flags, apdu_len, apdu_data);
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001642}
1643
1644
Harald Weltebf5e8df2009-02-03 12:59:45 +00001645/* Receive a GSM 04.08 Radio Resource (RR) message */
Harald Welte52b1f982008-12-23 20:25:15 +00001646static int gsm0408_rcv_rr(struct msgb *msg)
1647{
1648 struct gsm48_hdr *gh = msgb_l3(msg);
Harald Welte2d35ae62009-02-06 12:02:13 +00001649 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00001650
1651 switch (gh->msg_type) {
1652 case GSM48_MT_RR_CLSM_CHG:
Harald Weltef7c43522009-06-09 20:24:21 +00001653 rc = gsm48_rx_rr_classmark(msg);
Harald Welte52b1f982008-12-23 20:25:15 +00001654 break;
Harald Weltefc977a82008-12-27 10:19:37 +00001655 case GSM48_MT_RR_GPRS_SUSP_REQ:
1656 DEBUGP(DRR, "GRPS SUSPEND REQUEST\n");
1657 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001658 case GSM48_MT_RR_PAG_RESP:
Harald Welte2d35ae62009-02-06 12:02:13 +00001659 rc = gsm48_rr_rx_pag_resp(msg);
1660 break;
Harald Welte7ccf7782009-02-17 01:43:01 +00001661 case GSM48_MT_RR_CHAN_MODE_MODIF_ACK:
1662 DEBUGP(DRR, "CHANNEL MODE MODIFY ACK\n");
Harald Welte13cac662009-07-29 12:10:35 +02001663 /* We've successfully modified the MS side of the channel,
1664 * now go on to modify the BTS side of the channel */
Harald Welte9943c5b2009-07-29 15:41:29 +02001665 msg->lchan->rsl_cmode = RSL_CMOD_SPD_SPEECH;
Harald Welte2c38aa82009-02-18 03:44:24 +00001666 rc = rsl_chan_mode_modify_req(msg->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00001667 break;
Harald Weltecf5b3592009-05-01 18:28:42 +00001668 case GSM48_MT_RR_STATUS:
1669 rc = gsm48_rx_rr_status(msg);
1670 break;
Harald Weltef7c43522009-06-09 20:24:21 +00001671 case GSM48_MT_RR_MEAS_REP:
1672 rc = gsm48_rx_rr_meas_rep(msg);
1673 break;
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001674 case GSM48_MT_RR_APP_INFO:
1675 rc = gsm48_rx_rr_app_info(msg);
1676 break;
Harald Welte52b1f982008-12-23 20:25:15 +00001677 default:
Harald Welte2d35ae62009-02-06 12:02:13 +00001678 fprintf(stderr, "Unimplemented GSM 04.08 RR msg type 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00001679 gh->msg_type);
1680 break;
1681 }
1682
Harald Welte2d35ae62009-02-06 12:02:13 +00001683 return rc;
Harald Welte52b1f982008-12-23 20:25:15 +00001684}
1685
Holger Freythere64a7a32009-02-06 21:55:37 +00001686
Harald Welte (local)6eef5642009-08-15 23:32:44 +02001687int gsm48_send_rr_app_info(struct gsm_lchan *lchan, u_int8_t apdu_id,
1688 u_int8_t apdu_len, u_int8_t *apdu)
1689{
1690 struct msgb *msg = gsm48_msgb_alloc();
1691 struct gsm48_hdr *gh;
1692
1693 msg->lchan = lchan;
1694
1695 DEBUGP(DRR, "TX APPLICATION INFO id=0x%02x, len=%u\n",
1696 apdu_id, apdu_len);
1697
1698 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2 + apdu_len);
1699 gh->proto_discr = GSM48_PDISC_RR;
1700 gh->msg_type = GSM48_MT_RR_APP_INFO;
1701 gh->data[0] = apdu_id;
1702 gh->data[1] = apdu_len;
1703 memcpy(gh->data+2, apdu, apdu_len);
1704
1705 return gsm48_sendmsg(msg, NULL);
1706}
1707
Harald Welte4bc90a12008-12-27 16:32:52 +00001708/* Call Control */
1709
Harald Welte7584aea2009-02-11 11:44:12 +00001710/* The entire call control code is written in accordance with Figure 7.10c
1711 * for 'very early assignment', i.e. we allocate a TCH/F during IMMEDIATE
1712 * ASSIGN, then first use that TCH/F for signalling and later MODE MODIFY
1713 * it for voice */
1714
Harald Welte4bfdfe72009-06-10 23:11:52 +08001715static void new_cc_state(struct gsm_trans *trans, int state)
1716{
1717 if (state > 31 || state < 0)
1718 return;
1719
1720 DEBUGP(DCC, "new state %s -> %s\n",
Harald Weltedcaf5652009-07-23 18:56:43 +02001721 cc_state_names[trans->cc.state], cc_state_names[state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001722
Harald Weltedcaf5652009-07-23 18:56:43 +02001723 trans->cc.state = state;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001724}
1725
1726static int gsm48_cc_tx_status(struct gsm_trans *trans, void *arg)
Harald Welte4bc90a12008-12-27 16:32:52 +00001727{
1728 struct msgb *msg = gsm48_msgb_alloc();
1729 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1730 u_int8_t *cause, *call_state;
1731
Harald Welte4bc90a12008-12-27 16:32:52 +00001732 gh->msg_type = GSM48_MT_CC_STATUS;
1733
1734 cause = msgb_put(msg, 3);
1735 cause[0] = 2;
1736 cause[1] = GSM48_CAUSE_CS_GSM | GSM48_CAUSE_LOC_USER;
1737 cause[2] = 0x80 | 30; /* response to status inquiry */
1738
1739 call_state = msgb_put(msg, 1);
1740 call_state[0] = 0xc0 | 0x00;
1741
Harald Welte39e2ead2009-07-23 21:13:03 +02001742 return gsm48_sendmsg(msg, trans);
Harald Welte4bc90a12008-12-27 16:32:52 +00001743}
1744
Harald Welte6f4b7532008-12-29 00:39:37 +00001745static int gsm48_tx_simple(struct gsm_lchan *lchan,
1746 u_int8_t pdisc, u_int8_t msg_type)
Harald Welte4bc90a12008-12-27 16:32:52 +00001747{
1748 struct msgb *msg = gsm48_msgb_alloc();
1749 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1750
1751 msg->lchan = lchan;
1752
Harald Welte6f4b7532008-12-29 00:39:37 +00001753 gh->proto_discr = pdisc;
Harald Welte4bc90a12008-12-27 16:32:52 +00001754 gh->msg_type = msg_type;
1755
Harald Welte39e2ead2009-07-23 21:13:03 +02001756 return gsm48_sendmsg(msg, NULL);
Harald Welte4bc90a12008-12-27 16:32:52 +00001757}
1758
Harald Welte4bfdfe72009-06-10 23:11:52 +08001759static void gsm48_stop_cc_timer(struct gsm_trans *trans)
1760{
Harald Weltedcaf5652009-07-23 18:56:43 +02001761 if (bsc_timer_pending(&trans->cc.timer)) {
1762 DEBUGP(DCC, "stopping pending timer T%x\n", trans->cc.Tcurrent);
1763 bsc_del_timer(&trans->cc.timer);
1764 trans->cc.Tcurrent = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001765 }
1766}
1767
1768static int mncc_recvmsg(struct gsm_network *net, struct gsm_trans *trans,
1769 int msg_type, struct gsm_mncc *mncc)
1770{
1771 struct msgb *msg;
1772
1773 if (trans)
1774 if (trans->lchan)
Harald Welte6f5aee02009-07-23 21:21:14 +02001775 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08001776 "Sending '%s' to MNCC.\n",
1777 trans->lchan->ts->trx->bts->nr,
1778 trans->lchan->ts->trx->nr,
1779 trans->lchan->ts->nr, trans->transaction_id,
1780 (trans->subscr)?(trans->subscr->extension):"-",
1781 get_mncc_name(msg_type));
1782 else
1783 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
1784 "Sending '%s' to MNCC.\n",
1785 (trans->subscr)?(trans->subscr->extension):"-",
1786 get_mncc_name(msg_type));
1787 else
1788 DEBUGP(DCC, "(bts - trx - ts - ti -- sub -) "
1789 "Sending '%s' to MNCC.\n", get_mncc_name(msg_type));
1790
1791 mncc->msg_type = msg_type;
1792
Harald Welte966636f2009-06-26 19:39:35 +02001793 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
Harald Welte4bfdfe72009-06-10 23:11:52 +08001794 if (!msg)
1795 return -ENOMEM;
1796 memcpy(msg->data, mncc, sizeof(struct gsm_mncc));
1797 msgb_enqueue(&net->upqueue, msg);
1798
1799 return 0;
1800}
1801
1802int mncc_release_ind(struct gsm_network *net, struct gsm_trans *trans,
1803 u_int32_t callref, int location, int value)
1804{
1805 struct gsm_mncc rel;
1806
Harald Welte92f70c52009-06-12 01:54:08 +08001807 memset(&rel, 0, sizeof(rel));
Harald Welte4bfdfe72009-06-10 23:11:52 +08001808 rel.callref = callref;
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001809 mncc_set_cause(&rel, location, value);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001810 return mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
1811}
1812
Harald Weltedcaf5652009-07-23 18:56:43 +02001813/* Call Control Specific transaction release.
1814 * gets called by trans_free, DO NOT CALL YOURSELF! */
1815void _gsm48_cc_trans_free(struct gsm_trans *trans)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001816{
Harald Welte4bfdfe72009-06-10 23:11:52 +08001817 gsm48_stop_cc_timer(trans);
1818
1819 /* send release to L4, if callref still exists */
1820 if (trans->callref) {
1821 /* Ressource unavailable */
Harald Welte596fed42009-07-23 19:06:52 +02001822 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001823 GSM48_CAUSE_LOC_PRN_S_LU,
1824 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001825 }
Harald Weltedcaf5652009-07-23 18:56:43 +02001826 if (trans->cc.state != GSM_CSTATE_NULL)
Harald Welte4bfdfe72009-06-10 23:11:52 +08001827 new_cc_state(trans, GSM_CSTATE_NULL);
Harald Weltedcaf5652009-07-23 18:56:43 +02001828 if (trans->lchan)
1829 trau_mux_unmap(&trans->lchan->ts->e1_link, trans->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001830}
1831
1832static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg);
1833
Harald Welte09e38af2009-02-16 22:52:23 +00001834/* call-back from paging the B-end of the connection */
1835static int setup_trig_pag_evt(unsigned int hooknum, unsigned int event,
Harald Welte7ccf7782009-02-17 01:43:01 +00001836 struct msgb *msg, void *_lchan, void *param)
Harald Welte09e38af2009-02-16 22:52:23 +00001837{
Harald Welte7ccf7782009-02-17 01:43:01 +00001838 struct gsm_lchan *lchan = _lchan;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001839 struct gsm_subscriber *subscr = param;
1840 struct gsm_trans *transt, *tmp;
1841 struct gsm_network *net;
Harald Weltec05677b2009-06-26 20:17:06 +02001842
Harald Welte09e38af2009-02-16 22:52:23 +00001843 if (hooknum != GSM_HOOK_RR_PAGING)
1844 return -EINVAL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08001845
1846 if (!subscr)
1847 return -EINVAL;
1848 net = subscr->net;
1849 if (!net) {
1850 DEBUGP(DCC, "Error Network not set!\n");
1851 return -EINVAL;
Harald Welte5a065df2009-02-22 21:13:18 +00001852 }
Harald Welte7584aea2009-02-11 11:44:12 +00001853
Harald Welte4bfdfe72009-06-10 23:11:52 +08001854 /* check all tranactions (without lchan) for subscriber */
1855 llist_for_each_entry_safe(transt, tmp, &net->trans_list, entry) {
1856 if (transt->subscr != subscr || transt->lchan)
1857 continue;
1858 switch (event) {
1859 case GSM_PAGING_SUCCEEDED:
1860 if (!lchan) // paranoid
1861 break;
1862 DEBUGP(DCC, "Paging subscr %s succeeded!\n",
1863 subscr->extension);
1864 /* Assign lchan */
1865 if (!transt->lchan) {
1866 transt->lchan = lchan;
1867 use_lchan(lchan);
1868 }
1869 /* send SETUP request to called party */
Harald Weltedcaf5652009-07-23 18:56:43 +02001870 gsm48_cc_tx_setup(transt, &transt->cc.msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001871 break;
1872 case GSM_PAGING_EXPIRED:
1873 DEBUGP(DCC, "Paging subscr %s expired!\n",
1874 subscr->extension);
1875 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02001876 mncc_release_ind(transt->subscr->net, transt,
1877 transt->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08001878 GSM48_CAUSE_LOC_PRN_S_LU,
1879 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001880 transt->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02001881 trans_free(transt);
Harald Welte4bfdfe72009-06-10 23:11:52 +08001882 break;
1883 }
1884 }
Harald Welte09e38af2009-02-16 22:52:23 +00001885 return 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00001886}
Harald Welte7584aea2009-02-11 11:44:12 +00001887
Harald Welte805f6442009-07-28 18:25:29 +02001888/* some other part of the code sends us a signal */
1889static int handle_abisip_signal(unsigned int subsys, unsigned int signal,
1890 void *handler_data, void *signal_data)
1891{
1892 struct gsm_lchan *lchan = signal_data;
1893 struct gsm_bts_trx_ts *ts;
1894 int rc;
1895
1896 if (subsys != SS_ABISIP)
1897 return 0;
1898
1899 /* in case we use direct BTS-to-BTS RTP */
1900 if (ipacc_rtp_direct)
1901 return 0;
1902
1903 ts = lchan->ts;
1904
1905 switch (signal) {
1906 case S_ABISIP_BIND_ACK:
1907 /* the BTS has successfully bound a TCH to a local ip/port,
1908 * which means we can connect our UDP socket to it */
1909 if (ts->abis_ip.rtp_socket) {
1910 rtp_socket_free(ts->abis_ip.rtp_socket);
1911 ts->abis_ip.rtp_socket = NULL;
1912 }
1913
1914 ts->abis_ip.rtp_socket = rtp_socket_create();
1915 if (!ts->abis_ip.rtp_socket)
1916 goto out_err;
1917
1918 rc = rtp_socket_connect(ts->abis_ip.rtp_socket,
1919 ts->abis_ip.bound_ip,
1920 ts->abis_ip.bound_port);
1921 if (rc < 0)
1922 goto out_err;
1923 break;
1924 case S_ABISIP_DISC_IND:
1925 /* the BTS tells us a RTP stream has been disconnected */
1926 if (ts->abis_ip.rtp_socket) {
1927 rtp_socket_free(ts->abis_ip.rtp_socket);
1928 ts->abis_ip.rtp_socket = NULL;
1929 }
1930 break;
1931 }
1932
1933 return 0;
1934out_err:
1935 /* FIXME: do something */
1936 return 0;
1937}
1938
1939/* bind rtp proxy to local IP/port and tell BTS to connect to it */
1940static int ipacc_connect_proxy_bind(struct gsm_lchan *lchan)
1941{
1942 struct gsm_bts_trx_ts *ts = lchan->ts;
1943 struct rtp_socket *rs = ts->abis_ip.rtp_socket;
1944 int rc;
1945
1946 rc = rsl_ipacc_connect(lchan, ntohl(rs->rtp.sin_local.sin_addr.s_addr),
1947 ntohs(rs->rtp.sin_local.sin_port),
1948 ts->abis_ip.conn_id,
1949 /* FIXME: use RTP payload of bound socket, not BTS*/
1950 ts->abis_ip.rtp_payload2);
1951
1952 return rc;
1953}
1954
Harald Welte49f48b82009-02-17 15:29:33 +00001955/* map two ipaccess RTP streams onto each other */
Harald Welte11fa29c2009-02-19 17:24:39 +00001956static int tch_map(struct gsm_lchan *lchan, struct gsm_lchan *remote_lchan)
Harald Welte49f48b82009-02-17 15:29:33 +00001957{
Harald Welte11fa29c2009-02-19 17:24:39 +00001958 struct gsm_bts *bts = lchan->ts->trx->bts;
1959 struct gsm_bts *remote_bts = remote_lchan->ts->trx->bts;
Harald Welte49f48b82009-02-17 15:29:33 +00001960 struct gsm_bts_trx_ts *ts;
Harald Welte805f6442009-07-28 18:25:29 +02001961 int rc;
Harald Welte49f48b82009-02-17 15:29:33 +00001962
Harald Welte11fa29c2009-02-19 17:24:39 +00001963 DEBUGP(DCC, "Setting up TCH map between (bts=%u,trx=%u,ts=%u) and (bts=%u,trx=%u,ts=%u)\n",
1964 bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
1965 remote_bts->nr, remote_lchan->ts->trx->nr, remote_lchan->ts->nr);
1966
1967 if (bts->type != remote_bts->type) {
1968 DEBUGP(DCC, "Cannot switch calls between different BTS types yet\n");
1969 return -EINVAL;
1970 }
Harald Welte49f48b82009-02-17 15:29:33 +00001971
Harald Welte11fa29c2009-02-19 17:24:39 +00001972 switch (bts->type) {
1973 case GSM_BTS_TYPE_NANOBTS_900:
1974 case GSM_BTS_TYPE_NANOBTS_1800:
Harald Welte805f6442009-07-28 18:25:29 +02001975 if (!ipacc_rtp_direct) {
1976 /* connect the TCH's to our RTP proxy */
1977 rc = ipacc_connect_proxy_bind(lchan);
1978 if (rc < 0)
1979 return rc;
1980 rc = ipacc_connect_proxy_bind(remote_lchan);
1981
1982 /* connect them with each other */
1983 rtp_socket_proxy(lchan->ts->abis_ip.rtp_socket,
1984 remote_lchan->ts->abis_ip.rtp_socket);
1985 } else {
1986 /* directly connect TCH RTP streams to each other */
1987 ts = remote_lchan->ts;
1988 rc = rsl_ipacc_connect(lchan, ts->abis_ip.bound_ip,
1989 ts->abis_ip.bound_port,
1990 lchan->ts->abis_ip.conn_id,
1991 ts->abis_ip.rtp_payload2);
1992 if (rc < 0)
1993 return rc;
1994 ts = lchan->ts;
1995 rc = rsl_ipacc_connect(remote_lchan, ts->abis_ip.bound_ip,
1996 ts->abis_ip.bound_port,
1997 remote_lchan->ts->abis_ip.conn_id,
1998 ts->abis_ip.rtp_payload2);
1999 }
Harald Welte11fa29c2009-02-19 17:24:39 +00002000 break;
2001 case GSM_BTS_TYPE_BS11:
2002 trau_mux_map_lchan(lchan, remote_lchan);
2003 break;
2004 default:
2005 DEBUGP(DCC, "Unknown BTS type %u\n", bts->type);
Harald Welte805f6442009-07-28 18:25:29 +02002006 rc = -EINVAL;
Harald Welte11fa29c2009-02-19 17:24:39 +00002007 break;
2008 }
Harald Welte49f48b82009-02-17 15:29:33 +00002009
2010 return 0;
2011}
2012
Harald Welte4bfdfe72009-06-10 23:11:52 +08002013/* bridge channels of two transactions */
2014static int tch_bridge(struct gsm_network *net, u_int32_t *refs)
Harald Welte7ccf7782009-02-17 01:43:01 +00002015{
Harald Weltedcaf5652009-07-23 18:56:43 +02002016 struct gsm_trans *trans1 = trans_find_by_callref(net, refs[0]);
2017 struct gsm_trans *trans2 = trans_find_by_callref(net, refs[1]);
Harald Welte7ccf7782009-02-17 01:43:01 +00002018
Harald Welte4bfdfe72009-06-10 23:11:52 +08002019 if (!trans1 || !trans2)
Harald Welte7ccf7782009-02-17 01:43:01 +00002020 return -EIO;
2021
Harald Welte4bfdfe72009-06-10 23:11:52 +08002022 if (!trans1->lchan || !trans2->lchan)
2023 return -EIO;
2024
2025 /* through-connect channel */
2026 return tch_map(trans1->lchan, trans2->lchan);
Harald Welte7ccf7782009-02-17 01:43:01 +00002027}
2028
Harald Welte4bfdfe72009-06-10 23:11:52 +08002029/* enable receive of channels to upqueue */
2030static int tch_recv(struct gsm_network *net, struct gsm_mncc *data, int enable)
2031{
2032 struct gsm_trans *trans;
Harald Welte7ccf7782009-02-17 01:43:01 +00002033
Harald Welte4bfdfe72009-06-10 23:11:52 +08002034 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002035 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002036 if (!trans)
2037 return -EIO;
2038 if (!trans->lchan)
2039 return 0;
2040
2041 // todo IPACCESS
2042 if (enable)
2043 return trau_recv_lchan(trans->lchan, data->callref);
2044 return trau_mux_unmap(NULL, data->callref);
2045}
2046
2047/* send a frame to channel */
2048static int tch_frame(struct gsm_network *net, struct gsm_trau_frame *frame)
2049{
2050 struct gsm_trans *trans;
2051
2052 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02002053 trans = trans_find_by_callref(net, frame->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002054 if (!trans)
2055 return -EIO;
2056 if (!trans->lchan)
2057 return 0;
2058 if (trans->lchan->type != GSM_LCHAN_TCH_F &&
2059 trans->lchan->type != GSM_LCHAN_TCH_H)
2060 return 0;
2061
2062 // todo IPACCESS
2063 return trau_send_lchan(trans->lchan,
2064 (struct decoded_trau_frame *)frame->data);
2065}
2066
2067
2068static int gsm48_cc_rx_status_enq(struct gsm_trans *trans, struct msgb *msg)
2069{
2070 DEBUGP(DCC, "-> STATUS ENQ\n");
2071 return gsm48_cc_tx_status(trans, msg);
2072}
2073
2074static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg);
2075static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg);
2076
2077static void gsm48_cc_timeout(void *arg)
2078{
2079 struct gsm_trans *trans = arg;
2080 int disconnect = 0, release = 0;
Harald Weltec66b71c2009-06-11 14:23:20 +08002081 int mo_cause = GSM48_CC_CAUSE_RECOVERY_TIMER;
2082 int mo_location = GSM48_CAUSE_LOC_USER;
2083 int l4_cause = GSM48_CC_CAUSE_NORMAL_UNSPEC;
2084 int l4_location = GSM48_CAUSE_LOC_PRN_S_LU;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002085 struct gsm_mncc mo_rel, l4_rel;
2086
2087 memset(&mo_rel, 0, sizeof(struct gsm_mncc));
2088 mo_rel.callref = trans->callref;
2089 memset(&l4_rel, 0, sizeof(struct gsm_mncc));
2090 l4_rel.callref = trans->callref;
2091
Harald Weltedcaf5652009-07-23 18:56:43 +02002092 switch(trans->cc.Tcurrent) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002093 case 0x303:
2094 release = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002095 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002096 break;
2097 case 0x310:
2098 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002099 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002100 break;
2101 case 0x313:
2102 disconnect = 1;
2103 /* unknown, did not find it in the specs */
2104 break;
2105 case 0x301:
2106 disconnect = 1;
Harald Weltec66b71c2009-06-11 14:23:20 +08002107 l4_cause = GSM48_CC_CAUSE_USER_NOTRESPOND;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002108 break;
2109 case 0x308:
Harald Weltedcaf5652009-07-23 18:56:43 +02002110 if (!trans->cc.T308_second) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002111 /* restart T308 a second time */
Harald Weltedcaf5652009-07-23 18:56:43 +02002112 gsm48_cc_tx_release(trans, &trans->cc.msg);
2113 trans->cc.T308_second = 1;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002114 break; /* stay in release state */
2115 }
Harald Weltedcaf5652009-07-23 18:56:43 +02002116 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002117 return;
2118// release = 1;
2119// l4_cause = 14;
2120// break;
2121 case 0x306:
2122 release = 1;
Harald Weltedcaf5652009-07-23 18:56:43 +02002123 mo_cause = trans->cc.msg.cause.value;
2124 mo_location = trans->cc.msg.cause.location;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002125 break;
2126 case 0x323:
2127 disconnect = 1;
2128 break;
2129 default:
2130 release = 1;
2131 }
2132
2133 if (release && trans->callref) {
2134 /* process release towards layer 4 */
Harald Welte596fed42009-07-23 19:06:52 +02002135 mncc_release_ind(trans->subscr->net, trans, trans->callref,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002136 l4_location, l4_cause);
2137 trans->callref = 0;
2138 }
2139
2140 if (disconnect && trans->callref) {
2141 /* process disconnect towards layer 4 */
2142 mncc_set_cause(&l4_rel, l4_location, l4_cause);
Harald Welte596fed42009-07-23 19:06:52 +02002143 mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &l4_rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002144 }
2145
2146 /* process disconnect towards mobile station */
2147 if (disconnect || release) {
2148 mncc_set_cause(&mo_rel, mo_location, mo_cause);
Harald Weltedcaf5652009-07-23 18:56:43 +02002149 mo_rel.cause.diag[0] = ((trans->cc.Tcurrent & 0xf00) >> 8) + '0';
2150 mo_rel.cause.diag[1] = ((trans->cc.Tcurrent & 0x0f0) >> 4) + '0';
2151 mo_rel.cause.diag[2] = (trans->cc.Tcurrent & 0x00f) + '0';
Harald Welte4bfdfe72009-06-10 23:11:52 +08002152 mo_rel.cause.diag_len = 3;
2153
2154 if (disconnect)
2155 gsm48_cc_tx_disconnect(trans, &mo_rel);
2156 if (release)
2157 gsm48_cc_tx_release(trans, &mo_rel);
2158 }
2159
2160}
2161
2162static void gsm48_start_cc_timer(struct gsm_trans *trans, int current,
2163 int sec, int micro)
2164{
2165 DEBUGP(DCC, "starting timer T%x with %d seconds\n", current, sec);
Harald Weltedcaf5652009-07-23 18:56:43 +02002166 trans->cc.timer.cb = gsm48_cc_timeout;
2167 trans->cc.timer.data = trans;
2168 bsc_schedule_timer(&trans->cc.timer, sec, micro);
2169 trans->cc.Tcurrent = current;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002170}
2171
2172static int gsm48_cc_rx_setup(struct gsm_trans *trans, struct msgb *msg)
2173{
2174 struct gsm48_hdr *gh = msgb_l3(msg);
2175 u_int8_t msg_type = gh->msg_type & 0xbf;
2176 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2177 struct tlv_parsed tp;
2178 struct gsm_mncc setup;
2179
2180 memset(&setup, 0, sizeof(struct gsm_mncc));
2181 setup.callref = trans->callref;
2182 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2183 /* emergency setup is identified by msg_type */
2184 if (msg_type == GSM48_MT_CC_EMERG_SETUP)
2185 setup.emergency = 1;
2186
2187 /* use subscriber as calling party number */
2188 if (trans->subscr) {
2189 setup.fields |= MNCC_F_CALLING;
2190 strncpy(setup.calling.number, trans->subscr->extension,
2191 sizeof(setup.calling.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002192 strncpy(setup.imsi, trans->subscr->imsi,
2193 sizeof(setup.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002194 }
2195 /* bearer capability */
2196 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2197 setup.fields |= MNCC_F_BEARER_CAP;
2198 decode_bearer_cap(&setup.bearer_cap,
2199 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2200 }
2201 /* facility */
2202 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2203 setup.fields |= MNCC_F_FACILITY;
2204 decode_facility(&setup.facility,
2205 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2206 }
2207 /* called party bcd number */
2208 if (TLVP_PRESENT(&tp, GSM48_IE_CALLED_BCD)) {
2209 setup.fields |= MNCC_F_CALLED;
2210 decode_called(&setup.called,
2211 TLVP_VAL(&tp, GSM48_IE_CALLED_BCD)-1);
2212 }
2213 /* user-user */
2214 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2215 setup.fields |= MNCC_F_USERUSER;
2216 decode_useruser(&setup.useruser,
2217 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2218 }
2219 /* ss-version */
2220 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2221 setup.fields |= MNCC_F_SSVERSION;
2222 decode_ssversion(&setup.ssversion,
2223 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2224 }
2225 /* CLIR suppression */
2226 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_SUPP))
2227 setup.clir.sup = 1;
2228 /* CLIR invocation */
2229 if (TLVP_PRESENT(&tp, GSM48_IE_CLIR_INVOC))
2230 setup.clir.inv = 1;
2231 /* cc cap */
2232 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2233 setup.fields |= MNCC_F_CCCAP;
2234 decode_cccap(&setup.cccap,
2235 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2236 }
2237
Harald Welte4bfdfe72009-06-10 23:11:52 +08002238 new_cc_state(trans, GSM_CSTATE_INITIATED);
2239
2240 /* indicate setup to MNCC */
Harald Welte596fed42009-07-23 19:06:52 +02002241 mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_IND, &setup);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002242
Harald Welte13cac662009-07-29 12:10:35 +02002243 /* MNCC code will modify the channel asynchronously, we should
2244 * ipaccess-bind only after the modification has been made to the
2245 * lchan->tch_mode */
Harald Welte4bfdfe72009-06-10 23:11:52 +08002246 return 0;
2247}
2248
2249static int gsm48_cc_tx_setup(struct gsm_trans *trans, void *arg)
Harald Welte65e74cc2008-12-29 01:55:35 +00002250{
2251 struct msgb *msg = gsm48_msgb_alloc();
2252 struct gsm48_hdr *gh;
Harald Welte4bfdfe72009-06-10 23:11:52 +08002253 struct gsm_mncc *setup = arg;
Harald Welte78283ef2009-07-23 21:36:44 +02002254 int rc, trans_id;
Harald Welte65e74cc2008-12-29 01:55:35 +00002255
Harald Welte7ccf7782009-02-17 01:43:01 +00002256 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
Harald Welte65e74cc2008-12-29 01:55:35 +00002257
Harald Welte4bfdfe72009-06-10 23:11:52 +08002258 /* transaction id must not be assigned */
2259 if (trans->transaction_id != 0xff) { /* unasssigned */
2260 DEBUGP(DCC, "TX Setup with assigned transaction. "
2261 "This is not allowed!\n");
2262 /* Temporarily out of order */
Harald Welte596fed42009-07-23 19:06:52 +02002263 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002264 GSM48_CAUSE_LOC_PRN_S_LU,
2265 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002266 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002267 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002268 return rc;
2269 }
2270
2271 /* Get free transaction_id */
Harald Welte78283ef2009-07-23 21:36:44 +02002272 trans_id = trans_assign_trans_id(trans->subscr, GSM48_PDISC_CC, 0);
2273 if (trans_id < 0) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002274 /* no free transaction ID */
Harald Welte596fed42009-07-23 19:06:52 +02002275 rc = mncc_release_ind(trans->subscr->net, trans, trans->callref,
Andreas Eversberg7563ac92009-06-14 22:14:12 +08002276 GSM48_CAUSE_LOC_PRN_S_LU,
2277 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002278 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002279 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002280 return rc;
2281 }
Harald Welte78283ef2009-07-23 21:36:44 +02002282 trans->transaction_id = trans_id;
Harald Welte49f48b82009-02-17 15:29:33 +00002283
Harald Welte65e74cc2008-12-29 01:55:35 +00002284 gh->msg_type = GSM48_MT_CC_SETUP;
Harald Welte09e38af2009-02-16 22:52:23 +00002285
Harald Welte4bfdfe72009-06-10 23:11:52 +08002286 gsm48_start_cc_timer(trans, 0x303, GSM48_T303);
Harald Welte65e74cc2008-12-29 01:55:35 +00002287
Harald Welte4bfdfe72009-06-10 23:11:52 +08002288 /* bearer capability */
2289 if (setup->fields & MNCC_F_BEARER_CAP)
2290 encode_bearer_cap(msg, 0, &setup->bearer_cap);
2291 /* facility */
2292 if (setup->fields & MNCC_F_FACILITY)
2293 encode_facility(msg, 0, &setup->facility);
2294 /* progress */
2295 if (setup->fields & MNCC_F_PROGRESS)
2296 encode_progress(msg, 0, &setup->progress);
2297 /* calling party BCD number */
2298 if (setup->fields & MNCC_F_CALLING)
2299 encode_calling(msg, &setup->calling);
2300 /* called party BCD number */
2301 if (setup->fields & MNCC_F_CALLED)
2302 encode_called(msg, &setup->called);
2303 /* user-user */
2304 if (setup->fields & MNCC_F_USERUSER)
2305 encode_useruser(msg, 0, &setup->useruser);
2306 /* redirecting party BCD number */
2307 if (setup->fields & MNCC_F_REDIRECTING)
2308 encode_redirecting(msg, &setup->redirecting);
2309 /* signal */
2310 if (setup->fields & MNCC_F_SIGNAL)
2311 encode_signal(msg, setup->signal);
2312
2313 new_cc_state(trans, GSM_CSTATE_CALL_PRESENT);
Harald Welte65e74cc2008-12-29 01:55:35 +00002314
Harald Welte39e2ead2009-07-23 21:13:03 +02002315 return gsm48_sendmsg(msg, trans);
Harald Welte65e74cc2008-12-29 01:55:35 +00002316}
2317
Harald Welte4bfdfe72009-06-10 23:11:52 +08002318static int gsm48_cc_rx_call_conf(struct gsm_trans *trans, struct msgb *msg)
2319{
2320 struct gsm48_hdr *gh = msgb_l3(msg);
2321 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2322 struct tlv_parsed tp;
2323 struct gsm_mncc call_conf;
2324
2325 gsm48_stop_cc_timer(trans);
2326 gsm48_start_cc_timer(trans, 0x310, GSM48_T310);
2327
2328 memset(&call_conf, 0, sizeof(struct gsm_mncc));
2329 call_conf.callref = trans->callref;
2330 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2331#if 0
2332 /* repeat */
2333 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_CIR))
2334 call_conf.repeat = 1;
2335 if (TLVP_PRESENT(&tp, GSM48_IE_REPEAT_SEQ))
2336 call_conf.repeat = 2;
2337#endif
2338 /* bearer capability */
2339 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
2340 call_conf.fields |= MNCC_F_BEARER_CAP;
2341 decode_bearer_cap(&call_conf.bearer_cap,
2342 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
2343 }
2344 /* cause */
2345 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2346 call_conf.fields |= MNCC_F_CAUSE;
2347 decode_cause(&call_conf.cause,
2348 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2349 }
2350 /* cc cap */
2351 if (TLVP_PRESENT(&tp, GSM48_IE_CC_CAP)) {
2352 call_conf.fields |= MNCC_F_CCCAP;
2353 decode_cccap(&call_conf.cccap,
2354 TLVP_VAL(&tp, GSM48_IE_CC_CAP)-1);
2355 }
2356
2357 new_cc_state(trans, GSM_CSTATE_MO_TERM_CALL_CONF);
2358
Harald Welte596fed42009-07-23 19:06:52 +02002359 return mncc_recvmsg(trans->subscr->net, trans, MNCC_CALL_CONF_IND,
2360 &call_conf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002361}
2362
2363static int gsm48_cc_tx_call_proc(struct gsm_trans *trans, void *arg)
2364{
2365 struct gsm_mncc *proceeding = arg;
2366 struct msgb *msg = gsm48_msgb_alloc();
2367 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2368
Harald Welte4bfdfe72009-06-10 23:11:52 +08002369 gh->msg_type = GSM48_MT_CC_CALL_PROC;
2370
2371 new_cc_state(trans, GSM_CSTATE_MO_CALL_PROC);
2372
2373 /* bearer capability */
2374 if (proceeding->fields & MNCC_F_BEARER_CAP)
2375 encode_bearer_cap(msg, 0, &proceeding->bearer_cap);
2376 /* facility */
2377 if (proceeding->fields & MNCC_F_FACILITY)
2378 encode_facility(msg, 0, &proceeding->facility);
2379 /* progress */
2380 if (proceeding->fields & MNCC_F_PROGRESS)
2381 encode_progress(msg, 0, &proceeding->progress);
2382
Harald Welte39e2ead2009-07-23 21:13:03 +02002383 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002384}
2385
2386static int gsm48_cc_rx_alerting(struct gsm_trans *trans, struct msgb *msg)
2387{
2388 struct gsm48_hdr *gh = msgb_l3(msg);
2389 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2390 struct tlv_parsed tp;
2391 struct gsm_mncc alerting;
2392
2393 gsm48_stop_cc_timer(trans);
2394 gsm48_start_cc_timer(trans, 0x301, GSM48_T301);
2395
2396 memset(&alerting, 0, sizeof(struct gsm_mncc));
2397 alerting.callref = trans->callref;
2398 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2399 /* facility */
2400 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2401 alerting.fields |= MNCC_F_FACILITY;
2402 decode_facility(&alerting.facility,
2403 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2404 }
2405
2406 /* progress */
2407 if (TLVP_PRESENT(&tp, GSM48_IE_PROGR_IND)) {
2408 alerting.fields |= MNCC_F_PROGRESS;
2409 decode_progress(&alerting.progress,
2410 TLVP_VAL(&tp, GSM48_IE_PROGR_IND)-1);
2411 }
2412 /* ss-version */
2413 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2414 alerting.fields |= MNCC_F_SSVERSION;
2415 decode_ssversion(&alerting.ssversion,
2416 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2417 }
2418
2419 new_cc_state(trans, GSM_CSTATE_CALL_RECEIVED);
2420
Harald Welte596fed42009-07-23 19:06:52 +02002421 return mncc_recvmsg(trans->subscr->net, trans, MNCC_ALERT_IND,
2422 &alerting);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002423}
2424
2425static int gsm48_cc_tx_alerting(struct gsm_trans *trans, void *arg)
2426{
2427 struct gsm_mncc *alerting = arg;
2428 struct msgb *msg = gsm48_msgb_alloc();
2429 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2430
Harald Welte4bfdfe72009-06-10 23:11:52 +08002431 gh->msg_type = GSM48_MT_CC_ALERTING;
2432
2433 /* facility */
2434 if (alerting->fields & MNCC_F_FACILITY)
2435 encode_facility(msg, 0, &alerting->facility);
2436 /* progress */
2437 if (alerting->fields & MNCC_F_PROGRESS)
2438 encode_progress(msg, 0, &alerting->progress);
2439 /* user-user */
2440 if (alerting->fields & MNCC_F_USERUSER)
2441 encode_useruser(msg, 0, &alerting->useruser);
2442
2443 new_cc_state(trans, GSM_CSTATE_CALL_DELIVERED);
2444
Harald Welte39e2ead2009-07-23 21:13:03 +02002445 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002446}
2447
2448static int gsm48_cc_tx_progress(struct gsm_trans *trans, void *arg)
2449{
2450 struct gsm_mncc *progress = arg;
2451 struct msgb *msg = gsm48_msgb_alloc();
2452 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2453
Harald Welte4bfdfe72009-06-10 23:11:52 +08002454 gh->msg_type = GSM48_MT_CC_PROGRESS;
2455
2456 /* progress */
2457 encode_progress(msg, 1, &progress->progress);
2458 /* user-user */
2459 if (progress->fields & MNCC_F_USERUSER)
2460 encode_useruser(msg, 0, &progress->useruser);
2461
Harald Welte39e2ead2009-07-23 21:13:03 +02002462 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002463}
2464
2465static int gsm48_cc_tx_connect(struct gsm_trans *trans, void *arg)
2466{
2467 struct gsm_mncc *connect = arg;
2468 struct msgb *msg = gsm48_msgb_alloc();
2469 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2470
Harald Welte4bfdfe72009-06-10 23:11:52 +08002471 gh->msg_type = GSM48_MT_CC_CONNECT;
2472
2473 gsm48_stop_cc_timer(trans);
2474 gsm48_start_cc_timer(trans, 0x313, GSM48_T313);
2475
2476 /* facility */
2477 if (connect->fields & MNCC_F_FACILITY)
2478 encode_facility(msg, 0, &connect->facility);
2479 /* progress */
2480 if (connect->fields & MNCC_F_PROGRESS)
2481 encode_progress(msg, 0, &connect->progress);
2482 /* connected number */
2483 if (connect->fields & MNCC_F_CONNECTED)
2484 encode_connected(msg, &connect->connected);
2485 /* user-user */
2486 if (connect->fields & MNCC_F_USERUSER)
2487 encode_useruser(msg, 0, &connect->useruser);
2488
2489 new_cc_state(trans, GSM_CSTATE_CONNECT_IND);
2490
Harald Welte39e2ead2009-07-23 21:13:03 +02002491 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002492}
2493
2494static int gsm48_cc_rx_connect(struct gsm_trans *trans, struct msgb *msg)
2495{
2496 struct gsm48_hdr *gh = msgb_l3(msg);
2497 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2498 struct tlv_parsed tp;
2499 struct gsm_mncc connect;
2500
2501 gsm48_stop_cc_timer(trans);
2502
2503 memset(&connect, 0, sizeof(struct gsm_mncc));
2504 connect.callref = trans->callref;
2505 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2506 /* use subscriber as connected party number */
2507 if (trans->subscr) {
2508 connect.fields |= MNCC_F_CONNECTED;
2509 strncpy(connect.connected.number, trans->subscr->extension,
2510 sizeof(connect.connected.number)-1);
Andreas Eversbergc079be42009-06-15 23:22:09 +02002511 strncpy(connect.imsi, trans->subscr->imsi,
2512 sizeof(connect.imsi)-1);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002513 }
2514 /* facility */
2515 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2516 connect.fields |= MNCC_F_FACILITY;
2517 decode_facility(&connect.facility,
2518 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2519 }
2520 /* user-user */
2521 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2522 connect.fields |= MNCC_F_USERUSER;
2523 decode_useruser(&connect.useruser,
2524 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2525 }
2526 /* ss-version */
2527 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2528 connect.fields |= MNCC_F_SSVERSION;
2529 decode_ssversion(&connect.ssversion,
2530 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2531 }
2532
2533 new_cc_state(trans, GSM_CSTATE_CONNECT_REQUEST);
2534
Harald Welte596fed42009-07-23 19:06:52 +02002535 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_CNF, &connect);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002536}
2537
2538
2539static int gsm48_cc_rx_connect_ack(struct gsm_trans *trans, struct msgb *msg)
2540{
2541 struct gsm_mncc connect_ack;
2542
2543 gsm48_stop_cc_timer(trans);
2544
2545 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2546
2547 memset(&connect_ack, 0, sizeof(struct gsm_mncc));
2548 connect_ack.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002549 return mncc_recvmsg(trans->subscr->net, trans, MNCC_SETUP_COMPL_IND,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002550 &connect_ack);
2551}
2552
2553static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg)
2554{
2555 struct msgb *msg = gsm48_msgb_alloc();
2556 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2557
Harald Welte4bfdfe72009-06-10 23:11:52 +08002558 gh->msg_type = GSM48_MT_CC_CONNECT_ACK;
2559
2560 new_cc_state(trans, GSM_CSTATE_ACTIVE);
2561
Harald Welte39e2ead2009-07-23 21:13:03 +02002562 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002563}
2564
2565static int gsm48_cc_rx_disconnect(struct gsm_trans *trans, struct msgb *msg)
2566{
2567 struct gsm48_hdr *gh = msgb_l3(msg);
2568 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2569 struct tlv_parsed tp;
2570 struct gsm_mncc disc;
2571
2572 gsm48_stop_cc_timer(trans);
2573
2574 new_cc_state(trans, GSM_CSTATE_DISCONNECT_REQ);
2575
2576 memset(&disc, 0, sizeof(struct gsm_mncc));
2577 disc.callref = trans->callref;
2578 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_CAUSE, 0);
2579 /* cause */
2580 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2581 disc.fields |= MNCC_F_CAUSE;
2582 decode_cause(&disc.cause,
2583 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2584 }
2585 /* facility */
2586 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2587 disc.fields |= MNCC_F_FACILITY;
2588 decode_facility(&disc.facility,
2589 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2590 }
2591 /* user-user */
2592 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2593 disc.fields |= MNCC_F_USERUSER;
2594 decode_useruser(&disc.useruser,
2595 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2596 }
2597 /* ss-version */
2598 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2599 disc.fields |= MNCC_F_SSVERSION;
2600 decode_ssversion(&disc.ssversion,
2601 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2602 }
2603
Harald Welte596fed42009-07-23 19:06:52 +02002604 return mncc_recvmsg(trans->subscr->net, trans, MNCC_DISC_IND, &disc);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002605
2606}
2607
Harald Weltec66b71c2009-06-11 14:23:20 +08002608static struct gsm_mncc_cause default_cause = {
2609 .location = GSM48_CAUSE_LOC_PRN_S_LU,
2610 .coding = 0,
2611 .rec = 0,
2612 .rec_val = 0,
2613 .value = GSM48_CC_CAUSE_NORMAL_UNSPEC,
2614 .diag_len = 0,
2615 .diag = { 0 },
2616};
Harald Welte4bfdfe72009-06-10 23:11:52 +08002617
2618static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg)
2619{
2620 struct gsm_mncc *disc = arg;
2621 struct msgb *msg = gsm48_msgb_alloc();
2622 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2623
Harald Welte4bfdfe72009-06-10 23:11:52 +08002624 gh->msg_type = GSM48_MT_CC_DISCONNECT;
2625
2626 gsm48_stop_cc_timer(trans);
2627 gsm48_start_cc_timer(trans, 0x306, GSM48_T306);
2628
2629 /* cause */
2630 if (disc->fields & MNCC_F_CAUSE)
2631 encode_cause(msg, 1, &disc->cause);
2632 else
2633 encode_cause(msg, 1, &default_cause);
2634
2635 /* facility */
2636 if (disc->fields & MNCC_F_FACILITY)
2637 encode_facility(msg, 0, &disc->facility);
2638 /* progress */
2639 if (disc->fields & MNCC_F_PROGRESS)
2640 encode_progress(msg, 0, &disc->progress);
2641 /* user-user */
2642 if (disc->fields & MNCC_F_USERUSER)
2643 encode_useruser(msg, 0, &disc->useruser);
2644
2645 /* store disconnect cause for T306 expiry */
Harald Weltedcaf5652009-07-23 18:56:43 +02002646 memcpy(&trans->cc.msg, disc, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002647
2648 new_cc_state(trans, GSM_CSTATE_DISCONNECT_IND);
2649
Harald Welte39e2ead2009-07-23 21:13:03 +02002650 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002651}
2652
2653static int gsm48_cc_rx_release(struct gsm_trans *trans, struct msgb *msg)
2654{
2655 struct gsm48_hdr *gh = msgb_l3(msg);
2656 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2657 struct tlv_parsed tp;
2658 struct gsm_mncc rel;
2659 int rc;
2660
2661 gsm48_stop_cc_timer(trans);
2662
2663 memset(&rel, 0, sizeof(struct gsm_mncc));
2664 rel.callref = trans->callref;
2665 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2666 /* cause */
2667 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2668 rel.fields |= MNCC_F_CAUSE;
2669 decode_cause(&rel.cause,
2670 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2671 }
2672 /* facility */
2673 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2674 rel.fields |= MNCC_F_FACILITY;
2675 decode_facility(&rel.facility,
2676 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2677 }
2678 /* user-user */
2679 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2680 rel.fields |= MNCC_F_USERUSER;
2681 decode_useruser(&rel.useruser,
2682 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2683 }
2684 /* ss-version */
2685 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2686 rel.fields |= MNCC_F_SSVERSION;
2687 decode_ssversion(&rel.ssversion,
2688 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2689 }
2690
Harald Weltedcaf5652009-07-23 18:56:43 +02002691 if (trans->cc.state == GSM_CSTATE_RELEASE_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002692 /* release collision 5.4.5 */
Harald Welte596fed42009-07-23 19:06:52 +02002693 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_CNF, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002694 } else {
Harald Welte596fed42009-07-23 19:06:52 +02002695 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02002696 GSM48_PDISC_CC | (trans->transaction_id << 4),
Harald Welte596fed42009-07-23 19:06:52 +02002697 GSM48_MT_CC_RELEASE_COMPL);
2698 rc = mncc_recvmsg(trans->subscr->net, trans, MNCC_REL_IND, &rel);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002699 }
2700
2701 new_cc_state(trans, GSM_CSTATE_NULL);
2702
2703 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002704 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002705
2706 return rc;
2707}
2708
2709static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg)
2710{
2711 struct gsm_mncc *rel = arg;
2712 struct msgb *msg = gsm48_msgb_alloc();
2713 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2714
Harald Welte4bfdfe72009-06-10 23:11:52 +08002715 gh->msg_type = GSM48_MT_CC_RELEASE;
2716
2717 trans->callref = 0;
2718
2719 gsm48_stop_cc_timer(trans);
2720 gsm48_start_cc_timer(trans, 0x308, GSM48_T308);
2721
2722 /* cause */
2723 if (rel->fields & MNCC_F_CAUSE)
2724 encode_cause(msg, 0, &rel->cause);
2725 /* facility */
2726 if (rel->fields & MNCC_F_FACILITY)
2727 encode_facility(msg, 0, &rel->facility);
2728 /* user-user */
2729 if (rel->fields & MNCC_F_USERUSER)
2730 encode_useruser(msg, 0, &rel->useruser);
2731
Harald Weltedcaf5652009-07-23 18:56:43 +02002732 trans->cc.T308_second = 0;
2733 memcpy(&trans->cc.msg, rel, sizeof(struct gsm_mncc));
Harald Welte4bfdfe72009-06-10 23:11:52 +08002734
Harald Weltedcaf5652009-07-23 18:56:43 +02002735 if (trans->cc.state != GSM_CSTATE_RELEASE_REQ)
Harald Welte4bfdfe72009-06-10 23:11:52 +08002736 new_cc_state(trans, GSM_CSTATE_RELEASE_REQ);
2737
Harald Welte39e2ead2009-07-23 21:13:03 +02002738 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002739}
2740
2741static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg)
2742{
2743 struct gsm48_hdr *gh = msgb_l3(msg);
2744 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2745 struct tlv_parsed tp;
2746 struct gsm_mncc rel;
2747 int rc = 0;
2748
2749 gsm48_stop_cc_timer(trans);
2750
2751 memset(&rel, 0, sizeof(struct gsm_mncc));
2752 rel.callref = trans->callref;
2753 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2754 /* cause */
2755 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
2756 rel.fields |= MNCC_F_CAUSE;
2757 decode_cause(&rel.cause,
2758 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
2759 }
2760 /* facility */
2761 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2762 rel.fields |= MNCC_F_FACILITY;
2763 decode_facility(&rel.facility,
2764 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2765 }
2766 /* user-user */
2767 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
2768 rel.fields |= MNCC_F_USERUSER;
2769 decode_useruser(&rel.useruser,
2770 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
2771 }
2772 /* ss-version */
2773 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2774 rel.fields |= MNCC_F_SSVERSION;
2775 decode_ssversion(&rel.ssversion,
2776 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2777 }
2778
2779 if (trans->callref) {
Harald Weltedcaf5652009-07-23 18:56:43 +02002780 switch (trans->cc.state) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08002781 case GSM_CSTATE_CALL_PRESENT:
Harald Welte596fed42009-07-23 19:06:52 +02002782 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002783 MNCC_REJ_IND, &rel);
2784 break;
2785 case GSM_CSTATE_RELEASE_REQ:
Harald Welte596fed42009-07-23 19:06:52 +02002786 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002787 MNCC_REL_CNF, &rel);
2788 break;
2789 default:
Harald Welte596fed42009-07-23 19:06:52 +02002790 rc = mncc_recvmsg(trans->subscr->net, trans,
Harald Welte4bfdfe72009-06-10 23:11:52 +08002791 MNCC_REL_IND, &rel);
2792 }
2793 }
2794
2795 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02002796 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002797
2798 return rc;
2799}
2800
2801static int gsm48_cc_tx_release_compl(struct gsm_trans *trans, void *arg)
2802{
2803 struct gsm_mncc *rel = arg;
2804 struct msgb *msg = gsm48_msgb_alloc();
2805 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2806
Harald Welte4bfdfe72009-06-10 23:11:52 +08002807 gh->msg_type = GSM48_MT_CC_RELEASE_COMPL;
2808
2809 trans->callref = 0;
2810
2811 gsm48_stop_cc_timer(trans);
2812
2813 /* cause */
2814 if (rel->fields & MNCC_F_CAUSE)
2815 encode_cause(msg, 0, &rel->cause);
2816 /* facility */
2817 if (rel->fields & MNCC_F_FACILITY)
2818 encode_facility(msg, 0, &rel->facility);
2819 /* user-user */
2820 if (rel->fields & MNCC_F_USERUSER)
2821 encode_useruser(msg, 0, &rel->useruser);
2822
Harald Weltedcaf5652009-07-23 18:56:43 +02002823 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002824
Harald Welte39e2ead2009-07-23 21:13:03 +02002825 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002826}
2827
2828static int gsm48_cc_rx_facility(struct gsm_trans *trans, struct msgb *msg)
2829{
2830 struct gsm48_hdr *gh = msgb_l3(msg);
2831 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2832 struct tlv_parsed tp;
2833 struct gsm_mncc fac;
2834
2835 memset(&fac, 0, sizeof(struct gsm_mncc));
2836 fac.callref = trans->callref;
2837 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_FACILITY, 0);
2838 /* facility */
2839 if (TLVP_PRESENT(&tp, GSM48_IE_FACILITY)) {
2840 fac.fields |= MNCC_F_FACILITY;
2841 decode_facility(&fac.facility,
2842 TLVP_VAL(&tp, GSM48_IE_FACILITY)-1);
2843 }
2844 /* ss-version */
2845 if (TLVP_PRESENT(&tp, GSM48_IE_SS_VERS)) {
2846 fac.fields |= MNCC_F_SSVERSION;
2847 decode_ssversion(&fac.ssversion,
2848 TLVP_VAL(&tp, GSM48_IE_SS_VERS)-1);
2849 }
2850
Harald Welte596fed42009-07-23 19:06:52 +02002851 return mncc_recvmsg(trans->subscr->net, trans, MNCC_FACILITY_IND, &fac);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002852}
2853
2854static int gsm48_cc_tx_facility(struct gsm_trans *trans, void *arg)
2855{
2856 struct gsm_mncc *fac = arg;
2857 struct msgb *msg = gsm48_msgb_alloc();
2858 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2859
Harald Welte4bfdfe72009-06-10 23:11:52 +08002860 gh->msg_type = GSM48_MT_CC_FACILITY;
2861
2862 /* facility */
2863 encode_facility(msg, 1, &fac->facility);
2864
Harald Welte39e2ead2009-07-23 21:13:03 +02002865 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002866}
2867
2868static int gsm48_cc_rx_hold(struct gsm_trans *trans, struct msgb *msg)
2869{
2870 struct gsm_mncc hold;
2871
2872 memset(&hold, 0, sizeof(struct gsm_mncc));
2873 hold.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002874 return mncc_recvmsg(trans->subscr->net, trans, MNCC_HOLD_IND, &hold);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002875}
2876
2877static int gsm48_cc_tx_hold_ack(struct gsm_trans *trans, void *arg)
2878{
2879 struct msgb *msg = gsm48_msgb_alloc();
2880 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2881
Harald Welte4bfdfe72009-06-10 23:11:52 +08002882 gh->msg_type = GSM48_MT_CC_HOLD_ACK;
2883
Harald Welte39e2ead2009-07-23 21:13:03 +02002884 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002885}
2886
2887static int gsm48_cc_tx_hold_rej(struct gsm_trans *trans, void *arg)
2888{
2889 struct gsm_mncc *hold_rej = arg;
2890 struct msgb *msg = gsm48_msgb_alloc();
2891 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2892
Harald Welte4bfdfe72009-06-10 23:11:52 +08002893 gh->msg_type = GSM48_MT_CC_HOLD_REJ;
2894
2895 /* cause */
2896 if (hold_rej->fields & MNCC_F_CAUSE)
2897 encode_cause(msg, 1, &hold_rej->cause);
2898 else
2899 encode_cause(msg, 1, &default_cause);
2900
Harald Welte39e2ead2009-07-23 21:13:03 +02002901 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002902}
2903
2904static int gsm48_cc_rx_retrieve(struct gsm_trans *trans, struct msgb *msg)
2905{
2906 struct gsm_mncc retrieve;
2907
2908 memset(&retrieve, 0, sizeof(struct gsm_mncc));
2909 retrieve.callref = trans->callref;
Harald Welte596fed42009-07-23 19:06:52 +02002910 return mncc_recvmsg(trans->subscr->net, trans, MNCC_RETRIEVE_IND,
2911 &retrieve);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002912}
2913
2914static int gsm48_cc_tx_retrieve_ack(struct gsm_trans *trans, void *arg)
2915{
2916 struct msgb *msg = gsm48_msgb_alloc();
2917 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2918
Harald Welte4bfdfe72009-06-10 23:11:52 +08002919 gh->msg_type = GSM48_MT_CC_RETR_ACK;
2920
Harald Welte39e2ead2009-07-23 21:13:03 +02002921 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002922}
2923
2924static int gsm48_cc_tx_retrieve_rej(struct gsm_trans *trans, void *arg)
2925{
2926 struct gsm_mncc *retrieve_rej = arg;
2927 struct msgb *msg = gsm48_msgb_alloc();
2928 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2929
Harald Welte4bfdfe72009-06-10 23:11:52 +08002930 gh->msg_type = GSM48_MT_CC_RETR_REJ;
2931
2932 /* cause */
2933 if (retrieve_rej->fields & MNCC_F_CAUSE)
2934 encode_cause(msg, 1, &retrieve_rej->cause);
2935 else
2936 encode_cause(msg, 1, &default_cause);
2937
Harald Welte39e2ead2009-07-23 21:13:03 +02002938 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002939}
2940
2941static int gsm48_cc_rx_start_dtmf(struct gsm_trans *trans, struct msgb *msg)
2942{
2943 struct gsm48_hdr *gh = msgb_l3(msg);
2944 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
2945 struct tlv_parsed tp;
2946 struct gsm_mncc dtmf;
2947
2948 memset(&dtmf, 0, sizeof(struct gsm_mncc));
2949 dtmf.callref = trans->callref;
2950 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, 0, 0);
2951 /* keypad facility */
2952 if (TLVP_PRESENT(&tp, GSM48_IE_KPD_FACILITY)) {
2953 dtmf.fields |= MNCC_F_KEYPAD;
2954 decode_keypad(&dtmf.keypad,
2955 TLVP_VAL(&tp, GSM48_IE_KPD_FACILITY)-1);
2956 }
2957
Harald Welte596fed42009-07-23 19:06:52 +02002958 return mncc_recvmsg(trans->subscr->net, trans, MNCC_START_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002959}
2960
2961static int gsm48_cc_tx_start_dtmf_ack(struct gsm_trans *trans, void *arg)
2962{
2963 struct gsm_mncc *dtmf = arg;
2964 struct msgb *msg = gsm48_msgb_alloc();
2965 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2966
Harald Welte4bfdfe72009-06-10 23:11:52 +08002967 gh->msg_type = GSM48_MT_CC_START_DTMF_ACK;
2968
2969 /* keypad */
2970 if (dtmf->fields & MNCC_F_KEYPAD)
2971 encode_keypad(msg, dtmf->keypad);
2972
Harald Welte39e2ead2009-07-23 21:13:03 +02002973 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002974}
2975
2976static int gsm48_cc_tx_start_dtmf_rej(struct gsm_trans *trans, void *arg)
2977{
2978 struct gsm_mncc *dtmf = arg;
2979 struct msgb *msg = gsm48_msgb_alloc();
2980 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2981
Harald Welte4bfdfe72009-06-10 23:11:52 +08002982 gh->msg_type = GSM48_MT_CC_START_DTMF_REJ;
2983
2984 /* cause */
2985 if (dtmf->fields & MNCC_F_CAUSE)
2986 encode_cause(msg, 1, &dtmf->cause);
2987 else
2988 encode_cause(msg, 1, &default_cause);
2989
Harald Welte39e2ead2009-07-23 21:13:03 +02002990 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08002991}
2992
2993static int gsm48_cc_tx_stop_dtmf_ack(struct gsm_trans *trans, void *arg)
2994{
2995 struct msgb *msg = gsm48_msgb_alloc();
2996 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
2997
Harald Welte4bfdfe72009-06-10 23:11:52 +08002998 gh->msg_type = GSM48_MT_CC_STOP_DTMF_ACK;
2999
Harald Welte39e2ead2009-07-23 21:13:03 +02003000 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003001}
3002
3003static int gsm48_cc_rx_stop_dtmf(struct gsm_trans *trans, struct msgb *msg)
3004{
3005 struct gsm_mncc dtmf;
3006
3007 memset(&dtmf, 0, sizeof(struct gsm_mncc));
3008 dtmf.callref = trans->callref;
3009
Harald Welte596fed42009-07-23 19:06:52 +02003010 return mncc_recvmsg(trans->subscr->net, trans, MNCC_STOP_DTMF_IND, &dtmf);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003011}
3012
3013static int gsm48_cc_rx_modify(struct gsm_trans *trans, struct msgb *msg)
3014{
3015 struct gsm48_hdr *gh = msgb_l3(msg);
3016 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3017 struct tlv_parsed tp;
3018 struct gsm_mncc modify;
3019
3020 memset(&modify, 0, sizeof(struct gsm_mncc));
3021 modify.callref = trans->callref;
3022 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3023 /* bearer capability */
3024 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3025 modify.fields |= MNCC_F_BEARER_CAP;
3026 decode_bearer_cap(&modify.bearer_cap,
3027 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3028 }
3029
3030 new_cc_state(trans, GSM_CSTATE_MO_ORIG_MODIFY);
3031
Harald Welte596fed42009-07-23 19:06:52 +02003032 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_IND, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003033}
3034
3035static int gsm48_cc_tx_modify(struct gsm_trans *trans, void *arg)
3036{
3037 struct gsm_mncc *modify = arg;
3038 struct msgb *msg = gsm48_msgb_alloc();
3039 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3040
Harald Welte4bfdfe72009-06-10 23:11:52 +08003041 gh->msg_type = GSM48_MT_CC_MODIFY;
3042
3043 gsm48_start_cc_timer(trans, 0x323, GSM48_T323);
3044
3045 /* bearer capability */
3046 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3047
3048 new_cc_state(trans, GSM_CSTATE_MO_TERM_MODIFY);
3049
Harald Welte39e2ead2009-07-23 21:13:03 +02003050 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003051}
3052
3053static int gsm48_cc_rx_modify_complete(struct gsm_trans *trans, struct msgb *msg)
3054{
3055 struct gsm48_hdr *gh = msgb_l3(msg);
3056 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3057 struct tlv_parsed tp;
3058 struct gsm_mncc modify;
3059
3060 gsm48_stop_cc_timer(trans);
3061
3062 memset(&modify, 0, sizeof(struct gsm_mncc));
3063 modify.callref = trans->callref;
3064 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, 0);
3065 /* bearer capability */
3066 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3067 modify.fields |= MNCC_F_BEARER_CAP;
3068 decode_bearer_cap(&modify.bearer_cap,
3069 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3070 }
3071
3072 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3073
Harald Welte596fed42009-07-23 19:06:52 +02003074 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_CNF, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003075}
3076
3077static int gsm48_cc_tx_modify_complete(struct gsm_trans *trans, void *arg)
3078{
3079 struct gsm_mncc *modify = arg;
3080 struct msgb *msg = gsm48_msgb_alloc();
3081 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3082
Harald Welte4bfdfe72009-06-10 23:11:52 +08003083 gh->msg_type = GSM48_MT_CC_MODIFY_COMPL;
3084
3085 /* bearer capability */
3086 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3087
3088 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3089
Harald Welte39e2ead2009-07-23 21:13:03 +02003090 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003091}
3092
3093static int gsm48_cc_rx_modify_reject(struct gsm_trans *trans, struct msgb *msg)
3094{
3095 struct gsm48_hdr *gh = msgb_l3(msg);
3096 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3097 struct tlv_parsed tp;
3098 struct gsm_mncc modify;
3099
3100 gsm48_stop_cc_timer(trans);
3101
3102 memset(&modify, 0, sizeof(struct gsm_mncc));
3103 modify.callref = trans->callref;
3104 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_BEARER_CAP, GSM48_IE_CAUSE);
3105 /* bearer capability */
3106 if (TLVP_PRESENT(&tp, GSM48_IE_BEARER_CAP)) {
3107 modify.fields |= GSM48_IE_BEARER_CAP;
3108 decode_bearer_cap(&modify.bearer_cap,
3109 TLVP_VAL(&tp, GSM48_IE_BEARER_CAP)-1);
3110 }
3111 /* cause */
3112 if (TLVP_PRESENT(&tp, GSM48_IE_CAUSE)) {
3113 modify.fields |= MNCC_F_CAUSE;
3114 decode_cause(&modify.cause,
3115 TLVP_VAL(&tp, GSM48_IE_CAUSE)-1);
3116 }
3117
3118 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3119
Harald Welte596fed42009-07-23 19:06:52 +02003120 return mncc_recvmsg(trans->subscr->net, trans, MNCC_MODIFY_REJ, &modify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003121}
3122
3123static int gsm48_cc_tx_modify_reject(struct gsm_trans *trans, void *arg)
3124{
3125 struct gsm_mncc *modify = arg;
3126 struct msgb *msg = gsm48_msgb_alloc();
3127 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3128
Harald Welte4bfdfe72009-06-10 23:11:52 +08003129 gh->msg_type = GSM48_MT_CC_MODIFY_REJECT;
3130
3131 /* bearer capability */
3132 encode_bearer_cap(msg, 1, &modify->bearer_cap);
3133 /* cause */
3134 encode_cause(msg, 1, &modify->cause);
3135
3136 new_cc_state(trans, GSM_CSTATE_ACTIVE);
3137
Harald Welte39e2ead2009-07-23 21:13:03 +02003138 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003139}
3140
3141static int gsm48_cc_tx_notify(struct gsm_trans *trans, void *arg)
3142{
3143 struct gsm_mncc *notify = arg;
3144 struct msgb *msg = gsm48_msgb_alloc();
3145 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3146
Harald Welte4bfdfe72009-06-10 23:11:52 +08003147 gh->msg_type = GSM48_MT_CC_NOTIFY;
3148
3149 /* notify */
3150 encode_notify(msg, notify->notify);
3151
Harald Welte39e2ead2009-07-23 21:13:03 +02003152 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003153}
3154
3155static int gsm48_cc_rx_notify(struct gsm_trans *trans, struct msgb *msg)
3156{
3157 struct gsm48_hdr *gh = msgb_l3(msg);
3158 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3159// struct tlv_parsed tp;
3160 struct gsm_mncc notify;
3161
3162 memset(&notify, 0, sizeof(struct gsm_mncc));
3163 notify.callref = trans->callref;
3164// tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len);
3165 if (payload_len >= 1)
3166 decode_notify(&notify.notify, gh->data);
3167
Harald Welte596fed42009-07-23 19:06:52 +02003168 return mncc_recvmsg(trans->subscr->net, trans, MNCC_NOTIFY_IND, &notify);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003169}
3170
3171static int gsm48_cc_tx_userinfo(struct gsm_trans *trans, void *arg)
3172{
3173 struct gsm_mncc *user = arg;
3174 struct msgb *msg = gsm48_msgb_alloc();
3175 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
3176
Harald Welte4bfdfe72009-06-10 23:11:52 +08003177 gh->msg_type = GSM48_MT_CC_USER_INFO;
3178
3179 /* user-user */
3180 if (user->fields & MNCC_F_USERUSER)
3181 encode_useruser(msg, 1, &user->useruser);
3182 /* more data */
3183 if (user->more)
3184 encode_more(msg);
3185
Harald Welte39e2ead2009-07-23 21:13:03 +02003186 return gsm48_sendmsg(msg, trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003187}
3188
3189static int gsm48_cc_rx_userinfo(struct gsm_trans *trans, struct msgb *msg)
3190{
3191 struct gsm48_hdr *gh = msgb_l3(msg);
3192 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
3193 struct tlv_parsed tp;
3194 struct gsm_mncc user;
3195
3196 memset(&user, 0, sizeof(struct gsm_mncc));
3197 user.callref = trans->callref;
3198 tlv_parse(&tp, &rsl_att_tlvdef, gh->data, payload_len, GSM48_IE_USER_USER, 0);
3199 /* user-user */
3200 if (TLVP_PRESENT(&tp, GSM48_IE_USER_USER)) {
3201 user.fields |= MNCC_F_USERUSER;
3202 decode_useruser(&user.useruser,
3203 TLVP_VAL(&tp, GSM48_IE_USER_USER)-1);
3204 }
3205 /* more data */
3206 if (TLVP_PRESENT(&tp, GSM48_IE_MORE_DATA))
3207 user.more = 1;
3208
Harald Welte596fed42009-07-23 19:06:52 +02003209 return mncc_recvmsg(trans->subscr->net, trans, MNCC_USERINFO_IND, &user);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003210}
3211
3212static int gsm48_lchan_modify(struct gsm_trans *trans, void *arg)
3213{
3214 struct gsm_mncc *mode = arg;
Harald Welte13cac662009-07-29 12:10:35 +02003215 int rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003216
Harald Welte13cac662009-07-29 12:10:35 +02003217 rc = gsm48_tx_chan_mode_modify(trans->lchan, mode->lchan_mode);
3218 if (rc < 0)
3219 return rc;
3220
3221 /* FIXME: we not only need to do this after mode modify, but
3222 * also after channel activation */
3223 if (is_ipaccess_bts(trans->lchan->ts->trx->bts) &&
3224 mode->lchan_mode != GSM48_CMODE_SIGN)
3225 rc = rsl_ipacc_bind(trans->lchan);
3226
3227 return rc;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003228}
3229
3230static struct downstate {
3231 u_int32_t states;
3232 int type;
3233 int (*rout) (struct gsm_trans *trans, void *arg);
3234} downstatelist[] = {
3235 /* mobile originating call establishment */
3236 {SBIT(GSM_CSTATE_INITIATED), /* 5.2.1.2 */
3237 MNCC_CALL_PROC_REQ, gsm48_cc_tx_call_proc},
3238 {SBIT(GSM_CSTATE_INITIATED) | SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.2 | 5.2.1.5 */
3239 MNCC_ALERT_REQ, gsm48_cc_tx_alerting},
3240 {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 */
3241 MNCC_SETUP_RSP, gsm48_cc_tx_connect},
3242 {SBIT(GSM_CSTATE_MO_CALL_PROC), /* 5.2.1.4.2 */
3243 MNCC_PROGRESS_REQ, gsm48_cc_tx_progress},
3244 /* mobile terminating call establishment */
3245 {SBIT(GSM_CSTATE_NULL), /* 5.2.2.1 */
3246 MNCC_SETUP_REQ, gsm48_cc_tx_setup},
3247 {SBIT(GSM_CSTATE_CONNECT_REQUEST),
3248 MNCC_SETUP_COMPL_REQ, gsm48_cc_tx_connect_ack},
3249 /* signalling during call */
3250 {SBIT(GSM_CSTATE_ACTIVE),
3251 MNCC_NOTIFY_REQ, gsm48_cc_tx_notify},
3252 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ),
3253 MNCC_FACILITY_REQ, gsm48_cc_tx_facility},
3254 {ALL_STATES,
3255 MNCC_START_DTMF_RSP, gsm48_cc_tx_start_dtmf_ack},
3256 {ALL_STATES,
3257 MNCC_START_DTMF_REJ, gsm48_cc_tx_start_dtmf_rej},
3258 {ALL_STATES,
3259 MNCC_STOP_DTMF_RSP, gsm48_cc_tx_stop_dtmf_ack},
3260 {SBIT(GSM_CSTATE_ACTIVE),
3261 MNCC_HOLD_CNF, gsm48_cc_tx_hold_ack},
3262 {SBIT(GSM_CSTATE_ACTIVE),
3263 MNCC_HOLD_REJ, gsm48_cc_tx_hold_rej},
3264 {SBIT(GSM_CSTATE_ACTIVE),
3265 MNCC_RETRIEVE_CNF, gsm48_cc_tx_retrieve_ack},
3266 {SBIT(GSM_CSTATE_ACTIVE),
3267 MNCC_RETRIEVE_REJ, gsm48_cc_tx_retrieve_rej},
3268 {SBIT(GSM_CSTATE_ACTIVE),
3269 MNCC_MODIFY_REQ, gsm48_cc_tx_modify},
3270 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3271 MNCC_MODIFY_RSP, gsm48_cc_tx_modify_complete},
3272 {SBIT(GSM_CSTATE_MO_ORIG_MODIFY),
3273 MNCC_MODIFY_REJ, gsm48_cc_tx_modify_reject},
3274 {SBIT(GSM_CSTATE_ACTIVE),
3275 MNCC_USERINFO_REQ, gsm48_cc_tx_userinfo},
3276 /* clearing */
3277 {SBIT(GSM_CSTATE_INITIATED),
3278 MNCC_REJ_REQ, gsm48_cc_tx_release_compl},
3279 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_DISCONNECT_IND) - SBIT(GSM_CSTATE_RELEASE_REQ) - SBIT(GSM_CSTATE_DISCONNECT_REQ), /* 5.4.4 */
3280 MNCC_DISC_REQ, gsm48_cc_tx_disconnect},
3281 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3282 MNCC_REL_REQ, gsm48_cc_tx_release},
3283 /* special */
3284 {ALL_STATES,
3285 MNCC_LCHAN_MODIFY, gsm48_lchan_modify},
3286};
3287
3288#define DOWNSLLEN \
3289 (sizeof(downstatelist) / sizeof(struct downstate))
3290
3291
3292int mncc_send(struct gsm_network *net, int msg_type, void *arg)
3293{
Harald Welte1a6f7982009-08-09 18:52:33 +02003294 int i, rc = 0;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003295 struct gsm_trans *trans = NULL, *transt;
3296 struct gsm_subscriber *subscr;
Harald Welte1a6f7982009-08-09 18:52:33 +02003297 struct gsm_lchan *lchan = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003298 struct gsm_bts *bts = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003299 struct gsm_mncc *data = arg, rel;
3300
3301 /* handle special messages */
3302 switch(msg_type) {
3303 case MNCC_BRIDGE:
3304 return tch_bridge(net, arg);
3305 case MNCC_FRAME_DROP:
3306 return tch_recv(net, arg, 0);
3307 case MNCC_FRAME_RECV:
3308 return tch_recv(net, arg, 1);
3309 case GSM_TRAU_FRAME:
3310 return tch_frame(net, arg);
3311 }
3312
3313 memset(&rel, 0, sizeof(struct gsm_mncc));
3314 rel.callref = data->callref;
3315
3316 /* Find callref */
Harald Weltedcaf5652009-07-23 18:56:43 +02003317 trans = trans_find_by_callref(net, data->callref);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003318
3319 /* Callref unknown */
3320 if (!trans) {
Harald Welte4a3464c2009-07-04 10:11:24 +02003321 if (msg_type != MNCC_SETUP_REQ) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003322 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3323 "Received '%s' from MNCC with "
3324 "unknown callref %d\n", data->called.number,
3325 get_mncc_name(msg_type), data->callref);
3326 /* Invalid call reference */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003327 return mncc_release_ind(net, NULL, data->callref,
3328 GSM48_CAUSE_LOC_PRN_S_LU,
3329 GSM48_CC_CAUSE_INVAL_TRANS_ID);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003330 }
Andreas Eversbergc079be42009-06-15 23:22:09 +02003331 if (!data->called.number[0] && !data->imsi[0]) {
3332 DEBUGP(DCC, "(bts - trx - ts - ti) "
3333 "Received '%s' from MNCC with "
3334 "no number or IMSI\n", get_mncc_name(msg_type));
3335 /* Invalid number */
3336 return mncc_release_ind(net, NULL, data->callref,
3337 GSM48_CAUSE_LOC_PRN_S_LU,
3338 GSM48_CC_CAUSE_INV_NR_FORMAT);
3339 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003340 /* New transaction due to setup, find subscriber */
Andreas Eversbergc079be42009-06-15 23:22:09 +02003341 if (data->called.number[0])
Harald Welte9176bd42009-07-23 18:46:00 +02003342 subscr = subscr_get_by_extension(net,
3343 data->called.number);
Andreas Eversbergc079be42009-06-15 23:22:09 +02003344 else
Harald Welte9176bd42009-07-23 18:46:00 +02003345 subscr = subscr_get_by_imsi(net, data->imsi);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003346 /* If subscriber is not found */
3347 if (!subscr) {
3348 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3349 "Received '%s' from MNCC with "
3350 "unknown subscriber %s\n", data->called.number,
3351 get_mncc_name(msg_type), data->called.number);
3352 /* Unknown subscriber */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003353 return mncc_release_ind(net, NULL, data->callref,
3354 GSM48_CAUSE_LOC_PRN_S_LU,
3355 GSM48_CC_CAUSE_UNASSIGNED_NR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003356 }
3357 /* If subscriber is not "attached" */
3358 if (!subscr->lac) {
3359 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3360 "Received '%s' from MNCC with "
3361 "detached subscriber %s\n", data->called.number,
3362 get_mncc_name(msg_type), data->called.number);
3363 subscr_put(subscr);
3364 /* Temporarily out of order */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003365 return mncc_release_ind(net, NULL, data->callref,
3366 GSM48_CAUSE_LOC_PRN_S_LU,
3367 GSM48_CC_CAUSE_DEST_OOO);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003368 }
3369 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003370 trans = trans_alloc(subscr, GSM48_PDISC_CC, 0xff, data->callref);
3371 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003372 DEBUGP(DCC, "No memory for trans.\n");
3373 subscr_put(subscr);
3374 /* Ressource unavailable */
Andreas Eversberg7563ac92009-06-14 22:14:12 +08003375 mncc_release_ind(net, NULL, data->callref,
3376 GSM48_CAUSE_LOC_PRN_S_LU,
3377 GSM48_CC_CAUSE_RESOURCE_UNAVAIL);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003378 return -ENOMEM;
3379 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003380 /* Find lchan */
Harald Welte1a6f7982009-08-09 18:52:33 +02003381 lchan = lchan_for_subscr(subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003382 /* If subscriber has no lchan */
3383 if (!lchan) {
3384 /* find transaction with this subscriber already paging */
3385 llist_for_each_entry(transt, &net->trans_list, entry) {
3386 /* Transaction of our lchan? */
3387 if (transt == trans ||
3388 transt->subscr != subscr)
3389 continue;
3390 DEBUGP(DCC, "(bts %d trx - ts - ti -- sub %s) "
3391 "Received '%s' from MNCC with "
3392 "unallocated channel, paging already "
3393 "started.\n", bts->nr,
3394 data->called.number,
3395 get_mncc_name(msg_type));
3396 return 0;
3397 }
3398 /* store setup informations until paging was successfull */
Harald Weltedcaf5652009-07-23 18:56:43 +02003399 memcpy(&trans->cc.msg, data, sizeof(struct gsm_mncc));
Harald Weltea1b28582009-08-01 19:31:47 +02003400 /* Trigger paging */
3401 paging_request(net, subscr, RSL_CHANNEED_TCH_F,
3402 setup_trig_pag_evt, subscr);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003403 return 0;
3404 }
3405 /* Assign lchan */
3406 trans->lchan = lchan;
3407 use_lchan(lchan);
3408 }
3409 lchan = trans->lchan;
3410
3411 /* if paging did not respond yet */
3412 if (!lchan) {
3413 DEBUGP(DCC, "(bts - trx - ts - ti -- sub %s) "
3414 "Received '%s' from MNCC in paging state\n",
3415 (trans->subscr)?(trans->subscr->extension):"-",
3416 get_mncc_name(msg_type));
Harald Weltec66b71c2009-06-11 14:23:20 +08003417 mncc_set_cause(&rel, GSM48_CAUSE_LOC_PRN_S_LU,
3418 GSM48_CC_CAUSE_NORM_CALL_CLEAR);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003419 if (msg_type == MNCC_REL_REQ)
3420 rc = mncc_recvmsg(net, trans, MNCC_REL_CNF, &rel);
3421 else
3422 rc = mncc_recvmsg(net, trans, MNCC_REL_IND, &rel);
3423 trans->callref = 0;
Harald Weltedcaf5652009-07-23 18:56:43 +02003424 trans_free(trans);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003425 return rc;
3426 }
3427
3428 DEBUGP(DCC, "(bts %d trx %d ts %d ti %02x sub %s) "
3429 "Received '%s' from MNCC in state %d (%s)\n",
3430 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3431 trans->transaction_id,
3432 (lchan->subscr)?(lchan->subscr->extension):"-",
Harald Weltedcaf5652009-07-23 18:56:43 +02003433 get_mncc_name(msg_type), trans->cc.state,
3434 cc_state_names[trans->cc.state]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003435
3436 /* Find function for current state and message */
3437 for (i = 0; i < DOWNSLLEN; i++)
3438 if ((msg_type == downstatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003439 && ((1 << trans->cc.state) & downstatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003440 break;
3441 if (i == DOWNSLLEN) {
3442 DEBUGP(DCC, "Message unhandled at this state.\n");
3443 return 0;
3444 }
3445
3446 rc = downstatelist[i].rout(trans, arg);
3447
3448 return rc;
3449}
3450
3451
3452static struct datastate {
3453 u_int32_t states;
3454 int type;
3455 int (*rout) (struct gsm_trans *trans, struct msgb *msg);
3456} datastatelist[] = {
3457 /* mobile originating call establishment */
3458 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3459 GSM48_MT_CC_SETUP, gsm48_cc_rx_setup},
3460 {SBIT(GSM_CSTATE_NULL), /* 5.2.1.2 */
3461 GSM48_MT_CC_EMERG_SETUP, gsm48_cc_rx_setup},
3462 {SBIT(GSM_CSTATE_CONNECT_IND), /* 5.2.1.2 */
3463 GSM48_MT_CC_CONNECT_ACK, gsm48_cc_rx_connect_ack},
3464 /* mobile terminating call establishment */
3465 {SBIT(GSM_CSTATE_CALL_PRESENT), /* 5.2.2.3.2 */
3466 GSM48_MT_CC_CALL_CONF, gsm48_cc_rx_call_conf},
3467 {SBIT(GSM_CSTATE_CALL_PRESENT) | SBIT(GSM_CSTATE_MO_TERM_CALL_CONF), /* ???? | 5.2.2.3.2 */
3468 GSM48_MT_CC_ALERTING, gsm48_cc_rx_alerting},
3469 {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 */
3470 GSM48_MT_CC_CONNECT, gsm48_cc_rx_connect},
3471 /* signalling during call */
3472 {ALL_STATES - SBIT(GSM_CSTATE_NULL),
3473 GSM48_MT_CC_FACILITY, gsm48_cc_rx_facility},
3474 {SBIT(GSM_CSTATE_ACTIVE),
3475 GSM48_MT_CC_NOTIFY, gsm48_cc_rx_notify},
3476 {ALL_STATES,
3477 GSM48_MT_CC_START_DTMF, gsm48_cc_rx_start_dtmf},
3478 {ALL_STATES,
3479 GSM48_MT_CC_STOP_DTMF, gsm48_cc_rx_stop_dtmf},
3480 {ALL_STATES,
3481 GSM48_MT_CC_STATUS_ENQ, gsm48_cc_rx_status_enq},
3482 {SBIT(GSM_CSTATE_ACTIVE),
3483 GSM48_MT_CC_HOLD, gsm48_cc_rx_hold},
3484 {SBIT(GSM_CSTATE_ACTIVE),
3485 GSM48_MT_CC_RETR, gsm48_cc_rx_retrieve},
3486 {SBIT(GSM_CSTATE_ACTIVE),
3487 GSM48_MT_CC_MODIFY, gsm48_cc_rx_modify},
3488 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3489 GSM48_MT_CC_MODIFY_COMPL, gsm48_cc_rx_modify_complete},
3490 {SBIT(GSM_CSTATE_MO_TERM_MODIFY),
3491 GSM48_MT_CC_MODIFY_REJECT, gsm48_cc_rx_modify_reject},
3492 {SBIT(GSM_CSTATE_ACTIVE),
3493 GSM48_MT_CC_USER_INFO, gsm48_cc_rx_userinfo},
3494 /* clearing */
3495 {ALL_STATES - SBIT(GSM_CSTATE_NULL) - SBIT(GSM_CSTATE_RELEASE_REQ), /* 5.4.3.2 */
3496 GSM48_MT_CC_DISCONNECT, gsm48_cc_rx_disconnect},
3497 {ALL_STATES - SBIT(GSM_CSTATE_NULL), /* 5.4.4.1.2.2 */
3498 GSM48_MT_CC_RELEASE, gsm48_cc_rx_release},
3499 {ALL_STATES, /* 5.4.3.4 */
3500 GSM48_MT_CC_RELEASE_COMPL, gsm48_cc_rx_release_compl},
3501};
3502
3503#define DATASLLEN \
3504 (sizeof(datastatelist) / sizeof(struct datastate))
3505
Harald Welte4bc90a12008-12-27 16:32:52 +00003506static int gsm0408_rcv_cc(struct msgb *msg)
3507{
3508 struct gsm48_hdr *gh = msgb_l3(msg);
3509 u_int8_t msg_type = gh->msg_type & 0xbf;
Harald Welte6f5aee02009-07-23 21:21:14 +02003510 u_int8_t transaction_id = ((gh->proto_discr & 0xf0) ^ 0x80) >> 4; /* flip */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003511 struct gsm_lchan *lchan = msg->lchan;
Harald Weltedcaf5652009-07-23 18:56:43 +02003512 struct gsm_trans *trans = NULL;
Harald Welte4bfdfe72009-06-10 23:11:52 +08003513 int i, rc = 0;
Harald Welte4bc90a12008-12-27 16:32:52 +00003514
Harald Welte4bfdfe72009-06-10 23:11:52 +08003515 if (msg_type & 0x80) {
3516 DEBUGP(DCC, "MSG 0x%2x not defined for PD error\n", msg_type);
3517 return -EINVAL;
Harald Welte4bc90a12008-12-27 16:32:52 +00003518 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003519
3520 /* Find transaction */
Harald Welteb8b40732009-07-23 21:58:40 +02003521 trans = trans_find_by_id(lchan->subscr, GSM48_PDISC_CC, transaction_id);
Harald Weltedcaf5652009-07-23 18:56:43 +02003522
Harald Welte6f5aee02009-07-23 21:21:14 +02003523 DEBUGP(DCC, "(bts %d trx %d ts %d ti %x sub %s) "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003524 "Received '%s' from MS in state %d (%s)\n",
3525 lchan->ts->trx->bts->nr, lchan->ts->trx->nr, lchan->ts->nr,
3526 transaction_id, (lchan->subscr)?(lchan->subscr->extension):"-",
Holger Hans Peter Freyther1494a762009-08-01 07:26:59 +02003527 gsm0408_cc_msg_names[msg_type], trans?(trans->cc.state):0,
Harald Weltedcaf5652009-07-23 18:56:43 +02003528 cc_state_names[trans?(trans->cc.state):0]);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003529
3530 /* Create transaction */
3531 if (!trans) {
Harald Welte6f5aee02009-07-23 21:21:14 +02003532 DEBUGP(DCC, "Unknown transaction ID %x, "
Harald Welte4bfdfe72009-06-10 23:11:52 +08003533 "creating new trans.\n", transaction_id);
3534 /* Create transaction */
Harald Weltedcaf5652009-07-23 18:56:43 +02003535 trans = trans_alloc(lchan->subscr, GSM48_PDISC_CC,
3536 transaction_id, new_callref++);
3537 if (!trans) {
Harald Welte4bfdfe72009-06-10 23:11:52 +08003538 DEBUGP(DCC, "No memory for trans.\n");
3539 rc = gsm48_tx_simple(msg->lchan,
Harald Welte6f5aee02009-07-23 21:21:14 +02003540 GSM48_PDISC_CC | (transaction_id << 4),
Harald Welte4bfdfe72009-06-10 23:11:52 +08003541 GSM48_MT_CC_RELEASE_COMPL);
3542 return -ENOMEM;
3543 }
Harald Welte4bfdfe72009-06-10 23:11:52 +08003544 /* Assign transaction */
Harald Welte4bfdfe72009-06-10 23:11:52 +08003545 trans->lchan = lchan;
3546 use_lchan(lchan);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003547 }
3548
3549 /* find function for current state and message */
3550 for (i = 0; i < DATASLLEN; i++)
3551 if ((msg_type == datastatelist[i].type)
Harald Weltedcaf5652009-07-23 18:56:43 +02003552 && ((1 << trans->cc.state) & datastatelist[i].states))
Harald Welte4bfdfe72009-06-10 23:11:52 +08003553 break;
3554 if (i == DATASLLEN) {
3555 DEBUGP(DCC, "Message unhandled at this state.\n");
3556 return 0;
3557 }
3558
3559 rc = datastatelist[i].rout(trans, msg);
Harald Welte4bc90a12008-12-27 16:32:52 +00003560
3561 return rc;
3562}
3563
Harald Welte52b1f982008-12-23 20:25:15 +00003564/* 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 +02003565int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id)
Harald Welte52b1f982008-12-23 20:25:15 +00003566{
3567 struct gsm48_hdr *gh = msgb_l3(msg);
3568 u_int8_t pdisc = gh->proto_discr & 0x0f;
Harald Welte8470bf22008-12-25 23:28:35 +00003569 int rc = 0;
Harald Welte52b1f982008-12-23 20:25:15 +00003570
3571 switch (pdisc) {
3572 case GSM48_PDISC_CC:
3573 rc = gsm0408_rcv_cc(msg);
3574 break;
3575 case GSM48_PDISC_MM:
3576 rc = gsm0408_rcv_mm(msg);
3577 break;
3578 case GSM48_PDISC_RR:
3579 rc = gsm0408_rcv_rr(msg);
3580 break;
Harald Weltebcae43f2008-12-27 21:45:37 +00003581 case GSM48_PDISC_SMS:
Harald Welte (local)daef6062009-08-14 11:41:12 +02003582 rc = gsm0411_rcv_sms(msg, link_id);
Harald Weltebcae43f2008-12-27 21:45:37 +00003583 break;
Harald Welte52b1f982008-12-23 20:25:15 +00003584 case GSM48_PDISC_MM_GPRS:
Harald Weltebcae43f2008-12-27 21:45:37 +00003585 case GSM48_PDISC_SM_GPRS:
Mike Haben59d284e2009-09-26 19:00:03 +02003586 case GSM48_PDISC_NC_SS: /* mobile-originated USSD */
3587 fprintf(stderr, "Unimplemented GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003588 pdisc);
3589 break;
3590 default:
Mike Haben59d284e2009-09-26 19:00:03 +02003591 fprintf(stderr, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte52b1f982008-12-23 20:25:15 +00003592 pdisc);
3593 break;
3594 }
3595
3596 return rc;
3597}
Harald Welte8470bf22008-12-25 23:28:35 +00003598
Harald Welte4bfdfe72009-06-10 23:11:52 +08003599/* dequeue messages to layer 4 */
3600int bsc_upqueue(struct gsm_network *net)
3601{
3602 struct gsm_mncc *mncc;
3603 struct msgb *msg;
3604 int work = 0;
3605
3606 if (net)
3607 while ((msg = msgb_dequeue(&net->upqueue))) {
3608 mncc = (struct gsm_mncc *)msg->data;
3609 if (net->mncc_recv)
3610 net->mncc_recv(net, mncc->msg_type, mncc);
3611 work = 1; /* work done */
Harald Welte316c8252009-06-26 19:40:48 +02003612 talloc_free(msg);
Harald Welte4bfdfe72009-06-10 23:11:52 +08003613 }
3614
3615 return work;
3616}
Harald Weltedcaf5652009-07-23 18:56:43 +02003617
Harald Welte805f6442009-07-28 18:25:29 +02003618/*
3619 * This will be ran by the linker when loading the DSO. We use it to
3620 * do system initialization, e.g. registration of signal handlers.
3621 */
3622static __attribute__((constructor)) void on_dso_load_0408(void)
3623{
Harald Welte805f6442009-07-28 18:25:29 +02003624 register_signal_handler(SS_LCHAN, gsm0408_handle_lchan_signal, NULL);
3625 register_signal_handler(SS_ABISIP, handle_abisip_signal, NULL);
3626}